diff --git a/doc/CHANGES b/doc/CHANGES index 9f8d62c399..6d58d30b2a 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -20,6 +20,15 @@ Further documentation can be found in: =========================================================================== +??? + +Chicory: +- Chicory instruments exceptional exits. That means that Daikon is able + to infer invariants about when a Java method throws an exception. + The program point hierarchy is subject to change in the future. + +=========================================================================== + 5.8.0 (?? ??, 2018) The Daikon instructions no longer suggest to set CLASSPATH, which is bad diff --git a/doc/daikon.texinfo b/doc/daikon.texinfo index b593e99996..31bdc325d0 100644 --- a/doc/daikon.texinfo +++ b/doc/daikon.texinfo @@ -2053,6 +2053,17 @@ source rather than a single location. This concept is represented in Daikon by the dataflow hierarchy, see @ref{Dataflow hierarchy,,,developer,Daikon Developer Manual}. +@cindex :::EXCEPTION program point +@cindex EXCEPTION program point + +In a similar manner, @code{foo():::EXCEPTION} is the program point that +represents all the procedure's exceptional exits, +and invariants there are exceptional postconditions. When there are multiple +exception exits from a procedure (for instance, because of multiple +@code{throw} statements), the different exits are differentiated by +suffixing them with their line numbers; for instance, +@code{StackAr.top():::EXCEPTION59}. + The Java instrumenter Chicory selects names for program points that include an indication of the argument and return types for each method. These signatures are presented in @code{Class.getName} format: one @@ -2223,10 +2234,12 @@ Static variables of a class have names of the form @cindex pre-state variables @code{orig(x)} refers to the value of variable @code{x} upon entry to a procedure (because the procedure body might modify the value -of @code{x}). These variables appear only at @code{:::EXIT} program +of @code{x}). These variables appear only at @code{:::EXIT} and +@code{:::EXCEPTION} program points. Typically, @code{orig()} variables do not appear in the trace, but are automatically created by Daikon when it matches up -@code{:::ENTER} and @code{:::EXIT@var{nn}} program points. +a @code{:::ENTER} with a @code{:::EXIT@var{nn}} +or with a @code{:::EXCEPTION@var{nn}} program point. @xref{orig variable example}. This variable prints as @code{orig} when using Daikon output format @@ -7973,15 +7986,15 @@ answer is 0, but you believe that there are samples in the file you are feeding to Daikon. Using the normal dataflow hierarchy, Daikon explicitly processes -@code{:::EXIT} program points only. Other program points, such as +@code{:::EXIT} and @code{:::EXCEPTION} program points only. Other program points, such as @code{:::ENTER} program points, are processed indirectly when their -corresponding @code{:::EXIT} points are encountered. +corresponding @code{:::EXIT} or @code{:::EXCEPTION} points are encountered. (You can disable this behavior with the @option{--nohierarchy} switch to Daikon; see @ref{Options to control invariant detection}.) -If no @code{:::EXIT} program points are present (perhaps every +If no @code{:::EXIT} or @code{:::EXCEPTION} program points are present (perhaps every execution threw an exception, you filtered out all the -@code{:::EXIT} program points, or the data trace is obtained from +@code{:::EXIT} and @code{:::EXCEPTION} program points, or the data trace is obtained from spreadsheet data instead of from a program execution), then Daikon will not process any of the other program points, such as the @code{:::ENTER} program points. You can make Daikon print information @@ -9135,6 +9148,7 @@ Florian Gross, Philip Guo, Melissa Hao, Michael Harder, +Philipp Hirch, Dieter von Holten, Greg Jay, Josh Kataoka, diff --git a/doc/developer.texinfo b/doc/developer.texinfo index 004f8a97f9..0580f91f02 100644 --- a/doc/developer.texinfo +++ b/doc/developer.texinfo @@ -1240,9 +1240,17 @@ at which they apply. @c points are related to the @samp{orig} versions at @code{:::EXIT} program points. @ref{Program point declarations} describe how program points are -declared in a Daikon input file. Here we will describe how the -@code{parent} records are typically used to connect program points into -a dataflow hierarchy. +declared in a Daikon input file. +Note that Daikon creates additional, internal program points +that do not appear in a input trace file generated by a front end, such as Chicory. +In particular, it creates a common (aka combined) @code{EXIT} point that is the parent of all +@code{EXIT} program points in a method and a common (aka combined) @code{EXCEPTION} +point that is the parent of all @code{EXCEPTION} and @code{EXCEPTIONUNCAUGHT} +program points in a method. + +Daikon uses three primary relationship types +(@code{PARENT}, @code{ENTER-EXIT} and @code{EXIT-EXITNN}) to connect the program points +into an acyclic dataflow hierarchy. Daikon uses three primary relationship types (@code{PARENT}, @code{ENTER-EXIT} and @code{EXIT-EXITNN}) to connect the program points @@ -1250,12 +1258,12 @@ into an acyclic dataflow hierarchy. @itemize @item -A program point that represents the @code{ENTRY} or @code{EXIT} of a +A program point that represents the @code{ENTRY}, @code{EXCEPTION} or @code{EXIT} of a static method will have a @code{parent} record that points to the @code{CLASS} program point for the containing class. @item -A program point that represents the @code{ENTRY} or @code{EXIT} of a +A program point that represents the @code{ENTRY}, @code{EXCEPTION} or @code{EXIT} of a non-static (instance) method will have a @code{parent} record that points to the @code{OBJECT} program point for the containing object. @@ -1267,6 +1275,12 @@ point with its corresponding @code{EXCEPTION} and @code{EXIT} program points. An @code{EXIT-EXITNN} edge connects each method's @code{EXIT} program point with each of its corresponding @code{EXIT} program points. +@item +An @code{EXIT-EXITNN} edge connects each method's @code{EXCEPTION} program +point with each of its corresponding @code{EXCEPTION} and @code{EXCEPTIONUNCAUGHT} +program points. + +@item A program point that represents a @code{CLASS} will usually not have a @code{parent} record. @@ -1281,7 +1295,7 @@ hierarchy may result in some true invariants that are not reported at some program points. However, the invariant will be present in some parent program point. The dataflow hierarchy is used by default, but can be disabled by the @option{--nohierarchy} flag. When dataflow is enabled, -the only samples that are examined by Daikon are the @code{:::EXIT} program +the only samples that are examined by Daikon are the @code{:::EXIT} and @code{:::EXCEPTION} program points (plus @samp{orig} variables) since these contain a complete view of the data, from which invariants at all other locations can be inferred. For example, Daikon does not need to examine data at @code{:::ENTER} or @@ -3161,16 +3175,23 @@ Program point names must be distinct. While Daikon does not infer program point relationships from @code{ppt-name}s, it does require these names to conform to a set syntax. -The following patterns are for the @code{enter}, @code{subexit}, +The following patterns are for the @code{enter}, @code{class} and @code{object} @code{ppt-type}s, respectively. @example .():::ENTER -.():::EXIT :::CLASS :::OBJECT @end example +The @code{subexit} @code{ppt-type} may have one of three patterns: + +@example +.():::EXIT +.():::EXCEPTION +.():::EXCEPTIONUNCAUGHT +@end example + @noindent Since in most languages a method or function may have multiple exit points, the @code{ppt-name} for a @code{subexit} @code{ppt-type} must be appended diff --git a/java/daikon/AnnotateNullable.java b/java/daikon/AnnotateNullable.java index 5ae5cfa9fd..77e02bd47b 100644 --- a/java/daikon/AnnotateNullable.java +++ b/java/daikon/AnnotateNullable.java @@ -106,7 +106,7 @@ public static void main(String[] args) throws IOException { // static method can be identified because it will not have the OBJECT // point as a parent. for (PptTopLevel ppt : ppts.pptIterable()) { - if (!ppt.is_combined_exit() || !is_static_method(ppt)) { + if (!ppt.is_combined_exit() || !ppt.is_combined_exception() || !is_static_method(ppt)) { continue; } @@ -314,7 +314,7 @@ public static void process_method(PptTopLevel ppt) { } } - // The formatted annotation for the return value with a leading space, or empty string + // The formatted annotation for the return value with a leading space, or the empty string. String return_annotation = (retvar == null ? "" : " " + get_annotation(ppt, retvar)); // Look up the annotation for each parameter. @@ -409,6 +409,14 @@ public static String jvm_signature(PptTopLevel ppt) { ) String returnType = returnVar == null ? "V" : Signatures.binaryNameToFieldDescriptor(returnVar.type.toString()); + // Or a throw point + if (returnVar == null) { + returnVar = ppt.find_var_by_name("exception"); + returnType = + returnVar == null + ? "V" + : "V throws " + Signatures.binaryNameToFieldDescriptor(returnVar.type.toString()); + } return method + Signatures.arglistToJvm(java_args) + returnType; } diff --git a/java/daikon/Chicory.java b/java/daikon/Chicory.java index 4968dd7d2e..17e7ff63b0 100644 --- a/java/daikon/Chicory.java +++ b/java/daikon/Chicory.java @@ -134,6 +134,14 @@ public class Chicory { @Option("Number of calls after which sampling will begin") public static int sample_start = 0; + /** + * Chicory starts the target program in a new JVM with ChicoryPremain as an agent. The + * remote_debug option will allow you to debug this process by establishing a conection between + * the Java debugger and ChicoryPremain. + */ + @Option("Enable remote debug") + public static boolean remote_debug = false; + /** Daikon port number. Daikon writes this to stdout when it is started in online mode. */ private static int daikon_port = -1; @@ -156,8 +164,6 @@ public class Chicory { /** flag to use if we want to turn on the static initialization checks */ public static final boolean checkStaticInit = true; - private static final boolean RemoteDebug = false; - /** Flag to initiate a purity analysis and use results to create add vars */ private static boolean purityAnalysis = false; @@ -380,9 +386,10 @@ void start_target(String premain_args, String[] target_args) { List cmdlist = new ArrayList(); cmdlist.add("java"); - if (RemoteDebug) { + if (remote_debug) { // -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=4142,suspend=n - cmdlist.add("-Xdebug -Xrunjdwp:server=n,transport=dt_socket,address=8000,suspend=y"); + cmdlist.add("-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=y"); + // cmdlist.add("-Xdebug -Xrunjdwp:server=n,transport=dt_socket,address=8000,suspend=y"); // cmdlist.add("-Xdebug -Xnoagent // -Xrunjdwp:transport=dt_socket,server=n,suspend=n,address=8000 -Djava.compiler=NONE"); } @@ -504,6 +511,11 @@ public void runDaikon() { heap_size, cp, daikon_args, output_dir, dtrace_file); } + if (remote_debug) { + cmdstr = + cmdstr.replace( + "java", "java -agentlib:jdwp=transport=dt_socket,server=y,address=8001,suspend=y"); + } // System.out.println("daikon command is " + daikon_cmd); // System.out.println("daikon command cmdstr " + cmdstr); diff --git a/java/daikon/Daikon.java b/java/daikon/Daikon.java index 1b091db27a..9e45a15cf0 100644 --- a/java/daikon/Daikon.java +++ b/java/daikon/Daikon.java @@ -1787,7 +1787,12 @@ public static void create_combined_exits(PptMap ppts) { PptTopLevel exitnn_ppt = ppt; PptName exitnn_name = exitnn_ppt.ppt_name; - PptName exit_name = ppt.ppt_name.makeExit(); + PptName exit_name; + if (exitnn_name.isExitPoint()) { + exit_name = ppt.ppt_name.makeExit(); + } else { + exit_name = ppt.ppt_name.makeExceptionExit(); + } PptTopLevel exit_ppt = exit_ppts.get(exit_name); if (debugInit.isLoggable(Level.FINE)) { @@ -1874,7 +1879,7 @@ static List filter_invs(List invs) { * EXIT/EXITnn. */ private static void create_orig_vars(PptTopLevel exit_ppt, PptMap ppts) { - if (!exit_ppt.ppt_name.isExitPoint()) { + if (!exit_ppt.ppt_name.isExitPoint() && !exit_ppt.ppt_name.isExceptionPoint()) { if (VarInfo.assertionsEnabled()) { for (VarInfo vi : exit_ppt.var_infos) { try { @@ -2462,8 +2467,8 @@ public static void setupEquality(PptTopLevel ppt) { // named program points such as :::POINT (used by convertcsv.pl) // will be treated as leaves. if (p.ppt_name.isCombinedExitPoint() + || p.ppt_name.isCombinedExceptionPoint() || p.ppt_name.isEnterPoint() - || p.ppt_name.isThrowsPoint() || p.ppt_name.isObjectInstanceSynthetic() || p.ppt_name.isClassStaticSynthetic()) { return; diff --git a/java/daikon/FileIO.java b/java/daikon/FileIO.java index ae96487195..37b58b8ec9 100644 --- a/java/daikon/FileIO.java +++ b/java/daikon/FileIO.java @@ -86,11 +86,17 @@ private FileIO() { public static final String exit_suffix = "EXIT"; /** String used to mark exit ppt names. */ public static final String exit_tag = ppt_tag_separator + exit_suffix; - /** To be deleted. */ - public static final String throws_suffix = "THROWS"; - /** To be deleted. */ - public static final String throws_tag = ppt_tag_separator + throws_suffix; - + /** String used to identify uncaught exception ppt names. */ + public static final String exception_uncaught_suffix = "EXCEPTIONUNCAUGHT"; + /** String used to mark uncaught exception ppt names. */ + public static final String exception_uncaught_tag = ppt_tag_separator + exception_uncaught_suffix; + // EXCEPTION does not necessarily appear at the end of the program point name; + // a number may follow it. + /** String used to identify exception ppt names. */ + public static final String exception_suffix = "EXCEPTION"; + /** String used to mark exception ppt names. */ + public static final String exception_tag = ppt_tag_separator + exception_suffix; + /** String used to identify object ppt names. */ public static final String object_suffix = "OBJECT"; /** String used to mark object ppt names. */ public static final String object_tag = ppt_tag_separator + object_suffix; @@ -1030,8 +1036,8 @@ private static void warn_if_hierarchy_mismatch(PptMap all_ppts) { for (PptTopLevel ppt_top_level : all_ppts.ppt_all_iterable()) { boolean is_program_point = (ppt_top_level.ppt_name.isExitPoint() + || ppt_top_level.ppt_name.isExceptionPoint() || ppt_top_level.ppt_name.isEnterPoint() - || ppt_top_level.ppt_name.isThrowsPoint() || ppt_top_level.ppt_name.isObjectInstanceSynthetic() || ppt_top_level.ppt_name.isClassStaticSynthetic() || ppt_top_level.ppt_name.isGlobalPoint()); @@ -1739,9 +1745,9 @@ public static void process_sample( // and :::CLASS program points. This scheme ensures that arbitrarly // named program points such as :::POINT (used by convertcsv.pl) // will be treated as leaves. + // Throws is a LEAF, like Exit_nn. if (ppt.ppt_name.isEnterPoint() - || ppt.ppt_name.isThrowsPoint() || ppt.ppt_name.isObjectInstanceSynthetic() || ppt.ppt_name.isClassStaticSynthetic() || ppt.ppt_name.isGlobalPoint()) { @@ -1753,6 +1759,12 @@ public static void process_sample( throw new RuntimeException( "Bad program point name " + ppt.name + " is a combined exit point name"); } + + if (ppt.ppt_name.isExceptionPoint() && ppt.ppt_name.isCombinedExceptionPoint()) { + // not Daikon.TerminationMessage; caller has more info (e.g., filename) + throw new RuntimeException( + "Bad program point name " + ppt.name + " is a combined exception point name"); + } } // Add derived variables @@ -2188,7 +2200,7 @@ public static boolean compute_orig_variables( return false; } - if (ppt.ppt_name.isExitPoint() || ppt.ppt_name.isThrowsPoint()) { + if (ppt.ppt_name.isExitPoint() || ppt.ppt_name.isExceptionPoint()) { Invocation invoc; // Set invoc { diff --git a/java/daikon/MergeInvariants.java b/java/daikon/MergeInvariants.java index 1653c8032b..ceac00480b 100644 --- a/java/daikon/MergeInvariants.java +++ b/java/daikon/MergeInvariants.java @@ -264,12 +264,12 @@ public static void mainHelper(String[] args) debugProgress.fine("Building hierarchy between leaves of the maps"); for (PptTopLevel ppt : merge_ppts.pptIterable()) { - // Skip everything that is not a final exit point - if (!ppt.ppt_name.isExitPoint()) { + // Skip everything that is not a final exit or exception point + if (!ppt.ppt_name.isExitPoint() && !ppt.ppt_name.isExceptionPoint()) { assert ppt.children.size() > 0 : ppt; continue; } - if (ppt.ppt_name.isCombinedExitPoint()) { + if (ppt.ppt_name.isCombinedExitPoint() || ppt.ppt_name.isCombinedExceptionPoint()) { assert ppt.children.size() > 0 : ppt; continue; } @@ -379,10 +379,10 @@ public static void mainHelper(String[] args) // Remove the PptRelation links so that when the file is written // out it only includes the new information for (PptTopLevel ppt : merge_ppts.pptIterable()) { - if (!ppt.ppt_name.isExitPoint()) { + if (!ppt.ppt_name.isExitPoint() && !ppt.ppt_name.isExceptionPoint()) { continue; } - if (ppt.ppt_name.isCombinedExitPoint()) { + if (ppt.ppt_name.isCombinedExitPoint() || ppt.ppt_name.isCombinedExceptionPoint()) { continue; } ppt.children.clear(); diff --git a/java/daikon/PptName.java b/java/daikon/PptName.java index aa2db691ff..c52f1176d9 100644 --- a/java/daikon/PptName.java +++ b/java/daikon/PptName.java @@ -261,18 +261,43 @@ public boolean isGlobalPoint() { return FileIO.global_suffix.equals(point); } - /** @return true iff this name refers to a procedure exit point */ + /** + * @return true iff this name refers to a procedure exception point. This could be a throw + * statement, a synthetic catch and throw of an (originally) uncaught exception, or synthetic + * exception ppt that is the parent of all exception exits from a method. + */ @EnsuresNonNullIf(result = true, expression = "point") @Pure - public boolean isExitPoint() { - return (point != null) && point.startsWith(FileIO.exit_suffix); + public boolean isExceptionPoint() { + return (point != null) && point.startsWith(FileIO.exception_suffix); + } + + /** + * @return true iff this name refers to a combined (synthetic) exception point. This is a ppt that + * is the parent of all exception exits from a method. + */ + /** @return true iff this name refers to a combined (synthetic) procedure exception point */ + @EnsuresNonNullIf(result = true, expression = "point") + @Pure + public boolean isCombinedExceptionPoint() { + return (point != null) && point.equals(FileIO.exception_suffix); + } + + /** + * @return true iff this name refers to an actual (not combined) procedure exception point (eg, + * EXCEPTION22) + */ + @EnsuresNonNullIf(result = true, expression = "point") + @Pure + public boolean isNumberedExceptionPoint() { + return ((point != null) && (isExceptionPoint() && !isCombinedExceptionPoint())); } - /** @return true iff this name refers to an abrupt completion point */ + /** @return true iff this name refers to a procedure exit point */ @EnsuresNonNullIf(result = true, expression = "point") @Pure - public boolean isThrowsPoint() { - return (point != null) && point.startsWith(FileIO.throws_suffix); + public boolean isExitPoint() { + return (point != null) && point.startsWith(FileIO.exit_suffix); } /** @return true iff this name refers to a combined (synthetic) procedure exit point */ @@ -377,9 +402,7 @@ public PptName makeEnter() { // We may wish to have a different exceptional than non-exceptional // entry point; in particular, if there was an exception, then perhaps // the precondition or object invariant was not met. - assert isExitPoint() : fullname; - - assert isExitPoint() || isThrowsPoint(); + assert isExitPoint() || isExceptionPoint() : fullname; return new PptName(cls, method, FileIO.enter_suffix); } @@ -393,13 +416,23 @@ public PptName makeExit() { return new PptName(cls, method, FileIO.exit_suffix); } + /** + * Requires: this.isExceptionPoint() || this.isEnterPoint() + * + * @return a name for the combined exit point + */ + public PptName makeExceptionExit() { + assert isExceptionPoint() || isEnterPoint() : fullname; + return new PptName(cls, method, FileIO.exception_suffix); + } + /** * Requires: this.isExitPoint() || this.isEnterPoint() * * @return a name for the corresponding object invariant */ public PptName makeObject() { - assert isExitPoint() || isEnterPoint() : fullname; + assert isExitPoint() || isEnterPoint() || isExceptionPoint() : fullname; return new PptName(cls, null, FileIO.object_suffix); } @@ -409,7 +442,8 @@ public PptName makeObject() { * @return a name for the corresponding class-static invariant */ public PptName makeClassStatic() { - assert isExitPoint() || isEnterPoint() || isObjectInstanceSynthetic() : fullname; + assert isExitPoint() || isEnterPoint() || isObjectInstanceSynthetic() || isExceptionPoint() + : fullname; return new PptName(cls, null, FileIO.class_static_suffix); } diff --git a/java/daikon/PptRelation.java b/java/daikon/PptRelation.java index e730ff1411..7878198a64 100644 --- a/java/daikon/PptRelation.java +++ b/java/daikon/PptRelation.java @@ -914,18 +914,30 @@ public static void init_hierarchy_new(PptMap all_ppts) { } // if an exitNN point, parent is combined exit point - if (ppt.is_subexit()) { + if (ppt.is_subexit() && pname.isExitPoint()) { PptTopLevel parent = all_ppts.get(pname.makeExit()); if (parent != null) { rels.add(newCombinedExitExitNNRel(parent, ppt)); } + // if an throw[s] point, parent is combined Exception point + } else if (ppt.is_subexit() && pname.isExceptionPoint()) { + PptTopLevel parent = all_ppts.get(pname.makeExceptionExit()); + if (parent != null) { + rels.add(newCombinedExitExitNNRel(parent, ppt)); + } // Connect combined exit points to enter points over orig variables } else if (ppt.is_combined_exit()) { PptTopLevel enter = all_ppts.get(pname.makeEnter()); if (enter != null) { rels.add(PptRelation.newEnterExitRel(enter, ppt)); } + // Connect combined exception points to enter points over orig variables + } else if (ppt.is_combined_exception()) { + PptTopLevel enter = all_ppts.get(pname.makeEnter()); + if (enter != null) { + rels.add(PptRelation.newEnterExitRel(enter, ppt)); + } } // Connect any conditional ppt variables. Only connect to the diff --git a/java/daikon/PptTopLevel.java b/java/daikon/PptTopLevel.java index 4fc45a5529..38b1d30096 100644 --- a/java/daikon/PptTopLevel.java +++ b/java/daikon/PptTopLevel.java @@ -4467,6 +4467,20 @@ public boolean is_exit() { } } + // TODO: this doesn't look right + // if type != null then same as is_exit + // should we check ppt_name? + // This method is currently unused. + /** Is this is an exception ppt (combined or specific)? */ + /*@Pure*/ + public boolean is_exception() { + if (type != null) { + return ((type == PptType.EXIT) || (type == PptType.SUBEXIT)); + } else { + return ppt_name.isExceptionPoint(); + } + } + /** is this an enter ppt */ @Pure public boolean is_enter() { @@ -4487,13 +4501,27 @@ public boolean is_combined_exit() { } } + // TODO: this doesn't look right + // if type != null then same as is_combined_exit + // should we check ppt_name? + /** Is this a combined exception point? */ + /*@Pure*/ + public boolean is_combined_exception() { + if (type != null) { + return (type == PptType.EXIT); + } else { + return ppt_name.isCombinedExceptionPoint(); + } + } + /** Is this a numbered (specific) exit point? */ @Pure public boolean is_subexit() { if (type != null) { return (type == PptType.SUBEXIT); } else { - return (ppt_name.isExitPoint() && !ppt_name.isCombinedExitPoint()); + return ((ppt_name.isExitPoint() && !ppt_name.isCombinedExitPoint()) + || (ppt_name.isExceptionPoint())); } } diff --git a/java/daikon/VarInfo.java b/java/daikon/VarInfo.java index cec5b05e67..73522a66fa 100644 --- a/java/daikon/VarInfo.java +++ b/java/daikon/VarInfo.java @@ -3280,7 +3280,22 @@ public String jml_name(@Nullable String index) { return enclosing_var.jml_name(index) + ".toString()"; } if (enclosing_var != null) { - return enclosing_var.jml_name(index) + "." + relative_name + "()"; + StringBuilder formalPara = new StringBuilder(); + if (!function_args.isEmpty()) { + String prefix = ""; + for (VarInfo fargs : function_args) { + if (fargs.equals(enclosing_var)) continue; + formalPara.append(prefix); + prefix = ","; + formalPara.append(fargs.jml_name()); + } + } + return enclosing_var.jml_name(index) + + "." + + relative_name + + "(" + + formalPara.toString() + + ")"; } return str_name; case ARRAY: @@ -3292,7 +3307,11 @@ public String jml_name(@Nullable String index) { assert enclosing_var == null; return str_name; case RETURN: - return "\\result"; + if (!name().contains("exception")) { + return "\\result"; + } else { + return "Exception"; + } default: throw new Error("can't drop through switch statement"); } diff --git a/java/daikon/chicory/DTraceWriter.java b/java/daikon/chicory/DTraceWriter.java index 8b68c0c022..c6ad1ecca6 100644 --- a/java/daikon/chicory/DTraceWriter.java +++ b/java/daikon/chicory/DTraceWriter.java @@ -103,7 +103,7 @@ public void clinitEntry(@GuardSatisfied DTraceWriter this, String pptname, int n Runtime.incrementRecords(); } - /** Prints the method exit program point in the dtrace file. */ + /** Prints the method exit program point(s) in the dtrace file. */ public void methodExit( @GuardSatisfied DTraceWriter this, MethodInfo mi, @@ -118,7 +118,7 @@ public void methodExit( Member member = mi.member; - // gets the traversal pattern root for this method exit + // gets the traversal pattern root for this method's exits RootInfo root = mi.traversalExit; if (root == null) { throw new RuntimeException( @@ -146,6 +146,32 @@ public void methodExit( Runtime.incrementRecords(); } + /** Prints the method exception exit program point(s) in the dtrace file. */ + public void methodExceptionExit( + MethodInfo mi, + int nonceVal, + /*@Nullable*/ Object obj, + Object[] args, + Throwable exception_val, + int lineNum) { + if (Runtime.dtrace_closed) return; + + Member member = mi.member; + + // gets the traversal pattern root for this method's exception exits + RootInfo root = mi.traversalException; + if (root == null) + throw new RuntimeException("Traversal pattern not initialized for method " + mi.method_name); + + outFile.println(DaikonWriter.methodExceptionName(member, lineNum)); + printNonce(nonceVal); + traverse(mi, root, args, obj, exception_val); + + outFile.println(); + + Runtime.incrementRecords(); + } + /** Prints an exit program point for a static initializer in the dtrace file. */ public void clinitExit(@GuardSatisfied DTraceWriter this, String pptname, int nonceVal) { // don't print @@ -189,6 +215,8 @@ private void traverse( if (child instanceof ReturnInfo) { val = ret_val; + } else if (child instanceof ThrowInfo) { + val = ret_val; } else if (child instanceof ThisObjInfo) { val = thisObj; } else if (child instanceof ParameterInfo) { diff --git a/java/daikon/chicory/DaikonWriter.java b/java/daikon/chicory/DaikonWriter.java index 351daf9277..bb0566a441 100644 --- a/java/daikon/chicory/DaikonWriter.java +++ b/java/daikon/chicory/DaikonWriter.java @@ -89,6 +89,50 @@ public static String methodExitName( return methodName(fullClassName, types, name, short_name, daikon.FileIO.exit_suffix + lineNum); } + /** + * Constructs the program point name suffix for an exception exit + * + * @param lineNum the line number of a throw statement causing the exception exit or -1 for an + * uncaught propagated exception (one caused by some execution of some other statement) + * @return the exception name suffix for Daikon + */ + private static String exceptionSuffix(int lineNum) { + return lineNum < 0 + ? daikon.FileIO.exception_uncaught_suffix + : daikon.FileIO.exception_suffix + lineNum; + } + + /** + * Given a method, returns the method exception program point name for Daikon. + * + * @param method non-null method + * @param lineNum the line number of a throw statement causing the exception exit or -1 for an + * uncaught propagated exception (one caused by some execution of some other statement) + * @return the decorated method exception name for Daikon + */ + public static String methodExceptionName(Member method, int lineNum) { + return methodName(method, exceptionSuffix(lineNum)); + } + + /** + * Given a method, returns the method exception program point name for Daikon. Used when + * reflection information is not available. + * + * @param fullClassName fully-qualified class name, i.e., packageName.className + * @param types string representation of the declared types of the parameters. For example: + * {"int", "java.lang.Object", "float"}. + * @param name the method name with modifiers and parameters + * @param short_name just the method's name ("<init>" for constructors) + * @param lineNum the line number of a throw statement in the method or -1 for an uncaught + * exception + * @return the decorated method exception name for Daikon + * @see #methodName(String, String[], String, String, String) + */ + public static String methodExceptionName( + String fullClassName, String[] types, String name, String short_name, int lineNum) { + return methodName(fullClassName, types, name, short_name, exceptionSuffix(lineNum)); + } + /** * Constructs the program point name (which includes the point string at the end) * diff --git a/java/daikon/chicory/DeclWriter.java b/java/daikon/chicory/DeclWriter.java index 01b07edd50..ed78162d63 100644 --- a/java/daikon/chicory/DeclWriter.java +++ b/java/daikon/chicory/DeclWriter.java @@ -289,6 +289,33 @@ public void print_decl_class(ClassInfo cinfo, @Nullable DeclReader comp_info) { : mi.class_info.class_name + "." + FileIO.exit_tag + exitLoc); print_method(mi, exitRoot, exitName, PptType.SUBEXIT, comp_info); } + + // TODO: a class initializer can have a throw statement. + // I think we need code similar to: + // (member != null + // ? methodEntryName(member) + // : mi.class_info.class_name + "." + FileIO.enter_tag); + + // Print exception program point for EACH athrow location in the method + // Note that there may not be an athrow. They may get filtered out, + // or some methods don't have a throw (only an exit) + Set theThrows = new HashSet(mi.throw_locations); + for (Integer throwLoc : theThrows) { + // Get the root of the method's traversal pattern + RootInfo exceptionRoot = mi.traversalException; + assert exceptionRoot != null + : "Throw Traversal pattern not initialized at " + "method " + mi.method_name; + + print_method( + mi, + exceptionRoot, + methodExceptionName(member, throwLoc.intValue()), + PptType.SUBEXIT, + comp_info); + } + + RootInfo exceptionRoot = mi.traversalException; + print_method(mi, exceptionRoot, methodExceptionName(member, -1), PptType.SUBEXIT, comp_info); } print_class_ppt(cinfo, cinfo.class_name + ":::CLASS", comp_info); diff --git a/java/daikon/chicory/Instrument.java b/java/daikon/chicory/Instrument.java index 2174260d88..ca4e9e8b5d 100644 --- a/java/daikon/chicory/Instrument.java +++ b/java/daikon/chicory/Instrument.java @@ -9,8 +9,12 @@ import java.nio.file.Path; import java.security.ProtectionDomain; import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; import java.util.Iterator; import java.util.List; +import java.util.Map; +import java.util.Stack; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.bcel.Const; @@ -25,6 +29,7 @@ import org.apache.bcel.classfile.StackMapEntry; import org.apache.bcel.classfile.StackMapType; import org.apache.bcel.generic.ACONST_NULL; +import org.apache.bcel.generic.ATHROW; import org.apache.bcel.generic.ArrayType; import org.apache.bcel.generic.BasicType; import org.apache.bcel.generic.ClassGen; @@ -50,12 +55,26 @@ /** * The Instrument class is responsible for modifying another class' bytecode. Specifically, its main - * task is to add "hooks" into the other class at method entries and exits for instrumentation - * purposes. + * task is to add "hooks" into the other class at method entries, exits, and throws for + * instrumentation purposes. */ @SuppressWarnings("nullness") class Instrument extends InstructionListUtils implements ClassFileTransformer { + public static Map STACKMAP_TYPE = new HashMap(); + + static { + STACKMAP_TYPE.put(Type.INT, Const.ITEM_Integer); + STACKMAP_TYPE.put(Type.BOOLEAN, Const.ITEM_Integer); + STACKMAP_TYPE.put(Type.BYTE, Const.ITEM_Integer); + STACKMAP_TYPE.put(Type.CHAR, Const.ITEM_Integer); + STACKMAP_TYPE.put(Type.DOUBLE, Const.ITEM_Double); + STACKMAP_TYPE.put(Type.FLOAT, Const.ITEM_Float); + STACKMAP_TYPE.put(Type.LONG, Const.ITEM_Long); + STACKMAP_TYPE.put(Type.SHORT, Const.ITEM_Integer); + STACKMAP_TYPE.put(Type.VOID, Const.ITEM_Integer); + } + /** the index of this method into SharedData.methods */ int cur_method_info_index = 0; @@ -386,7 +405,8 @@ private InstructionList call_initNotify( * Instrument all the methods in a class. For each method, add instrumentation code at the entry * and at each return from the method. In addition, changes each return statement to first place * the value being returned into a local and then return. This allows us to work around the JDI - * deficiency of not being able to query return values. + * deficiency of not being able to query return values. In a similar fashion, we assign the + * exception value from a throw statement to a local variable prior to the actual throw. * * @param fullClassName must be fully qualified: packageName.className */ @@ -500,6 +520,9 @@ private ClassInfo instrument_all_methods(ClassGen cg, String fullClassName, Clas SharedData.methods.add(mi); } + // Remember the start of the original Code. + InstructionHandle try_start = il.getStart(); + // Add nonce local to matchup enter/exits String entry_ppt_name = DaikonWriter.methodEntryName( @@ -518,8 +541,10 @@ private ClassInfo instrument_all_methods(ClassGen cg, String fullClassName, Clas Iterator shouldIncIter = mi.is_included.iterator(); Iterator exitIter = mi.exit_locations.iterator(); + Iterator throwIter = mi.throw_locations.iterator(); - // Loop through each instruction looking for the return(s) + List throw_ils = new ArrayList(); + // Loop through each instruction looking for the returns and throws for (InstructionHandle ih = il.getStart(); ih != null; ) { Instruction inst = ih.getInstruction(); @@ -528,6 +553,14 @@ private ClassInfo instrument_all_methods(ClassGen cg, String fullClassName, Clas generate_return_instrumentation( fullClassName, inst, context, shouldIncIter, exitIter); + // If not return maybe it is a throw + if (new_il == null) { + new_il = + generate_throw_instrumentation( + fullClassName, inst, context, shouldIncIter, throwIter); + if (new_il != null) throw_ils.add(ih); + } + // Remember the next instruction to process InstructionHandle next_ih = ih.getNext(); @@ -540,6 +573,210 @@ private ClassInfo instrument_all_methods(ClassGen cg, String fullClassName, Clas ih = next_ih; } + // Wrap the user's code with a try-catch-block to catch delegated Exceptions + print_stack_map_table("Final before adding try-catch-blocks"); + // Remember the end of the original Code. + InstructionHandle try_end = il.getEnd(); + InstructionList catch_il = + generate_internal_catch_instrumentation(fullClassName, context); + // Is the method the constructor? + if (mg.getName().equals("")) { + // first command must be super (implicit or direct) + if (try_start.getNext().getInstruction().getOpcode() == Const.INVOKESPECIAL) { + try_start = try_start.getNext().getNext(); + // It is tricky to figure out when the object has been completely initialized. + // It looks like Philipp tried but in the end decided to only handle the simple case. + // (markro) + // //find last putfield + // InstructionHandle endOfConstruct = null; + // // Loop through each instruction looking for the putfield + // for (InstructionHandle tmpRun = try_start; tmpRun != null; ) { + // Short tmpCode = tmpRun.getInstruction().getOpcode(); + // if(tmpCode == Const.PUTFIELD || tmpCode == Const.PUTSTATIC){ + // endOfConstruct = tmpRun; + // } + // tmpRun = tmpRun.getNext(); + // } + // if(endOfConstruct != null){ + // try_start = endOfConstruct.getNext(); + // } + } else { + catch_il = null; + } + } + + if (catch_il != null) { + // Not sure when try_start could ever be null. (markro) + try_start = (try_start == null ? il.getStart() : try_start); + // Remember the Size of the OriginalCode, to calculate the Offset in the StackMap + int tagetIS = il.getByteCode().length; + InstructionHandle handler = il.append(try_end, catch_il); + + // Add our handler to the ExceptionTable. + // If there were throws in the code, we need to divide the code into + // multiple ranges (omitting the throw statements) so that we do not + // catch them and trace/log them twice. + if (!throw_ils.isEmpty()) { + InstructionHandle run_start = try_start; + for (InstructionHandle run_ih : throw_ils) { + mg.addExceptionHandler( + run_start, + run_ih.getPrev(), + handler, + ObjectType.getInstance("java.lang.Throwable")); + run_start = run_ih.getNext(); + } + if (!run_start.equals(handler) || run_start.getPosition() >= 0) + mg.addExceptionHandler( + run_start, try_end, handler, ObjectType.getInstance("java.lang.Throwable")); + } else { + // No throws, just one handler for the entire range. + mg.addExceptionHandler( + try_start, try_end, handler, ObjectType.getInstance("java.lang.Throwable")); + } + + // Add a new StackMapEntry for our handle-block. + StackMapEntry[] new_map = new StackMapEntry[stack_map_table.length + 1]; + StackMapType stack_throwable_type = + new StackMapType( + Const.ITEM_Object, + pool.addClass("java.lang.Throwable"), + pool.getConstantPool()); + StackMapType[] stack_throwable_type_entry = {stack_throwable_type}; + + // The new handle-block will require a new StackMap entry. + // This entry needs to include information about the local + // stack items. To do this, we need to process all the + // StackMap entries prior to the handle-block to calculate + // the localItem state for the new StackMap entry. + Stack localItems_types = new Stack(); + + // Start with Parameters as locals + int newLocalCnt = mg.getArgumentNames().length; + // ADD THIS + if (!mg.isStatic()) { + newLocalCnt++; + localItems_types.push( + new StackMapType( + Const.ITEM_Object, pool.addClass(mg.getClassName()), pool.getConstantPool())); + } + // ADD PARAMETERS + for (int tt = 0; tt < mg.getArgumentTypes().length; tt++) { + Type runType = mg.getArgumentTypes()[tt]; + // if(!runType.getClass().equals(ObjectType.class) ){ //&& + // !runType.getClass().equals(BasicType.class) + // continue; + // } + if (runType.getClass().equals(BasicType.class)) { + Byte tmpTag = STACKMAP_TYPE.get(runType); + if (tmpTag == null) { + // ERROR + continue; + } + localItems_types.push(new StackMapType(tmpTag, -1, pool.getConstantPool())); + continue; + } + localItems_types.push( + new StackMapType( + Const.ITEM_Object, + pool.addClass(runType.getSignature()), + pool.getConstantPool())); + } + + boolean fullFrameFound = false; + // Keep track of the count of locals + int runLocalCnt = newLocalCnt; + int offset = 0; + + // traverse the stackframe table and create the stack for the new entry. + for (int j = 0; j < stack_map_table.length; j++) { + StackMapEntry runSME = stack_map_table[j]; + if ((offset - 1) <= try_start.getPosition()) { + newLocalCnt = runLocalCnt; + } + + int runFrameType = runSME.getFrameType(); + if (runFrameType >= Const.APPEND_FRAME && runFrameType <= Const.APPEND_FRAME_MAX) { + int addCnt = runFrameType - (Const.APPEND_FRAME - 1); + localItems_types.addAll(Arrays.asList(runSME.getTypesOfLocals())); + runLocalCnt += addCnt; + } + + if (runFrameType >= Const.CHOP_FRAME && runFrameType <= Const.CHOP_FRAME_MAX) { + int delCnt = (Const.CHOP_FRAME_MAX + 1) - runFrameType; + for (int k = 0; k < delCnt; k++) { + localItems_types.pop(); + } + runLocalCnt -= delCnt; + } + + if (runFrameType == Const.FULL_FRAME) { + localItems_types.clear(); + localItems_types.addAll(Arrays.asList(runSME.getTypesOfLocals())); + runLocalCnt = localItems_types.size(); + fullFrameFound = true; + } + + offset += runSME.getByteCodeOffset() + 1; + new_map[j] = runSME; + } + int goalOffset = tagetIS - offset; + // Are the locals the same? + // create SAME_LOCALS_1_STACK_ITEM_FRAME + if (newLocalCnt == runLocalCnt && !mg.getName().equals("")) { + int tmpTag = + (Const.SAME_LOCALS_1_STACK_ITEM_FRAME + goalOffset) + > Const.SAME_LOCALS_1_STACK_ITEM_FRAME_MAX + ? Const.SAME_LOCALS_1_STACK_ITEM_FRAME_EXTENDED + : (Const.SAME_LOCALS_1_STACK_ITEM_FRAME + goalOffset); + new_map[stack_map_table.length] = + new StackMapEntry( + tmpTag, goalOffset, null, stack_throwable_type_entry, pool.getConstantPool()); + // new_map[stack_map_table.length] = new StackMapTableEntry(tmpTag, goalOffset + // , 0, + // null, 1, stack_throwable_type_entry, pool.getConstantPool()); + } else { + if (localItems_types.size() >= newLocalCnt || mg.getName().equals("")) { + // Create FULL-FRAME-Entry + int localsCnt = newLocalCnt; + while (localItems_types.size() > localsCnt) { + localItems_types.pop(); + } + StackMapType[] newlocalItems_types = new StackMapType[localsCnt]; + + newlocalItems_types = localItems_types.toArray(newlocalItems_types); + + new_map[stack_map_table.length] = + new StackMapEntry( + Const.FULL_FRAME, + goalOffset, + newlocalItems_types, + stack_throwable_type_entry, + pool.getConstantPool()); + } else { + // ERROR but keep a valid Stackframe + // Need to find out if it happens + int tmpTag = + (Const.SAME_LOCALS_1_STACK_ITEM_FRAME + goalOffset) + > Const.SAME_LOCALS_1_STACK_ITEM_FRAME_MAX + ? Const.SAME_LOCALS_1_STACK_ITEM_FRAME_EXTENDED + : (Const.SAME_LOCALS_1_STACK_ITEM_FRAME + goalOffset); + new_map[stack_map_table.length] = + new StackMapEntry( + tmpTag, + goalOffset, + null, + stack_throwable_type_entry, + pool.getConstantPool()); + // new_map[stack_map_table.length] = new StackMapTableEntry(tmpTag, + // goalOffset , 0, + // null, 1, stack_throwable_type_entry, pool.getConstantPool()); + } + } + + stack_map_table = new_map; + } + // Update the Uninitialized_variable_info offsets before // we write out the new StackMapTable. update_uninitialized_NEW_offsets(il); @@ -656,6 +893,94 @@ private static boolean isVoid(Type t) { return il; } + /** + * If this is a throw instruction, generate new il to assign the exception to a local variable + * (exception__$trace2_val) and then call daikon.chicory.Runtime.exceptionExit(). This il wil be + * inserted immediately before the throw. + */ + private /*@Nullable*/ InstructionList generate_throw_instrumentation( + String fullClassName, + Instruction inst, + MethodContext c, + Iterator shouldIncIter, + Iterator throwIter) { + + if (inst.getOpcode() != Const.ATHROW) { + return (null); + } + + debug_instrument.log("Found a throw%n"); + + if (!shouldIncIter.hasNext()) throw new RuntimeException("Not enough entries in shouldIncIter"); + + boolean shouldInclude = shouldIncIter.next(); + + if (!shouldInclude) return null; + + Type type = Type.getType(Throwable.class); + InstructionList il = new InstructionList(); + LocalVariableGen throw_loc = get_exception_local(c.mgen, type); + il.append(InstructionFactory.createDup(type.getSize())); + il.append(InstructionFactory.createStore(type, throw_loc.getIndex())); + + if (!throwIter.hasNext()) + throw new RuntimeException("Not enough exit locations in the exitIter"); + + il.append(call_enter_exit(c, "exceptionExit", throwIter.next())); + return (il); + } + + /** + * Used to generate code to process an uncaught exception that our instrumentation has caught. + * First, assign the Exception to a local variable (exception__$trace2_val). Then call + * daikon.chicory.Runtime.exceptionExit with line number = -1 to indicate this was a delegated + * exception. Finally, reload the exception value and re-throw it. + */ + private /*@Nullable*/ InstructionList generate_internal_catch_instrumentation( + String fullClassName, MethodContext c) { + + // if (c.mgen.getName().contains("init>") + // || c.mgen.getName().contentEquals("")) + // return (null); + + Type type = Type.getType(Throwable.class); + InstructionList il = new InstructionList(); + LocalVariableGen throw_loc = get_exception_local(c.mgen, type); + il.append(InstructionFactory.createStore(type, throw_loc.getIndex())); + + il.append(call_enter_exit(c, "exceptionExit", -1)); + il.append(InstructionFactory.createLoad(type, throw_loc.getIndex())); + il.append(new ATHROW()); + return (il); + } + + /** + * Returns the local variable used to store the Exception thrown. If it is not present, creates it + * with the Exception type. + */ + private LocalVariableGen get_exception_local(MethodGen mgen, /*@NotNull*/ Type exception_type) { + // Find the local used for the exception value + LocalVariableGen exception_local = null; + for (LocalVariableGen lv : mgen.getLocalVariables()) { + if (lv.getName().equals("exception__$trace2_val")) { + exception_local = lv; + break; + } + } + + // If the variable was found, they must match + if (exception_local != null) + assert (exception_type.equals(exception_local.getType())) + : " exception_type = " + exception_type + "current type = " + exception_local.getType(); + + if (exception_local == null) { + // log ("Adding Exception local exception__$trace2_val"); + exception_local = mgen.addLocalVariable("exception__$trace2_val", exception_type, null, null); + } + + return (exception_local); + } + /** * Returns the local variable used to store the return result. If it is not present, creates it * with the specified type. If the variable is known to already exist, the type can be null. @@ -907,14 +1232,33 @@ private InstructionList call_enter_exit(MethodContext c, String method_name, int il.append(ifact.createConstant(line)); } + // If this is an exceptionExit, push the Exception and line number. + // The Exception value is stored in the local "exception__$trace2_val". + if (method_name.equals("exceptionExit")) { + Type exception_type = Type.getType(Throwable.class); + LocalVariableGen exception_local = get_exception_local(mg, exception_type); + il.append(InstructionFactory.createLoad(exception_type, exception_local.getIndex())); + // push line number + // System.out.println(c.mgen.getName() + " --> " + line); + il.append(ifact.createConstant(line)); + } + // Call the specified method Type[] method_args; if (method_name.equals("exit")) { method_args = new Type[] {Type.OBJECT, Type.INT, Type.INT, object_arr_typ, Type.OBJECT, Type.INT}; + + } else if (method_name.equals("exceptionExit")) { + method_args = + new Type[] { + Type.OBJECT, Type.INT, Type.INT, object_arr_typ, Type.getType(Throwable.class), Type.INT + }; + } else { method_args = new Type[] {Type.OBJECT, Type.INT, Type.INT, object_arr_typ}; } + il.append( c.ifact.createInvoke( runtime_classname, method_name, Type.VOID, method_args, Const.INVOKESTATIC)); @@ -1084,8 +1428,10 @@ class_info.class_name, getArgTypes(mgen), mgen.toString(), mgen.getName()))) { // Loop through each instruction and find the line number for each // return opcode List exit_locs = new ArrayList(); + // throw opcode + List throw_locs = new ArrayList(); - // tells whether each exit loc in the method is included or not (based on filters) + // tells whether each exit/throw loc in the method is included or not (based on filters) List isIncluded = new ArrayList(); debug_transform.log("Looking for exit points in %s%n", mgen.getName()); @@ -1122,7 +1468,6 @@ class_info.class_name, getArgTypes(mgen), mgen.toString(), mgen.getName()))) { debug_instrument.log("Could not find line... at %d%n", line_number); line_number++; } - last_line_number = line_number; if (!shouldFilter( @@ -1141,7 +1486,32 @@ class_info.class_name, getArgTypes(mgen), mgen.toString(), mgen.getName()))) { } else { isIncluded.add(false); } + break; + + case Const.ATHROW: + // only do incremental lines if we don't have the line generator + if (line_number == last_line_number && foundLine == false) { + debug_instrument.log("Could not find line... at %d%n", line_number); + line_number++; + } + last_line_number = line_number; + if (!shouldFilter( + class_info.class_name, + mgen.getName(), + DaikonWriter.methodExceptionName( + class_info.class_name, + getArgTypes(mgen), + mgen.toString(), + mgen.getName(), + line_number))) { + shouldInclude = true; + throw_locs.add(new Integer(line_number)); + + isIncluded.add(true); + } else { + isIncluded.add(false); + } break; default: @@ -1151,7 +1521,13 @@ class_info.class_name, getArgTypes(mgen), mgen.toString(), mgen.getName()))) { if (shouldInclude) { return new MethodInfo( - class_info, mgen.getName(), arg_names, arg_type_strings, exit_locs, isIncluded); + class_info, + mgen.getName(), + arg_names, + arg_type_strings, + exit_locs, + throw_locs, + isIncluded); } else { return null; } diff --git a/java/daikon/chicory/MethodInfo.java b/java/daikon/chicory/MethodInfo.java index bca121dedc..aaed6e65e9 100644 --- a/java/daikon/chicory/MethodInfo.java +++ b/java/daikon/chicory/MethodInfo.java @@ -48,6 +48,9 @@ public class MethodInfo { /** Array of argument types as classes for this method */ public Class[] arg_types; + /** throw locations for this method */ + public List throw_locations; + /** exit locations for this method */ public List exit_locations; @@ -68,6 +71,13 @@ public class MethodInfo { */ public @MonotonicNonNull RootInfo traversalExit = null; + /** + * The root of the variable tree for the method exception program point(s). + * + *

Set by Runtime and read by DeclWriter and DTraceWriter. + */ + public /*@MonotonicNonNull*/ RootInfo traversalException = null; + /** The number of times this method has been called */ public int call_cnt = 0; @@ -98,6 +108,20 @@ public MethodInfo( this.is_included = is_included; } + /** Creates a MethodInfo with the specified class, arg_names, and exit locations */ + public MethodInfo( + ClassInfo class_info, + String method_name, + String[] arg_names, + /*@ClassGetName*/ String[] arg_type_strings, + List exit_locations, + List throw_locations, + List is_included) { + + this(class_info, method_name, arg_names, arg_type_strings, exit_locations, is_included); + this.throw_locations = throw_locations; + } + // Use reserved keyword for basic type rather than signature to // avoid conflicts with user defined types. private static HashMap> primitive_classes = new HashMap>(8); diff --git a/java/daikon/chicory/RootInfo.java b/java/daikon/chicory/RootInfo.java index de16a96c95..f47794e34a 100644 --- a/java/daikon/chicory/RootInfo.java +++ b/java/daikon/chicory/RootInfo.java @@ -64,23 +64,7 @@ public static RootInfo exit_process(MethodInfo mi, int depth) { // Don't build a tree for class initializers. if (mi.is_class_init()) return root; - // Clear the set of static variables - ppt_statics.clear(); - - // Print class variables. Print class variables first because - // the depth goes deeper there ('this' is not counted). This - // guarantees that any static variables in the class are found here - // and not below. - root.addClassVars( - mi.class_info, - Modifier.isStatic(mi.member.getModifiers()), - mi.member.getDeclaringClass(), - "", - depth); - - // Print arguments - root.addParameters( - mi.class_info, mi.member, Arrays.asList(mi.arg_names), /*offset = */ "", depth); + root = method_process(mi, depth); // Print return type information for methods only and not constructors if (mi.member instanceof Method) { @@ -102,6 +86,59 @@ public static RootInfo exit_process(MethodInfo mi, int depth) { return root; } + /** Creates a RootInfo object for a method exception exit program point. */ + public static RootInfo exception_process(MethodInfo mi, int depth) { + // debug_vars.clear("Building exception exit tree for %s%n", mi); + + RootInfo root = new RootInfo(); + + // Don't build a tree for class initializers. + if (mi.is_class_init()) return root; + + root = method_process(mi, depth); + + // add a new ThrowInfo object to the traversal tree + Class returnType = Throwable.class; + DaikonVariableInfo retInfo = new ThrowInfo(returnType); + root.addChild(retInfo); + + retInfo.checkForDerivedVariables(returnType, "exception", ""); + + retInfo.addChildNodes(mi.class_info, returnType, "exception", "", depth); + + DaikonVariableInfo childClass = + new DaikonClassInfo( + "exception" + class_suffix, classClassName, stringClassName, null, false); + retInfo.addChild(childClass); + + // debug_vars.log("exit exception_process%n"); + + return root; + } + + private static RootInfo method_process(MethodInfo mi, int depth) { + RootInfo root = new RootInfo(); + + // Clear the set of static variables + ppt_statics.clear(); + + // Print class variables. Print class variables first because + // the depth goes deeper there ('this' is not counted). This + // guarantees that any static variables in the class are found here + // and not below. + root.addClassVars( + mi.class_info, + Modifier.isStatic(mi.member.getModifiers()), + mi.member.getDeclaringClass(), + "", + depth); + + // Print arguments + root.addParameters( + mi.class_info, mi.member, Arrays.asList(mi.arg_names), /*offset = */ "", depth); + return root; + } + /** * Creates a RootInfo object for an object program point. This will include the class' fields and * the "this" object. diff --git a/java/daikon/chicory/Runtime.java b/java/daikon/chicory/Runtime.java index 40488fb3d7..32ab84bed0 100644 --- a/java/daikon/chicory/Runtime.java +++ b/java/daikon/chicory/Runtime.java @@ -284,6 +284,76 @@ public static synchronized void enter( } } + /** + * Called when a method throws an Exception. + * + * @param obj - Receiver of the method that was entered. Null if method is static + * @param nonce - Nonce identifying which enter/throw pair this is + * @param mi_index - Index in methods of the MethodInfo for this method + * @param args - Array of arguments to method + * @param exception_val - thrown Exception + * @param exitLineNum - The line number of the throw statement causing the exception exit or -1 + * for an uncaught exception + */ + public static synchronized void exceptionExit( + /*@Nullable*/ Object obj, + int nonce, + int mi_index, + Object[] args, + Throwable exception_val, + int exitLineNum) { + + if (debug) { + MethodInfo mi = SharedData.methods.get(mi_index); + method_indent = method_indent.substring(2); + System.out.printf( + "%smethod_throw %s.%s%n", method_indent, mi.class_info.class_name, mi.method_name); + } + if (dontProcessPpts()) return; + + // Make sure that the in_dtrace flag matches the stack trace + // check_in_dtrace(); + + // Ignore this call if we are already processing a dtrace record + if (in_dtrace) return; + + // Note that we are processing a dtrace record until we return + in_dtrace = true; + try { + int num_new_classes = 0; + synchronized (SharedData.new_classes) { + num_new_classes = SharedData.new_classes.size(); + } + if (num_new_classes > 0) process_new_classes(); + + // Skip this call if it was not sampled at entry to the method + if (sample_start > 0) { + CallInfo ci = null; + @SuppressWarnings("nullness") // map: key was put in map by enter() + /*@NonNull*/ Deque callstack = thread_to_callstack.get(Thread.currentThread()); + while (!callstack.isEmpty()) { + ci = callstack.pop(); + if (ci.nonce == nonce) break; + } + if (ci == null) { + System.out.printf("no enter for throwExit %s%n", SharedData.methods.get(mi_index)); + return; + } else if (!ci.captured) { + return; + } + } + + // Write out the infromation for this method + MethodInfo mi = SharedData.methods.get(mi_index); + // long start = System.currentTimeMillis(); + dtrace_writer.methodExceptionExit(mi, nonce, obj, args, exception_val, exitLineNum); + // long duration = System.currentTimeMillis() - start; + // System.out.println ("Exit " + mi + " " + duration + "ms"); + } finally { + in_dtrace = false; + } + } + /** * Called when a method is exited. * @@ -455,6 +525,7 @@ public static void process_new_classes() { for (MethodInfo mi : class_info.method_infos) { mi.traversalEnter = RootInfo.enter_process(mi, Runtime.nesting_depth); mi.traversalExit = RootInfo.exit_process(mi, Runtime.nesting_depth); + mi.traversalException = RootInfo.exception_process(mi, Runtime.nesting_depth); } decl_writer.printDeclClass(class_info, comp_info); diff --git a/java/daikon/chicory/ThrowInfo.java b/java/daikon/chicory/ThrowInfo.java new file mode 100644 index 0000000000..38f31308a3 --- /dev/null +++ b/java/daikon/chicory/ThrowInfo.java @@ -0,0 +1,24 @@ +package daikon.chicory; + +/** A subtype of DaikonVariableInfo used for operands of throw statements. */ +public class ThrowInfo extends DaikonVariableInfo { + + /** + * Constructs an ThrowInfo object with the specified type. + * + * @param exceptionType the thrown exception + */ + public ThrowInfo(Class exceptionType) { + super("exception", stdClassName(exceptionType), getRepName(exceptionType, false)); + } + + @Override + public Object getMyValFromParentVal(Object value) { + throw new RuntimeException("Don't call getMyValFromParentVal on ThrowInfo objects"); + } + + /** Returns the kind of this variable. We treat throws as a kind of RETURN. */ + public VarKind get_var_kind() { + return VarKind.RETURN; + } +} diff --git a/java/daikon/diff/Diff.java b/java/daikon/diff/Diff.java index ec26c8c2c8..ad8f36d51a 100644 --- a/java/daikon/diff/Diff.java +++ b/java/daikon/diff/Diff.java @@ -681,6 +681,8 @@ private boolean shouldAdd(@Nullable PptTopLevel ppt) { return true; } else if (ppt.ppt_name.isCombinedExitPoint()) { return true; + } else if (ppt.ppt_name.isCombinedExceptionPoint()) { + return true; } else { return false; } diff --git a/java/daikon/tools/jtb/AnnotateVisitor.java b/java/daikon/tools/jtb/AnnotateVisitor.java index 8c21c01212..0d47f5e29b 100644 --- a/java/daikon/tools/jtb/AnnotateVisitor.java +++ b/java/daikon/tools/jtb/AnnotateVisitor.java @@ -313,6 +313,7 @@ public void visit(FieldDeclaration n) { @Nullable InvariantsAndModifiedVars[] get_requires_and_ensures(PptMap ppts, Node n) { InvariantsAndModifiedVars requires_invs = null; InvariantsAndModifiedVars ensures_invs = null; + InvariantsAndModifiedVars throw_invs = null; List matching_ppts = null; if (n instanceof MethodDeclaration) { @@ -333,6 +334,11 @@ public void visit(FieldDeclaration n) { continue; } ensures_invs = invariants_for(ppt, ppts); + } else if (ppt.ppt_name.isExceptionPoint()) { + if (!ppt.ppt_name.isCombinedExceptionPoint()) { + continue; + } + throw_invs = invariants_for(ppt, ppts); } } @@ -341,27 +347,34 @@ public void visit(FieldDeclaration n) { // requires_invs, ensures_invs); // } - return new @Nullable InvariantsAndModifiedVars[] {requires_invs, ensures_invs}; + return new @Nullable InvariantsAndModifiedVars[] {requires_invs, ensures_invs, throw_invs}; } public void insertAlso(Node n) { addComment(n, "@ also" + lineSep, true); } - // n must be a MethodDeclaration or ConstructorDeclaration - public void insertBehavior(Node n) { + /** + * Insert invariants as annotations. + * + * @param n the node to be modified. It must be a MethodDeclaration or ConstructorDeclaration. + * @param exceptional a flag indicating if we are processing normal or exception invariants. + */ + public void insertBehavior(Node n, boolean exceptional) { class InsertBehaviorVisitor extends DepthFirstVisitor { Node n; boolean behaviorInserted; + boolean exceptionalBehavior = false; - public InsertBehaviorVisitor(Node n) { + public InsertBehaviorVisitor(Node n, boolean exceptB) { super(); + this.exceptionalBehavior = exceptB; this.n = n; behaviorInserted = false; } private String getBehaviorString() { - return "normal_behavior"; + return !exceptionalBehavior ? "normal_behavior" : "exceptional_behavior"; } @Override @@ -413,7 +426,7 @@ public void visit(NodeListOptional nlo) { } } - InsertBehaviorVisitor v = new InsertBehaviorVisitor(n); + InsertBehaviorVisitor v = new InsertBehaviorVisitor(n, exceptional); // We are going to move back up the parse tree so we can look // at the Modifiers for this method (or constructor). @@ -443,6 +456,7 @@ public void visit(MethodDeclaration n) { InvariantsAndModifiedVars requires_invs = requires_and_ensures[0]; InvariantsAndModifiedVars ensures_invs = requires_and_ensures[1]; + InvariantsAndModifiedVars throws_invs = requires_and_ensures[2]; String ensures_tag = Daikon.output_format.ensures_tag(); String requires_tag = Daikon.output_format.requires_tag(); @@ -472,6 +486,21 @@ public void visit(MethodDeclaration n) { true); } + if (!lightweight) { + boolean excInserted = + insertInvariants( + n.getParent().getParent() /* see ClassOrInterfaceBodyDeclaration */, + requires_tag, + throws_invs, + lightweight); + if (excInserted) { + insertBehavior(n, true); + if (ensures_invs != null || requires_invs != null) { + insertAlso(n.getParent().getParent()); + } + } + } + boolean invariantInserted = insertInvariants( n.getParent().getParent() /* see ClassOrInterfaceBodyDeclaration */, @@ -499,7 +528,7 @@ public void visit(MethodDeclaration n) { if (!invariantInserted) { insertJMLWorkaround(n.getParent().getParent() /* see ClassOrInterfaceBodyDeclaration */); } - insertBehavior(n); + insertBehavior(n, false); if (isImplementation || isOverride // temporary fix: not processed correctly by Ast.java @@ -569,7 +598,7 @@ public void visit(ConstructorDeclaration n) { if (!invariantInserted) { insertJMLWorkaround(n.getParent().getParent() /* see ClassOrInterfaceBodyDeclaration */); } - insertBehavior(n); + insertBehavior(n, false); addComment( n.getParent().getParent() /* see ClassOrInterfaceBodyDeclaration */, JML_START_COMMENT, diff --git a/tests/chicory-tests/option-tests/Makefile b/tests/chicory-tests/option-tests/Makefile index 3a011e3227..7ef1c73f78 100644 --- a/tests/chicory-tests/option-tests/Makefile +++ b/tests/chicory-tests/option-tests/Makefile @@ -13,9 +13,11 @@ SRC_FILES = DataStructures/Comparable.java \ DataStructures/Overflow.java \ DataStructures/StackAr.java \ DataStructures/StackArTester.java \ + DataStructures/StackArTesterException.java \ DataStructures/Underflow.java CLASS_FILES = $(subst .java,.class,$(SRC_FILES)) TARGET_ARGS = DataStructures.StackArTester +TARGET_ARGS_E = DataStructures.StackArTesterException DAIKON_ARGS = --no_text_output --no_show_progress --config config.txt --config_option daikon.Debug.show_stack_trace=true -o $@ CHICORY = $(DAIKONDIR)/java/ChicoryPremain.jar CHICORY_ARGS = --dtrace-file=$(basename $(basename $@)).dtrace @@ -33,7 +35,8 @@ ifeq (cygwin,$(OSTYPE)) endif -TESTS = online pptsel pptomit nesting stdvis varomit samples misc +TESTS = online pptsel pptomit nesting stdvis varomit samples misc \ + exception exceptionSel exceptionOmit # This is the working directory, but not necessarily the directory in # which this Makefile is found. @@ -82,6 +85,20 @@ misc.inv.gz : $(CLASS_FILES) $(CHICORY) --premain=$(PREMAIN) --heap_size=100m \ --daikon --daikon-args '$(DAIKON_ARGS)' $(TARGET_ARGS) +exception.inv.gz : $(CLASS_FILES) $(CHICORY) + java -cp .:$(DAIKON_CLASSPATH) daikon.Chicory $(CHICORY_ARGS) \ + --daikon --daikon-args '$(DAIKON_ARGS)' $(TARGET_ARGS_E) + +exceptionOmit.inv.gz : $(CLASS_FILES) $(CHICORY) + java -cp .:$(DAIKON_CLASSPATH) daikon.Chicory $(CHICORY_ARGS) \ + --ppt-omit-pattern 'push|pop' \ + --daikon --daikon-args '$(DAIKON_ARGS)' $(TARGET_ARGS_E) + +exceptionSel.inv.gz : $(CLASS_FILES) $(CHICORY) + java -cp .:$(DAIKON_CLASSPATH) daikon.Chicory $(CHICORY_ARGS) \ + --ppt-select-pattern 'push|pop' \ + --daikon --daikon-args '$(DAIKON_ARGS)' $(TARGET_ARGS_E) + %.daikon.diff : %.inv.gz %.inv.txt.goal java -cp .:$(DAIKON_CLASSPATH) daikon.PrintInvariants $< > $*.inv.txt -diff -w -u $*.inv.txt.goal $*.inv.txt > $@ diff --git a/tests/chicory-tests/option-tests/exception.inv.txt.goal b/tests/chicory-tests/option-tests/exception.inv.txt.goal new file mode 100644 index 0000000000..bf73e1f95a --- /dev/null +++ b/tests/chicory-tests/option-tests/exception.inv.txt.goal @@ -0,0 +1,499 @@ +=========================================================================== +DataStructures.MyInteger:::OBJECT +this.value == 0 +=========================================================================== +DataStructures.MyInteger.MyInteger(int):::ENTER +x == 0 +=========================================================================== +DataStructures.MyInteger.MyInteger(int):::EXIT +this.value == orig(x) +=========================================================================== +DataStructures.Overflow:::OBJECT +this has only one value +=========================================================================== +DataStructures.Overflow.Overflow():::EXIT +=========================================================================== +DataStructures.StackAr:::OBJECT +this.theArray != null +this.theArray.getClass().getName() == java.lang.Object[].class +this.topOfStack >= -1 +this.theArray[this.topOfStack+1..] elements == null +this.theArray[0..this.topOfStack] elements != null +this.topOfStack <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.StackAr(int):::ENTER +capacity >= 0 +=========================================================================== +DataStructures.StackAr.StackAr(int):::EXIT +orig(capacity) == size(this.theArray[]) +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +this.theArray[0..this.topOfStack] == [] +=========================================================================== +DataStructures.StackAr.isEmpty():::ENTER +=========================================================================== +DataStructures.StackAr.isEmpty():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +(this.topOfStack == -1) <==> (return == true) +(this.topOfStack == -1) ==> (this.theArray[0..this.topOfStack] == []) +(this.topOfStack == -1) ==> (this.theArray[] elements == null) +(this.topOfStack == -1) ==> (this.theArray[].getClass().getName() elements == null) +(this.topOfStack >= 0) <==> (return == false) +(this.topOfStack >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0)) +=========================================================================== +DataStructures.StackAr.isEmpty():::EXIT;condition="return == true" +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +return == true +this.theArray[0..this.topOfStack] == [] +=========================================================================== +DataStructures.StackAr.isEmpty():::EXIT;condition="not(return == true)" +this.topOfStack >= 0 +return == false +(size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +=========================================================================== +DataStructures.StackAr.isFull():::ENTER +=========================================================================== +DataStructures.StackAr.isFull():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +(return == false) <==> (this.theArray[this.topOfStack+1..] elements == null) +(return == false) <==> (this.topOfStack < size(this.theArray[])-1) +(return == true) <==> (this.topOfStack == size(this.theArray[])-1) +(return == true) ==> (this.theArray[] elements != null) +(return == true) ==> (this.theArray[this.topOfStack+1..] == []) +=========================================================================== +DataStructures.StackAr.isFull():::EXIT;condition="return == true" +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +this.theArray[] elements != null +return == true +this.theArray[this.topOfStack+1..] == [] +=========================================================================== +DataStructures.StackAr.isFull():::EXIT;condition="not(return == true)" +return == false +this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.makeEmpty():::ENTER +(this.topOfStack == 0) ==> (size(this.theArray[])-1 == 0) +=========================================================================== +DataStructures.StackAr.makeEmpty():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[orig(this.topOfStack)+1..] == orig(this.theArray[this.topOfStack+1..]) +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +this.theArray[0..this.topOfStack] == [] +this.topOfStack <= orig(this.topOfStack) +(orig(this.topOfStack) == 0) ==> (size(this.theArray[])-1 == 0) +orig(this.topOfStack) <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.pop():::ENTER +this.topOfStack >= 0 +this.theArray[0..this.topOfStack] contains no duplicates +=========================================================================== +DataStructures.StackAr.pop():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..post(this.topOfStack)]) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..this.topOfStack-1]) +this.theArray[orig(this.topOfStack)+1..] == orig(this.theArray[this.topOfStack+1..]) +this.theArray[orig(this.topOfStack)] == null +this.theArray[0..orig(this.topOfStack)] contains no duplicates +this.topOfStack - orig(this.topOfStack) + 1 == 0 +this.topOfStack < size(this.theArray[])-1 +orig(this.topOfStack) <= size(this.theArray[])-1 +this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)] +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::ENTER +x != null +this.theArray.getClass().getName() != x.getClass().getName() +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +orig(x) == this.theArray[this.topOfStack] +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[this.topOfStack+1..] == orig(this.theArray[post(this.topOfStack)+1..]) +this.theArray[0..this.topOfStack-1] == orig(this.theArray[0..post(this.topOfStack)-1]) +this.theArray[0..this.topOfStack-1] == orig(this.theArray[0..this.topOfStack]) +this.topOfStack >= 0 +orig(this.theArray[post(this.topOfStack)..]) elements == null +this.theArray.getClass().getName() != orig(x.getClass().getName()) +orig(x.getClass().getName()) in this.theArray[].getClass().getName() +this.topOfStack - orig(this.topOfStack) - 1 == 0 +(size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +orig(this.topOfStack) < size(this.theArray[])-1 +orig(this.theArray[post(this.topOfStack)..]) elements == orig(this.theArray[post(this.topOfStack)]) +=========================================================================== +DataStructures.StackAr.top():::ENTER +=========================================================================== +DataStructures.StackAr.top():::EXIT74 +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +return == null +this.theArray[0..this.topOfStack] == [] +this.theArray[] elements == return +=========================================================================== +DataStructures.StackAr.top():::EXIT75 +return == this.theArray[this.topOfStack] +return == this.theArray[orig(this.topOfStack)] +return == orig(this.theArray[post(this.topOfStack)]) +return == orig(this.theArray[this.topOfStack]) +this.topOfStack >= 0 +(size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +=========================================================================== +DataStructures.StackAr.top():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +(this.topOfStack == -1) <==> (return == null) +(this.topOfStack == -1) ==> (this.theArray[0..this.topOfStack] == []) +(this.topOfStack == -1) ==> (this.theArray[] elements == null) +(this.topOfStack == -1) ==> (this.theArray[] elements == return) +(this.topOfStack == -1) ==> (this.theArray[].getClass().getName() elements == null) +(this.topOfStack == -1) ==> (this.theArray[this.topOfStack+1..] elements == return) +(this.topOfStack >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0)) +(this.topOfStack >= 0) ==> (return == orig(this.theArray[post(this.topOfStack)])) +(this.topOfStack >= 0) ==> (return == orig(this.theArray[this.topOfStack])) +(this.topOfStack >= 0) ==> (return == this.theArray[orig(this.topOfStack)]) +(this.topOfStack >= 0) ==> (return == this.theArray[this.topOfStack]) +(this.topOfStack >= 0) ==> (return.getClass().getName() in this.theArray[].getClass().getName()) +(this.topOfStack >= 0) ==> (this.theArray.getClass().getName() != return.getClass().getName()) +this.theArray.getClass().getName() != return.getClass().getName() +return.getClass().getName() in this.theArray[].getClass().getName() +=========================================================================== +DataStructures.StackAr.topAndPop():::ENTER +this.theArray[0..this.topOfStack] contains no duplicates +=========================================================================== +DataStructures.StackAr.topAndPop():::EXIT108 +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +return == null +this.theArray[0..this.topOfStack] == [] +this.theArray[] elements == return +=========================================================================== +DataStructures.StackAr.topAndPop():::EXIT111 +return == orig(this.theArray[this.topOfStack]) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..this.topOfStack-1]) +orig(this.topOfStack) >= 0 +this.theArray[orig(this.topOfStack)] == null +this.topOfStack - orig(this.topOfStack) + 1 == 0 +this.topOfStack < size(this.theArray[])-1 +(size(this.theArray[])-1 == 0) ==> (orig(this.topOfStack) == 0) +this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)] +=========================================================================== +DataStructures.StackAr.topAndPop():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..post(this.topOfStack)]) +this.theArray[orig(this.topOfStack)+1..] == orig(this.theArray[this.topOfStack+1..]) +(orig(this.topOfStack) >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (orig(this.topOfStack) == 0)) +(orig(this.topOfStack) >= 0) ==> (return == orig(this.theArray[this.topOfStack])) +(orig(this.topOfStack) >= 0) ==> (return.getClass().getName() in orig(this.theArray[].getClass().getName())) +(orig(this.topOfStack) >= 0) ==> (this.theArray.getClass().getName() != return.getClass().getName()) +(orig(this.topOfStack) >= 0) ==> (this.theArray[0..this.topOfStack] == orig(this.theArray[0..this.topOfStack-1])) +(orig(this.topOfStack) >= 0) ==> (this.theArray[orig(this.topOfStack)..] elements == null) +(orig(this.topOfStack) >= 0) ==> (this.theArray[orig(this.topOfStack)..] elements == this.theArray[orig(this.topOfStack)]) +(orig(this.topOfStack) >= 0) ==> (this.theArray[orig(this.topOfStack)] == null) +(orig(this.topOfStack) >= 0) ==> (this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)]) +(orig(this.topOfStack) >= 0) ==> (this.topOfStack - orig(this.topOfStack) + 1 == 0) +(orig(this.topOfStack) >= 0) ==> (this.topOfStack < size(this.theArray[])-1) +(return == null) <==> (orig(this.topOfStack) == -1) +(return == null) <==> (this.topOfStack == orig(this.topOfStack)) +(return == null) ==> (orig(this.theArray[0..this.topOfStack]) == []) +(return == null) ==> (orig(this.theArray[]) elements == null) +(return == null) ==> (orig(this.theArray[]) elements == return) +(return == null) ==> (orig(this.theArray[].getClass().getName()) elements == null) +(return == null) ==> (orig(this.theArray[post(this.topOfStack)+1..]) elements == null) +(return == null) ==> (orig(this.theArray[post(this.topOfStack)+1..]) elements == return) +(return == null) ==> (this.theArray[0..orig(this.topOfStack)] == []) +(return == null) ==> (this.theArray[0..this.topOfStack] == []) +(return == null) ==> (this.theArray[] == orig(this.theArray[])) +(return == null) ==> (this.theArray[] elements == null) +(return == null) ==> (this.theArray[] elements == return) +(return == null) ==> (this.theArray[].getClass().getName() elements == null) +(return == null) ==> (this.theArray[orig(this.topOfStack)+1..] elements == return) +(return == null) ==> (this.theArray[this.topOfStack+1..] elements == return) +(return == null) ==> (this.topOfStack == -1) +this.theArray[0..orig(this.topOfStack)] contains no duplicates +this.theArray.getClass().getName() != return.getClass().getName() +this.topOfStack <= orig(this.topOfStack) +return.getClass().getName() in orig(this.theArray[].getClass().getName()) +orig(this.topOfStack) <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException:::CLASS +DataStructures.StackArTesterException.s != null +DataStructures.StackArTesterException.s.theArray != null +DataStructures.StackArTesterException.s.theArray.getClass().getName() == java.lang.Object[].class +DataStructures.StackArTesterException.s.topOfStack >= -1 +DataStructures.StackArTesterException.rnd has only one value +DataStructures.StackArTesterException.rnd != null +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] elements == null +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements != null +DataStructures.StackArTesterException.s.topOfStack <= size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::ENTER +DataStructures.StackArTesterException.s == x +x != null +x.getClass().getName() == DataStructures.StackAr.class +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements are equal +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == DataStructures.StackArTesterException.s +DataStructures.StackArTesterException.s.theArray.getClass().getName() != x.getClass().getName() +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == x +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::EXCEPTION +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s == orig(x) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.theArray[] == orig(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.s.topOfStack == size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.topOfStack == orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +DataStructures.StackArTesterException.s has only one value +DataStructures.StackArTesterException.s.theArray has only one value +DataStructures.StackArTesterException.s.theArray[] == [] +DataStructures.StackArTesterException.s.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(x) has only one value +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::EXCEPTIONUNCAUGHT +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s == orig(x) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +orig(x) == DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack] +size(DataStructures.StackArTesterException.s.theArray[]) == orig(size(DataStructures.StackArTesterException.s.theArray[])) +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)+1..]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)-1]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack]) +DataStructures.StackArTesterException.s.topOfStack >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements are equal +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] elements are equal +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == null +DataStructures.StackArTesterException.s in DataStructures.StackArTesterException.s.theArray[] +DataStructures.StackArTesterException.s in DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack..] +DataStructures.StackArTesterException.s in DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == DataStructures.StackArTesterException.s +DataStructures.StackArTesterException.s.theArray.getClass().getName() != orig(x.getClass().getName()) +orig(x.getClass().getName()) in DataStructures.StackArTesterException.s.theArray[].getClass().getName() +DataStructures.StackArTesterException.s.topOfStack - orig(DataStructures.StackArTesterException.s.topOfStack) - 1 == 0 +(size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) ==> (DataStructures.StackArTesterException.s.topOfStack == 0) +orig(DataStructures.StackArTesterException.s.topOfStack) < size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == orig(x) +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)]) +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::ENTER +phase >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +DataStructures.StackArTesterException.s.topOfStack < size(DataStructures.StackArTesterException.s.theArray[])-1 +phase <= size(DataStructures.StackArTesterException.s.theArray[]) +phase != size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT19 +return.getClass().getName() == DataStructures.MyInteger.class +orig(phase) == 0 +size(DataStructures.StackArTesterException.s.theArray[]) one of { 2, 10, 20 } +DataStructures.StackArTesterException.s.theArray[0..orig(phase)-1] == [] +orig(phase) < size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.theArray[0..orig(phase)] elements == DataStructures.StackArTesterException.s.theArray[orig(phase)] +orig(phase) == (DataStructures.StackArTesterException.s.topOfStack / size(DataStructures.StackArTesterException.s.theArray[])) +orig(phase) == (DataStructures.StackArTesterException.s.topOfStack / size(DataStructures.StackArTesterException.s.theArray[])-1) +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT21 +return.getClass().getName() == java.lang.Object.class +orig(phase) == 1 +DataStructures.StackArTesterException.s.theArray[0..orig(phase)-1] elements == DataStructures.StackArTesterException.s.theArray[orig(phase)-1] +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT23 +return.getClass().getName() == DataStructures.MyInteger.class +orig(phase) == 2 +size(DataStructures.StackArTesterException.s.theArray[]) one of { 2, 10, 20 } +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT25 +return.getClass().getName() == java.lang.Object.class +orig(phase) == 3 +size(DataStructures.StackArTesterException.s.theArray[]) one of { 3, 10, 20 } +(size(DataStructures.StackArTesterException.s.theArray[]) >> size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.theArray[] == orig(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +return != null +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +DataStructures.StackArTesterException.s.theArray.getClass().getName() != return.getClass().getName() +DataStructures.StackArTesterException.s.topOfStack < size(DataStructures.StackArTesterException.s.theArray[])-1 +orig(phase) <= size(DataStructures.StackArTesterException.s.theArray[]) +orig(phase) != size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.doNew(int):::ENTER +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +size >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +DataStructures.StackArTesterException.s.topOfStack < size +size != size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.doNew(int):::EXIT +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +orig(size) == size(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +DataStructures.StackArTesterException.s.topOfStack <= orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +=========================================================================== +DataStructures.StackArTesterException.fill(int):::ENTER +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +DataStructures.StackArTesterException.s.topOfStack < n +(n == 0) ==> (size(DataStructures.StackArTesterException.s.theArray[]) == 0) +n >= size(DataStructures.StackArTesterException.s.theArray[]) +=========================================================================== +DataStructures.StackArTesterException.fill(int):::EXIT +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +orig(n) == size(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +orig(DataStructures.StackArTesterException.s.theArray[]) is a subsequence of DataStructures.StackArTesterException.s.theArray[] +DataStructures.StackArTesterException.s.topOfStack <= orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +(size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) ==> (orig(size(DataStructures.StackArTesterException.s.theArray[])) == 0) +size(DataStructures.StackArTesterException.s.theArray[])-1 >= orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +=========================================================================== +DataStructures.StackArTesterException.main(java.lang.String[]):::ENTER +DataStructures.StackArTesterException.s.topOfStack == size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.topOfStack == size(args[])-1 +DataStructures.StackArTesterException.s has only one value +DataStructures.StackArTesterException.s.theArray has only one value +DataStructures.StackArTesterException.s.theArray[] == [] +DataStructures.StackArTesterException.s.theArray[].getClass().getName() == [] +args has only one value +args.getClass().getName() == java.lang.String[].class +args[] == [] +args[].toString == [] +DataStructures.StackArTesterException.s.theArray[] is the reverse of args[] +=========================================================================== +DataStructures.StackArTesterException.main(java.lang.String[]):::EXIT +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.s.topOfStack == size(args[])-1 +DataStructures.StackArTesterException.s.topOfStack == orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +DataStructures.StackArTesterException.s.topOfStack == orig(size(args[]))-1 +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +args[] == orig(args[]) +DataStructures.StackArTesterException.s has only one value +DataStructures.StackArTesterException.s.theArray has only one value +DataStructures.StackArTesterException.s.theArray[] contains only nulls and has only one value, of length 20 +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() == [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null] +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +args[] == [] +args[].toString == [] +size(DataStructures.StackArTesterException.s.theArray[]) == 20 +args[] is the reverse of orig(DataStructures.StackArTesterException.s.theArray[]) +=========================================================================== +DataStructures.StackArTesterException.observe():::ENTER +=========================================================================== +DataStructures.StackArTesterException.observe():::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.theArray[] == orig(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +=========================================================================== +DataStructures.StackArTesterException.push():::ENTER +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +DataStructures.StackArTesterException.s.topOfStack < size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.push():::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +size(DataStructures.StackArTesterException.s.theArray[]) == orig(size(DataStructures.StackArTesterException.s.theArray[])) +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)+1..]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)-1]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack]) +DataStructures.StackArTesterException.s.topOfStack >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == null +orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)]) contains no duplicates +DataStructures.StackArTesterException.s.topOfStack - orig(DataStructures.StackArTesterException.s.topOfStack) - 1 == 0 +(size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) ==> (DataStructures.StackArTesterException.s.topOfStack == 0) +orig(DataStructures.StackArTesterException.s.topOfStack) < size(DataStructures.StackArTesterException.s.theArray[])-1 +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)]) +=========================================================================== +DataStructures.StackArTesterException.topOrPop():::ENTER +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +=========================================================================== +DataStructures.StackArTesterException.topOrPop():::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +size(DataStructures.StackArTesterException.s.theArray[]) == orig(size(DataStructures.StackArTesterException.s.theArray[])) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)]) +DataStructures.StackArTesterException.s.theArray[orig(DataStructures.StackArTesterException.s.topOfStack)+1..] == orig(DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..]) +DataStructures.StackArTesterException.s.theArray[0..orig(DataStructures.StackArTesterException.s.topOfStack)] contains no duplicates +DataStructures.StackArTesterException.s.topOfStack <= orig(DataStructures.StackArTesterException.s.topOfStack) +orig(DataStructures.StackArTesterException.s.topOfStack) <= size(DataStructures.StackArTesterException.s.theArray[])-1 diff --git a/tests/chicory-tests/option-tests/exceptionOmit.inv.txt.goal b/tests/chicory-tests/option-tests/exceptionOmit.inv.txt.goal new file mode 100644 index 0000000000..8452938b9d --- /dev/null +++ b/tests/chicory-tests/option-tests/exceptionOmit.inv.txt.goal @@ -0,0 +1,416 @@ +=========================================================================== +DataStructures.MyInteger:::OBJECT +this.value == 0 +=========================================================================== +DataStructures.MyInteger.MyInteger(int):::ENTER +x == 0 +=========================================================================== +DataStructures.MyInteger.MyInteger(int):::EXIT +this.value == orig(x) +=========================================================================== +DataStructures.Overflow:::OBJECT +this has only one value +=========================================================================== +DataStructures.Overflow.Overflow():::EXIT +=========================================================================== +DataStructures.StackAr:::OBJECT +this.theArray != null +this.theArray.getClass().getName() == java.lang.Object[].class +this.topOfStack >= -1 +this.theArray[this.topOfStack+1..] elements == null +this.theArray[0..this.topOfStack] elements != null +this.topOfStack <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.StackAr(int):::ENTER +capacity >= 0 +=========================================================================== +DataStructures.StackAr.StackAr(int):::EXIT +orig(capacity) == size(this.theArray[]) +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +this.theArray[0..this.topOfStack] == [] +=========================================================================== +DataStructures.StackAr.isEmpty():::ENTER +=========================================================================== +DataStructures.StackAr.isEmpty():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +(this.topOfStack == -1) <==> (return == true) +(this.topOfStack == -1) ==> (this.theArray[0..this.topOfStack] == []) +(this.topOfStack == -1) ==> (this.theArray[] elements == null) +(this.topOfStack == -1) ==> (this.theArray[].getClass().getName() elements == null) +(this.topOfStack >= 0) <==> (return == false) +(this.topOfStack >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0)) +=========================================================================== +DataStructures.StackAr.isEmpty():::EXIT;condition="return == true" +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +return == true +this.theArray[0..this.topOfStack] == [] +=========================================================================== +DataStructures.StackAr.isEmpty():::EXIT;condition="not(return == true)" +this.topOfStack >= 0 +return == false +(size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +=========================================================================== +DataStructures.StackAr.isFull():::ENTER +=========================================================================== +DataStructures.StackAr.isFull():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +(return == false) <==> (this.theArray[this.topOfStack+1..] elements == null) +(return == false) <==> (this.topOfStack < size(this.theArray[])-1) +(return == true) <==> (this.topOfStack == size(this.theArray[])-1) +(return == true) ==> (this.theArray[] elements != null) +(return == true) ==> (this.theArray[this.topOfStack+1..] == []) +=========================================================================== +DataStructures.StackAr.isFull():::EXIT;condition="return == true" +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +this.theArray[] elements != null +return == true +this.theArray[this.topOfStack+1..] == [] +=========================================================================== +DataStructures.StackAr.isFull():::EXIT;condition="not(return == true)" +return == false +this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.makeEmpty():::ENTER +(this.topOfStack == 0) ==> (size(this.theArray[])-1 == 0) +=========================================================================== +DataStructures.StackAr.makeEmpty():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[orig(this.topOfStack)+1..] == orig(this.theArray[this.topOfStack+1..]) +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +this.theArray[0..this.topOfStack] == [] +this.topOfStack <= orig(this.topOfStack) +(orig(this.topOfStack) == 0) ==> (size(this.theArray[])-1 == 0) +orig(this.topOfStack) <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.top():::ENTER +=========================================================================== +DataStructures.StackAr.top():::EXIT74 +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +return == null +this.theArray[0..this.topOfStack] == [] +this.theArray[] elements == return +=========================================================================== +DataStructures.StackAr.top():::EXIT75 +return == this.theArray[this.topOfStack] +return == this.theArray[orig(this.topOfStack)] +return == orig(this.theArray[post(this.topOfStack)]) +return == orig(this.theArray[this.topOfStack]) +this.topOfStack >= 0 +(size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +=========================================================================== +DataStructures.StackAr.top():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +(this.topOfStack == -1) <==> (return == null) +(this.topOfStack == -1) ==> (this.theArray[0..this.topOfStack] == []) +(this.topOfStack == -1) ==> (this.theArray[] elements == null) +(this.topOfStack == -1) ==> (this.theArray[] elements == return) +(this.topOfStack == -1) ==> (this.theArray[].getClass().getName() elements == null) +(this.topOfStack == -1) ==> (this.theArray[this.topOfStack+1..] elements == return) +(this.topOfStack >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0)) +(this.topOfStack >= 0) ==> (return == orig(this.theArray[post(this.topOfStack)])) +(this.topOfStack >= 0) ==> (return == orig(this.theArray[this.topOfStack])) +(this.topOfStack >= 0) ==> (return == this.theArray[orig(this.topOfStack)]) +(this.topOfStack >= 0) ==> (return == this.theArray[this.topOfStack]) +(this.topOfStack >= 0) ==> (return.getClass().getName() in this.theArray[].getClass().getName()) +(this.topOfStack >= 0) ==> (this.theArray.getClass().getName() != return.getClass().getName()) +this.theArray.getClass().getName() != return.getClass().getName() +return.getClass().getName() in this.theArray[].getClass().getName() +=========================================================================== +DataStructures.StackAr.topAndPop():::ENTER +this.theArray[0..this.topOfStack] contains no duplicates +=========================================================================== +DataStructures.StackAr.topAndPop():::EXIT108 +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.theArray[] elements == null +this.theArray[].getClass().getName() elements == null +this.topOfStack == -1 +return == null +this.theArray[0..this.topOfStack] == [] +this.theArray[] elements == return +=========================================================================== +DataStructures.StackAr.topAndPop():::EXIT111 +return == orig(this.theArray[this.topOfStack]) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..this.topOfStack-1]) +orig(this.topOfStack) >= 0 +this.theArray[orig(this.topOfStack)] == null +this.topOfStack - orig(this.topOfStack) + 1 == 0 +this.topOfStack < size(this.theArray[])-1 +(size(this.theArray[])-1 == 0) ==> (orig(this.topOfStack) == 0) +this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)] +=========================================================================== +DataStructures.StackAr.topAndPop():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..post(this.topOfStack)]) +this.theArray[orig(this.topOfStack)+1..] == orig(this.theArray[this.topOfStack+1..]) +(orig(this.topOfStack) >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (orig(this.topOfStack) == 0)) +(orig(this.topOfStack) >= 0) ==> (return == orig(this.theArray[this.topOfStack])) +(orig(this.topOfStack) >= 0) ==> (return.getClass().getName() in orig(this.theArray[].getClass().getName())) +(orig(this.topOfStack) >= 0) ==> (this.theArray.getClass().getName() != return.getClass().getName()) +(orig(this.topOfStack) >= 0) ==> (this.theArray[0..this.topOfStack] == orig(this.theArray[0..this.topOfStack-1])) +(orig(this.topOfStack) >= 0) ==> (this.theArray[orig(this.topOfStack)..] elements == null) +(orig(this.topOfStack) >= 0) ==> (this.theArray[orig(this.topOfStack)..] elements == this.theArray[orig(this.topOfStack)]) +(orig(this.topOfStack) >= 0) ==> (this.theArray[orig(this.topOfStack)] == null) +(orig(this.topOfStack) >= 0) ==> (this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)]) +(orig(this.topOfStack) >= 0) ==> (this.topOfStack - orig(this.topOfStack) + 1 == 0) +(orig(this.topOfStack) >= 0) ==> (this.topOfStack < size(this.theArray[])-1) +(return == null) <==> (orig(this.topOfStack) == -1) +(return == null) <==> (this.topOfStack == orig(this.topOfStack)) +(return == null) ==> (orig(this.theArray[0..this.topOfStack]) == []) +(return == null) ==> (orig(this.theArray[]) elements == null) +(return == null) ==> (orig(this.theArray[]) elements == return) +(return == null) ==> (orig(this.theArray[].getClass().getName()) elements == null) +(return == null) ==> (orig(this.theArray[post(this.topOfStack)+1..]) elements == null) +(return == null) ==> (orig(this.theArray[post(this.topOfStack)+1..]) elements == return) +(return == null) ==> (this.theArray[0..orig(this.topOfStack)] == []) +(return == null) ==> (this.theArray[0..this.topOfStack] == []) +(return == null) ==> (this.theArray[] == orig(this.theArray[])) +(return == null) ==> (this.theArray[] elements == null) +(return == null) ==> (this.theArray[] elements == return) +(return == null) ==> (this.theArray[].getClass().getName() elements == null) +(return == null) ==> (this.theArray[orig(this.topOfStack)+1..] elements == return) +(return == null) ==> (this.theArray[this.topOfStack+1..] elements == return) +(return == null) ==> (this.topOfStack == -1) +this.theArray[0..orig(this.topOfStack)] contains no duplicates +this.theArray.getClass().getName() != return.getClass().getName() +this.topOfStack <= orig(this.topOfStack) +return.getClass().getName() in orig(this.theArray[].getClass().getName()) +orig(this.topOfStack) <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException:::CLASS +DataStructures.StackArTesterException.s != null +DataStructures.StackArTesterException.s.theArray != null +DataStructures.StackArTesterException.s.theArray.getClass().getName() == java.lang.Object[].class +DataStructures.StackArTesterException.s.topOfStack >= -1 +DataStructures.StackArTesterException.rnd has only one value +DataStructures.StackArTesterException.rnd != null +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] elements == null +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements != null +DataStructures.StackArTesterException.s.topOfStack <= size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::ENTER +DataStructures.StackArTesterException.s == x +x != null +x.getClass().getName() == DataStructures.StackAr.class +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements are equal +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == DataStructures.StackArTesterException.s +DataStructures.StackArTesterException.s.theArray.getClass().getName() != x.getClass().getName() +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == x +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::EXCEPTION +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s == orig(x) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.theArray[] == orig(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.s.topOfStack == size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.topOfStack == orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +DataStructures.StackArTesterException.s has only one value +DataStructures.StackArTesterException.s.theArray has only one value +DataStructures.StackArTesterException.s.theArray[] == [] +DataStructures.StackArTesterException.s.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(x) has only one value +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::EXCEPTIONUNCAUGHT +=========================================================================== +DataStructures.StackArTesterException.InsertCanFail(java.lang.Object):::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s == orig(x) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +orig(x) == DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack] +size(DataStructures.StackArTesterException.s.theArray[]) == orig(size(DataStructures.StackArTesterException.s.theArray[])) +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)+1..]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)-1]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack]) +DataStructures.StackArTesterException.s.topOfStack >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements are equal +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] elements are equal +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == null +DataStructures.StackArTesterException.s in DataStructures.StackArTesterException.s.theArray[] +DataStructures.StackArTesterException.s in DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack..] +DataStructures.StackArTesterException.s in DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == DataStructures.StackArTesterException.s +DataStructures.StackArTesterException.s.theArray.getClass().getName() != orig(x.getClass().getName()) +orig(x.getClass().getName()) in DataStructures.StackArTesterException.s.theArray[].getClass().getName() +DataStructures.StackArTesterException.s.topOfStack - orig(DataStructures.StackArTesterException.s.topOfStack) - 1 == 0 +(size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) ==> (DataStructures.StackArTesterException.s.topOfStack == 0) +orig(DataStructures.StackArTesterException.s.topOfStack) < size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements == orig(x) +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)]) +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::ENTER +phase >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +DataStructures.StackArTesterException.s.topOfStack < size(DataStructures.StackArTesterException.s.theArray[])-1 +phase <= size(DataStructures.StackArTesterException.s.theArray[]) +phase != size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT19 +return.getClass().getName() == DataStructures.MyInteger.class +orig(phase) == 0 +size(DataStructures.StackArTesterException.s.theArray[]) one of { 2, 10, 20 } +DataStructures.StackArTesterException.s.theArray[0..orig(phase)-1] == [] +orig(phase) < size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.theArray[0..orig(phase)] elements == DataStructures.StackArTesterException.s.theArray[orig(phase)] +orig(phase) == (DataStructures.StackArTesterException.s.topOfStack / size(DataStructures.StackArTesterException.s.theArray[])) +orig(phase) == (DataStructures.StackArTesterException.s.topOfStack / size(DataStructures.StackArTesterException.s.theArray[])-1) +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT21 +return.getClass().getName() == java.lang.Object.class +orig(phase) == 1 +DataStructures.StackArTesterException.s.theArray[0..orig(phase)-1] elements == DataStructures.StackArTesterException.s.theArray[orig(phase)-1] +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT23 +return.getClass().getName() == DataStructures.MyInteger.class +orig(phase) == 2 +size(DataStructures.StackArTesterException.s.theArray[]) one of { 2, 10, 20 } +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT25 +return.getClass().getName() == java.lang.Object.class +orig(phase) == 3 +size(DataStructures.StackArTesterException.s.theArray[]) one of { 3, 10, 20 } +(size(DataStructures.StackArTesterException.s.theArray[]) >> size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) +=========================================================================== +DataStructures.StackArTesterException.createItem(int):::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.theArray[] == orig(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +return != null +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +DataStructures.StackArTesterException.s.theArray.getClass().getName() != return.getClass().getName() +DataStructures.StackArTesterException.s.topOfStack < size(DataStructures.StackArTesterException.s.theArray[])-1 +orig(phase) <= size(DataStructures.StackArTesterException.s.theArray[]) +orig(phase) != size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.doNew(int):::ENTER +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +size >= 0 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +DataStructures.StackArTesterException.s.topOfStack < size +size != size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.doNew(int):::EXIT +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +orig(size) == size(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +DataStructures.StackArTesterException.s.topOfStack <= orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +=========================================================================== +DataStructures.StackArTesterException.fill(int):::ENTER +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +DataStructures.StackArTesterException.s.topOfStack < n +(n == 0) ==> (size(DataStructures.StackArTesterException.s.theArray[]) == 0) +n >= size(DataStructures.StackArTesterException.s.theArray[]) +=========================================================================== +DataStructures.StackArTesterException.fill(int):::EXIT +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +orig(n) == size(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +DataStructures.StackArTesterException.s.topOfStack == -1 +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == [] +orig(DataStructures.StackArTesterException.s.theArray[]) is a subsequence of DataStructures.StackArTesterException.s.theArray[] +DataStructures.StackArTesterException.s.topOfStack <= orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +(size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) ==> (orig(size(DataStructures.StackArTesterException.s.theArray[])) == 0) +size(DataStructures.StackArTesterException.s.theArray[])-1 >= orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +=========================================================================== +DataStructures.StackArTesterException.main(java.lang.String[]):::ENTER +DataStructures.StackArTesterException.s.topOfStack == size(DataStructures.StackArTesterException.s.theArray[])-1 +DataStructures.StackArTesterException.s.topOfStack == size(args[])-1 +DataStructures.StackArTesterException.s has only one value +DataStructures.StackArTesterException.s.theArray has only one value +DataStructures.StackArTesterException.s.theArray[] == [] +DataStructures.StackArTesterException.s.theArray[].getClass().getName() == [] +args has only one value +args.getClass().getName() == java.lang.String[].class +args[] == [] +args[].toString == [] +DataStructures.StackArTesterException.s.theArray[] is the reverse of args[] +=========================================================================== +DataStructures.StackArTesterException.main(java.lang.String[]):::EXIT +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.s.topOfStack == size(args[])-1 +DataStructures.StackArTesterException.s.topOfStack == orig(size(DataStructures.StackArTesterException.s.theArray[]))-1 +DataStructures.StackArTesterException.s.topOfStack == orig(size(args[]))-1 +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +args[] == orig(args[]) +DataStructures.StackArTesterException.s has only one value +DataStructures.StackArTesterException.s.theArray has only one value +DataStructures.StackArTesterException.s.theArray[] contains only nulls and has only one value, of length 20 +DataStructures.StackArTesterException.s.theArray[] elements == null +DataStructures.StackArTesterException.s.theArray[].getClass().getName() == [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null] +DataStructures.StackArTesterException.s.theArray[].getClass().getName() elements == null +args[] == [] +args[].toString == [] +size(DataStructures.StackArTesterException.s.theArray[]) == 20 +args[] is the reverse of orig(DataStructures.StackArTesterException.s.theArray[]) +=========================================================================== +DataStructures.StackArTesterException.observe():::ENTER +=========================================================================== +DataStructures.StackArTesterException.observe():::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.s.theArray[] == orig(DataStructures.StackArTesterException.s.theArray[]) +DataStructures.StackArTesterException.s.topOfStack == orig(DataStructures.StackArTesterException.s.topOfStack) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +=========================================================================== +DataStructures.StackArTesterException.topOrPop():::ENTER +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +=========================================================================== +DataStructures.StackArTesterException.topOrPop():::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +size(DataStructures.StackArTesterException.s.theArray[]) == orig(size(DataStructures.StackArTesterException.s.theArray[])) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] == orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)]) +DataStructures.StackArTesterException.s.theArray[orig(DataStructures.StackArTesterException.s.topOfStack)+1..] == orig(DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..]) +DataStructures.StackArTesterException.s.theArray[0..orig(DataStructures.StackArTesterException.s.topOfStack)] contains no duplicates +DataStructures.StackArTesterException.s.topOfStack <= orig(DataStructures.StackArTesterException.s.topOfStack) +orig(DataStructures.StackArTesterException.s.topOfStack) <= size(DataStructures.StackArTesterException.s.theArray[])-1 diff --git a/tests/chicory-tests/option-tests/exceptionSel.inv.txt.goal b/tests/chicory-tests/option-tests/exceptionSel.inv.txt.goal new file mode 100644 index 0000000000..c7b5afd2ce --- /dev/null +++ b/tests/chicory-tests/option-tests/exceptionSel.inv.txt.goal @@ -0,0 +1,101 @@ +=========================================================================== +DataStructures.StackAr:::OBJECT +this.theArray != null +this.theArray.getClass().getName() == java.lang.Object[].class +this.topOfStack >= -1 +this.theArray[this.topOfStack+1..] elements == null +this.theArray[0..this.topOfStack] elements != null +this.topOfStack <= size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.pop():::ENTER +this.topOfStack >= 0 +this.theArray[0..this.topOfStack] contains no duplicates +=========================================================================== +DataStructures.StackAr.pop():::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..post(this.topOfStack)]) +this.theArray[0..this.topOfStack] == orig(this.theArray[0..this.topOfStack-1]) +this.theArray[orig(this.topOfStack)+1..] == orig(this.theArray[this.topOfStack+1..]) +this.theArray[orig(this.topOfStack)] == null +this.theArray[0..orig(this.topOfStack)] contains no duplicates +this.topOfStack - orig(this.topOfStack) + 1 == 0 +this.topOfStack < size(this.theArray[])-1 +orig(this.topOfStack) <= size(this.theArray[])-1 +this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)] +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::ENTER +x != null +this.theArray.getClass().getName() != x.getClass().getName() +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXIT +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +orig(x) == this.theArray[this.topOfStack] +size(this.theArray[]) == orig(size(this.theArray[])) +this.theArray[this.topOfStack+1..] == orig(this.theArray[post(this.topOfStack)+1..]) +this.theArray[0..this.topOfStack-1] == orig(this.theArray[0..post(this.topOfStack)-1]) +this.theArray[0..this.topOfStack-1] == orig(this.theArray[0..this.topOfStack]) +this.topOfStack >= 0 +orig(this.theArray[post(this.topOfStack)..]) elements == null +this.theArray.getClass().getName() != orig(x.getClass().getName()) +orig(x.getClass().getName()) in this.theArray[].getClass().getName() +this.topOfStack - orig(this.topOfStack) - 1 == 0 +(size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +orig(this.topOfStack) < size(this.theArray[])-1 +orig(this.theArray[post(this.topOfStack)..]) elements == orig(this.theArray[post(this.topOfStack)]) +=========================================================================== +DataStructures.StackArTesterException:::CLASS +DataStructures.StackArTesterException.s != null +DataStructures.StackArTesterException.s.theArray != null +DataStructures.StackArTesterException.s.theArray.getClass().getName() == java.lang.Object[].class +DataStructures.StackArTesterException.s.topOfStack >= -1 +DataStructures.StackArTesterException.rnd has only one value +DataStructures.StackArTesterException.rnd != null +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] elements == null +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] contains no duplicates +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack] elements != null +DataStructures.StackArTesterException.s.topOfStack <= size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.push():::ENTER +DataStructures.StackArTesterException.s.topOfStack < size(DataStructures.StackArTesterException.s.theArray[])-1 +=========================================================================== +DataStructures.StackArTesterException.push():::EXIT +DataStructures.StackArTesterException.s == orig(DataStructures.StackArTesterException.s) +DataStructures.StackArTesterException.s.theArray == orig(DataStructures.StackArTesterException.s.theArray) +DataStructures.StackArTesterException.s.theArray.getClass().getName() == orig(DataStructures.StackArTesterException.s.theArray.getClass().getName()) +DataStructures.StackArTesterException.rnd == orig(DataStructures.StackArTesterException.rnd) +size(DataStructures.StackArTesterException.s.theArray[]) == orig(size(DataStructures.StackArTesterException.s.theArray[])) +DataStructures.StackArTesterException.s.theArray[DataStructures.StackArTesterException.s.topOfStack+1..] == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)+1..]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)-1]) +DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack-1] == orig(DataStructures.StackArTesterException.s.theArray[0..DataStructures.StackArTesterException.s.topOfStack]) +DataStructures.StackArTesterException.s.topOfStack >= 0 +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == null +orig(DataStructures.StackArTesterException.s.theArray[0..post(DataStructures.StackArTesterException.s.topOfStack)]) contains no duplicates +DataStructures.StackArTesterException.s.topOfStack - orig(DataStructures.StackArTesterException.s.topOfStack) - 1 == 0 +(size(DataStructures.StackArTesterException.s.theArray[])-1 == 0) ==> (DataStructures.StackArTesterException.s.topOfStack == 0) +orig(DataStructures.StackArTesterException.s.topOfStack) < size(DataStructures.StackArTesterException.s.theArray[])-1 +orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)..]) elements == orig(DataStructures.StackArTesterException.s.theArray[post(DataStructures.StackArTesterException.s.topOfStack)]) diff --git a/tests/chicory-tests/option-tests/misc.inv.txt.goal b/tests/chicory-tests/option-tests/misc.inv.txt.goal index f672117c35..3bdf8e37ea 100644 --- a/tests/chicory-tests/option-tests/misc.inv.txt.goal +++ b/tests/chicory-tests/option-tests/misc.inv.txt.goal @@ -127,10 +127,34 @@ orig(this.topOfStack) <= size(this.theArray[])-1 this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)] =========================================================================== DataStructures.StackAr.push(java.lang.Object):::ENTER -this.isFull() == false x != null this.theArray.getClass().getName() != x.getClass().getName() -this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +this.isEmpty() == this.isFull() +this.isEmpty() == orig(this.isEmpty()) +this.isEmpty() == orig(this.isFull()) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.isEmpty() == true +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 =========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) diff --git a/tests/chicory-tests/option-tests/nesting.inv.txt.goal b/tests/chicory-tests/option-tests/nesting.inv.txt.goal index 209be7bada..2641c44e70 100644 --- a/tests/chicory-tests/option-tests/nesting.inv.txt.goal +++ b/tests/chicory-tests/option-tests/nesting.inv.txt.goal @@ -118,7 +118,28 @@ this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStac DataStructures.StackAr.push(java.lang.Object):::ENTER x != null this.theArray.getClass().getName() != x.getClass().getName() -this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 =========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) diff --git a/tests/chicory-tests/option-tests/online.inv.txt.goal b/tests/chicory-tests/option-tests/online.inv.txt.goal index 5afa358fa0..6b0aa881af 100644 --- a/tests/chicory-tests/option-tests/online.inv.txt.goal +++ b/tests/chicory-tests/option-tests/online.inv.txt.goal @@ -118,7 +118,28 @@ this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStac DataStructures.StackAr.push(java.lang.Object):::ENTER x != null this.theArray.getClass().getName() != x.getClass().getName() -this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 =========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) diff --git a/tests/chicory-tests/option-tests/pptsel.inv.txt.goal b/tests/chicory-tests/option-tests/pptsel.inv.txt.goal index f22a9eb3c0..2a51ef5210 100644 --- a/tests/chicory-tests/option-tests/pptsel.inv.txt.goal +++ b/tests/chicory-tests/option-tests/pptsel.inv.txt.goal @@ -28,7 +28,28 @@ this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStac DataStructures.StackAr.push(java.lang.Object):::ENTER x != null this.theArray.getClass().getName() != x.getClass().getName() -this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 =========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) diff --git a/tests/chicory-tests/option-tests/samples.inv.txt.goal b/tests/chicory-tests/option-tests/samples.inv.txt.goal index f4420ca06b..4a6898209e 100644 --- a/tests/chicory-tests/option-tests/samples.inv.txt.goal +++ b/tests/chicory-tests/option-tests/samples.inv.txt.goal @@ -120,7 +120,28 @@ this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStac DataStructures.StackAr.push(java.lang.Object):::ENTER x != null this.theArray.getClass().getName() != x.getClass().getName() -this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 =========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) diff --git a/tests/chicory-tests/option-tests/stdvis.inv.txt.goal b/tests/chicory-tests/option-tests/stdvis.inv.txt.goal index 209be7bada..2641c44e70 100644 --- a/tests/chicory-tests/option-tests/stdvis.inv.txt.goal +++ b/tests/chicory-tests/option-tests/stdvis.inv.txt.goal @@ -118,7 +118,28 @@ this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStac DataStructures.StackAr.push(java.lang.Object):::ENTER x != null this.theArray.getClass().getName() != x.getClass().getName() -this.topOfStack < size(this.theArray[])-1 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 =========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) diff --git a/tests/chicory-tests/option-tests/varomit.inv.txt.goal b/tests/chicory-tests/option-tests/varomit.inv.txt.goal index a11c70584d..3d5392a6a2 100644 --- a/tests/chicory-tests/option-tests/varomit.inv.txt.goal +++ b/tests/chicory-tests/option-tests/varomit.inv.txt.goal @@ -64,6 +64,21 @@ this.topOfStack - orig(this.topOfStack) + 1 == 0 DataStructures.StackAr.push(java.lang.Object):::ENTER x != null =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.topOfStack >= 0 this.topOfStack - orig(this.topOfStack) - 1 == 0 diff --git a/tests/daikon-tests/ArrayList13/ArrayList13.txt-chicory.goal b/tests/daikon-tests/ArrayList13/ArrayList13.txt-chicory.goal index e4a608dcb1..44487a8400 100644 --- a/tests/daikon-tests/ArrayList13/ArrayList13.txt-chicory.goal +++ b/tests/daikon-tests/ArrayList13/ArrayList13.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for javautil.ArrayList13 -// Declarations written Sun Nov 27 16:57:07 PST 2016 +// Declarations written Mon Jul 10 09:03:09 PDT 2017 decl-version 2.0 var-comparability none @@ -78,6 +78,83 @@ variable initialCapacity flags is_param comparability 22 +ppt javautil.ArrayList13.ArrayList13(int):::THROW98 +ppt-type subexit +parent parent javautil.ArrayList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable initialCapacity + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.ArrayList13.ArrayList13():::ENTER ppt-type enter @@ -1620,6 +1697,77 @@ variable return.getClass().getName() flags synthetic classname non_null comparability 22 +ppt javautil.ArrayList13.clone():::THROW245 +ppt-type subexit +parent parent javautil.ArrayList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.ArrayList13.toArray():::ENTER ppt-type enter parent parent javautil.ArrayList13:::OBJECT 1 @@ -2561,6 +2709,97 @@ variable element.getClass().getName() flags synthetic classname non_null comparability 22 +ppt javautil.ArrayList13.add(int,\_java.lang.Object):::THROW354 +ppt-type subexit +parent parent javautil.ArrayList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable element + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable element.getClass().getName() + var-kind function getClass().getName() + enclosing-var element + dec-type java.lang.Class + rep-type java.lang.String + function-args element + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.ArrayList13.remove(int):::ENTER ppt-type enter parent parent javautil.ArrayList13:::OBJECT 1 @@ -3136,8 +3375,8 @@ variable return rep-type boolean comparability 22 -ppt javautil.ArrayList13.removeRange(int,\_int):::ENTER -ppt-type enter +ppt javautil.ArrayList13.addAll(int,\_javautil.Collection13):::THROW444 +ppt-type subexit parent parent javautil.ArrayList13:::OBJECT 1 variable this var-kind variable @@ -3194,21 +3433,41 @@ variable this.modCount rep-type int comparability 22 parent javautil.ArrayList13:::OBJECT 1 -variable fromIndex +variable index var-kind variable dec-type int rep-type int flags is_param comparability 22 -variable toIndex +variable c var-kind variable - dec-type int - rep-type int + dec-type javautil.Collection13 + rep-type hashcode flags is_param comparability 22 +variable c.getClass().getName() + var-kind function getClass().getName() + enclosing-var c + dec-type java.lang.Class + rep-type java.lang.String + function-args c + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt javautil.ArrayList13.removeRange(int,\_int):::EXIT483 -ppt-type subexit +ppt javautil.ArrayList13.removeRange(int,\_int):::ENTER +ppt-type enter parent parent javautil.ArrayList13:::OBJECT 1 variable this var-kind variable @@ -3278,7 +3537,78 @@ variable toIndex flags is_param comparability 22 -ppt javautil.ArrayList13.RangeCheck(int):::ENTER +ppt javautil.ArrayList13.removeRange(int,\_int):::EXIT483 +ppt-type subexit +parent parent javautil.ArrayList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable fromIndex + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable toIndex + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt javautil.ArrayList13.RangeCheck(int):::ENTER ppt-type enter parent parent javautil.ArrayList13:::OBJECT 1 variable this @@ -3408,6 +3738,83 @@ variable index flags is_param comparability 22 +ppt javautil.ArrayList13.RangeCheck(int):::THROW491 +ppt-type subexit +parent parent javautil.ArrayList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags synthetic classname non_null + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.ArrayList13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.ArrayList13.writeObject(java.io.ObjectOutputStream):::ENTER ppt-type enter parent parent javautil.ArrayList13:::OBJECT 1 @@ -3883,6 +4290,65 @@ variable element.getClass().getName() flags synthetic classname non_null comparability 22 +ppt javautil.AbstractList13.set(int,\_java.lang.Object):::THROW128 +ppt-type subexit +parent parent javautil.AbstractList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags synthetic classname non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable element + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable element.getClass().getName() + var-kind function getClass().getName() + enclosing-var element + dec-type java.lang.Class + rep-type java.lang.String + function-args element + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.AbstractList13.add(int,\_java.lang.Object):::ENTER ppt-type enter parent parent javautil.AbstractList13:::OBJECT 1 @@ -3930,6 +4396,65 @@ variable element.getClass().getName() flags synthetic classname non_null comparability 22 +ppt javautil.AbstractList13.add(int,\_java.lang.Object):::THROW152 +ppt-type subexit +parent parent javautil.AbstractList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags synthetic classname non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable element + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable element.getClass().getName() + var-kind function getClass().getName() + enclosing-var element + dec-type java.lang.Class + rep-type java.lang.String + function-args element + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.AbstractList13.remove(int):::ENTER ppt-type enter parent parent javautil.AbstractList13:::OBJECT 1 @@ -3963,6 +4488,51 @@ variable index flags is_param comparability 22 +ppt javautil.AbstractList13.remove(int):::THROW173 +ppt-type subexit +parent parent javautil.AbstractList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags synthetic classname non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.AbstractList13.indexOf(java.lang.Object):::ENTER ppt-type enter parent parent javautil.AbstractList13:::OBJECT 1 @@ -4687,6 +5257,51 @@ variable return.getClass().getName() flags synthetic classname non_null comparability 22 +ppt javautil.AbstractList13.listIterator(int):::THROW389 +ppt-type subexit +parent parent javautil.AbstractList13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList13 + rep-type hashcode + flags is_param non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags synthetic classname non_null + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent javautil.AbstractList13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt javautil.AbstractList13.subList(int,\_int):::ENTER ppt-type enter parent parent javautil.AbstractList13:::OBJECT 1 diff --git a/tests/daikon-tests/ArrayList17/ArrayList17.txt-chicory.goal b/tests/daikon-tests/ArrayList17/ArrayList17.txt-chicory.goal index 6b739e807f..bc9a01ff35 100644 --- a/tests/daikon-tests/ArrayList17/ArrayList17.txt-chicory.goal +++ b/tests/daikon-tests/ArrayList17/ArrayList17.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for javautil.ArrayList17 -// Declarations written Sun Nov 27 16:57:46 PST 2016 +// Declarations written Mon Jul 10 09:57:10 PDT 2017 decl-version 2.0 var-comparability none @@ -141,6 +141,147 @@ variable initialCapacity flags is_param nomod comparability 22 +ppt javautil.ArrayList17.ArrayList17(int):::THROW144 +ppt-type subexit +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable initialCapacity + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt javautil.ArrayList17.ArrayList17():::ENTER ppt-type enter @@ -1831,6 +1972,88 @@ variable return flags nomod comparability 22 +ppt javautil.ArrayList17.hugeCapacity(int):::THROW249 +ppt-type subexit +parent parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable minCapacity + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt javautil.ArrayList17.size():::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 @@ -3991,8 +4214,8 @@ variable return.getClass().getName() flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.toArray():::ENTER -ppt-type enter +ppt javautil.ArrayList17.clone():::THROW341 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -4112,9 +4335,22 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.ArrayList17.toArray():::EXIT360 -ppt-type subexit +ppt javautil.ArrayList17.toArray():::ENTER +ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -4234,31 +4470,9 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.Object[] - rep-type hashcode - flags nomod - comparability 22 -variable return.getClass().getName() - var-kind function getClass().getName() - enclosing-var return - dec-type java.lang.Class - rep-type java.lang.String - function-args return - flags nomod synthetic classname non_null - comparability 22 -variable return[..] - var-kind array - enclosing-var return - array 1 - dec-type java.lang.Object[] - rep-type hashcode[] - flags nomod - comparability 22 -ppt javautil.ArrayList17.toArray(java.lang.Object[]):::ENTER -ppt-type enter +ppt javautil.ArrayList17.toArray():::EXIT360 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -4378,7 +4592,151 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable a +variable return + var-kind return + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 +variable return[..] + var-kind array + enclosing-var return + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + +ppt javautil.ArrayList17.toArray(java.lang.Object[]):::ENTER +ppt-type enter +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable a var-kind variable dec-type java.lang.Object[] rep-type hashcode @@ -8557,8 +8915,8 @@ variable index flags is_param nomod comparability 22 -ppt javautil.ArrayList17.rangeCheckForAdd(int):::ENTER -ppt-type enter +ppt javautil.ArrayList17.rangeCheck(int):::THROW637 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -8684,9 +9042,22 @@ variable index rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.ArrayList17.rangeCheckForAdd(int):::EXIT646 -ppt-type subexit +ppt javautil.ArrayList17.rangeCheckForAdd(int):::ENTER +ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -8813,8 +9184,8 @@ variable index flags is_param nomod comparability 22 -ppt javautil.ArrayList17.outOfBoundsMsg(int):::ENTER -ppt-type enter +ppt javautil.ArrayList17.rangeCheckForAdd(int):::EXIT646 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -8941,7 +9312,7 @@ variable index flags is_param nomod comparability 22 -ppt javautil.ArrayList17.outOfBoundsMsg(int):::EXIT654 +ppt javautil.ArrayList17.rangeCheckForAdd(int):::THROW645 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9068,22 +9439,21 @@ variable index rep-type int flags is_param nomod comparability 22 -variable return +variable exception var-kind return - dec-type java.lang.String + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable return.toString - var-kind function toString() - enclosing-var return - dec-type java.lang.String +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class rep-type java.lang.String - function-args return - flags nomod synthetic to_string + flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.removeAll(java.util.Collection):::ENTER +ppt javautil.ArrayList17.outOfBoundsMsg(int):::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9204,22 +9574,14 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable c +variable index var-kind variable - dec-type java.util.Collection - rep-type hashcode + dec-type int + rep-type int flags is_param nomod comparability 22 -variable c.getClass().getName() - var-kind function getClass().getName() - enclosing-var c - dec-type java.lang.Class - rep-type java.lang.String - function-args c - flags nomod synthetic classname non_null - comparability 22 -ppt javautil.ArrayList17.removeAll(java.util.Collection):::EXIT673 +ppt javautil.ArrayList17.outOfBoundsMsg(int):::EXIT654 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9340,28 +9702,28 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable c +variable index var-kind variable - dec-type java.util.Collection - rep-type hashcode + dec-type int + rep-type int flags is_param nomod comparability 22 -variable c.getClass().getName() - var-kind function getClass().getName() - enclosing-var c - dec-type java.lang.Class - rep-type java.lang.String - function-args c - flags nomod synthetic classname non_null - comparability 22 variable return var-kind return - dec-type boolean - rep-type boolean + dec-type java.lang.String + rep-type hashcode flags nomod comparability 22 +variable return.toString + var-kind function toString() + enclosing-var return + dec-type java.lang.String + rep-type java.lang.String + function-args return + flags nomod synthetic to_string + comparability 22 -ppt javautil.ArrayList17.retainAll(java.util.Collection):::ENTER +ppt javautil.ArrayList17.removeAll(java.util.Collection):::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9497,7 +9859,7 @@ variable c.getClass().getName() flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.retainAll(java.util.Collection):::EXIT693 +ppt javautil.ArrayList17.removeAll(java.util.Collection):::EXIT673 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9639,7 +10001,7 @@ variable return flags nomod comparability 22 -ppt javautil.ArrayList17.batchRemove(java.util.Collection,\_boolean):::ENTER +ppt javautil.ArrayList17.retainAll(java.util.Collection):::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9774,14 +10136,8 @@ variable c.getClass().getName() function-args c flags nomod synthetic classname non_null comparability 22 -variable complement - var-kind variable - dec-type boolean - rep-type boolean - flags is_param nomod - comparability 22 -ppt javautil.ArrayList17.batchRemove(java.util.Collection,\_boolean):::EXIT722 +ppt javautil.ArrayList17.retainAll(java.util.Collection):::EXIT693 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -9916,12 +10272,6 @@ variable c.getClass().getName() function-args c flags nomod synthetic classname non_null comparability 22 -variable complement - var-kind variable - dec-type boolean - rep-type boolean - flags is_param nomod - comparability 22 variable return var-kind return dec-type boolean @@ -9929,7 +10279,7 @@ variable return flags nomod comparability 22 -ppt javautil.ArrayList17.writeObject(java.io.ObjectOutputStream):::ENTER +ppt javautil.ArrayList17.batchRemove(java.util.Collection,\_boolean):::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -10050,21 +10400,35 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable s +variable c var-kind variable - dec-type java.io.ObjectOutputStream + dec-type java.util.Collection rep-type hashcode flags is_param nomod comparability 22 - -ppt javautil.ArrayList17.writeObject(java.io.ObjectOutputStream):::EXIT750 -ppt-type subexit -parent parent javautil.ArrayList17:::OBJECT 1 -variable this - var-kind variable - dec-type javautil.ArrayList17 - rep-type hashcode - flags is_param nomod non_null +variable c.getClass().getName() + var-kind function getClass().getName() + enclosing-var c + dec-type java.lang.Class + rep-type java.lang.String + function-args c + flags nomod synthetic classname non_null + comparability 22 +variable complement + var-kind variable + dec-type boolean + rep-type boolean + flags is_param nomod + comparability 22 + +ppt javautil.ArrayList17.batchRemove(java.util.Collection,\_boolean):::EXIT722 +ppt-type subexit +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null comparability 22 parent javautil.ArrayList17:::OBJECT 1 variable javautil.ArrayList17.serialVersionUID @@ -10178,15 +10542,35 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable s +variable c var-kind variable - dec-type java.io.ObjectOutputStream + dec-type java.util.Collection rep-type hashcode flags is_param nomod comparability 22 +variable c.getClass().getName() + var-kind function getClass().getName() + enclosing-var c + dec-type java.lang.Class + rep-type java.lang.String + function-args c + flags nomod synthetic classname non_null + comparability 22 +variable complement + var-kind variable + dec-type boolean + rep-type boolean + flags is_param nomod + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 -ppt javautil.ArrayList17.readObject(java.io.ObjectInputStream):::ENTER -ppt-type enter +ppt javautil.ArrayList17.batchRemove(java.util.Collection,\_boolean):::THROW719 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -10306,15 +10690,42 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable s +variable c var-kind variable - dec-type java.io.ObjectInputStream + dec-type java.util.Collection rep-type hashcode flags is_param nomod comparability 22 +variable c.getClass().getName() + var-kind function getClass().getName() + enclosing-var c + dec-type java.lang.Class + rep-type java.lang.String + function-args c + flags nomod synthetic classname non_null + comparability 22 +variable complement + var-kind variable + dec-type boolean + rep-type boolean + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.ArrayList17.readObject(java.io.ObjectInputStream):::EXIT776 -ppt-type subexit +ppt javautil.ArrayList17.writeObject(java.io.ObjectOutputStream):::ENTER +ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -10436,13 +10847,13 @@ variable this.modCount parent javautil.ArrayList17:::OBJECT 1 variable s var-kind variable - dec-type java.io.ObjectInputStream + dec-type java.io.ObjectOutputStream rep-type hashcode flags is_param nomod comparability 22 -ppt javautil.ArrayList17.listIterator(int):::ENTER -ppt-type enter +ppt javautil.ArrayList17.writeObject(java.io.ObjectOutputStream):::EXIT750 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -10562,14 +10973,14 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable index +variable s var-kind variable - dec-type int - rep-type int + dec-type java.io.ObjectOutputStream + rep-type hashcode flags is_param nomod comparability 22 -ppt javautil.ArrayList17.listIterator(int):::EXIT793 +ppt javautil.ArrayList17.writeObject(java.io.ObjectOutputStream):::THROW748 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -10690,28 +11101,27 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable index +variable s var-kind variable - dec-type int - rep-type int + dec-type java.io.ObjectOutputStream + rep-type hashcode flags is_param nomod comparability 22 -variable return +variable exception var-kind return - dec-type java.util.ListIterator + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.listIterator():::ENTER +ppt javautil.ArrayList17.readObject(java.io.ObjectInputStream):::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -10832,8 +11242,14 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 +variable s + var-kind variable + dec-type java.io.ObjectInputStream + rep-type hashcode + flags is_param nomod + comparability 22 -ppt javautil.ArrayList17.listIterator():::EXIT805 +ppt javautil.ArrayList17.readObject(java.io.ObjectInputStream):::EXIT776 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -10954,22 +11370,14 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable return - var-kind return - dec-type java.util.ListIterator +variable s + var-kind variable + dec-type java.io.ObjectInputStream rep-type hashcode - flags nomod - comparability 22 -variable return.getClass().getName() - var-kind function getClass().getName() - enclosing-var return - dec-type java.lang.Class - rep-type java.lang.String - function-args return - flags nomod synthetic classname non_null + flags is_param nomod comparability 22 -ppt javautil.ArrayList17.iterator():::ENTER +ppt javautil.ArrayList17.listIterator(int):::ENTER ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -11090,8 +11498,14 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -ppt javautil.ArrayList17.iterator():::EXIT816 +ppt javautil.ArrayList17.listIterator(int):::EXIT793 ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this @@ -11212,9 +11626,15 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 variable return var-kind return - dec-type java.util.Iterator + dec-type java.util.ListIterator rep-type hashcode flags nomod comparability 22 @@ -11227,8 +11647,8 @@ variable return.getClass().getName() flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.subList(int,\_int):::ENTER -ppt-type enter +ppt javautil.ArrayList17.listIterator(int):::THROW792 +ppt-type subexit parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -11348,21 +11768,28 @@ variable this.modCount flags nomod comparability 22 parent javautil.ArrayList17:::OBJECT 1 -variable fromIndex +variable index var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 -variable toIndex - var-kind variable - dec-type int - rep-type int - flags is_param nomod +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.subList(int,\_int):::EXIT957 -ppt-type subexit +ppt javautil.ArrayList17.listIterator():::ENTER +ppt-type enter parent parent javautil.ArrayList17:::OBJECT 1 variable this var-kind variable @@ -11465,7 +11892,933 @@ variable this.size rep-type int flags nomod comparability 22 - parent javautil.ArrayList17:::OBJECT 1 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 + +ppt javautil.ArrayList17.listIterator():::EXIT805 +ppt-type subexit +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable return + var-kind return + dec-type java.util.ListIterator + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 + +ppt javautil.ArrayList17.iterator():::ENTER +ppt-type enter +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 + +ppt javautil.ArrayList17.iterator():::EXIT816 +ppt-type subexit +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable return + var-kind return + dec-type java.util.Iterator + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 + +ppt javautil.ArrayList17.subList(int,\_int):::ENTER +ppt-type enter +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable fromIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable toIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt javautil.ArrayList17.subList(int,\_int):::EXIT957 +ppt-type subexit +parent parent javautil.ArrayList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.ArrayList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.ArrayList17:::OBJECT 1 +variable fromIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable toIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable return + var-kind return + dec-type java.util.List + rep-type hashcode + flags nomod + comparability 22 +variable return[..] + var-kind array + enclosing-var return + array 1 + dec-type java.util.List + rep-type hashcode[] + flags nomod + comparability 22 +variable return[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var return[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args return[] + flags nomod synthetic classname non_null + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 + +ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::ENTER +ppt-type enter +parent parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable fromIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable toIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable size + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::EXIT968 +ppt-type subexit +parent parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.MAX_ARRAY_SIZE + var-kind variable + dec-type int + rep-type int + constant 2147483639 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable fromIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable toIndex + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable size + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::THROW962 +ppt-type subexit +parent parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant 8683452581122892189 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 10 + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA.getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + dec-type java.lang.Class + rep-type java.lang.String + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + var-kind array + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.ArrayList17:::CLASS 1 +variable javautil.ArrayList17.EMPTY_ELEMENTDATA[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var javautil.ArrayList17.EMPTY_ELEMENTDATA[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args javautil.ArrayList17.EMPTY_ELEMENTDATA[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.ArrayList17:::CLASS 1 variable javautil.ArrayList17.MAX_ARRAY_SIZE var-kind variable dec-type int @@ -11473,61 +12826,41 @@ variable javautil.ArrayList17.MAX_ARRAY_SIZE constant 2147483639 flags nomod comparability 22 - parent javautil.ArrayList17:::OBJECT 1 -variable this.modCount - var-kind field modCount - enclosing-var this + parent javautil.ArrayList17:::CLASS 1 +variable fromIndex + var-kind variable dec-type int rep-type int - flags nomod + flags is_param nomod comparability 22 - parent javautil.ArrayList17:::OBJECT 1 -variable fromIndex +variable toIndex var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 -variable toIndex +variable size var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 -variable return +variable exception var-kind return - dec-type java.util.List + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable return[..] - var-kind array - enclosing-var return - array 1 - dec-type java.util.List - rep-type hashcode[] - flags nomod - comparability 22 -variable return[..].getClass().getName() - var-kind function getClass().getName() - enclosing-var return[..] - array 1 - dec-type java.lang.Class[] - rep-type java.lang.String[] - function-args return[] - flags nomod synthetic classname non_null - comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return flags nomod synthetic classname non_null comparability 22 -ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::ENTER -ppt-type enter +ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::THROW964 +ppt-type subexit parent parent javautil.ArrayList17:::CLASS 1 variable javautil.ArrayList17.serialVersionUID var-kind variable @@ -11606,8 +12939,21 @@ variable size rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::EXIT968 +ppt javautil.ArrayList17.subListRangeCheck(int,\_int,\_int):::THROW966 ppt-type subexit parent parent javautil.ArrayList17:::CLASS 1 variable javautil.ArrayList17.serialVersionUID @@ -11687,6 +13033,19 @@ variable size rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 ppt javautil.ArrayList17:::CLASS ppt-type class @@ -12027,6 +13386,67 @@ variable element.getClass().getName() flags nomod synthetic classname non_null comparability 22 +ppt javautil.AbstractList17.set(int,\_java.lang.Object):::THROW134 +ppt-type subexit +parent parent javautil.AbstractList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags nomod synthetic classname non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable element + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable element.getClass().getName() + var-kind function getClass().getName() + enclosing-var element + dec-type java.lang.Class + rep-type java.lang.String + function-args element + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt javautil.AbstractList17.add(int,\_java.lang.Object):::ENTER ppt-type enter parent parent javautil.AbstractList17:::OBJECT 1 @@ -12075,6 +13495,67 @@ variable element.getClass().getName() flags nomod synthetic classname non_null comparability 22 +ppt javautil.AbstractList17.add(int,\_java.lang.Object):::THROW150 +ppt-type subexit +parent parent javautil.AbstractList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags nomod synthetic classname non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable element + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable element.getClass().getName() + var-kind function getClass().getName() + enclosing-var element + dec-type java.lang.Class + rep-type java.lang.String + function-args element + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt javautil.AbstractList17.remove(int):::ENTER ppt-type enter parent parent javautil.AbstractList17:::OBJECT 1 @@ -12109,6 +13590,53 @@ variable index flags is_param nomod comparability 22 +ppt javautil.AbstractList17.remove(int):::THROW163 +ppt-type subexit +parent parent javautil.AbstractList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags nomod synthetic classname non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt javautil.AbstractList17.indexOf(java.lang.Object):::ENTER ppt-type enter parent parent javautil.AbstractList17:::OBJECT 1 @@ -13416,6 +14944,53 @@ variable index flags is_param nomod comparability 22 +ppt javautil.AbstractList17.rangeCheckForAdd(int):::THROW607 +ppt-type subexit +parent parent javautil.AbstractList17:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.AbstractList17 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.getClass().getName() + var-kind function getClass().getName() + enclosing-var this + dec-type java.lang.Class + rep-type java.lang.String + function-args this + flags nomod synthetic classname non_null + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable this.modCount + var-kind field modCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.AbstractList17:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt javautil.AbstractList17.outOfBoundsMsg(int):::ENTER ppt-type enter parent parent javautil.AbstractList17:::OBJECT 1 diff --git a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-chicory.goal b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-chicory.goal index 4dc4139f6a..59f25b7e78 100644 --- a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-chicory.goal +++ b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.BinaryHeap -// Declarations written Thu Jun 04 13:16:56 PDT 2015 +// Declarations written Tue Jul 25 16:28:55 PDT 2017 decl-version 2.0 var-comparability none @@ -11,14 +11,14 @@ ppt DataStructures.BinaryHeap.BinaryHeap():::EXIT30 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -47,11 +47,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -66,14 +66,14 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 ppt DataStructures.BinaryHeap.BinaryHeap(int):::ENTER ppt-type enter variable capacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod @@ -83,14 +83,14 @@ ppt DataStructures.BinaryHeap.BinaryHeap(int):::EXIT40 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -119,11 +119,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -138,11 +138,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable capacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod @@ -152,14 +152,14 @@ ppt DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -188,11 +188,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -207,11 +207,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod @@ -222,21 +222,98 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 ppt DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable DataStructures.BinaryHeap.DEFAULT_CAPACITY + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable this.array + var-kind field array + enclosing-var this + dec-type DataStructures.Comparable[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable this.array.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.array + dec-type java.lang.Class + rep-type java.lang.String + function-args this.array + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable this.array[..] + var-kind array + enclosing-var this.array + array 1 + dec-type DataStructures.Comparable[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable this.array[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.array[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.array[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.BinaryHeap:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode flags is_param nomod comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXCEPTION51 +ppt-type subexit +parent parent DataStructures.BinaryHeap:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinaryHeap + rep-type hashcode + flags is_param nomod non_null + comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -265,11 +342,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -284,11 +361,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod @@ -299,21 +376,34 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 ppt DataStructures.BinaryHeap.findMin():::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -342,11 +432,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -361,22 +451,22 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 -ppt DataStructures.BinaryHeap.findMin():::EXIT68 +ppt DataStructures.BinaryHeap.findMin():::EXIT67 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -405,11 +495,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -424,11 +514,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -439,21 +529,21 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.BinaryHeap.findMin():::EXIT67 +ppt DataStructures.BinaryHeap.findMin():::EXIT68 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -482,11 +572,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -501,11 +591,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -516,21 +606,21 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 ppt DataStructures.BinaryHeap.deleteMin():::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -559,11 +649,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -578,7 +668,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -586,14 +676,14 @@ ppt DataStructures.BinaryHeap.deleteMin():::EXIT84 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -622,11 +712,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -641,11 +731,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -656,21 +746,21 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 ppt DataStructures.BinaryHeap.deleteMin():::EXIT78 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -699,11 +789,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -718,11 +808,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -733,21 +823,21 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 ppt DataStructures.BinaryHeap.buildHeap():::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -776,11 +866,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -795,7 +885,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -803,14 +893,14 @@ ppt DataStructures.BinaryHeap.buildHeap():::EXIT95 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -839,11 +929,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -858,7 +948,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -866,14 +956,14 @@ ppt DataStructures.BinaryHeap.isEmpty():::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -902,11 +992,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -921,7 +1011,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -929,14 +1019,14 @@ ppt DataStructures.BinaryHeap.isEmpty():::EXIT103 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -965,11 +1055,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -984,11 +1074,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean flags nomod @@ -998,14 +1088,14 @@ ppt DataStructures.BinaryHeap.isFull():::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1034,11 +1124,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1053,7 +1143,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -1061,14 +1151,14 @@ ppt DataStructures.BinaryHeap.isFull():::EXIT112 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1097,11 +1187,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1116,11 +1206,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean flags nomod @@ -1130,14 +1220,14 @@ ppt DataStructures.BinaryHeap.makeEmpty():::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1166,11 +1256,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1185,7 +1275,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -1193,14 +1283,14 @@ ppt DataStructures.BinaryHeap.makeEmpty():::EXIT121 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1229,11 +1319,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1248,7 +1338,7 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 @@ -1256,14 +1346,14 @@ ppt DataStructures.BinaryHeap.percolateDown(int):::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1292,11 +1382,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1311,11 +1401,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable hole - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod @@ -1325,14 +1415,14 @@ ppt DataStructures.BinaryHeap.percolateDown(int):::EXIT149 ppt-type subexit parent parent DataStructures.BinaryHeap:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1361,11 +1451,11 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1380,11 +1470,11 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.BinaryHeap:::OBJECT 1 variable hole - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod @@ -1394,7 +1484,7 @@ ppt DataStructures.BinaryHeap.main(java.lang.String[]):::ENTER ppt-type enter parent parent DataStructures.BinaryHeap:::CLASS 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1402,7 +1492,7 @@ variable DataStructures.BinaryHeap.DEFAULT_CAPACITY comparability 22 parent DataStructures.BinaryHeap:::CLASS 1 variable args - var-kind variable + var-kind variable dec-type java.lang.String[] rep-type hashcode flags is_param nomod @@ -1413,10 +1503,10 @@ variable args.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args args - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 variable args[..] - var-kind array + var-kind array enclosing-var args array 1 dec-type java.lang.String[] @@ -1437,7 +1527,7 @@ ppt DataStructures.BinaryHeap.main(java.lang.String[]):::EXIT178 ppt-type subexit parent parent DataStructures.BinaryHeap:::CLASS 1 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1445,7 +1535,7 @@ variable DataStructures.BinaryHeap.DEFAULT_CAPACITY comparability 22 parent DataStructures.BinaryHeap:::CLASS 1 variable args - var-kind variable + var-kind variable dec-type java.lang.String[] rep-type hashcode flags is_param nomod @@ -1456,10 +1546,10 @@ variable args.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args args - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 variable args[..] - var-kind array + var-kind array enclosing-var args array 1 dec-type java.lang.String[] @@ -1479,7 +1569,7 @@ variable args[..].toString ppt DataStructures.BinaryHeap:::CLASS ppt-type class variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1490,13 +1580,13 @@ ppt DataStructures.BinaryHeap:::OBJECT ppt-type object parent parent DataStructures.BinaryHeap:::CLASS 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinaryHeap rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 variable DataStructures.BinaryHeap.DEFAULT_CAPACITY - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1523,10 +1613,10 @@ variable this.array.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.array - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 variable this.array[..] - var-kind array + var-kind array enclosing-var this.array array 1 dec-type DataStructures.Comparable[] @@ -1540,14 +1630,14 @@ variable this.array[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.array[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 DataStructures.BinaryHeap.main(java.lang.String[]):::ENTER this_invocation_nonce 0 args -732656791 +1809787067 1 args.getClass().getName() "java.lang.String[]" @@ -1570,13 +1660,13 @@ DataStructures.BinaryHeap.BinaryHeap(int):::EXIT40 this_invocation_nonce 1 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" @@ -1595,13 +1685,13 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" @@ -1613,7 +1703,7 @@ this.array[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -980486635 +985922955 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1623,13 +1713,13 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 3 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" @@ -1645,13 +1735,13 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 3 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" @@ -1670,25 +1760,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 2 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -980486635 +985922955 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1698,25 +1788,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 4 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -583763294 +1435804085 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1726,19 +1816,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 5 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -1748,19 +1838,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 5 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -1773,25 +1863,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 4 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -583763294 +1435804085 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1801,25 +1891,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 6 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1604382762 +1784662007 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1829,19 +1919,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 7 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -1851,19 +1941,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 7 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -1876,25 +1966,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 6 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 583763294 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 1435804085 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1604382762 +1784662007 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1904,25 +1994,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 8 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 583763294 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 1435804085 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1056409202 +997110508 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1932,19 +2022,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 9 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 583763294 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 1435804085 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -1954,19 +2044,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 9 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 583763294 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 1435804085 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -1979,25 +2069,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 8 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1056409202 +997110508 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2007,25 +2097,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 10 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1822148265 +509886383 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2035,19 +2125,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 11 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2057,19 +2147,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 11 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2082,25 +2172,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 10 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1822148265 +509886383 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2110,25 +2200,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 12 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1729083635 +1854778591 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2138,19 +2228,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 13 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2160,19 +2250,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 13 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 980486635 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 985922955 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2185,25 +2275,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 12 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1729083635 +1854778591 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2213,25 +2303,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 14 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -959942241 +2054798982 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2241,19 +2331,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 15 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2263,19 +2353,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 15 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2288,25 +2378,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 14 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -959942241 +2054798982 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2316,25 +2406,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 16 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1852088223 +885951223 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2344,19 +2434,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 17 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2366,19 +2456,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 17 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2391,25 +2481,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 16 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1852088223 +885951223 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2419,25 +2509,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 18 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -271300696 +191382150 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2447,19 +2537,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 19 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2469,19 +2559,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 19 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 1056409202 1729083635 583763294 1822148265 980486635 959942241 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 997110508 1854778591 1435804085 509886383 985922955 2054798982 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2494,25 +2584,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 18 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 1822148265 980486635 959942241 1852088223 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 509886383 985922955 2054798982 885951223 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -271300696 +191382150 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2522,25 +2612,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 20 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 1822148265 980486635 959942241 1852088223 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 509886383 985922955 2054798982 885951223 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -643015091 +142666848 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2550,19 +2640,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 21 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 1822148265 980486635 959942241 1852088223 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 509886383 985922955 2054798982 885951223 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2572,19 +2662,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 21 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 1822148265 980486635 959942241 1852088223 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 509886383 985922955 2054798982 885951223 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2597,25 +2687,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 20 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 643015091 980486635 959942241 1852088223 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 142666848 985922955 2054798982 885951223 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -643015091 +142666848 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2625,25 +2715,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 22 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 643015091 980486635 959942241 1852088223 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 142666848 985922955 2054798982 885951223 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1016922733 +1060830840 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2653,19 +2743,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 23 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 643015091 980486635 959942241 1852088223 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 142666848 985922955 2054798982 885951223 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2675,19 +2765,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 23 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 271300696 1729083635 1056409202 643015091 980486635 959942241 1852088223 583763294 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1784662007 191382150 1854778591 997110508 142666848 985922955 2054798982 885951223 1435804085 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2700,25 +2790,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 22 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1016922733 +1060830840 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2728,25 +2818,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 24 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1745510705 +2137211482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2756,19 +2846,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 25 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2778,19 +2868,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 25 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2803,25 +2893,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 24 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1745510705 +2137211482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2831,25 +2921,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 26 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -24317268 +920011586 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2859,19 +2949,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 27 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2881,19 +2971,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 27 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2906,25 +2996,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 26 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -24317268 +920011586 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2934,25 +3024,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 28 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -678430346 +968514068 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2962,19 +3052,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 29 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -2984,19 +3074,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 29 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 1729083635 1056409202 271300696 980486635 959942241 1852088223 583763294 1822148265 643015091 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 1854778591 997110508 191382150 985922955 2054798982 885951223 1435804085 509886383 142666848 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3009,25 +3099,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 28 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -678430346 +968514068 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3037,25 +3127,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 30 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1388143299 +1360767589 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3065,19 +3155,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 31 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3087,19 +3177,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 31 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3112,25 +3202,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 30 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1388143299 +1360767589 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3140,25 +3230,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 32 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -262085285 +873415566 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3168,19 +3258,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 33 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3190,19 +3280,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 33 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 1852088223 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 885951223 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3215,25 +3305,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 32 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 262085285 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 873415566 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -262085285 +873415566 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3243,25 +3333,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 34 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 262085285 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 873415566 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -378424998 +818403870 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3271,19 +3361,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 35 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 262085285 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 873415566 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3293,19 +3383,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 35 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 1056409202 271300696 980486635 1729083635 262085285 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 997110508 191382150 985922955 1854778591 873415566 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3318,25 +3408,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 34 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -378424998 +818403870 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3346,25 +3436,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 36 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1489862619 +1531333864 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3374,19 +3464,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 37 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3396,19 +3486,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 37 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 583763294 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1435804085 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3421,25 +3511,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 36 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 1489862619 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1531333864 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1489862619 +1531333864 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3449,25 +3539,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 38 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 1489862619 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1531333864 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -461713513 +1468177767 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3477,19 +3567,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 39 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 1489862619 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1531333864 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3499,19 +3589,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 39 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1604382762 678430346 378424998 271300696 980486635 1729083635 1056409202 1489862619 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1060830840 1784662007 968514068 818403870 191382150 985922955 1854778591 997110508 1531333864 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3524,25 +3614,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 38 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -461713513 +1468177767 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3552,25 +3642,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 40 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1160596380 +434091818 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3580,19 +3670,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 41 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3602,19 +3692,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 41 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1822148265 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 509886383 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3627,25 +3717,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 40 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1160596380 +434091818 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3655,25 +3745,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 42 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -549392959 +398887205 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3683,19 +3773,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 43 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3705,19 +3795,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 43 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3730,25 +3820,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 42 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -549392959 +398887205 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3758,25 +3848,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 44 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1615263460 +2114889273 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3786,19 +3876,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 45 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3808,19 +3898,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 45 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 271300696 980486635 1729083635 1056409202 378424998 1160596380 643015091 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 191382150 985922955 1854778591 997110508 818403870 434091818 142666848 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3833,25 +3923,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 44 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1615263460 +2114889273 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3861,25 +3951,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 46 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1392190493 +1025799482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3889,19 +3979,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 47 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3911,19 +4001,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 47 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -3936,25 +4026,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 46 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1392190493 +1025799482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3964,25 +4054,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 48 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1711281786 +1504109395 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3992,19 +4082,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 49 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4014,19 +4104,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 49 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4039,25 +4129,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 48 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1711281786 +1504109395 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4067,25 +4157,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 50 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -264493031 +2047526627 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4095,19 +4185,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 51 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4117,19 +4207,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 51 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 980486635 1729083635 1056409202 378424998 1160596380 271300696 1745510705 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 985922955 1854778591 997110508 818403870 434091818 191382150 2137211482 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4142,25 +4232,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 50 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -264493031 +2047526627 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4170,25 +4260,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 52 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -43222727 +1908316405 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4198,19 +4288,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 53 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4220,19 +4310,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 53 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 24317268 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 920011586 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4245,25 +4335,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 52 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -43222727 +1908316405 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4273,25 +4363,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 54 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -594900003 +1873653341 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4301,19 +4391,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 55 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4323,19 +4413,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 55 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4348,25 +4438,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 54 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -594900003 +1873653341 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4376,25 +4466,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 56 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1947973636 +25126016 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4404,19 +4494,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 57 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4426,19 +4516,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 57 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 959942241 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 2054798982 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4451,25 +4541,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 56 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1947973636 +25126016 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4479,25 +4569,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 58 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1204701737 +762218386 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4507,19 +4597,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 59 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4529,19 +4619,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 59 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4554,25 +4644,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 58 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1204701737 +762218386 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4582,25 +4672,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 60 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -946269843 +672320506 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4610,19 +4700,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 61 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4632,19 +4722,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 61 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 678430346 1604382762 1615263460 264493031 1729083635 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1388143299 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 968514068 1784662007 2114889273 2047526627 1854778591 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1360767589 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4657,25 +4747,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 60 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -946269843 +672320506 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4685,25 +4775,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 62 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1840845266 +718231523 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4713,19 +4803,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 63 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4735,19 +4825,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 63 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4760,25 +4850,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 62 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1840845266 +718231523 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4788,25 +4878,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 64 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -289483333 +1349414238 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4816,19 +4906,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 65 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4838,19 +4928,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 65 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1852088223 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 885951223 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4863,25 +4953,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 64 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 289483333 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 1349414238 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -289483333 +1349414238 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4891,25 +4981,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 66 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 289483333 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 1349414238 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1295917276 +157627094 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4919,19 +5009,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 67 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 289483333 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 1349414238 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4941,19 +5031,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 67 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1056409202 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 289483333 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 997110508 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 1349414238 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -4966,25 +5056,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 66 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1295917276 +157627094 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4994,25 +5084,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 68 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -702509858 +932607259 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5022,19 +5112,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 69 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5044,19 +5134,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 69 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 262085285 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 873415566 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5069,25 +5159,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 68 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -702509858 +932607259 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5097,25 +5187,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 70 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -218092200 +1740000325 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5125,19 +5215,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 71 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5147,19 +5237,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 71 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5172,25 +5262,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 70 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -218092200 +1740000325 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5200,25 +5290,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 72 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1868503618 +1142020464 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5228,19 +5318,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 73 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5250,19 +5340,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 73 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 583763294 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1435804085 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5275,25 +5365,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 72 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1868503618 +1142020464 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5303,25 +5393,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 74 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1286937645 +1682092198 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5331,19 +5421,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 75 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5353,19 +5443,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 75 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5378,25 +5468,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 74 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1286937645 +1682092198 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5406,25 +5496,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 76 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -105706931 +1626877848 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5434,19 +5524,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 77 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5456,19 +5546,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 77 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 1016922733 946269843 1604382762 1615263460 264493031 678430346 1295917276 378424998 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 1489862619 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1060830840 672320506 1784662007 2114889273 2047526627 968514068 157627094 818403870 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 1531333864 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5481,25 +5571,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 76 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -105706931 +1626877848 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5509,25 +5599,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 78 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -647413248 +905544614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5537,19 +5627,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 79 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5559,19 +5649,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 79 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5584,25 +5674,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 78 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -647413248 +905544614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5612,25 +5702,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 80 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1922303434 +2137589296 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5640,19 +5730,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 81 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5662,19 +5752,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 81 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1822148265 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 509886383 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5687,25 +5777,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 80 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1922303434 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 2137589296 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1922303434 +2137589296 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5715,25 +5805,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 82 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1922303434 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 2137589296 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1409829770 +249515771 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5743,19 +5833,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 83 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1922303434 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 2137589296 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5765,19 +5855,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 83 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1160596380 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1922303434 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 434091818 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 2137589296 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5790,25 +5880,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 82 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1409829770 +249515771 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5818,25 +5908,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 84 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1821867039 +796533847 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5846,19 +5936,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 85 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5868,19 +5958,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 85 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 549392959 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 398887205 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5893,25 +5983,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 84 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1821867039 +796533847 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5921,25 +6011,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 86 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1297485547 +1449621165 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5949,19 +6039,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 87 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5971,19 +6061,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 87 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -5996,25 +6086,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 86 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1297485547 +1449621165 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6024,25 +6114,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 88 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1290636791 +1627960023 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6052,19 +6142,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 89 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6074,19 +6164,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 89 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 271300696 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 643015091 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 191382150 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 142666848 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6099,25 +6189,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 88 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1290636791 +1627960023 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6127,25 +6217,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 90 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -227990 +357863579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6155,19 +6245,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 91 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6177,19 +6267,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 91 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6202,25 +6292,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 90 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -227990 +357863579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6230,25 +6320,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 92 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1684344283 +1811044090 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6258,19 +6348,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 93 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6280,19 +6370,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 93 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 105706931 946269843 1016922733 1615263460 264493031 678430346 1295917276 1604382762 1409829770 1290636791 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1392190493 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1468177767 1626877848 672320506 1060830840 2114889273 2047526627 968514068 157627094 1784662007 249515771 1627960023 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1025799482 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6305,25 +6395,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 92 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1684344283 +1811044090 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6333,25 +6423,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 94 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -644929627 +114132791 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6361,19 +6451,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 95 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6383,19 +6473,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 95 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6408,25 +6498,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 94 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -644929627 +114132791 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6436,25 +6526,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 96 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -982274580 +586617651 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6464,19 +6554,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 97 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6486,19 +6576,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 97 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 1711281786 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 1504109395 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6511,25 +6601,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 96 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 982274580 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 586617651 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -982274580 +586617651 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6539,25 +6629,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 98 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 982274580 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 586617651 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1382071571 +328638398 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6567,19 +6657,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 99 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 982274580 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 586617651 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6589,19 +6679,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 99 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 264493031 678430346 1295917276 1604382762 1409829770 1615263460 980486635 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 982274580 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 2047526627 968514068 157627094 1784662007 249515771 2114889273 985922955 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 586617651 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6614,25 +6704,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 98 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1382071571 +328638398 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6642,25 +6732,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 100 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1293767845 +1789550256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6670,19 +6760,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 101 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6692,19 +6782,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 101 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6717,25 +6807,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 100 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1293767845 +1789550256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6745,25 +6835,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 102 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1691286586 +3447021 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6773,19 +6863,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 103 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6795,19 +6885,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 103 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6820,25 +6910,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 102 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1691286586 +3447021 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6848,25 +6938,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 104 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1360099210 +440434003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6876,19 +6966,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 105 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6898,19 +6988,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 105 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 43222727 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 24317268 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 1908316405 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 920011586 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6923,25 +7013,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 104 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 43222727 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1908316405 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1360099210 +440434003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6951,25 +7041,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 106 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 43222727 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1908316405 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1371483802 +1032616650 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6979,19 +7069,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 107 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 43222727 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1908316405 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7001,19 +7091,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 107 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 43222727 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1908316405 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7026,25 +7116,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 106 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1371483802 +1032616650 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7054,25 +7144,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 108 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1586276963 +99347477 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7082,19 +7172,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 109 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7104,19 +7194,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 109 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 594900003 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 1873653341 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7129,25 +7219,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 108 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1586276963 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 99347477 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1586276963 +99347477 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7157,25 +7247,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 110 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1586276963 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 99347477 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1694923283 +566034357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7185,19 +7275,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 111 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1586276963 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 99347477 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7207,19 +7297,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 111 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1586276963 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 99347477 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7232,25 +7322,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 110 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1694923283 +566034357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7260,25 +7350,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 112 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -205039926 +940553268 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7288,19 +7378,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 113 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7310,19 +7400,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 113 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7335,25 +7425,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 112 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -205039926 +940553268 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7363,25 +7453,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 114 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1542266494 +1720435669 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7391,19 +7481,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 115 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7413,19 +7503,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 115 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 946269843 1016922733 105706931 1382071571 678430346 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 1947973636 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 959942241 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 672320506 1060830840 1626877848 328638398 968514068 157627094 1784662007 249515771 2114889273 2047526627 440434003 25126016 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 2054798982 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7438,25 +7528,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 114 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1542266494 +1720435669 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7466,25 +7556,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 116 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -745345368 +1020923989 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7494,19 +7584,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 117 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7516,19 +7606,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 117 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 1204701737 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 762218386 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7541,25 +7631,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 116 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -745345368 +1020923989 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7569,25 +7659,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 118 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -747487025 +2052915500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7597,19 +7687,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 119 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7619,19 +7709,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 119 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7644,25 +7734,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 118 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -747487025 +2052915500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7672,25 +7762,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 120 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -235094225 +1068934215 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7700,19 +7790,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 121 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7722,19 +7812,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 121 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 1729083635 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1388143299 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1854778591 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1360767589 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7747,25 +7837,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 120 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -235094225 +1068934215 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7775,25 +7865,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 122 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -2006212742 +127618319 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7803,19 +7893,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 123 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7825,19 +7915,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 123 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7850,25 +7940,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 122 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -2006212742 +127618319 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7878,25 +7968,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 124 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -776813247 +1798286609 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7906,19 +7996,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 125 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7928,19 +8018,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 125 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7953,25 +8043,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 124 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -776813247 +1798286609 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7981,25 +8071,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 126 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1347152216 +2036958521 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8009,19 +8099,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 127 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8031,19 +8121,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 127 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1840845266 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 718231523 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8056,25 +8146,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 126 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1347152216 +2036958521 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8084,25 +8174,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 128 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -667203991 +1945604815 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8112,19 +8202,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 129 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8134,19 +8224,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 129 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1852088223 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 885951223 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8159,25 +8249,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 128 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 667203991 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 1945604815 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -667203991 +1945604815 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8187,25 +8277,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 130 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 667203991 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 1945604815 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1685355750 +785992331 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8215,19 +8305,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 131 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 667203991 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 1945604815 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8237,19 +8327,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 131 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1016922733 105706931 1382071571 946269843 1295917276 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1056409202 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 667203991 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 1060830840 1626877848 328638398 672320506 157627094 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 997110508 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 1945604815 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8262,25 +8352,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 130 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1685355750 +785992331 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8290,25 +8380,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 132 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -464786320 +940060004 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8318,19 +8408,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 133 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8340,19 +8430,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 133 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 289483333 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 1349414238 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8365,25 +8455,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 132 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -464786320 +940060004 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8393,25 +8483,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 134 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1265656101 +234698513 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8421,19 +8511,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 135 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8443,19 +8533,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 135 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8468,25 +8558,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 134 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1265656101 +234698513 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8496,25 +8586,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 136 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1056565972 +1121172875 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8524,19 +8614,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 137 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8546,19 +8636,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 137 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 702509858 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 262085285 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 932607259 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 873415566 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8571,25 +8661,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 136 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 702509858 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 932607259 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1056565972 +1121172875 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8599,25 +8689,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 138 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 702509858 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 932607259 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -162014361 +649734728 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8627,19 +8717,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 139 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 702509858 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 932607259 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8649,19 +8739,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 139 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 702509858 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 932607259 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8674,25 +8764,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 138 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -162014361 +649734728 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8702,25 +8792,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 140 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -2113584578 +1595953398 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8730,19 +8820,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 141 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8752,19 +8842,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 141 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 218092200 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1740000325 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8777,25 +8867,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 140 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 2113584578 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1595953398 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -2113584578 +1595953398 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8805,25 +8895,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 142 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 2113584578 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1595953398 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1488997419 +998351292 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8833,19 +8923,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 143 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 2113584578 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1595953398 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8855,19 +8945,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 143 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 2113584578 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 1595953398 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8880,25 +8970,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 142 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1488997419 +998351292 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8908,25 +8998,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 144 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -952682642 +1684106402 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8936,19 +9026,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 145 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8958,19 +9048,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 145 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 583763294 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1435804085 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8983,25 +9073,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 144 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 952682642 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1684106402 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -952682642 +1684106402 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9011,25 +9101,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 146 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 952682642 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1684106402 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -99092062 +335471116 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9039,19 +9129,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 147 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 952682642 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1684106402 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9061,19 +9151,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 147 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 952682642 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 1811044090 1468177767 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1684106402 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9086,25 +9176,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 146 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -99092062 +335471116 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9114,25 +9204,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 148 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1140459609 +1308927845 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9142,19 +9232,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 149 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9164,19 +9254,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 149 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1286937645 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1682092198 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9189,25 +9279,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 148 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1140459609 +1308927845 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9217,25 +9307,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 150 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1413098988 +2017354584 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9245,19 +9335,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 151 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9267,19 +9357,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 151 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9292,25 +9382,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 150 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -1413098988 +2017354584 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9320,25 +9410,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 152 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -933039143 +391447681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9348,19 +9438,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 153 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9370,19 +9460,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 153 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 378424998 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 1489862619 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 null null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 818403870 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 1531333864 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9395,25 +9485,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 152 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -933039143 +391447681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9423,25 +9513,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 154 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] 1 x -663286007 +1935637221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9451,19 +9541,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 155 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9473,19 +9563,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 155 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 null null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9498,25 +9588,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 154 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] 1 x -663286007 +1935637221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9526,25 +9616,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 156 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] 1 x -260308072 +403424356 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9554,19 +9644,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 157 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -9576,19 +9666,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 157 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 null null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -9601,25 +9691,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 156 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null] 1 x -260308072 +403424356 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9629,25 +9719,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 158 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null] 1 x -573577165 +321142942 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9657,19 +9747,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 159 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null] @@ -9679,19 +9769,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 159 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 647413248 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 null null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 905544614 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 null null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null] @@ -9704,25 +9794,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 158 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null] 1 x -573577165 +321142942 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9732,25 +9822,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 160 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null] 1 x -57320772 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9760,19 +9850,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 161 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null] @@ -9782,19 +9872,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 161 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 1822148265 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 null null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 509886383 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 null null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null] @@ -9807,25 +9897,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 160 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] 1 x -57320772 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9835,25 +9925,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 162 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] 1 x -1317541148 +610984013 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9863,19 +9953,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 163 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -9885,19 +9975,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 163 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 null null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 null null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -9910,25 +10000,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 162 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] 1 x -1317541148 +610984013 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9938,25 +10028,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 164 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] 1 x -1210190219 +1644443712 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9966,19 +10056,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 165 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -9988,19 +10078,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 165 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1160596380 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1922303434 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 null null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 434091818 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 2137589296 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 null null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -10013,25 +10103,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 164 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] 1 x -1210190219 +1644443712 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10041,25 +10131,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 166 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] 1 x -849389996 +1393931310 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10069,19 +10159,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 167 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -10091,19 +10181,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 167 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 null null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 null null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -10116,25 +10206,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 166 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] 1 x -849389996 +1393931310 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10144,25 +10234,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 168 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] 1 x -1373861163 +788117692 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10172,19 +10262,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 169 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -10194,19 +10284,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 169 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1821867039 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 549392959 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 null null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 796533847 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 398887205 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 null null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -10219,25 +10309,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 168 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 1821867039 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 796533847 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] 1 x -1373861163 +788117692 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10247,25 +10337,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 170 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 1821867039 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 796533847 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] 1 x -740393997 +1566723494 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10275,19 +10365,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 171 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 1821867039 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 796533847 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -10297,19 +10387,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 171 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 1821867039 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 null null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 796533847 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 null null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -10322,25 +10412,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 170 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] 1 x -740393997 +1566723494 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10350,25 +10440,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 172 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] 1 x -1281656861 +510113906 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10378,19 +10468,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 173 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -10400,19 +10490,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 173 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1297485547 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 null null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1449621165 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 null null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -10425,25 +10515,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 172 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] 1 x -1281656861 +510113906 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10453,25 +10543,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 174 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] 1 x -1545883417 +1622006612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10481,19 +10571,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 175 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -10503,19 +10593,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 175 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 null null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 null null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -10528,25 +10618,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 174 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] 1 x -1545883417 +1622006612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10556,25 +10646,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 176 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] 1 x -1405428113 +66233253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10584,19 +10674,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 177 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -10606,19 +10696,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 177 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 643015091 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 null null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 142666848 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 null null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -10631,25 +10721,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 176 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] 1 x -1405428113 +66233253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10659,25 +10749,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 178 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] 1 x -857661838 +1286783232 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10687,19 +10777,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 179 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -10709,19 +10799,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 179 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 null null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 null null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -10734,25 +10824,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 178 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null] 1 x -857661838 +1286783232 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10762,25 +10852,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 180 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null] 1 x -812272602 +1874154700 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10790,19 +10880,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 181 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -10812,19 +10902,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 181 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 271300696 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 227990 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 null null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 191382150 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 357863579 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 null null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -10837,25 +10927,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 180 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null] 1 x -812272602 +1874154700 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10865,25 +10955,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 182 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null] 1 x -312077835 +1632392469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10893,19 +10983,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 183 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null] @@ -10915,19 +11005,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 183 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 null null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 null null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null] @@ -10940,25 +11030,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 182 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] 1 x -312077835 +1632392469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10968,25 +11058,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 184 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] 1 x -937106871 +2008362258 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10996,19 +11086,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 185 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -11018,19 +11108,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 185 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 105706931 1382071571 946269843 1016922733 1685355750 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1290636791 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1392190493 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 null null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 1626877848 328638398 672320506 1060830840 785992331 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 1627960023 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1025799482 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 null null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -11043,25 +11133,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 184 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] 1 x -937106871 +2008362258 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11071,25 +11161,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 186 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] 1 x -310113799 +760563749 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11099,19 +11189,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 187 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -11121,19 +11211,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 187 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 null null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 null null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -11146,25 +11236,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 186 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null] 1 x -310113799 +760563749 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11174,25 +11264,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 188 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null] 1 x -139808524 +1753447031 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11202,19 +11292,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 189 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null] @@ -11224,19 +11314,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 189 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 null null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 null null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null] @@ -11249,25 +11339,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 188 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] 1 x -139808524 +1753447031 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11277,25 +11367,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 190 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] 1 x -414753050 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11305,19 +11395,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 191 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -11327,19 +11417,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 191 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 null null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 null null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -11352,25 +11442,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 190 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] 1 x -414753050 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11380,25 +11470,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 192 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] 1 x -22593188 +895947612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11408,19 +11498,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 193 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -11430,19 +11520,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 193 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 1711281786 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 null null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 1504109395 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 null null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -11455,25 +11545,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 192 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] 1 x -22593188 +895947612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11483,25 +11573,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 194 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] 1 x -1766588844 +846492085 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11511,19 +11601,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 195 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -11533,19 +11623,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 195 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 null null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 null null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -11558,25 +11648,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 194 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] 1 x -1766588844 +846492085 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11586,25 +11676,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 196 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] 1 x -2097281333 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11614,19 +11704,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 197 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -11636,19 +11726,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 197 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 980486635 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 982274580 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 null null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 985922955 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 586617651 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 null null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -11661,25 +11751,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 196 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] 1 x -2097281333 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11689,25 +11779,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 198 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] 1 x -210781873 +152005629 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11717,19 +11807,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 199 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -11739,19 +11829,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 199 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 null null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 null null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -11764,25 +11854,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 198 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -210781873 +152005629 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11792,19 +11882,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 200 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11814,19 +11904,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 201 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11836,19 +11926,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 201 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11861,19 +11951,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 202 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11883,19 +11973,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 203 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11905,19 +11995,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 203 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11930,25 +12020,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 202 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 99092062 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 335471116 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -99092062 +335471116 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11958,19 +12048,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 204 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 1684344283 1542266494 461713513 937106871 1382071571 946269843 1016922733 1685355750 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1604382762 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 1868503618 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1811044090 1720435669 1468177767 2008362258 328638398 672320506 1060830840 785992331 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1784662007 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 1142020464 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -11983,19 +12073,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 204 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12008,25 +12098,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 200 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -99092062 +335471116 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12036,19 +12126,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 205 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12058,19 +12148,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 206 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12080,19 +12170,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 206 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12105,19 +12195,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 207 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12127,19 +12217,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 208 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12149,19 +12239,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 208 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12174,25 +12264,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 207 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1684344283 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 1811044090 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1684344283 +1811044090 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12202,19 +12292,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 209 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 461713513 1542266494 1685355750 937106871 1382071571 946269843 1016922733 1604382762 1373861163 105706931 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 1615263460 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 414753050 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 644929627 1711281786 1766588844 982274580 210781873 null] +[null 586617651 1468177767 1720435669 785992331 2008362258 328638398 672320506 1060830840 1784662007 788117692 1626877848 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 2114889273 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 1810132623 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 114132791 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12227,19 +12317,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 209 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12252,25 +12342,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 205 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1684344283 +1811044090 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12280,19 +12370,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 210 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12302,19 +12392,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 211 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12324,19 +12414,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 211 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12349,19 +12439,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 212 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12371,19 +12461,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 213 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12393,19 +12483,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 213 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12418,25 +12508,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 212 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 461713513 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1468177767 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -461713513 +1468177767 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12446,19 +12536,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 214 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 937106871 1542266494 1685355750 105706931 1382071571 946269843 1016922733 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1056565972 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1488997419 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 2008362258 1720435669 785992331 1626877848 328638398 672320506 1060830840 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 1121172875 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 998351292 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12471,19 +12561,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 214 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12496,25 +12586,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 210 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -461713513 +1468177767 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12524,19 +12614,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 215 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12546,19 +12636,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 216 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12568,19 +12658,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 216 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12593,19 +12683,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 217 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12615,19 +12705,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 218 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12637,19 +12727,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 218 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12662,25 +12752,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 217 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 937106871 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2008362258 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -937106871 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12690,19 +12780,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 219 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1685355750 1542266494 1016922733 105706931 1382071571 946269843 1056565972 1604382762 1373861163 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1409829770 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1545883417 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1281656861 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 785992331 1720435669 1060830840 1626877848 328638398 672320506 1121172875 1784662007 788117692 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 249515771 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 1622006612 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 510113906 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12715,19 +12805,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 219 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12740,25 +12830,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 215 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -937106871 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12768,19 +12858,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 220 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12790,19 +12880,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 221 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12812,19 +12902,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 221 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12837,19 +12927,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 222 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12859,19 +12949,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 223 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12881,19 +12971,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 223 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12906,25 +12996,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 222 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1685355750 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 785992331 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1685355750 +785992331 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12934,19 +13024,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 224 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 105706931 1542266494 1016922733 1373861163 1382071571 946269843 1056565972 1604382762 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 933039143 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 573577165 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 647413248 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 1626877848 1720435669 1060830840 788117692 328638398 672320506 1121172875 1784662007 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 391447681 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 321142942 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 905544614 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12959,19 +13049,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 224 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -12984,25 +13074,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 220 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1685355750 +785992331 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13012,19 +13102,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 225 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13034,19 +13124,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 226 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13056,19 +13146,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 226 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13081,19 +13171,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 227 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13103,19 +13193,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 228 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13125,19 +13215,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 228 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13150,25 +13240,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 227 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 105706931 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1626877848 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -105706931 +1626877848 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13178,19 +13268,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 229 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1016922733 1542266494 1604382762 1373861163 1382071571 946269843 1056565972 933039143 1409829770 1615263460 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 414753050 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 1290636791 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 310113799 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 1060830840 1720435669 1784662007 788117692 328638398 672320506 1121172875 391447681 249515771 2114889273 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1810132623 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 1627960023 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 760563749 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13203,19 +13293,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 229 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13228,25 +13318,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 225 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -105706931 +1626877848 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13256,19 +13346,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 230 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13278,19 +13368,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 231 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13300,19 +13390,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 231 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13325,19 +13415,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 232 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13347,19 +13437,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 233 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13369,19 +13459,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 233 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13394,25 +13484,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 232 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1016922733 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1060830840 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1016922733 +1060830840 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13422,19 +13512,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 234 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1373861163 1542266494 1604382762 1615263460 1382071571 946269843 1056565972 933039143 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 573577165 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 378424998 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 663286007 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 788117692 1720435669 1784662007 2114889273 328638398 672320506 1121172875 391447681 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 321142942 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 818403870 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1935637221 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13447,19 +13537,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 234 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13472,25 +13562,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 230 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1016922733 +1060830840 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13500,19 +13590,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 235 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13522,19 +13612,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 236 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13544,19 +13634,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 236 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13569,19 +13659,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 237 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13591,19 +13681,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 238 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13613,19 +13703,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 238 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13638,25 +13728,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 237 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1373861163 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 788117692 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1373861163 +788117692 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13666,19 +13756,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 239 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 1604382762 1542266494 933039143 1615263460 1382071571 946269843 1056565972 573577165 1409829770 414753050 264493031 1360099210 678430346 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1947973636 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 1784662007 1720435669 391447681 2114889273 328638398 672320506 1121172875 321142942 249515771 1810132623 2047526627 440434003 968514068 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 25126016 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13691,19 +13781,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 239 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13716,25 +13806,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 235 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1373861163 +788117692 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13744,19 +13834,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 240 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13766,19 +13856,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 241 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13788,19 +13878,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 241 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13813,19 +13903,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 242 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13835,19 +13925,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 243 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13857,19 +13947,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 243 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13882,25 +13972,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 242 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1542266494 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1720435669 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1542266494 +1720435669 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13910,19 +14000,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 244 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 1604382762 946269843 933039143 1615263460 1382071571 678430346 1056565972 573577165 1409829770 414753050 264493031 1360099210 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 1694923283 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1784662007 672320506 391447681 2114889273 328638398 968514068 1121172875 321142942 249515771 1810132623 2047526627 440434003 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 566034357 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13935,19 +14025,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 244 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -13960,25 +14050,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 240 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1542266494 +1720435669 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13988,19 +14078,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 245 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14010,19 +14100,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 246 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14032,19 +14122,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 246 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14057,19 +14147,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 247 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14079,19 +14169,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 248 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14101,19 +14191,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 248 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14126,25 +14216,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 247 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 946269843 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 672320506 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -946269843 +672320506 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14154,19 +14244,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 249 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1604382762 1382071571 933039143 1615263460 1360099210 678430346 1056565972 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 1295917276 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 464786320 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1784662007 328638398 391447681 2114889273 440434003 968514068 1121172875 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 157627094 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 940060004 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14179,19 +14269,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 249 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14204,25 +14294,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 245 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -946269843 +672320506 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14232,19 +14322,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 250 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14254,19 +14344,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 251 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14276,19 +14366,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 251 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14301,19 +14391,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 252 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14323,19 +14413,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 253 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14345,19 +14435,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 253 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14370,25 +14460,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 252 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1604382762 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1784662007 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1604382762 +1784662007 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14398,19 +14488,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 254 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 933039143 1382071571 1056565972 1615263460 1360099210 678430346 1295917276 573577165 1409829770 414753050 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 1290636791 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 644929627 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 391447681 328638398 1121172875 2114889273 440434003 968514068 157627094 321142942 249515771 1810132623 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 1627960023 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 114132791 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14423,19 +14513,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 254 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14448,25 +14538,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 250 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1604382762 +1784662007 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14476,19 +14566,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 255 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14498,19 +14588,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 256 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14520,19 +14610,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 256 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14545,19 +14635,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 257 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14567,19 +14657,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 258 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14589,19 +14679,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 258 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14614,25 +14704,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 257 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 933039143 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 391447681 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -933039143 +391447681 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14642,19 +14732,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 259 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 1615263460 1382071571 1056565972 414753050 1360099210 678430346 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 235094225 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1729083635 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 1388143299 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 2114889273 328638398 1121172875 1810132623 440434003 968514068 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1068934215 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1854778591 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 1360767589 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14667,19 +14757,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 259 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14692,25 +14782,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 255 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -933039143 +391447681 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14720,19 +14810,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 260 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14742,19 +14832,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 261 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14764,19 +14854,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 261 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14789,19 +14879,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 262 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14811,19 +14901,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 263 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14833,19 +14923,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 263 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14858,25 +14948,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 262 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1382071571 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 328638398 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1382071571 +328638398 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14886,19 +14976,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 264 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1615263460 678430346 1056565972 414753050 1360099210 235094225 1295917276 573577165 1409829770 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 1545883417 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 740393997 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1821867039 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 2114889273 968514068 1121172875 1810132623 440434003 1068934215 157627094 321142942 249515771 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1622006612 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 1566723494 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 796533847 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14911,19 +15001,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 264 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14936,25 +15026,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 260 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1382071571 +328638398 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14964,19 +15054,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 265 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -14986,19 +15076,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 266 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15008,19 +15098,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 266 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15033,19 +15123,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 267 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15055,19 +15145,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 268 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15077,19 +15167,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 268 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15102,25 +15192,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 267 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1615263460 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2114889273 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1615263460 +2114889273 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15130,19 +15220,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 269 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 414753050 678430346 1056565972 1409829770 1360099210 235094225 1295917276 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 1488997419 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 162014361 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 702509858 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1810132623 968514068 1121172875 249515771 440434003 1068934215 157627094 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 998351292 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 649734728 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 932607259 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15155,19 +15245,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 269 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15180,25 +15270,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 265 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1615263460 +2114889273 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15208,19 +15298,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 270 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15230,19 +15320,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 271 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15252,19 +15342,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 271 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15277,19 +15367,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 272 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15299,19 +15389,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 273 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15321,19 +15411,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 273 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15346,25 +15436,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 272 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 414753050 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1810132623 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -414753050 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15374,19 +15464,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 274 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1056565972 678430346 1295917276 1409829770 1360099210 235094225 1488997419 573577165 1545883417 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1210190219 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 1160596380 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 849389996 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 1121172875 968514068 157627094 249515771 440434003 1068934215 998351292 321142942 1622006612 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 1644443712 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 434091818 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1393931310 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15399,19 +15489,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 274 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15424,25 +15514,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 270 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -414753050 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15452,19 +15542,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 275 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15474,19 +15564,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 276 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15496,19 +15586,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 276 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15521,19 +15611,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 277 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15543,19 +15633,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 278 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15565,19 +15655,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 278 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15590,25 +15680,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 277 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056565972 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1121172875 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1056565972 +1121172875 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15618,19 +15708,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 279 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1409829770 678430346 1295917276 1545883417 1360099210 235094225 1488997419 573577165 1210190219 1290636791 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 812272602 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 271300696 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 249515771 968514068 157627094 1622006612 440434003 1068934215 998351292 321142942 1644443712 1627960023 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 1874154700 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 191382150 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15643,19 +15733,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 279 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15668,25 +15758,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 275 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1056565972 +1121172875 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15696,19 +15786,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 280 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15718,19 +15808,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 281 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15740,19 +15830,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 281 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15765,19 +15855,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 282 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15787,19 +15877,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 283 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15809,19 +15899,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 283 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15834,25 +15924,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 282 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1409829770 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 249515771 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1409829770 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15862,19 +15952,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 284 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1545883417 678430346 1295917276 1290636791 1360099210 235094225 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1729083635 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1347152216 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1840845266 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 1622006612 968514068 157627094 1627960023 440434003 1068934215 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 1854778591 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 2036958521 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 718231523 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15887,19 +15977,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 284 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15912,25 +16002,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 280 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1409829770 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15940,19 +16030,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 285 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15962,19 +16052,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 286 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -15984,19 +16074,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 286 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16009,19 +16099,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 287 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16031,19 +16121,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 288 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16053,19 +16143,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 288 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16078,25 +16168,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 287 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 678430346 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 968514068 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -678430346 +968514068 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16106,19 +16196,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 289 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 1545883417 235094225 1295917276 1290636791 1360099210 1729083635 1488997419 573577165 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 378424998 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 647413248 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 982274580 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 1622006612 1068934215 157627094 1627960023 440434003 1854778591 998351292 321142942 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 818403870 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 905544614 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 586617651 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16131,19 +16221,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 289 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16156,25 +16246,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 285 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -678430346 +968514068 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16184,19 +16274,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 290 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16206,19 +16296,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 291 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16228,19 +16318,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 291 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16253,19 +16343,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 292 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16275,19 +16365,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 293 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16297,19 +16387,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 293 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16322,25 +16412,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 292 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1545883417 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1622006612 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1545883417 +1622006612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16350,19 +16440,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 294 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1295917276 235094225 573577165 1290636791 1360099210 1729083635 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1347152216 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1840845266 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1711281786 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 157627094 1068934215 321142942 1627960023 440434003 1854778591 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 2036958521 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 718231523 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 1504109395 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16375,19 +16465,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 294 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16400,25 +16490,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 290 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1545883417 +1622006612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16428,19 +16518,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 295 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16450,19 +16540,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 296 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16472,19 +16562,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 296 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16497,19 +16587,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 297 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16519,19 +16609,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 298 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16541,19 +16631,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 298 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16566,25 +16656,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 297 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 235094225 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1068934215 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -235094225 +1068934215 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16594,19 +16684,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 299 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 1295917276 1729083635 573577165 1290636791 1360099210 1347152216 1488997419 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 464786320 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 1056409202 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 667203991 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 157627094 1854778591 321142942 1627960023 440434003 2036958521 998351292 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 940060004 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 997110508 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 1945604815 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16619,19 +16709,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 299 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16644,25 +16734,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 295 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -235094225 +1068934215 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16672,19 +16762,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 300 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16694,19 +16784,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 301 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16716,19 +16806,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 301 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16741,19 +16831,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 302 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16763,19 +16853,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 303 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16785,19 +16875,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 303 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16810,25 +16900,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 302 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1295917276 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 157627094 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1295917276 +157627094 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16838,19 +16928,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 304 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 573577165 1729083635 1488997419 1290636791 1360099210 1347152216 464786320 378424998 1210190219 812272602 264493031 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 2097281333 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 980486635 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 321142942 1854778591 998351292 1627960023 440434003 2036958521 940060004 818403870 1644443712 1874154700 2047526627 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 1096283470 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 985922955 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16863,19 +16953,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 304 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16888,25 +16978,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 300 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1295917276 +157627094 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16916,19 +17006,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 305 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16938,19 +17028,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 306 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16960,19 +17050,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 306 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -16985,19 +17075,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 307 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17007,19 +17097,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 308 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17029,19 +17119,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 308 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17054,25 +17144,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 307 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1729083635 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1854778591 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1729083635 +1854778591 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17082,19 +17172,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 309 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 573577165 1360099210 1488997419 1290636791 264493031 1347152216 464786320 378424998 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1868503618 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1140459609 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 1286937645 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 321142942 440434003 998351292 1627960023 2047526627 2036958521 940060004 818403870 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1142020464 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1308927845 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 1682092198 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17107,19 +17197,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 309 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17132,25 +17222,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 305 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1729083635 +1854778591 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17160,19 +17250,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 310 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17182,19 +17272,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 311 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17204,19 +17294,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 311 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17229,19 +17319,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 312 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17251,19 +17341,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 313 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17273,19 +17363,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 313 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17298,25 +17388,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 312 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 573577165 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 321142942 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -573577165 +321142942 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17326,19 +17416,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 314 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1488997419 1360099210 378424998 1290636791 264493031 1347152216 464786320 1868503618 1210190219 812272602 2097281333 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 980486635 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 22593188 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 998351292 440434003 818403870 1627960023 2047526627 2036958521 940060004 1142020464 1644443712 1874154700 1096283470 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 985922955 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 895947612 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17351,19 +17441,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 314 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17376,25 +17466,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 310 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -573577165 +321142942 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17404,19 +17494,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 315 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17426,19 +17516,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 316 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17448,19 +17538,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 316 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17473,19 +17563,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 317 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17495,19 +17585,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 318 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17517,19 +17607,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 318 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17542,25 +17632,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 317 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1360099210 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 440434003 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1360099210 +440434003 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17570,19 +17660,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 319 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 1488997419 264493031 378424998 1290636791 2097281333 1347152216 464786320 1868503618 1210190219 812272602 980486635 1694923283 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 1371483802 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 43222727 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 998351292 2047526627 818403870 1627960023 1096283470 2036958521 940060004 1142020464 1644443712 1874154700 985922955 566034357 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1032616650 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1908316405 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17595,19 +17685,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 319 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17620,25 +17710,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 315 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1360099210 +440434003 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17648,19 +17738,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 320 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17670,19 +17760,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 321 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17692,19 +17782,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 321 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17717,19 +17807,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 322 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17739,19 +17829,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 323 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17761,19 +17851,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 323 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17786,25 +17876,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 322 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 264493031 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2047526627 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -264493031 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17814,19 +17904,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 324 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 1488997419 2097281333 378424998 1290636791 1694923283 1347152216 464786320 1868503618 1210190219 812272602 980486635 1371483802 1947973636 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 745345368 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1204701737 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 998351292 1096283470 818403870 1627960023 566034357 2036958521 940060004 1142020464 1644443712 1874154700 985922955 1032616650 25126016 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 1020923989 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 762218386 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17839,19 +17929,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 324 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17864,25 +17954,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 320 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -264493031 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17892,19 +17982,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 325 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17914,19 +18004,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 326 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17936,19 +18026,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 326 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17961,19 +18051,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 327 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -17983,19 +18073,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 328 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18005,19 +18095,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 328 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18030,25 +18120,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 327 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2097281333 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1096283470 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -2097281333 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18058,19 +18148,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 329 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1488997419 1347152216 378424998 1290636791 1694923283 1947973636 464786320 1868503618 1210190219 812272602 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 271300696 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 1405428113 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 998351292 2036958521 818403870 1627960023 566034357 25126016 940060004 1142020464 1644443712 1874154700 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 191382150 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 66233253 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18083,19 +18173,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 329 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18108,25 +18198,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 325 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -2097281333 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18136,19 +18226,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 330 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18158,19 +18248,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 331 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18180,19 +18270,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 331 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18205,19 +18295,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 332 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18227,19 +18317,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 333 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18249,19 +18339,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 333 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18274,25 +18364,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 332 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1488997419 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 998351292 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1488997419 +998351292 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18302,19 +18392,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 334 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 1290636791 1347152216 378424998 812272602 1694923283 1947973636 464786320 1868503618 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 1140459609 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 210781873 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 1627960023 2036958521 818403870 1874154700 566034357 25126016 940060004 1142020464 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 1308927845 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 152005629 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18327,19 +18417,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 334 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18352,25 +18442,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 330 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1488997419 +998351292 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18380,19 +18470,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 335 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18402,19 +18492,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 336 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18424,19 +18514,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 336 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18449,19 +18539,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 337 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18471,19 +18561,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 338 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18493,19 +18583,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 338 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18518,25 +18608,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 337 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1290636791 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1627960023 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1290636791 +1627960023 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18546,19 +18636,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 339 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 378424998 1347152216 1868503618 812272602 1694923283 1947973636 464786320 1140459609 1210190219 271300696 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 644929627 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 310113799 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 818403870 2036958521 1142020464 1874154700 566034357 25126016 940060004 1308927845 1644443712 191382150 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 114132791 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 760563749 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18571,19 +18661,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 339 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18596,25 +18686,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 335 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1290636791 +1627960023 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18624,19 +18714,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 340 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18646,19 +18736,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 341 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18668,19 +18758,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 341 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18693,19 +18783,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 342 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18715,19 +18805,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 343 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18737,19 +18827,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 343 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18762,25 +18852,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 342 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 378424998 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 818403870 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -378424998 +818403870 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18790,19 +18880,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 344 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 812272602 1347152216 1868503618 271300696 1694923283 1947973636 464786320 1140459609 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 647413248 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 663286007 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1874154700 2036958521 1142020464 191382150 566034357 25126016 940060004 1308927845 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 905544614 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1935637221 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18815,19 +18905,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 344 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18840,25 +18930,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 340 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -378424998 +818403870 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18868,19 +18958,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 345 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18890,19 +18980,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 346 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18912,19 +19002,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 346 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18937,19 +19027,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 347 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18959,19 +19049,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 348 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -18981,19 +19071,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 348 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19006,25 +19096,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 347 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 812272602 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1874154700 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -812272602 +1874154700 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19034,19 +19124,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 349 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1868503618 1347152216 1140459609 271300696 1694923283 1947973636 464786320 647413248 1210190219 644929627 980486635 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1745510705 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 1293767845 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 1142020464 2036958521 1308927845 191382150 566034357 25126016 940060004 905544614 1644443712 114132791 985922955 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 2137211482 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1789550256 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19059,19 +19149,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 349 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19084,25 +19174,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 345 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -812272602 +1874154700 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19112,19 +19202,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 350 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19134,19 +19224,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 351 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19156,19 +19246,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 351 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19181,19 +19271,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 352 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19203,19 +19293,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 353 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19225,19 +19315,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 353 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19250,25 +19340,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 352 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1347152216 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2036958521 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1347152216 +2036958521 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19278,19 +19368,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 354 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 1868503618 1694923283 1140459609 271300696 980486635 1947973636 464786320 647413248 1210190219 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 1160596380 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 57320772 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1142020464 566034357 1308927845 191382150 985922955 25126016 940060004 905544614 1644443712 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 434091818 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 745160567 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19303,19 +19393,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 354 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19328,25 +19418,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 350 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1347152216 +2036958521 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19356,19 +19446,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 355 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19378,19 +19468,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 356 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19400,19 +19490,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 356 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19425,19 +19515,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 357 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19447,19 +19537,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 358 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19469,19 +19559,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 358 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19494,25 +19584,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 357 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1868503618 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1142020464 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1868503618 +1142020464 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19522,19 +19612,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 359 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 271300696 1694923283 1140459609 1210190219 980486635 1947973636 464786320 647413248 1160596380 644929627 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 310113799 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 583763294 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 191382150 566034357 1308927845 1644443712 985922955 25126016 940060004 905544614 434091818 114132791 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 760563749 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 1435804085 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19547,19 +19637,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 359 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19572,25 +19662,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 355 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1868503618 +1142020464 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19600,19 +19690,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 360 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19622,19 +19712,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 361 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19644,19 +19734,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 361 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19669,19 +19759,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 362 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19691,19 +19781,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 363 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19713,19 +19803,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 363 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19738,25 +19828,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 362 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 271300696 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 191382150 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -271300696 +191382150 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19766,19 +19856,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 364 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 1210190219 1694923283 1140459609 644929627 980486635 1947973636 464786320 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 1056409202 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 227990 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 1644443712 566034357 1308927845 114132791 985922955 25126016 940060004 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 997110508 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 357863579 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19791,19 +19881,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 364 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19816,25 +19906,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 360 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -271300696 +191382150 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19844,19 +19934,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 365 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19866,19 +19956,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 366 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19888,19 +19978,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 366 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19913,19 +20003,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 367 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19935,19 +20025,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 368 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19957,19 +20047,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 368 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -19982,25 +20072,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 367 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1210190219 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1644443712 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1210190219 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20010,19 +20100,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 369 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 1140459609 1694923283 464786320 644929627 980486635 1947973636 1056409202 647413248 1160596380 310113799 1745510705 1371483802 745345368 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 1392190493 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 959942241 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 1308927845 566034357 940060004 114132791 985922955 25126016 997110508 905544614 434091818 760563749 2137211482 1032616650 1020923989 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 1025799482 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 2054798982 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20035,19 +20125,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 369 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20060,25 +20150,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 365 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1210190219 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20088,19 +20178,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 370 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20110,19 +20200,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 371 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20132,19 +20222,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 371 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20157,19 +20247,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 372 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20179,19 +20269,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 373 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20201,19 +20291,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 373 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20226,25 +20316,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 372 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1694923283 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 566034357 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1694923283 +566034357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20254,19 +20344,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 374 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 1140459609 1947973636 464786320 644929627 980486635 745345368 1056409202 647413248 1160596380 310113799 1745510705 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1293767845 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 1308927845 25126016 940060004 114132791 985922955 1020923989 997110508 905544614 434091818 760563749 2137211482 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 1789550256 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20279,19 +20369,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 374 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20304,25 +20394,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 370 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1694923283 +566034357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20332,19 +20422,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 375 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20354,19 +20444,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 376 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20376,19 +20466,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 376 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20401,19 +20491,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 377 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20423,19 +20513,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 378 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20445,19 +20535,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 378 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20470,25 +20560,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 377 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1947973636 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 25126016 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1947973636 +25126016 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20498,19 +20588,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 379 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1140459609 980486635 464786320 644929627 1745510705 745345368 1056409202 647413248 1160596380 310113799 1293767845 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 22593188 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 139808524 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 1308927845 985922955 940060004 114132791 2137211482 1020923989 997110508 905544614 434091818 760563749 1789550256 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 895947612 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 1753447031 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20523,19 +20613,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 379 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20548,25 +20638,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 375 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1947973636 +25126016 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20576,19 +20666,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 380 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20598,19 +20688,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 381 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20620,19 +20710,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 381 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20645,19 +20735,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 382 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20667,19 +20757,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 383 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20689,19 +20779,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 383 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20714,25 +20804,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 382 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 980486635 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 985922955 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -980486635 +985922955 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20742,19 +20832,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 384 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1140459609 1745510705 464786320 644929627 1293767845 745345368 1056409202 647413248 1160596380 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 740393997 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1821867039 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 1308927845 2137211482 940060004 114132791 1789550256 1020923989 997110508 905544614 434091818 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 1566723494 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 796533847 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20767,19 +20857,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 384 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20792,25 +20882,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 380 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -980486635 +985922955 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20820,19 +20910,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 385 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20842,19 +20932,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 386 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20864,19 +20954,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 386 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20889,19 +20979,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 387 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20911,19 +21001,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 388 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20933,19 +21023,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 388 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20958,25 +21048,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 387 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1140459609 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1308927845 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1140459609 +1308927845 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20986,19 +21076,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 389 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 644929627 1745510705 464786320 1160596380 1293767845 745345368 1056409202 647413248 740393997 310113799 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 1405428113 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 549392959 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 114132791 2137211482 940060004 434091818 1789550256 1020923989 997110508 905544614 1566723494 760563749 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 66233253 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 398887205 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21011,19 +21101,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 389 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21036,25 +21126,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 385 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1140459609 +1308927845 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21064,19 +21154,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 390 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21086,19 +21176,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 391 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21108,19 +21198,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 391 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21133,19 +21223,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 392 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21155,19 +21245,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 393 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21177,19 +21267,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 393 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21202,25 +21292,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 392 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 644929627 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 114132791 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -644929627 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21230,19 +21320,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 394 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 1160596380 1745510705 464786320 310113799 1293767845 745345368 1056409202 647413248 740393997 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 1821867039 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 434091818 2137211482 940060004 760563749 1789550256 1020923989 997110508 905544614 1566723494 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 796533847 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21255,19 +21345,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 394 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21280,25 +21370,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 390 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -644929627 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21308,19 +21398,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 395 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21330,19 +21420,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 396 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21352,19 +21442,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 396 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21377,19 +21467,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 397 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21399,19 +21489,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 398 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21421,19 +21511,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 398 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21446,25 +21536,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 397 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1160596380 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 434091818 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1160596380 +434091818 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21474,19 +21564,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 399 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 310113799 1745510705 464786320 740393997 1293767845 745345368 1056409202 647413248 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 663286007 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 760563749 2137211482 940060004 1566723494 1789550256 1020923989 997110508 905544614 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 1935637221 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21499,19 +21589,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 399 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21524,25 +21614,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 395 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1160596380 +434091818 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21552,19 +21642,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 400 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21574,19 +21664,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 401 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21596,19 +21686,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 401 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21621,19 +21711,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 402 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21643,19 +21733,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 403 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21665,19 +21755,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 403 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21690,25 +21780,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 402 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 310113799 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 760563749 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -310113799 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21718,19 +21808,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 404 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 464786320 1745510705 647413248 740393997 1293767845 745345368 1056409202 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 162014361 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 702509858 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 940060004 2137211482 905544614 1566723494 1789550256 1020923989 997110508 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 649734728 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 932607259 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21743,19 +21833,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 404 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21768,25 +21858,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 400 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -310113799 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21796,19 +21886,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 405 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21818,19 +21908,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 406 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21840,19 +21930,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 406 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21865,19 +21955,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 407 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21887,19 +21977,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 408 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21909,19 +21999,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 408 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21934,25 +22024,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 407 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 464786320 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940060004 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -464786320 +940060004 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21962,19 +22052,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 409 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 647413248 1745510705 1056409202 740393997 1293767845 745345368 162014361 663286007 1821867039 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 2006212742 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 905544614 2137211482 997110508 1566723494 1789550256 1020923989 649734728 1935637221 796533847 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 127618319 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -21987,19 +22077,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 409 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22012,25 +22102,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 405 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -464786320 +940060004 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22040,19 +22130,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 410 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22062,19 +22152,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 411 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22084,19 +22174,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 411 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22109,19 +22199,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 412 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22131,19 +22221,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 413 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22153,19 +22243,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 413 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22178,25 +22268,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 412 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 647413248 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 905544614 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -647413248 +905544614 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22206,19 +22296,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 414 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 740393997 1745510705 1056409202 1821867039 1293767845 745345368 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1840845266 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 1388143299 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 1566723494 2137211482 997110508 796533847 1789550256 1020923989 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 718231523 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1360767589 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22231,19 +22321,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 414 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22256,25 +22346,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 410 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -647413248 +905544614 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22284,19 +22374,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 415 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22306,19 +22396,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 416 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22328,19 +22418,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 416 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22353,19 +22443,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 417 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22375,19 +22465,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 418 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22397,19 +22487,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 418 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22422,25 +22512,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 417 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1745510705 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137211482 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1745510705 +2137211482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22450,19 +22540,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 419 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 740393997 745345368 1056409202 1821867039 1293767845 1840845266 162014361 663286007 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 210781873 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 952682642 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1566723494 1020923989 997110508 796533847 1789550256 718231523 649734728 1935637221 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 152005629 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 1684106402 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22475,19 +22565,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 419 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22500,25 +22590,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 415 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1745510705 +2137211482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22528,19 +22618,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 420 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22550,19 +22640,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 421 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22572,19 +22662,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 421 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22597,19 +22687,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 422 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22619,19 +22709,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 423 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22641,19 +22731,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 423 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22666,25 +22756,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 422 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 740393997 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1566723494 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -740393997 +1566723494 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22694,19 +22784,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 424 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 1056409202 745345368 663286007 1821867039 1293767845 1840845266 162014361 210781873 2006212742 1405428113 22593188 1371483802 1392190493 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 959942241 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 997110508 1020923989 1935637221 796533847 1789550256 718231523 649734728 152005629 127618319 66233253 895947612 1032616650 1025799482 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 2054798982 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22719,19 +22809,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 424 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22744,25 +22834,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 420 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -740393997 +1566723494 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22772,19 +22862,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 425 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22794,19 +22884,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 426 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22816,19 +22906,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 426 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22841,19 +22931,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 427 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22863,19 +22953,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 428 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22885,19 +22975,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 428 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22910,25 +23000,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 427 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 745345368 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1020923989 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -745345368 +1020923989 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22938,19 +23028,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 429 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 1056409202 1840845266 663286007 1821867039 1293767845 1392190493 162014361 210781873 2006212742 1405428113 22593188 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 139808524 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 1922303434 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 997110508 718231523 1935637221 796533847 1789550256 1025799482 649734728 152005629 127618319 66233253 895947612 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 1753447031 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 2137589296 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22963,19 +23053,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 429 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -22988,25 +23078,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 425 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -745345368 +1020923989 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23016,19 +23106,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 430 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23038,19 +23128,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 431 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23060,19 +23150,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 431 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23085,19 +23175,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 432 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23107,19 +23197,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 433 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23129,19 +23219,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 433 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23154,25 +23244,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 432 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1840845266 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 718231523 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1840845266 +718231523 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23182,19 +23272,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 434 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 1056409202 1293767845 663286007 1821867039 22593188 1392190493 162014361 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 702509858 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 997110508 1789550256 1935637221 796533847 895947612 1025799482 649734728 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 932607259 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23207,19 +23297,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 434 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23232,25 +23322,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 430 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1840845266 +718231523 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23260,19 +23350,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 435 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23282,19 +23372,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 436 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23304,19 +23394,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 436 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23329,19 +23419,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 437 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23351,19 +23441,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 438 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23373,19 +23463,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 438 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23398,25 +23488,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 437 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1056409202 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 997110508 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1056409202 +997110508 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23426,19 +23516,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 439 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 663286007 1293767845 162014361 1821867039 22593188 1392190493 702509858 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 227990 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 667203991 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 1935637221 1789550256 649734728 796533847 895947612 1025799482 932607259 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 357863579 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 1945604815 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23451,19 +23541,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 439 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23476,25 +23566,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 435 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1056409202 +997110508 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23504,19 +23594,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 440 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23526,19 +23616,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 441 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23548,19 +23638,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 441 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23573,19 +23663,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 442 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23595,19 +23685,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 443 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23617,19 +23707,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 443 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23642,25 +23732,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 442 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 663286007 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1935637221 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -663286007 +1935637221 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23670,19 +23760,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 444 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 162014361 1293767845 702509858 1821867039 22593188 1392190493 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 1388143299 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 289483333 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 649734728 1789550256 932607259 796533847 895947612 1025799482 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1360767589 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 1349414238 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23695,19 +23785,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 444 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23720,25 +23810,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 440 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -663286007 +1935637221 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23748,19 +23838,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 445 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23770,19 +23860,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 446 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23792,19 +23882,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 446 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23817,19 +23907,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 447 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23839,19 +23929,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 448 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23861,19 +23951,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 448 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23886,25 +23976,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 447 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1293767845 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1789550256 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1293767845 +1789550256 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23914,19 +24004,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 449 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 162014361 1392190493 702509858 1821867039 22593188 1388143299 227990 210781873 2006212742 1405428113 139808524 1371483802 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 43222727 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 649734728 1025799482 932607259 796533847 895947612 1360767589 357863579 152005629 127618319 66233253 1753447031 1032616650 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1908316405 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23939,19 +24029,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 449 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -23964,25 +24054,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 445 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1293767845 +1789550256 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23992,19 +24082,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 450 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24014,19 +24104,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 451 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24036,19 +24126,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 451 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24061,19 +24151,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 452 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24083,19 +24173,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 453 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24105,19 +24195,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 453 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24130,25 +24220,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 452 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1392190493 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1025799482 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1392190493 +1025799482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24158,19 +24248,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 454 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 162014361 22593188 702509858 1821867039 1371483802 1388143299 227990 210781873 2006212742 1405428113 139808524 43222727 959942241 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 1204701737 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 649734728 895947612 932607259 796533847 1032616650 1360767589 357863579 152005629 127618319 66233253 1753447031 1908316405 2054798982 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 762218386 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24183,19 +24273,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 454 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24208,25 +24298,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 450 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1392190493 +1025799482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24236,19 +24326,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 455 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24258,19 +24348,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 456 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24280,19 +24370,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 456 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24305,19 +24395,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 457 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24327,19 +24417,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 458 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24349,19 +24439,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 458 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24374,25 +24464,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 457 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 22593188 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 895947612 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -22593188 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24402,19 +24492,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 459 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 162014361 1388143299 702509858 1821867039 1371483802 959942241 227990 210781873 2006212742 1405428113 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 583763294 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 262085285 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 649734728 1360767589 932607259 796533847 1032616650 2054798982 357863579 152005629 127618319 66233253 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 1435804085 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 873415566 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24427,19 +24517,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 459 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24452,25 +24542,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 455 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -22593188 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24480,19 +24570,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 460 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24502,19 +24592,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 461 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24524,19 +24614,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 461 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24549,19 +24639,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 462 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24571,19 +24661,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 463 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24593,19 +24683,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 463 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24618,25 +24708,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 462 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 162014361 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 649734728 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -162014361 +649734728 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24646,19 +24736,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 464 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 1821867039 1388143299 702509858 1405428113 1371483802 959942241 227990 210781873 2006212742 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 57320772 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 849389996 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 796533847 1360767589 932607259 66233253 1032616650 2054798982 357863579 152005629 127618319 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 745160567 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1393931310 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24671,19 +24761,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 464 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24696,25 +24786,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 460 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -162014361 +649734728 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24724,19 +24814,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 465 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24746,19 +24836,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 466 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24768,19 +24858,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 466 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24793,19 +24883,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 467 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24815,19 +24905,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 468 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24837,19 +24927,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 468 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24862,25 +24952,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 467 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1821867039 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 796533847 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1821867039 +796533847 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24890,19 +24980,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 469 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1405428113 1388143299 702509858 2006212742 1371483802 959942241 227990 210781873 57320772 583763294 139808524 43222727 1204701737 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 66233253 1360767589 932607259 127618319 1032616650 2054798982 357863579 152005629 745160567 1435804085 1753447031 1908316405 762218386 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24915,19 +25005,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 469 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24940,25 +25030,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 465 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1821867039 +796533847 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24968,19 +25058,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 470 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -24990,19 +25080,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 471 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25012,19 +25102,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 471 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25037,19 +25127,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 472 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25059,19 +25149,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 473 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25081,19 +25171,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 473 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25106,25 +25196,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 472 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1388143299 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1360767589 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1388143299 +1360767589 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25134,19 +25224,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 474 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 1405428113 959942241 702509858 2006212742 1371483802 1204701737 227990 210781873 57320772 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 849389996 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 1297485547 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 66233253 2054798982 932607259 127618319 1032616650 762218386 357863579 152005629 745160567 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1393931310 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1449621165 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25159,19 +25249,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 474 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25184,25 +25274,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 470 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1388143299 +1360767589 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25212,19 +25302,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 475 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25234,19 +25324,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 476 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25256,19 +25346,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 476 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25281,19 +25371,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 477 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25303,19 +25393,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 478 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25325,19 +25415,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 478 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25350,25 +25440,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 477 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1405428113 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 66233253 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1405428113 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25378,19 +25468,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 479 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 2006212742 959942241 702509858 57320772 1371483802 1204701737 227990 210781873 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 952682642 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 1286937645 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 127618319 2054798982 932607259 745160567 1032616650 762218386 357863579 152005629 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1684106402 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 1682092198 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25403,19 +25493,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 479 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25428,25 +25518,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 475 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1405428113 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25456,19 +25546,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 480 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25478,19 +25568,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 481 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25500,19 +25590,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 481 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25525,19 +25615,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 482 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25547,19 +25637,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 483 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25569,19 +25659,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 483 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25594,25 +25684,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 482 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2006212742 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 127618319 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -2006212742 +127618319 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25622,19 +25712,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 484 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 702509858 959942241 210781873 57320772 1371483802 1204701737 227990 952682642 849389996 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1413098988 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 932607259 2054798982 152005629 745160567 1032616650 762218386 357863579 1684106402 1393931310 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 2017354584 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25647,19 +25737,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 484 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25672,25 +25762,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 480 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -2006212742 +127618319 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25700,19 +25790,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 485 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25722,19 +25812,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 486 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25744,19 +25834,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 486 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25769,19 +25859,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 487 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25791,19 +25881,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 488 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25813,19 +25903,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 488 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25838,25 +25928,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 487 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 702509858 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 932607259 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -702509858 +932607259 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25866,19 +25956,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 489 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 57320772 959942241 210781873 849389996 1371483802 1204701737 227990 952682642 1413098988 583763294 139808524 43222727 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 312077835 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 745160567 2054798982 152005629 1393931310 1032616650 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1908316405 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 1632392469 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25891,19 +25981,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 489 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25916,25 +26006,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 485 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -702509858 +932607259 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25944,19 +26034,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 490 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25966,19 +26056,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 491 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -25988,19 +26078,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 491 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26013,19 +26103,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 492 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26035,19 +26125,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 493 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26057,19 +26147,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 493 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26082,25 +26172,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 492 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 959942241 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2054798982 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -959942241 +2054798982 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26110,19 +26200,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 494 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 57320772 1371483802 210781873 849389996 43222727 1204701737 227990 952682642 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 1286937645 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 205039926 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 745160567 1032616650 152005629 1393931310 1908316405 762218386 357863579 1684106402 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 1682092198 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 940553268 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26135,19 +26225,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 494 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26160,25 +26250,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 490 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -959942241 +2054798982 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26188,19 +26278,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 495 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26210,19 +26300,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 496 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26232,19 +26322,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 496 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26257,19 +26347,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 497 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26279,19 +26369,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 498 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26301,19 +26391,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 498 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26326,25 +26416,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 497 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 57320772 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 745160567 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -57320772 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26354,19 +26444,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 499 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 210781873 1371483802 952682642 849389996 43222727 1204701737 227990 1286937645 1413098988 583763294 139808524 312077835 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 152005629 1032616650 1684106402 1393931310 1908316405 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1632392469 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26379,19 +26469,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 499 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26404,25 +26494,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 495 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -57320772 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26432,19 +26522,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 500 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26454,19 +26544,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 501 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26476,19 +26566,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 501 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26501,19 +26591,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 502 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26523,19 +26613,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 503 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26545,19 +26635,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 503 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26570,25 +26660,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 502 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1371483802 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1032616650 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1371483802 +1032616650 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26598,19 +26688,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 504 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 210781873 43222727 952682642 849389996 312077835 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 152005629 1908316405 1684106402 1393931310 1632392469 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26623,19 +26713,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 504 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26648,25 +26738,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 500 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1371483802 +1032616650 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26676,19 +26766,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 505 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26698,19 +26788,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 506 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26720,19 +26810,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 506 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26745,19 +26835,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 507 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26767,19 +26857,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 508 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26789,19 +26879,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 508 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26814,25 +26904,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 507 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 43222727 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1908316405 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -43222727 +1908316405 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26842,19 +26932,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 509 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 210781873 312077835 952682642 849389996 982274580 1204701737 227990 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 1489862619 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 747487025 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 152005629 1632392469 1684106402 1393931310 586617651 762218386 357863579 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 1531333864 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 2052915500 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26867,19 +26957,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 509 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26892,25 +26982,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 505 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -43222727 +1908316405 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26920,19 +27010,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 510 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26942,19 +27032,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 511 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26964,19 +27054,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 511 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -26989,19 +27079,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 512 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27011,19 +27101,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 513 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27033,19 +27123,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 513 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27058,25 +27148,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 512 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 210781873 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 152005629 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -210781873 +152005629 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27086,19 +27176,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 514 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 952682642 312077835 227990 849389996 982274580 1204701737 1489862619 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 667203991 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 1265656101 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1684106402 1632392469 357863579 1393931310 586617651 762218386 1531333864 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 1945604815 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 234698513 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27111,19 +27201,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 514 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27136,25 +27226,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 510 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -210781873 +152005629 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27164,19 +27254,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 515 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27186,19 +27276,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 516 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27208,19 +27298,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 516 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27233,19 +27323,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 517 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27255,19 +27345,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 518 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27277,19 +27367,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 518 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27302,25 +27392,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 517 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 952682642 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1684106402 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -952682642 +1684106402 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27330,19 +27420,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 519 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 227990 312077835 1489862619 849389996 982274580 1204701737 667203991 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 1265656101 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 24317268 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 357863579 1632392469 1531333864 1393931310 586617651 762218386 1945604815 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 234698513 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 920011586 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27355,19 +27445,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 519 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27380,25 +27470,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 515 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -952682642 +1684106402 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27408,19 +27498,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 520 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27430,19 +27520,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 521 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27452,19 +27542,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 521 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27477,19 +27567,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 522 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27499,19 +27589,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 523 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27521,19 +27611,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 523 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27546,25 +27636,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 522 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 227990 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 357863579 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -227990 +357863579 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27574,19 +27664,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 524 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 1489862619 312077835 667203991 849389996 982274580 1204701737 1265656101 1286937645 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 643015091 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1531333864 1632392469 1945604815 1393931310 586617651 762218386 234698513 1682092198 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 142666848 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27599,19 +27689,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 524 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27624,25 +27714,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 520 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -227990 +357863579 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27652,19 +27742,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 525 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27674,19 +27764,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 526 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27696,19 +27786,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 526 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27721,19 +27811,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 527 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27743,19 +27833,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 528 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27765,19 +27855,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 528 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27790,25 +27880,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 527 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1489862619 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1531333864 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1489862619 +1531333864 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27818,19 +27908,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 529 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 667203991 312077835 1286937645 849389996 982274580 1204701737 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 289483333 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 1691286586 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1945604815 1632392469 1682092198 1393931310 586617651 762218386 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 1349414238 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 3447021 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27843,19 +27933,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 529 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27868,25 +27958,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 525 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1489862619 +1531333864 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27896,19 +27986,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 530 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27918,19 +28008,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 531 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27940,19 +28030,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 531 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27965,19 +28055,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 532 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -27987,19 +28077,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 533 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28009,19 +28099,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 533 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28034,25 +28124,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 532 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 312077835 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1632392469 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -312077835 +1632392469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28062,19 +28152,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 534 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 667203991 1204701737 1286937645 849389996 982274580 289483333 1265656101 643015091 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 205039926 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1945604815 762218386 1682092198 1393931310 586617651 1349414238 234698513 142666848 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 940553268 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28087,19 +28177,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 534 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28112,25 +28202,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 530 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -312077835 +1632392469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28140,19 +28230,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 535 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28162,19 +28252,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 536 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28184,19 +28274,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 536 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28209,19 +28299,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 537 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28231,19 +28321,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 538 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28253,19 +28343,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 538 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28278,25 +28368,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 537 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 667203991 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1945604815 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -667203991 +1945604815 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28306,19 +28396,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 539 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 1286937645 1204701737 643015091 849389996 982274580 289483333 1265656101 205039926 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 260308072 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1682092198 762218386 142666848 1393931310 586617651 1349414238 234698513 940553268 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 403424356 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28331,19 +28421,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 539 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28356,25 +28446,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 535 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -667203991 +1945604815 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28384,19 +28474,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 540 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28406,19 +28496,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 541 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28428,19 +28518,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 541 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28453,19 +28543,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 542 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28475,19 +28565,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 543 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28497,19 +28587,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 543 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28522,25 +28612,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 542 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1286937645 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1682092198 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1286937645 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28550,19 +28640,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 544 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 643015091 1204701737 205039926 849389996 982274580 289483333 1265656101 260308072 1413098988 583763294 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 549392959 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 142666848 762218386 940553268 1393931310 586617651 1349414238 234698513 403424356 2017354584 1435804085 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 398887205 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28575,19 +28665,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 544 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28600,25 +28690,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 540 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1286937645 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28628,19 +28718,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 545 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28650,19 +28740,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 546 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28672,19 +28762,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 546 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28697,19 +28787,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 547 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28719,19 +28809,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 548 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28741,19 +28831,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 548 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28766,25 +28856,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 547 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 643015091 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 142666848 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -643015091 +142666848 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28794,19 +28884,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 549 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 849389996 1204701737 205039926 583763294 982274580 289483333 1265656101 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 24317268 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1393931310 762218386 940553268 1435804085 586617651 1349414238 234698513 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 920011586 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28819,19 +28909,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 549 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28844,25 +28934,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 545 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -643015091 +142666848 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28872,19 +28962,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 550 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28894,19 +28984,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 551 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28916,19 +29006,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 551 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28941,19 +29031,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 552 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28963,19 +29053,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 553 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28985,19 +29075,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 553 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29010,25 +29100,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 552 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 849389996 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1393931310 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -849389996 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29038,19 +29128,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 554 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 205039926 1204701737 1265656101 583763294 982274580 289483333 24317268 260308072 1413098988 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 1281656861 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 940553268 762218386 234698513 1435804085 586617651 1349414238 920011586 403424356 2017354584 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 510113906 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29063,19 +29153,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 554 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29088,25 +29178,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 550 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -849389996 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29116,19 +29206,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 555 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29138,19 +29228,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 556 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29160,19 +29250,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 556 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29185,19 +29275,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 557 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29207,19 +29297,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 558 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29229,19 +29319,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 558 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29254,25 +29344,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 557 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 205039926 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 940553268 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -205039926 +940553268 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29282,19 +29372,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 559 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 583763294 1204701737 1265656101 1413098988 982274580 289483333 24317268 260308072 1281656861 549392959 139808524 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1922303434 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1435804085 762218386 234698513 2017354584 586617651 1349414238 920011586 403424356 510113906 398887205 1753447031 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 2137589296 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29307,19 +29397,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 559 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29332,25 +29422,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 555 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -205039926 +940553268 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29360,19 +29450,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 560 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29382,19 +29472,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 561 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29404,19 +29494,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 561 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29429,19 +29519,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 562 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29451,19 +29541,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 563 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29473,19 +29563,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 563 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29498,25 +29588,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 562 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1204701737 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 762218386 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1204701737 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29526,19 +29616,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 564 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 583763294 982274580 1265656101 1413098988 139808524 289483333 24317268 260308072 1281656861 549392959 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1711281786 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 1435804085 586617651 234698513 2017354584 1753447031 1349414238 920011586 403424356 510113906 398887205 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 1504109395 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29551,19 +29641,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 564 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29576,25 +29666,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 560 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1204701737 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29604,19 +29694,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 565 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29626,19 +29716,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 566 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29648,19 +29738,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 566 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29673,19 +29763,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 567 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29695,19 +29785,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 568 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29717,19 +29807,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 568 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29742,25 +29832,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 567 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 583763294 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1435804085 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -583763294 +1435804085 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29770,19 +29860,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 569 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1413098988 982274580 1265656101 549392959 139808524 289483333 24317268 260308072 1281656861 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 1297485547 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 2017354584 586617651 234698513 398887205 1753447031 1349414238 920011586 403424356 510113906 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1449621165 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29795,19 +29885,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 569 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29820,25 +29910,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 565 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -583763294 +1435804085 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29848,19 +29938,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 570 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29870,19 +29960,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 571 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29892,19 +29982,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 571 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29917,19 +30007,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 572 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29939,19 +30029,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 573 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29961,19 +30051,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 573 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -29986,25 +30076,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 572 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1413098988 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2017354584 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1413098988 +2017354584 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30014,19 +30104,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 574 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 549392959 982274580 1265656101 1281656861 139808524 289483333 24317268 260308072 1297485547 1711281786 1922303434 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 398887205 586617651 234698513 510113906 1753447031 1349414238 920011586 403424356 1449621165 1504109395 2137589296 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30039,19 +30129,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 574 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30064,25 +30154,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 570 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1413098988 +2017354584 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30092,19 +30182,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 575 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30114,19 +30204,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 576 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30136,19 +30226,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 576 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30161,19 +30251,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 577 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30183,19 +30273,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 578 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30205,19 +30295,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 578 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30230,25 +30320,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 577 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 982274580 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 586617651 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -982274580 +586617651 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30258,19 +30348,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 579 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 549392959 139808524 1265656101 1281656861 1922303434 289483333 24317268 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 747487025 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 398887205 1753447031 234698513 510113906 2137589296 1349414238 920011586 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 2052915500 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30283,19 +30373,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 579 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30308,25 +30398,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 575 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -982274580 +586617651 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30336,19 +30426,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 580 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30358,19 +30448,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 581 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30380,19 +30470,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 581 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30405,19 +30495,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 582 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30427,19 +30517,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 583 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30449,19 +30539,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 583 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30474,25 +30564,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 582 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 549392959 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 398887205 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -549392959 +398887205 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30502,19 +30592,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 584 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 1265656101 139808524 24317268 1281656861 1922303434 289483333 747487025 260308072 1297485547 1711281786 1822148265 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 234698513 1753447031 920011586 510113906 2137589296 1349414238 2052915500 403424356 1449621165 1504109395 509886383 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30527,19 +30617,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 584 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30552,25 +30642,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 580 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -549392959 +398887205 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30580,19 +30670,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 585 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30602,19 +30692,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 586 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30624,19 +30714,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 586 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30649,19 +30739,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 587 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30671,19 +30761,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 588 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30693,19 +30783,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 588 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30718,25 +30808,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 587 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 139808524 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1753447031 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -139808524 +1753447031 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30746,19 +30836,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 589 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1265656101 1922303434 24317268 1281656861 1822148265 289483333 747487025 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 2113584578 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 234698513 2137589296 920011586 510113906 509886383 1349414238 2052915500 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 1595953398 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30771,19 +30861,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 589 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30796,25 +30886,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 585 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -139808524 +1753447031 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30824,19 +30914,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 590 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30846,19 +30936,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 591 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30868,19 +30958,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 591 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30893,19 +30983,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 592 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30915,19 +31005,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 593 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30937,19 +31027,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 593 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -30962,25 +31052,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 592 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1265656101 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 234698513 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1265656101 +234698513 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30990,19 +31080,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 594 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 24317268 1922303434 747487025 1281656861 1822148265 289483333 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 1691286586 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 920011586 2137589296 2052915500 510113906 509886383 1349414238 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 3447021 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31015,19 +31105,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 594 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31040,25 +31130,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 590 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1265656101 +234698513 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31068,19 +31158,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 595 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31090,19 +31180,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 596 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31112,19 +31202,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 596 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31137,19 +31227,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 597 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31159,19 +31249,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 598 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31181,19 +31271,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 598 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31206,25 +31296,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 597 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1922303434 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2137589296 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1922303434 +2137589296 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31234,19 +31324,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 599 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 24317268 289483333 747487025 1281656861 1822148265 1691286586 2113584578 260308072 1297485547 1711281786 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 920011586 1349414238 2052915500 510113906 509886383 3447021 1595953398 403424356 1449621165 1504109395 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31259,19 +31349,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 599 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31284,25 +31374,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 595 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1922303434 +2137589296 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31312,19 +31402,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 600 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31334,19 +31424,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 601 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31356,19 +31446,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 601 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31381,19 +31471,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 602 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31403,19 +31493,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 603 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31425,19 +31515,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 603 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31450,25 +31540,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 602 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 24317268 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 920011586 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -24317268 +920011586 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31478,19 +31568,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 604 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 1281656861 289483333 747487025 1711281786 1822148265 1691286586 2113584578 260308072 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 510113906 1349414238 2052915500 1504109395 509886383 3447021 1595953398 403424356 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31503,19 +31593,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 604 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31528,25 +31618,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 600 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -24317268 +920011586 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31556,19 +31646,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 605 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31578,19 +31668,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 606 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31600,19 +31690,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 606 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31625,19 +31715,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 607 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31647,19 +31737,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 608 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31669,19 +31759,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 608 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31694,25 +31784,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 607 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1281656861 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 510113906 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1281656861 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31722,19 +31812,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 609 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 747487025 289483333 260308072 1711281786 1822148265 1691286586 2113584578 1766588844 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 2052915500 1349414238 403424356 1504109395 509886383 3447021 1595953398 846492085 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31747,19 +31837,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 609 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31772,25 +31862,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 605 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1281656861 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31800,19 +31890,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 610 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31822,19 +31912,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 611 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31844,19 +31934,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 611 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31869,19 +31959,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 612 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31891,19 +31981,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 613 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31913,19 +32003,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 613 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31938,25 +32028,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 612 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 747487025 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 2052915500 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -747487025 +2052915500 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31966,19 +32056,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 614 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 260308072 289483333 1766588844 1711281786 1822148265 1691286586 2113584578 857661838 1297485547 218092200 262085285 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 403424356 1349414238 846492085 1504109395 509886383 3447021 1595953398 1286783232 1449621165 1740000325 873415566 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -31991,19 +32081,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 614 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32016,25 +32106,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 610 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -747487025 +2052915500 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32044,19 +32134,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 615 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32066,19 +32156,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 616 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32088,19 +32178,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 616 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32113,19 +32203,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 617 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32135,19 +32225,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 618 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32157,19 +32247,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 618 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32182,25 +32272,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 617 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 289483333 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1349414238 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -289483333 +1349414238 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32210,19 +32300,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 619 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 260308072 1822148265 1766588844 1711281786 262085285 1691286586 2113584578 857661838 1297485547 218092200 1586276963 776813247 1852088223 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 403424356 509886383 846492085 1504109395 873415566 3447021 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 885951223 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32235,19 +32325,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 619 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32260,25 +32350,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 615 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -289483333 +1349414238 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32288,19 +32378,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 620 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32310,19 +32400,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 621 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32332,19 +32422,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 621 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32357,19 +32447,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 622 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32379,19 +32469,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 623 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32401,19 +32491,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 623 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32426,25 +32516,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 622 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1822148265 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 509886383 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1822148265 +509886383 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32454,19 +32544,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 624 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 260308072 1691286586 1766588844 1711281786 262085285 1852088223 2113584578 857661838 1297485547 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 403424356 3447021 846492085 1504109395 873415566 885951223 1595953398 1286783232 1449621165 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32479,19 +32569,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 624 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32504,25 +32594,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 620 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1822148265 +509886383 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32532,19 +32622,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 625 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32554,19 +32644,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 626 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32576,19 +32666,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 626 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32601,19 +32691,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 627 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32623,19 +32713,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 628 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32645,19 +32735,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 628 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32670,25 +32760,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 627 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 260308072 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 403424356 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -260308072 +403424356 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32698,19 +32788,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 629 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1711281786 1691286586 1766588844 1297485547 262085285 1852088223 2113584578 857661838 594900003 218092200 1586276963 776813247 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 1504109395 3447021 846492085 1449621165 873415566 885951223 1595953398 1286783232 1873653341 1740000325 99347477 1798286609 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32723,19 +32813,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 629 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32748,25 +32838,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 625 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -260308072 +403424356 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32776,19 +32866,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 630 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32798,19 +32888,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 631 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32820,19 +32910,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 631 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32845,19 +32935,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 632 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32867,19 +32957,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 633 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32889,19 +32979,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 633 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32914,25 +33004,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 632 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1691286586 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 3447021 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1691286586 +3447021 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32942,19 +33032,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 634 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1711281786 262085285 1766588844 1297485547 776813247 1852088223 2113584578 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 1504109395 873415566 846492085 1449621165 1798286609 885951223 1595953398 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32967,19 +33057,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 634 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -32992,25 +33082,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 630 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1691286586 +3447021 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33020,19 +33110,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 635 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33042,19 +33132,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 636 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33064,19 +33154,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 636 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33089,19 +33179,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 637 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33111,19 +33201,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 638 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33133,19 +33223,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 638 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33158,25 +33248,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 637 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1711281786 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1504109395 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1711281786 +1504109395 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33186,19 +33276,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 639 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 1766588844 262085285 2113584578 1297485547 776813247 1852088223 1317541148 857661838 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 846492085 873415566 1595953398 1449621165 1798286609 885951223 610984013 1286783232 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33211,19 +33301,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 639 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33236,25 +33326,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 635 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1711281786 +1504109395 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33264,19 +33354,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 640 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33286,19 +33376,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 641 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33308,19 +33398,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 641 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33333,19 +33423,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 642 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33355,19 +33445,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 643 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33377,19 +33467,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 643 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33402,25 +33492,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 642 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1766588844 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 846492085 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1766588844 +846492085 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33430,19 +33520,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 644 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 2113584578 262085285 857661838 1297485547 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 1595953398 873415566 1286783232 1449621165 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33455,19 +33545,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 644 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33480,25 +33570,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 640 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1766588844 +846492085 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33508,19 +33598,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 645 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33530,19 +33620,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 646 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33552,19 +33642,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 646 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33577,19 +33667,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 647 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33599,19 +33689,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 648 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33621,19 +33711,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 648 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33646,25 +33736,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 647 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 2113584578 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1595953398 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -2113584578 +1595953398 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33674,19 +33764,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 649 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 1297485547 262085285 857661838 218092200 776813247 1852088223 1317541148 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1449621165 873415566 1286783232 1740000325 1798286609 885951223 610984013 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33699,19 +33789,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 649 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33724,25 +33814,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 645 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -2113584578 +1595953398 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33752,19 +33842,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 650 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33774,19 +33864,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 651 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33796,19 +33886,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 651 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33821,19 +33911,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 652 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33843,19 +33933,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 653 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33865,19 +33955,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 653 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33890,25 +33980,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 652 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1297485547 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1449621165 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1297485547 +1449621165 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33918,19 +34008,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 654 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 857661838 262085285 1317541148 218092200 776813247 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1286783232 873415566 610984013 1740000325 1798286609 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33943,19 +34033,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 654 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -33968,25 +34058,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 650 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1297485547 +1449621165 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33996,19 +34086,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 655 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34018,19 +34108,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 656 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34040,19 +34130,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 656 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34065,19 +34155,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 657 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34087,19 +34177,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 658 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34109,19 +34199,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 658 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34134,25 +34224,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 657 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 262085285 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 873415566 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -262085285 +873415566 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34162,19 +34252,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 659 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 857661838 776813247 1317541148 218092200 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1286783232 1798286609 610984013 1740000325 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34187,19 +34277,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 659 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34212,25 +34302,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 655 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -262085285 +873415566 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34240,19 +34330,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 660 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34262,19 +34352,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 661 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34284,19 +34374,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 661 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34309,19 +34399,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 662 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34331,19 +34421,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 663 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34353,19 +34443,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 663 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34378,25 +34468,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 662 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 857661838 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1286783232 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -857661838 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34406,19 +34496,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 664 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 218092200 776813247 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 1740000325 1798286609 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34431,19 +34521,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 664 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34456,25 +34546,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 660 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -857661838 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34484,19 +34574,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 665 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34506,19 +34596,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 666 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34528,19 +34618,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 666 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34553,19 +34643,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 667 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34575,19 +34665,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 668 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34597,19 +34687,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 668 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34622,25 +34712,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 667 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 776813247 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1798286609 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -776813247 +1798286609 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34650,19 +34740,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 669 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 218092200 1852088223 1317541148 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1740000325 885951223 610984013 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34675,19 +34765,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 669 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34700,25 +34790,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 665 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -776813247 +1798286609 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34728,19 +34818,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 670 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34750,19 +34840,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 671 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34772,19 +34862,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 671 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34797,19 +34887,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 672 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34819,19 +34909,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 673 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34841,19 +34931,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 673 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34866,25 +34956,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 672 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 218092200 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740000325 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -218092200 +1740000325 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34894,19 +34984,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 674 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 1317541148 1852088223 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 610984013 885951223 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34919,19 +35009,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 674 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34944,25 +35034,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 670 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -218092200 +1740000325 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34972,19 +35062,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 675 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -34994,19 +35084,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 676 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35016,19 +35106,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 676 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35041,19 +35131,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 677 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35063,19 +35153,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 678 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35085,19 +35175,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 678 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35110,25 +35200,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 677 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1852088223 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 885951223 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1852088223 +885951223 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35138,19 +35228,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 679 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 1317541148 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 610984013 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35163,19 +35253,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 679 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35188,25 +35278,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 675 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1852088223 +885951223 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35216,19 +35306,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 680 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35238,19 +35328,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 681 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35260,19 +35350,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 681 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35285,19 +35375,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 682 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35307,19 +35397,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 683 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35329,19 +35419,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 683 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35354,25 +35444,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 682 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1317541148 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 610984013 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1317541148 +610984013 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35382,19 +35472,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 684 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 1586276963 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 99347477 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35407,19 +35497,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 684 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35432,25 +35522,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 680 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1317541148 +610984013 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35460,19 +35550,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 685 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35482,19 +35572,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 686 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35504,19 +35594,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 686 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35529,19 +35619,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 687 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35551,19 +35641,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 688 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35573,19 +35663,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 688 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35598,25 +35688,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 687 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1586276963 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 99347477 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1586276963 +99347477 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35626,19 +35716,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 689 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35651,19 +35741,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 689 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35676,25 +35766,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 685 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -1586276963 +99347477 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35704,19 +35794,19 @@ DataStructures.BinaryHeap.deleteMin():::ENTER this_invocation_nonce 690 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35726,19 +35816,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 691 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35748,19 +35838,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 691 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35773,19 +35863,19 @@ DataStructures.BinaryHeap.findMin():::ENTER this_invocation_nonce 692 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35795,19 +35885,19 @@ DataStructures.BinaryHeap.isEmpty():::ENTER this_invocation_nonce 693 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35817,19 +35907,19 @@ DataStructures.BinaryHeap.isEmpty():::EXIT103 this_invocation_nonce 693 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35842,25 +35932,25 @@ DataStructures.BinaryHeap.findMin():::EXIT68 this_invocation_nonce 692 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -594900003 +1873653341 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35870,19 +35960,19 @@ DataStructures.BinaryHeap.percolateDown(int):::ENTER this_invocation_nonce 694 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35895,19 +35985,19 @@ DataStructures.BinaryHeap.percolateDown(int):::EXIT149 this_invocation_nonce 694 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35920,25 +36010,25 @@ DataStructures.BinaryHeap.deleteMin():::EXIT84 this_invocation_nonce 690 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 return -594900003 +1873653341 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35948,25 +36038,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 695 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -413828078 +75457651 1 x.getClass().getName() "DataStructures.MyInteger" @@ -35976,19 +36066,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 696 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -35998,19 +36088,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 696 this -91454439 +1802598046 1 this.currentSize 0 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 594900003 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1873653341 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36023,25 +36113,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 695 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -413828078 +75457651 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36051,25 +36141,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 697 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1656457960 +362239120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36079,19 +36169,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 698 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36101,19 +36191,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 698 this -91454439 +1802598046 1 this.currentSize 1 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 594900003 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 1873653341 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36126,25 +36216,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 697 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 1656457960 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 362239120 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1656457960 +362239120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36154,25 +36244,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 699 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 1656457960 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 362239120 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -110934012 +1796488937 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36182,19 +36272,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 700 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 1656457960 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 362239120 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36204,19 +36294,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 700 this -91454439 +1802598046 1 this.currentSize 2 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 413828078 1656457960 594900003 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 75457651 362239120 1873653341 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36229,25 +36319,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 699 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 1656457960 413828078 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 362239120 75457651 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -110934012 +1796488937 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36257,25 +36347,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 701 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 1656457960 413828078 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 362239120 75457651 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -452134088 +423031029 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36285,19 +36375,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 702 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 1656457960 413828078 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 362239120 75457651 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36307,19 +36397,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 702 this -91454439 +1802598046 1 this.currentSize 3 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 1656457960 413828078 1586276963 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 362239120 75457651 99347477 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36332,25 +36422,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 701 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -452134088 +423031029 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36360,25 +36450,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 703 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1220473930 +1712669532 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36388,19 +36478,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 704 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36410,19 +36500,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 704 this -91454439 +1802598046 1 this.currentSize 4 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 594900003 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1873653341 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36435,25 +36525,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 703 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 1220473930 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1712669532 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1220473930 +1712669532 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36463,25 +36553,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 705 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 1220473930 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1712669532 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1889029013 +1225373914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36491,19 +36581,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 706 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 1220473930 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1712669532 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36513,19 +36603,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 706 this -91454439 +1802598046 1 this.currentSize 5 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 413828078 1656457960 1220473930 1586276963 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 75457651 362239120 1712669532 99347477 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36538,25 +36628,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 705 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1889029013 +1225373914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36566,25 +36656,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 707 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -512384243 +60830820 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36594,19 +36684,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 708 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36616,19 +36706,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 708 this -91454439 +1802598046 1 this.currentSize 6 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 1852088223 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 885951223 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36641,25 +36731,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 707 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -512384243 +60830820 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36669,25 +36759,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 709 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -232547631 +759156157 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36697,19 +36787,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 710 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36719,19 +36809,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 710 this -91454439 +1802598046 1 this.currentSize 7 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 594900003 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 1873653341 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36744,25 +36834,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 709 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 232547631 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 759156157 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -232547631 +759156157 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36772,25 +36862,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 711 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 232547631 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 759156157 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -7796677 +1635546341 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36800,19 +36890,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 712 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 232547631 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 759156157 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36822,19 +36912,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 712 this -91454439 +1802598046 1 this.currentSize 8 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 452134088 1889029013 1656457960 1220473930 413828078 512384243 232547631 1586276963 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 423031029 1225373914 362239120 1712669532 75457651 60830820 759156157 99347477 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36847,25 +36937,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 711 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 1220473930 413828078 512384243 232547631 1656457960 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1712669532 75457651 60830820 759156157 362239120 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -7796677 +1635546341 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36875,25 +36965,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 713 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 1220473930 413828078 512384243 232547631 1656457960 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1712669532 75457651 60830820 759156157 362239120 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -42247872 +1698156408 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36903,19 +36993,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 714 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 1220473930 413828078 512384243 232547631 1656457960 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1712669532 75457651 60830820 759156157 362239120 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36925,19 +37015,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 714 this -91454439 +1802598046 1 this.currentSize 9 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 1220473930 413828078 512384243 232547631 1656457960 594900003 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1712669532 75457651 60830820 759156157 362239120 1873653341 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -36950,25 +37040,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 713 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 42247872 413828078 512384243 232547631 1656457960 1220473930 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1698156408 75457651 60830820 759156157 362239120 1712669532 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -42247872 +1698156408 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36978,25 +37068,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 715 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 42247872 413828078 512384243 232547631 1656457960 1220473930 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1698156408 75457651 60830820 759156157 362239120 1712669532 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1390381194 +1740035246 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37006,19 +37096,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 716 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 42247872 413828078 512384243 232547631 1656457960 1220473930 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1698156408 75457651 60830820 759156157 362239120 1712669532 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37028,19 +37118,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 716 this -91454439 +1802598046 1 this.currentSize 10 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 110934012 7796677 1889029013 452134088 42247872 413828078 512384243 232547631 1656457960 1220473930 218092200 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1796488937 1635546341 1225373914 423031029 1698156408 75457651 60830820 759156157 362239120 1712669532 1740000325 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37053,25 +37143,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 715 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1390381194 +1740035246 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37081,25 +37171,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 717 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1367164551 +884457408 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37109,19 +37199,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 718 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37131,19 +37221,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 718 this -91454439 +1802598046 1 this.currentSize 11 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1586276963 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 99347477 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37156,25 +37246,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 717 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1367164551 +884457408 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37184,25 +37274,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 719 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2007069404 +913190639 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37212,19 +37302,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 720 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37234,19 +37324,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 720 this -91454439 +1802598046 1 this.currentSize 12 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 1317541148 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 610984013 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37259,25 +37349,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 719 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 2007069404 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 913190639 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2007069404 +913190639 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37287,25 +37377,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 721 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 2007069404 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 913190639 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -142345952 +1845066581 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37315,19 +37405,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 722 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 2007069404 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 913190639 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37337,19 +37427,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 722 this -91454439 +1802598046 1 this.currentSize 13 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 1889029013 452134088 7796677 413828078 512384243 232547631 1656457960 1220473930 42247872 1367164551 2007069404 1317541148 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1225373914 423031029 1635546341 75457651 60830820 759156157 362239120 1712669532 1698156408 884457408 913190639 610984013 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37362,25 +37452,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 721 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -142345952 +1845066581 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37390,25 +37480,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 723 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -111632506 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37418,19 +37508,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 724 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37440,19 +37530,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 724 this -91454439 +1802598046 1 this.currentSize 14 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 594900003 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1873653341 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37465,25 +37555,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 723 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -111632506 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37493,25 +37583,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 725 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1454304511 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37521,19 +37611,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 726 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37543,19 +37633,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 726 this -91454439 +1802598046 1 this.currentSize 15 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 232547631 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 1317541148 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 759156157 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 610984013 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37568,25 +37658,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 725 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 1454304511 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 905654280 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1454304511 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37596,25 +37686,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 727 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 1454304511 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 905654280 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1984529870 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37624,19 +37714,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 728 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 1454304511 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 905654280 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37646,19 +37736,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 728 this -91454439 +1802598046 1 this.currentSize 16 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 452134088 7796677 413828078 1889029013 1454304511 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1586276963 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 423031029 1635546341 75457651 1225373914 905654280 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 99347477 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37671,25 +37761,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 727 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1984529870 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37699,25 +37789,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 729 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1425003533 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37727,19 +37817,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 730 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37749,19 +37839,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 730 this -91454439 +1802598046 1 this.currentSize 17 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1656457960 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 857661838 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 362239120 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 1286783232 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37774,25 +37864,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 729 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1425003533 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 1419810764 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1425003533 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37802,25 +37892,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 731 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1425003533 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 1419810764 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1296747787 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37830,19 +37920,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 732 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1425003533 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 1419810764 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37852,19 +37942,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 732 this -91454439 +1802598046 1 this.currentSize 18 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1390381194 110934012 142345952 1984529870 7796677 413828078 1889029013 452134088 1425003533 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1766588844 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1740035246 1796488937 1845066581 1915058446 1635546341 75457651 1225373914 423031029 1419810764 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 846492085 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37877,25 +37967,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 731 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1296747787 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37905,25 +37995,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 733 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1776006353 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37933,19 +38023,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 734 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37955,19 +38045,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 734 this -91454439 +1802598046 1 this.currentSize 19 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1220473930 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 218092200 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1712669532 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1740000325 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -37980,25 +38070,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 733 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1776006353 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38008,25 +38098,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 735 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1463565218 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38036,19 +38126,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 736 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38058,19 +38148,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 736 this -91454439 +1802598046 1 this.currentSize 20 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 594900003 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 1873653341 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38083,25 +38173,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 735 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1463565218 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38111,25 +38201,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 737 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -862926188 +1394336709 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38139,19 +38229,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 738 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38161,19 +38251,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 738 this -91454439 +1802598046 1 this.currentSize 21 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 7796677 413828078 1889029013 452134088 1984529870 1776006353 42247872 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 1317541148 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1635546341 75457651 1225373914 423031029 1915058446 1516369375 1698156408 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 610984013 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38186,25 +38276,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 737 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -862926188 +1394336709 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38214,25 +38304,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 739 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1243373525 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38242,19 +38332,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 740 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38264,19 +38354,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 740 this -91454439 +1802598046 1 this.currentSize 22 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 262085285 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 873415566 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38289,25 +38379,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 739 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1243373525 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38317,25 +38407,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 741 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -215465718 +120960120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38345,19 +38435,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 742 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38367,19 +38457,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 742 this -91454439 +1802598046 1 this.currentSize 23 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 1586276963 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 99347477 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38392,25 +38482,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 741 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -215465718 +120960120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38420,25 +38510,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 743 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -674893584 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38448,19 +38538,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 744 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38470,19 +38560,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 744 this -91454439 +1802598046 1 this.currentSize 24 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 413828078 1889029013 452134088 1984529870 1776006353 7796677 1367164551 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1822148265 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 75457651 1225373914 423031029 1915058446 1516369375 1635546341 884457408 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 509886383 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38495,25 +38585,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 743 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -674893584 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38523,25 +38613,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 745 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2075326481 +546718765 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38551,19 +38641,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 746 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38573,19 +38663,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 746 this -91454439 +1802598046 1 this.currentSize 25 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2007069404 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 218092200 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 913190639 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 1740000325 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38598,25 +38688,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 745 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2075326481 +546718765 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38626,25 +38716,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 747 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -582771593 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38654,19 +38744,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 748 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38676,19 +38766,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 748 this -91454439 +1802598046 1 this.currentSize 26 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 1317541148 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 610984013 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38701,25 +38791,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 747 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -582771593 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38729,25 +38819,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 749 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2116733231 +592179046 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38757,19 +38847,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 750 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38779,19 +38869,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 750 this -91454439 +1802598046 1 this.currentSize 27 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 512384243 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 1586276963 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 60830820 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 99347477 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38804,25 +38894,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 749 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2116733231 +592179046 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38832,25 +38922,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 751 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -721317215 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38860,19 +38950,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 752 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38882,19 +38972,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 752 this -91454439 +1802598046 1 this.currentSize 28 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 594900003 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1873653341 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38907,25 +38997,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 751 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -721317215 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38935,25 +39025,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 753 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -633245190 +1641808846 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38963,19 +39053,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 754 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -38985,19 +39075,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 754 this -91454439 +1802598046 1 this.currentSize 29 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 142345952 110934012 862926188 674893584 1889029013 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 111632506 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 2113584578 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1845066581 1796488937 1394336709 748658608 1225373914 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1018937824 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1595953398 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39010,25 +39100,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 753 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -633245190 +1641808846 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39038,25 +39128,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 755 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -22953798 +1358444045 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39066,19 +39156,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 756 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39088,19 +39178,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 756 this -91454439 +1802598046 1 this.currentSize 30 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 1711281786 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1504109395 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39113,25 +39203,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 755 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -22953798 +1358444045 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39141,25 +39231,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 757 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1384910173 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39169,19 +39259,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 758 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39191,19 +39281,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 758 this -91454439 +1802598046 1 this.currentSize 31 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 232547631 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 857661838 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 759156157 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 1286783232 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39216,25 +39306,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 757 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 1384910173 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 750044075 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1384910173 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39244,25 +39334,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 759 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 1384910173 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 750044075 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1757511425 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39272,19 +39362,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 760 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 1384910173 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 750044075 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39294,19 +39384,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 760 this -91454439 +1802598046 1 this.currentSize 32 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 452134088 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 1384910173 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 260308072 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 423031029 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 750044075 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 403424356 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39319,25 +39409,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 759 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1757511425 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39347,25 +39437,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 761 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2004439137 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39375,19 +39465,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 762 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39397,19 +39487,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 762 this -91454439 +1802598046 1 this.currentSize 33 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 1454304511 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 2113584578 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 905654280 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 1595953398 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39422,25 +39512,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 761 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2004439137 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39450,25 +39540,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 763 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1032605070 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39478,19 +39568,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 764 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39500,19 +39590,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 764 this -91454439 +1802598046 1 this.currentSize 34 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1766588844 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 846492085 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39525,25 +39615,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 763 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1032605070 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39553,25 +39643,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 765 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1178060083 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39581,19 +39671,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 766 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39603,19 +39693,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 766 this -91454439 +1802598046 1 this.currentSize 35 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1656457960 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 857661838 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 362239120 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 1286783232 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39628,25 +39718,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 765 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1178060083 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39656,25 +39746,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 767 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2004073288 +653687670 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39684,19 +39774,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 768 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39706,19 +39796,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 768 this -91454439 +1802598046 1 this.currentSize 36 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 260308072 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 403424356 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39731,25 +39821,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 767 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2004073288 +653687670 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39759,25 +39849,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 769 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1326231868 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39787,19 +39877,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 770 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39809,19 +39899,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 770 this -91454439 +1802598046 1 this.currentSize 37 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1390381194 633245190 110934012 862926188 674893584 142345952 1757511425 1984529870 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1425003533 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 2113584578 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 1740035246 1641808846 1796488937 1394336709 748658608 1845066581 331844619 1915058446 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1419810764 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1595953398 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39834,25 +39924,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 769 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1326231868 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39862,25 +39952,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 771 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1246233263 +2136344592 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39890,19 +39980,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 772 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39912,19 +40002,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 772 this -91454439 +1802598046 1 this.currentSize 38 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 982274580 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 586617651 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -39937,25 +40027,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 771 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1246233263 +2136344592 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39965,25 +40055,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 773 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1034442050 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39993,19 +40083,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 774 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40015,19 +40105,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 774 this -91454439 +1802598046 1 this.currentSize 39 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1220473930 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 776813247 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1712669532 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1798286609 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40040,25 +40130,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 773 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1034442050 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 110992469 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1034442050 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40068,25 +40158,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 775 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1034442050 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 110992469 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1987411885 +329611835 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40096,19 +40186,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 776 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1034442050 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 110992469 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40118,19 +40208,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 776 this -91454439 +1802598046 1 this.currentSize 40 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1776006353 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1034442050 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 857661838 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 1516369375 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 110992469 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 1286783232 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40143,25 +40233,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 775 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1987411885 +329611835 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40171,25 +40261,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 777 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -470905757 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40199,19 +40289,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 778 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40221,19 +40311,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 778 this -91454439 +1802598046 1 this.currentSize 41 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 1463565218 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1317541148 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 55909012 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 610984013 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40246,25 +40336,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 777 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -470905757 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40274,25 +40364,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 779 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1035818704 +863831416 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40302,19 +40392,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 780 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40324,19 +40414,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 780 this -91454439 +1802598046 1 this.currentSize 42 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1281656861 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 510113906 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40349,25 +40439,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 779 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1035818704 +863831416 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40377,25 +40467,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 781 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1502515546 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40405,19 +40495,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 782 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40427,19 +40517,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 782 this -91454439 +1802598046 1 this.currentSize 43 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 7796677 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 42247872 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 260308072 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1635546341 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1698156408 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 403424356 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40452,25 +40542,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 781 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1502515546 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40480,25 +40570,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 783 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -518576549 +1638172114 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40508,19 +40598,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 784 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40530,19 +40620,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 784 this -91454439 +1802598046 1 this.currentSize 44 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 776813247 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1798286609 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40555,25 +40645,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 783 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -518576549 +1638172114 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40583,25 +40673,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 785 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1227419517 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40611,19 +40701,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 786 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40633,19 +40723,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 786 this -91454439 +1802598046 1 this.currentSize 45 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1296747787 1326231868 633245190 1390381194 862926188 674893584 142345952 1757511425 110934012 1987411885 1502515546 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1243373525 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1852088223 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 922151033 356473385 1641808846 1740035246 1394336709 748658608 1845066581 331844619 1796488937 329611835 1508395126 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1387228415 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 885951223 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40658,25 +40748,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 785 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1227419517 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40686,25 +40776,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 787 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -511909137 +1651945012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40714,19 +40804,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 788 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40736,19 +40826,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 788 this -91454439 +1802598046 1 this.currentSize 46 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 857661838 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1286783232 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40761,25 +40851,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 787 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -511909137 +1651945012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40789,25 +40879,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 789 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -837375677 +2034688500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40817,19 +40907,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 790 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40839,19 +40929,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 790 this -91454439 +1802598046 1 this.currentSize 47 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 215465718 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 1852088223 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 120960120 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 885951223 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40864,25 +40954,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 789 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 837375677 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 2034688500 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -837375677 +2034688500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40892,25 +40982,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 791 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 837375677 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 2034688500 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1312664548 +1007251739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40920,19 +41010,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 792 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 837375677 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 2034688500 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40942,19 +41032,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 792 this -91454439 +1802598046 1 this.currentSize 48 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 674893584 142345952 1757511425 110934012 1987411885 862926188 413828078 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 837375677 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 594900003 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 748658608 1845066581 331844619 1796488937 329611835 1394336709 75457651 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 2034688500 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 1873653341 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -40967,25 +41057,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 791 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1312664548 +1007251739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40995,25 +41085,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 793 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -853552605 +1556595366 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41023,19 +41113,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 794 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41045,19 +41135,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 794 this -91454439 +1802598046 1 this.currentSize 49 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 218092200 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1740000325 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41070,25 +41160,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 793 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -853552605 +1556595366 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41098,25 +41188,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 795 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -467870275 +194494468 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41126,19 +41216,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 796 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41148,19 +41238,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 796 this -91454439 +1802598046 1 this.currentSize 50 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 1691286586 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 3447021 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41173,25 +41263,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 795 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -467870275 +194494468 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41201,25 +41291,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 797 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1558080258 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41229,19 +41319,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 798 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41251,19 +41341,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 798 this -91454439 +1802598046 1 this.currentSize 51 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 2075326481 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2007069404 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 24317268 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 546718765 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 913190639 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 920011586 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41276,25 +41366,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 797 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2075326481 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 546718765 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1558080258 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41304,25 +41394,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 799 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2075326481 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 546718765 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -239304688 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41332,19 +41422,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 800 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2075326481 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 546718765 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41354,19 +41444,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 800 this -91454439 +1802598046 1 this.currentSize 52 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 2075326481 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 1489862619 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 546718765 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 1531333864 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41379,25 +41469,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 799 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -239304688 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41407,25 +41497,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 801 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1904504032 +1347870667 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41435,19 +41525,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 802 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41457,19 +41547,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 802 this -91454439 +1802598046 1 this.currentSize 53 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 582771593 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 594900003 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 167185492 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 1873653341 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41482,25 +41572,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 801 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 1904504032 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1347870667 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1904504032 +1347870667 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41510,25 +41600,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 803 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 1904504032 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1347870667 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -755507289 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41538,19 +41628,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 804 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 1904504032 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1347870667 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41560,19 +41650,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 804 this -91454439 +1802598046 1 this.currentSize 54 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 1904504032 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1586276963 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1347870667 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 99347477 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41585,25 +41675,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 803 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -755507289 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41613,25 +41703,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 805 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1887685159 +644460953 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41641,19 +41731,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 806 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41663,19 +41753,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 806 this -91454439 +1802598046 1 this.currentSize 55 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 205039926 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 940553268 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41688,25 +41778,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 805 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1887685159 +644460953 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41716,25 +41806,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 807 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1548550182 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41744,19 +41834,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 808 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41766,19 +41856,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 808 this -91454439 +1802598046 1 this.currentSize 56 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 633245190 1390381194 1326231868 1312664548 142345952 1757511425 110934012 1987411885 862926188 674893584 1558080258 2116733231 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 512384243 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 289483333 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 1641808846 1740035246 356473385 1007251739 1845066581 331844619 1796488937 329611835 1394336709 748658608 1167116739 592179046 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 60830820 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 1349414238 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41791,25 +41881,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 807 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1548550182 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41819,25 +41909,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 809 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1128590881 +1166726978 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41847,19 +41937,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 810 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41869,19 +41959,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 810 this -91454439 +1802598046 1 this.currentSize 57 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 721317215 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 1413098988 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1937348256 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 2017354584 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41894,25 +41984,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 809 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1128590881 +1166726978 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41922,25 +42012,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 811 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1651366663 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41950,19 +42040,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 812 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41972,19 +42062,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 812 this -91454439 +1802598046 1 this.currentSize 58 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 747487025 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 2052915500 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -41997,25 +42087,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 811 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1651366663 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42025,25 +42115,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 813 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -440851213 +1856056345 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42053,19 +42143,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 814 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42075,19 +42165,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 814 this -91454439 +1802598046 1 this.currentSize 59 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 1889029013 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 111632506 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 643015091 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1225373914 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1018937824 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 142666848 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42100,25 +42190,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 813 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -440851213 +1856056345 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42128,25 +42218,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 815 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -567754741 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42156,19 +42246,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 816 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42178,19 +42268,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 816 this -91454439 +1802598046 1 this.currentSize 60 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 2006212742 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 127618319 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42203,25 +42293,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 815 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -567754741 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42231,25 +42321,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 817 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -984088366 +2032251042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42259,19 +42349,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 818 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42281,19 +42371,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 818 this -91454439 +1802598046 1 this.currentSize 61 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 776813247 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 1798286609 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42306,25 +42396,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 817 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -984088366 +2032251042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42334,25 +42424,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 819 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1801601815 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42362,19 +42452,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 820 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42384,19 +42474,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 820 this -91454439 +1802598046 1 this.currentSize 62 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 22953798 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 1317541148 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 1358444045 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 610984013 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42409,25 +42499,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 819 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1801601815 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42437,25 +42527,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 821 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2282005 +1725097945 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42465,19 +42555,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 822 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42487,19 +42577,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 822 this -91454439 +1802598046 1 this.currentSize 63 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 232547631 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 1852088223 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 759156157 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 885951223 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42512,25 +42602,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 821 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 2282005 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 1725097945 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2282005 +1725097945 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42540,25 +42630,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 823 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 2282005 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 1725097945 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1846436036 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42568,19 +42658,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 824 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 2282005 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 1725097945 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42590,19 +42680,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 824 this -91454439 +1802598046 1 this.currentSize 64 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1390381194 1326231868 1312664548 633245190 1757511425 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 452134088 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 2282005 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 1822148265 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 1740035246 356473385 1007251739 1641808846 331844619 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 423031029 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 1725097945 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 509886383 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42615,25 +42705,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 823 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1846436036 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42643,25 +42733,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 825 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1911757902 +1781256139 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42671,19 +42761,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 826 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42693,19 +42783,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 826 this -91454439 +1802598046 1 this.currentSize 65 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1384910173 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 289483333 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 750044075 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 1349414238 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42718,25 +42808,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 825 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1911757902 +1781256139 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42746,25 +42836,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 827 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -264732500 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42774,19 +42864,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 828 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42796,19 +42886,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 828 this -91454439 +1802598046 1 this.currentSize 66 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 1265656101 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 234698513 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42821,25 +42911,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 827 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -264732500 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42849,25 +42939,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 829 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1920494563 +1014328909 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42877,19 +42967,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 830 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42899,19 +42989,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 830 this -91454439 +1802598046 1 this.currentSize 67 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 2004439137 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1454304511 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 262085285 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 310656974 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 905654280 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 873415566 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -42924,25 +43014,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 829 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 2004439137 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 310656974 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1920494563 +1014328909 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42952,25 +43042,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 831 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 2004439137 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 310656974 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1072905931 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42980,19 +43070,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 832 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 2004439137 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 310656974 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43002,19 +43092,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 832 this -91454439 +1802598046 1 this.currentSize 68 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 2004439137 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 1297485547 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 310656974 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 1449621165 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43027,25 +43117,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 831 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1072905931 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43055,25 +43145,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 833 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2057282105 +1223685984 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43083,19 +43173,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 834 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43105,19 +43195,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 834 this -91454439 +1802598046 1 this.currentSize 69 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 1032605070 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 218092200 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 64830413 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 1740000325 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43130,25 +43220,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 833 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 2057282105 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1223685984 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -2057282105 +1223685984 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43158,25 +43248,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 835 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 2057282105 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1223685984 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -106138388 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43186,19 +43276,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 836 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 2057282105 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1223685984 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43208,19 +43298,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 836 this -91454439 +1802598046 1 this.currentSize 70 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 2057282105 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2113584578 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1223685984 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1595953398 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43233,25 +43323,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 835 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -106138388 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43261,25 +43351,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 837 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1456460106 +1463757745 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43289,19 +43379,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 838 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43311,19 +43401,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 838 this -91454439 +1802598046 1 this.currentSize 71 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1656457960 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 583763294 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 362239120 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 1435804085 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43336,25 +43426,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 837 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1456460106 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 1463757745 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1456460106 +1463757745 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43364,25 +43454,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 839 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1456460106 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 1463757745 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1706393036 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43392,19 +43482,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 840 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1456460106 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 1463757745 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43414,19 +43504,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 840 this -91454439 +1802598046 1 this.currentSize 72 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1227419517 1296747787 1548550182 1846436036 1326231868 1312664548 633245190 1390381194 110934012 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 1178060083 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1456460106 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 952682642 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 972765878 922151033 591723622 519821334 356473385 1007251739 1641808846 1740035246 1796488937 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 159259014 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 1463757745 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1684106402 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43439,25 +43529,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 839 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1706393036 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43467,25 +43557,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 841 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1851134014 +1837760739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43495,19 +43585,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 842 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43517,19 +43607,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 842 this -91454439 +1802598046 1 this.currentSize 73 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 2004073288 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 260308072 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 653687670 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 403424356 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43542,25 +43632,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 841 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1851134014 +1837760739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43570,25 +43660,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 843 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1413779209 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43598,19 +43688,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 844 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43620,19 +43710,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 844 this -91454439 +1802598046 1 this.currentSize 74 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413098988 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 2017354584 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43645,25 +43735,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 843 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1413779209 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43673,25 +43763,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 845 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1628095255 +2059904228 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43701,19 +43791,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 846 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43723,19 +43813,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 846 this -91454439 +1802598046 1 this.currentSize 75 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1984529870 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1425003533 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1489862619 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 1915058446 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1419810764 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1531333864 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43748,25 +43838,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 845 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1628095255 +2059904228 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43776,25 +43866,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 847 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -160320711 +1836643189 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43804,19 +43894,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 848 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43826,19 +43916,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 848 this -91454439 +1802598046 1 this.currentSize 76 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 139808524 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1753447031 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43851,25 +43941,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 847 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -160320711 +1836643189 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43879,25 +43969,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 849 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1565696439 +1355316001 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43907,19 +43997,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 850 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43929,19 +44019,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 850 this -91454439 +1802598046 1 this.currentSize 77 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 260308072 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 403424356 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -43954,25 +44044,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 849 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1565696439 +1355316001 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43982,25 +44072,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 851 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1542923582 +1597462040 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44010,19 +44100,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 852 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44032,19 +44122,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 852 this -91454439 +1802598046 1 this.currentSize 78 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1246233263 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1922303434 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 2136344592 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2137589296 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44057,25 +44147,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 851 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1542923582 +1597462040 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44085,25 +44175,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 853 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1051605149 +403716510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44113,19 +44203,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 854 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44135,19 +44225,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 854 this -91454439 +1802598046 1 this.currentSize 79 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1220473930 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1822148265 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 1712669532 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 509886383 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44160,25 +44250,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 853 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1051605149 +403716510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44188,25 +44278,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 855 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -537324433 +853119666 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44216,19 +44306,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 856 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44238,19 +44328,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 856 this -91454439 +1802598046 1 this.currentSize 80 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 1317541148 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 610984013 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44263,25 +44353,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 855 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -537324433 +853119666 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44291,25 +44381,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 857 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -643009796 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44319,19 +44409,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 858 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44341,19 +44431,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 858 this -91454439 +1802598046 1 this.currentSize 81 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 1776006353 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1034442050 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1922303434 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 1516369375 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 110992469 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 2137589296 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44366,25 +44456,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 857 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -643009796 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44394,25 +44484,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 859 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -927929668 +1144648478 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44422,19 +44512,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 860 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44444,19 +44534,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 860 this -91454439 +1802598046 1 this.currentSize 82 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 1711281786 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1504109395 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44469,25 +44559,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 859 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -927929668 +1144648478 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44497,25 +44587,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 861 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -687685562 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44525,19 +44615,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 862 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44547,19 +44637,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 862 this -91454439 +1802598046 1 this.currentSize 83 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 1987411885 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 470905757 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 1463565218 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 549392959 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 329611835 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 2091156596 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 55909012 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 398887205 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44572,25 +44662,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 861 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 470905757 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 2091156596 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -687685562 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44600,25 +44690,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 863 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 470905757 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 2091156596 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -174252380 +600746945 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44628,19 +44718,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 864 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 470905757 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 2091156596 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44650,19 +44740,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 864 this -91454439 +1802598046 1 this.currentSize 84 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 470905757 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 1711281786 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 2091156596 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 1504109395 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44675,25 +44765,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 863 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -174252380 +600746945 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44703,25 +44793,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 865 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1639539799 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44731,19 +44821,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 866 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44753,19 +44843,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 866 this -91454439 +1802598046 1 this.currentSize 85 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1035818704 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1297485547 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 863831416 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 1449621165 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44778,25 +44868,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 865 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1639539799 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1566502717 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1639539799 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44806,25 +44896,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 867 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1639539799 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1566502717 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1382727136 +1458849419 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44834,19 +44924,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 868 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1639539799 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1566502717 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44856,19 +44946,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 868 this -91454439 +1802598046 1 this.currentSize 86 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1639539799 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1711281786 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1566502717 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1504109395 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44881,25 +44971,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 867 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1382727136 +1458849419 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44909,25 +44999,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 869 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1574430565 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44937,19 +45027,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 870 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44959,19 +45049,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 870 this -91454439 +1802598046 1 this.currentSize 87 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 42247872 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 643015091 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1698156408 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 142666848 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -44984,25 +45074,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 869 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1574430565 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45012,25 +45102,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 871 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -161007621 +981661423 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45040,19 +45130,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 872 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45062,19 +45152,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 872 this -91454439 +1802598046 1 this.currentSize 88 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 857661838 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 1286783232 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45087,25 +45177,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 871 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -161007621 +981661423 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45115,25 +45205,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 873 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -225690927 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45143,19 +45233,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 874 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45165,19 +45255,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 874 this -91454439 +1802598046 1 this.currentSize 89 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 7796677 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 518576549 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 227990 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 1635546341 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1638172114 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 357863579 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45190,25 +45280,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 873 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -225690927 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45218,25 +45308,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 875 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -731289487 +1681595665 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45246,19 +45336,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 876 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45268,19 +45358,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 876 this -91454439 +1802598046 1 this.currentSize 90 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 312077835 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1632392469 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45293,25 +45383,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 875 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -731289487 +1681595665 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45321,25 +45411,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 877 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -733496228 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45349,19 +45439,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 878 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45371,19 +45461,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 878 this -91454439 +1802598046 1 this.currentSize 91 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 1326231868 1312664548 633245190 1390381194 1846436036 687685562 862926188 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 1502515546 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1243373525 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1392190493 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 356473385 1007251739 1641808846 1740035246 519821334 1576861390 1394336709 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1508395126 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1387228415 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1025799482 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45396,25 +45486,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 877 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -733496228 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45424,25 +45514,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 879 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1314970216 +57494364 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45452,19 +45542,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 880 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45474,19 +45564,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 880 this -91454439 +1802598046 1 this.currentSize 92 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 139808524 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 1753447031 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45499,25 +45589,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 879 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1314970216 +57494364 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45527,25 +45617,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 881 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -950209035 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45555,19 +45645,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 882 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45577,19 +45667,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 882 this -91454439 +1802598046 1 this.currentSize 93 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 139808524 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1753447031 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45602,25 +45692,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 881 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -950209035 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45630,25 +45720,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 883 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1474852153 +1374677625 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45658,19 +45748,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 884 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45680,19 +45770,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 884 this -91454439 +1802598046 1 this.currentSize 94 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 511909137 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 982274580 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1651945012 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 586617651 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45705,25 +45795,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 883 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1474852153 +1374677625 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45733,25 +45823,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 885 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1583881797 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45761,19 +45851,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 886 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45783,19 +45873,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 886 this -91454439 +1802598046 1 this.currentSize 95 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 215465718 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 1711281786 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 120960120 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 1504109395 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45808,25 +45898,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 885 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1583881797 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45836,25 +45926,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 887 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -94073967 +963269035 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45864,19 +45954,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 888 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45886,19 +45976,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 888 this -91454439 +1802598046 1 this.currentSize 96 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 1766588844 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 846492085 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45911,25 +46001,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 887 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -94073967 +963269035 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45939,25 +46029,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 889 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -553199177 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45967,19 +46057,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 890 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -45989,19 +46079,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 890 this -91454439 +1802598046 1 this.currentSize 97 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 413828078 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 837375677 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 982274580 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 75457651 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 2034688500 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 586617651 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -46014,25 +46104,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 889 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -553199177 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46042,25 +46132,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 891 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1161859976 +2140832232 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46070,19 +46160,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 892 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -46092,19 +46182,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 892 this -91454439 +1802598046 1 this.currentSize 98 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 210781873 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 152005629 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -46117,25 +46207,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 891 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -1161859976 +2140832232 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46145,25 +46235,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 893 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] 1 x -311814461 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46173,19 +46263,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 894 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -46195,19 +46285,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 894 this -91454439 +1802598046 1 this.currentSize 99 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 1706393036 1227419517 1548550182 1296747787 733496228 1312664548 633245190 1390381194 1846436036 687685562 1326231868 674893584 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 1367164551 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 853552605 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 null] +[null 1525262377 972765878 591723622 922151033 787867107 1007251739 1641808846 1740035246 519821334 1576861390 356473385 748658608 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 884457408 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 1556595366 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 null] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -46220,25 +46310,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT58 this_invocation_nonce 893 this -91454439 +1802598046 1 this.currentSize 100 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 311814461 1227419517 1706393036 1296747787 733496228 1548550182 633245190 1390381194 1846436036 687685562 1326231868 1312664548 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 674893584 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 1367164551 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 853552605] +[null 157456214 972765878 1525262377 922151033 787867107 591723622 1641808846 1740035246 519821334 1576861390 356473385 1007251739 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 748658608 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 884457408 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 1556595366] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] 1 x -311814461 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46248,25 +46338,25 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 895 this -91454439 +1802598046 1 this.currentSize 100 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 311814461 1227419517 1706393036 1296747787 733496228 1548550182 633245190 1390381194 1846436036 687685562 1326231868 1312664548 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 674893584 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 1367164551 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 853552605] +[null 157456214 972765878 1525262377 922151033 787867107 591723622 1641808846 1740035246 519821334 1576861390 356473385 1007251739 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 748658608 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 884457408 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 1556595366] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] 1 x -805547347 +1659791576 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46276,19 +46366,19 @@ DataStructures.BinaryHeap.isFull():::ENTER this_invocation_nonce 896 this -91454439 +1802598046 1 this.currentSize 100 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 311814461 1227419517 1706393036 1296747787 733496228 1548550182 633245190 1390381194 1846436036 687685562 1326231868 1312664548 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 674893584 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 1367164551 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 853552605] +[null 157456214 972765878 1525262377 922151033 787867107 591723622 1641808846 1740035246 519821334 1576861390 356473385 1007251739 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 748658608 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 884457408 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 1556595366] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -46298,19 +46388,19 @@ DataStructures.BinaryHeap.isFull():::EXIT112 this_invocation_nonce 896 this -91454439 +1802598046 1 this.currentSize 100 1 this.array -1750434854 +659748578 1 this.array.getClass().getName() "DataStructures.Comparable[]" 1 this.array[..] -[null 311814461 1227419517 1706393036 1296747787 733496228 1548550182 633245190 1390381194 1846436036 687685562 1326231868 1312664548 1558080258 142345952 440851213 1757511425 1920494563 110934012 1628095255 643009796 1987411885 225690927 862926188 553199177 674893584 239304688 755507289 2116733231 1128590881 1889029013 1801601815 452134088 1911757902 1072905931 106138388 1178060083 1851134014 1984529870 1542923582 1051605149 1776006353 174252380 1382727136 1574430565 7796677 1502515546 1474852153 1583881797 413828078 1367164551 467870275 2007069404 2075326481 582771593 1904504032 1887685159 512384243 721317215 1651366663 111632506 567754741 984088366 22953798 232547631 2282005 1384910173 264732500 1454304511 2004439137 1032605070 2057282105 1656457960 1456460106 2004073288 1413779209 1425003533 160320711 1565696439 1246233263 1220473930 537324433 1034442050 927929668 1463565218 470905757 1035818704 1639539799 42247872 161007621 518576549 731289487 1243373525 1314970216 950209035 511909137 215465718 94073967 837375677 1161859976 853552605] +[null 157456214 972765878 1525262377 922151033 787867107 591723622 1641808846 1740035246 519821334 1576861390 356473385 1007251739 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 748658608 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 884457408 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 1556595366] 1 this.array[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -46319,11 +46409,45 @@ return true 1 +DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXCEPTION51 +this_invocation_nonce +895 +this +1802598046 +1 +this.currentSize +100 +1 +this.array +659748578 +1 +this.array.getClass().getName() +"DataStructures.Comparable[]" +1 +this.array[..] +[null 157456214 972765878 1525262377 922151033 787867107 591723622 1641808846 1740035246 519821334 1576861390 356473385 1007251739 1167116739 1845066581 1856056345 331844619 1014328909 1796488937 2059904228 559670971 329611835 269468037 1394336709 1359484306 748658608 853993923 1702146597 592179046 1166726978 1225373914 24433162 423031029 1781256139 2081303229 1076835071 159259014 1837760739 1915058446 1597462040 403716510 1516369375 600746945 1458849419 1824835605 1635546341 1508395126 1374677625 1345636186 75457651 884457408 194494468 913190639 546718765 167185492 1347870667 644460953 60830820 1937348256 95395916 1018937824 1778535015 2032251042 1358444045 759156157 1725097945 750044075 1307096070 905654280 310656974 64830413 1223685984 362239120 1463757745 653687670 1418428263 1419810764 1836643189 1355316001 2136344592 1712669532 853119666 110992469 1144648478 55909012 2091156596 863831416 1566502717 1698156408 981661423 1638172114 1681595665 1387228415 57494364 1828757853 1651945012 120960120 963269035 2034688500 2140832232 1556595366] +1 +this.array[..].getClass().getName() +[null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] +1 +x +1659791576 +1 +x.getClass().getName() +"DataStructures.MyInteger" +1 +exception +1935365522 +1 +exception.getClass().getName() +"DataStructures.Overflow" +1 + DataStructures.BinaryHeap.main(java.lang.String[]):::EXIT178 this_invocation_nonce 0 args -732656791 +1809787067 1 args.getClass().getName() "java.lang.String[]" diff --git a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-daikon.goal b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-daikon.goal index 40e00db5b2..49fa49c1fd 100644 --- a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-daikon.goal +++ b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-daikon.goal @@ -116,11 +116,30 @@ return in this.array[0..this.currentSize] DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER x != null x.getClass().getName() == DataStructures.MyInteger.class -this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] == [null] -this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] elements == null -DataStructures.BinaryHeap.DEFAULT_CAPACITY > this.currentSize this.array.getClass().getName() != x.getClass().getName() =========================================================================== +DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXCEPTION +this == orig(this) +DataStructures.BinaryHeap.DEFAULT_CAPACITY == this.currentSize +DataStructures.BinaryHeap.DEFAULT_CAPACITY == orig(this.currentSize) +this.array == orig(this.array) +this.array.getClass().getName() == orig(this.array.getClass().getName()) +this.array[] == orig(this.array[]) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.array[] has only one value, of length 101 +this.array[].getClass().getName() == [null, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger, DataStructures.MyInteger] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(x) has only one value +this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] has only one value +this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] contains no nulls and has only one value, of length 1 +this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] elements has only one value +this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] has only one value, of length 100 +orig(x.getClass().getName()) in this.array[].getClass().getName() +=========================================================================== +DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXCEPTION51 +=========================================================================== DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT this.array == orig(this.array) this.array.getClass().getName() == orig(this.array.getClass().getName()) @@ -129,7 +148,10 @@ this.array[this.currentSize-1] == orig(this.array[post(this.currentSize)-1]) this.array[this.currentSize-1] == this.array[orig(this.currentSize)] this.array[this.currentSize-1] == orig(this.array[this.currentSize]) this.array[this.currentSize+1..] == orig(this.array[post(this.currentSize)+1..]) +orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)..]) == [null] +orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)..]) elements == null this.array[this.currentSize] != null +DataStructures.BinaryHeap.DEFAULT_CAPACITY > orig(this.currentSize) this.currentSize - orig(this.currentSize) - 1 == 0 this.array.getClass().getName() != orig(x.getClass().getName()) orig(x) in this.array[] diff --git a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-jml.goal b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-jml.goal index 68cc4c3b4c..4a5a513be7 100644 --- a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-jml.goal +++ b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-jml.goal @@ -129,11 +129,32 @@ DataStructures.BinaryHeap.insert(DataStructures.Comparable):::ENTER Variables: this DataStructures.BinaryHeap.DEFAULT_CAPACITY this.currentSize this.array this.array.getClass().getName() this.array[] this.array[].getClass().getName() x x.getClass().getName() size(this.array[]) size(this.array[])-1 this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY+1..] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] this.array[this.currentSize] this.array[this.currentSize-1] this.array[this.currentSize..] this.array[this.currentSize+1..] this.array[0..this.currentSize] this.array[0..this.currentSize-1] x != null x.getClass().getName() == DataStructures.MyInteger.class.getName() -("oneOf.java.jpp: SEQUENCE unimplemented" != null) -daikon.Quant.eltsEqual(daikon.Quant.slice(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY, daikon.Quant.size(this.array)), null) -DataStructures.BinaryHeap.DEFAULT_CAPACITY > this.currentSize this.array.getClass().getName() != x.getClass().getName() =========================================================================== +DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXCEPTION + Variables: this DataStructures.BinaryHeap.DEFAULT_CAPACITY this.currentSize this.array this.array.getClass().getName() this.array[] this.array[].getClass().getName() x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.currentSize) orig(this.array) orig(this.array.getClass().getName()) orig(this.array[]) orig(this.array[].getClass().getName()) orig(x) orig(x.getClass().getName()) size(this.array[]) size(this.array[])-1 orig(size(this.array[])) orig(size(this.array[]))-1 this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY+1..] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)-1]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)..]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)+1..]) orig(this.array[0..post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)]) orig(this.array[0..post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)-1]) this.array[this.currentSize] this.array[this.currentSize-1] this.array[this.currentSize..] this.array[this.currentSize+1..] this.array[0..this.currentSize] this.array[0..this.currentSize-1] orig(this.array[post(this.currentSize)]) orig(this.array[post(this.currentSize)-1]) orig(this.array[post(this.currentSize)..]) orig(this.array[post(this.currentSize)+1..]) orig(this.array[0..post(this.currentSize)]) orig(this.array[0..post(this.currentSize)-1]) this.array[orig(this.currentSize)] this.array[orig(this.currentSize)-1] this.array[orig(this.currentSize)..] this.array[orig(this.currentSize)+1..] this.array[0..orig(this.currentSize)] this.array[0..orig(this.currentSize)-1] orig(this.array[this.currentSize]) orig(this.array[this.currentSize-1]) orig(this.array[this.currentSize..]) orig(this.array[this.currentSize+1..]) orig(this.array[0..this.currentSize]) orig(this.array[0..this.currentSize-1]) +this == \old(this) +DataStructures.BinaryHeap.DEFAULT_CAPACITY == this.currentSize +DataStructures.BinaryHeap.DEFAULT_CAPACITY == \old(this.currentSize) +this.array == \old(this.array) +this.array.getClass().getName() == \old(this.array.getClass().getName()) +daikon.Quant.pairwiseEqual(this.array, \old(this.array)) +x == \old(x) +x.getClass().getName() == \old(x.getClass().getName()) +("oneOf.java.jpp: SEQUENCE unimplemented" != null) +daikon.Quant.pairwiseEqual(daikon.Quant.typeArray(this.array), new String[] { null, "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger", "DataStructures.MyInteger" }) +Exception != null +Exception.getClass().getName() == DataStructures.Overflow.class.getName() +\old(x) != null +daikon.Quant.getElement_Object(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY-1) != null +("oneOf.java.jpp: SEQUENCE unimplemented" != null) +daikon.Quant.eltsNotEqual(daikon.Quant.slice(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY, daikon.Quant.size(this.array)), null) +("oneOf.java.jpp: SEQUENCE unimplemented" != null) +daikon.Quant.memberOf(\old(x.getClass().getName()) , daikon.Quant.typeArray(this.array) ) +=========================================================================== +DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXCEPTION51 + Variables: this DataStructures.BinaryHeap.DEFAULT_CAPACITY this.currentSize this.array this.array.getClass().getName() this.array[] this.array[].getClass().getName() x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.currentSize) orig(this.array) orig(this.array.getClass().getName()) orig(this.array[]) orig(this.array[].getClass().getName()) orig(x) orig(x.getClass().getName()) size(this.array[]) size(this.array[])-1 orig(size(this.array[])) orig(size(this.array[]))-1 this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY+1..] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)-1]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)..]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)+1..]) orig(this.array[0..post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)]) orig(this.array[0..post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)-1]) this.array[this.currentSize] this.array[this.currentSize-1] this.array[this.currentSize..] this.array[this.currentSize+1..] this.array[0..this.currentSize] this.array[0..this.currentSize-1] orig(this.array[post(this.currentSize)]) orig(this.array[post(this.currentSize)-1]) orig(this.array[post(this.currentSize)..]) orig(this.array[post(this.currentSize)+1..]) orig(this.array[0..post(this.currentSize)]) orig(this.array[0..post(this.currentSize)-1]) this.array[orig(this.currentSize)] this.array[orig(this.currentSize)-1] this.array[orig(this.currentSize)..] this.array[orig(this.currentSize)+1..] this.array[0..orig(this.currentSize)] this.array[0..orig(this.currentSize)-1] orig(this.array[this.currentSize]) orig(this.array[this.currentSize-1]) orig(this.array[this.currentSize..]) orig(this.array[this.currentSize+1..]) orig(this.array[0..this.currentSize]) orig(this.array[0..this.currentSize-1]) +=========================================================================== DataStructures.BinaryHeap.insert(DataStructures.Comparable):::EXIT Variables: this DataStructures.BinaryHeap.DEFAULT_CAPACITY this.currentSize this.array this.array.getClass().getName() this.array[] this.array[].getClass().getName() x x.getClass().getName() orig(this) orig(this.currentSize) orig(this.array) orig(this.array.getClass().getName()) orig(this.array[]) orig(this.array[].getClass().getName()) orig(x) orig(x.getClass().getName()) size(this.array[]) size(this.array[])-1 orig(size(this.array[])) orig(size(this.array[]))-1 this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY..] this.array[DataStructures.BinaryHeap.DEFAULT_CAPACITY+1..] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY] this.array[0..DataStructures.BinaryHeap.DEFAULT_CAPACITY-1] orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)-1]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)..]) orig(this.array[post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)+1..]) orig(this.array[0..post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)]) orig(this.array[0..post(DataStructures.BinaryHeap.DEFAULT_CAPACITY)-1]) this.array[this.currentSize] this.array[this.currentSize-1] this.array[this.currentSize..] this.array[this.currentSize+1..] this.array[0..this.currentSize] this.array[0..this.currentSize-1] orig(this.array[post(this.currentSize)]) orig(this.array[post(this.currentSize)-1]) orig(this.array[post(this.currentSize)..]) orig(this.array[post(this.currentSize)+1..]) orig(this.array[0..post(this.currentSize)]) orig(this.array[0..post(this.currentSize)-1]) this.array[orig(this.currentSize)] this.array[orig(this.currentSize)-1] this.array[orig(this.currentSize)..] this.array[orig(this.currentSize)+1..] this.array[0..orig(this.currentSize)] this.array[0..orig(this.currentSize)-1] orig(this.array[this.currentSize]) orig(this.array[this.currentSize-1]) orig(this.array[this.currentSize..]) orig(this.array[this.currentSize+1..]) orig(this.array[0..this.currentSize]) orig(this.array[0..this.currentSize-1]) assignable this.currentSize, this.array[*], this.array[this.currentSize], this.array[this.currentSize-1], this.array[this.currentSize..], this.array[this.currentSize+1..], this.array[0..this.currentSize], this.array[0..this.currentSize-1] @@ -144,7 +165,10 @@ daikon.Quant.getElement_Object(this.array, this.currentSize-1) == \old(daikon.Qu daikon.Quant.getElement_Object(this.array, this.currentSize-1) == daikon.Quant.getElement_Object(this.array, \old(this.currentSize)) daikon.Quant.getElement_Object(this.array, this.currentSize-1) == \old(daikon.Quant.getElement_Object(this.array, this.currentSize)) daikon.Quant.pairwiseEqual(daikon.Quant.slice(this.array, this.currentSize+1, daikon.Quant.size(this.array)), \old(daikon.Quant.slice(this.array, \new(this.currentSize)+1, daikon.Quant.size(this.array)))) +("oneOf.java.jpp: SEQUENCE unimplemented" != null) +daikon.Quant.eltsEqual(\old(daikon.Quant.slice(this.array, \new(DataStructures.BinaryHeap.DEFAULT_CAPACITY), daikon.Quant.size(this.array))), null) daikon.Quant.getElement_Object(this.array, this.currentSize) != null +DataStructures.BinaryHeap.DEFAULT_CAPACITY > \old(this.currentSize) this.currentSize - \old(this.currentSize) - 1 == 0 this.array.getClass().getName() != \old(x.getClass().getName()) daikon.Quant.memberOf(\old(x) , this.array ) diff --git a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-merge-jml.goal b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-merge-jml.goal index 5b504e4ed8..b2a57e212f 100644 --- a/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-merge-jml.goal +++ b/tests/daikon-tests/BinaryHeap/BinaryHeap.txt-merge-jml.goal @@ -68,8 +68,6 @@ @ public normal_behavior // Generated by Daikon @ requires x != null; @ requires x.getClass().getName() == DataStructures.MyInteger.class.getName(); - @ requires daikon.Quant.eltsEqual(daikon.Quant.slice(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY, daikon.Quant.size(this.array)), null); - @ requires DataStructures.BinaryHeap.DEFAULT_CAPACITY > this.currentSize; @ requires this.array.getClass().getName() != x.getClass().getName(); @ ensures this.array == \old(this.array); @ ensures this.array.getClass().getName() == \old(this.array.getClass().getName()); @@ -77,6 +75,7 @@ @ ensures daikon.Quant.getElement_Object(this.array, this.currentSize-1) == daikon.Quant.getElement_Object(this.array, \old(this.currentSize)); @ ensures daikon.Quant.getElement_Object(this.array, this.currentSize-1) == \old(daikon.Quant.getElement_Object(this.array, this.currentSize)); @ ensures daikon.Quant.getElement_Object(this.array, this.currentSize) != null; + @ ensures DataStructures.BinaryHeap.DEFAULT_CAPACITY > \old(this.currentSize); @ ensures this.currentSize - \old(this.currentSize) - 1 == 0; @ ensures this.array.getClass().getName() != \old(x.getClass().getName()); @ ensures daikon.Quant.memberOf(\old(x) , this.array ); @@ -85,6 +84,21 @@ @ ensures daikon.Quant.memberOf(\old(x) , daikon.Quant.slice(this.array, 0, this.currentSize) ); @ ensures daikon.Quant.memberOf(daikon.Quant.getElement_Object(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY) , \old(daikon.Quant.slice(this.array, 0, this.currentSize)) ); @ ensures daikon.Quant.subsetOf(daikon.Quant.slice(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY, daikon.Quant.size(this.array)), \old(daikon.Quant.slice(this.array, 0, this.currentSize))); + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires DataStructures.BinaryHeap.DEFAULT_CAPACITY == this.currentSize; + @ requires DataStructures.BinaryHeap.DEFAULT_CAPACITY == \old(this.currentSize); + @ requires this.array == \old(this.array); + @ requires this.array.getClass().getName() == \old(this.array.getClass().getName()); + @ requires daikon.Quant.pairwiseEqual(this.array, \old(this.array)); + @ requires x == \old(x); + @ requires x.getClass().getName() == \old(x.getClass().getName()); + @ requires Exception != null; + @ requires Exception.getClass().getName() == DataStructures.Overflow.class.getName(); + @ requires \old(x) != null; + @ requires daikon.Quant.getElement_Object(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY-1) != null; + @ requires daikon.Quant.eltsNotEqual(daikon.Quant.slice(this.array, DataStructures.BinaryHeap.DEFAULT_CAPACITY, daikon.Quant.size(this.array)), null); @*/ /** * Insert into the priority queue, maintaining heap order. diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-chicory.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-chicory.goal index c9cb0874b8..e80352f41b 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-chicory.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.BinarySearchTree -// Declarations written Thu Jun 04 13:14:28 PDT 2015 +// Declarations written Mon Jul 31 12:59:35 PDT 2017 decl-version 2.0 var-comparability none @@ -11,10 +11,10 @@ ppt DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -25,14 +25,44 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 +ppt DataStructures.BinarySearchTree.BinarySearchTree():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -43,7 +73,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -54,18 +84,50 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode flags is_param comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root var-kind field root @@ -75,7 +137,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -86,17 +148,29 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -107,7 +181,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -118,18 +192,50 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode flags is_param comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root var-kind field root @@ -139,7 +245,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -150,17 +256,29 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.findMin():::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -175,10 +293,10 @@ ppt DataStructures.BinarySearchTree.findMin():::EXIT56 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -189,7 +307,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode comparability 22 @@ -199,17 +317,47 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.BinarySearchTree.findMin():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.findMax():::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -224,10 +372,10 @@ ppt DataStructures.BinarySearchTree.findMax():::EXIT65 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -238,7 +386,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode comparability 22 @@ -248,17 +396,47 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.BinarySearchTree.findMax():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -269,7 +447,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -280,17 +458,17 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -301,7 +479,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -312,10 +490,10 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode comparability 22 @@ -325,17 +503,61 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.makeEmpty():::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -350,10 +572,10 @@ ppt DataStructures.BinarySearchTree.makeEmpty():::EXIT84 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -364,14 +586,44 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 +ppt DataStructures.BinarySearchTree.makeEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.BinarySearchTree.isEmpty():::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -386,10 +638,10 @@ ppt DataStructures.BinarySearchTree.isEmpty():::EXIT92 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -400,19 +652,49 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt DataStructures.BinarySearchTree.isEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.BinarySearchTree.printTree():::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -427,10 +709,28 @@ ppt DataStructures.BinarySearchTree.printTree():::EXIT104 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 + +ppt DataStructures.BinarySearchTree.printTree():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -440,15 +740,27 @@ variable this.root rep-type hashcode comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -459,7 +771,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param @@ -469,10 +781,10 @@ ppt DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT1 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -483,13 +795,13 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode comparability 22 @@ -499,17 +811,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable,\_DataStructures.BinaryNode):::ENTER -ppt-type enter +ppt DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -519,35 +831,33 @@ variable this.root rep-type hashcode comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 -variable x - var-kind variable - dec-type DataStructures.Comparable +variable t + var-kind variable + dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 -variable x.getClass().getName() +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args x - flags synthetic classname - comparability 22 -variable t - var-kind variable - dec-type DataStructures.BinaryNode - rep-type hashcode - flags is_param + flags synthetic classname non_null comparability 22 -ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT132 -ppt-type subexit +ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable,\_DataStructures.BinaryNode):::ENTER +ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -558,7 +868,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -569,28 +879,23 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 -variable return - var-kind return - dec-type DataStructures.BinaryNode - rep-type hashcode - comparability 22 -ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable,\_DataStructures.BinaryNode):::ENTER -ppt-type enter +ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT132 +ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -601,7 +906,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -612,23 +917,28 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 +variable return + var-kind return + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 -ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT156 +ppt DataStructures.BinarySearchTree.insert(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -639,7 +949,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -650,29 +960,117 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 -variable return - var-kind return +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable,\_DataStructures.BinaryNode):::ENTER +ppt-type enter +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable t + var-kind variable + dec-type DataStructures.BinaryNode + rep-type hashcode + flags is_param + comparability 22 ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT144 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode flags is_param comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable t + var-kind variable + dec-type DataStructures.BinaryNode + rep-type hashcode + flags is_param + comparability 22 +variable return + var-kind return + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + +ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT156 +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root var-kind field root @@ -682,7 +1080,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -693,28 +1091,78 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + +ppt DataStructures.BinarySearchTree.remove(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable t + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -725,20 +1173,20 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 -ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 +ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -749,13 +1197,13 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 @@ -764,10 +1212,10 @@ ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -778,25 +1226,25 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 -ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 +ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -807,25 +1255,61 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 +ppt DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable t + var-kind variable + dec-type DataStructures.BinaryNode + rep-type hashcode + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -836,7 +1320,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param @@ -846,10 +1330,10 @@ ppt DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -860,25 +1344,61 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + +ppt DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable t + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -889,7 +1409,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -900,23 +1420,23 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 -ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT200 +ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT196 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -927,7 +1447,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -938,28 +1458,28 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 -ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT202 +ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT198 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -970,7 +1490,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -981,28 +1501,28 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 -ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT196 +ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT200 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -1013,7 +1533,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -1024,28 +1544,28 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.BinaryNode rep-type hashcode comparability 22 -ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT198 +ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXIT202 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -1056,7 +1576,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -1067,28 +1587,78 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 variable return - var-kind return + var-kind return + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + +ppt DataStructures.BinarySearchTree.find(DataStructures.Comparable,\_DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable t + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.BinarySearchTree.printTree(DataStructures.BinaryNode):::ENTER ppt-type enter parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root @@ -1099,7 +1669,7 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param @@ -1109,11 +1679,35 @@ ppt DataStructures.BinarySearchTree.printTree(DataStructures.BinaryNode):::EXIT2 ppt-type subexit parent parent DataStructures.BinarySearchTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this.root + var-kind field root + enclosing-var this + dec-type DataStructures.BinaryNode + rep-type hashcode + comparability 22 + parent DataStructures.BinarySearchTree:::OBJECT 1 +variable t + var-kind variable + dec-type DataStructures.BinaryNode + rep-type hashcode flags is_param comparability 22 + +ppt DataStructures.BinarySearchTree.printTree(DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.BinarySearchTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.BinarySearchTree + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable this.root var-kind field root @@ -1123,19 +1717,31 @@ variable this.root comparability 22 parent DataStructures.BinarySearchTree:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type DataStructures.BinaryNode rep-type hashcode flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt DataStructures.BinarySearchTree:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type DataStructures.BinarySearchTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.root var-kind field root @@ -1152,7 +1758,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 0 this -1488997419 +75457651 1 this.root null @@ -1166,7 +1772,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 1 this -1140459609 +1796488937 1 this.root null @@ -1176,7 +1782,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2 this -1140459609 +1796488937 1 this.root null @@ -1186,7 +1792,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2 this -1140459609 +1796488937 1 this.root null @@ -1199,7 +1805,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3 this -1140459609 +1796488937 1 this.root null @@ -1209,7 +1815,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 4 this -1140459609 +1796488937 1 this.root null @@ -1222,7 +1828,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 4 this -1140459609 +1796488937 1 this.root null @@ -1238,7 +1844,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 5 this -1140459609 +1796488937 1 this.root null @@ -1251,7 +1857,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 5 this -1140459609 +1796488937 1 this.root null @@ -1270,7 +1876,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3 this -1140459609 +1796488937 1 this.root null @@ -1286,7 +1892,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 6 this -1140459609 +1796488937 1 this.root null @@ -1296,7 +1902,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 7 this -1140459609 +1796488937 1 this.root null @@ -1309,7 +1915,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 7 this -1140459609 +1796488937 1 this.root null @@ -1325,7 +1931,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 8 this -1140459609 +1796488937 1 this.root null @@ -1338,7 +1944,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 8 this -1140459609 +1796488937 1 this.root null @@ -1357,7 +1963,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 6 this -1140459609 +1796488937 1 this.root null @@ -1373,7 +1979,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 9 this -1140459609 +1796488937 1 this.root null @@ -1383,7 +1989,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 9 this -1140459609 +1796488937 1 this.root null @@ -1396,7 +2002,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 10 this -1140459609 +1796488937 1 this.root null @@ -1406,7 +2012,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 11 this -1140459609 +1796488937 1 this.root null @@ -1419,7 +2025,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 11 this -1140459609 +1796488937 1 this.root null @@ -1435,7 +2041,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 12 this -1140459609 +1796488937 1 this.root null @@ -1448,7 +2054,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 12 this -1140459609 +1796488937 1 this.root null @@ -1467,7 +2073,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 10 this -1140459609 +1796488937 1 this.root null @@ -1483,7 +2089,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 13 this -1140459609 +1796488937 1 this.root null @@ -1493,7 +2099,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 14 this -1140459609 +1796488937 1 this.root null @@ -1506,7 +2112,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 14 this -1140459609 +1796488937 1 this.root null @@ -1522,7 +2128,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 15 this -1140459609 +1796488937 1 this.root null @@ -1535,7 +2141,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 15 this -1140459609 +1796488937 1 this.root null @@ -1554,7 +2160,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 13 this -1140459609 +1796488937 1 this.root null @@ -1570,13 +2176,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 16 this -1140459609 +1796488937 1 this.root null 1 x -414753050 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1586,13 +2192,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 17 this -1140459609 +1796488937 1 this.root null 1 x -414753050 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1605,13 +2211,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 17 this -1140459609 +1796488937 1 this.root null 1 x -414753050 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1627,7 +2233,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 18 this -1140459609 +1796488937 1 this.root null @@ -1640,7 +2246,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 18 this -1140459609 +1796488937 1 this.root null @@ -1659,13 +2265,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 16 this -1140459609 +1796488937 1 this.root null 1 x -414753050 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1681,13 +2287,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 19 this -1140459609 +1796488937 1 this.root null 1 x -22593188 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1697,13 +2303,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 20 this -1140459609 +1796488937 1 this.root null 1 x -22593188 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1716,13 +2322,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 20 this -1140459609 +1796488937 1 this.root null 1 x -22593188 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1738,13 +2344,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 19 this -1140459609 +1796488937 1 this.root null 1 x -22593188 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1754,7 +2360,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 21 this -1140459609 +1796488937 1 this.root null @@ -1764,7 +2370,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 21 this -1140459609 +1796488937 1 this.root null @@ -1777,7 +2383,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 22 this -1140459609 +1796488937 1 this.root null @@ -1787,7 +2393,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 23 this -1140459609 +1796488937 1 this.root null @@ -1800,7 +2406,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 23 this -1140459609 +1796488937 1 this.root null @@ -1816,7 +2422,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 24 this -1140459609 +1796488937 1 this.root null @@ -1829,7 +2435,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 24 this -1140459609 +1796488937 1 this.root null @@ -1848,7 +2454,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 22 this -1140459609 +1796488937 1 this.root null @@ -1864,7 +2470,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 25 this -1140459609 +1796488937 1 this.root null @@ -1874,7 +2480,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 26 this -1140459609 +1796488937 1 this.root null @@ -1887,7 +2493,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 26 this -1140459609 +1796488937 1 this.root null @@ -1903,7 +2509,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 27 this -1140459609 +1796488937 1 this.root null @@ -1916,7 +2522,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 27 this -1140459609 +1796488937 1 this.root null @@ -1935,7 +2541,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 25 this -1140459609 +1796488937 1 this.root null @@ -1951,13 +2557,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 28 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1967,13 +2573,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 29 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -1986,35 +2592,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 29 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2097281333 +922151033 1 return -2097281333 +922151033 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 28 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2024,20 +2630,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 30 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 30 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 return false @@ -2047,68 +2653,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 31 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 32 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 32 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 return -2097281333 +922151033 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 33 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 33 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 return -1766588844 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2118,13 +2724,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 31 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 return -1766588844 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2134,68 +2740,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 34 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 35 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 35 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 return -2097281333 +922151033 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 36 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 36 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 return -1766588844 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2205,13 +2811,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 34 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 return -1766588844 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2221,20 +2827,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 37 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 37 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 return false @@ -2244,68 +2850,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 38 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 39 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 39 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 return -2097281333 +922151033 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 40 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 40 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 t -2097281333 +922151033 1 return -1766588844 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2315,13 +2921,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 38 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 return -1766588844 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2331,13 +2937,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 41 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2347,32 +2953,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 42 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2097281333 +922151033 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 42 this -1140459609 +1796488937 1 this.root -2097281333 +922151033 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2388,13 +2994,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 41 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2404,7 +3010,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 43 this -1140459609 +1796488937 1 this.root null @@ -2414,7 +3020,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 43 this -1140459609 +1796488937 1 this.root null @@ -2427,7 +3033,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 44 this -1140459609 +1796488937 1 this.root null @@ -2437,7 +3043,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 45 this -1140459609 +1796488937 1 this.root null @@ -2450,7 +3056,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 45 this -1140459609 +1796488937 1 this.root null @@ -2466,7 +3072,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 46 this -1140459609 +1796488937 1 this.root null @@ -2479,7 +3085,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 46 this -1140459609 +1796488937 1 this.root null @@ -2498,7 +3104,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 44 this -1140459609 +1796488937 1 this.root null @@ -2514,7 +3120,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 47 this -1140459609 +1796488937 1 this.root null @@ -2524,7 +3130,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 48 this -1140459609 +1796488937 1 this.root null @@ -2537,7 +3143,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 48 this -1140459609 +1796488937 1 this.root null @@ -2553,7 +3159,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 49 this -1140459609 +1796488937 1 this.root null @@ -2566,7 +3172,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 49 this -1140459609 +1796488937 1 this.root null @@ -2585,7 +3191,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 47 this -1140459609 +1796488937 1 this.root null @@ -2601,7 +3207,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 50 this -1140459609 +1796488937 1 this.root null @@ -2611,7 +3217,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 50 this -1140459609 +1796488937 1 this.root null @@ -2624,13 +3230,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 51 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2640,13 +3246,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 52 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2659,13 +3265,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 52 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2681,13 +3287,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 51 this -1140459609 +1796488937 1 this.root null 1 x -1766588844 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2697,7 +3303,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 53 this -1140459609 +1796488937 1 this.root null @@ -2707,7 +3313,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 53 this -1140459609 +1796488937 1 this.root null @@ -2720,7 +3326,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 54 this -1140459609 +1796488937 1 this.root null @@ -2730,7 +3336,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 55 this -1140459609 +1796488937 1 this.root null @@ -2743,7 +3349,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 55 this -1140459609 +1796488937 1 this.root null @@ -2759,7 +3365,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 56 this -1140459609 +1796488937 1 this.root null @@ -2772,7 +3378,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 56 this -1140459609 +1796488937 1 this.root null @@ -2791,7 +3397,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 54 this -1140459609 +1796488937 1 this.root null @@ -2807,7 +3413,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 57 this -1140459609 +1796488937 1 this.root null @@ -2817,7 +3423,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 58 this -1140459609 +1796488937 1 this.root null @@ -2830,7 +3436,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 58 this -1140459609 +1796488937 1 this.root null @@ -2846,7 +3452,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 59 this -1140459609 +1796488937 1 this.root null @@ -2859,7 +3465,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 59 this -1140459609 +1796488937 1 this.root null @@ -2878,7 +3484,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 57 this -1140459609 +1796488937 1 this.root null @@ -2894,7 +3500,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 60 this -1140459609 +1796488937 1 this.root null @@ -2904,7 +3510,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 60 this -1140459609 +1796488937 1 this.root null @@ -2917,7 +3523,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 61 this -1140459609 +1796488937 1 this.root null @@ -2927,7 +3533,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 62 this -1140459609 +1796488937 1 this.root null @@ -2940,7 +3546,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 62 this -1140459609 +1796488937 1 this.root null @@ -2956,7 +3562,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 63 this -1140459609 +1796488937 1 this.root null @@ -2969,7 +3575,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 63 this -1140459609 +1796488937 1 this.root null @@ -2988,7 +3594,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 61 this -1140459609 +1796488937 1 this.root null @@ -3004,7 +3610,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 64 this -1140459609 +1796488937 1 this.root null @@ -3014,7 +3620,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 65 this -1140459609 +1796488937 1 this.root null @@ -3027,7 +3633,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 65 this -1140459609 +1796488937 1 this.root null @@ -3043,7 +3649,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 66 this -1140459609 +1796488937 1 this.root null @@ -3056,7 +3662,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 66 this -1140459609 +1796488937 1 this.root null @@ -3075,7 +3681,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 64 this -1140459609 +1796488937 1 this.root null @@ -3091,7 +3697,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 67 this -1140459609 +1796488937 1 this.root null @@ -3101,7 +3707,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 67 this -1140459609 +1796488937 1 this.root null @@ -3111,7 +3717,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 68 this -1140459609 +1796488937 1 this.root null @@ -3121,7 +3727,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 68 this -1140459609 +1796488937 1 this.root null @@ -3134,7 +3740,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 69 this -1140459609 +1796488937 1 this.root null @@ -3144,7 +3750,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 70 this -1140459609 +1796488937 1 this.root null @@ -3157,7 +3763,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 70 this -1140459609 +1796488937 1 this.root null @@ -3173,7 +3779,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 71 this -1140459609 +1796488937 1 this.root null @@ -3186,7 +3792,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 71 this -1140459609 +1796488937 1 this.root null @@ -3205,7 +3811,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 69 this -1140459609 +1796488937 1 this.root null @@ -3221,7 +3827,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 72 this -1140459609 +1796488937 1 this.root null @@ -3231,7 +3837,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 73 this -1140459609 +1796488937 1 this.root null @@ -3244,7 +3850,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 73 this -1140459609 +1796488937 1 this.root null @@ -3260,7 +3866,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 74 this -1140459609 +1796488937 1 this.root null @@ -3273,7 +3879,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 74 this -1140459609 +1796488937 1 this.root null @@ -3292,7 +3898,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 72 this -1140459609 +1796488937 1 this.root null @@ -3308,13 +3914,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 75 this -1140459609 +1796488937 1 this.root null 1 x -210781873 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3324,13 +3930,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 76 this -1140459609 +1796488937 1 this.root null 1 x -210781873 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3343,13 +3949,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 76 this -1140459609 +1796488937 1 this.root null 1 x -210781873 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3365,13 +3971,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 75 this -1140459609 +1796488937 1 this.root null 1 x -210781873 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3381,7 +3987,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 77 this -1140459609 +1796488937 1 this.root null @@ -3391,7 +3997,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 77 this -1140459609 +1796488937 1 this.root null @@ -3404,7 +4010,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 78 this -1140459609 +1796488937 1 this.root null @@ -3414,7 +4020,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 79 this -1140459609 +1796488937 1 this.root null @@ -3427,7 +4033,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 79 this -1140459609 +1796488937 1 this.root null @@ -3443,7 +4049,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 80 this -1140459609 +1796488937 1 this.root null @@ -3456,7 +4062,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 80 this -1140459609 +1796488937 1 this.root null @@ -3475,7 +4081,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 78 this -1140459609 +1796488937 1 this.root null @@ -3491,7 +4097,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 81 this -1140459609 +1796488937 1 this.root null @@ -3501,7 +4107,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 82 this -1140459609 +1796488937 1 this.root null @@ -3514,7 +4120,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 82 this -1140459609 +1796488937 1 this.root null @@ -3530,7 +4136,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 83 this -1140459609 +1796488937 1 this.root null @@ -3543,7 +4149,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 83 this -1140459609 +1796488937 1 this.root null @@ -3562,7 +4168,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 81 this -1140459609 +1796488937 1 this.root null @@ -3578,13 +4184,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 84 this -1140459609 +1796488937 1 this.root null 1 x -1410405608 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3594,13 +4200,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 85 this -1140459609 +1796488937 1 this.root null 1 x -1410405608 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3613,13 +4219,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 85 this -1140459609 +1796488937 1 this.root null 1 x -1410405608 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3635,7 +4241,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 86 this -1140459609 +1796488937 1 this.root null @@ -3648,7 +4254,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 86 this -1140459609 +1796488937 1 this.root null @@ -3667,13 +4273,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 84 this -1140459609 +1796488937 1 this.root null 1 x -1410405608 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3693,7 +4299,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 87 this -762558070 +1394336709 1 this.root null @@ -3703,7 +4309,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 88 this -762558070 +1394336709 1 this.root null @@ -3713,7 +4319,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 88 this -762558070 +1394336709 1 this.root null @@ -3726,7 +4332,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 89 this -762558070 +1394336709 1 this.root null @@ -3736,7 +4342,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 90 this -762558070 +1394336709 1 this.root null @@ -3749,7 +4355,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 90 this -762558070 +1394336709 1 this.root null @@ -3765,7 +4371,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 91 this -762558070 +1394336709 1 this.root null @@ -3778,7 +4384,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 91 this -762558070 +1394336709 1 this.root null @@ -3797,7 +4403,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 89 this -762558070 +1394336709 1 this.root null @@ -3813,7 +4419,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 92 this -762558070 +1394336709 1 this.root null @@ -3823,7 +4429,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 93 this -762558070 +1394336709 1 this.root null @@ -3836,7 +4442,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 93 this -762558070 +1394336709 1 this.root null @@ -3852,7 +4458,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 94 this -762558070 +1394336709 1 this.root null @@ -3865,7 +4471,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 94 this -762558070 +1394336709 1 this.root null @@ -3884,7 +4490,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 92 this -762558070 +1394336709 1 this.root null @@ -3900,7 +4506,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 95 this -762558070 +1394336709 1 this.root null @@ -3910,7 +4516,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 95 this -762558070 +1394336709 1 this.root null @@ -3923,7 +4529,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 96 this -762558070 +1394336709 1 this.root null @@ -3933,7 +4539,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 97 this -762558070 +1394336709 1 this.root null @@ -3946,7 +4552,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 97 this -762558070 +1394336709 1 this.root null @@ -3962,7 +4568,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 98 this -762558070 +1394336709 1 this.root null @@ -3975,7 +4581,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 98 this -762558070 +1394336709 1 this.root null @@ -3994,7 +4600,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 96 this -762558070 +1394336709 1 this.root null @@ -4010,7 +4616,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 99 this -762558070 +1394336709 1 this.root null @@ -4020,7 +4626,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 100 this -762558070 +1394336709 1 this.root null @@ -4033,7 +4639,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 100 this -762558070 +1394336709 1 this.root null @@ -4049,7 +4655,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 101 this -762558070 +1394336709 1 this.root null @@ -4062,7 +4668,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 101 this -762558070 +1394336709 1 this.root null @@ -4081,7 +4687,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 99 this -762558070 +1394336709 1 this.root null @@ -4097,13 +4703,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 102 this -762558070 +1394336709 1 this.root null 1 x -131077194 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4113,13 +4719,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 103 this -762558070 +1394336709 1 this.root null 1 x -131077194 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4132,13 +4738,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 103 this -762558070 +1394336709 1 this.root null 1 x -131077194 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4154,7 +4760,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 104 this -762558070 +1394336709 1 this.root null @@ -4167,7 +4773,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 104 this -762558070 +1394336709 1 this.root null @@ -4186,13 +4792,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 102 this -762558070 +1394336709 1 this.root null 1 x -131077194 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4208,13 +4814,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 105 this -762558070 +1394336709 1 this.root null 1 x -1843661383 +120960120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4224,13 +4830,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 106 this -762558070 +1394336709 1 this.root null 1 x -1843661383 +120960120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4243,13 +4849,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 106 this -762558070 +1394336709 1 this.root null 1 x -1843661383 +120960120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4265,13 +4871,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 105 this -762558070 +1394336709 1 this.root null 1 x -1843661383 +120960120 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4281,7 +4887,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 107 this -762558070 +1394336709 1 this.root null @@ -4291,7 +4897,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 107 this -762558070 +1394336709 1 this.root null @@ -4304,7 +4910,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 108 this -762558070 +1394336709 1 this.root null @@ -4314,7 +4920,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 109 this -762558070 +1394336709 1 this.root null @@ -4327,7 +4933,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 109 this -762558070 +1394336709 1 this.root null @@ -4343,7 +4949,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 110 this -762558070 +1394336709 1 this.root null @@ -4356,7 +4962,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 110 this -762558070 +1394336709 1 this.root null @@ -4375,7 +4981,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 108 this -762558070 +1394336709 1 this.root null @@ -4391,7 +4997,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 111 this -762558070 +1394336709 1 this.root null @@ -4401,7 +5007,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 112 this -762558070 +1394336709 1 this.root null @@ -4414,7 +5020,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 112 this -762558070 +1394336709 1 this.root null @@ -4430,7 +5036,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 113 this -762558070 +1394336709 1 this.root null @@ -4443,7 +5049,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 113 this -762558070 +1394336709 1 this.root null @@ -4462,7 +5068,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 111 this -762558070 +1394336709 1 this.root null @@ -4478,13 +5084,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 114 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4494,13 +5100,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 115 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4513,35 +5119,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 115 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -869281787 +546718765 1 return -869281787 +546718765 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 114 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4551,20 +5157,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 116 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 116 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return false @@ -4574,68 +5180,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 117 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 118 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 118 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 119 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 119 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4645,13 +5251,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 117 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4661,68 +5267,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 120 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 121 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 121 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 122 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 122 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4732,13 +5338,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 120 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4748,13 +5354,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 123 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4764,32 +5370,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 124 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 125 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4802,57 +5408,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 125 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1149159222 +592179046 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 124 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -869281787 +546718765 1 return -869281787 +546718765 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 123 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4862,20 +5468,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 126 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 126 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return false @@ -4885,97 +5491,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 127 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 128 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 129 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 129 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -1149159222 +592179046 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 128 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 130 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 130 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4985,13 +5591,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 127 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5001,68 +5607,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 131 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 132 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 132 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 133 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 133 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5072,13 +5678,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 131 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5088,20 +5694,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 134 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 134 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return false @@ -5111,68 +5717,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 135 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 136 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 136 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 137 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 137 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 t -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5182,13 +5788,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 135 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 return -375321518 +748658608 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5198,13 +5804,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 138 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5214,54 +5820,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 139 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -869281787 +546718765 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 139 this -762558070 +1394336709 1 this.root -869281787 +546718765 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1149159222 +592179046 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 138 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5271,20 +5877,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 140 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 140 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 return false @@ -5294,68 +5900,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 141 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 142 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 142 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 143 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 143 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5365,13 +5971,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 141 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5381,68 +5987,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 144 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 145 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 145 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 146 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 146 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5452,13 +6058,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 144 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5468,20 +6074,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 147 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 147 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 return false @@ -5491,68 +6097,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 148 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 149 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 149 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 return -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 150 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 150 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 t -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5562,13 +6168,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 148 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 return -687743568 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5578,13 +6184,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 151 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5594,32 +6200,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 152 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1149159222 +592179046 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 152 this -762558070 +1394336709 1 this.root -1149159222 +592179046 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5635,13 +6241,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 151 this -762558070 +1394336709 1 this.root null 1 x -687743568 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5651,7 +6257,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 153 this -762558070 +1394336709 1 this.root null @@ -5661,7 +6267,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 153 this -762558070 +1394336709 1 this.root null @@ -5674,7 +6280,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 154 this -762558070 +1394336709 1 this.root null @@ -5684,7 +6290,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 155 this -762558070 +1394336709 1 this.root null @@ -5697,7 +6303,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 155 this -762558070 +1394336709 1 this.root null @@ -5713,7 +6319,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 156 this -762558070 +1394336709 1 this.root null @@ -5726,7 +6332,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 156 this -762558070 +1394336709 1 this.root null @@ -5745,7 +6351,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 154 this -762558070 +1394336709 1 this.root null @@ -5761,7 +6367,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 157 this -762558070 +1394336709 1 this.root null @@ -5771,7 +6377,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 158 this -762558070 +1394336709 1 this.root null @@ -5784,7 +6390,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 158 this -762558070 +1394336709 1 this.root null @@ -5800,7 +6406,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 159 this -762558070 +1394336709 1 this.root null @@ -5813,7 +6419,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 159 this -762558070 +1394336709 1 this.root null @@ -5832,7 +6438,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 157 this -762558070 +1394336709 1 this.root null @@ -5848,7 +6454,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 160 this -762558070 +1394336709 1 this.root null @@ -5858,7 +6464,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 160 this -762558070 +1394336709 1 this.root null @@ -5871,13 +6477,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 161 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5887,13 +6493,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 162 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5906,13 +6512,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 162 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5928,13 +6534,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 161 this -762558070 +1394336709 1 this.root null 1 x -375321518 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5944,7 +6550,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 163 this -762558070 +1394336709 1 this.root null @@ -5954,7 +6560,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 163 this -762558070 +1394336709 1 this.root null @@ -5967,7 +6573,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 164 this -762558070 +1394336709 1 this.root null @@ -5977,7 +6583,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 165 this -762558070 +1394336709 1 this.root null @@ -5990,7 +6596,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 165 this -762558070 +1394336709 1 this.root null @@ -6006,7 +6612,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 166 this -762558070 +1394336709 1 this.root null @@ -6019,7 +6625,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 166 this -762558070 +1394336709 1 this.root null @@ -6038,7 +6644,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 164 this -762558070 +1394336709 1 this.root null @@ -6054,7 +6660,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 167 this -762558070 +1394336709 1 this.root null @@ -6064,7 +6670,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 168 this -762558070 +1394336709 1 this.root null @@ -6077,7 +6683,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 168 this -762558070 +1394336709 1 this.root null @@ -6093,7 +6699,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 169 this -762558070 +1394336709 1 this.root null @@ -6106,7 +6712,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 169 this -762558070 +1394336709 1 this.root null @@ -6125,7 +6731,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 167 this -762558070 +1394336709 1 this.root null @@ -6141,7 +6747,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 170 this -762558070 +1394336709 1 this.root null @@ -6151,7 +6757,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 170 this -762558070 +1394336709 1 this.root null @@ -6164,7 +6770,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 171 this -762558070 +1394336709 1 this.root null @@ -6174,7 +6780,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 172 this -762558070 +1394336709 1 this.root null @@ -6187,7 +6793,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 172 this -762558070 +1394336709 1 this.root null @@ -6203,7 +6809,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 173 this -762558070 +1394336709 1 this.root null @@ -6216,7 +6822,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 173 this -762558070 +1394336709 1 this.root null @@ -6235,7 +6841,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 171 this -762558070 +1394336709 1 this.root null @@ -6251,7 +6857,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 174 this -762558070 +1394336709 1 this.root null @@ -6261,7 +6867,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 175 this -762558070 +1394336709 1 this.root null @@ -6274,7 +6880,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 175 this -762558070 +1394336709 1 this.root null @@ -6290,7 +6896,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 176 this -762558070 +1394336709 1 this.root null @@ -6303,7 +6909,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 176 this -762558070 +1394336709 1 this.root null @@ -6322,7 +6928,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 174 this -762558070 +1394336709 1 this.root null @@ -6338,7 +6944,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 177 this -762558070 +1394336709 1 this.root null @@ -6348,7 +6954,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 177 this -762558070 +1394336709 1 this.root null @@ -6358,7 +6964,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 178 this -762558070 +1394336709 1 this.root null @@ -6368,7 +6974,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 178 this -762558070 +1394336709 1 this.root null @@ -6381,7 +6987,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 179 this -762558070 +1394336709 1 this.root null @@ -6391,7 +6997,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 180 this -762558070 +1394336709 1 this.root null @@ -6404,7 +7010,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 180 this -762558070 +1394336709 1 this.root null @@ -6420,7 +7026,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 181 this -762558070 +1394336709 1 this.root null @@ -6433,7 +7039,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 181 this -762558070 +1394336709 1 this.root null @@ -6452,7 +7058,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 179 this -762558070 +1394336709 1 this.root null @@ -6468,7 +7074,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 182 this -762558070 +1394336709 1 this.root null @@ -6478,7 +7084,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 183 this -762558070 +1394336709 1 this.root null @@ -6491,7 +7097,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 183 this -762558070 +1394336709 1 this.root null @@ -6507,7 +7113,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 184 this -762558070 +1394336709 1 this.root null @@ -6520,7 +7126,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 184 this -762558070 +1394336709 1 this.root null @@ -6539,7 +7145,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 182 this -762558070 +1394336709 1 this.root null @@ -6555,13 +7161,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 185 this -762558070 +1394336709 1 this.root null 1 x -1598606683 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6571,13 +7177,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 186 this -762558070 +1394336709 1 this.root null 1 x -1598606683 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6590,13 +7196,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 186 this -762558070 +1394336709 1 this.root null 1 x -1598606683 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6612,13 +7218,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 185 this -762558070 +1394336709 1 this.root null 1 x -1598606683 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6628,7 +7234,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 187 this -762558070 +1394336709 1 this.root null @@ -6638,7 +7244,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 187 this -762558070 +1394336709 1 this.root null @@ -6651,7 +7257,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 188 this -762558070 +1394336709 1 this.root null @@ -6661,7 +7267,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 189 this -762558070 +1394336709 1 this.root null @@ -6674,7 +7280,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 189 this -762558070 +1394336709 1 this.root null @@ -6690,7 +7296,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 190 this -762558070 +1394336709 1 this.root null @@ -6703,7 +7309,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 190 this -762558070 +1394336709 1 this.root null @@ -6722,7 +7328,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 188 this -762558070 +1394336709 1 this.root null @@ -6738,7 +7344,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 191 this -762558070 +1394336709 1 this.root null @@ -6748,7 +7354,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 192 this -762558070 +1394336709 1 this.root null @@ -6761,7 +7367,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 192 this -762558070 +1394336709 1 this.root null @@ -6777,7 +7383,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 193 this -762558070 +1394336709 1 this.root null @@ -6790,7 +7396,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 193 this -762558070 +1394336709 1 this.root null @@ -6809,7 +7415,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 191 this -762558070 +1394336709 1 this.root null @@ -6825,13 +7431,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 194 this -762558070 +1394336709 1 this.root null 1 x -614613564 +1641808846 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6841,13 +7447,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 195 this -762558070 +1394336709 1 this.root null 1 x -614613564 +1641808846 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6860,13 +7466,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 195 this -762558070 +1394336709 1 this.root null 1 x -614613564 +1641808846 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6882,7 +7488,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 196 this -762558070 +1394336709 1 this.root null @@ -6895,7 +7501,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 196 this -762558070 +1394336709 1 this.root null @@ -6914,13 +7520,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 194 this -762558070 +1394336709 1 this.root null 1 x -614613564 +1641808846 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6940,7 +7546,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 197 this -413828078 +1358444045 1 this.root null @@ -6950,7 +7556,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 198 this -413828078 +1358444045 1 this.root null @@ -6960,7 +7566,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 198 this -413828078 +1358444045 1 this.root null @@ -6973,7 +7579,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 199 this -413828078 +1358444045 1 this.root null @@ -6983,7 +7589,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 200 this -413828078 +1358444045 1 this.root null @@ -6996,7 +7602,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 200 this -413828078 +1358444045 1 this.root null @@ -7012,7 +7618,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 201 this -413828078 +1358444045 1 this.root null @@ -7025,7 +7631,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 201 this -413828078 +1358444045 1 this.root null @@ -7044,7 +7650,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 199 this -413828078 +1358444045 1 this.root null @@ -7060,7 +7666,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 202 this -413828078 +1358444045 1 this.root null @@ -7070,7 +7676,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 203 this -413828078 +1358444045 1 this.root null @@ -7083,7 +7689,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 203 this -413828078 +1358444045 1 this.root null @@ -7099,7 +7705,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 204 this -413828078 +1358444045 1 this.root null @@ -7112,7 +7718,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 204 this -413828078 +1358444045 1 this.root null @@ -7131,7 +7737,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 202 this -413828078 +1358444045 1 this.root null @@ -7147,7 +7753,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 205 this -413828078 +1358444045 1 this.root null @@ -7157,7 +7763,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 205 this -413828078 +1358444045 1 this.root null @@ -7170,7 +7776,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 206 this -413828078 +1358444045 1 this.root null @@ -7180,7 +7786,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 207 this -413828078 +1358444045 1 this.root null @@ -7193,7 +7799,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 207 this -413828078 +1358444045 1 this.root null @@ -7209,7 +7815,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 208 this -413828078 +1358444045 1 this.root null @@ -7222,7 +7828,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 208 this -413828078 +1358444045 1 this.root null @@ -7241,7 +7847,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 206 this -413828078 +1358444045 1 this.root null @@ -7257,7 +7863,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 209 this -413828078 +1358444045 1 this.root null @@ -7267,7 +7873,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 210 this -413828078 +1358444045 1 this.root null @@ -7280,7 +7886,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 210 this -413828078 +1358444045 1 this.root null @@ -7296,7 +7902,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 211 this -413828078 +1358444045 1 this.root null @@ -7309,7 +7915,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 211 this -413828078 +1358444045 1 this.root null @@ -7328,7 +7934,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 209 this -413828078 +1358444045 1 this.root null @@ -7344,13 +7950,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 212 this -413828078 +1358444045 1 this.root null 1 x -1656457960 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7360,13 +7966,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 213 this -413828078 +1358444045 1 this.root null 1 x -1656457960 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7379,13 +7985,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 213 this -413828078 +1358444045 1 this.root null 1 x -1656457960 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7401,7 +8007,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 214 this -413828078 +1358444045 1 this.root null @@ -7414,7 +8020,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 214 this -413828078 +1358444045 1 this.root null @@ -7433,13 +8039,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 212 this -413828078 +1358444045 1 this.root null 1 x -1656457960 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7455,13 +8061,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 215 this -413828078 +1358444045 1 this.root null 1 x -110934012 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7471,13 +8077,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 216 this -413828078 +1358444045 1 this.root null 1 x -110934012 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7490,13 +8096,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 216 this -413828078 +1358444045 1 this.root null 1 x -110934012 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7512,13 +8118,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 215 this -413828078 +1358444045 1 this.root null 1 x -110934012 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7528,7 +8134,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 217 this -413828078 +1358444045 1 this.root null @@ -7538,7 +8144,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 217 this -413828078 +1358444045 1 this.root null @@ -7551,7 +8157,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 218 this -413828078 +1358444045 1 this.root null @@ -7561,7 +8167,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 219 this -413828078 +1358444045 1 this.root null @@ -7574,7 +8180,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 219 this -413828078 +1358444045 1 this.root null @@ -7590,7 +8196,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 220 this -413828078 +1358444045 1 this.root null @@ -7603,7 +8209,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 220 this -413828078 +1358444045 1 this.root null @@ -7622,7 +8228,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 218 this -413828078 +1358444045 1 this.root null @@ -7638,7 +8244,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 221 this -413828078 +1358444045 1 this.root null @@ -7648,7 +8254,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 222 this -413828078 +1358444045 1 this.root null @@ -7661,7 +8267,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 222 this -413828078 +1358444045 1 this.root null @@ -7677,7 +8283,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 223 this -413828078 +1358444045 1 this.root null @@ -7690,7 +8296,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 223 this -413828078 +1358444045 1 this.root null @@ -7709,7 +8315,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 221 this -413828078 +1358444045 1 this.root null @@ -7725,13 +8331,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 224 this -413828078 +1358444045 1 this.root null 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7741,13 +8347,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 225 this -413828078 +1358444045 1 this.root null 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7760,35 +8366,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 225 this -413828078 +1358444045 1 this.root null 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 224 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7798,20 +8404,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 226 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 226 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -7821,68 +8427,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 227 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 228 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 228 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 229 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 229 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7892,13 +8498,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 227 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7908,68 +8514,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 230 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 231 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 231 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 232 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 232 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7979,13 +8585,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 230 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7995,13 +8601,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 233 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8011,32 +8617,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 234 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 235 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8049,57 +8655,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 235 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 234 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 233 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8109,20 +8715,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 236 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 236 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -8132,68 +8738,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 237 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 238 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 238 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 239 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 239 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8203,13 +8809,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 237 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8219,68 +8825,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 240 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 241 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 241 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 242 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 242 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 return -1889029013 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8290,13 +8896,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 240 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1889029013 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8306,13 +8912,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 243 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8322,51 +8928,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 244 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 245 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 246 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8379,79 +8985,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 246 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 245 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 244 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 243 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8461,20 +9067,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 247 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 247 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -8484,68 +9090,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 248 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 249 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 249 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 250 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 250 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8555,13 +9161,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 248 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8571,68 +9177,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 251 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 252 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 252 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 253 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 253 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8642,13 +9248,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 251 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8658,13 +9264,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 254 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8674,70 +9280,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 255 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 256 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 257 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 258 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8750,101 +9356,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 258 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1390381194 +329611835 1 return -1390381194 +329611835 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 257 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 256 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 255 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 254 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -8854,20 +9460,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 259 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 259 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -8877,68 +9483,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 260 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 261 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 261 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 262 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 262 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8948,13 +9554,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 260 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8964,68 +9570,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 263 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 264 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 264 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 265 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 265 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9035,13 +9641,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 263 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9051,13 +9657,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 266 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9067,70 +9673,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 267 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 268 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 269 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 270 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9143,101 +9749,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 270 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2007069404 +863831416 1 return -2007069404 +863831416 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 269 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 268 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 267 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 266 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9247,20 +9853,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 271 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 271 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -9270,68 +9876,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 272 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 273 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 273 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 274 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 274 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9341,13 +9947,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 272 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9357,68 +9963,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 275 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 276 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 276 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 277 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 277 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9428,13 +10034,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 275 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9444,13 +10050,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 278 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9460,51 +10066,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 279 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 280 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 281 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9517,79 +10123,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 281 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -111632506 +1638172114 1 return -111632506 +1638172114 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 280 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 279 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 278 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9599,20 +10205,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 282 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 282 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -9622,68 +10228,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 283 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 284 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 284 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 285 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 285 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9693,13 +10299,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 283 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9709,68 +10315,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 286 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 287 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 287 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 288 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 288 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9780,13 +10386,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 286 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9796,13 +10402,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 289 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9812,89 +10418,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 290 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 291 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 292 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 293 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1390381194 +329611835 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 294 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9907,123 +10513,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 294 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1984529870 +1651945012 1 return -1984529870 +1651945012 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 293 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1390381194 +329611835 1 return -1390381194 +329611835 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 292 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 291 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 290 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 289 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10033,20 +10639,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 295 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 295 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -10056,68 +10662,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 296 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 297 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 297 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 298 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 298 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10127,13 +10733,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 296 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10143,68 +10749,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 299 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 300 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 300 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 301 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 301 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10214,13 +10820,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 299 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10230,20 +10836,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 302 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 302 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -10253,68 +10859,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 303 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 304 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 304 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 305 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 305 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -2007069404 +863831416 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10324,13 +10930,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 303 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1367164551 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10340,13 +10946,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 306 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10356,89 +10962,89 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 307 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 308 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 309 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 310 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2007069404 +863831416 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 310 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10454,79 +11060,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 309 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 308 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 307 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 306 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1367164551 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10536,20 +11142,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 311 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 311 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -10559,68 +11165,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 312 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 313 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 313 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 314 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 314 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10630,13 +11236,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 312 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10646,68 +11252,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 315 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 316 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 316 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 317 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 317 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10717,13 +11323,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 315 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10733,20 +11339,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 318 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 318 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -10756,68 +11362,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 319 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 320 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 320 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 321 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 321 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -7796677 +2136344592 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10827,13 +11433,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 319 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -232547631 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10843,13 +11449,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 322 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10859,136 +11465,136 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 323 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 324 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 325 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -7796677 +2136344592 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 325 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1390381194 +329611835 1 return -1390381194 +329611835 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 324 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 323 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 322 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -232547631 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10998,20 +11604,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 326 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 326 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -11021,68 +11627,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 327 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 328 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 328 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 329 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 329 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11092,13 +11698,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 327 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11108,68 +11714,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 330 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 331 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 331 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1390381194 +329611835 1 return -1390381194 +329611835 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 332 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1390381194 +329611835 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 332 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1390381194 +329611835 1 return -42247872 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11179,13 +11785,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 330 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -42247872 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11195,20 +11801,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 333 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 333 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -11218,68 +11824,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 334 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 335 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 335 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1390381194 +329611835 1 return -1390381194 +329611835 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 336 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1390381194 +329611835 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 336 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1390381194 +329611835 1 return -42247872 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11289,13 +11895,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 334 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -42247872 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11305,13 +11911,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 337 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11321,136 +11927,136 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 338 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 339 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 340 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1390381194 +329611835 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 340 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1984529870 +1651945012 1 return -1984529870 +1651945012 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 339 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 338 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 337 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11460,20 +12066,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 341 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 341 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -11483,68 +12089,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 342 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 343 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 343 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 344 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 344 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11554,13 +12160,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 342 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11570,68 +12176,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 345 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 346 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 346 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1984529870 +1651945012 1 return -1984529870 +1651945012 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 347 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1984529870 +1651945012 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 347 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1984529870 +1651945012 1 return -1454304511 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11641,13 +12247,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 345 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1454304511 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11657,20 +12263,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 348 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 348 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -11680,68 +12286,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 349 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 350 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 350 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1984529870 +1651945012 1 return -1984529870 +1651945012 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 351 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1984529870 +1651945012 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 351 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1984529870 +1651945012 1 return -1454304511 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11751,13 +12357,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 349 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1454304511 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11767,13 +12373,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 352 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11783,70 +12389,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 353 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 354 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 355 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1984529870 +1651945012 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 355 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11862,57 +12468,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 354 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 353 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 352 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1454304511 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11922,20 +12528,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 356 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 356 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -11945,68 +12551,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 357 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 358 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 358 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 359 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 359 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12016,13 +12622,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 357 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12032,68 +12638,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 360 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 361 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 361 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 362 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 362 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 return -1889029013 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12103,13 +12709,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 360 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1889029013 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12119,20 +12725,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 363 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 363 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -12142,68 +12748,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 364 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 365 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 365 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 return -512384243 +653687670 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 366 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 366 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -512384243 +653687670 1 return -1889029013 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12213,13 +12819,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 364 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -1889029013 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12229,13 +12835,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 367 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12245,95 +12851,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 368 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 369 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -512384243 +653687670 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 369 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -111632506 +1638172114 1 return -111632506 +1638172114 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 368 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 367 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -1889029013 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12343,20 +12949,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 370 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 370 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -12366,68 +12972,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 371 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 372 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 372 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 373 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 373 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12437,13 +13043,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 371 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12453,68 +13059,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 374 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 375 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 375 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -111632506 +1638172114 1 return -111632506 +1638172114 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 376 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -111632506 +1638172114 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 376 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -111632506 +1638172114 1 return -142345952 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12524,13 +13130,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 374 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -142345952 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12540,20 +13146,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 377 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 377 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -12563,68 +13169,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 378 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 379 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 379 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -111632506 +1638172114 1 return -111632506 +1638172114 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 380 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -111632506 +1638172114 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 380 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -111632506 +1638172114 1 return -142345952 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12634,13 +13240,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 378 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -142345952 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12650,13 +13256,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 381 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12666,51 +13272,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 382 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 383 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -111632506 +1638172114 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 383 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12726,35 +13332,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 382 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 381 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -142345952 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12764,20 +13370,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 384 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 384 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -12787,68 +13393,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 385 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 386 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 386 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 387 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 387 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12858,13 +13464,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 385 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12874,68 +13480,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 388 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 389 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 389 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 390 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 390 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12945,13 +13551,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 388 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12961,20 +13567,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 391 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 391 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return false @@ -12984,68 +13590,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 392 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 393 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 393 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 394 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 394 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 t -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13055,13 +13661,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 392 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 return -452134088 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13071,13 +13677,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 395 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13087,32 +13693,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 396 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1220473930 +64830413 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 396 this -413828078 +1358444045 1 this.root -1220473930 +64830413 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13128,13 +13734,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 395 this -413828078 +1358444045 1 this.root null 1 x -452134088 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13144,7 +13750,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 397 this -413828078 +1358444045 1 this.root null @@ -13154,7 +13760,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 397 this -413828078 +1358444045 1 this.root null @@ -13167,7 +13773,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 398 this -413828078 +1358444045 1 this.root null @@ -13177,7 +13783,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 399 this -413828078 +1358444045 1 this.root null @@ -13190,7 +13796,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 399 this -413828078 +1358444045 1 this.root null @@ -13206,7 +13812,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 400 this -413828078 +1358444045 1 this.root null @@ -13219,7 +13825,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 400 this -413828078 +1358444045 1 this.root null @@ -13238,7 +13844,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 398 this -413828078 +1358444045 1 this.root null @@ -13254,7 +13860,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 401 this -413828078 +1358444045 1 this.root null @@ -13264,7 +13870,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 402 this -413828078 +1358444045 1 this.root null @@ -13277,7 +13883,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 402 this -413828078 +1358444045 1 this.root null @@ -13293,7 +13899,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 403 this -413828078 +1358444045 1 this.root null @@ -13306,7 +13912,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 403 this -413828078 +1358444045 1 this.root null @@ -13325,7 +13931,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 401 this -413828078 +1358444045 1 this.root null @@ -13341,7 +13947,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 404 this -413828078 +1358444045 1 this.root null @@ -13351,7 +13957,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 404 this -413828078 +1358444045 1 this.root null @@ -13364,13 +13970,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 405 this -413828078 +1358444045 1 this.root null 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13380,13 +13986,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 406 this -413828078 +1358444045 1 this.root null 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13399,13 +14005,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 406 this -413828078 +1358444045 1 this.root null 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13421,13 +14027,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 405 this -413828078 +1358444045 1 this.root null 1 x -42247872 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13437,7 +14043,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 407 this -413828078 +1358444045 1 this.root null @@ -13447,7 +14053,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 407 this -413828078 +1358444045 1 this.root null @@ -13460,7 +14066,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 408 this -413828078 +1358444045 1 this.root null @@ -13470,7 +14076,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 409 this -413828078 +1358444045 1 this.root null @@ -13483,7 +14089,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 409 this -413828078 +1358444045 1 this.root null @@ -13499,7 +14105,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 410 this -413828078 +1358444045 1 this.root null @@ -13512,7 +14118,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 410 this -413828078 +1358444045 1 this.root null @@ -13531,7 +14137,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 408 this -413828078 +1358444045 1 this.root null @@ -13547,7 +14153,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 411 this -413828078 +1358444045 1 this.root null @@ -13557,7 +14163,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 412 this -413828078 +1358444045 1 this.root null @@ -13570,7 +14176,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 412 this -413828078 +1358444045 1 this.root null @@ -13586,7 +14192,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 413 this -413828078 +1358444045 1 this.root null @@ -13599,7 +14205,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 413 this -413828078 +1358444045 1 this.root null @@ -13618,7 +14224,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 411 this -413828078 +1358444045 1 this.root null @@ -13634,7 +14240,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 414 this -413828078 +1358444045 1 this.root null @@ -13644,7 +14250,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 414 this -413828078 +1358444045 1 this.root null @@ -13657,7 +14263,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 415 this -413828078 +1358444045 1 this.root null @@ -13667,7 +14273,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 416 this -413828078 +1358444045 1 this.root null @@ -13680,7 +14286,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 416 this -413828078 +1358444045 1 this.root null @@ -13696,7 +14302,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 417 this -413828078 +1358444045 1 this.root null @@ -13709,7 +14315,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 417 this -413828078 +1358444045 1 this.root null @@ -13728,7 +14334,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 415 this -413828078 +1358444045 1 this.root null @@ -13744,7 +14350,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 418 this -413828078 +1358444045 1 this.root null @@ -13754,7 +14360,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 419 this -413828078 +1358444045 1 this.root null @@ -13767,7 +14373,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 419 this -413828078 +1358444045 1 this.root null @@ -13783,7 +14389,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 420 this -413828078 +1358444045 1 this.root null @@ -13796,7 +14402,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 420 this -413828078 +1358444045 1 this.root null @@ -13815,7 +14421,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 418 this -413828078 +1358444045 1 this.root null @@ -13831,7 +14437,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 421 this -413828078 +1358444045 1 this.root null @@ -13841,7 +14447,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 421 this -413828078 +1358444045 1 this.root null @@ -13851,7 +14457,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 422 this -413828078 +1358444045 1 this.root null @@ -13861,7 +14467,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 422 this -413828078 +1358444045 1 this.root null @@ -13874,7 +14480,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 423 this -413828078 +1358444045 1 this.root null @@ -13884,7 +14490,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 424 this -413828078 +1358444045 1 this.root null @@ -13897,7 +14503,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 424 this -413828078 +1358444045 1 this.root null @@ -13913,7 +14519,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 425 this -413828078 +1358444045 1 this.root null @@ -13926,7 +14532,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 425 this -413828078 +1358444045 1 this.root null @@ -13945,7 +14551,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 423 this -413828078 +1358444045 1 this.root null @@ -13961,7 +14567,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 426 this -413828078 +1358444045 1 this.root null @@ -13971,7 +14577,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 427 this -413828078 +1358444045 1 this.root null @@ -13984,7 +14590,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 427 this -413828078 +1358444045 1 this.root null @@ -14000,7 +14606,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 428 this -413828078 +1358444045 1 this.root null @@ -14013,7 +14619,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 428 this -413828078 +1358444045 1 this.root null @@ -14032,7 +14638,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 426 this -413828078 +1358444045 1 this.root null @@ -14048,13 +14654,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 429 this -413828078 +1358444045 1 this.root null 1 x -1425003533 +2034688500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14064,13 +14670,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 430 this -413828078 +1358444045 1 this.root null 1 x -1425003533 +2034688500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14083,13 +14689,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 430 this -413828078 +1358444045 1 this.root null 1 x -1425003533 +2034688500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14105,13 +14711,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 429 this -413828078 +1358444045 1 this.root null 1 x -1425003533 +2034688500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14121,7 +14727,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 431 this -413828078 +1358444045 1 this.root null @@ -14131,7 +14737,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 431 this -413828078 +1358444045 1 this.root null @@ -14144,7 +14750,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 432 this -413828078 +1358444045 1 this.root null @@ -14154,7 +14760,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 433 this -413828078 +1358444045 1 this.root null @@ -14167,7 +14773,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 433 this -413828078 +1358444045 1 this.root null @@ -14183,7 +14789,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 434 this -413828078 +1358444045 1 this.root null @@ -14196,7 +14802,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 434 this -413828078 +1358444045 1 this.root null @@ -14215,7 +14821,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 432 this -413828078 +1358444045 1 this.root null @@ -14231,7 +14837,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 435 this -413828078 +1358444045 1 this.root null @@ -14241,7 +14847,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 436 this -413828078 +1358444045 1 this.root null @@ -14254,7 +14860,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 436 this -413828078 +1358444045 1 this.root null @@ -14270,7 +14876,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 437 this -413828078 +1358444045 1 this.root null @@ -14283,7 +14889,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 437 this -413828078 +1358444045 1 this.root null @@ -14302,7 +14908,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 435 this -413828078 +1358444045 1 this.root null @@ -14318,13 +14924,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 438 this -413828078 +1358444045 1 this.root null 1 x -1296747787 +1007251739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14334,13 +14940,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 439 this -413828078 +1358444045 1 this.root null 1 x -1296747787 +1007251739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14353,13 +14959,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 439 this -413828078 +1358444045 1 this.root null 1 x -1296747787 +1007251739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14375,7 +14981,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 440 this -413828078 +1358444045 1 this.root null @@ -14388,7 +14994,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 440 this -413828078 +1358444045 1 this.root null @@ -14407,13 +15013,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 438 this -413828078 +1358444045 1 this.root null 1 x -1296747787 +1007251739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14433,7 +15039,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 441 this -1776006353 +1556595366 1 this.root null @@ -14443,7 +15049,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 442 this -1776006353 +1556595366 1 this.root null @@ -14453,7 +15059,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 442 this -1776006353 +1556595366 1 this.root null @@ -14466,7 +15072,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 443 this -1776006353 +1556595366 1 this.root null @@ -14476,7 +15082,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 444 this -1776006353 +1556595366 1 this.root null @@ -14489,7 +15095,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 444 this -1776006353 +1556595366 1 this.root null @@ -14505,7 +15111,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 445 this -1776006353 +1556595366 1 this.root null @@ -14518,7 +15124,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 445 this -1776006353 +1556595366 1 this.root null @@ -14537,7 +15143,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 443 this -1776006353 +1556595366 1 this.root null @@ -14553,7 +15159,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 446 this -1776006353 +1556595366 1 this.root null @@ -14563,7 +15169,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 447 this -1776006353 +1556595366 1 this.root null @@ -14576,7 +15182,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 447 this -1776006353 +1556595366 1 this.root null @@ -14592,7 +15198,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 448 this -1776006353 +1556595366 1 this.root null @@ -14605,7 +15211,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 448 this -1776006353 +1556595366 1 this.root null @@ -14624,7 +15230,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 446 this -1776006353 +1556595366 1 this.root null @@ -14640,7 +15246,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 449 this -1776006353 +1556595366 1 this.root null @@ -14650,7 +15256,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 449 this -1776006353 +1556595366 1 this.root null @@ -14663,7 +15269,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 450 this -1776006353 +1556595366 1 this.root null @@ -14673,7 +15279,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 451 this -1776006353 +1556595366 1 this.root null @@ -14686,7 +15292,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 451 this -1776006353 +1556595366 1 this.root null @@ -14702,7 +15308,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 452 this -1776006353 +1556595366 1 this.root null @@ -14715,7 +15321,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 452 this -1776006353 +1556595366 1 this.root null @@ -14734,7 +15340,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 450 this -1776006353 +1556595366 1 this.root null @@ -14750,7 +15356,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 453 this -1776006353 +1556595366 1 this.root null @@ -14760,7 +15366,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 454 this -1776006353 +1556595366 1 this.root null @@ -14773,7 +15379,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 454 this -1776006353 +1556595366 1 this.root null @@ -14789,7 +15395,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 455 this -1776006353 +1556595366 1 this.root null @@ -14802,7 +15408,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 455 this -1776006353 +1556595366 1 this.root null @@ -14821,7 +15427,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 453 this -1776006353 +1556595366 1 this.root null @@ -14837,13 +15443,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 456 this -1776006353 +1556595366 1 this.root null 1 x -1463565218 +194494468 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14853,13 +15459,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 457 this -1776006353 +1556595366 1 this.root null 1 x -1463565218 +194494468 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14872,13 +15478,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 457 this -1776006353 +1556595366 1 this.root null 1 x -1463565218 +194494468 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14894,7 +15500,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 458 this -1776006353 +1556595366 1 this.root null @@ -14907,7 +15513,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 458 this -1776006353 +1556595366 1 this.root null @@ -14926,13 +15532,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 456 this -1776006353 +1556595366 1 this.root null 1 x -1463565218 +194494468 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14948,13 +15554,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 459 this -1776006353 +1556595366 1 this.root null 1 x -862926188 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14964,13 +15570,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 460 this -1776006353 +1556595366 1 this.root null 1 x -862926188 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14983,13 +15589,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 460 this -1776006353 +1556595366 1 this.root null 1 x -862926188 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15005,13 +15611,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 459 this -1776006353 +1556595366 1 this.root null 1 x -862926188 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15021,7 +15627,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 461 this -1776006353 +1556595366 1 this.root null @@ -15031,7 +15637,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 461 this -1776006353 +1556595366 1 this.root null @@ -15044,7 +15650,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 462 this -1776006353 +1556595366 1 this.root null @@ -15054,7 +15660,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 463 this -1776006353 +1556595366 1 this.root null @@ -15067,7 +15673,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 463 this -1776006353 +1556595366 1 this.root null @@ -15083,7 +15689,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 464 this -1776006353 +1556595366 1 this.root null @@ -15096,7 +15702,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 464 this -1776006353 +1556595366 1 this.root null @@ -15115,7 +15721,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 462 this -1776006353 +1556595366 1 this.root null @@ -15131,7 +15737,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 465 this -1776006353 +1556595366 1 this.root null @@ -15141,7 +15747,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 466 this -1776006353 +1556595366 1 this.root null @@ -15154,7 +15760,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 466 this -1776006353 +1556595366 1 this.root null @@ -15170,7 +15776,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 467 this -1776006353 +1556595366 1 this.root null @@ -15183,7 +15789,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 467 this -1776006353 +1556595366 1 this.root null @@ -15202,7 +15808,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 465 this -1776006353 +1556595366 1 this.root null @@ -15218,13 +15824,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 468 this -1776006353 +1556595366 1 this.root null 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15234,13 +15840,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 469 this -1776006353 +1556595366 1 this.root null 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15253,35 +15859,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 469 this -1776006353 +1556595366 1 this.root null 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 468 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15291,20 +15897,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 470 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 470 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -15314,68 +15920,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 471 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 472 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 472 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 473 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 473 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15385,13 +15991,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 471 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15401,68 +16007,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 474 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 475 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 475 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 476 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 476 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15472,13 +16078,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 474 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15488,13 +16094,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 477 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15504,32 +16110,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 478 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 479 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15542,57 +16148,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 479 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 478 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 477 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15602,20 +16208,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 480 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 480 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -15625,97 +16231,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 481 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 482 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 483 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 483 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 482 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 484 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 484 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15725,13 +16331,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 481 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15741,68 +16347,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 485 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 486 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 486 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 487 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 487 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15812,13 +16418,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 485 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15828,13 +16434,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 488 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15844,51 +16450,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 489 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 490 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 491 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15901,79 +16507,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 491 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 490 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 489 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 488 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15983,20 +16589,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 492 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 492 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -16006,97 +16612,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 493 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 494 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 495 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 495 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 494 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 496 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 496 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16106,13 +16712,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 493 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16122,68 +16728,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 497 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 498 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 498 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 499 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 499 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16193,13 +16799,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 497 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16209,13 +16815,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 500 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16225,70 +16831,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 501 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 502 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 503 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 504 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16301,101 +16907,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 504 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 503 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 502 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 501 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 500 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16405,20 +17011,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 505 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 505 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -16428,97 +17034,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 506 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 507 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 508 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 508 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 507 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 509 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 509 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16528,13 +17134,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 506 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16544,68 +17150,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 510 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 511 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 511 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 512 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 512 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16615,13 +17221,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 510 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16631,13 +17237,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 513 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16647,32 +17253,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 514 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 515 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16685,57 +17291,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 515 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 514 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 513 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16745,20 +17351,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 516 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 516 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -16768,97 +17374,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 517 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 518 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 519 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 519 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 518 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 520 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 520 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16868,13 +17474,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 517 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16884,68 +17490,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 521 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 522 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 522 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 523 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 523 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16955,13 +17561,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 521 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16971,13 +17577,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 524 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16987,89 +17593,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 525 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 526 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 527 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 528 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 529 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17082,123 +17688,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 529 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 528 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 527 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 526 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 525 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 524 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17208,20 +17814,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 530 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 530 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -17231,97 +17837,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 531 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 532 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 533 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 533 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 532 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 534 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 534 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17331,13 +17937,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 531 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17347,68 +17953,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 535 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 536 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 536 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 537 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 537 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17418,13 +18024,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 535 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17434,13 +18040,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 538 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17450,51 +18056,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 539 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 540 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 541 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17507,79 +18113,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 541 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 540 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 539 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 538 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17589,20 +18195,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 542 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 542 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -17612,97 +18218,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 543 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 544 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 545 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 545 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 544 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 546 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 546 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17712,13 +18318,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 543 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17728,68 +18334,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 547 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 548 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 548 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 549 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 549 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17799,13 +18405,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 547 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17815,13 +18421,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 550 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17831,108 +18437,108 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 551 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 552 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 553 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 554 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 555 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 556 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17945,145 +18551,145 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 556 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 return -1326231868 +1014328909 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 555 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 554 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 553 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 552 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 551 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 550 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18093,20 +18699,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 557 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 557 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -18116,97 +18722,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 558 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 559 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 560 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 560 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 559 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 561 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 561 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18216,13 +18822,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 558 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18232,68 +18838,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 562 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 563 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 563 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 564 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 564 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18303,13 +18909,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 562 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18319,13 +18925,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 565 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18335,127 +18941,127 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 566 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 567 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 568 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 569 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 570 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 571 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 572 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18468,167 +19074,167 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 572 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 return -1034442050 +1223685984 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 571 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 return -1326231868 +1014328909 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 570 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 569 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 568 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 567 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 566 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 565 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18638,20 +19244,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 573 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 573 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -18661,97 +19267,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 574 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 575 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 576 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 576 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 575 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 577 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 577 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18761,13 +19367,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 574 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18777,68 +19383,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 578 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 579 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 579 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 580 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 580 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18848,13 +19454,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 578 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18864,13 +19470,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 581 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18880,146 +19486,146 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 582 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 583 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 584 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 585 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 586 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 587 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 588 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 589 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19032,189 +19638,189 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 589 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -470905757 +1463757745 1 return -470905757 +1463757745 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 588 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 return -1034442050 +1223685984 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 587 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 return -1326231868 +1014328909 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 586 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 585 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 584 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 583 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 582 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 581 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19224,20 +19830,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 590 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 590 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -19247,97 +19853,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 591 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 592 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 593 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 593 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 592 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 594 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 594 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19347,13 +19953,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 591 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19363,68 +19969,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 595 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 596 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 596 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 597 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 597 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19434,13 +20040,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 595 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19450,13 +20056,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 598 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19466,70 +20072,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 599 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 600 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 601 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 602 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19542,101 +20148,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 602 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1502515546 +1837760739 1 return -1502515546 +1837760739 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 601 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 600 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 599 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 598 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19646,20 +20252,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 603 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 603 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -19669,97 +20275,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 604 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 605 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 606 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 606 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 605 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 607 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 607 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19769,13 +20375,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 604 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19785,68 +20391,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 608 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 609 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 609 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 610 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 610 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19856,13 +20462,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 608 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19872,13 +20478,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 611 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19888,70 +20494,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 612 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 613 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 614 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 615 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19964,101 +20570,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 615 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1227419517 +2059904228 1 return -1227419517 +2059904228 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 614 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 613 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 612 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 611 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20068,20 +20674,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 616 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 616 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -20091,97 +20697,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 617 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 618 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 619 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 619 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 618 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 620 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 620 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20191,13 +20797,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 617 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20207,68 +20813,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 621 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 622 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 622 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 623 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 623 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20278,13 +20884,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 621 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20294,20 +20900,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 624 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 624 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -20317,68 +20923,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 625 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 626 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 626 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 627 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 627 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1178060083 +1781256139 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20388,13 +20994,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 625 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1032605070 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20404,13 +21010,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 628 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20420,136 +21026,136 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 629 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 630 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 631 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1178060083 +1781256139 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 631 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1502515546 +1837760739 1 return -1502515546 +1837760739 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 630 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 629 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 628 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20559,20 +21165,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 632 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 632 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -20582,97 +21188,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 633 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 634 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 635 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 635 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 634 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 636 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 636 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20682,13 +21288,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 633 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20698,68 +21304,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 637 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 638 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 638 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1502515546 +1837760739 1 return -1502515546 +1837760739 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 639 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1502515546 +1837760739 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 639 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1502515546 +1837760739 1 return -1035818704 +1525262377 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20769,13 +21375,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 637 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1035818704 +1525262377 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20785,20 +21391,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 640 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 640 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -20808,68 +21414,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 641 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 642 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 642 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1502515546 +1837760739 1 return -1502515546 +1837760739 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 643 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1502515546 +1837760739 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 643 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1502515546 +1837760739 1 return -1035818704 +1525262377 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20879,13 +21485,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 641 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1035818704 +1525262377 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20895,13 +21501,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 644 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20911,70 +21517,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 645 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 646 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 647 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1502515546 +1837760739 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 647 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20990,57 +21596,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 646 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 645 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 644 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1035818704 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -21050,20 +21656,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 648 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 648 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -21073,97 +21679,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 649 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 650 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 651 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 651 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 650 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 652 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 652 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21173,13 +21779,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 649 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21189,68 +21795,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 653 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 654 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 654 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 655 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 655 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21260,13 +21866,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 653 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21276,20 +21882,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 656 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 656 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -21299,68 +21905,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 657 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 658 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 658 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 659 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 659 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -1384910173 +2032251042 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21370,13 +21976,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 657 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -22953798 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21386,13 +21992,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 660 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -21402,51 +22008,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 661 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 662 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1384910173 +2032251042 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 662 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -21462,35 +22068,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 661 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 660 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -22953798 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -21500,20 +22106,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 663 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 663 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -21523,97 +22129,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 664 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 665 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 666 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 666 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 665 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 667 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 667 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21623,13 +22229,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 664 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21639,68 +22245,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 668 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 669 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 669 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 670 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 670 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21710,13 +22316,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 668 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21726,20 +22332,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 671 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 671 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return false @@ -21749,68 +22355,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 672 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 673 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 673 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 674 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 674 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 t -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21820,13 +22426,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 672 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 return -1243373525 +853993923 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21836,13 +22442,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 675 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -21852,54 +22458,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 676 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -215465718 +1347870667 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 676 this -1776006353 +1556595366 1 this.root -215465718 +1347870667 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 675 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1243373525 +853993923 1 x.getClass().getName() "DataStructures.MyInteger" @@ -21909,20 +22515,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 677 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 677 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -21932,68 +22538,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 678 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 679 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 679 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 680 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 680 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22003,13 +22609,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 678 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22019,68 +22625,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 681 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 682 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 682 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1227419517 +2059904228 1 return -1227419517 +2059904228 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 683 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1227419517 +2059904228 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 683 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1227419517 +2059904228 1 return -518576549 +1418428263 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22090,13 +22696,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 681 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -518576549 +1418428263 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22106,20 +22712,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 684 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 684 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -22129,68 +22735,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 685 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 686 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 686 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1227419517 +2059904228 1 return -1227419517 +2059904228 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 687 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1227419517 +2059904228 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 687 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1227419517 +2059904228 1 return -518576549 +1418428263 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22200,13 +22806,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 685 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -518576549 +1418428263 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22216,13 +22822,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 688 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -22232,70 +22838,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 689 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 690 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 691 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1227419517 +2059904228 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 691 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -22311,57 +22917,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 690 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 689 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 688 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -518576549 +1418428263 1 x.getClass().getName() "DataStructures.MyInteger" @@ -22371,20 +22977,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 692 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 692 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -22394,68 +23000,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 693 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 694 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 694 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 695 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 695 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22465,13 +23071,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 693 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22481,68 +23087,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 696 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 697 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 697 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 698 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 698 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2116733231 +1166726978 1 return -582771593 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22552,13 +23158,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 696 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -582771593 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22568,20 +23174,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 699 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 699 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -22591,68 +23197,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 700 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 701 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 701 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2116733231 +1166726978 1 return -2116733231 +1166726978 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 702 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 702 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2116733231 +1166726978 1 return -582771593 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22662,13 +23268,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 700 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -582771593 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22678,13 +23284,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 703 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -22694,95 +23300,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 704 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 705 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2116733231 +1166726978 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 705 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 704 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 703 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -582771593 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -22792,20 +23398,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 706 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 706 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -22815,68 +23421,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 707 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 708 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 708 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 709 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 709 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22886,13 +23492,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 707 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22902,68 +23508,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 710 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 711 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 711 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 712 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 712 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -633245190 +1856056345 1 return -721317215 +95395916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22973,13 +23579,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 710 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -721317215 +95395916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22989,20 +23595,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 713 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 713 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -23012,68 +23618,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 714 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 715 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 715 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -633245190 +1856056345 1 return -633245190 +1856056345 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 716 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 716 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -633245190 +1856056345 1 return -721317215 +95395916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23083,13 +23689,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 714 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -721317215 +95395916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23099,13 +23705,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 717 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -23115,95 +23721,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 718 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 719 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -633245190 +1856056345 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 719 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 718 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 717 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -721317215 +95395916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -23213,20 +23819,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 720 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 720 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -23236,68 +23842,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 721 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 722 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 722 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 723 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 723 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23307,13 +23913,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 721 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23323,68 +23929,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 724 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 725 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 725 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 726 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2004439137 +1725097945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 726 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2004439137 +1725097945 1 return -1757511425 +24433162 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23394,13 +24000,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 724 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -1757511425 +24433162 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23410,20 +24016,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 727 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 727 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -23433,68 +24039,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 728 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 729 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 729 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2004439137 +1725097945 1 return -2004439137 +1725097945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 730 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2004439137 +1725097945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 730 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2004439137 +1725097945 1 return -1757511425 +24433162 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23504,13 +24110,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 728 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -1757511425 +24433162 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23520,13 +24126,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 731 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -23536,95 +24142,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 732 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 733 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2004439137 +1725097945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 733 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 return -1326231868 +1014328909 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 732 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 731 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1757511425 +24433162 1 x.getClass().getName() "DataStructures.MyInteger" @@ -23634,20 +24240,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 734 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 734 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -23657,68 +24263,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 735 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 736 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 736 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 737 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 737 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23728,13 +24334,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 735 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23744,68 +24350,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 738 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 739 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 739 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1326231868 +1014328909 1 return -1326231868 +1014328909 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 740 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1326231868 +1014328909 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 740 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1326231868 +1014328909 1 return -2004073288 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23815,13 +24421,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 738 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -2004073288 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23831,20 +24437,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 741 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 741 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -23854,68 +24460,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 742 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 743 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 743 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1326231868 +1014328909 1 return -1326231868 +1014328909 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 744 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1326231868 +1014328909 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 744 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1326231868 +1014328909 1 return -2004073288 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23925,13 +24531,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 742 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -2004073288 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23941,13 +24547,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 745 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -23957,95 +24563,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 746 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 747 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1326231868 +1014328909 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 747 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 return -1034442050 +1223685984 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 746 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 745 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -2004073288 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24055,20 +24661,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 748 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 748 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -24078,68 +24684,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 749 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 750 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 750 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 751 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 751 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24149,13 +24755,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 749 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24165,68 +24771,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 752 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 753 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 753 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -470905757 +1463757745 1 return -470905757 +1463757745 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 754 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -470905757 +1463757745 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 754 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -470905757 +1463757745 1 return -1987411885 +1076835071 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24236,13 +24842,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 752 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -1987411885 +1076835071 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24252,20 +24858,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 755 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 755 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -24275,68 +24881,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 756 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 757 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 757 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -470905757 +1463757745 1 return -470905757 +1463757745 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 758 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -470905757 +1463757745 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 758 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -470905757 +1463757745 1 return -1987411885 +1076835071 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24346,13 +24952,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 756 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -1987411885 +1076835071 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24362,13 +24968,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 759 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24378,70 +24984,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 760 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 761 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 762 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -470905757 +1463757745 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 762 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24457,57 +25063,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 761 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 return -1034442050 +1223685984 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 760 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 759 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1987411885 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24517,20 +25123,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 763 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 763 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -24540,68 +25146,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 764 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 765 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 765 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 766 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 766 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24611,13 +25217,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 764 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24627,68 +25233,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 767 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 768 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 768 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1034442050 +1223685984 1 return -1034442050 +1223685984 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 769 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1034442050 +1223685984 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 769 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1034442050 +1223685984 1 return -1246233263 +2081303229 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24698,13 +25304,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 767 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -1246233263 +2081303229 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24714,20 +25320,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 770 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 770 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -24737,68 +25343,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 771 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 772 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 772 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1034442050 +1223685984 1 return -1034442050 +1223685984 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 773 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1034442050 +1223685984 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 773 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -1034442050 +1223685984 1 return -1246233263 +2081303229 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24808,13 +25414,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 771 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -1246233263 +2081303229 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24824,13 +25430,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 774 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24840,51 +25446,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 775 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 776 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1034442050 +1223685984 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 776 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24900,35 +25506,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 775 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 774 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -1246233263 +2081303229 1 x.getClass().getName() "DataStructures.MyInteger" @@ -24938,20 +25544,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 777 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 777 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -24961,68 +25567,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 778 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 779 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 779 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 780 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 780 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25032,13 +25638,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 778 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25048,68 +25654,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 781 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 782 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 782 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 783 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 783 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25119,13 +25725,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 781 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25135,20 +25741,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 784 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 784 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return false @@ -25158,68 +25764,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 785 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 786 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 786 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 787 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 787 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 t -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25229,13 +25835,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 785 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 return -674893584 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25245,13 +25851,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 788 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25261,32 +25867,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 789 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2075326481 +644460953 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 789 this -1776006353 +1556595366 1 this.root -2075326481 +644460953 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25302,13 +25908,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 788 this -1776006353 +1556595366 1 this.root null 1 x -674893584 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25318,7 +25924,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 790 this -1776006353 +1556595366 1 this.root null @@ -25328,7 +25934,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 790 this -1776006353 +1556595366 1 this.root null @@ -25341,7 +25947,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 791 this -1776006353 +1556595366 1 this.root null @@ -25351,7 +25957,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 792 this -1776006353 +1556595366 1 this.root null @@ -25364,7 +25970,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 792 this -1776006353 +1556595366 1 this.root null @@ -25380,7 +25986,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 793 this -1776006353 +1556595366 1 this.root null @@ -25393,7 +25999,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 793 this -1776006353 +1556595366 1 this.root null @@ -25412,7 +26018,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 791 this -1776006353 +1556595366 1 this.root null @@ -25428,7 +26034,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 794 this -1776006353 +1556595366 1 this.root null @@ -25438,7 +26044,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 795 this -1776006353 +1556595366 1 this.root null @@ -25451,7 +26057,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 795 this -1776006353 +1556595366 1 this.root null @@ -25467,7 +26073,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 796 this -1776006353 +1556595366 1 this.root null @@ -25480,7 +26086,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 796 this -1776006353 +1556595366 1 this.root null @@ -25499,7 +26105,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 794 this -1776006353 +1556595366 1 this.root null @@ -25515,7 +26121,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 797 this -1776006353 +1556595366 1 this.root null @@ -25525,7 +26131,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 797 this -1776006353 +1556595366 1 this.root null @@ -25538,13 +26144,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 798 this -1776006353 +1556595366 1 this.root null 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25554,13 +26160,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 799 this -1776006353 +1556595366 1 this.root null 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25573,13 +26179,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 799 this -1776006353 +1556595366 1 this.root null 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25595,13 +26201,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 798 this -1776006353 +1556595366 1 this.root null 1 x -1032605070 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25611,7 +26217,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 800 this -1776006353 +1556595366 1 this.root null @@ -25621,7 +26227,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 800 this -1776006353 +1556595366 1 this.root null @@ -25634,7 +26240,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 801 this -1776006353 +1556595366 1 this.root null @@ -25644,7 +26250,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 802 this -1776006353 +1556595366 1 this.root null @@ -25657,7 +26263,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 802 this -1776006353 +1556595366 1 this.root null @@ -25673,7 +26279,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 803 this -1776006353 +1556595366 1 this.root null @@ -25686,7 +26292,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 803 this -1776006353 +1556595366 1 this.root null @@ -25705,7 +26311,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 801 this -1776006353 +1556595366 1 this.root null @@ -25721,7 +26327,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 804 this -1776006353 +1556595366 1 this.root null @@ -25731,7 +26337,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 805 this -1776006353 +1556595366 1 this.root null @@ -25744,7 +26350,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 805 this -1776006353 +1556595366 1 this.root null @@ -25760,7 +26366,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 806 this -1776006353 +1556595366 1 this.root null @@ -25773,7 +26379,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 806 this -1776006353 +1556595366 1 this.root null @@ -25792,7 +26398,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 804 this -1776006353 +1556595366 1 this.root null @@ -25808,7 +26414,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 807 this -1776006353 +1556595366 1 this.root null @@ -25818,7 +26424,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 807 this -1776006353 +1556595366 1 this.root null @@ -25831,7 +26437,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 808 this -1776006353 +1556595366 1 this.root null @@ -25841,7 +26447,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 809 this -1776006353 +1556595366 1 this.root null @@ -25854,7 +26460,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 809 this -1776006353 +1556595366 1 this.root null @@ -25870,7 +26476,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 810 this -1776006353 +1556595366 1 this.root null @@ -25883,7 +26489,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 810 this -1776006353 +1556595366 1 this.root null @@ -25902,7 +26508,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 808 this -1776006353 +1556595366 1 this.root null @@ -25918,7 +26524,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 811 this -1776006353 +1556595366 1 this.root null @@ -25928,7 +26534,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 812 this -1776006353 +1556595366 1 this.root null @@ -25941,7 +26547,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 812 this -1776006353 +1556595366 1 this.root null @@ -25957,7 +26563,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 813 this -1776006353 +1556595366 1 this.root null @@ -25970,7 +26576,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 813 this -1776006353 +1556595366 1 this.root null @@ -25989,7 +26595,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 811 this -1776006353 +1556595366 1 this.root null @@ -26005,7 +26611,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 814 this -1776006353 +1556595366 1 this.root null @@ -26015,7 +26621,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 814 this -1776006353 +1556595366 1 this.root null @@ -26025,7 +26631,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 815 this -1776006353 +1556595366 1 this.root null @@ -26035,7 +26641,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 815 this -1776006353 +1556595366 1 this.root null @@ -26048,7 +26654,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 816 this -1776006353 +1556595366 1 this.root null @@ -26058,7 +26664,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 817 this -1776006353 +1556595366 1 this.root null @@ -26071,7 +26677,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 817 this -1776006353 +1556595366 1 this.root null @@ -26087,7 +26693,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 818 this -1776006353 +1556595366 1 this.root null @@ -26100,7 +26706,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 818 this -1776006353 +1556595366 1 this.root null @@ -26119,7 +26725,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 816 this -1776006353 +1556595366 1 this.root null @@ -26135,7 +26741,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 819 this -1776006353 +1556595366 1 this.root null @@ -26145,7 +26751,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 820 this -1776006353 +1556595366 1 this.root null @@ -26158,7 +26764,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 820 this -1776006353 +1556595366 1 this.root null @@ -26174,7 +26780,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 821 this -1776006353 +1556595366 1 this.root null @@ -26187,7 +26793,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 821 this -1776006353 +1556595366 1 this.root null @@ -26206,7 +26812,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 819 this -1776006353 +1556595366 1 this.root null @@ -26222,13 +26828,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 822 this -1776006353 +1556595366 1 this.root null 1 x -511909137 +1836643189 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26238,13 +26844,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 823 this -1776006353 +1556595366 1 this.root null 1 x -511909137 +1836643189 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26257,13 +26863,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 823 this -1776006353 +1556595366 1 this.root null 1 x -511909137 +1836643189 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26279,13 +26885,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 822 this -1776006353 +1556595366 1 this.root null 1 x -511909137 +1836643189 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26295,7 +26901,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 824 this -1776006353 +1556595366 1 this.root null @@ -26305,7 +26911,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 824 this -1776006353 +1556595366 1 this.root null @@ -26318,7 +26924,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 825 this -1776006353 +1556595366 1 this.root null @@ -26328,7 +26934,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 826 this -1776006353 +1556595366 1 this.root null @@ -26341,7 +26947,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 826 this -1776006353 +1556595366 1 this.root null @@ -26357,7 +26963,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 827 this -1776006353 +1556595366 1 this.root null @@ -26370,7 +26976,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 827 this -1776006353 +1556595366 1 this.root null @@ -26389,7 +26995,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 825 this -1776006353 +1556595366 1 this.root null @@ -26405,7 +27011,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 828 this -1776006353 +1556595366 1 this.root null @@ -26415,7 +27021,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 829 this -1776006353 +1556595366 1 this.root null @@ -26428,7 +27034,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 829 this -1776006353 +1556595366 1 this.root null @@ -26444,7 +27050,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 830 this -1776006353 +1556595366 1 this.root null @@ -26457,7 +27063,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 830 this -1776006353 +1556595366 1 this.root null @@ -26476,7 +27082,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 828 this -1776006353 +1556595366 1 this.root null @@ -26492,13 +27098,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 831 this -1776006353 +1556595366 1 this.root null 1 x -837375677 +1355316001 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26508,13 +27114,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 832 this -1776006353 +1556595366 1 this.root null 1 x -837375677 +1355316001 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26527,13 +27133,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 832 this -1776006353 +1556595366 1 this.root null 1 x -837375677 +1355316001 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26549,7 +27155,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 833 this -1776006353 +1556595366 1 this.root null @@ -26562,7 +27168,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 833 this -1776006353 +1556595366 1 this.root null @@ -26581,13 +27187,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 831 this -1776006353 +1556595366 1 this.root null 1 x -837375677 +1355316001 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26607,7 +27213,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 834 this -1312664548 +1597462040 1 this.root null @@ -26617,7 +27223,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 835 this -1312664548 +1597462040 1 this.root null @@ -26627,7 +27233,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 835 this -1312664548 +1597462040 1 this.root null @@ -26640,7 +27246,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 836 this -1312664548 +1597462040 1 this.root null @@ -26650,7 +27256,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 837 this -1312664548 +1597462040 1 this.root null @@ -26663,7 +27269,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 837 this -1312664548 +1597462040 1 this.root null @@ -26679,7 +27285,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 838 this -1312664548 +1597462040 1 this.root null @@ -26692,7 +27298,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 838 this -1312664548 +1597462040 1 this.root null @@ -26711,7 +27317,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 836 this -1312664548 +1597462040 1 this.root null @@ -26727,7 +27333,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 839 this -1312664548 +1597462040 1 this.root null @@ -26737,7 +27343,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 840 this -1312664548 +1597462040 1 this.root null @@ -26750,7 +27356,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 840 this -1312664548 +1597462040 1 this.root null @@ -26766,7 +27372,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 841 this -1312664548 +1597462040 1 this.root null @@ -26779,7 +27385,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 841 this -1312664548 +1597462040 1 this.root null @@ -26798,7 +27404,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 839 this -1312664548 +1597462040 1 this.root null @@ -26814,7 +27420,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 842 this -1312664548 +1597462040 1 this.root null @@ -26824,7 +27430,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 842 this -1312664548 +1597462040 1 this.root null @@ -26837,7 +27443,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 843 this -1312664548 +1597462040 1 this.root null @@ -26847,7 +27453,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 844 this -1312664548 +1597462040 1 this.root null @@ -26860,7 +27466,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 844 this -1312664548 +1597462040 1 this.root null @@ -26876,7 +27482,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 845 this -1312664548 +1597462040 1 this.root null @@ -26889,7 +27495,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 845 this -1312664548 +1597462040 1 this.root null @@ -26908,7 +27514,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 843 this -1312664548 +1597462040 1 this.root null @@ -26924,7 +27530,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 846 this -1312664548 +1597462040 1 this.root null @@ -26934,7 +27540,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 847 this -1312664548 +1597462040 1 this.root null @@ -26947,7 +27553,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 847 this -1312664548 +1597462040 1 this.root null @@ -26963,7 +27569,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 848 this -1312664548 +1597462040 1 this.root null @@ -26976,7 +27582,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 848 this -1312664548 +1597462040 1 this.root null @@ -26995,7 +27601,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 846 this -1312664548 +1597462040 1 this.root null @@ -27011,13 +27617,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 849 this -1312664548 +1597462040 1 this.root null 1 x -853552605 +403716510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27027,13 +27633,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 850 this -1312664548 +1597462040 1 this.root null 1 x -853552605 +403716510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27046,13 +27652,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 850 this -1312664548 +1597462040 1 this.root null 1 x -853552605 +403716510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27068,7 +27674,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 851 this -1312664548 +1597462040 1 this.root null @@ -27081,7 +27687,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 851 this -1312664548 +1597462040 1 this.root null @@ -27100,13 +27706,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 849 this -1312664548 +1597462040 1 this.root null 1 x -853552605 +403716510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27122,13 +27728,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 852 this -1312664548 +1597462040 1 this.root null 1 x -467870275 +853119666 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27138,13 +27744,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 853 this -1312664548 +1597462040 1 this.root null 1 x -467870275 +853119666 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27157,13 +27763,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 853 this -1312664548 +1597462040 1 this.root null 1 x -467870275 +853119666 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27179,13 +27785,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 852 this -1312664548 +1597462040 1 this.root null 1 x -467870275 +853119666 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27195,7 +27801,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 854 this -1312664548 +1597462040 1 this.root null @@ -27205,7 +27811,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 854 this -1312664548 +1597462040 1 this.root null @@ -27218,7 +27824,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 855 this -1312664548 +1597462040 1 this.root null @@ -27228,7 +27834,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 856 this -1312664548 +1597462040 1 this.root null @@ -27241,7 +27847,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 856 this -1312664548 +1597462040 1 this.root null @@ -27257,7 +27863,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 857 this -1312664548 +1597462040 1 this.root null @@ -27270,7 +27876,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 857 this -1312664548 +1597462040 1 this.root null @@ -27289,7 +27895,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 855 this -1312664548 +1597462040 1 this.root null @@ -27305,7 +27911,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 858 this -1312664548 +1597462040 1 this.root null @@ -27315,7 +27921,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 859 this -1312664548 +1597462040 1 this.root null @@ -27328,7 +27934,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 859 this -1312664548 +1597462040 1 this.root null @@ -27344,7 +27950,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 860 this -1312664548 +1597462040 1 this.root null @@ -27357,7 +27963,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 860 this -1312664548 +1597462040 1 this.root null @@ -27376,7 +27982,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 858 this -1312664548 +1597462040 1 this.root null @@ -27392,13 +27998,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 861 this -1312664548 +1597462040 1 this.root null 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27408,13 +28014,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 862 this -1312664548 +1597462040 1 this.root null 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27427,35 +28033,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 862 this -1312664548 +1597462040 1 this.root null 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 861 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27465,20 +28071,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 863 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 863 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -27488,68 +28094,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 864 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 865 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 865 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 866 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 866 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27559,13 +28165,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 864 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27575,68 +28181,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 867 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 868 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 868 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 869 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 869 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27646,13 +28252,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 867 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27662,13 +28268,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 870 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27678,32 +28284,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 871 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 872 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27716,57 +28322,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 872 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 871 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 870 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27776,20 +28382,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 873 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 873 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -27799,68 +28405,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 874 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 875 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 875 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 876 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 876 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27870,13 +28476,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 874 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27886,68 +28492,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 877 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 878 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 878 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 879 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 879 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27957,13 +28563,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 877 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27973,13 +28579,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 880 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27989,51 +28595,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 881 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 882 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 883 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28046,79 +28652,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 883 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 882 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 881 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 880 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28128,20 +28734,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 884 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 884 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -28151,68 +28757,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 885 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 886 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 886 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 887 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 887 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28222,13 +28828,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 885 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28238,68 +28844,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 888 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 889 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 889 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 890 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 890 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28309,13 +28915,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 888 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28325,13 +28931,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 891 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28341,32 +28947,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 892 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 893 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28379,57 +28985,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 893 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 892 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 891 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28439,20 +29045,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 894 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 894 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -28462,97 +29068,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 895 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 896 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 897 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 897 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 896 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 898 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 898 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28562,13 +29168,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 895 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28578,68 +29184,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 899 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 900 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 900 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 901 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 901 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28649,13 +29255,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 899 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28665,13 +29271,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 902 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28681,70 +29287,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 903 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 904 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 905 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 906 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28757,101 +29363,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 906 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 905 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 904 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 903 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 902 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28861,20 +29467,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 907 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 907 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -28884,97 +29490,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 908 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 909 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 910 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 910 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 909 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 911 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 911 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28984,13 +29590,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 908 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29000,68 +29606,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 912 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 913 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 913 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 914 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 914 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29071,13 +29677,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 912 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29087,13 +29693,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 915 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29103,51 +29709,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 916 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 917 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 918 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29160,79 +29766,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 918 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 917 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 916 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 915 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29242,20 +29848,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 919 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 919 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -29265,126 +29871,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 920 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 921 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 922 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 923 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 923 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 922 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 921 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 924 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 924 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29394,13 +30000,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 920 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29410,68 +30016,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 925 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 926 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 926 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 927 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 927 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29481,13 +30087,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 925 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29497,13 +30103,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 928 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29513,51 +30119,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 929 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 930 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 931 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29570,79 +30176,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 931 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 930 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 929 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 928 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29652,20 +30258,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 932 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 932 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -29675,126 +30281,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 933 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 934 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 935 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 936 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 936 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 935 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 934 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 937 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 937 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29804,13 +30410,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 933 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29820,68 +30426,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 938 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 939 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 939 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 940 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 940 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29891,13 +30497,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 938 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29907,13 +30513,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 941 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29923,70 +30529,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 942 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 943 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 944 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 945 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29999,101 +30605,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 945 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 944 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 943 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 942 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 941 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -30103,20 +30709,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 946 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 946 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -30126,155 +30732,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 947 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 948 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 949 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 950 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 951 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 951 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 950 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 949 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 948 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 952 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 952 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30284,13 +30890,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 947 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30300,68 +30906,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 953 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 954 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 954 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 955 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 955 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30371,13 +30977,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 953 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30387,13 +30993,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 956 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -30403,70 +31009,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 957 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 958 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 959 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 960 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -30479,101 +31085,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 960 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1072905931 +2140832232 1 return -1072905931 +2140832232 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 959 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 958 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 957 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 956 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -30583,20 +31189,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 961 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 961 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -30606,155 +31212,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 962 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 963 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 964 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 965 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 966 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 966 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 965 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 964 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 963 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 967 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 967 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30764,13 +31370,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 962 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30780,68 +31386,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 968 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 969 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 969 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 970 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 970 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30851,13 +31457,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 968 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30867,13 +31473,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 971 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -30883,89 +31489,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 972 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 973 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 974 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 975 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 976 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -30978,123 +31584,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 976 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 975 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 974 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 973 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 972 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 971 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31104,20 +31710,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 977 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 977 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -31127,155 +31733,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 978 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 979 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 980 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 981 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 982 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 982 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 981 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 980 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 979 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 983 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 983 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31285,13 +31891,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 978 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31301,68 +31907,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 984 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 985 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 985 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 986 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 986 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31372,13 +31978,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 984 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31388,13 +31994,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 987 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31404,89 +32010,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 988 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 989 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 990 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 991 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 992 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31499,123 +32105,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 992 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1706393036 +1483022288 1 return -1706393036 +1483022288 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 991 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 990 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 989 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 988 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 987 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31625,20 +32231,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 993 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 993 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -31648,155 +32254,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 994 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 995 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 996 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 997 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 998 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 998 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 997 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 996 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 995 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 999 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 999 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31806,13 +32412,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 994 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31822,68 +32428,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1000 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1001 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1001 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1002 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1002 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31893,13 +32499,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1000 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -31909,13 +32515,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1003 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31925,70 +32531,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1004 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1005 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1006 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1007 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32001,101 +32607,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1007 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1006 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1005 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1004 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1003 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32105,20 +32711,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1008 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1008 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -32128,155 +32734,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1009 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1010 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1011 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1012 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1013 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1013 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1012 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1011 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1010 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1014 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1014 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32286,13 +32892,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1009 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32302,68 +32908,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1015 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1016 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1016 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1017 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1017 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32373,13 +32979,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1015 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32389,13 +32995,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1018 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32405,108 +33011,108 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1019 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1020 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1021 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1022 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1023 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1024 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32519,145 +33125,145 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1024 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -160320711 +221036634 1 return -160320711 +221036634 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1023 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1022 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1021 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1020 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1019 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1018 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32667,20 +33273,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1025 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1025 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -32690,155 +33296,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1026 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1027 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1028 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1029 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1030 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1030 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1029 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1028 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1027 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1031 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1031 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32848,13 +33454,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1026 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32864,68 +33470,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1032 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1033 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1033 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1034 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1034 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32935,13 +33541,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1032 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32951,13 +33557,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1035 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32967,89 +33573,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1036 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1037 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1038 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1039 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1040 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" @@ -33062,123 +33668,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1040 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1039 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1038 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1037 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1036 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1035 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" @@ -33188,20 +33794,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1041 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1041 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -33211,155 +33817,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1042 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1043 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1044 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1045 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1046 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1046 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1045 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1044 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1043 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1047 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1047 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33369,13 +33975,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1042 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33385,68 +33991,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1048 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1049 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1049 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1050 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1050 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33456,13 +34062,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1048 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33472,13 +34078,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1051 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" @@ -33488,108 +34094,108 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1052 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1053 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1054 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1055 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1056 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1057 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" @@ -33602,145 +34208,145 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1057 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 return -537324433 +2081853534 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1056 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1055 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1054 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1053 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1052 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1051 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" @@ -33750,20 +34356,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1058 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1058 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -33773,155 +34379,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1059 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1060 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1061 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1062 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1063 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1063 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1062 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1061 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1060 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1064 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1064 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33931,13 +34537,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1059 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33947,68 +34553,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1065 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1066 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1066 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1067 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1067 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34018,13 +34624,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1065 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34034,13 +34640,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1068 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34050,70 +34656,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1069 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1070 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1071 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1072 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34126,101 +34732,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1072 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -927929668 +710714889 1 return -927929668 +710714889 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1071 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1070 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1069 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1068 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34230,20 +34836,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1073 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1073 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -34253,155 +34859,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1074 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1075 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1076 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1077 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1078 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1078 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1077 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1076 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1075 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1079 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1079 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34411,13 +35017,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1074 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34427,68 +35033,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1080 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1081 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1081 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1082 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1082 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34498,13 +35104,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1080 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34514,13 +35120,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1083 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34530,89 +35136,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1084 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1085 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1086 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1087 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1088 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34625,123 +35231,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1088 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1087 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1086 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1085 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1084 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1083 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34751,20 +35357,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1089 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1089 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -34774,184 +35380,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1090 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1091 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1092 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1093 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1094 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1095 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1095 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1094 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1093 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1092 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1091 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1096 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1096 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34961,13 +35567,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1090 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34977,68 +35583,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1097 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1098 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1098 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1099 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1099 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35048,13 +35654,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1097 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35064,13 +35670,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1100 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" @@ -35080,127 +35686,127 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1101 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1102 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1103 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1104 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1105 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1106 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1107 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" @@ -35213,167 +35819,167 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1107 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 return -1382727136 +1734161410 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1106 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 return -537324433 +2081853534 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1105 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1104 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1103 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1102 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1101 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1100 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" @@ -35383,20 +35989,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1108 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1108 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -35406,184 +36012,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1109 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1110 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1111 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1112 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1113 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1114 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1114 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1113 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1112 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1111 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1110 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1115 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1115 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35593,13 +36199,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1109 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35609,68 +36215,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1116 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1117 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1117 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1118 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1118 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35680,13 +36286,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1116 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -35696,13 +36302,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1119 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" @@ -35712,127 +36318,127 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1120 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1121 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1122 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1123 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1124 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1125 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -160320711 +221036634 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1126 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" @@ -35845,167 +36451,167 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1126 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -161007621 +1211076369 1 return -161007621 +1211076369 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1125 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -160320711 +221036634 1 return -160320711 +221036634 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1124 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1123 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1122 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1121 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1120 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1119 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36015,20 +36621,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1127 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1127 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -36038,184 +36644,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1128 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1129 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1130 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1131 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1132 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1133 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1133 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1132 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1131 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1130 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1129 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1134 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1134 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36225,13 +36831,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1128 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36241,68 +36847,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1135 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1136 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1136 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1137 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1137 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36312,13 +36918,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1135 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36328,13 +36934,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1138 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36344,146 +36950,146 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1139 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1140 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1141 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1142 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1143 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1144 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1145 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1146 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36496,189 +37102,189 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1146 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -731289487 +459296537 1 return -731289487 +459296537 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1145 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 return -1382727136 +1734161410 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1144 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 return -537324433 +2081853534 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1143 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1142 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1141 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1140 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1139 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1138 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36688,20 +37294,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1147 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1147 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -36711,184 +37317,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1148 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1149 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1150 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1151 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1152 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1153 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1153 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1152 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1151 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1150 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1149 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1154 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1154 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36898,13 +37504,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1148 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36914,68 +37520,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1155 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1156 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1156 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1157 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1157 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36985,13 +37591,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1155 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37001,20 +37607,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1158 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1158 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -37024,68 +37630,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1159 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1160 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1160 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1161 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1161 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1542923582 +1418370913 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37095,13 +37701,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1159 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1565696439 +1335050193 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37111,13 +37717,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1162 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37127,218 +37733,218 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1163 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1164 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1165 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1166 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1167 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1542923582 +1418370913 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1167 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 return -537324433 +2081853534 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1166 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1165 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1164 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1163 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1162 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1565696439 +1335050193 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37348,20 +37954,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1168 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1168 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -37371,184 +37977,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1169 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1170 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1171 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1172 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1173 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1174 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1174 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1173 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1172 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1171 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1170 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1175 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1175 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37558,13 +38164,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1169 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37574,68 +38180,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1176 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1177 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1177 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -537324433 +2081853534 1 return -537324433 +2081853534 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1178 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -537324433 +2081853534 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1178 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -537324433 +2081853534 1 return -1051605149 +391359742 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37645,13 +38251,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1176 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1051605149 +391359742 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37661,20 +38267,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1179 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1179 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -37684,68 +38290,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1180 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1181 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1181 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -537324433 +2081853534 1 return -537324433 +2081853534 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1182 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -537324433 +2081853534 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1182 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -537324433 +2081853534 1 return -1051605149 +391359742 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37755,13 +38361,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1180 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1051605149 +391359742 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37771,13 +38377,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1183 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" @@ -37787,218 +38393,218 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1184 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1185 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1186 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1187 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1188 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -537324433 +2081853534 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1188 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 return -1382727136 +1734161410 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1187 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1186 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1185 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1184 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1183 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1051605149 +391359742 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38008,20 +38614,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1189 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1189 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -38031,184 +38637,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1190 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1191 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1192 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1193 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1194 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1195 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1195 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1194 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1193 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1192 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1191 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1196 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1196 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38218,13 +38824,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1190 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38234,68 +38840,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1197 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1198 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1198 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -731289487 +459296537 1 return -731289487 +459296537 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1199 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -731289487 +459296537 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1199 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -731289487 +459296537 1 return -225690927 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38305,13 +38911,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1197 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -225690927 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38321,20 +38927,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1200 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1200 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -38344,68 +38950,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1201 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1202 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1202 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -731289487 +459296537 1 return -731289487 +459296537 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1203 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -731289487 +459296537 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1203 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -731289487 +459296537 1 return -225690927 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38415,13 +39021,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1201 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -225690927 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38431,13 +39037,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1204 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38447,127 +39053,127 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1205 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1206 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1207 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1208 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1209 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1210 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -731289487 +459296537 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1210 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38583,123 +39189,123 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1209 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 return -1382727136 +1734161410 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1208 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1207 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1206 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1205 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1204 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -225690927 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38709,20 +39315,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1211 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1211 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -38732,184 +39338,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1212 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1213 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1214 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1215 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1216 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1217 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1217 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1216 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1215 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1214 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1213 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1218 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1218 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38919,13 +39525,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1212 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38935,68 +39541,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1219 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1220 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1220 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1382727136 +1734161410 1 return -1382727136 +1734161410 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1221 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1382727136 +1734161410 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1221 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1382727136 +1734161410 1 return -1639539799 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39006,13 +39612,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1219 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1639539799 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39022,20 +39628,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1222 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1222 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -39045,68 +39651,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1223 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1224 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1224 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1382727136 +1734161410 1 return -1382727136 +1734161410 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1225 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1382727136 +1734161410 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1225 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1382727136 +1734161410 1 return -1639539799 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39116,13 +39722,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1223 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1639539799 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39132,13 +39738,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1226 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39148,108 +39754,108 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1227 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1228 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1229 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1230 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1231 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1382727136 +1734161410 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1231 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39265,101 +39871,101 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1230 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1229 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1228 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1227 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1226 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1639539799 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39369,20 +39975,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1232 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1232 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -39392,184 +39998,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1233 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1234 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1235 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1236 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1237 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1238 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1238 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1237 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1236 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1235 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1234 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1239 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1239 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39579,13 +40185,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1233 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39595,68 +40201,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1240 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1241 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1241 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1242 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1242 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39666,13 +40272,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1240 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39682,20 +40288,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1243 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1243 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -39705,68 +40311,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1244 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1245 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1245 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1246 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1246 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1413779209 +1410986873 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39776,13 +40382,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1244 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1851134014 +1159785389 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39792,13 +40398,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1247 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39808,89 +40414,89 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1248 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1249 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1250 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1251 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1413779209 +1410986873 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1251 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39906,79 +40512,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1250 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1249 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1248 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1247 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1851134014 +1159785389 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39988,20 +40594,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1252 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1252 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -40011,184 +40617,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1253 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1254 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1255 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1256 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1257 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1258 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1258 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1257 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1256 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1255 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1254 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1259 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1259 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40198,13 +40804,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1253 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40214,68 +40820,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1260 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1261 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1261 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1262 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1262 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40285,13 +40891,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1260 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40301,20 +40907,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1263 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1263 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -40324,68 +40930,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1264 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1265 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1265 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1266 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1266 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1846436036 +1374677625 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40395,13 +41001,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1264 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2282005 +1828757853 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40411,13 +41017,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1267 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40427,70 +41033,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1268 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1269 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1270 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846436036 +1374677625 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1270 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40506,57 +41112,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1269 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1268 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1267 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40566,20 +41172,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1271 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1271 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -40589,184 +41195,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1272 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1273 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1274 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1275 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1276 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1277 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1277 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1276 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1275 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1274 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1273 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1278 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1278 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40776,13 +41382,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1272 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40792,68 +41398,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1279 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1280 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1280 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1281 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1281 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40863,13 +41469,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1279 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40879,20 +41485,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1282 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1282 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -40902,68 +41508,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1283 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1284 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1284 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1285 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1285 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -755507289 +600746945 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40973,13 +41579,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1283 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1904504032 +1576861390 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40989,13 +41595,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1286 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41005,95 +41611,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1287 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1288 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -755507289 +600746945 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1288 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1287 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1286 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1904504032 +1576861390 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41103,20 +41709,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1289 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1289 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -41126,184 +41732,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1290 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1291 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1292 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1293 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1294 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1295 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1295 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1294 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1293 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1292 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1291 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1296 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1296 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41313,13 +41919,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1290 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41329,68 +41935,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1297 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1298 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1298 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1072905931 +2140832232 1 return -1072905931 +2140832232 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1299 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1072905931 +2140832232 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1299 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1072905931 +2140832232 1 return -1920494563 +1359484306 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41400,13 +42006,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1297 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1920494563 +1359484306 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41416,20 +42022,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1300 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1300 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -41439,68 +42045,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1301 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1302 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1302 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1072905931 +2140832232 1 return -1072905931 +2140832232 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1303 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1072905931 +2140832232 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1303 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1072905931 +2140832232 1 return -1920494563 +1359484306 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41510,13 +42116,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1301 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1920494563 +1359484306 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41526,13 +42132,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1304 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41542,70 +42148,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1305 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1306 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1307 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1072905931 +2140832232 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1307 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41621,57 +42227,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1306 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1305 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1304 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1920494563 +1359484306 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41681,20 +42287,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1308 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1308 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -41704,184 +42310,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1309 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1310 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1311 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1312 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1313 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1314 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1314 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1313 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1312 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1311 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1310 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1315 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1315 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41891,13 +42497,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1309 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41907,68 +42513,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1316 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1317 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1317 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1318 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1318 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1548550182 +1458849419 1 return -1887685159 +1566502717 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41978,13 +42584,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1316 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1887685159 +1566502717 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41994,20 +42600,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1319 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1319 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -42017,68 +42623,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1320 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1321 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1321 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1548550182 +1458849419 1 return -1548550182 +1458849419 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1322 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1322 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1548550182 +1458849419 1 return -1887685159 +1566502717 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42088,13 +42694,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1320 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1887685159 +1566502717 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42104,13 +42710,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1323 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42120,95 +42726,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1324 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1325 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1548550182 +1458849419 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1325 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1324 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1323 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1887685159 +1566502717 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42218,20 +42824,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1326 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1326 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -42241,184 +42847,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1327 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1328 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1329 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1330 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1331 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1332 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1332 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1331 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1330 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1329 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1328 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1333 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1333 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42428,13 +43034,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1327 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42444,68 +43050,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1334 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1335 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1335 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -161007621 +1211076369 1 return -161007621 +1211076369 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1336 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -161007621 +1211076369 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1336 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -161007621 +1211076369 1 return -1574430565 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42515,13 +43121,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1334 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1574430565 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42531,20 +43137,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1337 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1337 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -42554,68 +43160,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1338 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1339 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1339 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -161007621 +1211076369 1 return -161007621 +1211076369 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1340 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -161007621 +1211076369 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1340 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -161007621 +1211076369 1 return -1574430565 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42625,13 +43231,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1338 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1574430565 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42641,13 +43247,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1341 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42657,108 +43263,108 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1342 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1343 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1344 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1345 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -160320711 +221036634 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1346 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -161007621 +1211076369 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1346 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42774,101 +43380,101 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1345 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -160320711 +221036634 1 return -160320711 +221036634 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1344 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1343 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1342 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1341 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1574430565 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42878,20 +43484,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1347 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1347 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -42901,184 +43507,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1348 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1349 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1350 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1351 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1352 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1353 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1353 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1352 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1351 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1350 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1349 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1354 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1354 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43088,13 +43694,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1348 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43104,68 +43710,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1355 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1356 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1356 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -160320711 +221036634 1 return -160320711 +221036634 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1357 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -160320711 +221036634 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1357 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -160320711 +221036634 1 return -1628095255 +2110245805 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43175,13 +43781,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1355 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1628095255 +2110245805 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43191,20 +43797,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1358 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1358 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -43214,68 +43820,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1359 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1360 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1360 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -160320711 +221036634 1 return -160320711 +221036634 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1361 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -160320711 +221036634 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1361 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -160320711 +221036634 1 return -1628095255 +2110245805 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43285,13 +43891,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1359 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1628095255 +2110245805 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43301,13 +43907,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1362 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43317,89 +43923,89 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1363 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1364 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1365 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1366 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -160320711 +221036634 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1366 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43415,79 +44021,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1365 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1364 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1363 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1362 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1628095255 +2110245805 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43497,20 +44103,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1367 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1367 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -43520,184 +44126,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1368 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1369 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1370 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1371 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1372 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1373 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1373 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1372 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1371 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1370 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1369 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1374 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1374 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43707,13 +44313,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1368 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43723,68 +44329,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1375 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1376 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1376 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1377 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1377 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -106138388 +1659791576 1 return -2057282105 +157456214 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43794,13 +44400,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1375 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2057282105 +157456214 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43810,20 +44416,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1378 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1378 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -43833,68 +44439,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1379 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1380 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1380 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -106138388 +1659791576 1 return -106138388 +1659791576 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1381 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1381 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -106138388 +1659791576 1 return -2057282105 +157456214 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43904,13 +44510,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1379 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -2057282105 +157456214 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43920,13 +44526,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1382 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43936,70 +44542,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1383 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1384 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1385 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -106138388 +1659791576 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1385 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44015,57 +44621,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1384 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1383 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1382 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -2057282105 +157456214 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44075,20 +44681,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1386 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1386 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -44098,184 +44704,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1387 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1388 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1389 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1390 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1391 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1392 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1392 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1391 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1390 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1389 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1388 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1393 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1393 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44285,13 +44891,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1387 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44301,68 +44907,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1394 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1395 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1395 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1396 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1396 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -567754741 +1681595665 1 return -440851213 +269468037 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44372,13 +44978,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1394 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -440851213 +269468037 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44388,20 +44994,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1397 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1397 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -44411,68 +45017,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1398 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1399 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1399 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -567754741 +1681595665 1 return -567754741 +1681595665 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1400 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1400 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -567754741 +1681595665 1 return -440851213 +269468037 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44482,13 +45088,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1398 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -440851213 +269468037 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44498,13 +45104,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1401 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44514,51 +45120,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1402 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1403 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -567754741 +1681595665 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1403 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44574,35 +45180,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1402 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1401 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -440851213 +269468037 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44612,20 +45218,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1404 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1404 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -44635,184 +45241,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1405 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1406 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1407 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1408 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1409 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1410 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1410 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1409 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1408 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1407 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1406 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1411 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1411 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44822,13 +45428,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1405 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44838,68 +45444,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1412 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1413 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1413 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1414 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1414 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44909,13 +45515,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1412 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44925,20 +45531,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1415 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1415 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return false @@ -44948,68 +45554,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1416 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1417 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1417 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1418 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1418 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 t -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45019,13 +45625,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1416 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 return -1558080258 +559670971 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45035,13 +45641,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1419 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45051,54 +45657,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1420 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -239304688 +1144648478 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1420 this -1312664548 +1597462040 1 this.root -239304688 +1144648478 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1419 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 x -1558080258 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45108,20 +45714,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1421 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1421 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 return false @@ -45131,155 +45737,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1422 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1423 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1424 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1425 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1426 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1426 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1425 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1424 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1423 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1427 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1427 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45289,13 +45895,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1422 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45305,68 +45911,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1428 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1429 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1429 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1430 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1430 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45376,13 +45982,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1428 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45392,20 +45998,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1431 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1431 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 return false @@ -45415,68 +46021,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1432 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1433 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1433 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 return -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1434 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1434 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 t -1651366663 +981661423 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45486,13 +46092,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1432 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 return -1128590881 +1824835605 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45502,13 +46108,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1435 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45518,54 +46124,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1436 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1651366663 +981661423 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1436 this -1312664548 +1597462040 1 this.root -1651366663 +981661423 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1435 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -1128590881 +1824835605 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45575,20 +46181,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1437 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1437 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return false @@ -45598,126 +46204,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1438 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1439 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1440 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1441 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1441 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1440 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1439 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1442 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1442 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45727,13 +46333,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1438 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45743,68 +46349,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1443 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1444 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1444 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -927929668 +710714889 1 return -927929668 +710714889 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1445 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -927929668 +710714889 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1445 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -927929668 +710714889 1 return -643009796 +707610042 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45814,13 +46420,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1443 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return -643009796 +707610042 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45830,20 +46436,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1446 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1446 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return false @@ -45853,68 +46459,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1447 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1448 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1448 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -927929668 +710714889 1 return -927929668 +710714889 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1449 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -927929668 +710714889 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1449 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -927929668 +710714889 1 return -643009796 +707610042 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45924,13 +46530,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1447 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return -643009796 +707610042 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45940,13 +46546,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1450 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45956,51 +46562,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1451 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1452 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -927929668 +710714889 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1452 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46016,35 +46622,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1451 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1450 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -643009796 +707610042 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46054,20 +46660,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1453 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1453 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return false @@ -46077,126 +46683,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1454 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1455 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1456 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1457 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1457 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1456 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1455 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1458 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1458 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46206,13 +46812,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1454 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46222,68 +46828,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1459 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1460 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1460 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1461 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1461 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46293,13 +46899,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1459 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46309,20 +46915,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1462 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1462 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return false @@ -46332,68 +46938,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1463 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1464 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1464 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 return -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1465 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1465 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 t -1801601815 +57494364 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46403,13 +47009,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1463 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 return -984088366 +787867107 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46419,13 +47025,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1466 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46435,54 +47041,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1467 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1801601815 +57494364 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1467 this -1312664548 +1597462040 1 this.root -1801601815 +57494364 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1466 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -984088366 +787867107 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46492,20 +47098,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1468 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1468 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return false @@ -46515,97 +47121,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1469 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1470 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1471 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1471 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1470 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1472 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1472 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46615,13 +47221,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1469 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46631,68 +47237,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1473 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1474 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1474 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -1706393036 +1483022288 1 return -1706393036 +1483022288 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1475 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -1706393036 +1483022288 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1475 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -1706393036 +1483022288 1 return -1456460106 +1935365522 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46702,13 +47308,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1473 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return -1456460106 +1935365522 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46718,20 +47324,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1476 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1476 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return false @@ -46741,68 +47347,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1477 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1478 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1478 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -1706393036 +1483022288 1 return -1706393036 +1483022288 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1479 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -1706393036 +1483022288 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1479 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -1706393036 +1483022288 1 return -1456460106 +1935365522 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46812,13 +47418,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1477 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return -1456460106 +1935365522 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46828,13 +47434,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1480 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46844,51 +47450,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1481 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1482 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1706393036 +1483022288 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1482 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46904,35 +47510,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1481 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1480 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1456460106 +1935365522 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46942,20 +47548,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1483 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1483 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return false @@ -46965,97 +47571,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1484 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1485 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1486 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1486 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1485 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1487 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1487 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47065,13 +47671,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1484 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47081,68 +47687,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1488 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1489 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1489 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1490 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1490 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47152,13 +47758,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1488 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47168,20 +47774,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1491 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1491 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return false @@ -47191,68 +47797,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1492 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1493 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1493 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 return -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1494 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1494 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 t -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47262,13 +47868,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1492 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 return -1911757902 +1345636186 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47278,13 +47884,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1495 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47294,54 +47900,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1496 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -264732500 +963269035 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1496 this -1312664548 +1597462040 1 this.root -264732500 +963269035 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1495 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 x -1911757902 +1345636186 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47351,20 +47957,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1497 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1497 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 return false @@ -47374,68 +47980,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1498 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1499 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1499 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1500 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1500 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47445,13 +48051,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1498 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47461,68 +48067,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1501 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1502 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1502 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1503 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1503 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47532,13 +48138,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1501 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47548,20 +48154,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1504 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1504 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 return false @@ -47571,68 +48177,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1505 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1506 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1506 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 return -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1507 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1507 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 t -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47642,13 +48248,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1505 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 return -687685562 +551734240 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47658,13 +48264,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1508 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47674,32 +48280,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1509 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -174252380 +1757293506 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1509 this -1312664548 +1597462040 1 this.root -174252380 +1757293506 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47715,13 +48321,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1508 this -1312664548 +1597462040 1 this.root null 1 x -687685562 +551734240 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47731,7 +48337,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1510 this -1312664548 +1597462040 1 this.root null @@ -47741,7 +48347,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1510 this -1312664548 +1597462040 1 this.root null @@ -47754,7 +48360,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1511 this -1312664548 +1597462040 1 this.root null @@ -47764,7 +48370,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1512 this -1312664548 +1597462040 1 this.root null @@ -47777,7 +48383,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1512 this -1312664548 +1597462040 1 this.root null @@ -47793,7 +48399,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1513 this -1312664548 +1597462040 1 this.root null @@ -47806,7 +48412,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1513 this -1312664548 +1597462040 1 this.root null @@ -47825,7 +48431,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1511 this -1312664548 +1597462040 1 this.root null @@ -47841,7 +48447,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1514 this -1312664548 +1597462040 1 this.root null @@ -47851,7 +48457,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1515 this -1312664548 +1597462040 1 this.root null @@ -47864,7 +48470,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1515 this -1312664548 +1597462040 1 this.root null @@ -47880,7 +48486,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1516 this -1312664548 +1597462040 1 this.root null @@ -47893,7 +48499,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1516 this -1312664548 +1597462040 1 this.root null @@ -47912,7 +48518,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1514 this -1312664548 +1597462040 1 this.root null @@ -47928,7 +48534,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1517 this -1312664548 +1597462040 1 this.root null @@ -47938,7 +48544,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1517 this -1312664548 +1597462040 1 this.root null @@ -47951,13 +48557,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1518 this -1312664548 +1597462040 1 this.root null 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47967,13 +48573,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1519 this -1312664548 +1597462040 1 this.root null 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47986,13 +48592,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1519 this -1312664548 +1597462040 1 this.root null 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48008,13 +48614,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1518 this -1312664548 +1597462040 1 this.root null 1 x -2282005 +1828757853 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48024,7 +48630,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1520 this -1312664548 +1597462040 1 this.root null @@ -48034,7 +48640,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1520 this -1312664548 +1597462040 1 this.root null @@ -48047,7 +48653,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1521 this -1312664548 +1597462040 1 this.root null @@ -48057,7 +48663,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1522 this -1312664548 +1597462040 1 this.root null @@ -48070,7 +48676,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1522 this -1312664548 +1597462040 1 this.root null @@ -48086,7 +48692,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1523 this -1312664548 +1597462040 1 this.root null @@ -48099,7 +48705,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1523 this -1312664548 +1597462040 1 this.root null @@ -48118,7 +48724,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1521 this -1312664548 +1597462040 1 this.root null @@ -48134,7 +48740,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1524 this -1312664548 +1597462040 1 this.root null @@ -48144,7 +48750,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1525 this -1312664548 +1597462040 1 this.root null @@ -48157,7 +48763,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1525 this -1312664548 +1597462040 1 this.root null @@ -48173,7 +48779,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1526 this -1312664548 +1597462040 1 this.root null @@ -48186,7 +48792,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1526 this -1312664548 +1597462040 1 this.root null @@ -48205,7 +48811,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1524 this -1312664548 +1597462040 1 this.root null @@ -48221,7 +48827,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1527 this -1312664548 +1597462040 1 this.root null @@ -48231,7 +48837,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1527 this -1312664548 +1597462040 1 this.root null @@ -48244,7 +48850,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1528 this -1312664548 +1597462040 1 this.root null @@ -48254,7 +48860,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1529 this -1312664548 +1597462040 1 this.root null @@ -48267,7 +48873,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1529 this -1312664548 +1597462040 1 this.root null @@ -48283,7 +48889,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1530 this -1312664548 +1597462040 1 this.root null @@ -48296,7 +48902,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1530 this -1312664548 +1597462040 1 this.root null @@ -48315,7 +48921,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1528 this -1312664548 +1597462040 1 this.root null @@ -48331,7 +48937,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1531 this -1312664548 +1597462040 1 this.root null @@ -48341,7 +48947,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1532 this -1312664548 +1597462040 1 this.root null @@ -48354,7 +48960,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1532 this -1312664548 +1597462040 1 this.root null @@ -48370,7 +48976,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1533 this -1312664548 +1597462040 1 this.root null @@ -48383,7 +48989,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1533 this -1312664548 +1597462040 1 this.root null @@ -48402,7 +49008,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1531 this -1312664548 +1597462040 1 this.root null @@ -48418,7 +49024,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 1534 this -1312664548 +1597462040 1 this.root null @@ -48428,7 +49034,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 1534 this -1312664548 +1597462040 1 this.root null @@ -48438,7 +49044,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1535 this -1312664548 +1597462040 1 this.root null @@ -48448,7 +49054,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1535 this -1312664548 +1597462040 1 this.root null @@ -48461,7 +49067,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1536 this -1312664548 +1597462040 1 this.root null @@ -48471,7 +49077,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1537 this -1312664548 +1597462040 1 this.root null @@ -48484,7 +49090,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1537 this -1312664548 +1597462040 1 this.root null @@ -48500,7 +49106,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1538 this -1312664548 +1597462040 1 this.root null @@ -48513,7 +49119,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1538 this -1312664548 +1597462040 1 this.root null @@ -48532,7 +49138,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1536 this -1312664548 +1597462040 1 this.root null @@ -48548,7 +49154,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1539 this -1312664548 +1597462040 1 this.root null @@ -48558,7 +49164,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1540 this -1312664548 +1597462040 1 this.root null @@ -48571,7 +49177,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1540 this -1312664548 +1597462040 1 this.root null @@ -48587,7 +49193,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1541 this -1312664548 +1597462040 1 this.root null @@ -48600,7 +49206,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1541 this -1312664548 +1597462040 1 this.root null @@ -48619,7 +49225,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1539 this -1312664548 +1597462040 1 this.root null @@ -48635,13 +49241,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1542 this -1312664548 +1597462040 1 this.root null 1 x -733496228 +2015601401 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48651,13 +49257,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1543 this -1312664548 +1597462040 1 this.root null 1 x -733496228 +2015601401 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48670,13 +49276,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1543 this -1312664548 +1597462040 1 this.root null 1 x -733496228 +2015601401 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48692,13 +49298,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1542 this -1312664548 +1597462040 1 this.root null 1 x -733496228 +2015601401 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48708,7 +49314,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1544 this -1312664548 +1597462040 1 this.root null @@ -48718,7 +49324,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1544 this -1312664548 +1597462040 1 this.root null @@ -48731,7 +49337,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1545 this -1312664548 +1597462040 1 this.root null @@ -48741,7 +49347,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1546 this -1312664548 +1597462040 1 this.root null @@ -48754,7 +49360,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1546 this -1312664548 +1597462040 1 this.root null @@ -48770,7 +49376,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1547 this -1312664548 +1597462040 1 this.root null @@ -48783,7 +49389,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1547 this -1312664548 +1597462040 1 this.root null @@ -48802,7 +49408,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1545 this -1312664548 +1597462040 1 this.root null @@ -48818,7 +49424,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1548 this -1312664548 +1597462040 1 this.root null @@ -48828,7 +49434,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1549 this -1312664548 +1597462040 1 this.root null @@ -48841,7 +49447,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1549 this -1312664548 +1597462040 1 this.root null @@ -48857,7 +49463,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1550 this -1312664548 +1597462040 1 this.root null @@ -48870,7 +49476,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1550 this -1312664548 +1597462040 1 this.root null @@ -48889,7 +49495,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1548 this -1312664548 +1597462040 1 this.root null @@ -48905,13 +49511,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1551 this -1312664548 +1597462040 1 this.root null 1 x -1314970216 +1287712235 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48921,13 +49527,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1552 this -1312664548 +1597462040 1 this.root null 1 x -1314970216 +1287712235 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48940,13 +49546,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1552 this -1312664548 +1597462040 1 this.root null 1 x -1314970216 +1287712235 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48962,7 +49568,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1553 this -1312664548 +1597462040 1 this.root null @@ -48975,7 +49581,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1553 this -1312664548 +1597462040 1 this.root null @@ -48994,13 +49600,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1551 this -1312664548 +1597462040 1 this.root null 1 x -1314970216 +1287712235 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49020,7 +49626,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 1554 this -950209035 +1165897474 1 this.root null @@ -49030,7 +49636,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1555 this -950209035 +1165897474 1 this.root null @@ -49040,7 +49646,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1555 this -950209035 +1165897474 1 this.root null @@ -49053,7 +49659,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1556 this -950209035 +1165897474 1 this.root null @@ -49063,7 +49669,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1557 this -950209035 +1165897474 1 this.root null @@ -49076,7 +49682,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1557 this -950209035 +1165897474 1 this.root null @@ -49092,7 +49698,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1558 this -950209035 +1165897474 1 this.root null @@ -49105,7 +49711,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1558 this -950209035 +1165897474 1 this.root null @@ -49124,7 +49730,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1556 this -950209035 +1165897474 1 this.root null @@ -49140,7 +49746,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1559 this -950209035 +1165897474 1 this.root null @@ -49150,7 +49756,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1560 this -950209035 +1165897474 1 this.root null @@ -49163,7 +49769,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1560 this -950209035 +1165897474 1 this.root null @@ -49179,7 +49785,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1561 this -950209035 +1165897474 1 this.root null @@ -49192,7 +49798,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1561 this -950209035 +1165897474 1 this.root null @@ -49211,7 +49817,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1559 this -950209035 +1165897474 1 this.root null @@ -49227,13 +49833,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1562 this -950209035 +1165897474 1 this.root null 1 x -1474852153 +1551870003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49243,13 +49849,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1563 this -950209035 +1165897474 1 this.root null 1 x -1474852153 +1551870003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49262,13 +49868,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1563 this -950209035 +1165897474 1 this.root null 1 x -1474852153 +1551870003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49284,13 +49890,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1562 this -950209035 +1165897474 1 this.root null 1 x -1474852153 +1551870003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49300,7 +49906,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1564 this -950209035 +1165897474 1 this.root null @@ -49310,7 +49916,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1564 this -950209035 +1165897474 1 this.root null @@ -49323,7 +49929,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1565 this -950209035 +1165897474 1 this.root null @@ -49333,7 +49939,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1566 this -950209035 +1165897474 1 this.root null @@ -49346,7 +49952,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1566 this -950209035 +1165897474 1 this.root null @@ -49362,7 +49968,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1567 this -950209035 +1165897474 1 this.root null @@ -49375,7 +49981,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1567 this -950209035 +1165897474 1 this.root null @@ -49394,7 +50000,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1565 this -950209035 +1165897474 1 this.root null @@ -49410,7 +50016,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1568 this -950209035 +1165897474 1 this.root null @@ -49420,7 +50026,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1569 this -950209035 +1165897474 1 this.root null @@ -49433,7 +50039,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1569 this -950209035 +1165897474 1 this.root null @@ -49449,7 +50055,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1570 this -950209035 +1165897474 1 this.root null @@ -49462,7 +50068,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1570 this -950209035 +1165897474 1 this.root null @@ -49481,7 +50087,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1568 this -950209035 +1165897474 1 this.root null @@ -49497,7 +50103,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 1571 this -950209035 +1165897474 1 this.root null @@ -49507,7 +50113,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 1571 this -950209035 +1165897474 1 this.root null @@ -49517,7 +50123,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1572 this -950209035 +1165897474 1 this.root null @@ -49527,7 +50133,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1572 this -950209035 +1165897474 1 this.root null @@ -49540,7 +50146,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1573 this -950209035 +1165897474 1 this.root null @@ -49550,7 +50156,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1574 this -950209035 +1165897474 1 this.root null @@ -49563,7 +50169,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1574 this -950209035 +1165897474 1 this.root null @@ -49579,7 +50185,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1575 this -950209035 +1165897474 1 this.root null @@ -49592,7 +50198,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1575 this -950209035 +1165897474 1 this.root null @@ -49611,7 +50217,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1573 this -950209035 +1165897474 1 this.root null @@ -49627,7 +50233,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1576 this -950209035 +1165897474 1 this.root null @@ -49637,7 +50243,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1577 this -950209035 +1165897474 1 this.root null @@ -49650,7 +50256,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1577 this -950209035 +1165897474 1 this.root null @@ -49666,7 +50272,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1578 this -950209035 +1165897474 1 this.root null @@ -49679,7 +50285,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1578 this -950209035 +1165897474 1 this.root null @@ -49698,7 +50304,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1576 this -950209035 +1165897474 1 this.root null @@ -49714,13 +50320,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1579 this -950209035 +1165897474 1 this.root null 1 x -1583881797 +967765295 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49730,13 +50336,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1580 this -950209035 +1165897474 1 this.root null 1 x -1583881797 +967765295 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49749,13 +50355,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1580 this -950209035 +1165897474 1 this.root null 1 x -1583881797 +967765295 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49771,13 +50377,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1579 this -950209035 +1165897474 1 this.root null 1 x -1583881797 +967765295 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49787,7 +50393,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1581 this -950209035 +1165897474 1 this.root null @@ -49797,7 +50403,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1581 this -950209035 +1165897474 1 this.root null @@ -49810,7 +50416,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1582 this -950209035 +1165897474 1 this.root null @@ -49820,7 +50426,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1583 this -950209035 +1165897474 1 this.root null @@ -49833,7 +50439,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1583 this -950209035 +1165897474 1 this.root null @@ -49849,7 +50455,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1584 this -950209035 +1165897474 1 this.root null @@ -49862,7 +50468,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1584 this -950209035 +1165897474 1 this.root null @@ -49881,7 +50487,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1582 this -950209035 +1165897474 1 this.root null @@ -49897,7 +50503,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1585 this -950209035 +1165897474 1 this.root null @@ -49907,7 +50513,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1586 this -950209035 +1165897474 1 this.root null @@ -49920,7 +50526,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1586 this -950209035 +1165897474 1 this.root null @@ -49936,7 +50542,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1587 this -950209035 +1165897474 1 this.root null @@ -49949,7 +50555,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1587 this -950209035 +1165897474 1 this.root null @@ -49968,7 +50574,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1585 this -950209035 +1165897474 1 this.root null @@ -49984,13 +50590,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1588 this -950209035 +1165897474 1 this.root null 1 x -94073967 +1917513796 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50000,13 +50606,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1589 this -950209035 +1165897474 1 this.root null 1 x -94073967 +1917513796 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50019,13 +50625,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1589 this -950209035 +1165897474 1 this.root null 1 x -94073967 +1917513796 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50041,13 +50647,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1588 this -950209035 +1165897474 1 this.root null 1 x -94073967 +1917513796 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50057,7 +50663,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1590 this -950209035 +1165897474 1 this.root null @@ -50067,7 +50673,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1590 this -950209035 +1165897474 1 this.root null @@ -50080,7 +50686,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1591 this -950209035 +1165897474 1 this.root null @@ -50090,7 +50696,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1592 this -950209035 +1165897474 1 this.root null @@ -50103,7 +50709,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 1592 this -950209035 +1165897474 1 this.root null @@ -50119,7 +50725,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1593 this -950209035 +1165897474 1 this.root null @@ -50132,7 +50738,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1593 this -950209035 +1165897474 1 this.root null @@ -50151,7 +50757,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1591 this -950209035 +1165897474 1 this.root null @@ -50167,7 +50773,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1594 this -950209035 +1165897474 1 this.root null @@ -50177,7 +50783,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1595 this -950209035 +1165897474 1 this.root null @@ -50190,7 +50796,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1595 this -950209035 +1165897474 1 this.root null @@ -50206,7 +50812,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1596 this -950209035 +1165897474 1 this.root null @@ -50219,7 +50825,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1596 this -950209035 +1165897474 1 this.root null @@ -50238,7 +50844,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1594 this -950209035 +1165897474 1 this.root null @@ -50254,13 +50860,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1597 this -950209035 +1165897474 1 this.root null 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50270,13 +50876,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1598 this -950209035 +1165897474 1 this.root null 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50289,35 +50895,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1598 this -950209035 +1165897474 1 this.root null 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1597 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50327,20 +50933,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1599 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1599 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -50350,68 +50956,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1600 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1601 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1601 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1602 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1602 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50421,13 +51027,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1600 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50437,68 +51043,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1603 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1604 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1604 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1605 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1605 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50508,13 +51114,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1603 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50524,13 +51130,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1606 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50540,32 +51146,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1607 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1608 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50578,57 +51184,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1608 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1607 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1606 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50638,20 +51244,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1609 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1609 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -50661,97 +51267,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1610 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1611 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1612 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1612 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1611 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1613 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1613 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50761,13 +51367,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1610 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50777,68 +51383,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1614 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1615 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1615 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1616 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1616 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50848,13 +51454,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1614 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50864,13 +51470,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1617 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50880,32 +51486,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1618 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1619 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50918,57 +51524,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1619 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1618 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1617 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50978,20 +51584,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1620 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1620 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -51001,97 +51607,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1621 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1622 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1623 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1623 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1622 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1624 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1624 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51101,13 +51707,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1621 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51117,68 +51723,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1625 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1626 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1626 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1627 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1627 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51188,13 +51794,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1625 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51204,13 +51810,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1628 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1445877617 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51220,111 +51826,111 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1629 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1445877617 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1630 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1445877617 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 1630 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1445877617 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 1629 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1445877617 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1631 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1631 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51334,19 +51940,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1628 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1445877617 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51356,13 +51962,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1632 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51372,51 +51978,51 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1633 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1634 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1635 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51429,13 +52035,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1635 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51451,19 +52057,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1634 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return null @@ -51473,19 +52079,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1633 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return null @@ -51495,10 +52101,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1636 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t null @@ -51508,10 +52114,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1636 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t null @@ -51527,13 +52133,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1632 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -2087643114 +415138788 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51549,10 +52155,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1637 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x null @@ -51565,10 +52171,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1638 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x null @@ -51577,27 +52183,74 @@ x.getClass().getName() nonsensical 2 t -1161859976 +1734853116 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +1638 +this +1165897474 +1 +this.root +1734853116 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1734853116 +1 +exception +13326370 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +1637 +this +1165897474 +1 +this.root +1734853116 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +13326370 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1639 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1639 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -51607,97 +52260,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1640 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1641 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1642 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1642 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1641 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1643 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1643 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51707,13 +52360,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1640 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51723,68 +52376,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1644 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1645 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1645 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1646 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1646 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51794,13 +52447,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1644 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51810,13 +52463,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1647 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51826,51 +52479,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1648 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1649 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1650 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51883,79 +52536,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1650 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1649 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1648 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1647 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51965,20 +52618,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1651 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1651 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -51988,97 +52641,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1652 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1653 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1654 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1654 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1653 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1655 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1655 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52088,13 +52741,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1652 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52104,68 +52757,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1656 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1657 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1657 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1658 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1658 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52175,13 +52828,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1656 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52191,13 +52844,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1659 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52207,70 +52860,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1660 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1661 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1662 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1663 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52283,101 +52936,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1663 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1662 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1661 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1660 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1659 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52387,20 +53040,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1664 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1664 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -52410,97 +53063,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1665 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1666 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1667 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1667 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1666 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1668 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1668 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52510,13 +53163,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1665 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52526,68 +53179,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1669 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1670 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1670 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1671 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1671 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52597,13 +53250,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1669 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52613,13 +53266,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1672 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52629,89 +53282,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1673 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1674 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1675 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1676 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1677 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52724,123 +53377,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1677 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1676 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1675 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1674 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1673 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1672 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52850,20 +53503,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1678 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1678 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -52873,97 +53526,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1679 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1680 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1681 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1681 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1680 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1682 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1682 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52973,13 +53626,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1679 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52989,68 +53642,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1683 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1684 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1684 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1685 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1685 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53060,13 +53713,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1683 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53076,13 +53729,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1686 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53092,234 +53745,234 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1687 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1688 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1689 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1690 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1691 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 1691 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 1690 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 1689 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 1688 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 1687 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1692 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1692 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53329,19 +53982,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1686 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -195302273 +575593575 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53351,13 +54004,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1693 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53367,51 +54020,51 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1694 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1695 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1696 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53424,13 +54077,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1696 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53446,19 +54099,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1695 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return null @@ -53468,19 +54121,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1694 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return null @@ -53490,10 +54143,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1697 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t null @@ -53503,10 +54156,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1697 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t null @@ -53522,13 +54175,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1693 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1090289695 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53544,10 +54197,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1698 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x null @@ -53560,10 +54213,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1699 this -950209035 +1165897474 +1 +this.root +1734853116 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1734853116 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +1699 +this +1165897474 1 this.root -1161859976 +1734853116 1 x null @@ -53572,27 +54244,55 @@ x.getClass().getName() nonsensical 2 t -1161859976 +1734853116 +1 +exception +1188392295 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +1698 +this +1165897474 +1 +this.root +1734853116 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +1188392295 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1700 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1700 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -53602,97 +54302,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1701 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1702 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1703 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1703 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1702 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1704 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1704 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53702,13 +54402,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1701 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53718,68 +54418,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1705 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1706 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1706 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1707 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1707 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53789,13 +54489,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1705 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53805,13 +54505,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1708 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53821,70 +54521,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1709 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1710 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1711 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1712 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53897,101 +54597,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1712 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1711 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1710 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1709 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1708 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54001,20 +54701,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1713 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1713 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -54024,97 +54724,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1714 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1715 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1716 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1716 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1715 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1717 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1717 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54124,13 +54824,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1714 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54140,68 +54840,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1718 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1719 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1719 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1720 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1720 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54211,13 +54911,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1718 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54227,13 +54927,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1721 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54243,51 +54943,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1722 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1723 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1724 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54300,79 +55000,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1724 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1723 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1722 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1721 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54382,20 +55082,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1725 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1725 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -54405,126 +55105,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1726 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1727 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1728 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1729 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1729 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1728 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1727 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1730 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1730 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54534,13 +55234,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1726 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54550,68 +55250,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1731 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1732 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1732 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1733 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1733 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54621,13 +55321,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1731 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54637,13 +55337,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1734 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54653,108 +55353,108 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1735 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1736 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1737 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1738 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1739 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1740 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54767,145 +55467,145 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1740 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1739 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1738 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1737 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1736 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1735 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1734 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -54915,20 +55615,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1741 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1741 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -54938,126 +55638,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1742 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1743 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1744 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1745 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1745 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1744 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1743 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1746 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1746 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55067,13 +55767,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1742 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55083,68 +55783,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1747 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1748 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1748 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1749 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1749 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55154,13 +55854,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1747 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55170,13 +55870,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1750 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55186,275 +55886,275 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1751 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1752 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1753 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1754 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1755 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1756 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 1756 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 1755 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 1754 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 1753 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 1752 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 1751 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1757 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1757 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55464,19 +56164,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1750 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -566686860 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55486,13 +56186,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 1758 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55502,51 +56202,51 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1759 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1760 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1761 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55559,13 +56259,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1761 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55581,19 +56281,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1760 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 return null @@ -55603,19 +56303,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 1759 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return null @@ -55625,10 +56325,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1762 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t null @@ -55638,10 +56338,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1762 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t null @@ -55657,13 +56357,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 1758 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -216081575 +695682681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55679,10 +56379,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1763 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x null @@ -55695,10 +56395,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1764 this -950209035 +1165897474 +1 +this.root +1734853116 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1734853116 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +1764 +this +1165897474 1 this.root -1161859976 +1734853116 1 x null @@ -55707,27 +56426,55 @@ x.getClass().getName() nonsensical 2 t -1161859976 +1734853116 +1 +exception +1073502961 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +1763 +this +1165897474 +1 +this.root +1734853116 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +1073502961 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1765 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1765 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -55737,126 +56484,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1766 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1767 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1768 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1769 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1769 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1768 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1767 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1770 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1770 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55866,13 +56613,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1766 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55882,68 +56629,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1771 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1772 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1772 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1773 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1773 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55953,13 +56700,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1771 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55969,20 +56716,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1774 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1774 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -55992,126 +56739,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1775 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1776 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1777 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1778 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1778 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1777 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1776 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1779 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1779 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56121,13 +56868,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1775 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56137,13 +56884,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1780 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -56153,136 +56900,136 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1781 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1782 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1783 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1783 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1782 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1781 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1780 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -56292,20 +57039,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1784 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1784 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -56315,126 +57062,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1785 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1786 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1787 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1788 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1788 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1787 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1786 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1789 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1789 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56444,13 +57191,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1785 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56460,68 +57207,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1790 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1791 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1791 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1792 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1792 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56531,13 +57278,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1790 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56547,126 +57294,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1793 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1794 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1795 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1796 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1796 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1795 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1794 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1797 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1797 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -958910046 +1157740463 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56676,13 +57423,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1793 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -593563423 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56692,13 +57439,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1798 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -56708,70 +57455,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1799 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1800 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1801 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -958910046 +1157740463 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1801 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -56787,57 +57534,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1800 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1799 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1798 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -593563423 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -56847,20 +57594,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1802 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1802 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -56870,97 +57617,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1803 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1804 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1805 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1805 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1804 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1806 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1806 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56970,13 +57717,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1803 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56986,68 +57733,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1807 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1808 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1808 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1809 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1809 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57057,13 +57804,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1807 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57073,20 +57820,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1810 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1810 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -57096,97 +57843,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1811 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1812 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1813 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1813 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1812 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1814 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1814 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57196,13 +57943,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1811 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57212,13 +57959,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1815 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -57228,95 +57975,95 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1816 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1817 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1817 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1816 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1815 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -57326,20 +58073,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1818 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1818 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -57349,97 +58096,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1819 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1820 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1821 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1821 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1820 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1822 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1822 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57449,13 +58196,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1819 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57465,68 +58212,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1823 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1824 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1824 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1825 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1825 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57536,13 +58283,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1823 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57552,97 +58299,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1826 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1827 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1828 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1828 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1827 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1829 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1829 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -805547347 +201556483 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57652,13 +58399,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1826 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -311814461 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57668,13 +58415,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1830 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -57684,95 +58431,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1831 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1832 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -805547347 +201556483 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1832 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1831 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1830 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -311814461 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" @@ -57782,20 +58529,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1833 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1833 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -57805,155 +58552,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1834 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1835 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1836 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1837 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1838 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1838 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1837 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1836 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1835 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1839 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1839 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57963,13 +58710,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1834 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57979,68 +58726,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1840 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1841 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1841 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1842 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1842 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58050,13 +58797,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1840 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58066,20 +58813,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1843 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1843 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -58089,155 +58836,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1844 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1845 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1846 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1847 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1848 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1848 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1847 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1846 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1845 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1849 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1849 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58247,13 +58994,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1844 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58263,13 +59010,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1850 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58279,177 +59026,177 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1851 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1852 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1853 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1854 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1854 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1853 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1852 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1851 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1850 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58459,20 +59206,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1855 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1855 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -58482,155 +59229,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1856 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1857 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1858 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1859 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1860 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1860 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1859 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1858 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1857 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1861 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1861 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58640,13 +59387,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1856 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58656,68 +59403,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1862 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1863 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1863 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1864 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1864 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58727,13 +59474,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1862 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58743,155 +59490,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1865 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1866 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1867 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1868 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1869 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1869 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1868 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1867 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1866 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1870 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1870 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1256021869 +1282473384 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58901,13 +59648,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1865 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1177504482 +650023597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58917,13 +59664,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1871 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58933,177 +59680,177 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1872 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1873 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1874 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1875 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1256021869 +1282473384 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1875 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1874 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1873 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1872 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1871 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1177504482 +650023597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -59113,20 +59860,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1876 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1876 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -59136,155 +59883,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1877 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1878 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1879 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1880 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1881 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1881 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1880 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1879 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1878 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1882 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1882 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59294,13 +60041,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1877 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59310,68 +60057,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1883 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1884 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1884 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1885 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1885 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59381,13 +60128,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1883 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59397,20 +60144,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1886 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1886 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -59420,155 +60167,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1887 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1888 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1889 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1890 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1891 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1891 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1890 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1889 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1888 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1892 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1892 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59578,13 +60325,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1887 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59594,13 +60341,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1893 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -59610,177 +60357,177 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1894 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1895 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1896 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1897 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1897 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1896 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1895 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1894 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1893 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -59790,20 +60537,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1898 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1898 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -59813,155 +60560,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1899 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1900 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1901 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1902 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1903 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1903 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1902 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1901 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1900 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1904 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1904 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59971,13 +60718,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1899 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59987,68 +60734,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1905 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1906 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1906 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1907 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1907 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60058,13 +60805,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1905 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60074,155 +60821,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1908 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1909 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1910 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1911 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1912 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1912 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1911 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1910 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1909 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1913 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1913 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1028863272 +1529306539 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60232,13 +60979,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1908 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1683856034 +1379435698 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60248,13 +60995,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1914 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -60264,89 +61011,89 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1915 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1916 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1917 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1918 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1028863272 +1529306539 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1918 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -60362,79 +61109,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1917 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1916 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1915 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1914 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1683856034 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -60444,20 +61191,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1919 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1919 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -60467,126 +61214,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1920 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1921 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1922 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1923 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1923 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1922 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1921 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1924 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1924 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60596,13 +61343,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1920 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60612,68 +61359,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1925 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1926 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1926 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1927 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1927 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60683,13 +61430,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1925 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60699,20 +61446,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1928 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1928 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -60722,126 +61469,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1929 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1930 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1931 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1932 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1932 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1931 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1930 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1933 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1933 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60851,13 +61598,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1929 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60867,13 +61614,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1934 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -60883,136 +61630,136 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1935 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1936 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1937 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1937 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1936 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1935 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1934 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61022,20 +61769,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1938 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1938 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -61045,126 +61792,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1939 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1940 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1941 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1942 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1942 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1941 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1940 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1943 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1943 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61174,13 +61921,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1939 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61190,68 +61937,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1944 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1945 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1945 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1946 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1946 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61261,13 +62008,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1944 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61277,126 +62024,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1947 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1948 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1949 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1950 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1950 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1949 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1948 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1951 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1951 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1385514529 +486898233 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61406,13 +62153,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1947 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1679788513 +1196765369 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61422,13 +62169,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1952 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61438,70 +62185,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1953 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1954 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1955 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1385514529 +486898233 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1955 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61517,57 +62264,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1954 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1953 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1952 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1679788513 +1196765369 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61577,20 +62324,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1956 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1956 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -61600,97 +62347,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1957 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1958 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1959 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1959 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1958 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1960 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1960 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61700,13 +62447,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1957 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61716,68 +62463,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1961 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1962 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1962 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1963 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1963 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61787,13 +62534,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1961 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61803,20 +62550,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1964 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1964 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -61826,97 +62573,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1965 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1966 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1967 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1967 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1966 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1968 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1968 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61926,13 +62673,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1965 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61942,13 +62689,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 1969 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61958,95 +62705,95 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 1970 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1971 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1971 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 1970 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 1969 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62056,20 +62803,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1972 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1972 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -62079,97 +62826,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1973 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1974 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1975 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1975 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1974 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1976 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1976 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62179,13 +62926,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1973 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62195,68 +62942,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1977 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1978 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1978 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1979 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1979 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62266,13 +63013,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1977 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62282,97 +63029,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1980 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1981 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1982 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1982 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1981 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1983 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1983 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1391294207 +731395981 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62382,13 +63129,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1980 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1429992312 +1268650975 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62398,13 +63145,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 1984 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62414,95 +63161,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 1985 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 1986 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1391294207 +731395981 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1986 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 1985 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 1984 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -1429992312 +1268650975 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62512,20 +63259,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1987 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1987 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -62535,97 +63282,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1988 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1989 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1990 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1990 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1989 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1991 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1991 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62635,13 +63382,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1988 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62651,68 +63398,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 1992 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1993 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 1993 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1994 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1994 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62722,13 +63469,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 1992 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62738,20 +63485,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 1995 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 1995 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -62761,97 +63508,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 1996 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1997 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1998 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 1998 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 1997 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 1999 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 1999 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62861,13 +63608,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 1996 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62877,13 +63624,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2000 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62893,95 +63640,95 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2001 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2002 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2002 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2001 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2000 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62991,20 +63738,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2003 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2003 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -63014,97 +63761,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2004 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2005 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2006 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2006 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2005 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2007 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2007 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63114,13 +63861,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2004 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63130,68 +63877,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2008 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2009 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2009 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2010 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2010 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63201,13 +63948,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2008 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63217,97 +63964,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2011 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2012 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2013 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2013 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2012 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2014 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2014 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1966208837 +1509563803 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63317,13 +64064,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2011 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -20944014 +226710952 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63333,13 +64080,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2015 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -63349,51 +64096,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2016 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2017 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1966208837 +1509563803 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2017 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -63409,35 +64156,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2016 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2015 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -20944014 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -63447,20 +64194,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2018 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2018 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -63470,68 +64217,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2019 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2020 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2020 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2021 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2021 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63541,13 +64288,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2019 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63557,68 +64304,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2022 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2023 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2023 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2024 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2024 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63628,13 +64375,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2022 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63644,20 +64391,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2025 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2025 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -63667,68 +64414,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2026 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2027 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2027 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2028 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2028 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63738,13 +64485,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2026 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63754,13 +64501,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2029 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -63770,54 +64517,54 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2030 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2030 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2029 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -63827,20 +64574,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2031 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2031 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return false @@ -63850,68 +64597,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2032 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2033 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2033 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2034 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2034 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63921,13 +64668,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2032 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63937,68 +64684,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2035 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2036 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2036 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2037 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2037 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64008,13 +64755,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2035 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64024,68 +64771,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2038 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2039 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2039 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2040 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2040 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 t -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64095,13 +64842,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2038 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 return -553199177 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64111,13 +64858,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2041 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64127,54 +64874,54 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2042 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1161859976 +1734853116 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2042 this -950209035 +1165897474 1 this.root -1161859976 +1734853116 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2041 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -553199177 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64184,20 +64931,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2043 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2043 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return false @@ -64207,68 +64954,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2044 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2045 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2045 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2046 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2046 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64278,13 +65025,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2044 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64294,68 +65041,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2047 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2048 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2048 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2049 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2049 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64365,13 +65112,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2047 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64381,20 +65128,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2050 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2050 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return false @@ -64404,68 +65151,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2051 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2052 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2052 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2053 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2053 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64475,13 +65222,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2051 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64491,13 +65238,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2054 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64507,54 +65254,54 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2055 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2055 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2054 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64564,20 +65311,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2056 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2056 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return false @@ -64587,68 +65334,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2057 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2058 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2058 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2059 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2059 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64658,13 +65405,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2057 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64674,68 +65421,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2060 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2061 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2061 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2062 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2062 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64745,13 +65492,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2060 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64761,68 +65508,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2063 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2064 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2064 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2065 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2065 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 t -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64832,13 +65579,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2063 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 return -1097350341 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64848,13 +65595,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2066 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64864,32 +65611,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2067 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -577620751 +1442045361 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2067 this -950209035 +1165897474 1 this.root -577620751 +1442045361 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64905,13 +65652,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2066 this -950209035 +1165897474 1 this.root null 1 x -1097350341 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64921,7 +65668,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2068 this -950209035 +1165897474 1 this.root null @@ -64931,7 +65678,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2068 this -950209035 +1165897474 1 this.root null @@ -64944,7 +65691,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2069 this -950209035 +1165897474 1 this.root null @@ -64954,7 +65701,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2070 this -950209035 +1165897474 1 this.root null @@ -64967,7 +65714,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2070 this -950209035 +1165897474 1 this.root null @@ -64983,7 +65730,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2071 this -950209035 +1165897474 1 this.root null @@ -64996,7 +65743,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2071 this -950209035 +1165897474 1 this.root null @@ -65015,7 +65762,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2069 this -950209035 +1165897474 1 this.root null @@ -65031,7 +65778,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2072 this -950209035 +1165897474 1 this.root null @@ -65041,7 +65788,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2073 this -950209035 +1165897474 1 this.root null @@ -65054,7 +65801,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2073 this -950209035 +1165897474 1 this.root null @@ -65070,7 +65817,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2074 this -950209035 +1165897474 1 this.root null @@ -65083,7 +65830,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2074 this -950209035 +1165897474 1 this.root null @@ -65102,7 +65849,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2072 this -950209035 +1165897474 1 this.root null @@ -65118,7 +65865,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2075 this -950209035 +1165897474 1 this.root null @@ -65128,7 +65875,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2075 this -950209035 +1165897474 1 this.root null @@ -65141,13 +65888,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2076 this -950209035 +1165897474 1 this.root null 1 x -288183948 +1582797472 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65157,13 +65904,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2077 this -950209035 +1165897474 1 this.root null 1 x -288183948 +1582797472 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65176,13 +65923,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2077 this -950209035 +1165897474 1 this.root null 1 x -288183948 +1582797472 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65198,13 +65945,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2076 this -950209035 +1165897474 1 this.root null 1 x -288183948 +1582797472 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65214,7 +65961,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2078 this -950209035 +1165897474 1 this.root null @@ -65224,7 +65971,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2078 this -950209035 +1165897474 1 this.root null @@ -65237,7 +65984,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2079 this -950209035 +1165897474 1 this.root null @@ -65247,7 +65994,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2080 this -950209035 +1165897474 1 this.root null @@ -65260,7 +66007,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2080 this -950209035 +1165897474 1 this.root null @@ -65276,7 +66023,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2081 this -950209035 +1165897474 1 this.root null @@ -65289,7 +66036,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2081 this -950209035 +1165897474 1 this.root null @@ -65308,7 +66055,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2079 this -950209035 +1165897474 1 this.root null @@ -65324,7 +66071,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2082 this -950209035 +1165897474 1 this.root null @@ -65334,7 +66081,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2083 this -950209035 +1165897474 1 this.root null @@ -65347,7 +66094,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2083 this -950209035 +1165897474 1 this.root null @@ -65363,7 +66110,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2084 this -950209035 +1165897474 1 this.root null @@ -65376,7 +66123,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2084 this -950209035 +1165897474 1 this.root null @@ -65395,7 +66142,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2082 this -950209035 +1165897474 1 this.root null @@ -65411,7 +66158,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 2085 this -950209035 +1165897474 1 this.root null @@ -65421,7 +66168,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 2085 this -950209035 +1165897474 1 this.root null @@ -65431,7 +66178,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2086 this -950209035 +1165897474 1 this.root null @@ -65441,7 +66188,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2086 this -950209035 +1165897474 1 this.root null @@ -65454,7 +66201,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2087 this -950209035 +1165897474 1 this.root null @@ -65464,7 +66211,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2088 this -950209035 +1165897474 1 this.root null @@ -65477,7 +66224,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2088 this -950209035 +1165897474 1 this.root null @@ -65493,7 +66240,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2089 this -950209035 +1165897474 1 this.root null @@ -65506,7 +66253,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2089 this -950209035 +1165897474 1 this.root null @@ -65525,7 +66272,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2087 this -950209035 +1165897474 1 this.root null @@ -65541,7 +66288,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2090 this -950209035 +1165897474 1 this.root null @@ -65551,7 +66298,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2091 this -950209035 +1165897474 1 this.root null @@ -65564,7 +66311,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2091 this -950209035 +1165897474 1 this.root null @@ -65580,7 +66327,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2092 this -950209035 +1165897474 1 this.root null @@ -65593,7 +66340,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2092 this -950209035 +1165897474 1 this.root null @@ -65612,7 +66359,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2090 this -950209035 +1165897474 1 this.root null @@ -65632,7 +66379,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 2093 this -931990051 +644166178 1 this.root null @@ -65642,7 +66389,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2094 this -931990051 +644166178 1 this.root null @@ -65652,7 +66399,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2094 this -931990051 +644166178 1 this.root null @@ -65665,7 +66412,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2095 this -931990051 +644166178 1 this.root null @@ -65675,7 +66422,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2096 this -931990051 +644166178 1 this.root null @@ -65688,7 +66435,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2096 this -931990051 +644166178 1 this.root null @@ -65704,7 +66451,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2097 this -931990051 +644166178 1 this.root null @@ -65717,7 +66464,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2097 this -931990051 +644166178 1 this.root null @@ -65736,7 +66483,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2095 this -931990051 +644166178 1 this.root null @@ -65752,7 +66499,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2098 this -931990051 +644166178 1 this.root null @@ -65762,7 +66509,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2099 this -931990051 +644166178 1 this.root null @@ -65775,7 +66522,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2099 this -931990051 +644166178 1 this.root null @@ -65791,7 +66538,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2100 this -931990051 +644166178 1 this.root null @@ -65804,7 +66551,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2100 this -931990051 +644166178 1 this.root null @@ -65823,7 +66570,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2098 this -931990051 +644166178 1 this.root null @@ -65839,13 +66586,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2101 this -931990051 +644166178 1 this.root null 1 x -211065939 +892529689 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65855,13 +66602,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2102 this -931990051 +644166178 1 this.root null 1 x -211065939 +892529689 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65874,13 +66621,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2102 this -931990051 +644166178 1 this.root null 1 x -211065939 +892529689 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65896,13 +66643,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2101 this -931990051 +644166178 1 this.root null 1 x -211065939 +892529689 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65912,7 +66659,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2103 this -931990051 +644166178 1 this.root null @@ -65922,7 +66669,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2103 this -931990051 +644166178 1 this.root null @@ -65935,7 +66682,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2104 this -931990051 +644166178 1 this.root null @@ -65945,7 +66692,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2105 this -931990051 +644166178 1 this.root null @@ -65958,7 +66705,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2105 this -931990051 +644166178 1 this.root null @@ -65974,7 +66721,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2106 this -931990051 +644166178 1 this.root null @@ -65987,7 +66734,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2106 this -931990051 +644166178 1 this.root null @@ -66006,7 +66753,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2104 this -931990051 +644166178 1 this.root null @@ -66022,7 +66769,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2107 this -931990051 +644166178 1 this.root null @@ -66032,7 +66779,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2108 this -931990051 +644166178 1 this.root null @@ -66045,7 +66792,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2108 this -931990051 +644166178 1 this.root null @@ -66061,7 +66808,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2109 this -931990051 +644166178 1 this.root null @@ -66074,7 +66821,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2109 this -931990051 +644166178 1 this.root null @@ -66093,7 +66840,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2107 this -931990051 +644166178 1 this.root null @@ -66109,7 +66856,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 2110 this -931990051 +644166178 1 this.root null @@ -66119,7 +66866,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 2110 this -931990051 +644166178 1 this.root null @@ -66129,7 +66876,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2111 this -931990051 +644166178 1 this.root null @@ -66139,7 +66886,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2111 this -931990051 +644166178 1 this.root null @@ -66152,7 +66899,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2112 this -931990051 +644166178 1 this.root null @@ -66162,7 +66909,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2113 this -931990051 +644166178 1 this.root null @@ -66175,7 +66922,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2113 this -931990051 +644166178 1 this.root null @@ -66191,7 +66938,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2114 this -931990051 +644166178 1 this.root null @@ -66204,7 +66951,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2114 this -931990051 +644166178 1 this.root null @@ -66223,7 +66970,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2112 this -931990051 +644166178 1 this.root null @@ -66239,7 +66986,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2115 this -931990051 +644166178 1 this.root null @@ -66249,7 +66996,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2116 this -931990051 +644166178 1 this.root null @@ -66262,7 +67009,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2116 this -931990051 +644166178 1 this.root null @@ -66278,7 +67025,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2117 this -931990051 +644166178 1 this.root null @@ -66291,7 +67038,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2117 this -931990051 +644166178 1 this.root null @@ -66310,7 +67057,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2115 this -931990051 +644166178 1 this.root null @@ -66326,13 +67073,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2118 this -931990051 +644166178 1 this.root null 1 x -1889735576 +1757676444 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66342,13 +67089,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2119 this -931990051 +644166178 1 this.root null 1 x -1889735576 +1757676444 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66361,13 +67108,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2119 this -931990051 +644166178 1 this.root null 1 x -1889735576 +1757676444 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66383,13 +67130,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2118 this -931990051 +644166178 1 this.root null 1 x -1889735576 +1757676444 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66399,7 +67146,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2120 this -931990051 +644166178 1 this.root null @@ -66409,7 +67156,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2120 this -931990051 +644166178 1 this.root null @@ -66422,7 +67169,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2121 this -931990051 +644166178 1 this.root null @@ -66432,7 +67179,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2122 this -931990051 +644166178 1 this.root null @@ -66445,7 +67192,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2122 this -931990051 +644166178 1 this.root null @@ -66461,7 +67208,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2123 this -931990051 +644166178 1 this.root null @@ -66474,7 +67221,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2123 this -931990051 +644166178 1 this.root null @@ -66493,7 +67240,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2121 this -931990051 +644166178 1 this.root null @@ -66509,7 +67256,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2124 this -931990051 +644166178 1 this.root null @@ -66519,7 +67266,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2125 this -931990051 +644166178 1 this.root null @@ -66532,7 +67279,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2125 this -931990051 +644166178 1 this.root null @@ -66548,7 +67295,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2126 this -931990051 +644166178 1 this.root null @@ -66561,7 +67308,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2126 this -931990051 +644166178 1 this.root null @@ -66580,7 +67327,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2124 this -931990051 +644166178 1 this.root null @@ -66596,13 +67343,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2127 this -931990051 +644166178 1 this.root null 1 x -1650170349 +182738614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66612,13 +67359,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2128 this -931990051 +644166178 1 this.root null 1 x -1650170349 +182738614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66631,13 +67378,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2128 this -931990051 +644166178 1 this.root null 1 x -1650170349 +182738614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66653,13 +67400,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2127 this -931990051 +644166178 1 this.root null 1 x -1650170349 +182738614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66669,7 +67416,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2129 this -931990051 +644166178 1 this.root null @@ -66679,7 +67426,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2129 this -931990051 +644166178 1 this.root null @@ -66692,7 +67439,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2130 this -931990051 +644166178 1 this.root null @@ -66702,7 +67449,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2131 this -931990051 +644166178 1 this.root null @@ -66715,7 +67462,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2131 this -931990051 +644166178 1 this.root null @@ -66731,7 +67478,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2132 this -931990051 +644166178 1 this.root null @@ -66744,7 +67491,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2132 this -931990051 +644166178 1 this.root null @@ -66763,7 +67510,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2130 this -931990051 +644166178 1 this.root null @@ -66779,7 +67526,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2133 this -931990051 +644166178 1 this.root null @@ -66789,7 +67536,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2134 this -931990051 +644166178 1 this.root null @@ -66802,7 +67549,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2134 this -931990051 +644166178 1 this.root null @@ -66818,7 +67565,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2135 this -931990051 +644166178 1 this.root null @@ -66831,7 +67578,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2135 this -931990051 +644166178 1 this.root null @@ -66850,7 +67597,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2133 this -931990051 +644166178 1 this.root null @@ -66866,13 +67613,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2136 this -931990051 +644166178 1 this.root null 1 x -1809238285 +94345706 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66882,13 +67629,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2137 this -931990051 +644166178 1 this.root null 1 x -1809238285 +94345706 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66901,13 +67648,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2137 this -931990051 +644166178 1 this.root null 1 x -1809238285 +94345706 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66923,13 +67670,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2136 this -931990051 +644166178 1 this.root null 1 x -1809238285 +94345706 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66939,7 +67686,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2138 this -931990051 +644166178 1 this.root null @@ -66949,7 +67696,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2138 this -931990051 +644166178 1 this.root null @@ -66962,7 +67709,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2139 this -931990051 +644166178 1 this.root null @@ -66972,7 +67719,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2140 this -931990051 +644166178 1 this.root null @@ -66985,7 +67732,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2140 this -931990051 +644166178 1 this.root null @@ -67001,7 +67748,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2141 this -931990051 +644166178 1 this.root null @@ -67014,7 +67761,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2141 this -931990051 +644166178 1 this.root null @@ -67033,7 +67780,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2139 this -931990051 +644166178 1 this.root null @@ -67049,7 +67796,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2142 this -931990051 +644166178 1 this.root null @@ -67059,7 +67806,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2143 this -931990051 +644166178 1 this.root null @@ -67072,7 +67819,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2143 this -931990051 +644166178 1 this.root null @@ -67088,7 +67835,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2144 this -931990051 +644166178 1 this.root null @@ -67101,7 +67848,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2144 this -931990051 +644166178 1 this.root null @@ -67120,7 +67867,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2142 this -931990051 +644166178 1 this.root null @@ -67136,13 +67883,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2145 this -931990051 +644166178 1 this.root null 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67152,13 +67899,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2146 this -931990051 +644166178 1 this.root null 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67171,35 +67918,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2146 this -931990051 +644166178 1 this.root null 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2145 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67209,20 +67956,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2147 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2147 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -67232,68 +67979,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2148 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2149 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2149 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2150 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2150 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67303,13 +68050,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2148 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67319,68 +68066,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2151 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2152 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2152 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2153 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2153 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67390,13 +68137,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2151 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67406,13 +68153,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2154 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67422,32 +68169,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2155 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2156 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67460,57 +68207,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2156 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2155 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2154 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67520,20 +68267,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2157 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2157 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -67543,97 +68290,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2158 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2159 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2160 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2160 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2159 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2161 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2161 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67643,13 +68390,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2158 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67659,68 +68406,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2162 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2163 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2163 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2164 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2164 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67730,13 +68477,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2162 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67746,13 +68493,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2165 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67762,51 +68509,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2166 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2167 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2168 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67819,79 +68566,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2168 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2167 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2166 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2165 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67901,20 +68648,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2169 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2169 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -67924,97 +68671,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2170 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2171 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2172 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2172 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2171 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2173 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2173 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68024,13 +68771,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2170 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68040,68 +68787,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2174 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2175 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2175 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2176 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2176 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68111,13 +68858,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2174 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68127,13 +68874,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2177 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68143,152 +68890,152 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2178 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2179 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2180 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 2180 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 2179 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2178 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2181 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2181 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68298,19 +69045,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2177 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1628608800 +32017212 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68320,13 +69067,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2182 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68336,70 +69083,70 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2183 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2184 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2185 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2186 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68412,13 +69159,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2186 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68434,19 +69181,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2185 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return null @@ -68456,19 +69203,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2184 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return null @@ -68478,19 +69225,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2183 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return null @@ -68500,10 +69247,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2187 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t null @@ -68513,10 +69260,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2187 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t null @@ -68532,13 +69279,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2182 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -201536938 +1121454968 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68554,10 +69301,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2188 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x null @@ -68570,10 +69317,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2189 this -931990051 +644166178 +1 +this.root +1870647526 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1870647526 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2189 +this +644166178 1 this.root -500010271 +1870647526 1 x null @@ -68582,27 +69348,55 @@ x.getClass().getName() nonsensical 2 t -500010271 +1870647526 +1 +exception +1006485584 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2188 +this +644166178 +1 +this.root +1870647526 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +1006485584 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2190 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2190 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -68612,97 +69406,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2191 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2192 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2193 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2193 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2192 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2194 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2194 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68712,13 +69506,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2191 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68728,68 +69522,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2195 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2196 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2196 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2197 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2197 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68799,13 +69593,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2195 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68815,13 +69609,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2198 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68831,70 +69625,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2199 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2200 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2201 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2202 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68907,101 +69701,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2202 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2201 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2200 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2199 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2198 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69011,20 +69805,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2203 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2203 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -69034,97 +69828,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2204 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2205 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2206 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2206 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2205 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2207 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2207 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69134,13 +69928,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2204 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69150,68 +69944,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2208 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2209 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2209 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2210 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2210 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69221,13 +70015,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2208 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69237,13 +70031,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2211 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69253,89 +70047,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2212 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2213 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2214 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2215 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2216 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69348,123 +70142,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2216 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2215 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2214 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2213 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2212 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2211 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69474,20 +70268,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2217 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2217 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -69497,97 +70291,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2218 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2219 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2220 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2220 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2219 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2221 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2221 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69597,13 +70391,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2218 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69613,68 +70407,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2222 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2223 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2223 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2224 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2224 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69684,13 +70478,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2222 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69700,13 +70494,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2225 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69716,108 +70510,108 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2226 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2227 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2228 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2229 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2230 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2231 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69830,145 +70624,145 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2231 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2230 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2229 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2228 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2227 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2226 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2225 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69978,20 +70772,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2232 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2232 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -70001,97 +70795,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2233 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2234 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2235 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2235 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2234 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2236 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2236 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70101,13 +70895,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2233 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70117,68 +70911,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2237 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2238 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2238 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2239 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2239 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70188,13 +70982,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2237 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70204,13 +70998,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2240 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70220,275 +71014,275 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2241 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2242 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2243 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2244 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2245 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2246 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 2246 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2245 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2244 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2243 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 2242 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2241 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2247 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2247 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70498,19 +71292,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2240 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1935425403 +1750905143 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70520,13 +71314,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2248 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70536,51 +71330,51 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2249 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2250 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2251 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70593,13 +71387,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2251 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70615,19 +71409,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2250 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return null @@ -70637,19 +71431,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2249 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return null @@ -70659,10 +71453,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2252 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t null @@ -70672,10 +71466,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2252 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t null @@ -70691,13 +71485,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2248 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -759947112 +1782704802 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70713,10 +71507,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2253 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x null @@ -70729,10 +71523,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2254 this -931990051 +644166178 +1 +this.root +1870647526 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1870647526 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2254 +this +644166178 1 this.root -500010271 +1870647526 1 x null @@ -70741,27 +71554,55 @@ x.getClass().getName() nonsensical 2 t -500010271 +1870647526 +1 +exception +2094411587 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2253 +this +644166178 +1 +this.root +1870647526 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +2094411587 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2255 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2255 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -70771,97 +71612,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2256 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2257 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2258 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2258 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2257 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2259 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2259 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70871,13 +71712,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2256 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70887,68 +71728,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2260 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2261 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2261 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2262 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2262 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70958,13 +71799,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2260 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70974,13 +71815,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2263 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70990,127 +71831,127 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2264 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2265 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2266 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2267 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2268 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2269 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2270 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71123,167 +71964,167 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2270 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2269 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2268 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2267 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2266 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2265 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2264 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2263 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71293,20 +72134,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2271 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2271 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -71316,97 +72157,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2272 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2273 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2274 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2274 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2273 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2275 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2275 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -71416,13 +72257,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2272 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -71432,68 +72273,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2276 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2277 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2277 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2278 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2278 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -71503,13 +72344,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2276 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -71519,13 +72360,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2279 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71535,146 +72376,146 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2280 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2281 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2282 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2283 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2284 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2285 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2286 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2287 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71687,189 +72528,189 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2287 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2286 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2285 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2284 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2283 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2282 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2281 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2280 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2279 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71879,20 +72720,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2288 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2288 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -71902,97 +72743,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2289 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2290 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2291 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2291 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2290 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2292 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2292 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72002,13 +72843,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2289 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72018,68 +72859,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2293 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2294 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2294 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2295 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2295 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72089,13 +72930,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2293 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72105,13 +72946,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2296 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72121,51 +72962,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2297 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2298 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2299 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72178,79 +73019,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2299 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2298 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2297 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2296 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72260,20 +73101,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2300 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2300 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -72283,126 +73124,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2301 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2302 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2303 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2304 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2304 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2303 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2302 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2305 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2305 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72412,13 +73253,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2301 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72428,68 +73269,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2306 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2307 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2307 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2308 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2308 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72499,13 +73340,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2306 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72515,13 +73356,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2309 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72531,152 +73372,152 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2310 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2311 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2312 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 2312 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2311 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2310 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2313 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2313 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72686,19 +73527,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2309 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -488224188 +395629617 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72708,13 +73549,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2314 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72724,165 +73565,165 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2315 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2316 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2317 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2318 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2319 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2320 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2321 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2322 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2323 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72895,13 +73736,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2323 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72917,19 +73758,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2322 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 return null @@ -72939,19 +73780,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2321 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 return null @@ -72961,19 +73802,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2320 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return null @@ -72983,19 +73824,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2319 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return null @@ -73005,19 +73846,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2318 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return null @@ -73027,19 +73868,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2317 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return null @@ -73049,19 +73890,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2316 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return null @@ -73071,19 +73912,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2315 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return null @@ -73093,10 +73934,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2324 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t null @@ -73106,10 +73947,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2324 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t null @@ -73125,13 +73966,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2314 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -48912529 +1122134344 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73147,10 +73988,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2325 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x null @@ -73163,10 +74004,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2326 this -931990051 +644166178 +1 +this.root +1870647526 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1870647526 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2326 +this +644166178 1 this.root -500010271 +1870647526 1 x null @@ -73175,27 +74035,55 @@ x.getClass().getName() nonsensical 2 t -500010271 +1870647526 +1 +exception +1471868639 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2325 +this +644166178 +1 +this.root +1870647526 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +1471868639 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2327 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2327 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -73205,126 +74093,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2328 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2329 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2330 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2331 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2331 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2330 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2329 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2332 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2332 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73334,13 +74222,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2328 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73350,68 +74238,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2333 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2334 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2334 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2335 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2335 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73421,13 +74309,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2333 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73437,13 +74325,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2336 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73453,70 +74341,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2337 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2338 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2339 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2340 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73529,13 +74417,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2340 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73551,79 +74439,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2339 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2338 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2337 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2336 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1734121749 +876563773 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73633,20 +74521,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2341 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2341 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -73656,126 +74544,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2342 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2343 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2344 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2345 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2345 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2344 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2343 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2346 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2346 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73785,13 +74673,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2342 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73801,68 +74689,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2347 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2348 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2348 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2349 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2349 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73872,13 +74760,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2347 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73888,13 +74776,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2350 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73904,127 +74792,127 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2351 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2352 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2353 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2354 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2355 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2356 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2357 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74037,13 +74925,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2357 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74059,145 +74947,145 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2356 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2355 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2354 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2353 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2352 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2351 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2350 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1883662006 +87765719 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74207,20 +75095,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2358 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2358 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -74230,126 +75118,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2359 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2360 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2361 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2362 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2362 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2361 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2360 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2363 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2363 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74359,13 +75247,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2359 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74375,68 +75263,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2364 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2365 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2365 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2366 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2366 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74446,13 +75334,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2364 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74462,13 +75350,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2367 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74478,70 +75366,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2368 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2369 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2370 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2371 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74554,13 +75442,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2371 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74576,79 +75464,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2370 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2369 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2368 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2367 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -503410768 +1413653265 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74658,20 +75546,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2372 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2372 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -74681,126 +75569,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2373 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2374 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2375 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2376 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2376 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2375 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2374 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2377 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2377 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74810,13 +75698,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2373 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74826,68 +75714,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2378 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2379 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2379 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2380 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2380 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74897,13 +75785,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2378 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74913,13 +75801,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2381 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74929,165 +75817,165 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2382 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2383 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2384 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2385 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2386 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2387 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2388 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2389 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2390 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" @@ -75100,13 +75988,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2390 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" @@ -75122,189 +76010,189 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2389 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2388 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2387 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2386 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2385 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2384 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2383 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2382 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2381 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1886692243 +1418621776 1 x.getClass().getName() "DataStructures.MyInteger" @@ -75314,20 +76202,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2391 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2391 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -75337,126 +76225,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2392 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2393 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2394 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2395 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2395 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2394 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2393 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2396 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2396 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75466,13 +76354,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2392 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75482,68 +76370,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2397 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2398 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2398 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2399 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2399 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75553,13 +76441,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2397 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75569,20 +76457,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2400 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2400 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -75592,126 +76480,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2401 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2402 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2403 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2404 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2404 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2403 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2402 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2405 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2405 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75721,13 +76609,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2401 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75737,13 +76625,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2406 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -75753,136 +76641,136 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2407 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2408 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2409 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2409 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2408 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2407 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2406 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -75892,20 +76780,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2410 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2410 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -75915,126 +76803,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2411 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2412 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2413 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2414 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2414 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2413 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2412 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2415 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2415 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76044,13 +76932,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2411 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76060,68 +76948,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2416 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2417 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2417 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2418 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2418 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76131,13 +77019,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2416 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76147,126 +77035,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2419 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2420 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2421 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2422 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2422 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2421 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2420 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2423 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2423 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -635445017 +60559178 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76276,13 +77164,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2419 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -944025979 +2107447833 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76292,13 +77180,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2424 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76308,70 +77196,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2425 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2426 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2427 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -635445017 +60559178 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2427 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76387,57 +77275,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2426 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2425 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2424 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -944025979 +2107447833 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76447,20 +77335,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2428 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2428 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -76470,97 +77358,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2429 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2430 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2431 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2431 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2430 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2432 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2432 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76570,13 +77458,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2429 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76586,68 +77474,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2433 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2434 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2434 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2435 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2435 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76657,13 +77545,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2433 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76673,20 +77561,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2436 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2436 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -76696,97 +77584,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2437 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2438 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2439 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2439 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2438 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2440 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2440 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76796,13 +77684,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2437 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76812,13 +77700,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2441 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76828,95 +77716,95 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2442 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2443 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2443 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2442 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2441 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76926,20 +77814,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2444 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2444 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -76949,97 +77837,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2445 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2446 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2447 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2447 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2446 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2448 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2448 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77049,13 +77937,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2445 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77065,68 +77953,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2449 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2450 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2450 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2451 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2451 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77136,13 +78024,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2449 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77152,97 +78040,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2452 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2453 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2454 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2454 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2453 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2455 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2455 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -206598964 +1047503754 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77252,13 +78140,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2452 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -569113986 +1204167249 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77268,13 +78156,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2456 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77284,95 +78172,95 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2457 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2458 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -206598964 +1047503754 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2458 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2457 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2456 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -569113986 +1204167249 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77382,20 +78270,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2459 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2459 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -77405,213 +78293,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2460 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2461 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2462 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2463 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2464 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2465 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2466 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2466 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2465 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2464 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2463 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2462 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2461 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2467 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2467 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77621,13 +78509,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2460 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77637,68 +78525,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2468 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2469 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2469 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2470 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2470 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77708,13 +78596,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2468 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77724,20 +78612,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2471 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2471 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -77747,213 +78635,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2472 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2473 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2474 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2475 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2476 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2477 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2478 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2478 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2477 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2476 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2475 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2474 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2473 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2479 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2479 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77963,13 +78851,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2472 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77979,13 +78867,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2480 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77995,259 +78883,259 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2481 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2482 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2483 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2484 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2485 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2486 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2486 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2485 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2484 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2483 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2482 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2481 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2480 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -78257,20 +79145,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2487 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2487 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -78280,213 +79168,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2488 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2489 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2490 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2491 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2492 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2493 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2494 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2494 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2493 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2492 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2491 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2490 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2489 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2495 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2495 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78496,13 +79384,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2488 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78512,68 +79400,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2496 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2497 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2497 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2498 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2498 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78583,13 +79471,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2496 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78599,213 +79487,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2499 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2500 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2501 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2502 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2503 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2504 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2505 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2505 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2504 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2503 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2502 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2501 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2500 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2506 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2506 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -468724874 +1620303253 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78815,13 +79703,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2499 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1345862675 +1833638914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78831,13 +79719,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2507 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -78847,259 +79735,259 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2508 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2509 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2510 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2511 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2512 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2513 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -468724874 +1620303253 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2513 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2512 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2511 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2510 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2509 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2508 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2507 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1345862675 +1833638914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79109,20 +79997,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2514 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2514 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -79132,213 +80020,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2515 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2516 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2517 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2518 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2519 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2520 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2521 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2521 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2520 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2519 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2518 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2517 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2516 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2522 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2522 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79348,13 +80236,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2515 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79364,68 +80252,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2523 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2524 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2524 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2525 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2525 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79435,13 +80323,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2523 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79451,20 +80339,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2526 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2526 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -79474,213 +80362,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2527 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2528 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2529 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2530 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2531 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2532 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2533 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2533 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2532 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2531 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2530 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2529 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2528 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2534 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2534 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79690,13 +80578,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2527 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79706,13 +80594,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2535 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79722,259 +80610,259 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2536 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2537 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2538 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2539 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2540 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2541 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2541 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2540 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2539 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2538 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2537 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2536 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2535 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79984,20 +80872,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2542 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2542 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -80007,213 +80895,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2543 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2544 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2545 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2546 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2547 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2548 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2549 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2549 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2548 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2547 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2546 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2545 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2544 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2550 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2550 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80223,13 +81111,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2543 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80239,68 +81127,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2551 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2552 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2552 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2553 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2553 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80310,13 +81198,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2551 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80326,213 +81214,213 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2554 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2555 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2556 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2557 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2558 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2559 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2560 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2560 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2559 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2558 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2557 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2556 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2555 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2561 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2561 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -372898275 +1216590855 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80542,13 +81430,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2554 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -888940122 +90320863 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80558,13 +81446,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2562 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80574,127 +81462,127 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2563 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2564 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2565 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2566 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2567 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2568 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -372898275 +1216590855 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2568 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80710,123 +81598,123 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2567 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2566 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2565 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2564 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2563 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2562 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -888940122 +90320863 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80836,20 +81724,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2569 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2569 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -80859,184 +81747,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2570 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2571 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2572 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2573 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2574 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2575 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2575 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2574 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2573 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2572 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2571 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2576 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2576 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81046,13 +81934,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2570 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81062,68 +81950,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2577 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2578 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2578 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2579 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2579 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81133,13 +82021,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2577 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81149,20 +82037,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2580 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2580 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -81172,184 +82060,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2581 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2582 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2583 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2584 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2585 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2586 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2586 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2585 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2584 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2583 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2582 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2587 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2587 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81359,13 +82247,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2581 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81375,13 +82263,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2588 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81391,218 +82279,218 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2589 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2590 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2591 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2592 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2593 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2593 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2592 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2591 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2590 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2589 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2588 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81612,20 +82500,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2594 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2594 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -81635,184 +82523,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2595 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2596 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2597 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2598 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2599 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2600 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2600 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2599 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2598 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2597 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2596 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2601 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2601 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81822,13 +82710,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2595 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81838,68 +82726,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2602 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2603 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2603 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2604 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2604 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81909,13 +82797,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2602 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81925,184 +82813,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2605 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2606 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2607 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2608 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2609 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2610 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2610 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2609 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2608 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2607 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2606 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2611 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2611 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -2060585275 +1783593083 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82112,13 +83000,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2605 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1492002121 +1615780336 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82128,13 +83016,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2612 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82144,108 +83032,108 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2613 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2614 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2615 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2616 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2617 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -2060585275 +1783593083 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2617 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82261,101 +83149,101 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2616 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2615 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2614 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2613 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2612 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1492002121 +1615780336 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82365,20 +83253,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2618 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2618 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -82388,155 +83276,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2619 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2620 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2621 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2622 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2623 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2623 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2622 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2621 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2620 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2624 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2624 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82546,13 +83434,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2619 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82562,68 +83450,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2625 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2626 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2626 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2627 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2627 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82633,13 +83521,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2625 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82649,20 +83537,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2628 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2628 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -82672,155 +83560,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2629 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2630 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2631 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2632 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2633 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2633 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2632 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2631 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2630 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2634 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2634 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82830,13 +83718,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2629 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82846,13 +83734,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2635 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82862,177 +83750,177 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2636 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2637 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2638 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2639 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2639 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2638 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2637 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2636 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2635 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -83042,20 +83930,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2640 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2640 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -83065,155 +83953,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2641 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2642 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2643 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2644 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2645 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2645 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2644 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2643 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2642 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2646 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2646 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83223,13 +84111,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2641 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83239,68 +84127,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2647 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2648 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2648 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2649 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2649 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83310,13 +84198,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2647 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83326,155 +84214,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2650 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2651 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2652 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2653 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2654 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2654 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2653 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2652 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2651 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2655 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2655 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -431962083 +152134087 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83484,13 +84372,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2650 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -2086689320 +1547425104 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83500,13 +84388,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2656 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -83516,89 +84404,89 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2657 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2658 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2659 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2660 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -431962083 +152134087 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2660 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -83614,79 +84502,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2659 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2658 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2657 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2656 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -2086689320 +1547425104 1 x.getClass().getName() "DataStructures.MyInteger" @@ -83696,20 +84584,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2661 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2661 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -83719,126 +84607,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2662 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2663 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2664 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2665 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2665 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2664 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2663 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2666 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2666 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83848,13 +84736,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2662 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83864,68 +84752,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2667 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2668 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2668 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2669 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2669 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83935,13 +84823,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2667 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83951,20 +84839,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2670 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2670 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -83974,126 +84862,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2671 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2672 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2673 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2674 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2674 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2673 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2672 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2675 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2675 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84103,13 +84991,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2671 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84119,13 +85007,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2676 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84135,136 +85023,136 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2677 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2678 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2679 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2679 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2678 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2677 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2676 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84274,20 +85162,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2680 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2680 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -84297,126 +85185,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2681 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2682 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2683 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2684 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2684 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2683 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2682 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2685 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2685 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84426,13 +85314,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2681 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84442,68 +85330,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2686 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2687 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2687 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2688 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2688 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84513,13 +85401,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2686 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84529,126 +85417,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2689 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2690 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2691 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2692 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2692 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2691 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2690 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2693 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2693 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -115247781 +1580893732 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84658,13 +85546,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2689 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -649605647 +466505482 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84674,13 +85562,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2694 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84690,70 +85578,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2695 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2696 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2697 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -115247781 +1580893732 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2697 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84769,57 +85657,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2696 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2695 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2694 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -649605647 +466505482 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84829,20 +85717,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2698 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2698 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -84852,97 +85740,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2699 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2700 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2701 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2701 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2700 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2702 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2702 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84952,13 +85840,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2699 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84968,68 +85856,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2703 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2704 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2704 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2705 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2705 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85039,13 +85927,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2703 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85055,20 +85943,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2706 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2706 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -85078,97 +85966,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2707 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2708 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2709 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2709 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2708 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2710 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2710 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85178,13 +86066,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2707 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85194,13 +86082,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2711 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85210,95 +86098,95 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2712 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2713 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2713 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2712 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2711 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85308,20 +86196,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2714 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2714 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -85331,97 +86219,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2715 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2716 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2717 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2717 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2716 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2718 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2718 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85431,13 +86319,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2715 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85447,68 +86335,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2719 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2720 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2720 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2721 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2721 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85518,13 +86406,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2719 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85534,97 +86422,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2722 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2723 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2724 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2724 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2723 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2725 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2725 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -1626138246 +2009787198 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85634,13 +86522,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2722 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1975214396 +1722023916 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85650,13 +86538,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2726 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85666,51 +86554,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2727 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2728 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1626138246 +2009787198 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2728 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85726,35 +86614,35 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2727 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2726 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1975214396 +1722023916 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85764,20 +86652,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2729 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2729 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -85787,68 +86675,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2730 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2731 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2731 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2732 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2732 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85858,13 +86746,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2730 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85874,68 +86762,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2733 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2734 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2734 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2735 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2735 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85945,13 +86833,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2733 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85961,20 +86849,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2736 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2736 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -85984,68 +86872,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2737 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2738 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2738 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2739 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2739 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86055,13 +86943,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2737 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86071,13 +86959,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2740 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86087,54 +86975,54 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2741 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2741 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2740 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86144,20 +87032,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2742 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2742 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return false @@ -86167,68 +87055,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2743 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2744 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2744 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2745 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2745 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86238,13 +87126,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2743 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86254,68 +87142,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2746 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2747 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2747 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2748 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2748 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86325,13 +87213,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2746 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86341,68 +87229,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2749 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2750 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2750 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2751 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2751 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 t -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86412,13 +87300,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2749 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 return -1646898122 +670035812 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86428,13 +87316,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2752 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86444,32 +87332,32 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2753 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -500010271 +1870647526 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2753 this -931990051 +644166178 1 this.root -500010271 +1870647526 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86485,13 +87373,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2752 this -931990051 +644166178 1 this.root null 1 x -1646898122 +670035812 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86501,7 +87389,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2754 this -931990051 +644166178 1 this.root null @@ -86511,7 +87399,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2754 this -931990051 +644166178 1 this.root null @@ -86524,7 +87412,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2755 this -931990051 +644166178 1 this.root null @@ -86534,7 +87422,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2756 this -931990051 +644166178 1 this.root null @@ -86547,7 +87435,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2756 this -931990051 +644166178 1 this.root null @@ -86563,7 +87451,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2757 this -931990051 +644166178 1 this.root null @@ -86576,7 +87464,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2757 this -931990051 +644166178 1 this.root null @@ -86595,7 +87483,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2755 this -931990051 +644166178 1 this.root null @@ -86611,7 +87499,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2758 this -931990051 +644166178 1 this.root null @@ -86621,7 +87509,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2759 this -931990051 +644166178 1 this.root null @@ -86634,7 +87522,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2759 this -931990051 +644166178 1 this.root null @@ -86650,7 +87538,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2760 this -931990051 +644166178 1 this.root null @@ -86663,7 +87551,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2760 this -931990051 +644166178 1 this.root null @@ -86682,7 +87570,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2758 this -931990051 +644166178 1 this.root null @@ -86698,7 +87586,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2761 this -931990051 +644166178 1 this.root null @@ -86708,7 +87596,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2761 this -931990051 +644166178 1 this.root null @@ -86721,13 +87609,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2762 this -931990051 +644166178 1 this.root null 1 x -2040480146 +446073433 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86737,13 +87625,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2763 this -931990051 +644166178 1 this.root null 1 x -2040480146 +446073433 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86756,13 +87644,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2763 this -931990051 +644166178 1 this.root null 1 x -2040480146 +446073433 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86778,13 +87666,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2762 this -931990051 +644166178 1 this.root null 1 x -2040480146 +446073433 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86794,7 +87682,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2764 this -931990051 +644166178 1 this.root null @@ -86804,7 +87692,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2764 this -931990051 +644166178 1 this.root null @@ -86817,7 +87705,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2765 this -931990051 +644166178 1 this.root null @@ -86827,7 +87715,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2766 this -931990051 +644166178 1 this.root null @@ -86840,7 +87728,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2766 this -931990051 +644166178 1 this.root null @@ -86856,7 +87744,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2767 this -931990051 +644166178 1 this.root null @@ -86869,7 +87757,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2767 this -931990051 +644166178 1 this.root null @@ -86888,7 +87776,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2765 this -931990051 +644166178 1 this.root null @@ -86904,7 +87792,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2768 this -931990051 +644166178 1 this.root null @@ -86914,7 +87802,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2769 this -931990051 +644166178 1 this.root null @@ -86927,7 +87815,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2769 this -931990051 +644166178 1 this.root null @@ -86943,7 +87831,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2770 this -931990051 +644166178 1 this.root null @@ -86956,7 +87844,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2770 this -931990051 +644166178 1 this.root null @@ -86975,7 +87863,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2768 this -931990051 +644166178 1 this.root null @@ -86991,7 +87879,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 2771 this -931990051 +644166178 1 this.root null @@ -87001,7 +87889,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 2771 this -931990051 +644166178 1 this.root null @@ -87011,7 +87899,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2772 this -931990051 +644166178 1 this.root null @@ -87021,7 +87909,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2772 this -931990051 +644166178 1 this.root null @@ -87034,7 +87922,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2773 this -931990051 +644166178 1 this.root null @@ -87044,7 +87932,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2774 this -931990051 +644166178 1 this.root null @@ -87057,7 +87945,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2774 this -931990051 +644166178 1 this.root null @@ -87073,7 +87961,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2775 this -931990051 +644166178 1 this.root null @@ -87086,7 +87974,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2775 this -931990051 +644166178 1 this.root null @@ -87105,7 +87993,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2773 this -931990051 +644166178 1 this.root null @@ -87121,7 +88009,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2776 this -931990051 +644166178 1 this.root null @@ -87131,7 +88019,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2777 this -931990051 +644166178 1 this.root null @@ -87144,7 +88032,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2777 this -931990051 +644166178 1 this.root null @@ -87160,7 +88048,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2778 this -931990051 +644166178 1 this.root null @@ -87173,7 +88061,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2778 this -931990051 +644166178 1 this.root null @@ -87192,7 +88080,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2776 this -931990051 +644166178 1 this.root null @@ -87212,7 +88100,7 @@ DataStructures.BinarySearchTree.BinarySearchTree():::EXIT30 this_invocation_nonce 2779 this -1183454879 +1181199958 1 this.root null @@ -87222,7 +88110,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2780 this -1183454879 +1181199958 1 this.root null @@ -87232,7 +88120,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2780 this -1183454879 +1181199958 1 this.root null @@ -87245,7 +88133,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2781 this -1183454879 +1181199958 1 this.root null @@ -87255,7 +88143,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2782 this -1183454879 +1181199958 1 this.root null @@ -87268,7 +88156,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2782 this -1183454879 +1181199958 1 this.root null @@ -87284,7 +88172,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2783 this -1183454879 +1181199958 1 this.root null @@ -87297,7 +88185,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2783 this -1183454879 +1181199958 1 this.root null @@ -87316,7 +88204,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2781 this -1183454879 +1181199958 1 this.root null @@ -87332,7 +88220,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2784 this -1183454879 +1181199958 1 this.root null @@ -87342,7 +88230,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2785 this -1183454879 +1181199958 1 this.root null @@ -87355,7 +88243,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2785 this -1183454879 +1181199958 1 this.root null @@ -87371,7 +88259,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2786 this -1183454879 +1181199958 1 this.root null @@ -87384,7 +88272,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2786 this -1183454879 +1181199958 1 this.root null @@ -87403,7 +88291,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2784 this -1183454879 +1181199958 1 this.root null @@ -87419,13 +88307,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2787 this -1183454879 +1181199958 1 this.root null 1 x -332612839 +125622176 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87435,13 +88323,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2788 this -1183454879 +1181199958 1 this.root null 1 x -332612839 +125622176 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87454,13 +88342,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2788 this -1183454879 +1181199958 1 this.root null 1 x -332612839 +125622176 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87476,13 +88364,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2787 this -1183454879 +1181199958 1 this.root null 1 x -332612839 +125622176 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87492,7 +88380,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2789 this -1183454879 +1181199958 1 this.root null @@ -87502,7 +88390,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2789 this -1183454879 +1181199958 1 this.root null @@ -87515,7 +88403,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2790 this -1183454879 +1181199958 1 this.root null @@ -87525,7 +88413,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2791 this -1183454879 +1181199958 1 this.root null @@ -87538,7 +88426,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2791 this -1183454879 +1181199958 1 this.root null @@ -87554,7 +88442,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2792 this -1183454879 +1181199958 1 this.root null @@ -87567,7 +88455,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2792 this -1183454879 +1181199958 1 this.root null @@ -87586,7 +88474,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2790 this -1183454879 +1181199958 1 this.root null @@ -87602,7 +88490,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2793 this -1183454879 +1181199958 1 this.root null @@ -87612,7 +88500,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2794 this -1183454879 +1181199958 1 this.root null @@ -87625,7 +88513,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2794 this -1183454879 +1181199958 1 this.root null @@ -87641,7 +88529,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2795 this -1183454879 +1181199958 1 this.root null @@ -87654,7 +88542,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2795 this -1183454879 +1181199958 1 this.root null @@ -87673,7 +88561,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2793 this -1183454879 +1181199958 1 this.root null @@ -87689,7 +88577,7 @@ DataStructures.BinarySearchTree.makeEmpty():::ENTER this_invocation_nonce 2796 this -1183454879 +1181199958 1 this.root null @@ -87699,7 +88587,7 @@ DataStructures.BinarySearchTree.makeEmpty():::EXIT84 this_invocation_nonce 2796 this -1183454879 +1181199958 1 this.root null @@ -87709,7 +88597,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2797 this -1183454879 +1181199958 1 this.root null @@ -87719,7 +88607,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2797 this -1183454879 +1181199958 1 this.root null @@ -87732,7 +88620,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2798 this -1183454879 +1181199958 1 this.root null @@ -87742,7 +88630,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2799 this -1183454879 +1181199958 1 this.root null @@ -87755,7 +88643,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2799 this -1183454879 +1181199958 1 this.root null @@ -87771,7 +88659,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2800 this -1183454879 +1181199958 1 this.root null @@ -87784,7 +88672,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2800 this -1183454879 +1181199958 1 this.root null @@ -87803,7 +88691,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2798 this -1183454879 +1181199958 1 this.root null @@ -87819,7 +88707,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2801 this -1183454879 +1181199958 1 this.root null @@ -87829,7 +88717,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2802 this -1183454879 +1181199958 1 this.root null @@ -87842,7 +88730,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2802 this -1183454879 +1181199958 1 this.root null @@ -87858,7 +88746,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2803 this -1183454879 +1181199958 1 this.root null @@ -87871,7 +88759,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2803 this -1183454879 +1181199958 1 this.root null @@ -87890,7 +88778,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2801 this -1183454879 +1181199958 1 this.root null @@ -87906,13 +88794,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2804 this -1183454879 +1181199958 1 this.root null 1 x -324051932 +542060780 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87922,13 +88810,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2805 this -1183454879 +1181199958 1 this.root null 1 x -324051932 +542060780 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87941,13 +88829,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2805 this -1183454879 +1181199958 1 this.root null 1 x -324051932 +542060780 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87963,13 +88851,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2804 this -1183454879 +1181199958 1 this.root null 1 x -324051932 +542060780 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87979,7 +88867,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2806 this -1183454879 +1181199958 1 this.root null @@ -87989,7 +88877,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2806 this -1183454879 +1181199958 1 this.root null @@ -88002,7 +88890,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2807 this -1183454879 +1181199958 1 this.root null @@ -88012,7 +88900,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2808 this -1183454879 +1181199958 1 this.root null @@ -88025,7 +88913,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2808 this -1183454879 +1181199958 1 this.root null @@ -88041,7 +88929,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2809 this -1183454879 +1181199958 1 this.root null @@ -88054,7 +88942,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2809 this -1183454879 +1181199958 1 this.root null @@ -88073,7 +88961,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2807 this -1183454879 +1181199958 1 this.root null @@ -88089,7 +88977,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2810 this -1183454879 +1181199958 1 this.root null @@ -88099,7 +88987,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2811 this -1183454879 +1181199958 1 this.root null @@ -88112,7 +89000,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2811 this -1183454879 +1181199958 1 this.root null @@ -88128,7 +89016,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2812 this -1183454879 +1181199958 1 this.root null @@ -88141,7 +89029,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2812 this -1183454879 +1181199958 1 this.root null @@ -88160,7 +89048,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2810 this -1183454879 +1181199958 1 this.root null @@ -88176,13 +89064,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2813 this -1183454879 +1181199958 1 this.root null 1 x -322292332 +237351678 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88192,13 +89080,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2814 this -1183454879 +1181199958 1 this.root null 1 x -322292332 +237351678 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88211,13 +89099,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2814 this -1183454879 +1181199958 1 this.root null 1 x -322292332 +237351678 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88233,13 +89121,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2813 this -1183454879 +1181199958 1 this.root null 1 x -322292332 +237351678 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88249,7 +89137,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2815 this -1183454879 +1181199958 1 this.root null @@ -88259,7 +89147,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2815 this -1183454879 +1181199958 1 this.root null @@ -88272,7 +89160,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2816 this -1183454879 +1181199958 1 this.root null @@ -88282,7 +89170,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2817 this -1183454879 +1181199958 1 this.root null @@ -88295,7 +89183,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2817 this -1183454879 +1181199958 1 this.root null @@ -88311,7 +89199,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2818 this -1183454879 +1181199958 1 this.root null @@ -88324,7 +89212,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2818 this -1183454879 +1181199958 1 this.root null @@ -88343,7 +89231,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2816 this -1183454879 +1181199958 1 this.root null @@ -88359,7 +89247,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2819 this -1183454879 +1181199958 1 this.root null @@ -88369,7 +89257,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2820 this -1183454879 +1181199958 1 this.root null @@ -88382,7 +89270,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2820 this -1183454879 +1181199958 1 this.root null @@ -88398,7 +89286,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2821 this -1183454879 +1181199958 1 this.root null @@ -88411,7 +89299,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2821 this -1183454879 +1181199958 1 this.root null @@ -88430,7 +89318,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2819 this -1183454879 +1181199958 1 this.root null @@ -88446,13 +89334,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2822 this -1183454879 +1181199958 1 this.root null 1 x -813466190 +1967892594 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88462,13 +89350,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2823 this -1183454879 +1181199958 1 this.root null 1 x -813466190 +1967892594 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88481,13 +89369,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2823 this -1183454879 +1181199958 1 this.root null 1 x -813466190 +1967892594 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88503,13 +89391,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2822 this -1183454879 +1181199958 1 this.root null 1 x -813466190 +1967892594 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88519,7 +89407,7 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2824 this -1183454879 +1181199958 1 this.root null @@ -88529,7 +89417,7 @@ DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2824 this -1183454879 +1181199958 1 this.root null @@ -88542,7 +89430,7 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2825 this -1183454879 +1181199958 1 this.root null @@ -88552,7 +89440,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2826 this -1183454879 +1181199958 1 this.root null @@ -88565,7 +89453,7 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT167 this_invocation_nonce 2826 this -1183454879 +1181199958 1 this.root null @@ -88581,7 +89469,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2827 this -1183454879 +1181199958 1 this.root null @@ -88594,7 +89482,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2827 this -1183454879 +1181199958 1 this.root null @@ -88613,7 +89501,7 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2825 this -1183454879 +1181199958 1 this.root null @@ -88629,7 +89517,7 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2828 this -1183454879 +1181199958 1 this.root null @@ -88639,7 +89527,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2829 this -1183454879 +1181199958 1 this.root null @@ -88652,7 +89540,7 @@ DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2829 this -1183454879 +1181199958 1 this.root null @@ -88668,7 +89556,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2830 this -1183454879 +1181199958 1 this.root null @@ -88681,7 +89569,7 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2830 this -1183454879 +1181199958 1 this.root null @@ -88700,7 +89588,7 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2828 this -1183454879 +1181199958 1 this.root null @@ -88716,13 +89604,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2831 this -1183454879 +1181199958 1 this.root null 1 x -1045358528 +342597804 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88732,13 +89620,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2832 this -1183454879 +1181199958 1 this.root null 1 x -1045358528 +342597804 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88751,35 +89639,35 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2832 this -1183454879 +1181199958 1 this.root null 1 x -1045358528 +342597804 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2831 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1045358528 +342597804 1 x.getClass().getName() "DataStructures.MyInteger" @@ -88789,20 +89677,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2833 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2833 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -88812,68 +89700,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2834 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2835 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2835 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2836 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2836 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88883,13 +89771,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2834 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88899,68 +89787,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2837 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2838 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2838 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2839 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2839 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88970,13 +89858,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2837 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88986,13 +89874,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2840 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1266405716 +1860944798 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89002,32 +89890,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2841 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1266405716 +1860944798 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2842 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1266405716 +1860944798 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89040,57 +89928,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2842 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1266405716 +1860944798 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2841 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1266405716 +1860944798 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2840 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1266405716 +1860944798 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89100,20 +89988,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2843 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2843 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -89123,68 +90011,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2844 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2845 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2845 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2846 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2846 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89194,13 +90082,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2844 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89210,68 +90098,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2847 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2848 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2848 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2849 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2849 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -770443395 +1179381257 1 return -1266405716 +1860944798 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89281,13 +90169,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2847 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1266405716 +1860944798 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89297,13 +90185,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2850 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89313,51 +90201,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2851 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2852 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2853 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89370,79 +90258,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2853 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2852 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2851 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2850 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1663232002 +258754732 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89452,20 +90340,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2854 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2854 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -89475,68 +90363,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2855 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2856 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2856 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2857 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2857 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89546,13 +90434,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2855 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89562,68 +90450,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2858 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2859 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2859 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2860 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2860 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89633,13 +90521,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2858 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89649,13 +90537,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2861 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89665,152 +90553,152 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2862 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2863 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2864 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 2864 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 2863 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 2862 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2865 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2865 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89820,19 +90708,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2861 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1529030372 +597255128 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89842,13 +90730,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2866 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1624142202 +985397764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89858,32 +90746,32 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2867 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1624142202 +985397764 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2868 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1624142202 +985397764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89896,13 +90784,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2868 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1624142202 +985397764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89918,19 +90806,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2867 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1624142202 +985397764 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return null @@ -89940,10 +90828,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2869 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -89953,10 +90841,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2869 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -89972,13 +90860,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2866 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1624142202 +985397764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89994,10 +90882,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2870 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -90010,10 +90898,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2871 this -1183454879 +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1308244637 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2871 +this +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -90022,27 +90929,55 @@ x.getClass().getName() nonsensical 2 t -777063989 +1308244637 +1 +exception +1476394199 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2870 +this +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +1476394199 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2872 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2872 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -90052,68 +90987,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2873 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2874 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2874 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2875 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2875 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90123,13 +91058,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2873 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90139,68 +91074,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2876 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2877 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2877 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2878 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2878 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90210,13 +91145,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2876 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90226,13 +91161,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2879 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90242,51 +91177,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2880 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2881 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2882 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90299,13 +91234,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2882 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90321,57 +91256,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2881 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2880 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2879 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -293351997 +837764579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90381,20 +91316,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2883 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2883 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -90404,68 +91339,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2884 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2885 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2885 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2886 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2886 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90475,13 +91410,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2884 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90491,68 +91426,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2887 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2888 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2888 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2889 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2889 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90562,13 +91497,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2887 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90578,13 +91513,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2890 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90594,51 +91529,51 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2891 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2892 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2893 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90651,13 +91586,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2893 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90673,57 +91608,57 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2892 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2891 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2890 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1892043714 +1501587365 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90733,20 +91668,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2894 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2894 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -90756,68 +91691,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2895 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2896 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2896 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2897 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2897 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90827,13 +91762,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2895 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90843,68 +91778,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2898 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2899 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2899 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2900 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2900 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90914,13 +91849,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2898 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90930,13 +91865,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2901 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90946,51 +91881,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2902 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2903 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2904 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91003,79 +91938,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2904 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 return -450416271 +348100441 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2903 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2902 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2901 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1788340069 +1007603019 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91085,20 +92020,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2905 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2905 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -91108,68 +92043,68 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2906 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2907 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2907 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2908 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2908 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91179,13 +92114,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2906 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1045358528 +342597804 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91195,68 +92130,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2909 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2910 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2910 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2911 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2911 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91266,13 +92201,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2909 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91282,13 +92217,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2912 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -266411022 +1597249648 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91298,32 +92233,32 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2913 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -266411022 +1597249648 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2914 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -266411022 +1597249648 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91336,57 +92271,57 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2914 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -266411022 +1597249648 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2913 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -266411022 +1597249648 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2912 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -266411022 +1597249648 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91396,20 +92331,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2915 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2915 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -91419,97 +92354,97 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2916 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2917 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2918 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2918 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2917 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2919 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2919 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -266411022 +1597249648 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91519,13 +92454,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2916 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -266411022 +1597249648 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91535,68 +92470,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2920 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2921 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2921 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2922 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2922 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91606,13 +92541,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2920 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91622,13 +92557,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2923 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91638,51 +92573,51 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2924 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2925 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2926 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91695,79 +92630,79 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2926 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2925 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2924 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2923 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1225870426 +1333592072 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91777,20 +92712,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2927 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2927 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -91800,126 +92735,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2928 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2929 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2930 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2931 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2931 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2930 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2929 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2932 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2932 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91929,13 +92864,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2928 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91945,68 +92880,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2933 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2934 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2934 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2935 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2935 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92016,13 +92951,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2933 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92032,13 +92967,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2936 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92048,152 +92983,152 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2937 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2938 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2939 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 2939 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2938 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 2937 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2940 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2940 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92203,19 +93138,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2936 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -829274326 +1486371051 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92225,13 +93160,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 2941 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92241,70 +93176,70 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2942 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2943 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2944 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2945 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92317,13 +93252,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2945 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92339,19 +93274,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2944 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 return null @@ -92361,19 +93296,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2943 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return null @@ -92383,19 +93318,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 2942 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return null @@ -92405,10 +93340,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2946 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -92418,10 +93353,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2946 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -92437,13 +93372,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 2941 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -444728052 +1121647253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92459,10 +93394,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2947 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -92475,10 +93410,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2948 this -1183454879 +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1308244637 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2948 +this +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -92487,27 +93441,55 @@ x.getClass().getName() nonsensical 2 t -777063989 +1308244637 +1 +exception +1694556038 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +2947 +this +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +1694556038 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2949 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2949 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -92517,126 +93499,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2950 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2951 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2952 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2953 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2953 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2952 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2951 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2954 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2954 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92646,13 +93628,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2950 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92662,68 +93644,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2955 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2956 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2956 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2957 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2957 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92733,13 +93715,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2955 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92749,13 +93731,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::ENTER this_invocation_nonce 2958 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92765,70 +93747,70 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2959 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2960 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2961 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2962 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92841,13 +93823,13 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2962 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92863,79 +93845,79 @@ DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures this_invocation_nonce 2961 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 return -450416271 +348100441 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2960 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT156 this_invocation_nonce 2959 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.remove(DataStructures.Comparable):::EXIT48 this_invocation_nonce 2958 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1301278404 +1076496284 1 x.getClass().getName() "DataStructures.MyInteger" @@ -92945,20 +93927,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2963 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2963 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -92968,126 +93950,126 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2964 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2965 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2966 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2967 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2967 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2966 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2965 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2968 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2968 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93097,13 +94079,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2964 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1225870426 +1333592072 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93113,68 +94095,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2969 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2970 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2970 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2971 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2971 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93184,13 +94166,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2969 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93200,13 +94182,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2972 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" @@ -93216,70 +94198,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2973 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2974 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2975 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2976 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" @@ -93292,101 +94274,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2976 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2975 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2974 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2973 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2972 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -612674980 +1508646930 1 x.getClass().getName() "DataStructures.MyInteger" @@ -93396,20 +94378,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2977 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2977 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -93419,155 +94401,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2978 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2979 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2980 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2981 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2982 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2982 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2981 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2980 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2979 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2983 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2983 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -612674980 +1508646930 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93577,13 +94559,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2978 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -612674980 +1508646930 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93593,68 +94575,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2984 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2985 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 2985 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2986 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2986 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93664,13 +94646,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2984 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93680,13 +94662,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 2987 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" @@ -93696,70 +94678,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2988 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2989 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2990 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 2991 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" @@ -93772,101 +94754,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 2991 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1425361215 +1072601481 1 return -1425361215 +1072601481 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2990 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2989 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 2988 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 2987 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1545884603 +795372831 1 x.getClass().getName() "DataStructures.MyInteger" @@ -93876,20 +94858,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 2992 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 2992 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -93899,155 +94881,155 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 2993 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2994 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2995 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2996 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2997 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 2997 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2996 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2995 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 2994 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 2998 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 2998 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -612674980 +1508646930 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94057,13 +95039,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 2993 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -612674980 +1508646930 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94073,68 +95055,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 2999 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3000 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3000 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3001 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3001 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94144,13 +95126,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 2999 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94160,13 +95142,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3002 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" @@ -94176,89 +95158,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3003 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3004 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3005 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3006 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3007 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" @@ -94271,123 +95253,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3007 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3006 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3005 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3004 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3003 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 3002 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -865858220 +121295574 1 x.getClass().getName() "DataStructures.MyInteger" @@ -94397,20 +95379,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3008 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3008 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -94420,184 +95402,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3009 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3010 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3011 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3012 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3013 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3014 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3014 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3013 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3012 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3011 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3010 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3015 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3015 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94607,13 +95589,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3009 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94623,68 +95605,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3016 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3017 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3017 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3018 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3018 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94694,13 +95676,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3016 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94710,13 +95692,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 3019 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" @@ -94726,234 +95708,234 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3020 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3021 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3022 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3023 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3024 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 3024 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 3023 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 3022 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 3021 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 3020 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3025 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3025 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94963,19 +95945,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 3019 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -224152255 +485041780 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -94985,13 +95967,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 3026 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95001,89 +95983,89 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3027 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3028 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3029 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3030 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3031 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95096,13 +96078,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3031 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95118,19 +96100,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3030 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return null @@ -95140,19 +96122,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3029 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return null @@ -95162,19 +96144,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3028 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return null @@ -95184,19 +96166,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3027 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return null @@ -95206,10 +96188,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3032 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -95219,10 +96201,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3032 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -95238,13 +96220,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 3026 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -640632947 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95260,10 +96242,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3033 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -95276,10 +96258,29 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3034 this -1183454879 +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1308244637 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +3034 +this +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -95288,27 +96289,55 @@ x.getClass().getName() nonsensical 2 t -777063989 +1308244637 +1 +exception +117244645 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +3033 +this +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +117244645 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3035 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3035 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -95318,184 +96347,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3036 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3037 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3038 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3039 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3040 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3041 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3041 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3040 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3039 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3038 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3037 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3042 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3042 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -95505,13 +96534,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3036 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -95521,68 +96550,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3043 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3044 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3044 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3045 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3045 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -95592,13 +96621,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3043 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -95608,13 +96637,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3046 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95624,108 +96653,108 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3047 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3048 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3049 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3050 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3051 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3052 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95738,145 +96767,145 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3052 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846875123 +239465106 1 return -1846875123 +239465106 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3051 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3050 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3049 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3048 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3047 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 3046 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -1782417818 +1540011289 1 x.getClass().getName() "DataStructures.MyInteger" @@ -95886,20 +96915,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3053 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3053 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -95909,184 +96938,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3054 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3055 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3056 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3057 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3058 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3059 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3059 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3058 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3057 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3056 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3055 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3060 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3060 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96096,13 +97125,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3054 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96112,68 +97141,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3061 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3062 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3062 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3063 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3063 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96183,13 +97212,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3061 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96199,13 +97228,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3064 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" @@ -96215,89 +97244,89 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3065 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3066 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3067 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3068 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3069 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" @@ -96310,123 +97339,123 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3069 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1408874031 +832947102 1 return -1408874031 +832947102 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3068 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3067 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3066 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3065 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 3064 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -701558523 +1596000437 1 x.getClass().getName() "DataStructures.MyInteger" @@ -96436,20 +97465,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3070 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3070 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -96459,184 +97488,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3071 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3072 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3073 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3074 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3075 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3076 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3076 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3075 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3074 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3073 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3072 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3077 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3077 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96646,13 +97675,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3071 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96662,68 +97691,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3078 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3079 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3079 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3080 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3080 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96733,13 +97762,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3078 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96749,13 +97778,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3081 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" @@ -96765,70 +97794,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3082 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3083 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3084 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3085 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" @@ -96841,101 +97870,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3085 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1739647788 +507084503 1 return -1739647788 +507084503 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3084 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3083 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3082 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 3081 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -791147195 +1061804750 1 x.getClass().getName() "DataStructures.MyInteger" @@ -96945,20 +97974,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3086 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3086 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -96968,184 +97997,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3087 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3088 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3089 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3090 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3091 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3092 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3092 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3091 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3090 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3089 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3088 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3093 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3093 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97155,13 +98184,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3087 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97171,68 +98200,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3094 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3095 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3095 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3096 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3096 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97242,13 +98271,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3094 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97258,13 +98287,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 3097 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97274,193 +98303,193 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3098 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3099 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3100 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3101 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1739647788 +507084503 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 this_invocation_nonce 3101 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1739647788 +507084503 1 return -1739647788 +507084503 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 this_invocation_nonce 3100 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 return -1739647788 +507084503 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 3099 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -1739647788 +507084503 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 this_invocation_nonce 3098 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -1739647788 +507084503 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3102 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1739647788 +507084503 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3102 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1739647788 +507084503 1 return -791147195 +1061804750 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97470,19 +98499,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 3097 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -270519011 +1225439493 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -791147195 +1061804750 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97492,13 +98521,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER this_invocation_nonce 3103 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97508,70 +98537,70 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3104 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3105 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3106 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3107 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97584,13 +98613,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3107 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97606,19 +98635,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3106 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -145624615 +333362446 1 return null @@ -97628,19 +98657,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3105 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return null @@ -97650,19 +98679,19 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.B this_invocation_nonce 3104 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return null @@ -97672,10 +98701,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3108 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -97685,10 +98714,10 @@ DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3108 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t null @@ -97704,13 +98733,13 @@ DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 this_invocation_nonce 3103 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -390137178 +1454127753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97726,10 +98755,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3109 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -97742,10 +98771,10 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3110 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x null @@ -97754,27 +98783,74 @@ x.getClass().getName() nonsensical 2 t -777063989 +1308244637 +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +this_invocation_nonce +3110 +this +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +t +1308244637 +1 +exception +667026744 +1 +exception.getClass().getName() +"java.lang.NullPointerException" +1 + +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +this_invocation_nonce +3109 +this +1181199958 +1 +this.root +1308244637 +1 +x +null +1 +x.getClass().getName() +nonsensical +2 +exception +667026744 +1 +exception.getClass().getName() +"java.lang.NullPointerException" 1 DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3111 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3111 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -97784,184 +98860,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3112 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3113 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3114 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3115 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3116 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3117 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3117 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3116 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3115 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3114 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3113 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3118 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3118 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97971,13 +99047,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3112 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97987,68 +99063,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3119 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3120 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3120 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3121 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3121 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98058,13 +99134,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3119 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98074,13 +99150,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3122 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98090,127 +99166,127 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3123 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3124 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3125 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3126 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3127 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3128 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846875123 +239465106 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3129 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98223,167 +99299,167 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3129 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1001880015 +1845904670 1 return -1001880015 +1845904670 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3128 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1846875123 +239465106 1 return -1846875123 +239465106 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3127 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3126 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -44301495 +1291286504 1 return -44301495 +1291286504 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3125 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -246140464 +655381473 1 return -246140464 +655381473 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3124 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -66642759 +89387388 1 return -66642759 +89387388 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3123 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 3122 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -767976355 +1926764753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98393,20 +99469,20 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3130 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3130 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return false @@ -98416,184 +99492,184 @@ DataStructures.BinarySearchTree.findMin():::ENTER this_invocation_nonce 3131 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3132 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3133 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3134 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3135 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3136 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 this_invocation_nonce 3136 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3135 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -44301495 +1291286504 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3134 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -246140464 +655381473 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3133 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -66642759 +89387388 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 this_invocation_nonce 3132 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 return -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3137 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3137 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -1129911468 +1887813102 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98603,13 +99679,13 @@ DataStructures.BinarySearchTree.findMin():::EXIT56 this_invocation_nonce 3131 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -865858220 +121295574 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98619,68 +99695,68 @@ DataStructures.BinarySearchTree.findMax():::ENTER this_invocation_nonce 3138 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3139 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 this_invocation_nonce 3139 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER this_invocation_nonce 3140 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 this_invocation_nonce 3140 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 t -145624615 +333362446 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98690,13 +99766,13 @@ DataStructures.BinarySearchTree.findMax():::EXIT65 this_invocation_nonce 3138 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 return -1663232002 +258754732 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98706,13 +99782,13 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce 3141 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98722,70 +99798,70 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3142 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3143 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3144 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER this_invocation_nonce 3145 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98798,101 +99874,101 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this_invocation_nonce 3145 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -339178328 +1846896625 1 return -339178328 +1846896625 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3144 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -450416271 +348100441 1 return -450416271 +348100441 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3143 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -770443395 +1179381257 1 return -770443395 +1179381257 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 this_invocation_nonce 3142 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" 1 t -777063989 +1308244637 1 return -777063989 +1308244637 1 DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 this_invocation_nonce 3141 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 x -178135978 +1497973285 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98902,1090 +99978,22 @@ DataStructures.BinarySearchTree.isEmpty():::ENTER this_invocation_nonce 3146 this -1183454879 +1181199958 1 this.root -777063989 +1308244637 1 DataStructures.BinarySearchTree.isEmpty():::EXIT92 this_invocation_nonce 3146 this -1183454879 -1 -this.root -777063989 -1 -return -false -1 - -DataStructures.BinarySearchTree.findMin():::ENTER -this_invocation_nonce -3147 -this -1183454879 -1 -this.root -777063989 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3148 -this -1183454879 -1 -this.root -777063989 -1 -t -777063989 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3149 -this -1183454879 -1 -this.root -777063989 -1 -t -66642759 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3150 -this -1183454879 -1 -this.root -777063989 -1 -t -246140464 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3151 -this -1183454879 -1 -this.root -777063989 -1 -t -44301495 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3152 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 -this_invocation_nonce -3152 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3151 -this -1183454879 -1 -this.root -777063989 -1 -t -44301495 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3150 -this -1183454879 -1 -this.root -777063989 -1 -t -246140464 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3149 -this -1183454879 -1 -this.root -777063989 -1 -t -66642759 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3148 -this -1183454879 -1 -this.root -777063989 -1 -t -777063989 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3153 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 -this_invocation_nonce -3153 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 -return -865858220 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.findMin():::EXIT56 -this_invocation_nonce -3147 -this -1183454879 -1 -this.root -777063989 -1 -return -865858220 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.findMax():::ENTER -this_invocation_nonce -3154 -this -1183454879 -1 -this.root -777063989 -1 - -DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3155 -this -1183454879 -1 -this.root -777063989 -1 -t -777063989 -1 - -DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 -this_invocation_nonce -3155 -this -1183454879 +1181199958 1 this.root -777063989 -1 -t -145624615 -1 -return -145624615 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3156 -this -1183454879 -1 -this.root -777063989 -1 -t -145624615 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 -this_invocation_nonce -3156 -this -1183454879 -1 -this.root -777063989 -1 -t -145624615 -1 -return -1663232002 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.findMax():::EXIT65 -this_invocation_nonce -3154 -this -1183454879 -1 -this.root -777063989 -1 -return -1663232002 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -3157 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3158 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -777063989 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3159 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -770443395 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3160 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -450416271 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3161 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -null -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 -this_invocation_nonce -3161 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -109988423 -1 -return -109988423 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 -this_invocation_nonce -3160 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -450416271 -1 -return -450416271 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 -this_invocation_nonce -3159 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -770443395 -1 -return -770443395 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT132 -this_invocation_nonce -3158 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -777063989 -1 -return -777063989 -1 - -DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT39 -this_invocation_nonce -3157 -this -1183454879 -1 -this.root -777063989 -1 -x -1148559558 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.isEmpty():::ENTER -this_invocation_nonce -3162 -this -1183454879 -1 -this.root -777063989 -1 - -DataStructures.BinarySearchTree.isEmpty():::EXIT92 -this_invocation_nonce -3162 -this -1183454879 -1 -this.root -777063989 +1308244637 1 return false 1 -DataStructures.BinarySearchTree.findMin():::ENTER -this_invocation_nonce -3163 -this -1183454879 -1 -this.root -777063989 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3164 -this -1183454879 -1 -this.root -777063989 -1 -t -777063989 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3165 -this -1183454879 -1 -this.root -777063989 -1 -t -66642759 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3166 -this -1183454879 -1 -this.root -777063989 -1 -t -246140464 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3167 -this -1183454879 -1 -this.root -777063989 -1 -t -44301495 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3168 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT169 -this_invocation_nonce -3168 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3167 -this -1183454879 -1 -this.root -777063989 -1 -t -44301495 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3166 -this -1183454879 -1 -this.root -777063989 -1 -t -246140464 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3165 -this -1183454879 -1 -this.root -777063989 -1 -t -66642759 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT170 -this_invocation_nonce -3164 -this -1183454879 -1 -this.root -777063989 -1 -t -777063989 -1 -return -1129911468 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3169 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 -this_invocation_nonce -3169 -this -1183454879 -1 -this.root -777063989 -1 -t -1129911468 -1 -return -865858220 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.findMin():::EXIT56 -this_invocation_nonce -3163 -this -1183454879 -1 -this.root -777063989 -1 -return -865858220 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.findMax():::ENTER -this_invocation_nonce -3170 -this -1183454879 -1 -this.root -777063989 -1 - -DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3171 -this -1183454879 -1 -this.root -777063989 -1 -t -777063989 -1 - -DataStructures.BinarySearchTree.findMax(DataStructures.BinaryNode):::EXIT184 -this_invocation_nonce -3171 -this -1183454879 -1 -this.root -777063989 -1 -t -145624615 -1 -return -145624615 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3172 -this -1183454879 -1 -this.root -777063989 -1 -t -145624615 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 -this_invocation_nonce -3172 -this -1183454879 -1 -this.root -777063989 -1 -t -145624615 -1 -return -1663232002 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.findMax():::EXIT65 -this_invocation_nonce -3170 -this -1183454879 -1 -this.root -777063989 -1 -return -1663232002 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER -this_invocation_nonce -3173 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3174 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -777063989 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3175 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -770443395 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3176 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -450416271 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3177 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -109988423 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT202 -this_invocation_nonce -3177 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -109988423 -1 -return -109988423 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 -this_invocation_nonce -3176 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -450416271 -1 -return -109988423 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT198 -this_invocation_nonce -3175 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -770443395 -1 -return -109988423 -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT200 -this_invocation_nonce -3174 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -777063989 -1 -return -109988423 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3178 -this -1183454879 -1 -this.root -777063989 -1 -t -109988423 -1 - -DataStructures.BinarySearchTree.elementAt(DataStructures.BinaryNode):::EXIT113 -this_invocation_nonce -3178 -this -1183454879 -1 -this.root -777063989 -1 -t -109988423 -1 -return -1148559558 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable):::EXIT75 -this_invocation_nonce -3173 -this -1183454879 -1 -this.root -777063989 -1 -x -1739488941 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -return -1148559558 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable):::ENTER -this_invocation_nonce -3179 -this -1183454879 -1 -this.root -777063989 -1 -x -1895744776 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.BinarySearchTree.find(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -this_invocation_nonce -3180 -this -1183454879 -1 -this.root -777063989 -1 -x -1895744776 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -t -777063989 -1 - diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon-end2end.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon-end2end.goal index bf6f34c5b0..80023719b5 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon-end2end.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon-end2end.goal @@ -431,21 +431,33 @@ return != null orig(t) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER -x != null x.getClass().getName() == DataStructures.MyInteger.class =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTION +this == orig(this) +this.root == orig(this.root) +x == orig(x) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT this.root != null +orig(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER (this.root == null) ==> (t == null) (this.root == null) ==> (this.root == t) -x != null +(this.root == null) ==> (x != null) x.getClass().getName() == DataStructures.MyInteger.class =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER;condition="root == null" this.root == t this.root == null +x != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER;condition="not(root == null)" this.root != null @@ -458,14 +470,70 @@ x.getClass().getName() == DataStructures.MyInteger.class =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER;condition="not(isEmpty())" this.root != null -x != null x.getClass().getName() == DataStructures.MyInteger.class =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION +this == orig(this) +this.root == orig(this.root) +x == orig(x) +t == orig(t) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +orig(t) != null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION;condition="not(orig(root == null))" +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION;condition="not(root == null)" +this == orig(this) +this.root == orig(this.root) +x == orig(x) +t == orig(t) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +orig(t) != null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION;condition="not(isEmpty())" +this == orig(this) +this.root == orig(this.root) +x == orig(x) +t == orig(t) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +orig(t) != null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION;condition="not(orig(isEmpty()))" +this == orig(this) +this.root == orig(this.root) +x == orig(x) +t == orig(t) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +orig(t) != null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT;condition="not(orig(root == null))" +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT;condition="not(root == null)" +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT;condition="not(isEmpty())" +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT;condition="not(orig(isEmpty()))" +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT this.root == orig(this.root) (this.root == null) ==> (orig(t) == null) (this.root == null) ==> (this.root == orig(t)) return != null +orig(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT;condition="orig(root == null)" this.root == orig(t) @@ -484,6 +552,7 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this.root == orig(this.root) this.root != null return != null +orig(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT;condition="isEmpty()" this.root == orig(this.root) @@ -495,6 +564,7 @@ DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures this.root == orig(this.root) this.root != null return != null +orig(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT;condition="orig(isEmpty())" this.root == orig(this.root) diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon.goal index f2a6232e08..9e37f74b22 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-daikon.goal @@ -84,19 +84,43 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT this.root == orig(this.root) =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER -x != null x.getClass().getName() == DataStructures.MyInteger.class =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTION +this == orig(this) +this.root == orig(this.root) +x == orig(x) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT this.root != null +orig(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -x != null x.getClass().getName() == DataStructures.MyInteger.class =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION +this == orig(this) +this.root == t +this.root == orig(this.root) +this.root == orig(t) +x == orig(x) +this.root != null +exception != null +exception.getClass().getName() == java.lang.NullPointerException.class +orig(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT this.root == orig(this.root) return != null +orig(x) != null =========================================================================== DataStructures.BinarySearchTree.isEmpty():::ENTER =========================================================================== diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-esc.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-esc.goal index beccb6e71f..d431f619cd 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-esc.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-esc.goal @@ -116,26 +116,56 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER Variables: this this.root x x.getClass().getName() -x != null (x != null) ==> (\typeof(x) == \type(DataStructures.MyInteger)) =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTION + Variables: this this.root x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) + Modified variables: x.getClass().getName() + Unmodified variables: this this.root x +this.root != null +\result != null +\typeof(\result) == \type(java.lang.NullPointerException) +\old(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT + Variables: this this.root x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) + Modified variables: x.getClass().getName() + Unmodified variables: this this.root x +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT Variables: this this.root x x.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) Modified variables: this.root Unmodified variables: this x x.getClass().getName() modifies this.root this.root != null +\old(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER Variables: this this.root x x.getClass().getName() t -x != null (x != null) ==> (\typeof(x) == \type(DataStructures.MyInteger)) =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION + Variables: this this.root x x.getClass().getName() t exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) orig(t) + Modified variables: x.getClass().getName() + Unmodified variables: this this.root x t +this.root == t +this.root == \old(t) +this.root != null +\result != null +\typeof(\result) == \type(java.lang.NullPointerException) +\old(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT + Variables: this this.root x x.getClass().getName() t exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) orig(t) + Modified variables: x.getClass().getName() + Unmodified variables: this this.root x t +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT Variables: this this.root x x.getClass().getName() t return orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) orig(t) Modified primitive arguments: t Unmodified variables: this this.root x x.getClass().getName() \result != null +\old(x) != null =========================================================================== DataStructures.BinarySearchTree.isEmpty():::ENTER Variables: this this.root diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-jaif.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-jaif.goal index e2fcb9d987..a4c4237d2f 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-jaif.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-jaif.goal @@ -3,52 +3,97 @@ annotation @Nullable: annotation @NonNull: package DataStructures: -class BinarySearchTree : // 14292/- obj/class samples - field root : @Nullable // DataStructures.BinaryNode +class BinarySearchTree : // 14376/- obj/class samples + field root : @Nullable // DataStructures.BinaryNode + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 16 samples - return: + return: + method elementAt(LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t method elementAt(LDataStructures/BinaryNode;)LDataStructures/Comparable; : // 1223 samples - return: @Nullable - parameter #0 : @Nullable // t + return: @Nullable + parameter #0 : @Nullable // t + method find(LDataStructures/Comparable;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // x method find(LDataStructures/Comparable;)LDataStructures/Comparable; : // 153 samples - return: @Nullable + return: @Nullable + parameter #0 : // x + method find(LDataStructures/Comparable;LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // x + parameter #1 : // t method find(LDataStructures/Comparable;LDataStructures/BinaryNode;)LDataStructures/BinaryNode; : // 567 samples - return: @Nullable + return: @Nullable parameter #0 : // x - parameter #1 : @Nullable // t + parameter #1 : @Nullable // t + method findMax()V throws Ljava/lang/Throwable; : // 0 samples + return: method findMax()LDataStructures/Comparable; : // 493 samples - return: @Nullable + return: @Nullable + method findMax(LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t method findMax(LDataStructures/BinaryNode;)LDataStructures/BinaryNode; : // 493 samples - return: @Nullable - parameter #0 : @Nullable // t + return: @Nullable + parameter #0 : @Nullable // t + method findMin()V throws Ljava/lang/Throwable; : // 0 samples + return: method findMin()LDataStructures/Comparable; : // 577 samples - return: @Nullable + return: @Nullable + method findMin(LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t method findMin(LDataStructures/BinaryNode;)LDataStructures/BinaryNode; : // 1450 samples - return: @Nullable - parameter #0 : @Nullable // t + return: @Nullable + parameter #0 : @Nullable // t + method insert(LDataStructures/Comparable;)V throws Ljava/lang/Throwable; : // 21 samples + return: + parameter #0 : @Nullable // x method insert(LDataStructures/Comparable;)V : // 221 samples - return: + return: parameter #0 : // x + method insert(LDataStructures/Comparable;LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 21 samples + return: + parameter #0 : @Nullable // x + parameter #1 : // t method insert(LDataStructures/Comparable;LDataStructures/BinaryNode;)LDataStructures/BinaryNode; : // 782 samples - return: + return: parameter #0 : // x parameter #1 : // t + method isEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method isEmpty()Z : // 566 samples - return: + return: + method makeEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method makeEmpty()V : // 20 samples - return: + return: + method printTree()V throws Ljava/lang/Throwable; : // 0 samples + return: method printTree()V : // 0 samples - return: + return: + method printTree(LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t method printTree(LDataStructures/BinaryNode;)V : // 0 samples - return: + return: parameter #0 : // t + method remove(LDataStructures/Comparable;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // x method remove(LDataStructures/Comparable;)V : // 164 samples - return: + return: parameter #0 : // x + method remove(LDataStructures/Comparable;LDataStructures/BinaryNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // x + parameter #1 : // t method remove(LDataStructures/Comparable;LDataStructures/BinaryNode;)LDataStructures/BinaryNode; : // 429 samples - return: @Nullable + return: @Nullable parameter #0 : // x - parameter #1 : @Nullable // t + parameter #1 : @Nullable // t diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-jml.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-jml.goal index ad26960e2d..a1a6e1a1b3 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-jml.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-jml.goal @@ -108,23 +108,51 @@ this.root == \old(this.root) =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER Variables: this this.root x x.getClass().getName() -x != null (x != null) ==> (x.getClass().getName() == DataStructures.MyInteger.class.getName()) =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTION + Variables: this this.root x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) +this == \old(this) +this.root == \old(this.root) +x == \old(x) +this.root != null +Exception != null +Exception.getClass().getName() == java.lang.NullPointerException.class.getName() +\old(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT + Variables: this this.root x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT Variables: this this.root x x.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) assignable this.root this.root != null +\old(x) != null =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER Variables: this this.root x x.getClass().getName() t -x != null (x != null) ==> (x.getClass().getName() == DataStructures.MyInteger.class.getName()) =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION + Variables: this this.root x x.getClass().getName() t exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) orig(t) +this == \old(this) +this.root == t +this.root == \old(this.root) +this.root == \old(t) +x == \old(x) +this.root != null +Exception != null +Exception.getClass().getName() == java.lang.NullPointerException.class.getName() +\old(x) == null +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT + Variables: this this.root x x.getClass().getName() t exception exception.getClass().getName() orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) orig(t) +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT Variables: this this.root x x.getClass().getName() t return orig(this) orig(this.root) orig(x) orig(x.getClass().getName()) orig(t) this.root == \old(this.root) \result != null +\old(x) != null =========================================================================== DataStructures.BinarySearchTree.isEmpty():::ENTER Variables: this this.root diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-esc.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-esc.goal index d1fe009c9c..384963d42e 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-esc.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-esc.goal @@ -30,10 +30,10 @@ public class BinarySearchTree root = null; } - /*@ requires x != null; */ /*@ requires \typeof(x) == \type(DataStructures.MyInteger); */ /*@ modifies this.root; */ /*@ ensures this.root != null; */ + /*@ ensures \old(x) != null; */ /** * Insert into the tree; duplicates are ignored. * @param x the item to insert. @@ -133,9 +133,9 @@ public class BinarySearchTree return t == null ? null : t.element; } - /*@ requires x != null; */ /*@ requires \typeof(x) == \type(DataStructures.MyInteger); */ /*@ ensures \result != null; */ + /*@ ensures \old(x) != null; */ /** * Internal method to insert into a subtree. * @param x the item to insert. diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-jml.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-jml.goal index f90cd3ec49..03425beac6 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-jml.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-merge-jml.goal @@ -35,9 +35,18 @@ public class BinarySearchTree /*@ @ public normal_behavior // Generated by Daikon - @ requires x != null; @ requires x.getClass().getName() == DataStructures.MyInteger.class.getName(); @ ensures this.root != null; + @ ensures \old(x) != null; + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.root == \old(this.root); + @ requires x == \old(x); + @ requires this.root != null; + @ requires Exception != null; + @ requires Exception.getClass().getName() == java.lang.NullPointerException.class.getName(); + @ requires \old(x) == null; @*/ /** * Insert into the tree; duplicates are ignored. @@ -167,10 +176,21 @@ public class BinarySearchTree /*@ @ private normal_behavior // Generated by Daikon - @ requires x != null; @ requires x.getClass().getName() == DataStructures.MyInteger.class.getName(); @ ensures this.root == \old(this.root); @ ensures \result != null; + @ ensures \old(x) != null; + @ also + @ private exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.root == t; + @ requires this.root == \old(this.root); + @ requires this.root == \old(t); + @ requires x == \old(x); + @ requires this.root != null; + @ requires Exception != null; + @ requires Exception.getClass().getName() == java.lang.NullPointerException.class.getName(); + @ requires \old(x) == null; @*/ /** * Internal method to insert into a subtree. diff --git a/tests/daikon-tests/BinaryTree/BinaryTree.txt-simplify.goal b/tests/daikon-tests/BinaryTree/BinaryTree.txt-simplify.goal index b78c45c35f..546831773c 100644 --- a/tests/daikon-tests/BinaryTree/BinaryTree.txt-simplify.goal +++ b/tests/daikon-tests/BinaryTree/BinaryTree.txt-simplify.goal @@ -84,19 +84,43 @@ DataStructures.BinarySearchTree.findMin(DataStructures.BinaryNode):::EXIT (EQ (hash (select |root| |this|)) (hash (select |root| |__orig__this|))) =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::ENTER -(NEQ (hash |x|) null) (EQ (typeof |x|) |T_DataStructures.MyInteger|) =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTION +(EQ (hash |this|) (hash |__orig__this|)) +(EQ (hash (select |root| |this|)) (hash (select |root| |__orig__this|))) +(EQ (hash |x|) (hash |__orig__x|)) +(NEQ (hash (select |root| |this|)) null) +(NEQ (hash |return|) null) +(EQ (typeof |return|) |T_java.lang.NullPointerException|) +(EQ (hash |__orig__x|) null) +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable):::EXIT (NEQ (hash (select |root| |this|)) null) +(NEQ (hash |__orig__x|) null) =========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::ENTER -(NEQ (hash |x|) null) (EQ (typeof |x|) |T_DataStructures.MyInteger|) =========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTION +(EQ (hash |this|) (hash |__orig__this|)) +(EQ (hash (select |root| |this|)) (hash |t|)) +(EQ (hash (select |root| |this|)) (hash (select |root| |__orig__this|))) +(EQ (hash (select |root| |this|)) (hash |__orig__t|)) +(EQ (hash |x|) (hash |__orig__x|)) +(NEQ (hash (select |root| |this|)) null) +(NEQ (hash |return|) null) +(EQ (typeof |return|) |T_java.lang.NullPointerException|) +(EQ (hash |__orig__x|) null) +=========================================================================== +DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXCEPTIONUNCAUGHT +=========================================================================== DataStructures.BinarySearchTree.insert(DataStructures.Comparable, DataStructures.BinaryNode):::EXIT (EQ (hash (select |root| |this|)) (hash (select |root| |__orig__this|))) (NEQ (hash |return|) null) +(NEQ (hash |__orig__x|) null) =========================================================================== DataStructures.BinarySearchTree.isEmpty():::ENTER =========================================================================== diff --git a/tests/daikon-tests/CursorList/CursorList.txt-chicory.goal b/tests/daikon-tests/CursorList/CursorList.txt-chicory.goal index 40860c8032..0f7e501745 100644 --- a/tests/daikon-tests/CursorList/CursorList.txt-chicory.goal +++ b/tests/daikon-tests/CursorList/CursorList.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.CursorList -// Declarations written Thu Jun 04 13:15:00 PDT 2015 +// Declarations written Mon Jul 31 13:29:28 PDT 2017 decl-version 2.0 var-comparability none @@ -8,7 +8,7 @@ ppt DataStructures.CursorList.alloc():::ENTER ppt-type enter parent parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode comparability 22 @@ -19,11 +19,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -37,7 +37,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -55,7 +55,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -67,7 +67,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -79,7 +79,7 @@ ppt DataStructures.CursorList.alloc():::EXIT37 ppt-type subexit parent parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -91,11 +91,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -110,7 +110,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -129,7 +129,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -142,7 +142,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -150,17 +150,17 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::CLASS 1 variable return - var-kind return + var-kind return dec-type int rep-type int flags nomod comparability 22 -ppt DataStructures.CursorList.free(int):::ENTER -ppt-type enter +ppt DataStructures.CursorList.alloc():::EXCEPTION36 +ppt-type subexit parent parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -172,11 +172,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -191,7 +191,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -210,7 +210,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -223,25 +223,120 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::CLASS 1 -variable p - var-kind variable +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorList.alloc():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable dec-type int rep-type int - flags is_param nomod + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.CursorList.free(int):::EXIT45 -ppt-type subexit +ppt DataStructures.CursorList.free(int):::ENTER +ppt-type enter parent parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -253,11 +348,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -272,7 +367,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -291,7 +386,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -304,7 +399,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -312,58 +407,121 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::CLASS 1 variable p - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 -ppt DataStructures.CursorList.CursorList():::ENTER -ppt-type enter - -ppt DataStructures.CursorList.CursorList():::EXIT54 +ppt DataStructures.CursorList.free(int):::EXIT45 ppt-type subexit -parent parent DataStructures.CursorList:::OBJECT 1 -variable this - var-kind variable - dec-type DataStructures.CursorList +parent parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] rep-type hashcode - flags is_param nomod + flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 -variable this.header - var-kind field header - enclosing-var this + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable dec-type int rep-type int + constant 100 flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 +variable p + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt DataStructures.CursorList.free(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -371,9 +529,9 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].element var-kind field element enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -382,7 +540,7 @@ variable DataStructures.CursorList.cursorSpace[..].element rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..].element @@ -390,9 +548,9 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.cursorSpace[..].next var-kind field next enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -401,24 +559,46 @@ variable DataStructures.CursorList.cursorSpace[..].next rep-type int[] flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 - parent DataStructures.CursorList:::OBJECT 1 + parent DataStructures.CursorList:::CLASS 1 +variable p + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.CursorList.isEmpty():::ENTER +ppt DataStructures.CursorList.CursorList():::ENTER ppt-type enter + +ppt DataStructures.CursorList.CursorList():::EXIT54 +ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -430,7 +610,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -442,11 +622,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -461,7 +641,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -480,7 +660,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -493,7 +673,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -501,14 +681,14 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 -ppt DataStructures.CursorList.isEmpty():::EXIT62 +ppt DataStructures.CursorList.CursorList():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -520,7 +700,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -532,11 +712,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -551,7 +731,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -570,7 +750,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -583,28 +763,35 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable return - var-kind return - dec-type boolean - rep-type boolean +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode flags nomod comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.CursorList.makeEmpty():::ENTER +ppt DataStructures.CursorList.isEmpty():::ENTER ppt-type enter parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -616,7 +803,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -628,11 +815,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -647,7 +834,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -666,7 +853,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -679,7 +866,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -687,14 +874,14 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 -ppt DataStructures.CursorList.makeEmpty():::EXIT72 +ppt DataStructures.CursorList.isEmpty():::EXIT62 ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -706,7 +893,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -718,11 +905,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -737,7 +924,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -756,7 +943,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -769,22 +956,28 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 -ppt DataStructures.CursorList.zeroth():::ENTER -ppt-type enter +ppt DataStructures.CursorList.isEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -796,7 +989,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -808,11 +1001,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -827,7 +1020,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -846,7 +1039,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -859,22 +1052,35 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.CursorList.zeroth():::EXIT80 -ppt-type subexit +ppt DataStructures.CursorList.makeEmpty():::ENTER +ppt-type enter parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -886,7 +1092,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -898,11 +1104,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -917,7 +1123,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -936,7 +1142,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -949,35 +1155,22 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable return - var-kind return - dec-type DataStructures.CursorListItr - rep-type hashcode - flags nomod - comparability 22 -variable return.current - var-kind field current - enclosing-var return - dec-type int - rep-type int - flags nomod - comparability 22 -ppt DataStructures.CursorList.first():::ENTER -ppt-type enter +ppt DataStructures.CursorList.makeEmpty():::EXIT72 +ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -989,7 +1182,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1001,11 +1194,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1020,7 +1213,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1039,7 +1232,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1052,7 +1245,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1060,14 +1253,14 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 -ppt DataStructures.CursorList.first():::EXIT89 +ppt DataStructures.CursorList.makeEmpty():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1079,7 +1272,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1091,11 +1284,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1110,7 +1303,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1129,7 +1322,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1142,35 +1335,35 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable return - var-kind return - dec-type DataStructures.CursorListItr +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable return.current - var-kind field current - enclosing-var return - dec-type int - rep-type int - flags nomod +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.CursorList.insert(java.lang.Object,\_DataStructures.CursorListItr):::ENTER +ppt DataStructures.CursorList.zeroth():::ENTER ppt-type enter parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1182,7 +1375,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1194,11 +1387,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1213,7 +1406,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1232,7 +1425,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1245,49 +1438,125 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable x - var-kind variable - dec-type java.lang.Object + +ppt DataStructures.CursorList.zeroth():::EXIT80 +ppt-type subexit +parent parent DataStructures.CursorList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 -variable x.getClass().getName() + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String - function-args x - flags nomod synthetic classname + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null comparability 22 -variable p - var-kind variable + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable return + var-kind return dec-type DataStructures.CursorListItr rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable p.current +variable return.current var-kind field current - enclosing-var p + enclosing-var return dec-type int rep-type int flags nomod comparability 22 -ppt DataStructures.CursorList.insert(java.lang.Object,\_DataStructures.CursorListItr):::EXIT108 +ppt DataStructures.CursorList.zeroth():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1299,7 +1568,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1311,11 +1580,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1330,7 +1599,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1349,7 +1618,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1362,49 +1631,125 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable x - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable x.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -variable p - var-kind variable - dec-type DataStructures.CursorListItr + +ppt DataStructures.CursorList.first():::ENTER +ppt-type enter +parent parent DataStructures.CursorList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 -variable p.current - var-kind field current - enclosing-var p + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type int rep-type int flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 -ppt DataStructures.CursorList.find(java.lang.Object):::ENTER -ppt-type enter +ppt DataStructures.CursorList.first():::EXIT89 +ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1416,7 +1761,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1428,11 +1773,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1447,7 +1792,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1466,7 +1811,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1479,36 +1824,35 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable x - var-kind variable - dec-type java.lang.Object +variable return + var-kind return + dec-type DataStructures.CursorListItr rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable x.getClass().getName() - var-kind function getClass().getName() - enclosing-var x - dec-type java.lang.Class - rep-type java.lang.String - function-args x - flags nomod synthetic classname +variable return.current + var-kind field current + enclosing-var return + dec-type int + rep-type int + flags nomod comparability 22 -ppt DataStructures.CursorList.find(java.lang.Object):::EXIT122 +ppt DataStructures.CursorList.first():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1520,7 +1864,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1532,11 +1876,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1551,7 +1895,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1570,7 +1914,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1583,49 +1927,35 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 parent DataStructures.CursorList:::OBJECT 1 -variable x - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable x.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args x - flags nomod synthetic classname - comparability 22 -variable return - var-kind return - dec-type DataStructures.CursorListItr - rep-type hashcode - flags nomod - comparability 22 -variable return.current - var-kind field current - enclosing-var return - dec-type int - rep-type int - flags nomod + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +ppt DataStructures.CursorList.insert(java.lang.Object,\_DataStructures.CursorListItr):::ENTER ppt-type enter parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1637,7 +1967,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1649,11 +1979,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1668,7 +1998,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1687,7 +2017,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1700,7 +2030,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1708,7 +2038,7 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -1719,17 +2049,30 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null + comparability 22 +variable p + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod + comparability 22 +variable p.current + var-kind field current + enclosing-var p + dec-type int + rep-type int + flags nomod comparability 22 -ppt DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +ppt DataStructures.CursorList.insert(java.lang.Object,\_DataStructures.CursorListItr):::EXIT108 ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1741,7 +2084,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1753,11 +2096,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1772,7 +2115,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1791,7 +2134,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1804,7 +2147,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1812,7 +2155,7 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -1823,30 +2166,30 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -variable return - var-kind return +variable p + var-kind variable dec-type DataStructures.CursorListItr rep-type hashcode - flags nomod + flags is_param nomod comparability 22 -variable return.current +variable p.current var-kind field current - enclosing-var return + enclosing-var p dec-type int rep-type int flags nomod comparability 22 -ppt DataStructures.CursorList.remove(java.lang.Object):::ENTER -ppt-type enter +ppt DataStructures.CursorList.insert(java.lang.Object,\_DataStructures.CursorListItr):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1858,7 +2201,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1870,11 +2213,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1889,7 +2232,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -1908,7 +2251,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -1921,7 +2264,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -1929,7 +2272,7 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -1940,17 +2283,43 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null + comparability 22 +variable p + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod + comparability 22 +variable p.current + var-kind field current + enclosing-var p + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.CursorList.remove(java.lang.Object):::EXIT157 -ppt-type subexit +ppt DataStructures.CursorList.find(java.lang.Object):::ENTER +ppt-type enter parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable this.header @@ -1962,7 +2331,7 @@ variable this.header comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod @@ -1974,11 +2343,11 @@ variable DataStructures.CursorList.cursorSpace.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] @@ -1993,7 +2362,7 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element @@ -2012,7 +2381,7 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next @@ -2025,7 +2394,7 @@ variable DataStructures.CursorList.cursorSpace[..].next comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 @@ -2033,7 +2402,7 @@ variable DataStructures.CursorList.SPACE_SIZE comparability 22 parent DataStructures.CursorList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -2044,37 +2413,52 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER -ppt-type enter -parent parent DataStructures.CursorList:::CLASS 1 +ppt DataStructures.CursorList.find(java.lang.Object):::EXIT122 +ppt-type subexit +parent parent DataStructures.CursorList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2082,9 +2466,9 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element var-kind field element enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2093,7 +2477,7 @@ variable DataStructures.CursorList.cursorSpace[..].element rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..].element @@ -2101,9 +2485,9 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next var-kind field next enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2112,57 +2496,86 @@ variable DataStructures.CursorList.cursorSpace[..].next rep-type int[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 -variable theList - var-kind variable - dec-type DataStructures.CursorList + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable theList.header - var-kind field header - enclosing-var theList +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type DataStructures.CursorListItr + rep-type hashcode + flags nomod + comparability 22 +variable return.current + var-kind field current + enclosing-var return dec-type int rep-type int flags nomod comparability 22 -ppt DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 +ppt DataStructures.CursorList.find(java.lang.Object):::EXCEPTIONUNCAUGHT ppt-type subexit -parent parent DataStructures.CursorList:::CLASS 1 +parent parent DataStructures.CursorList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2170,9 +2583,9 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element var-kind field element enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2181,7 +2594,7 @@ variable DataStructures.CursorList.cursorSpace[..].element rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..].element @@ -2189,9 +2602,9 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next var-kind field next enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2200,53 +2613,86 @@ variable DataStructures.CursorList.cursorSpace[..].next rep-type int[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 -variable theList - var-kind variable - dec-type DataStructures.CursorList + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable theList.header +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +ppt-type enter +parent parent DataStructures.CursorList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable this.header var-kind field header - enclosing-var theList + enclosing-var this dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.CursorList:::CLASS -ppt-type class + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] rep-type hashcode[] flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2254,8 +2700,9 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element var-kind field element enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2264,6 +2711,7 @@ variable DataStructures.CursorList.cursorSpace[..].element rep-type hashcode[] flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..].element @@ -2271,8 +2719,9 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next var-kind field next enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2281,23 +2730,40 @@ variable DataStructures.CursorList.cursorSpace[..].next rep-type int[] flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.CursorList:::OBJECT -ppt-type object -parent parent DataStructures.CursorList:::CLASS 1 +ppt DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +ppt-type subexit +parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable this.header var-kind field header enclosing-var this @@ -2305,31 +2771,32 @@ variable this.header rep-type int flags nomod comparability 22 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace - var-kind variable + var-kind variable dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.CursorList.cursorSpace - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..] - var-kind array + var-kind array enclosing-var DataStructures.CursorList.cursorSpace array 1 dec-type DataStructures.CursorNode[] rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2337,9 +2804,9 @@ variable DataStructures.CursorList.cursorSpace[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element var-kind field element enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2348,7 +2815,7 @@ variable DataStructures.CursorList.cursorSpace[..].element rep-type hashcode[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.CursorList.cursorSpace[..].element @@ -2356,9 +2823,9 @@ variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args DataStructures.CursorList.cursorSpace[].element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.cursorSpace[..].next var-kind field next enclosing-var DataStructures.CursorList.cursorSpace[..] @@ -2367,280 +2834,1382 @@ variable DataStructures.CursorList.cursorSpace[..].next rep-type int[] flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 + parent DataStructures.CursorList:::OBJECT 1 variable DataStructures.CursorList.SPACE_SIZE - var-kind variable + var-kind variable dec-type int rep-type int constant 100 flags nomod comparability 22 - parent DataStructures.CursorList:::CLASS 1 - -ppt DataStructures.CursorNode.CursorNode(java.lang.Object):::ENTER -ppt-type enter -variable theElement - var-kind variable + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable theElement.getClass().getName() +variable x.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var x dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags nomod synthetic classname + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type DataStructures.CursorListItr + rep-type hashcode + flags nomod + comparability 22 +variable return.current + var-kind field current + enclosing-var return + dec-type int + rep-type int + flags nomod comparability 22 -ppt DataStructures.CursorNode.CursorNode(java.lang.Object):::EXIT13 +ppt DataStructures.CursorList.findPrevious(java.lang.Object):::EXCEPTIONUNCAUGHT ppt-type subexit -parent parent DataStructures.CursorNode:::OBJECT 1 +parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable - dec-type DataStructures.CursorNode + var-kind variable + dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable this.element - var-kind field element + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header enclosing-var this - dec-type java.lang.Object + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] rep-type hashcode flags nomod comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable this.element.getClass().getName() + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() - enclosing-var this.element + enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String - function-args this.element - flags nomod synthetic classname + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable this.next + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].next var-kind field next - enclosing-var this + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable dec-type int rep-type int + constant 100 flags nomod comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable theElement - var-kind variable + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable theElement.getClass().getName() +variable x.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var x dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags nomod synthetic classname + function-args x + flags nomod synthetic classname non_null comparability 22 - -ppt DataStructures.CursorNode.CursorNode(java.lang.Object,\_int):::ENTER -ppt-type enter -variable theElement - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable theElement.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags nomod synthetic classname - comparability 22 -variable n - var-kind variable - dec-type int - rep-type int - flags is_param nomod + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.CursorNode.CursorNode(java.lang.Object,\_int):::EXIT19 -ppt-type subexit -parent parent DataStructures.CursorNode:::OBJECT 1 +ppt DataStructures.CursorList.remove(java.lang.Object):::ENTER +ppt-type enter +parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable - dec-type DataStructures.CursorNode - rep-type hashcode - flags is_param nomod - comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable this.element - var-kind field element - enclosing-var this - dec-type java.lang.Object + var-kind variable + dec-type DataStructures.CursorList rep-type hashcode - flags nomod - comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable this.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var this.element - dec-type java.lang.Class - rep-type java.lang.String - function-args this.element - flags nomod synthetic classname + flags is_param nomod non_null comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable this.next - var-kind field next + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header enclosing-var this dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.CursorNode:::OBJECT 1 -variable theElement - var-kind variable - dec-type java.lang.Object + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable theElement.getClass().getName() + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var DataStructures.CursorList.cursorSpace dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags nomod synthetic classname + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null comparability 22 -variable n - var-kind variable - dec-type int - rep-type int - flags is_param nomod + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod comparability 22 - -ppt DataStructures.CursorNode:::OBJECT -ppt-type object -variable this - var-kind variable - dec-type DataStructures.CursorNode - rep-type hashcode - flags is_param nomod + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null comparability 22 -variable this.element + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element var-kind field element - enclosing-var this - dec-type java.lang.Object - rep-type hashcode + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] flags nomod comparability 22 -variable this.element.getClass().getName() + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.element - dec-type java.lang.Class - rep-type java.lang.String - function-args this.element - flags nomod synthetic classname + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null comparability 22 -variable this.next + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].next var-kind field next - enclosing-var this - dec-type int - rep-type int + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] flags nomod comparability 22 - -ppt DataStructures.CursorListItr.CursorListItr(int):::ENTER -ppt-type enter -variable theNode - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 - -ppt DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -ppt-type subexit -parent parent DataStructures.CursorListItr:::OBJECT 1 -variable this - var-kind variable - dec-type DataStructures.CursorListItr - rep-type hashcode - flags is_param nomod - comparability 22 - parent DataStructures.CursorListItr:::OBJECT 1 -variable this.current - var-kind field current - enclosing-var this + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable dec-type int rep-type int + constant 100 flags nomod comparability 22 - parent DataStructures.CursorListItr:::OBJECT 1 -variable theNode - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 - -ppt DataStructures.CursorListItr.isPastEnd():::ENTER -ppt-type enter -parent parent DataStructures.CursorListItr:::OBJECT 1 -variable this - var-kind variable - dec-type DataStructures.CursorListItr + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 - parent DataStructures.CursorListItr:::OBJECT 1 -variable this.current - var-kind field current - enclosing-var this - dec-type int - rep-type int - flags nomod +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.CursorListItr:::OBJECT 1 -ppt DataStructures.CursorListItr.isPastEnd():::EXIT35 +ppt DataStructures.CursorList.remove(java.lang.Object):::EXIT157 ppt-type subexit -parent parent DataStructures.CursorListItr:::OBJECT 1 +parent parent DataStructures.CursorList:::OBJECT 1 variable this - var-kind variable - dec-type DataStructures.CursorListItr + var-kind variable + dec-type DataStructures.CursorList rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 - parent DataStructures.CursorListItr:::OBJECT 1 -variable this.current - var-kind field current + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header enclosing-var this dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.CursorListItr:::OBJECT 1 -variable return - var-kind return - dec-type boolean - rep-type boolean + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode flags nomod comparability 22 - -ppt DataStructures.CursorListItr.retrieve():::ENTER -ppt-type enter -parent parent DataStructures.CursorListItr:::OBJECT 1 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorList.remove(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER +ppt-type enter +parent parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable theList + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod + comparability 22 +variable theList.header + var-kind field header + enclosing-var theList + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 +ppt-type subexit +parent parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable theList + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod + comparability 22 +variable theList.header + var-kind field header + enclosing-var theList + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.CursorList.printList(DataStructures.CursorList):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable theList + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod + comparability 22 +variable theList.header + var-kind field header + enclosing-var theList + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorList:::CLASS +ppt-type class +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + +ppt DataStructures.CursorList:::OBJECT +ppt-type object +parent parent DataStructures.CursorList:::CLASS 1 variable this - var-kind variable + var-kind variable + dec-type DataStructures.CursorList + rep-type hashcode + flags is_param nomod non_null + comparability 22 +variable this.header + var-kind field header + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.CursorList.cursorSpace + var-kind variable + dec-type DataStructures.CursorNode[] + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.CursorList.cursorSpace + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..] + var-kind array + enclosing-var DataStructures.CursorList.cursorSpace + array 1 + dec-type DataStructures.CursorNode[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[] + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element + var-kind field element + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.CursorList.cursorSpace[..].element + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args DataStructures.CursorList.cursorSpace[].element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.cursorSpace[..].next + var-kind field next + enclosing-var DataStructures.CursorList.cursorSpace[..] + array 1 + dec-type int[] + rep-type int[] + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 +variable DataStructures.CursorList.SPACE_SIZE + var-kind variable + dec-type int + rep-type int + constant 100 + flags nomod + comparability 22 + parent DataStructures.CursorList:::CLASS 1 + +ppt DataStructures.CursorNode.CursorNode(java.lang.Object):::ENTER +ppt-type enter +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorNode.CursorNode(java.lang.Object):::EXIT13 +ppt-type subexit +parent parent DataStructures.CursorNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.next + var-kind field next + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorNode.CursorNode(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.next + var-kind field next + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorNode.CursorNode(java.lang.Object,\_int):::ENTER +ppt-type enter +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt DataStructures.CursorNode.CursorNode(java.lang.Object,\_int):::EXIT19 +ppt-type subexit +parent parent DataStructures.CursorNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.next + var-kind field next + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt DataStructures.CursorNode.CursorNode(java.lang.Object,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable this.next + var-kind field next + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorNode:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type DataStructures.CursorNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 +variable this.next + var-kind field next + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.CursorListItr.CursorListItr(int):::ENTER +ppt-type enter +variable theNode + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +ppt-type subexit +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable dec-type DataStructures.CursorListItr rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable theNode + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 + +ppt DataStructures.CursorListItr.CursorListItr(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable theNode + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorListItr.isPastEnd():::ENTER +ppt-type enter +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 + +ppt DataStructures.CursorListItr.isPastEnd():::EXIT35 +ppt-type subexit +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 + +ppt DataStructures.CursorListItr.isPastEnd():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorListItr.retrieve():::ENTER +ppt-type enter +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 parent DataStructures.CursorListItr:::OBJECT 1 variable this.current var-kind field current @@ -2655,10 +4224,10 @@ ppt DataStructures.CursorListItr.retrieve():::EXIT45 ppt-type subexit parent parent DataStructures.CursorListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorListItr rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorListItr:::OBJECT 1 variable this.current @@ -2670,7 +4239,7 @@ variable this.current comparability 22 parent DataStructures.CursorListItr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode flags nomod @@ -2681,17 +4250,49 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.CursorListItr.retrieve():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 ppt DataStructures.CursorListItr.advance():::ENTER ppt-type enter parent parent DataStructures.CursorListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorListItr rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorListItr:::OBJECT 1 variable this.current @@ -2707,10 +4308,10 @@ ppt DataStructures.CursorListItr.advance():::EXIT56 ppt-type subexit parent parent DataStructures.CursorListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorListItr rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.CursorListItr:::OBJECT 1 variable this.current @@ -2722,13 +4323,45 @@ variable this.current comparability 22 parent DataStructures.CursorListItr:::OBJECT 1 +ppt DataStructures.CursorListItr.advance():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.CursorListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.CursorListItr + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.CursorListItr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt DataStructures.CursorListItr:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type DataStructures.CursorListItr rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 variable this.current var-kind field current @@ -2755,7 +4388,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 0 this -1488997419 +75457651 1 this.element null @@ -2793,7 +4426,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 1 this -933039143 +362239120 1 this.element null @@ -2831,7 +4464,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 2 this -663286007 +1796488937 1 this.element null @@ -2869,7 +4502,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 3 this -260308072 +423031029 1 this.element null @@ -2907,7 +4540,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 4 this -573577165 +1712669532 1 this.element null @@ -2945,7 +4578,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 5 this -57320772 +1225373914 1 this.element null @@ -2983,7 +4616,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 6 this -1317541148 +60830820 1 this.element null @@ -3021,7 +4654,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 7 this -1210190219 +759156157 1 this.element null @@ -3059,7 +4692,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 8 this -849389996 +1635546341 1 this.element null @@ -3097,7 +4730,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 9 this -1373861163 +1698156408 1 this.element null @@ -3135,7 +4768,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 10 this -740393997 +1740035246 1 this.element null @@ -3173,7 +4806,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 11 this -1281656861 +884457408 1 this.element null @@ -3211,7 +4844,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 12 this -1545883417 +913190639 1 this.element null @@ -3249,7 +4882,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 13 this -1405428113 +1845066581 1 this.element null @@ -3287,7 +4920,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 14 this -857661838 +1018937824 1 this.element null @@ -3325,7 +4958,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 15 this -812272602 +905654280 1 this.element null @@ -3363,7 +4996,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 16 this -312077835 +1915058446 1 this.element null @@ -3401,7 +5034,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 17 this -937106871 +1419810764 1 this.element null @@ -3439,7 +5072,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 18 this -310113799 +922151033 1 this.element null @@ -3477,7 +5110,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 19 this -139808524 +1516369375 1 this.element null @@ -3515,7 +5148,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 20 this -414753050 +55909012 1 this.element null @@ -3553,7 +5186,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 21 this -22593188 +1394336709 1 this.element null @@ -3591,7 +5224,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 22 this -1766588844 +1387228415 1 this.element null @@ -3629,7 +5262,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 23 this -2097281333 +120960120 1 this.element null @@ -3667,7 +5300,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 24 this -210781873 +748658608 1 this.element null @@ -3705,7 +5338,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 25 this -1410405608 +546718765 1 this.element null @@ -3743,7 +5376,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 26 this -762558070 +167185492 1 this.element null @@ -3781,7 +5414,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 27 this -131077194 +592179046 1 this.element null @@ -3819,7 +5452,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 28 this -1843661383 +1937348256 1 this.element null @@ -3857,7 +5490,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 29 this -375321518 +1641808846 1 this.element null @@ -3895,7 +5528,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 30 this -869281787 +1358444045 1 this.element null @@ -3933,7 +5566,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 31 this -687743568 +750044075 1 this.element null @@ -3971,7 +5604,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 32 this -1149159222 +331844619 1 this.element null @@ -4009,7 +5642,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 33 this -1598606683 +310656974 1 this.element null @@ -4047,7 +5680,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 34 this -614613564 +64830413 1 this.element null @@ -4085,7 +5718,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 35 this -413828078 +159259014 1 this.element null @@ -4123,7 +5756,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 36 this -1656457960 +653687670 1 this.element null @@ -4161,7 +5794,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 37 this -110934012 +356473385 1 this.element null @@ -4199,7 +5832,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 38 this -452134088 +2136344592 1 this.element null @@ -4237,7 +5870,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 39 this -1220473930 +110992469 1 this.element null @@ -4275,7 +5908,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 40 this -1889029013 +329611835 1 this.element null @@ -4313,7 +5946,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 41 this -512384243 +2091156596 1 this.element null @@ -4351,7 +5984,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 42 this -232547631 +863831416 1 this.element null @@ -4389,7 +6022,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 43 this -7796677 +1508395126 1 this.element null @@ -4427,7 +6060,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 44 this -42247872 +1638172114 1 this.element null @@ -4465,7 +6098,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 45 this -1390381194 +972765878 1 this.element null @@ -4503,7 +6136,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 46 this -1367164551 +1651945012 1 this.element null @@ -4541,7 +6174,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 47 this -2007069404 +2034688500 1 this.element null @@ -4579,7 +6212,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 48 this -142345952 +1007251739 1 this.element null @@ -4617,7 +6250,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 49 this -111632506 +1556595366 1 this.element null @@ -4655,7 +6288,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 50 this -1454304511 +194494468 1 this.element null @@ -4693,7 +6326,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 51 this -1984529870 +1167116739 1 this.element null @@ -4731,7 +6364,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 52 this -1425003533 +853993923 1 this.element null @@ -4769,7 +6402,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 53 this -1296747787 +1347870667 1 this.element null @@ -4807,7 +6440,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 54 this -1776006353 +1702146597 1 this.element null @@ -4845,7 +6478,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 55 this -1463565218 +644460953 1 this.element null @@ -4883,7 +6516,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 56 this -862926188 +591723622 1 this.element null @@ -4921,7 +6554,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 57 this -1243373525 +1166726978 1 this.element null @@ -4959,7 +6592,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 58 this -215465718 +95395916 1 this.element null @@ -4997,7 +6630,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 59 this -674893584 +1856056345 1 this.element null @@ -5035,7 +6668,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 60 this -2075326481 +1778535015 1 this.element null @@ -5073,7 +6706,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 61 this -582771593 +2032251042 1 this.element null @@ -5111,7 +6744,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 62 this -2116733231 +24433162 1 this.element null @@ -5149,7 +6782,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 63 this -721317215 +1725097945 1 this.element null @@ -5187,7 +6820,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 64 this -633245190 +519821334 1 this.element null @@ -5225,7 +6858,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 65 this -22953798 +1781256139 1 this.element null @@ -5263,7 +6896,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 66 this -1384910173 +1307096070 1 this.element null @@ -5301,7 +6934,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 67 this -1757511425 +1014328909 1 this.element null @@ -5339,7 +6972,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 68 this -2004439137 +2081303229 1 this.element null @@ -5377,7 +7010,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 69 this -1032605070 +1223685984 1 this.element null @@ -5415,7 +7048,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 70 this -1178060083 +1076835071 1 this.element null @@ -5453,7 +7086,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 71 this -2004073288 +1463757745 1 this.element null @@ -5491,7 +7124,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 72 this -1326231868 +1525262377 1 this.element null @@ -5529,7 +7162,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 73 this -1246233263 +1837760739 1 this.element null @@ -5567,7 +7200,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 74 this -1034442050 +1418428263 1 this.element null @@ -5605,7 +7238,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 75 this -1987411885 +2059904228 1 this.element null @@ -5643,7 +7276,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 76 this -470905757 +1836643189 1 this.element null @@ -5681,7 +7314,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 77 this -1035818704 +1355316001 1 this.element null @@ -5719,7 +7352,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 78 this -1502515546 +1597462040 1 this.element null @@ -5757,7 +7390,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 79 this -518576549 +403716510 1 this.element null @@ -5795,7 +7428,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 80 this -1227419517 +853119666 1 this.element null @@ -5833,7 +7466,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 81 this -511909137 +559670971 1 this.element null @@ -5871,7 +7504,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 82 this -837375677 +1144648478 1 this.element null @@ -5909,7 +7542,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 83 this -1312664548 +1576861390 1 this.element null @@ -5947,7 +7580,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 84 this -853552605 +600746945 1 this.element null @@ -5985,7 +7618,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 85 this -467870275 +1566502717 1 this.element null @@ -6023,7 +7656,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 86 this -1558080258 +1458849419 1 this.element null @@ -6061,7 +7694,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 87 this -239304688 +1824835605 1 this.element null @@ -6099,7 +7732,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 88 this -1904504032 +981661423 1 this.element null @@ -6137,7 +7770,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 89 this -755507289 +269468037 1 this.element null @@ -6175,7 +7808,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 90 this -1887685159 +1681595665 1 this.element null @@ -6213,7 +7846,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 91 this -1548550182 +787867107 1 this.element null @@ -6251,7 +7884,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 92 this -1128590881 +57494364 1 this.element null @@ -6289,7 +7922,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 93 this -1651366663 +1828757853 1 this.element null @@ -6327,7 +7960,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 94 this -440851213 +1374677625 1 this.element null @@ -6365,7 +7998,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 95 this -567754741 +1345636186 1 this.element null @@ -6403,7 +8036,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 96 this -984088366 +963269035 1 this.element null @@ -6441,7 +8074,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 97 this -1801601815 +1359484306 1 this.element null @@ -6479,7 +8112,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 98 this -2282005 +2140832232 1 this.element null @@ -6517,7 +8150,7 @@ DataStructures.CursorNode.CursorNode(java.lang.Object, int):::EXIT19 this_invocation_nonce 99 this -1846436036 +157456214 1 this.element null @@ -6546,13 +8179,13 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 101 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6571,13 +8204,13 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 101 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6599,19 +8232,19 @@ DataStructures.CursorList.CursorList():::EXIT54 this_invocation_nonce 100 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6630,19 +8263,19 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 102 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6668,7 +8301,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 103 this -1706393036 +1483022288 1 this.current 1 @@ -6681,19 +8314,19 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 102 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6708,7 +8341,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 0 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1706393036 +1483022288 1 return.current 1 @@ -6718,13 +8351,13 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 104 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6739,7 +8372,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 0 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -6749,19 +8382,19 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 105 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6780,19 +8413,19 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 105 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6814,13 +8447,13 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 104 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6835,7 +8468,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 0 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -6845,19 +8478,19 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 106 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6872,13 +8505,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 0 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1474852153 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 1 @@ -6888,13 +8521,13 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 107 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6913,13 +8546,13 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 107 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] @@ -6941,25 +8574,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 106 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -6968,13 +8601,13 @@ DataStructures.CursorList.cursorSpace[..].next [3 2 0 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1474852153 +687780858 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 1 @@ -6984,19 +8617,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 108 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7005,7 +8638,7 @@ DataStructures.CursorList.cursorSpace[..].next [3 2 0 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -7015,25 +8648,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 109 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7046,25 +8679,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 109 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7080,25 +8713,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 110 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7118,7 +8751,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 111 this -1583881797 +1734161410 1 this.current 2 @@ -7131,25 +8764,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 110 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7158,7 +8791,7 @@ DataStructures.CursorList.cursorSpace[..].next [3 2 0 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1583881797 +1734161410 1 return.current 2 @@ -7168,7 +8801,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 112 this -1583881797 +1734161410 1 this.current 2 @@ -7178,7 +8811,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 112 this -1583881797 +1734161410 1 this.current 2 @@ -7191,7 +8824,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 113 this -1583881797 +1734161410 1 this.current 2 @@ -7201,7 +8834,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 114 this -1583881797 +1734161410 1 this.current 2 @@ -7211,7 +8844,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 114 this -1583881797 +1734161410 1 this.current 2 @@ -7224,13 +8857,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 113 this -1583881797 +1734161410 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7240,7 +8873,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 115 this -1583881797 +1734161410 1 this.current 2 @@ -7250,7 +8883,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 116 this -1583881797 +1734161410 1 this.current 2 @@ -7260,7 +8893,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 116 this -1583881797 +1734161410 1 this.current 2 @@ -7273,7 +8906,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 115 this -1583881797 +1734161410 1 this.current 0 @@ -7283,7 +8916,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 117 this -1583881797 +1734161410 1 this.current 0 @@ -7293,7 +8926,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 117 this -1583881797 +1734161410 1 this.current 0 @@ -7306,19 +8939,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 108 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7327,7 +8960,7 @@ DataStructures.CursorList.cursorSpace[..].next [3 2 0 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -7337,7 +8970,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 118 this -1706393036 +1483022288 1 this.current 1 @@ -7347,7 +8980,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 119 this -1706393036 +1483022288 1 this.current 1 @@ -7357,7 +8990,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 119 this -1706393036 +1483022288 1 this.current 1 @@ -7370,7 +9003,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 118 this -1706393036 +1483022288 1 this.current 2 @@ -7380,25 +9013,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 120 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7407,13 +9040,13 @@ DataStructures.CursorList.cursorSpace[..].next [3 2 0 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -94073967 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 2 @@ -7423,19 +9056,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 121 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7448,19 +9081,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 121 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7476,25 +9109,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 120 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7503,13 +9136,13 @@ DataStructures.CursorList.cursorSpace[..].next [4 2 3 0 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -94073967 +1364614850 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 2 @@ -7519,19 +9152,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 122 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7540,7 +9173,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 2 3 0 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -7550,25 +9183,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 123 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7581,25 +9214,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 123 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7615,25 +9248,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 124 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7653,7 +9286,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 125 this -553199177 +1211076369 1 this.current 2 @@ -7666,25 +9299,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 124 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7693,7 +9326,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 2 3 0 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -553199177 +1211076369 1 return.current 2 @@ -7703,7 +9336,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 126 this -553199177 +1211076369 1 this.current 2 @@ -7713,7 +9346,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 126 this -553199177 +1211076369 1 this.current 2 @@ -7726,7 +9359,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 127 this -553199177 +1211076369 1 this.current 2 @@ -7736,7 +9369,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 128 this -553199177 +1211076369 1 this.current 2 @@ -7746,7 +9379,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 128 this -553199177 +1211076369 1 this.current 2 @@ -7759,13 +9392,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 127 this -553199177 +1211076369 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7775,7 +9408,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 129 this -553199177 +1211076369 1 this.current 2 @@ -7785,7 +9418,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 130 this -553199177 +1211076369 1 this.current 2 @@ -7795,7 +9428,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 130 this -553199177 +1211076369 1 this.current 2 @@ -7808,7 +9441,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 129 this -553199177 +1211076369 1 this.current 3 @@ -7818,7 +9451,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 131 this -553199177 +1211076369 1 this.current 3 @@ -7828,7 +9461,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 131 this -553199177 +1211076369 1 this.current 3 @@ -7841,7 +9474,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 132 this -553199177 +1211076369 1 this.current 3 @@ -7851,7 +9484,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 133 this -553199177 +1211076369 1 this.current 3 @@ -7861,7 +9494,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 133 this -553199177 +1211076369 1 this.current 3 @@ -7874,13 +9507,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 132 this -553199177 +1211076369 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7890,7 +9523,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 134 this -553199177 +1211076369 1 this.current 3 @@ -7900,7 +9533,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 135 this -553199177 +1211076369 1 this.current 3 @@ -7910,7 +9543,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 135 this -553199177 +1211076369 1 this.current 3 @@ -7923,7 +9556,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 134 this -553199177 +1211076369 1 this.current 0 @@ -7933,7 +9566,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 136 this -553199177 +1211076369 1 this.current 0 @@ -7943,7 +9576,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 136 this -553199177 +1211076369 1 this.current 0 @@ -7956,19 +9589,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 122 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -7977,7 +9610,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 2 3 0 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -7987,7 +9620,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 137 this -1706393036 +1483022288 1 this.current 2 @@ -7997,7 +9630,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 138 this -1706393036 +1483022288 1 this.current 2 @@ -8007,7 +9640,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 138 this -1706393036 +1483022288 1 this.current 2 @@ -8020,7 +9653,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 137 this -1706393036 +1483022288 1 this.current 3 @@ -8030,25 +9663,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 139 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8057,13 +9690,13 @@ DataStructures.CursorList.cursorSpace[..].next [4 2 3 0 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1161859976 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 3 @@ -8073,19 +9706,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 140 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8098,19 +9731,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 140 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8126,25 +9759,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 139 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8153,13 +9786,13 @@ DataStructures.CursorList.cursorSpace[..].next [5 2 3 4 0 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1161859976 +361993357 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 3 @@ -8169,19 +9802,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 141 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8190,7 +9823,7 @@ DataStructures.CursorList.cursorSpace[..].next [5 2 3 4 0 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -8200,25 +9833,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 142 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8231,25 +9864,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 142 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8265,25 +9898,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 143 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8303,7 +9936,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 144 this -311814461 +459296537 1 this.current 2 @@ -8316,25 +9949,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 143 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8343,7 +9976,7 @@ DataStructures.CursorList.cursorSpace[..].next [5 2 3 4 0 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -311814461 +459296537 1 return.current 2 @@ -8353,7 +9986,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 145 this -311814461 +459296537 1 this.current 2 @@ -8363,7 +9996,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 145 this -311814461 +459296537 1 this.current 2 @@ -8376,7 +10009,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 146 this -311814461 +459296537 1 this.current 2 @@ -8386,7 +10019,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 147 this -311814461 +459296537 1 this.current 2 @@ -8396,7 +10029,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 147 this -311814461 +459296537 1 this.current 2 @@ -8409,13 +10042,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 146 this -311814461 +459296537 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8425,7 +10058,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 148 this -311814461 +459296537 1 this.current 2 @@ -8435,7 +10068,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 149 this -311814461 +459296537 1 this.current 2 @@ -8445,7 +10078,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 149 this -311814461 +459296537 1 this.current 2 @@ -8458,7 +10091,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 148 this -311814461 +459296537 1 this.current 3 @@ -8468,7 +10101,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 150 this -311814461 +459296537 1 this.current 3 @@ -8478,7 +10111,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 150 this -311814461 +459296537 1 this.current 3 @@ -8491,7 +10124,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 151 this -311814461 +459296537 1 this.current 3 @@ -8501,7 +10134,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 152 this -311814461 +459296537 1 this.current 3 @@ -8511,7 +10144,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 152 this -311814461 +459296537 1 this.current 3 @@ -8524,13 +10157,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 151 this -311814461 +459296537 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8540,7 +10173,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 153 this -311814461 +459296537 1 this.current 3 @@ -8550,7 +10183,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 154 this -311814461 +459296537 1 this.current 3 @@ -8560,7 +10193,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 154 this -311814461 +459296537 1 this.current 3 @@ -8573,7 +10206,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 153 this -311814461 +459296537 1 this.current 4 @@ -8583,7 +10216,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 155 this -311814461 +459296537 1 this.current 4 @@ -8593,7 +10226,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 155 this -311814461 +459296537 1 this.current 4 @@ -8606,7 +10239,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 156 this -311814461 +459296537 1 this.current 4 @@ -8616,7 +10249,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 157 this -311814461 +459296537 1 this.current 4 @@ -8626,7 +10259,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 157 this -311814461 +459296537 1 this.current 4 @@ -8639,13 +10272,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 156 this -311814461 +459296537 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8655,7 +10288,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 158 this -311814461 +459296537 1 this.current 4 @@ -8665,7 +10298,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 159 this -311814461 +459296537 1 this.current 4 @@ -8675,7 +10308,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 159 this -311814461 +459296537 1 this.current 4 @@ -8688,7 +10321,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 158 this -311814461 +459296537 1 this.current 0 @@ -8698,7 +10331,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 160 this -311814461 +459296537 1 this.current 0 @@ -8708,7 +10341,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 160 this -311814461 +459296537 1 this.current 0 @@ -8721,19 +10354,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 141 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8742,7 +10375,7 @@ DataStructures.CursorList.cursorSpace[..].next [5 2 3 4 0 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -8752,7 +10385,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 161 this -1706393036 +1483022288 1 this.current 3 @@ -8762,7 +10395,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 162 this -1706393036 +1483022288 1 this.current 3 @@ -8772,7 +10405,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 162 this -1706393036 +1483022288 1 this.current 3 @@ -8785,7 +10418,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 161 this -1706393036 +1483022288 1 this.current 4 @@ -8795,25 +10428,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 163 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8822,13 +10455,13 @@ DataStructures.CursorList.cursorSpace[..].next [5 2 3 4 0 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -805547347 +2015601401 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 4 @@ -8838,19 +10471,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 164 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8863,19 +10496,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 164 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8891,25 +10524,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 163 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8918,13 +10551,13 @@ DataStructures.CursorList.cursorSpace[..].next [6 2 3 4 5 0 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -805547347 +2015601401 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 4 @@ -8934,19 +10567,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 165 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8955,7 +10588,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 2 3 4 5 0 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -8965,25 +10598,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 166 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -8996,25 +10629,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 166 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9030,25 +10663,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 167 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9068,7 +10701,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 168 this -1097350341 +1287712235 1 this.current 2 @@ -9081,25 +10714,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 167 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9108,7 +10741,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 2 3 4 5 0 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1097350341 +1287712235 1 return.current 2 @@ -9118,7 +10751,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 169 this -1097350341 +1287712235 1 this.current 2 @@ -9128,7 +10761,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 169 this -1097350341 +1287712235 1 this.current 2 @@ -9141,7 +10774,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 170 this -1097350341 +1287712235 1 this.current 2 @@ -9151,7 +10784,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 171 this -1097350341 +1287712235 1 this.current 2 @@ -9161,7 +10794,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 171 this -1097350341 +1287712235 1 this.current 2 @@ -9174,13 +10807,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 170 this -1097350341 +1287712235 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9190,7 +10823,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 172 this -1097350341 +1287712235 1 this.current 2 @@ -9200,7 +10833,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 173 this -1097350341 +1287712235 1 this.current 2 @@ -9210,7 +10843,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 173 this -1097350341 +1287712235 1 this.current 2 @@ -9223,7 +10856,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 172 this -1097350341 +1287712235 1 this.current 3 @@ -9233,7 +10866,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 174 this -1097350341 +1287712235 1 this.current 3 @@ -9243,7 +10876,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 174 this -1097350341 +1287712235 1 this.current 3 @@ -9256,7 +10889,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 175 this -1097350341 +1287712235 1 this.current 3 @@ -9266,7 +10899,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 176 this -1097350341 +1287712235 1 this.current 3 @@ -9276,7 +10909,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 176 this -1097350341 +1287712235 1 this.current 3 @@ -9289,13 +10922,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 175 this -1097350341 +1287712235 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9305,7 +10938,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 177 this -1097350341 +1287712235 1 this.current 3 @@ -9315,7 +10948,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 178 this -1097350341 +1287712235 1 this.current 3 @@ -9325,7 +10958,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 178 this -1097350341 +1287712235 1 this.current 3 @@ -9338,7 +10971,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 177 this -1097350341 +1287712235 1 this.current 4 @@ -9348,7 +10981,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 179 this -1097350341 +1287712235 1 this.current 4 @@ -9358,7 +10991,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 179 this -1097350341 +1287712235 1 this.current 4 @@ -9371,7 +11004,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 180 this -1097350341 +1287712235 1 this.current 4 @@ -9381,7 +11014,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 181 this -1097350341 +1287712235 1 this.current 4 @@ -9391,7 +11024,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 181 this -1097350341 +1287712235 1 this.current 4 @@ -9404,13 +11037,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 180 this -1097350341 +1287712235 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9420,7 +11053,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 182 this -1097350341 +1287712235 1 this.current 4 @@ -9430,7 +11063,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 183 this -1097350341 +1287712235 1 this.current 4 @@ -9440,7 +11073,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 183 this -1097350341 +1287712235 1 this.current 4 @@ -9453,7 +11086,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 182 this -1097350341 +1287712235 1 this.current 5 @@ -9463,7 +11096,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 184 this -1097350341 +1287712235 1 this.current 5 @@ -9473,7 +11106,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 184 this -1097350341 +1287712235 1 this.current 5 @@ -9486,7 +11119,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 185 this -1097350341 +1287712235 1 this.current 5 @@ -9496,7 +11129,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 186 this -1097350341 +1287712235 1 this.current 5 @@ -9506,7 +11139,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 186 this -1097350341 +1287712235 1 this.current 5 @@ -9519,13 +11152,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 185 this -1097350341 +1287712235 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9535,7 +11168,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 187 this -1097350341 +1287712235 1 this.current 5 @@ -9545,7 +11178,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 188 this -1097350341 +1287712235 1 this.current 5 @@ -9555,7 +11188,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 188 this -1097350341 +1287712235 1 this.current 5 @@ -9568,7 +11201,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 187 this -1097350341 +1287712235 1 this.current 0 @@ -9578,7 +11211,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 189 this -1097350341 +1287712235 1 this.current 0 @@ -9588,7 +11221,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 189 this -1097350341 +1287712235 1 this.current 0 @@ -9601,19 +11234,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 165 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9622,7 +11255,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 2 3 4 5 0 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -9632,7 +11265,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 190 this -1706393036 +1483022288 1 this.current 4 @@ -9642,7 +11275,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 191 this -1706393036 +1483022288 1 this.current 4 @@ -9652,7 +11285,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 191 this -1706393036 +1483022288 1 this.current 4 @@ -9665,7 +11298,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 190 this -1706393036 +1483022288 1 this.current 5 @@ -9675,25 +11308,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 192 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9702,13 +11335,13 @@ DataStructures.CursorList.cursorSpace[..].next [6 2 3 4 5 0 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1429992312 +1165897474 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 5 @@ -9718,19 +11351,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 193 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9743,19 +11376,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 193 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9771,25 +11404,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 192 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9798,13 +11431,13 @@ DataStructures.CursorList.cursorSpace[..].next [7 2 3 4 5 6 0 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1429992312 +1165897474 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 5 @@ -9814,19 +11447,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 194 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9835,7 +11468,7 @@ DataStructures.CursorList.cursorSpace[..].next [7 2 3 4 5 6 0 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -9845,25 +11478,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 195 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9876,25 +11509,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 195 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9910,25 +11543,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 196 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9948,7 +11581,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 197 this -1391294207 +1551870003 1 this.current 2 @@ -9961,25 +11594,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 196 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9988,7 +11621,7 @@ DataStructures.CursorList.cursorSpace[..].next [7 2 3 4 5 6 0 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1391294207 +1551870003 1 return.current 2 @@ -9998,7 +11631,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 198 this -1391294207 +1551870003 1 this.current 2 @@ -10008,7 +11641,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 198 this -1391294207 +1551870003 1 this.current 2 @@ -10021,7 +11654,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 199 this -1391294207 +1551870003 1 this.current 2 @@ -10031,7 +11664,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 200 this -1391294207 +1551870003 1 this.current 2 @@ -10041,7 +11674,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 200 this -1391294207 +1551870003 1 this.current 2 @@ -10054,13 +11687,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 199 this -1391294207 +1551870003 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10070,7 +11703,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 201 this -1391294207 +1551870003 1 this.current 2 @@ -10080,7 +11713,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 202 this -1391294207 +1551870003 1 this.current 2 @@ -10090,7 +11723,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 202 this -1391294207 +1551870003 1 this.current 2 @@ -10103,7 +11736,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 201 this -1391294207 +1551870003 1 this.current 3 @@ -10113,7 +11746,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 203 this -1391294207 +1551870003 1 this.current 3 @@ -10123,7 +11756,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 203 this -1391294207 +1551870003 1 this.current 3 @@ -10136,7 +11769,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 204 this -1391294207 +1551870003 1 this.current 3 @@ -10146,7 +11779,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 205 this -1391294207 +1551870003 1 this.current 3 @@ -10156,7 +11789,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 205 this -1391294207 +1551870003 1 this.current 3 @@ -10169,13 +11802,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 204 this -1391294207 +1551870003 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10185,7 +11818,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 206 this -1391294207 +1551870003 1 this.current 3 @@ -10195,7 +11828,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 207 this -1391294207 +1551870003 1 this.current 3 @@ -10205,7 +11838,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 207 this -1391294207 +1551870003 1 this.current 3 @@ -10218,7 +11851,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 206 this -1391294207 +1551870003 1 this.current 4 @@ -10228,7 +11861,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 208 this -1391294207 +1551870003 1 this.current 4 @@ -10238,7 +11871,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 208 this -1391294207 +1551870003 1 this.current 4 @@ -10251,7 +11884,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 209 this -1391294207 +1551870003 1 this.current 4 @@ -10261,7 +11894,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 210 this -1391294207 +1551870003 1 this.current 4 @@ -10271,7 +11904,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 210 this -1391294207 +1551870003 1 this.current 4 @@ -10284,13 +11917,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 209 this -1391294207 +1551870003 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10300,7 +11933,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 211 this -1391294207 +1551870003 1 this.current 4 @@ -10310,7 +11943,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 212 this -1391294207 +1551870003 1 this.current 4 @@ -10320,7 +11953,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 212 this -1391294207 +1551870003 1 this.current 4 @@ -10333,7 +11966,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 211 this -1391294207 +1551870003 1 this.current 5 @@ -10343,7 +11976,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 213 this -1391294207 +1551870003 1 this.current 5 @@ -10353,7 +11986,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 213 this -1391294207 +1551870003 1 this.current 5 @@ -10366,7 +11999,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 214 this -1391294207 +1551870003 1 this.current 5 @@ -10376,7 +12009,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 215 this -1391294207 +1551870003 1 this.current 5 @@ -10386,7 +12019,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 215 this -1391294207 +1551870003 1 this.current 5 @@ -10399,13 +12032,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 214 this -1391294207 +1551870003 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10415,7 +12048,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 216 this -1391294207 +1551870003 1 this.current 5 @@ -10425,7 +12058,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 217 this -1391294207 +1551870003 1 this.current 5 @@ -10435,7 +12068,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 217 this -1391294207 +1551870003 1 this.current 5 @@ -10448,7 +12081,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 216 this -1391294207 +1551870003 1 this.current 6 @@ -10458,7 +12091,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 218 this -1391294207 +1551870003 1 this.current 6 @@ -10468,7 +12101,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 218 this -1391294207 +1551870003 1 this.current 6 @@ -10481,7 +12114,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 219 this -1391294207 +1551870003 1 this.current 6 @@ -10491,7 +12124,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 220 this -1391294207 +1551870003 1 this.current 6 @@ -10501,7 +12134,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 220 this -1391294207 +1551870003 1 this.current 6 @@ -10514,13 +12147,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 219 this -1391294207 +1551870003 1 this.current 6 1 return -1429992312 +1165897474 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10530,7 +12163,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 221 this -1391294207 +1551870003 1 this.current 6 @@ -10540,7 +12173,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 222 this -1391294207 +1551870003 1 this.current 6 @@ -10550,7 +12183,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 222 this -1391294207 +1551870003 1 this.current 6 @@ -10563,7 +12196,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 221 this -1391294207 +1551870003 1 this.current 0 @@ -10573,7 +12206,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 223 this -1391294207 +1551870003 1 this.current 0 @@ -10583,7 +12216,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 223 this -1391294207 +1551870003 1 this.current 0 @@ -10596,19 +12229,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 194 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10617,7 +12250,7 @@ DataStructures.CursorList.cursorSpace[..].next [7 2 3 4 5 6 0 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -10627,7 +12260,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 224 this -1706393036 +1483022288 1 this.current 5 @@ -10637,7 +12270,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 225 this -1706393036 +1483022288 1 this.current 5 @@ -10647,7 +12280,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 225 this -1706393036 +1483022288 1 this.current 5 @@ -10660,7 +12293,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 224 this -1706393036 +1483022288 1 this.current 6 @@ -10670,25 +12303,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 226 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10697,13 +12330,13 @@ DataStructures.CursorList.cursorSpace[..].next [7 2 3 4 5 6 0 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1679788513 +967765295 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 6 @@ -10713,19 +12346,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 227 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10738,19 +12371,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 227 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10766,25 +12399,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 226 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10793,13 +12426,13 @@ DataStructures.CursorList.cursorSpace[..].next [8 2 3 4 5 6 7 0 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1679788513 +967765295 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 6 @@ -10809,19 +12442,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 228 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10830,7 +12463,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 2 3 4 5 6 7 0 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -10840,25 +12473,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 229 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10871,25 +12504,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 229 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10905,25 +12538,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 230 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10943,7 +12576,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 231 this -1385514529 +1917513796 1 this.current 2 @@ -10956,25 +12589,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 230 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10983,7 +12616,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 2 3 4 5 6 7 0 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1385514529 +1917513796 1 return.current 2 @@ -10993,7 +12626,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 232 this -1385514529 +1917513796 1 this.current 2 @@ -11003,7 +12636,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 232 this -1385514529 +1917513796 1 this.current 2 @@ -11016,7 +12649,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 233 this -1385514529 +1917513796 1 this.current 2 @@ -11026,7 +12659,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 234 this -1385514529 +1917513796 1 this.current 2 @@ -11036,7 +12669,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 234 this -1385514529 +1917513796 1 this.current 2 @@ -11049,13 +12682,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 233 this -1385514529 +1917513796 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11065,7 +12698,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 235 this -1385514529 +1917513796 1 this.current 2 @@ -11075,7 +12708,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 236 this -1385514529 +1917513796 1 this.current 2 @@ -11085,7 +12718,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 236 this -1385514529 +1917513796 1 this.current 2 @@ -11098,7 +12731,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 235 this -1385514529 +1917513796 1 this.current 3 @@ -11108,7 +12741,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 237 this -1385514529 +1917513796 1 this.current 3 @@ -11118,7 +12751,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 237 this -1385514529 +1917513796 1 this.current 3 @@ -11131,7 +12764,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 238 this -1385514529 +1917513796 1 this.current 3 @@ -11141,7 +12774,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 239 this -1385514529 +1917513796 1 this.current 3 @@ -11151,7 +12784,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 239 this -1385514529 +1917513796 1 this.current 3 @@ -11164,13 +12797,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 238 this -1385514529 +1917513796 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11180,7 +12813,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 240 this -1385514529 +1917513796 1 this.current 3 @@ -11190,7 +12823,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 241 this -1385514529 +1917513796 1 this.current 3 @@ -11200,7 +12833,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 241 this -1385514529 +1917513796 1 this.current 3 @@ -11213,7 +12846,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 240 this -1385514529 +1917513796 1 this.current 4 @@ -11223,7 +12856,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 242 this -1385514529 +1917513796 1 this.current 4 @@ -11233,7 +12866,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 242 this -1385514529 +1917513796 1 this.current 4 @@ -11246,7 +12879,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 243 this -1385514529 +1917513796 1 this.current 4 @@ -11256,7 +12889,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 244 this -1385514529 +1917513796 1 this.current 4 @@ -11266,7 +12899,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 244 this -1385514529 +1917513796 1 this.current 4 @@ -11279,13 +12912,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 243 this -1385514529 +1917513796 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11295,7 +12928,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 245 this -1385514529 +1917513796 1 this.current 4 @@ -11305,7 +12938,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 246 this -1385514529 +1917513796 1 this.current 4 @@ -11315,7 +12948,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 246 this -1385514529 +1917513796 1 this.current 4 @@ -11328,7 +12961,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 245 this -1385514529 +1917513796 1 this.current 5 @@ -11338,7 +12971,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 247 this -1385514529 +1917513796 1 this.current 5 @@ -11348,7 +12981,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 247 this -1385514529 +1917513796 1 this.current 5 @@ -11361,7 +12994,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 248 this -1385514529 +1917513796 1 this.current 5 @@ -11371,7 +13004,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 249 this -1385514529 +1917513796 1 this.current 5 @@ -11381,7 +13014,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 249 this -1385514529 +1917513796 1 this.current 5 @@ -11394,13 +13027,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 248 this -1385514529 +1917513796 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11410,7 +13043,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 250 this -1385514529 +1917513796 1 this.current 5 @@ -11420,7 +13053,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 251 this -1385514529 +1917513796 1 this.current 5 @@ -11430,7 +13063,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 251 this -1385514529 +1917513796 1 this.current 5 @@ -11443,7 +13076,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 250 this -1385514529 +1917513796 1 this.current 6 @@ -11453,7 +13086,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 252 this -1385514529 +1917513796 1 this.current 6 @@ -11463,7 +13096,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 252 this -1385514529 +1917513796 1 this.current 6 @@ -11476,7 +13109,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 253 this -1385514529 +1917513796 1 this.current 6 @@ -11486,7 +13119,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 254 this -1385514529 +1917513796 1 this.current 6 @@ -11496,7 +13129,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 254 this -1385514529 +1917513796 1 this.current 6 @@ -11509,13 +13142,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 253 this -1385514529 +1917513796 1 this.current 6 1 return -1429992312 +1165897474 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11525,7 +13158,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 255 this -1385514529 +1917513796 1 this.current 6 @@ -11535,7 +13168,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 256 this -1385514529 +1917513796 1 this.current 6 @@ -11545,7 +13178,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 256 this -1385514529 +1917513796 1 this.current 6 @@ -11558,7 +13191,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 255 this -1385514529 +1917513796 1 this.current 7 @@ -11568,7 +13201,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 257 this -1385514529 +1917513796 1 this.current 7 @@ -11578,7 +13211,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 257 this -1385514529 +1917513796 1 this.current 7 @@ -11591,7 +13224,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 258 this -1385514529 +1917513796 1 this.current 7 @@ -11601,7 +13234,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 259 this -1385514529 +1917513796 1 this.current 7 @@ -11611,7 +13244,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 259 this -1385514529 +1917513796 1 this.current 7 @@ -11624,13 +13257,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 258 this -1385514529 +1917513796 1 this.current 7 1 return -1679788513 +967765295 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11640,7 +13273,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 260 this -1385514529 +1917513796 1 this.current 7 @@ -11650,7 +13283,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 261 this -1385514529 +1917513796 1 this.current 7 @@ -11660,7 +13293,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 261 this -1385514529 +1917513796 1 this.current 7 @@ -11673,7 +13306,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 260 this -1385514529 +1917513796 1 this.current 0 @@ -11683,7 +13316,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 262 this -1385514529 +1917513796 1 this.current 0 @@ -11693,7 +13326,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 262 this -1385514529 +1917513796 1 this.current 0 @@ -11706,19 +13339,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 228 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11727,7 +13360,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 2 3 4 5 6 7 0 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -11737,7 +13370,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 263 this -1706393036 +1483022288 1 this.current 6 @@ -11747,7 +13380,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 264 this -1706393036 +1483022288 1 this.current 6 @@ -11757,7 +13390,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 264 this -1706393036 +1483022288 1 this.current 6 @@ -11770,7 +13403,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 263 this -1706393036 +1483022288 1 this.current 7 @@ -11780,25 +13413,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 265 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11807,13 +13440,13 @@ DataStructures.CursorList.cursorSpace[..].next [8 2 3 4 5 6 7 0 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1177504482 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 7 @@ -11823,19 +13456,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 266 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11848,19 +13481,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 266 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11876,25 +13509,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 265 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11903,13 +13536,13 @@ DataStructures.CursorList.cursorSpace[..].next [9 2 3 4 5 6 7 8 0 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1177504482 +1182320432 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 7 @@ -11919,19 +13552,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 267 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11940,7 +13573,7 @@ DataStructures.CursorList.cursorSpace[..].next [9 2 3 4 5 6 7 8 0 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -11950,25 +13583,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 268 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11981,25 +13614,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 268 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12015,25 +13648,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 269 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12053,7 +13686,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 270 this -1256021869 +1734853116 1 this.current 2 @@ -12066,25 +13699,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 269 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12093,7 +13726,7 @@ DataStructures.CursorList.cursorSpace[..].next [9 2 3 4 5 6 7 8 0 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1256021869 +1734853116 1 return.current 2 @@ -12103,7 +13736,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 271 this -1256021869 +1734853116 1 this.current 2 @@ -12113,7 +13746,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 271 this -1256021869 +1734853116 1 this.current 2 @@ -12126,7 +13759,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 272 this -1256021869 +1734853116 1 this.current 2 @@ -12136,7 +13769,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 273 this -1256021869 +1734853116 1 this.current 2 @@ -12146,7 +13779,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 273 this -1256021869 +1734853116 1 this.current 2 @@ -12159,13 +13792,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 272 this -1256021869 +1734853116 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12175,7 +13808,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 274 this -1256021869 +1734853116 1 this.current 2 @@ -12185,7 +13818,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 275 this -1256021869 +1734853116 1 this.current 2 @@ -12195,7 +13828,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 275 this -1256021869 +1734853116 1 this.current 2 @@ -12208,7 +13841,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 274 this -1256021869 +1734853116 1 this.current 3 @@ -12218,7 +13851,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 276 this -1256021869 +1734853116 1 this.current 3 @@ -12228,7 +13861,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 276 this -1256021869 +1734853116 1 this.current 3 @@ -12241,7 +13874,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 277 this -1256021869 +1734853116 1 this.current 3 @@ -12251,7 +13884,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 278 this -1256021869 +1734853116 1 this.current 3 @@ -12261,7 +13894,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 278 this -1256021869 +1734853116 1 this.current 3 @@ -12274,13 +13907,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 277 this -1256021869 +1734853116 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12290,7 +13923,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 279 this -1256021869 +1734853116 1 this.current 3 @@ -12300,7 +13933,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 280 this -1256021869 +1734853116 1 this.current 3 @@ -12310,7 +13943,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 280 this -1256021869 +1734853116 1 this.current 3 @@ -12323,7 +13956,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 279 this -1256021869 +1734853116 1 this.current 4 @@ -12333,7 +13966,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 281 this -1256021869 +1734853116 1 this.current 4 @@ -12343,7 +13976,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 281 this -1256021869 +1734853116 1 this.current 4 @@ -12356,7 +13989,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 282 this -1256021869 +1734853116 1 this.current 4 @@ -12366,7 +13999,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 283 this -1256021869 +1734853116 1 this.current 4 @@ -12376,7 +14009,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 283 this -1256021869 +1734853116 1 this.current 4 @@ -12389,13 +14022,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 282 this -1256021869 +1734853116 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12405,7 +14038,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 284 this -1256021869 +1734853116 1 this.current 4 @@ -12415,7 +14048,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 285 this -1256021869 +1734853116 1 this.current 4 @@ -12425,7 +14058,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 285 this -1256021869 +1734853116 1 this.current 4 @@ -12438,7 +14071,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 284 this -1256021869 +1734853116 1 this.current 5 @@ -12448,7 +14081,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 286 this -1256021869 +1734853116 1 this.current 5 @@ -12458,7 +14091,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 286 this -1256021869 +1734853116 1 this.current 5 @@ -12471,7 +14104,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 287 this -1256021869 +1734853116 1 this.current 5 @@ -12481,7 +14114,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 288 this -1256021869 +1734853116 1 this.current 5 @@ -12491,7 +14124,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 288 this -1256021869 +1734853116 1 this.current 5 @@ -12504,13 +14137,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 287 this -1256021869 +1734853116 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12520,7 +14153,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 289 this -1256021869 +1734853116 1 this.current 5 @@ -12530,7 +14163,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 290 this -1256021869 +1734853116 1 this.current 5 @@ -12540,7 +14173,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 290 this -1256021869 +1734853116 1 this.current 5 @@ -12553,7 +14186,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 289 this -1256021869 +1734853116 1 this.current 6 @@ -12563,7 +14196,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 291 this -1256021869 +1734853116 1 this.current 6 @@ -12573,7 +14206,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 291 this -1256021869 +1734853116 1 this.current 6 @@ -12586,7 +14219,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 292 this -1256021869 +1734853116 1 this.current 6 @@ -12596,7 +14229,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 293 this -1256021869 +1734853116 1 this.current 6 @@ -12606,7 +14239,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 293 this -1256021869 +1734853116 1 this.current 6 @@ -12619,13 +14252,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 292 this -1256021869 +1734853116 1 this.current 6 1 return -1429992312 +1165897474 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12635,7 +14268,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 294 this -1256021869 +1734853116 1 this.current 6 @@ -12645,7 +14278,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 295 this -1256021869 +1734853116 1 this.current 6 @@ -12655,7 +14288,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 295 this -1256021869 +1734853116 1 this.current 6 @@ -12668,7 +14301,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 294 this -1256021869 +1734853116 1 this.current 7 @@ -12678,7 +14311,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 296 this -1256021869 +1734853116 1 this.current 7 @@ -12688,7 +14321,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 296 this -1256021869 +1734853116 1 this.current 7 @@ -12701,7 +14334,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 297 this -1256021869 +1734853116 1 this.current 7 @@ -12711,7 +14344,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 298 this -1256021869 +1734853116 1 this.current 7 @@ -12721,7 +14354,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 298 this -1256021869 +1734853116 1 this.current 7 @@ -12734,13 +14367,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 297 this -1256021869 +1734853116 1 this.current 7 1 return -1679788513 +967765295 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12750,7 +14383,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 299 this -1256021869 +1734853116 1 this.current 7 @@ -12760,7 +14393,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 300 this -1256021869 +1734853116 1 this.current 7 @@ -12770,7 +14403,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 300 this -1256021869 +1734853116 1 this.current 7 @@ -12783,7 +14416,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 299 this -1256021869 +1734853116 1 this.current 8 @@ -12793,7 +14426,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 301 this -1256021869 +1734853116 1 this.current 8 @@ -12803,7 +14436,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 301 this -1256021869 +1734853116 1 this.current 8 @@ -12816,7 +14449,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 302 this -1256021869 +1734853116 1 this.current 8 @@ -12826,7 +14459,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 303 this -1256021869 +1734853116 1 this.current 8 @@ -12836,7 +14469,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 303 this -1256021869 +1734853116 1 this.current 8 @@ -12849,13 +14482,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 302 this -1256021869 +1734853116 1 this.current 8 1 return -1177504482 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12865,7 +14498,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 304 this -1256021869 +1734853116 1 this.current 8 @@ -12875,7 +14508,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 305 this -1256021869 +1734853116 1 this.current 8 @@ -12885,7 +14518,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 305 this -1256021869 +1734853116 1 this.current 8 @@ -12898,7 +14531,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 304 this -1256021869 +1734853116 1 this.current 0 @@ -12908,7 +14541,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 306 this -1256021869 +1734853116 1 this.current 0 @@ -12918,7 +14551,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 306 this -1256021869 +1734853116 1 this.current 0 @@ -12931,19 +14564,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 267 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12952,7 +14585,7 @@ DataStructures.CursorList.cursorSpace[..].next [9 2 3 4 5 6 7 8 0 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -12962,7 +14595,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 307 this -1706393036 +1483022288 1 this.current 7 @@ -12972,7 +14605,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 308 this -1706393036 +1483022288 1 this.current 7 @@ -12982,7 +14615,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 308 this -1706393036 +1483022288 1 this.current 7 @@ -12995,7 +14628,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 307 this -1706393036 +1483022288 1 this.current 8 @@ -13005,25 +14638,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 309 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13032,13 +14665,13 @@ DataStructures.CursorList.cursorSpace[..].next [9 2 3 4 5 6 7 8 0 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -195302273 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 8 @@ -13048,19 +14681,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 310 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13073,19 +14706,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 310 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13101,25 +14734,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 309 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13128,13 +14761,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 2 3 4 5 6 7 8 9 0 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -195302273 +703504298 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 8 @@ -13144,19 +14777,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 311 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13165,7 +14798,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 2 3 4 5 6 7 8 9 0 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -13175,25 +14808,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 312 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13206,25 +14839,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 312 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13240,25 +14873,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 313 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13278,7 +14911,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 314 this -1090289695 +201556483 1 this.current 2 @@ -13291,25 +14924,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 313 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -13318,7 +14951,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 2 3 4 5 6 7 8 9 0 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1090289695 +201556483 1 return.current 2 @@ -13328,7 +14961,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 315 this -1090289695 +201556483 1 this.current 2 @@ -13338,7 +14971,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 315 this -1090289695 +201556483 1 this.current 2 @@ -13351,7 +14984,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 316 this -1090289695 +201556483 1 this.current 2 @@ -13361,7 +14994,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 317 this -1090289695 +201556483 1 this.current 2 @@ -13371,7 +15004,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 317 this -1090289695 +201556483 1 this.current 2 @@ -13384,13 +15017,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 316 this -1090289695 +201556483 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13400,7 +15033,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 318 this -1090289695 +201556483 1 this.current 2 @@ -13410,7 +15043,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 319 this -1090289695 +201556483 1 this.current 2 @@ -13420,7 +15053,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 319 this -1090289695 +201556483 1 this.current 2 @@ -13433,7 +15066,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 318 this -1090289695 +201556483 1 this.current 3 @@ -13443,7 +15076,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 320 this -1090289695 +201556483 1 this.current 3 @@ -13453,7 +15086,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 320 this -1090289695 +201556483 1 this.current 3 @@ -13466,7 +15099,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 321 this -1090289695 +201556483 1 this.current 3 @@ -13476,7 +15109,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 322 this -1090289695 +201556483 1 this.current 3 @@ -13486,7 +15119,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 322 this -1090289695 +201556483 1 this.current 3 @@ -13499,13 +15132,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 321 this -1090289695 +201556483 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13515,7 +15148,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 323 this -1090289695 +201556483 1 this.current 3 @@ -13525,7 +15158,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 324 this -1090289695 +201556483 1 this.current 3 @@ -13535,7 +15168,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 324 this -1090289695 +201556483 1 this.current 3 @@ -13548,7 +15181,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 323 this -1090289695 +201556483 1 this.current 4 @@ -13558,7 +15191,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 325 this -1090289695 +201556483 1 this.current 4 @@ -13568,7 +15201,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 325 this -1090289695 +201556483 1 this.current 4 @@ -13581,7 +15214,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 326 this -1090289695 +201556483 1 this.current 4 @@ -13591,7 +15224,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 327 this -1090289695 +201556483 1 this.current 4 @@ -13601,7 +15234,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 327 this -1090289695 +201556483 1 this.current 4 @@ -13614,13 +15247,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 326 this -1090289695 +201556483 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13630,7 +15263,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 328 this -1090289695 +201556483 1 this.current 4 @@ -13640,7 +15273,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 329 this -1090289695 +201556483 1 this.current 4 @@ -13650,7 +15283,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 329 this -1090289695 +201556483 1 this.current 4 @@ -13663,7 +15296,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 328 this -1090289695 +201556483 1 this.current 5 @@ -13673,7 +15306,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 330 this -1090289695 +201556483 1 this.current 5 @@ -13683,7 +15316,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 330 this -1090289695 +201556483 1 this.current 5 @@ -13696,7 +15329,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 331 this -1090289695 +201556483 1 this.current 5 @@ -13706,7 +15339,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 332 this -1090289695 +201556483 1 this.current 5 @@ -13716,7 +15349,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 332 this -1090289695 +201556483 1 this.current 5 @@ -13729,13 +15362,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 331 this -1090289695 +201556483 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13745,7 +15378,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 333 this -1090289695 +201556483 1 this.current 5 @@ -13755,7 +15388,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 334 this -1090289695 +201556483 1 this.current 5 @@ -13765,7 +15398,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 334 this -1090289695 +201556483 1 this.current 5 @@ -13778,7 +15411,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 333 this -1090289695 +201556483 1 this.current 6 @@ -13788,7 +15421,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 335 this -1090289695 +201556483 1 this.current 6 @@ -13798,7 +15431,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 335 this -1090289695 +201556483 1 this.current 6 @@ -13811,7 +15444,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 336 this -1090289695 +201556483 1 this.current 6 @@ -13821,7 +15454,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 337 this -1090289695 +201556483 1 this.current 6 @@ -13831,7 +15464,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 337 this -1090289695 +201556483 1 this.current 6 @@ -13844,13 +15477,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 336 this -1090289695 +201556483 1 this.current 6 1 return -1429992312 +1165897474 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13860,7 +15493,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 338 this -1090289695 +201556483 1 this.current 6 @@ -13870,7 +15503,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 339 this -1090289695 +201556483 1 this.current 6 @@ -13880,7 +15513,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 339 this -1090289695 +201556483 1 this.current 6 @@ -13893,7 +15526,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 338 this -1090289695 +201556483 1 this.current 7 @@ -13903,7 +15536,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 340 this -1090289695 +201556483 1 this.current 7 @@ -13913,7 +15546,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 340 this -1090289695 +201556483 1 this.current 7 @@ -13926,7 +15559,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 341 this -1090289695 +201556483 1 this.current 7 @@ -13936,7 +15569,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 342 this -1090289695 +201556483 1 this.current 7 @@ -13946,7 +15579,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 342 this -1090289695 +201556483 1 this.current 7 @@ -13959,13 +15592,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 341 this -1090289695 +201556483 1 this.current 7 1 return -1679788513 +967765295 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13975,7 +15608,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 343 this -1090289695 +201556483 1 this.current 7 @@ -13985,7 +15618,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 344 this -1090289695 +201556483 1 this.current 7 @@ -13995,7 +15628,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 344 this -1090289695 +201556483 1 this.current 7 @@ -14008,7 +15641,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 343 this -1090289695 +201556483 1 this.current 8 @@ -14018,7 +15651,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 345 this -1090289695 +201556483 1 this.current 8 @@ -14028,7 +15661,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 345 this -1090289695 +201556483 1 this.current 8 @@ -14041,7 +15674,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 346 this -1090289695 +201556483 1 this.current 8 @@ -14051,7 +15684,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 347 this -1090289695 +201556483 1 this.current 8 @@ -14061,7 +15694,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 347 this -1090289695 +201556483 1 this.current 8 @@ -14074,13 +15707,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 346 this -1090289695 +201556483 1 this.current 8 1 return -1177504482 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14090,7 +15723,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 348 this -1090289695 +201556483 1 this.current 8 @@ -14100,7 +15733,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 349 this -1090289695 +201556483 1 this.current 8 @@ -14110,7 +15743,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 349 this -1090289695 +201556483 1 this.current 8 @@ -14123,7 +15756,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 348 this -1090289695 +201556483 1 this.current 9 @@ -14133,7 +15766,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 350 this -1090289695 +201556483 1 this.current 9 @@ -14143,7 +15776,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 350 this -1090289695 +201556483 1 this.current 9 @@ -14156,7 +15789,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 351 this -1090289695 +201556483 1 this.current 9 @@ -14166,7 +15799,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 352 this -1090289695 +201556483 1 this.current 9 @@ -14176,7 +15809,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 352 this -1090289695 +201556483 1 this.current 9 @@ -14189,13 +15822,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 351 this -1090289695 +201556483 1 this.current 9 1 return -195302273 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14205,7 +15838,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 353 this -1090289695 +201556483 1 this.current 9 @@ -14215,7 +15848,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 354 this -1090289695 +201556483 1 this.current 9 @@ -14225,7 +15858,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 354 this -1090289695 +201556483 1 this.current 9 @@ -14238,7 +15871,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 353 this -1090289695 +201556483 1 this.current 0 @@ -14248,7 +15881,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 355 this -1090289695 +201556483 1 this.current 0 @@ -14258,7 +15891,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 355 this -1090289695 +201556483 1 this.current 0 @@ -14271,19 +15904,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 311 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14292,7 +15925,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 2 3 4 5 6 7 8 9 0 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -14302,7 +15935,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 356 this -1706393036 +1483022288 1 this.current 8 @@ -14312,7 +15945,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 357 this -1706393036 +1483022288 1 this.current 8 @@ -14322,7 +15955,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 357 this -1706393036 +1483022288 1 this.current 8 @@ -14335,7 +15968,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 356 this -1706393036 +1483022288 1 this.current 9 @@ -14345,25 +15978,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 358 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14372,13 +16005,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 2 3 4 5 6 7 8 9 0 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -20944014 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 9 @@ -14388,19 +16021,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 359 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14413,19 +16046,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 359 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14441,25 +16074,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 358 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14468,13 +16101,13 @@ DataStructures.CursorList.cursorSpace[..].next [11 2 3 4 5 6 7 8 9 10 0 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -20944014 +214074868 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 9 @@ -14484,19 +16117,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 360 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14505,7 +16138,7 @@ DataStructures.CursorList.cursorSpace[..].next [11 2 3 4 5 6 7 8 9 10 0 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -14515,25 +16148,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 361 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14546,25 +16179,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 361 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14580,25 +16213,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 362 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14618,7 +16251,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 363 this -1966208837 +1442045361 1 this.current 2 @@ -14631,25 +16264,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 362 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -14658,7 +16291,7 @@ DataStructures.CursorList.cursorSpace[..].next [11 2 3 4 5 6 7 8 9 10 0 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1966208837 +1442045361 1 return.current 2 @@ -14668,7 +16301,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 364 this -1966208837 +1442045361 1 this.current 2 @@ -14678,7 +16311,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 364 this -1966208837 +1442045361 1 this.current 2 @@ -14691,7 +16324,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 365 this -1966208837 +1442045361 1 this.current 2 @@ -14701,7 +16334,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 366 this -1966208837 +1442045361 1 this.current 2 @@ -14711,7 +16344,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 366 this -1966208837 +1442045361 1 this.current 2 @@ -14724,13 +16357,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 365 this -1966208837 +1442045361 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14740,7 +16373,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 367 this -1966208837 +1442045361 1 this.current 2 @@ -14750,7 +16383,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 368 this -1966208837 +1442045361 1 this.current 2 @@ -14760,7 +16393,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 368 this -1966208837 +1442045361 1 this.current 2 @@ -14773,7 +16406,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 367 this -1966208837 +1442045361 1 this.current 3 @@ -14783,7 +16416,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 369 this -1966208837 +1442045361 1 this.current 3 @@ -14793,7 +16426,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 369 this -1966208837 +1442045361 1 this.current 3 @@ -14806,7 +16439,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 370 this -1966208837 +1442045361 1 this.current 3 @@ -14816,7 +16449,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 371 this -1966208837 +1442045361 1 this.current 3 @@ -14826,7 +16459,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 371 this -1966208837 +1442045361 1 this.current 3 @@ -14839,13 +16472,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 370 this -1966208837 +1442045361 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14855,7 +16488,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 372 this -1966208837 +1442045361 1 this.current 3 @@ -14865,7 +16498,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 373 this -1966208837 +1442045361 1 this.current 3 @@ -14875,7 +16508,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 373 this -1966208837 +1442045361 1 this.current 3 @@ -14888,7 +16521,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 372 this -1966208837 +1442045361 1 this.current 4 @@ -14898,7 +16531,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 374 this -1966208837 +1442045361 1 this.current 4 @@ -14908,7 +16541,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 374 this -1966208837 +1442045361 1 this.current 4 @@ -14921,7 +16554,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 375 this -1966208837 +1442045361 1 this.current 4 @@ -14931,7 +16564,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 376 this -1966208837 +1442045361 1 this.current 4 @@ -14941,7 +16574,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 376 this -1966208837 +1442045361 1 this.current 4 @@ -14954,13 +16587,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 375 this -1966208837 +1442045361 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14970,7 +16603,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 377 this -1966208837 +1442045361 1 this.current 4 @@ -14980,7 +16613,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 378 this -1966208837 +1442045361 1 this.current 4 @@ -14990,7 +16623,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 378 this -1966208837 +1442045361 1 this.current 4 @@ -15003,7 +16636,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 377 this -1966208837 +1442045361 1 this.current 5 @@ -15013,7 +16646,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 379 this -1966208837 +1442045361 1 this.current 5 @@ -15023,7 +16656,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 379 this -1966208837 +1442045361 1 this.current 5 @@ -15036,7 +16669,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 380 this -1966208837 +1442045361 1 this.current 5 @@ -15046,7 +16679,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 381 this -1966208837 +1442045361 1 this.current 5 @@ -15056,7 +16689,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 381 this -1966208837 +1442045361 1 this.current 5 @@ -15069,13 +16702,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 380 this -1966208837 +1442045361 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15085,7 +16718,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 382 this -1966208837 +1442045361 1 this.current 5 @@ -15095,7 +16728,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 383 this -1966208837 +1442045361 1 this.current 5 @@ -15105,7 +16738,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 383 this -1966208837 +1442045361 1 this.current 5 @@ -15118,7 +16751,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 382 this -1966208837 +1442045361 1 this.current 6 @@ -15128,7 +16761,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 384 this -1966208837 +1442045361 1 this.current 6 @@ -15138,7 +16771,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 384 this -1966208837 +1442045361 1 this.current 6 @@ -15151,7 +16784,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 385 this -1966208837 +1442045361 1 this.current 6 @@ -15161,7 +16794,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 386 this -1966208837 +1442045361 1 this.current 6 @@ -15171,7 +16804,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 386 this -1966208837 +1442045361 1 this.current 6 @@ -15184,13 +16817,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 385 this -1966208837 +1442045361 1 this.current 6 1 return -1429992312 +1165897474 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15200,7 +16833,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 387 this -1966208837 +1442045361 1 this.current 6 @@ -15210,7 +16843,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 388 this -1966208837 +1442045361 1 this.current 6 @@ -15220,7 +16853,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 388 this -1966208837 +1442045361 1 this.current 6 @@ -15233,7 +16866,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 387 this -1966208837 +1442045361 1 this.current 7 @@ -15243,7 +16876,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 389 this -1966208837 +1442045361 1 this.current 7 @@ -15253,7 +16886,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 389 this -1966208837 +1442045361 1 this.current 7 @@ -15266,7 +16899,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 390 this -1966208837 +1442045361 1 this.current 7 @@ -15276,7 +16909,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 391 this -1966208837 +1442045361 1 this.current 7 @@ -15286,7 +16919,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 391 this -1966208837 +1442045361 1 this.current 7 @@ -15299,13 +16932,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 390 this -1966208837 +1442045361 1 this.current 7 1 return -1679788513 +967765295 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15315,7 +16948,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 392 this -1966208837 +1442045361 1 this.current 7 @@ -15325,7 +16958,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 393 this -1966208837 +1442045361 1 this.current 7 @@ -15335,7 +16968,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 393 this -1966208837 +1442045361 1 this.current 7 @@ -15348,7 +16981,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 392 this -1966208837 +1442045361 1 this.current 8 @@ -15358,7 +16991,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 394 this -1966208837 +1442045361 1 this.current 8 @@ -15368,7 +17001,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 394 this -1966208837 +1442045361 1 this.current 8 @@ -15381,7 +17014,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 395 this -1966208837 +1442045361 1 this.current 8 @@ -15391,7 +17024,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 396 this -1966208837 +1442045361 1 this.current 8 @@ -15401,7 +17034,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 396 this -1966208837 +1442045361 1 this.current 8 @@ -15414,13 +17047,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 395 this -1966208837 +1442045361 1 this.current 8 1 return -1177504482 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15430,7 +17063,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 397 this -1966208837 +1442045361 1 this.current 8 @@ -15440,7 +17073,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 398 this -1966208837 +1442045361 1 this.current 8 @@ -15450,7 +17083,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 398 this -1966208837 +1442045361 1 this.current 8 @@ -15463,7 +17096,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 397 this -1966208837 +1442045361 1 this.current 9 @@ -15473,7 +17106,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 399 this -1966208837 +1442045361 1 this.current 9 @@ -15483,7 +17116,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 399 this -1966208837 +1442045361 1 this.current 9 @@ -15496,7 +17129,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 400 this -1966208837 +1442045361 1 this.current 9 @@ -15506,7 +17139,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 401 this -1966208837 +1442045361 1 this.current 9 @@ -15516,7 +17149,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 401 this -1966208837 +1442045361 1 this.current 9 @@ -15529,13 +17162,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 400 this -1966208837 +1442045361 1 this.current 9 1 return -195302273 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15545,7 +17178,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 402 this -1966208837 +1442045361 1 this.current 9 @@ -15555,7 +17188,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 403 this -1966208837 +1442045361 1 this.current 9 @@ -15565,7 +17198,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 403 this -1966208837 +1442045361 1 this.current 9 @@ -15578,7 +17211,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 402 this -1966208837 +1442045361 1 this.current 10 @@ -15588,7 +17221,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 404 this -1966208837 +1442045361 1 this.current 10 @@ -15598,7 +17231,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 404 this -1966208837 +1442045361 1 this.current 10 @@ -15611,7 +17244,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 405 this -1966208837 +1442045361 1 this.current 10 @@ -15621,7 +17254,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 406 this -1966208837 +1442045361 1 this.current 10 @@ -15631,7 +17264,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 406 this -1966208837 +1442045361 1 this.current 10 @@ -15644,13 +17277,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 405 this -1966208837 +1442045361 1 this.current 10 1 return -20944014 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15660,7 +17293,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 407 this -1966208837 +1442045361 1 this.current 10 @@ -15670,7 +17303,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 408 this -1966208837 +1442045361 1 this.current 10 @@ -15680,7 +17313,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 408 this -1966208837 +1442045361 1 this.current 10 @@ -15693,7 +17326,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 407 this -1966208837 +1442045361 1 this.current 0 @@ -15703,7 +17336,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 409 this -1966208837 +1442045361 1 this.current 0 @@ -15713,7 +17346,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 409 this -1966208837 +1442045361 1 this.current 0 @@ -15726,19 +17359,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 360 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -15747,7 +17380,7 @@ DataStructures.CursorList.cursorSpace[..].next [11 2 3 4 5 6 7 8 9 10 0 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -15757,7 +17390,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 410 this -1706393036 +1483022288 1 this.current 9 @@ -15767,7 +17400,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 411 this -1706393036 +1483022288 1 this.current 9 @@ -15777,7 +17410,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 411 this -1706393036 +1483022288 1 this.current 9 @@ -15790,7 +17423,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 410 this -1706393036 +1483022288 1 this.current 10 @@ -15800,25 +17433,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 412 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -15827,13 +17460,13 @@ DataStructures.CursorList.cursorSpace[..].next [11 2 3 4 5 6 7 8 9 10 0 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -593563423 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 10 @@ -15843,19 +17476,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 413 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -15868,19 +17501,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 413 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -15896,25 +17529,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 412 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -15923,13 +17556,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -593563423 +146611050 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1706393036 +1483022288 1 p.current 10 @@ -15939,19 +17572,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 414 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -15960,7 +17593,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -15970,25 +17603,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 415 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -16001,25 +17634,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 415 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -16035,25 +17668,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 416 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -16073,7 +17706,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 417 this -958910046 +415138788 1 this.current 2 @@ -16086,25 +17719,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 416 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -16113,7 +17746,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -958910046 +415138788 1 return.current 2 @@ -16123,7 +17756,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 418 this -958910046 +415138788 1 this.current 2 @@ -16133,7 +17766,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 418 this -958910046 +415138788 1 this.current 2 @@ -16146,7 +17779,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 419 this -958910046 +415138788 1 this.current 2 @@ -16156,7 +17789,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 420 this -958910046 +415138788 1 this.current 2 @@ -16166,7 +17799,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 420 this -958910046 +415138788 1 this.current 2 @@ -16179,13 +17812,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 419 this -958910046 +415138788 1 this.current 2 1 return -1474852153 +687780858 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16195,7 +17828,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 421 this -958910046 +415138788 1 this.current 2 @@ -16205,7 +17838,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 422 this -958910046 +415138788 1 this.current 2 @@ -16215,7 +17848,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 422 this -958910046 +415138788 1 this.current 2 @@ -16228,7 +17861,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 421 this -958910046 +415138788 1 this.current 3 @@ -16238,7 +17871,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 423 this -958910046 +415138788 1 this.current 3 @@ -16248,7 +17881,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 423 this -958910046 +415138788 1 this.current 3 @@ -16261,7 +17894,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 424 this -958910046 +415138788 1 this.current 3 @@ -16271,7 +17904,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 425 this -958910046 +415138788 1 this.current 3 @@ -16281,7 +17914,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 425 this -958910046 +415138788 1 this.current 3 @@ -16294,13 +17927,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 424 this -958910046 +415138788 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16310,7 +17943,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 426 this -958910046 +415138788 1 this.current 3 @@ -16320,7 +17953,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 427 this -958910046 +415138788 1 this.current 3 @@ -16330,7 +17963,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 427 this -958910046 +415138788 1 this.current 3 @@ -16343,7 +17976,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 426 this -958910046 +415138788 1 this.current 4 @@ -16353,7 +17986,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 428 this -958910046 +415138788 1 this.current 4 @@ -16363,7 +17996,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 428 this -958910046 +415138788 1 this.current 4 @@ -16376,7 +18009,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 429 this -958910046 +415138788 1 this.current 4 @@ -16386,7 +18019,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 430 this -958910046 +415138788 1 this.current 4 @@ -16396,7 +18029,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 430 this -958910046 +415138788 1 this.current 4 @@ -16409,13 +18042,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 429 this -958910046 +415138788 1 this.current 4 1 return -1161859976 +361993357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16425,7 +18058,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 431 this -958910046 +415138788 1 this.current 4 @@ -16435,7 +18068,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 432 this -958910046 +415138788 1 this.current 4 @@ -16445,7 +18078,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 432 this -958910046 +415138788 1 this.current 4 @@ -16458,7 +18091,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 431 this -958910046 +415138788 1 this.current 5 @@ -16468,7 +18101,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 433 this -958910046 +415138788 1 this.current 5 @@ -16478,7 +18111,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 433 this -958910046 +415138788 1 this.current 5 @@ -16491,7 +18124,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 434 this -958910046 +415138788 1 this.current 5 @@ -16501,7 +18134,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 435 this -958910046 +415138788 1 this.current 5 @@ -16511,7 +18144,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 435 this -958910046 +415138788 1 this.current 5 @@ -16524,13 +18157,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 434 this -958910046 +415138788 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16540,7 +18173,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 436 this -958910046 +415138788 1 this.current 5 @@ -16550,7 +18183,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 437 this -958910046 +415138788 1 this.current 5 @@ -16560,7 +18193,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 437 this -958910046 +415138788 1 this.current 5 @@ -16573,7 +18206,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 436 this -958910046 +415138788 1 this.current 6 @@ -16583,7 +18216,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 438 this -958910046 +415138788 1 this.current 6 @@ -16593,7 +18226,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 438 this -958910046 +415138788 1 this.current 6 @@ -16606,7 +18239,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 439 this -958910046 +415138788 1 this.current 6 @@ -16616,7 +18249,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 440 this -958910046 +415138788 1 this.current 6 @@ -16626,7 +18259,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 440 this -958910046 +415138788 1 this.current 6 @@ -16639,13 +18272,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 439 this -958910046 +415138788 1 this.current 6 1 return -1429992312 +1165897474 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16655,7 +18288,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 441 this -958910046 +415138788 1 this.current 6 @@ -16665,7 +18298,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 442 this -958910046 +415138788 1 this.current 6 @@ -16675,7 +18308,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 442 this -958910046 +415138788 1 this.current 6 @@ -16688,7 +18321,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 441 this -958910046 +415138788 1 this.current 7 @@ -16698,7 +18331,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 443 this -958910046 +415138788 1 this.current 7 @@ -16708,7 +18341,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 443 this -958910046 +415138788 1 this.current 7 @@ -16721,7 +18354,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 444 this -958910046 +415138788 1 this.current 7 @@ -16731,7 +18364,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 445 this -958910046 +415138788 1 this.current 7 @@ -16741,7 +18374,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 445 this -958910046 +415138788 1 this.current 7 @@ -16754,13 +18387,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 444 this -958910046 +415138788 1 this.current 7 1 return -1679788513 +967765295 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16770,7 +18403,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 446 this -958910046 +415138788 1 this.current 7 @@ -16780,7 +18413,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 447 this -958910046 +415138788 1 this.current 7 @@ -16790,7 +18423,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 447 this -958910046 +415138788 1 this.current 7 @@ -16803,7 +18436,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 446 this -958910046 +415138788 1 this.current 8 @@ -16813,7 +18446,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 448 this -958910046 +415138788 1 this.current 8 @@ -16823,7 +18456,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 448 this -958910046 +415138788 1 this.current 8 @@ -16836,7 +18469,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 449 this -958910046 +415138788 1 this.current 8 @@ -16846,7 +18479,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 450 this -958910046 +415138788 1 this.current 8 @@ -16856,7 +18489,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 450 this -958910046 +415138788 1 this.current 8 @@ -16869,13 +18502,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 449 this -958910046 +415138788 1 this.current 8 1 return -1177504482 +1182320432 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16885,7 +18518,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 451 this -958910046 +415138788 1 this.current 8 @@ -16895,7 +18528,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 452 this -958910046 +415138788 1 this.current 8 @@ -16905,7 +18538,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 452 this -958910046 +415138788 1 this.current 8 @@ -16918,7 +18551,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 451 this -958910046 +415138788 1 this.current 9 @@ -16928,7 +18561,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 453 this -958910046 +415138788 1 this.current 9 @@ -16938,7 +18571,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 453 this -958910046 +415138788 1 this.current 9 @@ -16951,7 +18584,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 454 this -958910046 +415138788 1 this.current 9 @@ -16961,7 +18594,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 455 this -958910046 +415138788 1 this.current 9 @@ -16971,7 +18604,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 455 this -958910046 +415138788 1 this.current 9 @@ -16984,13 +18617,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 454 this -958910046 +415138788 1 this.current 9 1 return -195302273 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17000,7 +18633,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 456 this -958910046 +415138788 1 this.current 9 @@ -17010,7 +18643,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 457 this -958910046 +415138788 1 this.current 9 @@ -17020,7 +18653,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 457 this -958910046 +415138788 1 this.current 9 @@ -17033,7 +18666,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 456 this -958910046 +415138788 1 this.current 10 @@ -17043,7 +18676,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 458 this -958910046 +415138788 1 this.current 10 @@ -17053,7 +18686,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 458 this -958910046 +415138788 1 this.current 10 @@ -17066,7 +18699,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 459 this -958910046 +415138788 1 this.current 10 @@ -17076,7 +18709,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 460 this -958910046 +415138788 1 this.current 10 @@ -17086,7 +18719,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 460 this -958910046 +415138788 1 this.current 10 @@ -17099,13 +18732,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 459 this -958910046 +415138788 1 this.current 10 1 return -20944014 +214074868 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17115,7 +18748,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 461 this -958910046 +415138788 1 this.current 10 @@ -17125,7 +18758,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 462 this -958910046 +415138788 1 this.current 10 @@ -17135,7 +18768,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 462 this -958910046 +415138788 1 this.current 10 @@ -17148,7 +18781,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 461 this -958910046 +415138788 1 this.current 11 @@ -17158,7 +18791,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 463 this -958910046 +415138788 1 this.current 11 @@ -17168,7 +18801,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 463 this -958910046 +415138788 1 this.current 11 @@ -17181,7 +18814,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 464 this -958910046 +415138788 1 this.current 11 @@ -17191,7 +18824,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 465 this -958910046 +415138788 1 this.current 11 @@ -17201,7 +18834,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 465 this -958910046 +415138788 1 this.current 11 @@ -17214,13 +18847,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 464 this -958910046 +415138788 1 this.current 11 1 return -593563423 +146611050 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17230,7 +18863,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 466 this -958910046 +415138788 1 this.current 11 @@ -17240,7 +18873,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 467 this -958910046 +415138788 1 this.current 11 @@ -17250,7 +18883,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 467 this -958910046 +415138788 1 this.current 11 @@ -17263,7 +18896,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 466 this -958910046 +415138788 1 this.current 0 @@ -17273,7 +18906,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 468 this -958910046 +415138788 1 this.current 0 @@ -17283,7 +18916,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 468 this -958910046 +415138788 1 this.current 0 @@ -17296,19 +18929,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 414 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17317,7 +18950,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -17327,7 +18960,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 469 this -1706393036 +1483022288 1 this.current 10 @@ -17337,7 +18970,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 470 this -1706393036 +1483022288 1 this.current 10 @@ -17347,7 +18980,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 470 this -1706393036 +1483022288 1 this.current 10 @@ -17360,7 +18993,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 469 this -1706393036 +1483022288 1 this.current 11 @@ -17370,25 +19003,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 471 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17397,7 +19030,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1683856034 +13326370 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17407,25 +19040,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 472 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17434,7 +19067,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1683856034 +13326370 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17451,7 +19084,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 473 this -1028863272 +1268650975 1 this.current 1 @@ -17464,25 +19097,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 472 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17491,13 +19124,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 2 3 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1683856034 +13326370 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1028863272 +1268650975 1 return.current 1 @@ -17507,19 +19140,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 474 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 1474852153 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 687780858 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17535,19 +19168,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 474 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17563,25 +19196,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 471 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17590,7 +19223,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1683856034 +13326370 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17600,25 +19233,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 475 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17627,7 +19260,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -566686860 +731395981 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17637,25 +19270,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 476 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17664,7 +19297,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -566686860 +731395981 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17681,7 +19314,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 477 this -216081575 +1196765369 1 this.current 3 @@ -17694,25 +19327,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 476 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17721,13 +19354,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 4 5 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -566686860 +731395981 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -216081575 +1196765369 1 return.current 3 @@ -17737,19 +19370,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 478 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 1161859976 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 361993357 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17765,19 +19398,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 478 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17793,25 +19426,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 475 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17820,7 +19453,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -566686860 +731395981 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17830,25 +19463,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 479 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17857,7 +19490,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -288183948 +486898233 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17867,25 +19500,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 480 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17894,7 +19527,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -288183948 +486898233 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17911,7 +19544,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 481 this -931990051 +650023597 1 this.current 5 @@ -17924,25 +19557,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 480 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17951,13 +19584,13 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 6 7 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -288183948 +486898233 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -931990051 +650023597 1 return.current 5 @@ -17967,19 +19600,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 482 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 1429992312 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 1165897474 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -17995,19 +19628,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 482 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18023,25 +19656,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 479 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18050,7 +19683,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -288183948 +486898233 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18060,25 +19693,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 483 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18087,7 +19720,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -211065939 +1282473384 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18097,25 +19730,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 484 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18124,7 +19757,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -211065939 +1282473384 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18141,7 +19774,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 485 this -1889735576 +575593575 1 this.current 7 @@ -18154,25 +19787,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 484 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18181,13 +19814,13 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 8 9 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -211065939 +1282473384 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1889735576 +575593575 1 return.current 7 @@ -18197,19 +19830,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 486 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 1177504482 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 1182320432 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18225,19 +19858,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 486 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18253,25 +19886,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 483 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18280,7 +19913,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -211065939 +1282473384 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18290,25 +19923,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 487 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18317,7 +19950,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1650170349 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18327,25 +19960,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 488 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18354,7 +19987,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1650170349 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18371,7 +20004,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 489 this -1809238285 +1188392295 1 this.current 9 @@ -18384,25 +20017,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 488 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18411,13 +20044,13 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 10 11 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1650170349 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1809238285 +1188392295 1 return.current 9 @@ -18427,19 +20060,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 490 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 20944014 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 214074868 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18455,19 +20088,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 490 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18483,25 +20116,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 487 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18510,7 +20143,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1650170349 +346861221 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18520,25 +20153,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 491 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18547,7 +20180,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1646898122 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18564,7 +20197,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 492 this -500010271 +1509563803 1 this.current 0 @@ -18577,25 +20210,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 491 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18604,13 +20237,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1646898122 +226710952 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -500010271 +1509563803 1 return.current 0 @@ -18620,7 +20253,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 493 this -500010271 +1509563803 1 this.current 0 @@ -18630,7 +20263,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 493 this -500010271 +1509563803 1 this.current 0 @@ -18643,25 +20276,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 494 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18670,7 +20303,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -569113986 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18687,7 +20320,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 495 this -206598964 +1157740463 1 this.current 3 @@ -18700,25 +20333,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 494 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18727,13 +20360,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -569113986 +684874119 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -206598964 +1157740463 1 return.current 3 @@ -18743,7 +20376,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 496 this -206598964 +1157740463 1 this.current 3 @@ -18753,7 +20386,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 496 this -206598964 +1157740463 1 this.current 3 @@ -18766,25 +20399,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 497 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18793,7 +20426,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1975214396 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18810,7 +20443,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 498 this -1626138246 +1529306539 1 this.current 0 @@ -18823,25 +20456,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 497 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18850,13 +20483,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1975214396 +1379435698 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1626138246 +1529306539 1 return.current 0 @@ -18866,7 +20499,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 499 this -1626138246 +1529306539 1 this.current 0 @@ -18876,7 +20509,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 499 this -1626138246 +1529306539 1 this.current 0 @@ -18889,25 +20522,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 500 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18916,7 +20549,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1628608800 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18933,7 +20566,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 501 this -201536938 +695682681 1 this.current 5 @@ -18946,25 +20579,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 500 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -18973,13 +20606,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1628608800 +1635985705 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -201536938 +695682681 1 return.current 5 @@ -18989,7 +20622,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 502 this -201536938 +695682681 1 this.current 5 @@ -18999,7 +20632,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 502 this -201536938 +695682681 1 this.current 5 @@ -19012,25 +20645,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 503 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19039,7 +20672,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -649605647 +1073502961 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19056,7 +20689,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 504 this -115247781 +1582797472 1 this.current 0 @@ -19069,25 +20702,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 503 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19096,13 +20729,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -649605647 +1073502961 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -115247781 +1582797472 1 return.current 0 @@ -19112,7 +20745,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 505 this -115247781 +1582797472 1 this.current 0 @@ -19122,7 +20755,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 505 this -115247781 +1582797472 1 this.current 0 @@ -19135,25 +20768,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 506 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19162,7 +20795,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2086689320 +644166178 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19179,7 +20812,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 507 this -431962083 +892529689 1 this.current 7 @@ -19192,25 +20825,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 506 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19219,13 +20852,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2086689320 +644166178 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -431962083 +892529689 1 return.current 7 @@ -19235,7 +20868,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 508 this -431962083 +892529689 1 this.current 7 @@ -19245,7 +20878,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 508 this -431962083 +892529689 1 this.current 7 @@ -19258,25 +20891,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 509 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19285,7 +20918,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1492002121 +1757676444 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19302,7 +20935,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 510 this -2060585275 +182738614 1 this.current 0 @@ -19315,25 +20948,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 509 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19342,13 +20975,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1492002121 +1757676444 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -2060585275 +182738614 1 return.current 0 @@ -19358,7 +20991,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 511 this -2060585275 +182738614 1 this.current 0 @@ -19368,7 +21001,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 511 this -2060585275 +182738614 1 this.current 0 @@ -19381,25 +21014,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 512 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19408,7 +21041,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1935425403 +94345706 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19425,7 +21058,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 513 this -759947112 +670035812 1 this.current 9 @@ -19438,25 +21071,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 512 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19465,13 +21098,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1935425403 +94345706 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -759947112 +670035812 1 return.current 9 @@ -19481,7 +21114,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 514 this -759947112 +670035812 1 this.current 9 @@ -19491,7 +21124,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 514 this -759947112 +670035812 1 this.current 9 @@ -19504,25 +21137,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 515 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19531,7 +21164,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1345862675 +1870647526 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19548,7 +21181,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 516 this -468724874 +1204167249 1 this.current 0 @@ -19561,25 +21194,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 515 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19588,13 +21221,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1345862675 +1870647526 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -468724874 +1204167249 1 return.current 0 @@ -19604,7 +21237,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 517 this -468724874 +1204167249 1 this.current 0 @@ -19614,7 +21247,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 517 this -468724874 +1204167249 1 this.current 0 @@ -19627,25 +21260,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 518 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19654,7 +21287,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -888940122 +1047503754 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19671,7 +21304,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 519 this -372898275 +1722023916 1 this.current 11 @@ -19684,25 +21317,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 518 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19711,13 +21344,13 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -888940122 +1047503754 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -372898275 +1722023916 1 return.current 11 @@ -19727,7 +21360,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 520 this -372898275 +1722023916 1 this.current 11 @@ -19737,7 +21370,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 520 this -372898275 +1722023916 1 this.current 11 @@ -19750,19 +21383,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 521 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19771,7 +21404,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -19781,25 +21414,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 522 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19812,25 +21445,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 522 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19846,25 +21479,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 523 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19884,7 +21517,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 524 this -944025979 +2009787198 1 this.current 3 @@ -19897,25 +21530,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 523 this -1456460106 +1935365522 1 this.header 1 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -19924,7 +21557,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -944025979 +2009787198 1 return.current 3 @@ -19934,7 +21567,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 525 this -944025979 +2009787198 1 this.current 3 @@ -19944,7 +21577,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 525 this -944025979 +2009787198 1 this.current 3 @@ -19957,7 +21590,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 526 this -944025979 +2009787198 1 this.current 3 @@ -19967,7 +21600,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 527 this -944025979 +2009787198 1 this.current 3 @@ -19977,7 +21610,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 527 this -944025979 +2009787198 1 this.current 3 @@ -19990,13 +21623,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 526 this -944025979 +2009787198 1 this.current 3 1 return -94073967 +1364614850 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20006,7 +21639,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 528 this -944025979 +2009787198 1 this.current 3 @@ -20016,7 +21649,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 529 this -944025979 +2009787198 1 this.current 3 @@ -20026,7 +21659,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 529 this -944025979 +2009787198 1 this.current 3 @@ -20039,7 +21672,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 528 this -944025979 +2009787198 1 this.current 5 @@ -20049,7 +21682,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 530 this -944025979 +2009787198 1 this.current 5 @@ -20059,7 +21692,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 530 this -944025979 +2009787198 1 this.current 5 @@ -20072,7 +21705,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 531 this -944025979 +2009787198 1 this.current 5 @@ -20082,7 +21715,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 532 this -944025979 +2009787198 1 this.current 5 @@ -20092,7 +21725,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 532 this -944025979 +2009787198 1 this.current 5 @@ -20105,13 +21738,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 531 this -944025979 +2009787198 1 this.current 5 1 return -805547347 +2015601401 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20121,7 +21754,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 533 this -944025979 +2009787198 1 this.current 5 @@ -20131,7 +21764,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 534 this -944025979 +2009787198 1 this.current 5 @@ -20141,7 +21774,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 534 this -944025979 +2009787198 1 this.current 5 @@ -20154,7 +21787,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 533 this -944025979 +2009787198 1 this.current 7 @@ -20164,7 +21797,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 535 this -944025979 +2009787198 1 this.current 7 @@ -20174,7 +21807,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 535 this -944025979 +2009787198 1 this.current 7 @@ -20187,7 +21820,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 536 this -944025979 +2009787198 1 this.current 7 @@ -20197,7 +21830,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 537 this -944025979 +2009787198 1 this.current 7 @@ -20207,7 +21840,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 537 this -944025979 +2009787198 1 this.current 7 @@ -20220,13 +21853,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 536 this -944025979 +2009787198 1 this.current 7 1 return -1679788513 +967765295 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20236,7 +21869,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 538 this -944025979 +2009787198 1 this.current 7 @@ -20246,7 +21879,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 539 this -944025979 +2009787198 1 this.current 7 @@ -20256,7 +21889,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 539 this -944025979 +2009787198 1 this.current 7 @@ -20269,7 +21902,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 538 this -944025979 +2009787198 1 this.current 9 @@ -20279,7 +21912,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 540 this -944025979 +2009787198 1 this.current 9 @@ -20289,7 +21922,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 540 this -944025979 +2009787198 1 this.current 9 @@ -20302,7 +21935,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 541 this -944025979 +2009787198 1 this.current 9 @@ -20312,7 +21945,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 542 this -944025979 +2009787198 1 this.current 9 @@ -20322,7 +21955,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 542 this -944025979 +2009787198 1 this.current 9 @@ -20335,13 +21968,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 541 this -944025979 +2009787198 1 this.current 9 1 return -195302273 +703504298 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20351,7 +21984,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 543 this -944025979 +2009787198 1 this.current 9 @@ -20361,7 +21994,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 544 this -944025979 +2009787198 1 this.current 9 @@ -20371,7 +22004,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 544 this -944025979 +2009787198 1 this.current 9 @@ -20384,7 +22017,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 543 this -944025979 +2009787198 1 this.current 11 @@ -20394,7 +22027,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 545 this -944025979 +2009787198 1 this.current 11 @@ -20404,7 +22037,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 545 this -944025979 +2009787198 1 this.current 11 @@ -20417,7 +22050,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 546 this -944025979 +2009787198 1 this.current 11 @@ -20427,7 +22060,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 547 this -944025979 +2009787198 1 this.current 11 @@ -20437,7 +22070,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 547 this -944025979 +2009787198 1 this.current 11 @@ -20450,13 +22083,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 546 this -944025979 +2009787198 1 this.current 11 1 return -593563423 +146611050 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20466,7 +22099,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 548 this -944025979 +2009787198 1 this.current 11 @@ -20476,7 +22109,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 549 this -944025979 +2009787198 1 this.current 11 @@ -20486,7 +22119,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 549 this -944025979 +2009787198 1 this.current 11 @@ -20499,7 +22132,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 548 this -944025979 +2009787198 1 this.current 0 @@ -20509,7 +22142,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 550 this -944025979 +2009787198 1 this.current 0 @@ -20519,7 +22152,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 550 this -944025979 +2009787198 1 this.current 0 @@ -20532,19 +22165,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 521 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20553,7 +22186,7 @@ DataStructures.CursorList.cursorSpace[..].next [10 3 12 5 2 7 4 9 6 11 8 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1456460106 +1935365522 1 theList.header 1 @@ -20567,19 +22200,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 552 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20592,19 +22225,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 552 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20620,25 +22253,25 @@ DataStructures.CursorList.CursorList():::EXIT54 this_invocation_nonce 551 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20651,19 +22284,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 553 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20672,7 +22305,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -635445017 +32017212 1 theList.header 10 @@ -20682,25 +22315,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 554 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20713,25 +22346,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 554 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20747,19 +22380,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 553 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20768,7 +22401,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -635445017 +32017212 1 theList.header 10 @@ -20778,25 +22411,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 555 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20809,25 +22442,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 555 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20843,25 +22476,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 556 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20881,7 +22514,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 557 this -488224188 +1121454968 1 this.current 0 @@ -20894,25 +22527,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 556 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20921,7 +22554,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -488224188 +1121454968 1 return.current 0 @@ -20931,7 +22564,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 558 this -488224188 +1121454968 1 this.current 0 @@ -20941,7 +22574,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 558 this -488224188 +1121454968 1 this.current 0 @@ -20954,25 +22587,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 559 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -20992,7 +22625,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 560 this -48912529 +1006485584 1 this.current 10 @@ -21005,25 +22638,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 559 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21032,7 +22665,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -48912529 +1006485584 1 return.current 10 @@ -21042,7 +22675,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 561 this -48912529 +1006485584 1 this.current 10 @@ -21052,7 +22685,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 561 this -48912529 +1006485584 1 this.current 10 @@ -21065,7 +22698,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 562 this -48912529 +1006485584 1 this.current 10 @@ -21075,7 +22708,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 563 this -48912529 +1006485584 1 this.current 10 @@ -21085,7 +22718,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 563 this -48912529 +1006485584 1 this.current 10 @@ -21098,7 +22731,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 562 this -48912529 +1006485584 1 this.current 10 @@ -21114,25 +22747,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 564 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21141,7 +22774,7 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1734121749 +466505482 1 x.getClass().getName() "java.lang.Integer" @@ -21158,7 +22791,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 565 this -1883662006 +1580893732 1 this.current 10 @@ -21171,25 +22804,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 564 this -635445017 +32017212 1 this.header 10 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21198,13 +22831,13 @@ DataStructures.CursorList.cursorSpace[..].next [8 3 12 5 2 7 4 9 6 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1734121749 +466505482 1 x.getClass().getName() "java.lang.Integer" 1 return -1883662006 +1580893732 1 return.current 10 @@ -21214,7 +22847,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 566 this -1883662006 +1580893732 1 this.current 10 @@ -21224,7 +22857,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 567 this -1883662006 +1580893732 1 this.current 10 @@ -21234,7 +22867,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 567 this -1883662006 +1580893732 1 this.current 10 @@ -21247,7 +22880,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 566 this -1883662006 +1580893732 1 this.current 10 @@ -21263,7 +22896,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 568 this -48912529 +1006485584 1 this.current 10 @@ -21273,7 +22906,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 569 this -48912529 +1006485584 1 this.current 10 @@ -21283,7 +22916,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 569 this -48912529 +1006485584 1 this.current 10 @@ -21296,7 +22929,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 568 this -48912529 +1006485584 1 this.current 0 @@ -21306,7 +22939,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 570 this -48912529 +1006485584 1 this.current 0 @@ -21316,7 +22949,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 570 this -48912529 +1006485584 1 this.current 0 @@ -21333,19 +22966,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 572 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21358,19 +22991,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 572 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21386,25 +23019,25 @@ DataStructures.CursorList.CursorList():::EXIT54 this_invocation_nonce 571 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21417,19 +23050,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 573 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21438,7 +23071,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -503410768 +1547425104 1 theList.header 8 @@ -21448,25 +23081,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 574 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21479,25 +23112,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 574 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21513,19 +23146,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 573 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21534,7 +23167,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -503410768 +1547425104 1 theList.header 8 @@ -21544,25 +23177,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 575 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21575,25 +23208,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 575 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21609,25 +23242,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 576 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21647,7 +23280,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 577 this -1886692243 +152134087 1 this.current 0 @@ -21660,25 +23293,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 576 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21687,7 +23320,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1886692243 +152134087 1 return.current 0 @@ -21697,7 +23330,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 578 this -1886692243 +152134087 1 this.current 0 @@ -21707,7 +23340,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 578 this -1886692243 +152134087 1 this.current 0 @@ -21720,25 +23353,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 579 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21758,7 +23391,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 580 this -2040480146 +1615780336 1 this.current 8 @@ -21771,25 +23404,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 579 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21798,7 +23431,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -2040480146 +1615780336 1 return.current 8 @@ -21808,7 +23441,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 581 this -2040480146 +1615780336 1 this.current 8 @@ -21818,7 +23451,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 581 this -2040480146 +1615780336 1 this.current 8 @@ -21831,7 +23464,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 582 this -2040480146 +1615780336 1 this.current 8 @@ -21841,7 +23474,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 583 this -2040480146 +1615780336 1 this.current 8 @@ -21851,7 +23484,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 583 this -2040480146 +1615780336 1 this.current 8 @@ -21864,7 +23497,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 582 this -2040480146 +1615780336 1 this.current 8 @@ -21880,25 +23513,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 584 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21907,7 +23540,7 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1183454879 +1783593083 1 x.getClass().getName() "java.lang.String" @@ -21924,7 +23557,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 585 this -332612839 +1750905143 1 this.current 8 @@ -21937,25 +23570,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 584 this -503410768 +1547425104 1 this.header 8 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -21964,13 +23597,13 @@ DataStructures.CursorList.cursorSpace[..].next [6 3 12 5 2 7 4 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1183454879 +1783593083 1 x.getClass().getName() "java.lang.String" 1 return -332612839 +1750905143 1 return.current 8 @@ -21980,7 +23613,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 586 this -332612839 +1750905143 1 this.current 8 @@ -21990,7 +23623,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 587 this -332612839 +1750905143 1 this.current 8 @@ -22000,7 +23633,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 587 this -332612839 +1750905143 1 this.current 8 @@ -22013,7 +23646,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 586 this -332612839 +1750905143 1 this.current 8 @@ -22029,7 +23662,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 588 this -2040480146 +1615780336 1 this.current 8 @@ -22039,7 +23672,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 589 this -2040480146 +1615780336 1 this.current 8 @@ -22049,7 +23682,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 589 this -2040480146 +1615780336 1 this.current 8 @@ -22062,7 +23695,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 588 this -2040480146 +1615780336 1 this.current 0 @@ -22072,7 +23705,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 590 this -2040480146 +1615780336 1 this.current 0 @@ -22082,7 +23715,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 590 this -2040480146 +1615780336 1 this.current 0 @@ -22099,19 +23732,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 592 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22124,19 +23757,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 592 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22152,25 +23785,25 @@ DataStructures.CursorList.CursorList():::EXIT54 this_invocation_nonce 591 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22183,19 +23816,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 593 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22204,7 +23837,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -324051932 +1782704802 1 theList.header 6 @@ -22214,25 +23847,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 594 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22245,25 +23878,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 594 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22279,19 +23912,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 593 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22300,7 +23933,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -324051932 +1782704802 1 theList.header 6 @@ -22310,25 +23943,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 595 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22341,25 +23974,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 595 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22375,25 +24008,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 596 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22413,7 +24046,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 597 this -322292332 +2094411587 1 this.current 0 @@ -22426,25 +24059,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 596 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22453,7 +24086,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -322292332 +2094411587 1 return.current 0 @@ -22463,7 +24096,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 598 this -322292332 +2094411587 1 this.current 0 @@ -22473,7 +24106,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 598 this -322292332 +2094411587 1 this.current 0 @@ -22486,25 +24119,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 599 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22524,7 +24157,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 600 this -813466190 +1833638914 1 this.current 6 @@ -22537,25 +24170,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 599 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22564,7 +24197,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -813466190 +1833638914 1 return.current 6 @@ -22574,7 +24207,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 601 this -813466190 +1833638914 1 this.current 6 @@ -22584,7 +24217,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 601 this -813466190 +1833638914 1 this.current 6 @@ -22597,7 +24230,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 602 this -813466190 +1833638914 1 this.current 6 @@ -22607,7 +24240,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 603 this -813466190 +1833638914 1 this.current 6 @@ -22617,7 +24250,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 603 this -813466190 +1833638914 1 this.current 6 @@ -22630,7 +24263,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 602 this -813466190 +1833638914 1 this.current 6 @@ -22646,25 +24279,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 604 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22673,7 +24306,7 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1045358528 +1620303253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -22690,7 +24323,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 605 this -777063989 +90320863 1 this.current 6 @@ -22703,25 +24336,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 604 this -324051932 +1782704802 1 this.header 6 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22730,13 +24363,13 @@ DataStructures.CursorList.cursorSpace[..].next [4 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1045358528 +1620303253 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -777063989 +90320863 1 return.current 6 @@ -22746,7 +24379,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 606 this -777063989 +90320863 1 this.current 6 @@ -22756,7 +24389,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 607 this -777063989 +90320863 1 this.current 6 @@ -22766,7 +24399,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 607 this -777063989 +90320863 1 this.current 6 @@ -22779,7 +24412,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 606 this -777063989 +90320863 1 this.current 6 @@ -22795,7 +24428,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 608 this -813466190 +1833638914 1 this.current 6 @@ -22805,7 +24438,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 609 this -813466190 +1833638914 1 this.current 6 @@ -22815,7 +24448,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 609 this -813466190 +1833638914 1 this.current 6 @@ -22828,7 +24461,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 608 this -813466190 +1833638914 1 this.current 0 @@ -22838,7 +24471,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 610 this -813466190 +1833638914 1 this.current 0 @@ -22848,7 +24481,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 610 this -813466190 +1833638914 1 this.current 0 @@ -22865,19 +24498,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 612 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22890,19 +24523,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 612 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22918,25 +24551,25 @@ DataStructures.CursorList.CursorList():::EXIT54 this_invocation_nonce 611 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22949,19 +24582,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 613 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -22970,7 +24603,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -22980,25 +24613,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 614 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23011,25 +24644,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 614 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23045,19 +24678,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 613 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23066,7 +24699,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -23076,25 +24709,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 615 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23107,25 +24740,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 615 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23141,25 +24774,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 616 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23179,7 +24812,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 617 this -770443395 +2107447833 1 this.current 0 @@ -23192,25 +24825,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 616 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23219,7 +24852,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -770443395 +2107447833 1 return.current 0 @@ -23229,7 +24862,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 618 this -770443395 +2107447833 1 this.current 0 @@ -23239,7 +24872,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 618 this -770443395 +2107447833 1 this.current 0 @@ -23252,25 +24885,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 619 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23290,7 +24923,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 620 this -1663232002 +60559178 1 this.current 4 @@ -23303,25 +24936,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 619 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23330,7 +24963,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1663232002 +60559178 1 return.current 4 @@ -23340,7 +24973,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 621 this -1663232002 +60559178 1 this.current 4 @@ -23350,7 +24983,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 621 this -1663232002 +60559178 1 this.current 4 @@ -23363,7 +24996,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 622 this -1663232002 +60559178 1 this.current 4 @@ -23373,7 +25006,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 623 this -1663232002 +60559178 1 this.current 4 @@ -23383,7 +25016,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 623 this -1663232002 +60559178 1 this.current 4 @@ -23396,7 +25029,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 622 this -1663232002 +60559178 1 this.current 4 @@ -23412,25 +25045,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 624 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23439,7 +25072,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -145624615 +395629617 1 x.getClass().getName() "java.lang.Double" @@ -23456,7 +25089,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 625 this -1529030372 +1122134344 1 this.current 4 @@ -23469,25 +25102,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 624 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23496,13 +25129,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -145624615 +395629617 1 x.getClass().getName() "java.lang.Double" 1 return -1529030372 +1122134344 1 return.current 4 @@ -23512,7 +25145,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 626 this -1529030372 +1122134344 1 this.current 4 @@ -23522,7 +25155,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 627 this -1529030372 +1122134344 1 this.current 4 @@ -23532,7 +25165,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 627 this -1529030372 +1122134344 1 this.current 4 @@ -23545,7 +25178,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 626 this -1529030372 +1122134344 1 this.current 4 @@ -23561,7 +25194,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 628 this -1663232002 +60559178 1 this.current 4 @@ -23571,7 +25204,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 629 this -1663232002 +60559178 1 this.current 4 @@ -23581,7 +25214,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 629 this -1663232002 +60559178 1 this.current 4 @@ -23594,7 +25227,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 628 this -1663232002 +60559178 1 this.current 0 @@ -23604,7 +25237,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 630 this -1663232002 +60559178 1 this.current 0 @@ -23614,7 +25247,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 630 this -1663232002 +60559178 1 this.current 0 @@ -23627,25 +25260,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 631 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23665,7 +25298,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 632 this -1624142202 +1471868639 1 this.current 4 @@ -23678,25 +25311,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 631 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23705,7 +25338,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1624142202 +1471868639 1 return.current 4 @@ -23715,25 +25348,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 633 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23742,13 +25375,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 12 5 0 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -293351997 +876563773 1 x.getClass().getName() "java.lang.Long" 1 p -1624142202 +1471868639 1 p.current 4 @@ -23758,19 +25391,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 634 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23783,19 +25416,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 634 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23811,25 +25444,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 633 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23838,13 +25471,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -293351997 +876563773 1 x.getClass().getName() "java.lang.Long" 1 p -1624142202 +1471868639 1 p.current 4 @@ -23854,19 +25487,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 635 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23875,7 +25508,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -23885,25 +25518,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 636 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23916,25 +25549,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 636 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23950,25 +25583,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 637 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -23988,7 +25621,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 638 this -1892043714 +87765719 1 this.current 2 @@ -24001,25 +25634,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 637 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24028,7 +25661,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1892043714 +87765719 1 return.current 2 @@ -24038,7 +25671,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 639 this -1892043714 +87765719 1 this.current 2 @@ -24048,7 +25681,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 639 this -1892043714 +87765719 1 this.current 2 @@ -24061,7 +25694,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 640 this -1892043714 +87765719 1 this.current 2 @@ -24071,7 +25704,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 641 this -1892043714 +87765719 1 this.current 2 @@ -24081,7 +25714,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 641 this -1892043714 +87765719 1 this.current 2 @@ -24094,13 +25727,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 640 this -1892043714 +87765719 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -24110,7 +25743,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 642 this -1892043714 +87765719 1 this.current 2 @@ -24120,7 +25753,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 643 this -1892043714 +87765719 1 this.current 2 @@ -24130,7 +25763,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 643 this -1892043714 +87765719 1 this.current 2 @@ -24143,7 +25776,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 642 this -1892043714 +87765719 1 this.current 0 @@ -24153,7 +25786,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 644 this -1892043714 +87765719 1 this.current 0 @@ -24163,7 +25796,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 644 this -1892043714 +87765719 1 this.current 0 @@ -24176,19 +25809,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 635 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24197,7 +25830,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -24207,25 +25840,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 645 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24238,25 +25871,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 645 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24272,25 +25905,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 646 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24310,7 +25943,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 647 this -1788340069 +1413653265 1 this.current 2 @@ -24323,25 +25956,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 646 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24350,7 +25983,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1788340069 +1413653265 1 return.current 2 @@ -24360,7 +25993,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 648 this -1788340069 +1413653265 1 this.current 2 @@ -24370,7 +26003,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 648 this -1788340069 +1413653265 1 this.current 2 @@ -24383,7 +26016,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 649 this -1788340069 +1413653265 1 this.current 2 @@ -24393,7 +26026,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 650 this -1788340069 +1413653265 1 this.current 2 @@ -24403,7 +26036,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 650 this -1788340069 +1413653265 1 this.current 2 @@ -24416,13 +26049,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 649 this -1788340069 +1413653265 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -24432,25 +26065,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 651 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24459,7 +26092,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -450416271 +1418621776 1 x.getClass().getName() "java.lang.String" @@ -24476,7 +26109,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 652 this -266411022 +446073433 1 this.current 0 @@ -24489,25 +26122,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 651 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24516,13 +26149,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -450416271 +1418621776 1 x.getClass().getName() "java.lang.String" 1 return -266411022 +446073433 1 return.current 0 @@ -24532,7 +26165,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 653 this -266411022 +446073433 1 this.current 0 @@ -24542,7 +26175,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 654 this -266411022 +446073433 1 this.current 0 @@ -24552,7 +26185,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 654 this -266411022 +446073433 1 this.current 0 @@ -24565,7 +26198,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 653 this -266411022 +446073433 1 this.current 0 @@ -24581,25 +26214,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 655 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24608,7 +26241,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -66642759 +1181199958 1 x.getClass().getName() "java.lang.String" @@ -24625,7 +26258,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 656 this -1225870426 +125622176 1 this.current 2 @@ -24638,25 +26271,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 655 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24665,13 +26298,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -66642759 +1181199958 1 x.getClass().getName() "java.lang.String" 1 return -1225870426 +125622176 1 return.current 2 @@ -24681,7 +26314,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 657 this -1225870426 +125622176 1 this.current 2 @@ -24691,7 +26324,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 658 this -1225870426 +125622176 1 this.current 2 @@ -24701,7 +26334,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 658 this -1225870426 +125622176 1 this.current 2 @@ -24714,13 +26347,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 657 this -1225870426 +125622176 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -24730,7 +26363,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 659 this -1788340069 +1413653265 1 this.current 2 @@ -24740,7 +26373,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 660 this -1788340069 +1413653265 1 this.current 2 @@ -24750,7 +26383,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 660 this -1788340069 +1413653265 1 this.current 2 @@ -24763,7 +26396,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 659 this -1788340069 +1413653265 1 this.current 0 @@ -24773,7 +26406,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 661 this -1788340069 +1413653265 1 this.current 0 @@ -24783,7 +26416,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 661 this -1788340069 +1413653265 1 this.current 0 @@ -24796,25 +26429,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 662 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24834,7 +26467,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 663 this -246140464 +542060780 1 this.current 4 @@ -24847,25 +26480,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 662 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24874,7 +26507,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -246140464 +542060780 1 return.current 4 @@ -24884,7 +26517,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 664 this -246140464 +542060780 1 this.current 4 @@ -24894,7 +26527,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 664 this -246140464 +542060780 1 this.current 4 @@ -24907,7 +26540,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 665 this -246140464 +542060780 1 this.current 4 @@ -24917,7 +26550,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 666 this -246140464 +542060780 1 this.current 4 @@ -24927,7 +26560,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 666 this -246140464 +542060780 1 this.current 4 @@ -24940,7 +26573,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 665 this -246140464 +542060780 1 this.current 4 @@ -24956,25 +26589,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 667 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -24983,7 +26616,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -25000,7 +26633,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 668 this -444728052 +1967892594 1 this.current 2 @@ -25013,25 +26646,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 667 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25040,13 +26673,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -444728052 +1967892594 1 return.current 2 @@ -25056,7 +26689,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 669 this -444728052 +1967892594 1 this.current 2 @@ -25066,7 +26699,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 670 this -444728052 +1967892594 1 this.current 2 @@ -25076,7 +26709,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 670 this -444728052 +1967892594 1 this.current 2 @@ -25089,13 +26722,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 669 this -444728052 +1967892594 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -25105,7 +26738,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 671 this -246140464 +542060780 1 this.current 4 @@ -25115,7 +26748,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 672 this -246140464 +542060780 1 this.current 4 @@ -25125,7 +26758,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 672 this -246140464 +542060780 1 this.current 4 @@ -25138,7 +26771,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 671 this -246140464 +542060780 1 this.current 2 @@ -25148,7 +26781,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 673 this -246140464 +542060780 1 this.current 2 @@ -25158,7 +26791,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 673 this -246140464 +542060780 1 this.current 2 @@ -25171,7 +26804,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 674 this -246140464 +542060780 1 this.current 2 @@ -25181,7 +26814,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 675 this -246140464 +542060780 1 this.current 2 @@ -25191,7 +26824,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 675 this -246140464 +542060780 1 this.current 2 @@ -25204,13 +26837,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 674 this -246140464 +542060780 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -25220,25 +26853,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 676 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25247,7 +26880,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -25264,7 +26897,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 677 this -1301278404 +342597804 1 this.current 2 @@ -25277,25 +26910,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 676 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25304,13 +26937,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1301278404 +342597804 1 return.current 2 @@ -25320,7 +26953,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 678 this -1301278404 +342597804 1 this.current 2 @@ -25330,7 +26963,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 679 this -1301278404 +342597804 1 this.current 2 @@ -25340,7 +26973,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 679 this -1301278404 +342597804 1 this.current 2 @@ -25353,13 +26986,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 678 this -1301278404 +342597804 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -25369,7 +27002,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 680 this -246140464 +542060780 1 this.current 2 @@ -25379,7 +27012,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 681 this -246140464 +542060780 1 this.current 2 @@ -25389,7 +27022,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 681 this -246140464 +542060780 1 this.current 2 @@ -25402,7 +27035,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 680 this -246140464 +542060780 1 this.current 0 @@ -25412,7 +27045,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 682 this -246140464 +542060780 1 this.current 0 @@ -25422,7 +27055,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 682 this -246140464 +542060780 1 this.current 0 @@ -25435,7 +27068,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 683 this -1624142202 +1471868639 1 this.current 4 @@ -25445,7 +27078,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 684 this -1624142202 +1471868639 1 this.current 4 @@ -25455,7 +27088,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 684 this -1624142202 +1471868639 1 this.current 4 @@ -25468,7 +27101,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 683 this -1624142202 +1471868639 1 this.current 2 @@ -25478,25 +27111,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 685 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25505,13 +27138,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 0 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -612674980 +1308244637 1 x.getClass().getName() "java.lang.Object" 1 p -1624142202 +1471868639 1 p.current 2 @@ -25521,19 +27154,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 686 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25546,19 +27179,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 686 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25574,25 +27207,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 685 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25601,13 +27234,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -612674980 +1308244637 1 x.getClass().getName() "java.lang.Object" 1 p -1624142202 +1471868639 1 p.current 2 @@ -25617,19 +27250,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 687 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25638,7 +27271,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -25648,25 +27281,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 688 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25679,25 +27312,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 688 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25713,25 +27346,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 689 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25751,7 +27384,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 690 this -44301495 +1860944798 1 this.current 2 @@ -25764,25 +27397,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 689 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -25791,7 +27424,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -44301495 +1860944798 1 return.current 2 @@ -25801,7 +27434,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 691 this -44301495 +1860944798 1 this.current 2 @@ -25811,7 +27444,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 691 this -44301495 +1860944798 1 this.current 2 @@ -25824,7 +27457,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 692 this -44301495 +1860944798 1 this.current 2 @@ -25834,7 +27467,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 693 this -44301495 +1860944798 1 this.current 2 @@ -25844,7 +27477,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 693 this -44301495 +1860944798 1 this.current 2 @@ -25857,13 +27490,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 692 this -44301495 +1860944798 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -25873,7 +27506,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 694 this -44301495 +1860944798 1 this.current 2 @@ -25883,7 +27516,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 695 this -44301495 +1860944798 1 this.current 2 @@ -25893,7 +27526,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 695 this -44301495 +1860944798 1 this.current 2 @@ -25906,7 +27539,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 694 this -44301495 +1860944798 1 this.current 12 @@ -25916,7 +27549,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 696 this -44301495 +1860944798 1 this.current 12 @@ -25926,7 +27559,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 696 this -44301495 +1860944798 1 this.current 12 @@ -25939,7 +27572,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 697 this -44301495 +1860944798 1 this.current 12 @@ -25949,7 +27582,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 698 this -44301495 +1860944798 1 this.current 12 @@ -25959,7 +27592,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 698 this -44301495 +1860944798 1 this.current 12 @@ -25972,13 +27605,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 697 this -44301495 +1860944798 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -25988,7 +27621,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 699 this -44301495 +1860944798 1 this.current 12 @@ -25998,7 +27631,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 700 this -44301495 +1860944798 1 this.current 12 @@ -26008,7 +27641,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 700 this -44301495 +1860944798 1 this.current 12 @@ -26021,7 +27654,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 699 this -44301495 +1860944798 1 this.current 0 @@ -26031,7 +27664,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 701 this -44301495 +1860944798 1 this.current 0 @@ -26041,7 +27674,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 701 this -44301495 +1860944798 1 this.current 0 @@ -26054,19 +27687,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 687 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26075,7 +27708,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -26085,25 +27718,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 702 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26116,25 +27749,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 702 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26150,25 +27783,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 703 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26188,7 +27821,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 704 this -1545884603 +1179381257 1 this.current 2 @@ -26201,25 +27834,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 703 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26228,7 +27861,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1545884603 +1179381257 1 return.current 2 @@ -26238,7 +27871,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 705 this -1545884603 +1179381257 1 this.current 2 @@ -26248,7 +27881,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 705 this -1545884603 +1179381257 1 this.current 2 @@ -26261,7 +27894,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 706 this -1545884603 +1179381257 1 this.current 2 @@ -26271,7 +27904,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 707 this -1545884603 +1179381257 1 this.current 2 @@ -26281,7 +27914,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 707 this -1545884603 +1179381257 1 this.current 2 @@ -26294,13 +27927,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 706 this -1545884603 +1179381257 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -26310,25 +27943,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 708 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26337,7 +27970,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1425361215 +258754732 1 x.getClass().getName() "java.lang.Integer" @@ -26354,7 +27987,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 709 this -865858220 +333362446 1 this.current 0 @@ -26367,25 +28000,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 708 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26394,13 +28027,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1425361215 +258754732 1 x.getClass().getName() "java.lang.Integer" 1 return -865858220 +333362446 1 return.current 0 @@ -26410,7 +28043,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 710 this -865858220 +333362446 1 this.current 0 @@ -26420,7 +28053,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 711 this -865858220 +333362446 1 this.current 0 @@ -26430,7 +28063,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 711 this -865858220 +333362446 1 this.current 0 @@ -26443,7 +28076,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 710 this -865858220 +333362446 1 this.current 0 @@ -26459,25 +28092,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 712 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26486,7 +28119,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1129911468 +597255128 1 x.getClass().getName() "java.lang.String" @@ -26503,7 +28136,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 713 this -224152255 +985397764 1 this.current 12 @@ -26516,25 +28149,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 712 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26543,13 +28176,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1129911468 +597255128 1 x.getClass().getName() "java.lang.String" 1 return -224152255 +985397764 1 return.current 12 @@ -26559,7 +28192,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 714 this -224152255 +985397764 1 this.current 12 @@ -26569,7 +28202,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 715 this -224152255 +985397764 1 this.current 12 @@ -26579,7 +28212,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 715 this -224152255 +985397764 1 this.current 12 @@ -26592,13 +28225,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 714 this -224152255 +985397764 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -26608,7 +28241,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 716 this -1545884603 +1179381257 1 this.current 2 @@ -26618,7 +28251,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 717 this -1545884603 +1179381257 1 this.current 2 @@ -26628,7 +28261,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 717 this -1545884603 +1179381257 1 this.current 2 @@ -26641,7 +28274,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 716 this -1545884603 +1179381257 1 this.current 12 @@ -26651,7 +28284,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 718 this -1545884603 +1179381257 1 this.current 12 @@ -26661,7 +28294,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 718 this -1545884603 +1179381257 1 this.current 12 @@ -26674,7 +28307,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 719 this -1545884603 +1179381257 1 this.current 12 @@ -26684,7 +28317,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 720 this -1545884603 +1179381257 1 this.current 12 @@ -26694,7 +28327,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 720 this -1545884603 +1179381257 1 this.current 12 @@ -26707,13 +28340,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 719 this -1545884603 +1179381257 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -26723,25 +28356,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 721 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26750,7 +28383,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -640632947 +1476394199 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26767,7 +28400,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 722 this -1782417818 +837764579 1 this.current 0 @@ -26780,25 +28413,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 721 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26807,13 +28440,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -640632947 +1476394199 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1782417818 +837764579 1 return.current 0 @@ -26823,7 +28456,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 723 this -1782417818 +837764579 1 this.current 0 @@ -26833,7 +28466,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 724 this -1782417818 +837764579 1 this.current 0 @@ -26843,7 +28476,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 724 this -1782417818 +837764579 1 this.current 0 @@ -26856,7 +28489,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 723 this -1782417818 +837764579 1 this.current 0 @@ -26872,25 +28505,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 725 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26899,7 +28532,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1846875123 +1501587365 1 x.getClass().getName() "java.lang.Double" @@ -26916,7 +28549,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 726 this -701558523 +1007603019 1 this.current 12 @@ -26929,25 +28562,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 725 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -26956,13 +28589,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1846875123 +1501587365 1 x.getClass().getName() "java.lang.Double" 1 return -701558523 +1007603019 1 return.current 12 @@ -26972,7 +28605,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 727 this -701558523 +1007603019 1 this.current 12 @@ -26982,7 +28615,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 728 this -701558523 +1007603019 1 this.current 12 @@ -26992,7 +28625,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 728 this -701558523 +1007603019 1 this.current 12 @@ -27005,13 +28638,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 727 this -701558523 +1007603019 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -27021,7 +28654,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 729 this -1545884603 +1179381257 1 this.current 12 @@ -27031,7 +28664,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 730 this -1545884603 +1179381257 1 this.current 12 @@ -27041,7 +28674,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 730 this -1545884603 +1179381257 1 this.current 12 @@ -27054,7 +28687,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 729 this -1545884603 +1179381257 1 this.current 0 @@ -27064,7 +28697,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 731 this -1545884603 +1179381257 1 this.current 0 @@ -27074,7 +28707,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 731 this -1545884603 +1179381257 1 this.current 0 @@ -27087,25 +28720,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 732 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27125,7 +28758,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 733 this -1408874031 +348100441 1 this.current 4 @@ -27138,25 +28771,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 732 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27165,7 +28798,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1408874031 +348100441 1 return.current 4 @@ -27175,7 +28808,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 734 this -1408874031 +348100441 1 this.current 4 @@ -27185,7 +28818,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 734 this -1408874031 +348100441 1 this.current 4 @@ -27198,7 +28831,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 735 this -1408874031 +348100441 1 this.current 4 @@ -27208,7 +28841,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 736 this -1408874031 +348100441 1 this.current 4 @@ -27218,7 +28851,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 736 this -1408874031 +348100441 1 this.current 4 @@ -27231,7 +28864,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 735 this -1408874031 +348100441 1 this.current 4 @@ -27247,25 +28880,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 737 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27274,7 +28907,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -791147195 +1597249648 1 x.getClass().getName() "java.lang.Long" @@ -27291,7 +28924,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 738 this -1739647788 +89387388 1 this.current 4 @@ -27304,25 +28937,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 737 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27331,13 +28964,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -791147195 +1597249648 1 x.getClass().getName() "java.lang.Long" 1 return -1739647788 +89387388 1 return.current 4 @@ -27347,7 +28980,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 739 this -1739647788 +89387388 1 this.current 4 @@ -27357,7 +28990,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 740 this -1739647788 +89387388 1 this.current 4 @@ -27367,7 +29000,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 740 this -1739647788 +89387388 1 this.current 4 @@ -27380,7 +29013,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 739 this -1739647788 +89387388 1 this.current 4 @@ -27396,7 +29029,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 741 this -1408874031 +348100441 1 this.current 4 @@ -27406,7 +29039,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 742 this -1408874031 +348100441 1 this.current 4 @@ -27416,7 +29049,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 742 this -1408874031 +348100441 1 this.current 4 @@ -27429,7 +29062,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 741 this -1408874031 +348100441 1 this.current 2 @@ -27439,7 +29072,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 743 this -1408874031 +348100441 1 this.current 2 @@ -27449,7 +29082,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 743 this -1408874031 +348100441 1 this.current 2 @@ -27462,7 +29095,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 744 this -1408874031 +348100441 1 this.current 2 @@ -27472,7 +29105,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 745 this -1408874031 +348100441 1 this.current 2 @@ -27482,7 +29115,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 745 this -1408874031 +348100441 1 this.current 2 @@ -27495,13 +29128,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 744 this -1408874031 +348100441 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -27511,25 +29144,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 746 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27538,7 +29171,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -270519011 +1333592072 1 x.getClass().getName() "java.lang.String" @@ -27555,7 +29188,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 747 this -390137178 +655381473 1 this.current 12 @@ -27568,25 +29201,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 746 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27595,13 +29228,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -270519011 +1333592072 1 x.getClass().getName() "java.lang.String" 1 return -390137178 +655381473 1 return.current 12 @@ -27611,7 +29244,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 748 this -390137178 +655381473 1 this.current 12 @@ -27621,7 +29254,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 749 this -390137178 +655381473 1 this.current 12 @@ -27631,7 +29264,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 749 this -390137178 +655381473 1 this.current 12 @@ -27644,13 +29277,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 748 this -390137178 +655381473 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -27660,7 +29293,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 750 this -1408874031 +348100441 1 this.current 2 @@ -27670,7 +29303,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 751 this -1408874031 +348100441 1 this.current 2 @@ -27680,7 +29313,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 751 this -1408874031 +348100441 1 this.current 2 @@ -27693,7 +29326,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 750 this -1408874031 +348100441 1 this.current 12 @@ -27703,7 +29336,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 752 this -1408874031 +348100441 1 this.current 12 @@ -27713,7 +29346,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 752 this -1408874031 +348100441 1 this.current 12 @@ -27726,7 +29359,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 753 this -1408874031 +348100441 1 this.current 12 @@ -27736,7 +29369,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 754 this -1408874031 +348100441 1 this.current 12 @@ -27746,7 +29379,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 754 this -1408874031 +348100441 1 this.current 12 @@ -27759,13 +29392,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 753 this -1408874031 +348100441 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -27775,25 +29408,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 755 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27802,7 +29435,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -767976355 +1486371051 1 x.getClass().getName() "java.lang.String" @@ -27819,7 +29452,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 756 this -1001880015 +1121647253 1 this.current 12 @@ -27832,25 +29465,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 755 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -27859,13 +29492,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -767976355 +1486371051 1 x.getClass().getName() "java.lang.String" 1 return -1001880015 +1121647253 1 return.current 12 @@ -27875,7 +29508,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 757 this -1001880015 +1121647253 1 this.current 12 @@ -27885,7 +29518,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 758 this -1001880015 +1121647253 1 this.current 12 @@ -27895,7 +29528,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 758 this -1001880015 +1121647253 1 this.current 12 @@ -27908,13 +29541,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 757 this -1001880015 +1121647253 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -27924,7 +29557,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 759 this -1408874031 +348100441 1 this.current 12 @@ -27934,7 +29567,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 760 this -1408874031 +348100441 1 this.current 12 @@ -27944,7 +29577,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 760 this -1408874031 +348100441 1 this.current 12 @@ -27957,7 +29590,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 759 this -1408874031 +348100441 1 this.current 0 @@ -27967,7 +29600,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 761 this -1408874031 +348100441 1 this.current 0 @@ -27977,7 +29610,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 761 this -1408874031 +348100441 1 this.current 0 @@ -27990,7 +29623,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 762 this -1624142202 +1471868639 1 this.current 2 @@ -28000,7 +29633,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 763 this -1624142202 +1471868639 1 this.current 2 @@ -28010,7 +29643,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 763 this -1624142202 +1471868639 1 this.current 2 @@ -28023,7 +29656,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 762 this -1624142202 +1471868639 1 this.current 12 @@ -28033,25 +29666,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 764 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28060,13 +29693,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 12 5 2 7 0 9 0 11 0 0 0 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 p -1624142202 +1471868639 1 p.current 12 @@ -28076,19 +29709,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 765 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28101,19 +29734,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 765 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28129,25 +29762,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 764 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28156,13 +29789,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 p -1624142202 +1471868639 1 p.current 12 @@ -28172,19 +29805,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 766 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28193,7 +29826,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -28203,25 +29836,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 767 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28234,25 +29867,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 767 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28268,25 +29901,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 768 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28306,7 +29939,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 769 this -178135978 +1694556038 1 this.current 2 @@ -28319,25 +29952,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 768 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28346,7 +29979,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -178135978 +1694556038 1 return.current 2 @@ -28356,7 +29989,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 770 this -178135978 +1694556038 1 this.current 2 @@ -28366,7 +29999,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 770 this -178135978 +1694556038 1 this.current 2 @@ -28379,7 +30012,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 771 this -178135978 +1694556038 1 this.current 2 @@ -28389,7 +30022,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 772 this -178135978 +1694556038 1 this.current 2 @@ -28399,7 +30032,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 772 this -178135978 +1694556038 1 this.current 2 @@ -28412,13 +30045,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 771 this -178135978 +1694556038 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -28428,7 +30061,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 773 this -178135978 +1694556038 1 this.current 2 @@ -28438,7 +30071,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 774 this -178135978 +1694556038 1 this.current 2 @@ -28448,7 +30081,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 774 this -178135978 +1694556038 1 this.current 2 @@ -28461,7 +30094,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 773 this -178135978 +1694556038 1 this.current 12 @@ -28471,7 +30104,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 775 this -178135978 +1694556038 1 this.current 12 @@ -28481,7 +30114,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 775 this -178135978 +1694556038 1 this.current 12 @@ -28494,7 +30127,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 776 this -178135978 +1694556038 1 this.current 12 @@ -28504,7 +30137,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 777 this -178135978 +1694556038 1 this.current 12 @@ -28514,7 +30147,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 777 this -178135978 +1694556038 1 this.current 12 @@ -28527,13 +30160,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 776 this -178135978 +1694556038 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -28543,7 +30176,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 778 this -178135978 +1694556038 1 this.current 12 @@ -28553,7 +30186,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 779 this -178135978 +1694556038 1 this.current 12 @@ -28563,7 +30196,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 779 this -178135978 +1694556038 1 this.current 12 @@ -28576,7 +30209,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 778 this -178135978 +1694556038 1 this.current 13 @@ -28586,7 +30219,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 780 this -178135978 +1694556038 1 this.current 13 @@ -28596,7 +30229,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 780 this -178135978 +1694556038 1 this.current 13 @@ -28609,7 +30242,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 781 this -178135978 +1694556038 1 this.current 13 @@ -28619,7 +30252,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 782 this -178135978 +1694556038 1 this.current 13 @@ -28629,7 +30262,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 782 this -178135978 +1694556038 1 this.current 13 @@ -28642,13 +30275,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 781 this -178135978 +1694556038 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -28658,7 +30291,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 783 this -178135978 +1694556038 1 this.current 13 @@ -28668,7 +30301,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 784 this -178135978 +1694556038 1 this.current 13 @@ -28678,7 +30311,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 784 this -178135978 +1694556038 1 this.current 13 @@ -28691,7 +30324,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 783 this -178135978 +1694556038 1 this.current 0 @@ -28701,7 +30334,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 785 this -178135978 +1694556038 1 this.current 0 @@ -28711,7 +30344,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 785 this -178135978 +1694556038 1 this.current 0 @@ -28724,19 +30357,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 766 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28745,7 +30378,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -28755,25 +30388,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 786 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28786,25 +30419,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 786 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28820,25 +30453,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 787 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28858,7 +30491,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 788 this -339178328 +1076496284 1 this.current 2 @@ -28871,25 +30504,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 787 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -28898,7 +30531,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -339178328 +1076496284 1 return.current 2 @@ -28908,7 +30541,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 789 this -339178328 +1076496284 1 this.current 2 @@ -28918,7 +30551,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 789 this -339178328 +1076496284 1 this.current 2 @@ -28931,7 +30564,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 790 this -339178328 +1076496284 1 this.current 2 @@ -28941,7 +30574,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 791 this -339178328 +1076496284 1 this.current 2 @@ -28951,7 +30584,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 791 this -339178328 +1076496284 1 this.current 2 @@ -28964,13 +30597,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 790 this -339178328 +1076496284 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -28980,25 +30613,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 792 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29007,7 +30640,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -29024,7 +30657,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 793 this -1148559558 +1508646930 1 this.current 0 @@ -29037,25 +30670,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 792 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29064,13 +30697,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1148559558 +1508646930 1 return.current 0 @@ -29080,7 +30713,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 794 this -1148559558 +1508646930 1 this.current 0 @@ -29090,7 +30723,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 795 this -1148559558 +1508646930 1 this.current 0 @@ -29100,7 +30733,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 795 this -1148559558 +1508646930 1 this.current 0 @@ -29113,7 +30746,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 794 this -1148559558 +1508646930 1 this.current 0 @@ -29129,25 +30762,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 796 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29156,7 +30789,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -317981251 +1291286504 1 x.getClass().getName() "java.lang.Object" @@ -29173,7 +30806,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 797 this -1371571821 +795372831 1 this.current 13 @@ -29186,25 +30819,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 796 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29213,13 +30846,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -317981251 +1291286504 1 x.getClass().getName() "java.lang.Object" 1 return -1371571821 +795372831 1 return.current 13 @@ -29229,7 +30862,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 798 this -1371571821 +795372831 1 this.current 13 @@ -29239,7 +30872,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 799 this -1371571821 +795372831 1 this.current 13 @@ -29249,7 +30882,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 799 this -1371571821 +795372831 1 this.current 13 @@ -29262,13 +30895,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 798 this -1371571821 +795372831 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -29278,7 +30911,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 800 this -339178328 +1076496284 1 this.current 2 @@ -29288,7 +30921,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 801 this -339178328 +1076496284 1 this.current 2 @@ -29298,7 +30931,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 801 this -339178328 +1076496284 1 this.current 2 @@ -29311,7 +30944,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 800 this -339178328 +1076496284 1 this.current 12 @@ -29321,7 +30954,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 802 this -339178328 +1076496284 1 this.current 12 @@ -29331,7 +30964,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 802 this -339178328 +1076496284 1 this.current 12 @@ -29344,7 +30977,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 803 this -339178328 +1076496284 1 this.current 12 @@ -29354,7 +30987,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 804 this -339178328 +1076496284 1 this.current 12 @@ -29364,7 +30997,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 804 this -339178328 +1076496284 1 this.current 12 @@ -29377,13 +31010,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 803 this -339178328 +1076496284 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -29393,25 +31026,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 805 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29420,7 +31053,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -918128649 +1072601481 1 x.getClass().getName() "java.lang.Integer" @@ -29437,7 +31070,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 806 this -1318200048 +121295574 1 this.current 0 @@ -29450,25 +31083,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 805 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29477,13 +31110,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -918128649 +1072601481 1 x.getClass().getName() "java.lang.Integer" 1 return -1318200048 +121295574 1 return.current 0 @@ -29493,7 +31126,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 807 this -1318200048 +121295574 1 this.current 0 @@ -29503,7 +31136,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 808 this -1318200048 +121295574 1 this.current 0 @@ -29513,7 +31146,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 808 this -1318200048 +121295574 1 this.current 0 @@ -29526,7 +31159,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 807 this -1318200048 +121295574 1 this.current 0 @@ -29542,25 +31175,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 809 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29569,7 +31202,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1546904284 +1887813102 1 x.getClass().getName() "java.lang.String" @@ -29586,7 +31219,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 810 this -1383270606 +485041780 1 this.current 13 @@ -29599,25 +31232,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 809 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29626,13 +31259,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1546904284 +1887813102 1 x.getClass().getName() "java.lang.String" 1 return -1383270606 +485041780 1 return.current 13 @@ -29642,7 +31275,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 811 this -1383270606 +485041780 1 this.current 13 @@ -29652,7 +31285,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 812 this -1383270606 +485041780 1 this.current 13 @@ -29662,7 +31295,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 812 this -1383270606 +485041780 1 this.current 13 @@ -29675,13 +31308,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 811 this -1383270606 +485041780 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -29691,7 +31324,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 813 this -339178328 +1076496284 1 this.current 12 @@ -29701,7 +31334,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 814 this -339178328 +1076496284 1 this.current 12 @@ -29711,7 +31344,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 814 this -339178328 +1076496284 1 this.current 12 @@ -29724,7 +31357,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 813 this -339178328 +1076496284 1 this.current 13 @@ -29734,7 +31367,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 815 this -339178328 +1076496284 1 this.current 13 @@ -29744,7 +31377,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 815 this -339178328 +1076496284 1 this.current 13 @@ -29757,7 +31390,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 816 this -339178328 +1076496284 1 this.current 13 @@ -29767,7 +31400,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 817 this -339178328 +1076496284 1 this.current 13 @@ -29777,7 +31410,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 817 this -339178328 +1076496284 1 this.current 13 @@ -29790,13 +31423,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 816 this -339178328 +1076496284 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -29806,25 +31439,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 818 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29833,7 +31466,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2118596267 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" @@ -29850,7 +31483,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 819 this -1968592209 +117244645 1 this.current 0 @@ -29863,25 +31496,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 818 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29890,13 +31523,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2118596267 +1459672753 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1968592209 +117244645 1 return.current 0 @@ -29906,7 +31539,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 820 this -1968592209 +117244645 1 this.current 0 @@ -29916,7 +31549,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 821 this -1968592209 +117244645 1 this.current 0 @@ -29926,7 +31559,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 821 this -1968592209 +117244645 1 this.current 0 @@ -29939,7 +31572,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 820 this -1968592209 +117244645 1 this.current 0 @@ -29955,25 +31588,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 822 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -29982,7 +31615,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1996190981 +1540011289 1 x.getClass().getName() "java.lang.Double" @@ -29999,7 +31632,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 823 this -1992284233 +239465106 1 this.current 13 @@ -30012,25 +31645,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 822 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30039,13 +31672,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1996190981 +1540011289 1 x.getClass().getName() "java.lang.Double" 1 return -1992284233 +239465106 1 return.current 13 @@ -30055,7 +31688,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 824 this -1992284233 +239465106 1 this.current 13 @@ -30065,7 +31698,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 825 this -1992284233 +239465106 1 this.current 13 @@ -30075,7 +31708,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 825 this -1992284233 +239465106 1 this.current 13 @@ -30088,13 +31721,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 824 this -1992284233 +239465106 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -30104,7 +31737,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 826 this -339178328 +1076496284 1 this.current 13 @@ -30114,7 +31747,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 827 this -339178328 +1076496284 1 this.current 13 @@ -30124,7 +31757,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 827 this -339178328 +1076496284 1 this.current 13 @@ -30137,7 +31770,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 826 this -339178328 +1076496284 1 this.current 0 @@ -30147,7 +31780,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 828 this -339178328 +1076496284 1 this.current 0 @@ -30157,7 +31790,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 828 this -339178328 +1076496284 1 this.current 0 @@ -30170,25 +31803,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 829 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30208,7 +31841,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 830 this -756080007 +1596000437 1 this.current 4 @@ -30221,25 +31854,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 829 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30248,7 +31881,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -756080007 +1596000437 1 return.current 4 @@ -30258,7 +31891,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 831 this -756080007 +1596000437 1 this.current 4 @@ -30268,7 +31901,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 831 this -756080007 +1596000437 1 this.current 4 @@ -30281,7 +31914,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 832 this -756080007 +1596000437 1 this.current 4 @@ -30291,7 +31924,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 833 this -756080007 +1596000437 1 this.current 4 @@ -30301,7 +31934,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 833 this -756080007 +1596000437 1 this.current 4 @@ -30314,7 +31947,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 832 this -756080007 +1596000437 1 this.current 4 @@ -30330,25 +31963,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 834 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30357,7 +31990,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -775938350 +832947102 1 x.getClass().getName() "java.lang.Long" @@ -30374,7 +32007,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 835 this -1675143866 +1061804750 1 this.current 4 @@ -30387,25 +32020,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 834 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30414,13 +32047,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -775938350 +832947102 1 x.getClass().getName() "java.lang.Long" 1 return -1675143866 +1061804750 1 return.current 4 @@ -30430,7 +32063,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 836 this -1675143866 +1061804750 1 this.current 4 @@ -30440,7 +32073,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 837 this -1675143866 +1061804750 1 this.current 4 @@ -30450,7 +32083,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 837 this -1675143866 +1061804750 1 this.current 4 @@ -30463,7 +32096,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 836 this -1675143866 +1061804750 1 this.current 4 @@ -30479,7 +32112,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 838 this -756080007 +1596000437 1 this.current 4 @@ -30489,7 +32122,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 839 this -756080007 +1596000437 1 this.current 4 @@ -30499,7 +32132,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 839 this -756080007 +1596000437 1 this.current 4 @@ -30512,7 +32145,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 838 this -756080007 +1596000437 1 this.current 2 @@ -30522,7 +32155,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 840 this -756080007 +1596000437 1 this.current 2 @@ -30532,7 +32165,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 840 this -756080007 +1596000437 1 this.current 2 @@ -30545,7 +32178,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 841 this -756080007 +1596000437 1 this.current 2 @@ -30555,7 +32188,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 842 this -756080007 +1596000437 1 this.current 2 @@ -30565,7 +32198,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 842 this -756080007 +1596000437 1 this.current 2 @@ -30578,13 +32211,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 841 this -756080007 +1596000437 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -30594,25 +32227,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 843 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30621,7 +32254,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -632343692 +507084503 1 x.getClass().getName() "java.lang.String" @@ -30638,7 +32271,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 844 this -2051346088 +1225439493 1 this.current 13 @@ -30651,25 +32284,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 843 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30678,13 +32311,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -632343692 +507084503 1 x.getClass().getName() "java.lang.String" 1 return -2051346088 +1225439493 1 return.current 13 @@ -30694,7 +32327,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 845 this -2051346088 +1225439493 1 this.current 13 @@ -30704,7 +32337,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 846 this -2051346088 +1225439493 1 this.current 13 @@ -30714,7 +32347,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 846 this -2051346088 +1225439493 1 this.current 13 @@ -30727,13 +32360,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 845 this -2051346088 +1225439493 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -30743,7 +32376,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 847 this -756080007 +1596000437 1 this.current 2 @@ -30753,7 +32386,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 848 this -756080007 +1596000437 1 this.current 2 @@ -30763,7 +32396,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 848 this -756080007 +1596000437 1 this.current 2 @@ -30776,7 +32409,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 847 this -756080007 +1596000437 1 this.current 12 @@ -30786,7 +32419,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 849 this -756080007 +1596000437 1 this.current 12 @@ -30796,7 +32429,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 849 this -756080007 +1596000437 1 this.current 12 @@ -30809,7 +32442,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 850 this -756080007 +1596000437 1 this.current 12 @@ -30819,7 +32452,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 851 this -756080007 +1596000437 1 this.current 12 @@ -30829,7 +32462,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 851 this -756080007 +1596000437 1 this.current 12 @@ -30842,13 +32475,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 850 this -756080007 +1596000437 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -30858,25 +32491,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 852 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30885,7 +32518,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1271232078 +1454127753 1 x.getClass().getName() "java.lang.String" @@ -30902,7 +32535,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 853 this -282730943 +667026744 1 this.current 13 @@ -30915,25 +32548,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 852 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -30942,13 +32575,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1271232078 +1454127753 1 x.getClass().getName() "java.lang.String" 1 return -282730943 +667026744 1 return.current 13 @@ -30958,7 +32591,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 854 this -282730943 +667026744 1 this.current 13 @@ -30968,7 +32601,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 855 this -282730943 +667026744 1 this.current 13 @@ -30978,7 +32611,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 855 this -282730943 +667026744 1 this.current 13 @@ -30991,13 +32624,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 854 this -282730943 +667026744 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -31007,7 +32640,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 856 this -756080007 +1596000437 1 this.current 12 @@ -31017,7 +32650,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 857 this -756080007 +1596000437 1 this.current 12 @@ -31027,7 +32660,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 857 this -756080007 +1596000437 1 this.current 12 @@ -31040,7 +32673,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 856 this -756080007 +1596000437 1 this.current 13 @@ -31050,7 +32683,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 858 this -756080007 +1596000437 1 this.current 13 @@ -31060,7 +32693,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 858 this -756080007 +1596000437 1 this.current 13 @@ -31073,7 +32706,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 859 this -756080007 +1596000437 1 this.current 13 @@ -31083,7 +32716,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 860 this -756080007 +1596000437 1 this.current 13 @@ -31093,7 +32726,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 860 this -756080007 +1596000437 1 this.current 13 @@ -31106,13 +32739,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 859 this -756080007 +1596000437 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -31122,25 +32755,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 861 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31149,7 +32782,7 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -31166,7 +32799,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 862 this -1625131837 +1926764753 1 this.current 12 @@ -31179,25 +32812,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 861 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31206,13 +32839,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1625131837 +1926764753 1 return.current 12 @@ -31222,7 +32855,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 863 this -1625131837 +1926764753 1 this.current 12 @@ -31232,7 +32865,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 864 this -1625131837 +1926764753 1 this.current 12 @@ -31242,7 +32875,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 864 this -1625131837 +1926764753 1 this.current 12 @@ -31255,13 +32888,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 863 this -1625131837 +1926764753 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -31271,7 +32904,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 865 this -756080007 +1596000437 1 this.current 13 @@ -31281,7 +32914,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 866 this -756080007 +1596000437 1 this.current 13 @@ -31291,7 +32924,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 866 this -756080007 +1596000437 1 this.current 13 @@ -31304,7 +32937,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 865 this -756080007 +1596000437 1 this.current 0 @@ -31314,7 +32947,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 867 this -756080007 +1596000437 1 this.current 0 @@ -31324,7 +32957,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 867 this -756080007 +1596000437 1 this.current 0 @@ -31337,7 +32970,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 868 this -1624142202 +1471868639 1 this.current 12 @@ -31347,7 +32980,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 869 this -1624142202 +1471868639 1 this.current 12 @@ -31357,7 +32990,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 869 this -1624142202 +1471868639 1 this.current 12 @@ -31370,7 +33003,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 868 this -1624142202 +1471868639 1 this.current 13 @@ -31380,25 +33013,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 870 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31407,13 +33040,13 @@ DataStructures.CursorList.cursorSpace[..].next [14 3 12 5 2 7 0 9 0 11 0 0 13 0 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 p -1624142202 +1471868639 1 p.current 13 @@ -31423,19 +33056,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 871 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31448,19 +33081,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 871 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31476,25 +33109,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 870 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31503,13 +33136,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 p -1624142202 +1471868639 1 p.current 13 @@ -31519,19 +33152,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 872 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31540,7 +33173,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -31550,25 +33183,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 873 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31581,25 +33214,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 873 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31615,25 +33248,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 874 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31653,7 +33286,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 875 this -1893761913 +1845904670 1 this.current 2 @@ -31666,25 +33299,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 874 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -31693,7 +33326,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1893761913 +1845904670 1 return.current 2 @@ -31703,7 +33336,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 876 this -1893761913 +1845904670 1 this.current 2 @@ -31713,7 +33346,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 876 this -1893761913 +1845904670 1 this.current 2 @@ -31726,7 +33359,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 877 this -1893761913 +1845904670 1 this.current 2 @@ -31736,7 +33369,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 878 this -1893761913 +1845904670 1 this.current 2 @@ -31746,7 +33379,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 878 this -1893761913 +1845904670 1 this.current 2 @@ -31759,13 +33392,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 877 this -1893761913 +1845904670 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -31775,7 +33408,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 879 this -1893761913 +1845904670 1 this.current 2 @@ -31785,7 +33418,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 880 this -1893761913 +1845904670 1 this.current 2 @@ -31795,7 +33428,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 880 this -1893761913 +1845904670 1 this.current 2 @@ -31808,7 +33441,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 879 this -1893761913 +1845904670 1 this.current 12 @@ -31818,7 +33451,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 881 this -1893761913 +1845904670 1 this.current 12 @@ -31828,7 +33461,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 881 this -1893761913 +1845904670 1 this.current 12 @@ -31841,7 +33474,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 882 this -1893761913 +1845904670 1 this.current 12 @@ -31851,7 +33484,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 883 this -1893761913 +1845904670 1 this.current 12 @@ -31861,7 +33494,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 883 this -1893761913 +1845904670 1 this.current 12 @@ -31874,13 +33507,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 882 this -1893761913 +1845904670 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -31890,7 +33523,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 884 this -1893761913 +1845904670 1 this.current 12 @@ -31900,7 +33533,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 885 this -1893761913 +1845904670 1 this.current 12 @@ -31910,7 +33543,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 885 this -1893761913 +1845904670 1 this.current 12 @@ -31923,7 +33556,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 884 this -1893761913 +1845904670 1 this.current 13 @@ -31933,7 +33566,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 886 this -1893761913 +1845904670 1 this.current 13 @@ -31943,7 +33576,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 886 this -1893761913 +1845904670 1 this.current 13 @@ -31956,7 +33589,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 887 this -1893761913 +1845904670 1 this.current 13 @@ -31966,7 +33599,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 888 this -1893761913 +1845904670 1 this.current 13 @@ -31976,7 +33609,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 888 this -1893761913 +1845904670 1 this.current 13 @@ -31989,13 +33622,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 887 this -1893761913 +1845904670 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -32005,7 +33638,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 889 this -1893761913 +1845904670 1 this.current 13 @@ -32015,7 +33648,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 890 this -1893761913 +1845904670 1 this.current 13 @@ -32025,7 +33658,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 890 this -1893761913 +1845904670 1 this.current 13 @@ -32038,7 +33671,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 889 this -1893761913 +1845904670 1 this.current 14 @@ -32048,7 +33681,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 891 this -1893761913 +1845904670 1 this.current 14 @@ -32058,7 +33691,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 891 this -1893761913 +1845904670 1 this.current 14 @@ -32071,7 +33704,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 892 this -1893761913 +1845904670 1 this.current 14 @@ -32081,7 +33714,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 893 this -1893761913 +1845904670 1 this.current 14 @@ -32091,7 +33724,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 893 this -1893761913 +1845904670 1 this.current 14 @@ -32104,13 +33737,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 892 this -1893761913 +1845904670 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -32120,7 +33753,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 894 this -1893761913 +1845904670 1 this.current 14 @@ -32130,7 +33763,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 895 this -1893761913 +1845904670 1 this.current 14 @@ -32140,7 +33773,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 895 this -1893761913 +1845904670 1 this.current 14 @@ -32153,7 +33786,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 894 this -1893761913 +1845904670 1 this.current 0 @@ -32163,7 +33796,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 896 this -1893761913 +1845904670 1 this.current 0 @@ -32173,7 +33806,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 896 this -1893761913 +1845904670 1 this.current 0 @@ -32186,19 +33819,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 872 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32207,7 +33840,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -32217,25 +33850,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 897 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32248,25 +33881,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 897 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32282,25 +33915,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 898 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32320,7 +33953,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 899 this -601339604 +1497973285 1 this.current 2 @@ -32333,25 +33966,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 898 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32360,7 +33993,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -601339604 +1497973285 1 return.current 2 @@ -32370,7 +34003,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 900 this -601339604 +1497973285 1 this.current 2 @@ -32380,7 +34013,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 900 this -601339604 +1497973285 1 this.current 2 @@ -32393,7 +34026,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 901 this -601339604 +1497973285 1 this.current 2 @@ -32403,7 +34036,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 902 this -601339604 +1497973285 1 this.current 2 @@ -32413,7 +34046,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 902 this -601339604 +1497973285 1 this.current 2 @@ -32426,13 +34059,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 901 this -601339604 +1497973285 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -32442,25 +34075,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 903 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32469,7 +34102,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -656681646 +1846896625 1 x.getClass().getName() "java.lang.Object" @@ -32486,7 +34119,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 904 this -929962389 +1555690610 1 this.current 0 @@ -32499,25 +34132,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 903 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32526,13 +34159,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -656681646 +1846896625 1 x.getClass().getName() "java.lang.Object" 1 return -929962389 +1555690610 1 return.current 0 @@ -32542,7 +34175,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 905 this -929962389 +1555690610 1 this.current 0 @@ -32552,7 +34185,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 906 this -929962389 +1555690610 1 this.current 0 @@ -32562,7 +34195,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 906 this -929962389 +1555690610 1 this.current 0 @@ -32575,7 +34208,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 905 this -929962389 +1555690610 1 this.current 0 @@ -32591,25 +34224,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 907 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32618,7 +34251,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -491889057 +13329486 1 x.getClass().getName() "java.lang.Integer" @@ -32635,7 +34268,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 908 this -1514823696 +327177752 1 this.current 14 @@ -32648,25 +34281,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 907 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32675,13 +34308,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -491889057 +13329486 1 x.getClass().getName() "java.lang.Integer" 1 return -1514823696 +327177752 1 return.current 14 @@ -32691,7 +34324,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 909 this -1514823696 +327177752 1 this.current 14 @@ -32701,7 +34334,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 910 this -1514823696 +327177752 1 this.current 14 @@ -32711,7 +34344,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 910 this -1514823696 +327177752 1 this.current 14 @@ -32724,13 +34357,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 909 this -1514823696 +327177752 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -32740,7 +34373,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 911 this -601339604 +1497973285 1 this.current 2 @@ -32750,7 +34383,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 912 this -601339604 +1497973285 1 this.current 2 @@ -32760,7 +34393,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 912 this -601339604 +1497973285 1 this.current 2 @@ -32773,7 +34406,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 911 this -601339604 +1497973285 1 this.current 12 @@ -32783,7 +34416,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 913 this -601339604 +1497973285 1 this.current 12 @@ -32793,7 +34426,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 913 this -601339604 +1497973285 1 this.current 12 @@ -32806,7 +34439,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 914 this -601339604 +1497973285 1 this.current 12 @@ -32816,7 +34449,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 915 this -601339604 +1497973285 1 this.current 12 @@ -32826,7 +34459,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 915 this -601339604 +1497973285 1 this.current 12 @@ -32839,13 +34472,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 914 this -601339604 +1497973285 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -32855,25 +34488,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 916 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32882,7 +34515,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1223223487 +1458540918 1 x.getClass().getName() "java.lang.String" @@ -32899,7 +34532,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 917 this -856193278 +1164371389 1 this.current 0 @@ -32912,25 +34545,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 916 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -32939,13 +34572,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1223223487 +1458540918 1 x.getClass().getName() "java.lang.String" 1 return -856193278 +1164371389 1 return.current 0 @@ -32955,7 +34588,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 918 this -856193278 +1164371389 1 this.current 0 @@ -32965,7 +34598,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 919 this -856193278 +1164371389 1 this.current 0 @@ -32975,7 +34608,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 919 this -856193278 +1164371389 1 this.current 0 @@ -32988,7 +34621,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 918 this -856193278 +1164371389 1 this.current 0 @@ -33004,25 +34637,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 920 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33031,7 +34664,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1899988446 +517210187 1 x.getClass().getName() "DataStructures.MyInteger" @@ -33048,7 +34681,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 921 this -23981032 +267760927 1 this.current 14 @@ -33061,25 +34694,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 920 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33088,13 +34721,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1899988446 +517210187 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -23981032 +267760927 1 return.current 14 @@ -33104,7 +34737,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 922 this -23981032 +267760927 1 this.current 14 @@ -33114,7 +34747,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 923 this -23981032 +267760927 1 this.current 14 @@ -33124,7 +34757,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 923 this -23981032 +267760927 1 this.current 14 @@ -33137,13 +34770,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 922 this -23981032 +267760927 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -33153,7 +34786,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 924 this -601339604 +1497973285 1 this.current 12 @@ -33163,7 +34796,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 925 this -601339604 +1497973285 1 this.current 12 @@ -33173,7 +34806,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 925 this -601339604 +1497973285 1 this.current 12 @@ -33186,7 +34819,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 924 this -601339604 +1497973285 1 this.current 13 @@ -33196,7 +34829,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 926 this -601339604 +1497973285 1 this.current 13 @@ -33206,7 +34839,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 926 this -601339604 +1497973285 1 this.current 13 @@ -33219,7 +34852,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 927 this -601339604 +1497973285 1 this.current 13 @@ -33229,7 +34862,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 928 this -601339604 +1497973285 1 this.current 13 @@ -33239,7 +34872,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 928 this -601339604 +1497973285 1 this.current 13 @@ -33252,13 +34885,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 927 this -601339604 +1497973285 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -33268,25 +34901,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 929 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33295,7 +34928,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1469762835 +633070006 1 x.getClass().getName() "java.lang.Double" @@ -33312,7 +34945,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 930 this -1947060051 +1459794865 1 this.current 0 @@ -33325,25 +34958,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 929 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33352,13 +34985,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1469762835 +633070006 1 x.getClass().getName() "java.lang.Double" 1 return -1947060051 +1459794865 1 return.current 0 @@ -33368,7 +35001,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 931 this -1947060051 +1459794865 1 this.current 0 @@ -33378,7 +35011,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 932 this -1947060051 +1459794865 1 this.current 0 @@ -33388,7 +35021,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 932 this -1947060051 +1459794865 1 this.current 0 @@ -33401,7 +35034,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 931 this -1947060051 +1459794865 1 this.current 0 @@ -33417,25 +35050,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 933 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33444,7 +35077,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -882464171 +1776957250 1 x.getClass().getName() "java.lang.Long" @@ -33461,7 +35094,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 934 this -1053255815 +1268066861 1 this.current 4 @@ -33474,25 +35107,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 933 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33501,13 +35134,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -882464171 +1776957250 1 x.getClass().getName() "java.lang.Long" 1 return -1053255815 +1268066861 1 return.current 4 @@ -33517,7 +35150,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 935 this -1053255815 +1268066861 1 this.current 4 @@ -33527,7 +35160,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 936 this -1053255815 +1268066861 1 this.current 4 @@ -33537,7 +35170,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 936 this -1053255815 +1268066861 1 this.current 4 @@ -33550,7 +35183,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 935 this -1053255815 +1268066861 1 this.current 4 @@ -33566,7 +35199,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 937 this -601339604 +1497973285 1 this.current 13 @@ -33576,7 +35209,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 938 this -601339604 +1497973285 1 this.current 13 @@ -33586,7 +35219,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 938 this -601339604 +1497973285 1 this.current 13 @@ -33599,7 +35232,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 937 this -601339604 +1497973285 1 this.current 14 @@ -33609,7 +35242,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 939 this -601339604 +1497973285 1 this.current 14 @@ -33619,7 +35252,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 939 this -601339604 +1497973285 1 this.current 14 @@ -33632,7 +35265,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 940 this -601339604 +1497973285 1 this.current 14 @@ -33642,7 +35275,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 941 this -601339604 +1497973285 1 this.current 14 @@ -33652,7 +35285,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 941 this -601339604 +1497973285 1 this.current 14 @@ -33665,13 +35298,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 940 this -601339604 +1497973285 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -33681,25 +35314,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 942 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33708,7 +35341,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -362780484 +827966648 1 x.getClass().getName() "java.lang.String" @@ -33725,7 +35358,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 943 this -545520755 +1938056729 1 this.current 0 @@ -33738,25 +35371,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 942 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33765,13 +35398,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -362780484 +827966648 1 x.getClass().getName() "java.lang.String" 1 return -545520755 +1938056729 1 return.current 0 @@ -33781,7 +35414,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 944 this -545520755 +1938056729 1 this.current 0 @@ -33791,7 +35424,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 945 this -545520755 +1938056729 1 this.current 0 @@ -33801,7 +35434,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 945 this -545520755 +1938056729 1 this.current 0 @@ -33814,7 +35447,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 944 this -545520755 +1938056729 1 this.current 0 @@ -33830,25 +35463,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 946 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33857,7 +35490,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -959640242 +1273765644 1 x.getClass().getName() "java.lang.String" @@ -33874,7 +35507,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 947 this -1071358324 +701141022 1 this.current 14 @@ -33887,25 +35520,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 946 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -33914,13 +35547,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -959640242 +1273765644 1 x.getClass().getName() "java.lang.String" 1 return -1071358324 +701141022 1 return.current 14 @@ -33930,7 +35563,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 948 this -1071358324 +701141022 1 this.current 14 @@ -33940,7 +35573,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 949 this -1071358324 +701141022 1 this.current 14 @@ -33950,7 +35583,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 949 this -1071358324 +701141022 1 this.current 14 @@ -33963,13 +35596,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 948 this -1071358324 +701141022 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -33979,7 +35612,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 950 this -601339604 +1497973285 1 this.current 14 @@ -33989,7 +35622,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 951 this -601339604 +1497973285 1 this.current 14 @@ -33999,7 +35632,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 951 this -601339604 +1497973285 1 this.current 14 @@ -34012,7 +35645,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 950 this -601339604 +1497973285 1 this.current 0 @@ -34022,7 +35655,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 952 this -601339604 +1497973285 1 this.current 0 @@ -34032,7 +35665,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 952 this -601339604 +1497973285 1 this.current 0 @@ -34045,25 +35678,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 953 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34083,7 +35716,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 954 this -1816455020 +1447689627 1 this.current 4 @@ -34096,25 +35729,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 953 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34123,7 +35756,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1816455020 +1447689627 1 return.current 4 @@ -34133,7 +35766,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 955 this -1816455020 +1447689627 1 this.current 4 @@ -34143,7 +35776,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 955 this -1816455020 +1447689627 1 this.current 4 @@ -34156,7 +35789,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 956 this -1816455020 +1447689627 1 this.current 4 @@ -34166,7 +35799,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 957 this -1816455020 +1447689627 1 this.current 4 @@ -34176,7 +35809,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 957 this -1816455020 +1447689627 1 this.current 4 @@ -34189,7 +35822,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 956 this -1816455020 +1447689627 1 this.current 4 @@ -34205,25 +35838,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 958 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34232,7 +35865,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -34249,7 +35882,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 959 this -531995388 +112061925 1 this.current 12 @@ -34262,25 +35895,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 958 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34289,13 +35922,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -531995388 +112061925 1 return.current 12 @@ -34305,7 +35938,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 960 this -531995388 +112061925 1 this.current 12 @@ -34315,7 +35948,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 961 this -531995388 +112061925 1 this.current 12 @@ -34325,7 +35958,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 961 this -531995388 +112061925 1 this.current 12 @@ -34338,13 +35971,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 960 this -531995388 +112061925 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -34354,7 +35987,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 962 this -1816455020 +1447689627 1 this.current 4 @@ -34364,7 +35997,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 963 this -1816455020 +1447689627 1 this.current 4 @@ -34374,7 +36007,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 963 this -1816455020 +1447689627 1 this.current 4 @@ -34387,7 +36020,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 962 this -1816455020 +1447689627 1 this.current 2 @@ -34397,7 +36030,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 964 this -1816455020 +1447689627 1 this.current 2 @@ -34407,7 +36040,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 964 this -1816455020 +1447689627 1 this.current 2 @@ -34420,7 +36053,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 965 this -1816455020 +1447689627 1 this.current 2 @@ -34430,7 +36063,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 966 this -1816455020 +1447689627 1 this.current 2 @@ -34440,7 +36073,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 966 this -1816455020 +1447689627 1 this.current 2 @@ -34453,13 +36086,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 965 this -1816455020 +1447689627 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -34469,25 +36102,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 967 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34496,7 +36129,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -34513,7 +36146,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 968 this -1272063655 +764577347 1 this.current 13 @@ -34526,25 +36159,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 967 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34553,13 +36186,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1272063655 +764577347 1 return.current 13 @@ -34569,7 +36202,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 969 this -1272063655 +764577347 1 this.current 13 @@ -34579,7 +36212,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 970 this -1272063655 +764577347 1 this.current 13 @@ -34589,7 +36222,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 970 this -1272063655 +764577347 1 this.current 13 @@ -34602,13 +36235,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 969 this -1272063655 +764577347 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -34618,7 +36251,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 971 this -1816455020 +1447689627 1 this.current 2 @@ -34628,7 +36261,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 972 this -1816455020 +1447689627 1 this.current 2 @@ -34638,7 +36271,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 972 this -1816455020 +1447689627 1 this.current 2 @@ -34651,7 +36284,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 971 this -1816455020 +1447689627 1 this.current 12 @@ -34661,7 +36294,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 973 this -1816455020 +1447689627 1 this.current 12 @@ -34671,7 +36304,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 973 this -1816455020 +1447689627 1 this.current 12 @@ -34684,7 +36317,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 974 this -1816455020 +1447689627 1 this.current 12 @@ -34694,7 +36327,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 975 this -1816455020 +1447689627 1 this.current 12 @@ -34704,7 +36337,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 975 this -1816455020 +1447689627 1 this.current 12 @@ -34717,13 +36350,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 974 this -1816455020 +1447689627 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -34733,25 +36366,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 976 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34760,7 +36393,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1374143700 +1344645519 1 x.getClass().getName() "java.lang.Object" @@ -34777,7 +36410,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 977 this -1194026062 +1234776885 1 this.current 14 @@ -34790,25 +36423,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 976 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -34817,13 +36450,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1374143700 +1344645519 1 x.getClass().getName() "java.lang.Object" 1 return -1194026062 +1234776885 1 return.current 14 @@ -34833,7 +36466,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 978 this -1194026062 +1234776885 1 this.current 14 @@ -34843,7 +36476,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 979 this -1194026062 +1234776885 1 this.current 14 @@ -34853,7 +36486,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 979 this -1194026062 +1234776885 1 this.current 14 @@ -34866,13 +36499,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 978 this -1194026062 +1234776885 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -34882,7 +36515,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 980 this -1816455020 +1447689627 1 this.current 12 @@ -34892,7 +36525,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 981 this -1816455020 +1447689627 1 this.current 12 @@ -34902,7 +36535,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 981 this -1816455020 +1447689627 1 this.current 12 @@ -34915,7 +36548,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 980 this -1816455020 +1447689627 1 this.current 13 @@ -34925,7 +36558,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 982 this -1816455020 +1447689627 1 this.current 13 @@ -34935,7 +36568,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 982 this -1816455020 +1447689627 1 this.current 13 @@ -34948,7 +36581,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 983 this -1816455020 +1447689627 1 this.current 13 @@ -34958,7 +36591,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 984 this -1816455020 +1447689627 1 this.current 13 @@ -34968,7 +36601,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 984 this -1816455020 +1447689627 1 this.current 13 @@ -34981,13 +36614,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 983 this -1816455020 +1447689627 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -34997,25 +36630,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 985 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35024,7 +36657,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1908826466 +540159270 1 x.getClass().getName() "java.lang.Integer" @@ -35041,7 +36674,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 986 this -388211529 +422250493 1 this.current 14 @@ -35054,25 +36687,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 985 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35081,13 +36714,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1908826466 +540159270 1 x.getClass().getName() "java.lang.Integer" 1 return -388211529 +422250493 1 return.current 14 @@ -35097,7 +36730,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 987 this -388211529 +422250493 1 this.current 14 @@ -35107,7 +36740,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 988 this -388211529 +422250493 1 this.current 14 @@ -35117,7 +36750,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 988 this -388211529 +422250493 1 this.current 14 @@ -35130,13 +36763,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 987 this -388211529 +422250493 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -35146,7 +36779,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 989 this -1816455020 +1447689627 1 this.current 13 @@ -35156,7 +36789,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 990 this -1816455020 +1447689627 1 this.current 13 @@ -35166,7 +36799,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 990 this -1816455020 +1447689627 1 this.current 13 @@ -35179,7 +36812,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 989 this -1816455020 +1447689627 1 this.current 14 @@ -35189,7 +36822,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 991 this -1816455020 +1447689627 1 this.current 14 @@ -35199,7 +36832,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 991 this -1816455020 +1447689627 1 this.current 14 @@ -35212,7 +36845,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 992 this -1816455020 +1447689627 1 this.current 14 @@ -35222,7 +36855,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 993 this -1816455020 +1447689627 1 this.current 14 @@ -35232,7 +36865,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 993 this -1816455020 +1447689627 1 this.current 14 @@ -35245,13 +36878,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 992 this -1816455020 +1447689627 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -35261,25 +36894,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 994 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35288,7 +36921,7 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -615848317 +1690287238 1 x.getClass().getName() "java.lang.String" @@ -35305,7 +36938,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 995 this -1838968926 +1690254271 1 this.current 14 @@ -35318,25 +36951,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 994 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35345,13 +36978,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -615848317 +1690287238 1 x.getClass().getName() "java.lang.String" 1 return -1838968926 +1690254271 1 return.current 14 @@ -35361,7 +36994,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 996 this -1838968926 +1690254271 1 this.current 14 @@ -35371,7 +37004,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 997 this -1838968926 +1690254271 1 this.current 14 @@ -35381,7 +37014,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 997 this -1838968926 +1690254271 1 this.current 14 @@ -35394,13 +37027,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 996 this -1838968926 +1690254271 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -35410,7 +37043,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 998 this -1816455020 +1447689627 1 this.current 14 @@ -35420,7 +37053,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 999 this -1816455020 +1447689627 1 this.current 14 @@ -35430,7 +37063,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 999 this -1816455020 +1447689627 1 this.current 14 @@ -35443,7 +37076,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 998 this -1816455020 +1447689627 1 this.current 0 @@ -35453,7 +37086,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1000 this -1816455020 +1447689627 1 this.current 0 @@ -35463,7 +37096,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1000 this -1816455020 +1447689627 1 this.current 0 @@ -35476,7 +37109,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1001 this -1624142202 +1471868639 1 this.current 13 @@ -35486,7 +37119,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1002 this -1624142202 +1471868639 1 this.current 13 @@ -35496,7 +37129,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1002 this -1624142202 +1471868639 1 this.current 13 @@ -35509,7 +37142,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1001 this -1624142202 +1471868639 1 this.current 14 @@ -35519,25 +37152,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1003 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35546,13 +37179,13 @@ DataStructures.CursorList.cursorSpace[..].next [15 3 12 5 2 7 0 9 0 11 0 0 13 14 0 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -966091658 +1440047379 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1624142202 +1471868639 1 p.current 14 @@ -35562,19 +37195,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 1004 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35587,19 +37220,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 1004 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35615,25 +37248,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1003 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35642,13 +37275,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -966091658 +1440047379 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1624142202 +1471868639 1 p.current 14 @@ -35658,19 +37291,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 1005 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35679,7 +37312,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -35689,25 +37322,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1006 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35720,25 +37353,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1006 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35754,25 +37387,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1007 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35792,7 +37425,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1008 this -2126124686 +343965883 1 this.current 2 @@ -35805,25 +37438,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1007 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -35832,7 +37465,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -2126124686 +343965883 1 return.current 2 @@ -35842,7 +37475,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1009 this -2126124686 +343965883 1 this.current 2 @@ -35852,7 +37485,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1009 this -2126124686 +343965883 1 this.current 2 @@ -35865,7 +37498,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1010 this -2126124686 +343965883 1 this.current 2 @@ -35875,7 +37508,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1011 this -2126124686 +343965883 1 this.current 2 @@ -35885,7 +37518,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1011 this -2126124686 +343965883 1 this.current 2 @@ -35898,13 +37531,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1010 this -2126124686 +343965883 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -35914,7 +37547,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1012 this -2126124686 +343965883 1 this.current 2 @@ -35924,7 +37557,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1013 this -2126124686 +343965883 1 this.current 2 @@ -35934,7 +37567,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1013 this -2126124686 +343965883 1 this.current 2 @@ -35947,7 +37580,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1012 this -2126124686 +343965883 1 this.current 12 @@ -35957,7 +37590,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1014 this -2126124686 +343965883 1 this.current 12 @@ -35967,7 +37600,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1014 this -2126124686 +343965883 1 this.current 12 @@ -35980,7 +37613,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1015 this -2126124686 +343965883 1 this.current 12 @@ -35990,7 +37623,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1016 this -2126124686 +343965883 1 this.current 12 @@ -36000,7 +37633,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1016 this -2126124686 +343965883 1 this.current 12 @@ -36013,13 +37646,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1015 this -2126124686 +343965883 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -36029,7 +37662,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1017 this -2126124686 +343965883 1 this.current 12 @@ -36039,7 +37672,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1018 this -2126124686 +343965883 1 this.current 12 @@ -36049,7 +37682,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1018 this -2126124686 +343965883 1 this.current 12 @@ -36062,7 +37695,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1017 this -2126124686 +343965883 1 this.current 13 @@ -36072,7 +37705,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1019 this -2126124686 +343965883 1 this.current 13 @@ -36082,7 +37715,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1019 this -2126124686 +343965883 1 this.current 13 @@ -36095,7 +37728,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1020 this -2126124686 +343965883 1 this.current 13 @@ -36105,7 +37738,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1021 this -2126124686 +343965883 1 this.current 13 @@ -36115,7 +37748,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1021 this -2126124686 +343965883 1 this.current 13 @@ -36128,13 +37761,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1020 this -2126124686 +343965883 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -36144,7 +37777,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1022 this -2126124686 +343965883 1 this.current 13 @@ -36154,7 +37787,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1023 this -2126124686 +343965883 1 this.current 13 @@ -36164,7 +37797,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1023 this -2126124686 +343965883 1 this.current 13 @@ -36177,7 +37810,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1022 this -2126124686 +343965883 1 this.current 14 @@ -36187,7 +37820,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1024 this -2126124686 +343965883 1 this.current 14 @@ -36197,7 +37830,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1024 this -2126124686 +343965883 1 this.current 14 @@ -36210,7 +37843,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1025 this -2126124686 +343965883 1 this.current 14 @@ -36220,7 +37853,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1026 this -2126124686 +343965883 1 this.current 14 @@ -36230,7 +37863,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1026 this -2126124686 +343965883 1 this.current 14 @@ -36243,13 +37876,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1025 this -2126124686 +343965883 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -36259,7 +37892,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1027 this -2126124686 +343965883 1 this.current 14 @@ -36269,7 +37902,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1028 this -2126124686 +343965883 1 this.current 14 @@ -36279,7 +37912,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1028 this -2126124686 +343965883 1 this.current 14 @@ -36292,7 +37925,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1027 this -2126124686 +343965883 1 this.current 15 @@ -36302,7 +37935,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1029 this -2126124686 +343965883 1 this.current 15 @@ -36312,7 +37945,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1029 this -2126124686 +343965883 1 this.current 15 @@ -36325,7 +37958,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1030 this -2126124686 +343965883 1 this.current 15 @@ -36335,7 +37968,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1031 this -2126124686 +343965883 1 this.current 15 @@ -36345,7 +37978,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1031 this -2126124686 +343965883 1 this.current 15 @@ -36358,13 +37991,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1030 this -2126124686 +343965883 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36374,7 +38007,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1032 this -2126124686 +343965883 1 this.current 15 @@ -36384,7 +38017,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1033 this -2126124686 +343965883 1 this.current 15 @@ -36394,7 +38027,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1033 this -2126124686 +343965883 1 this.current 15 @@ -36407,7 +38040,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1032 this -2126124686 +343965883 1 this.current 0 @@ -36417,7 +38050,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1034 this -2126124686 +343965883 1 this.current 0 @@ -36427,7 +38060,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1034 this -2126124686 +343965883 1 this.current 0 @@ -36440,19 +38073,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 1005 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36461,7 +38094,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -36471,25 +38104,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1035 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36502,25 +38135,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1035 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36536,25 +38169,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1036 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36574,7 +38207,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1037 this -1797195169 +230835489 1 this.current 2 @@ -36587,25 +38220,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1036 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36614,7 +38247,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1797195169 +230835489 1 return.current 2 @@ -36624,7 +38257,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1038 this -1797195169 +230835489 1 this.current 2 @@ -36634,7 +38267,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1038 this -1797195169 +230835489 1 this.current 2 @@ -36647,7 +38280,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1039 this -1797195169 +230835489 1 this.current 2 @@ -36657,7 +38290,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1040 this -1797195169 +230835489 1 this.current 2 @@ -36667,7 +38300,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1040 this -1797195169 +230835489 1 this.current 2 @@ -36680,13 +38313,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1039 this -1797195169 +230835489 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -36696,25 +38329,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1041 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36723,7 +38356,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1101710328 +280884709 1 x.getClass().getName() "java.lang.Double" @@ -36740,7 +38373,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1042 this -841478262 +1847509784 1 this.current 0 @@ -36753,25 +38386,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1041 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36780,13 +38413,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1101710328 +280884709 1 x.getClass().getName() "java.lang.Double" 1 return -841478262 +1847509784 1 return.current 0 @@ -36796,7 +38429,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1043 this -841478262 +1847509784 1 this.current 0 @@ -36806,7 +38439,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1044 this -841478262 +1847509784 1 this.current 0 @@ -36816,7 +38449,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1044 this -841478262 +1847509784 1 this.current 0 @@ -36829,7 +38462,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1043 this -841478262 +1847509784 1 this.current 0 @@ -36845,25 +38478,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1045 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36872,7 +38505,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1545333939 +2114650936 1 x.getClass().getName() "java.lang.Long" @@ -36889,7 +38522,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1046 this -760285955 +1635756693 1 this.current 4 @@ -36902,25 +38535,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1045 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -36929,13 +38562,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1545333939 +2114650936 1 x.getClass().getName() "java.lang.Long" 1 return -760285955 +1635756693 1 return.current 4 @@ -36945,7 +38578,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1047 this -760285955 +1635756693 1 this.current 4 @@ -36955,7 +38588,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1048 this -760285955 +1635756693 1 this.current 4 @@ -36965,7 +38598,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1048 this -760285955 +1635756693 1 this.current 4 @@ -36978,7 +38611,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1047 this -760285955 +1635756693 1 this.current 4 @@ -36994,7 +38627,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1049 this -1797195169 +230835489 1 this.current 2 @@ -37004,7 +38637,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1050 this -1797195169 +230835489 1 this.current 2 @@ -37014,7 +38647,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1050 this -1797195169 +230835489 1 this.current 2 @@ -37027,7 +38660,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1049 this -1797195169 +230835489 1 this.current 12 @@ -37037,7 +38670,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1051 this -1797195169 +230835489 1 this.current 12 @@ -37047,7 +38680,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1051 this -1797195169 +230835489 1 this.current 12 @@ -37060,7 +38693,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1052 this -1797195169 +230835489 1 this.current 12 @@ -37070,7 +38703,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1053 this -1797195169 +230835489 1 this.current 12 @@ -37080,7 +38713,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1053 this -1797195169 +230835489 1 this.current 12 @@ -37093,13 +38726,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1052 this -1797195169 +230835489 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -37109,25 +38742,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1054 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37136,7 +38769,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -598346035 +504527234 1 x.getClass().getName() "java.lang.String" @@ -37153,7 +38786,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1055 this -1883374991 +101478235 1 this.current 0 @@ -37166,25 +38799,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1054 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37193,13 +38826,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -598346035 +504527234 1 x.getClass().getName() "java.lang.String" 1 return -1883374991 +101478235 1 return.current 0 @@ -37209,7 +38842,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1056 this -1883374991 +101478235 1 this.current 0 @@ -37219,7 +38852,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1057 this -1883374991 +101478235 1 this.current 0 @@ -37229,7 +38862,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1057 this -1883374991 +101478235 1 this.current 0 @@ -37242,7 +38875,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1056 this -1883374991 +101478235 1 this.current 0 @@ -37258,25 +38891,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1058 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37285,7 +38918,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2122000604 +540585569 1 x.getClass().getName() "java.lang.String" @@ -37302,7 +38935,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1059 this -1203225699 +1007653873 1 this.current 15 @@ -37315,25 +38948,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1058 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37342,13 +38975,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2122000604 +540585569 1 x.getClass().getName() "java.lang.String" 1 return -1203225699 +1007653873 1 return.current 15 @@ -37358,7 +38991,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1060 this -1203225699 +1007653873 1 this.current 15 @@ -37368,7 +39001,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1061 this -1203225699 +1007653873 1 this.current 15 @@ -37378,7 +39011,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1061 this -1203225699 +1007653873 1 this.current 15 @@ -37391,13 +39024,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1060 this -1203225699 +1007653873 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37407,7 +39040,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1062 this -1797195169 +230835489 1 this.current 12 @@ -37417,7 +39050,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1063 this -1797195169 +230835489 1 this.current 12 @@ -37427,7 +39060,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1063 this -1797195169 +230835489 1 this.current 12 @@ -37440,7 +39073,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1062 this -1797195169 +230835489 1 this.current 13 @@ -37450,7 +39083,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1064 this -1797195169 +230835489 1 this.current 13 @@ -37460,7 +39093,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1064 this -1797195169 +230835489 1 this.current 13 @@ -37473,7 +39106,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1065 this -1797195169 +230835489 1 this.current 13 @@ -37483,7 +39116,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1066 this -1797195169 +230835489 1 this.current 13 @@ -37493,7 +39126,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1066 this -1797195169 +230835489 1 this.current 13 @@ -37506,13 +39139,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1065 this -1797195169 +230835489 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -37522,25 +39155,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1067 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37549,7 +39182,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -37566,7 +39199,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1068 this -1908302941 +836514715 1 this.current 13 @@ -37579,25 +39212,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1067 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37606,13 +39239,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1908302941 +836514715 1 return.current 13 @@ -37622,7 +39255,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1069 this -1908302941 +836514715 1 this.current 13 @@ -37632,7 +39265,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1070 this -1908302941 +836514715 1 this.current 13 @@ -37642,7 +39275,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1070 this -1908302941 +836514715 1 this.current 13 @@ -37655,13 +39288,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1069 this -1908302941 +836514715 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -37671,25 +39304,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1071 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37698,7 +39331,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -37715,7 +39348,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1072 this -179261442 +1414521932 1 this.current 13 @@ -37728,25 +39361,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1071 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37755,13 +39388,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -179261442 +1414521932 1 return.current 13 @@ -37771,7 +39404,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1073 this -179261442 +1414521932 1 this.current 13 @@ -37781,7 +39414,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1074 this -179261442 +1414521932 1 this.current 13 @@ -37791,7 +39424,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1074 this -179261442 +1414521932 1 this.current 13 @@ -37804,13 +39437,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1073 this -179261442 +1414521932 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -37820,7 +39453,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1075 this -1797195169 +230835489 1 this.current 13 @@ -37830,7 +39463,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1076 this -1797195169 +230835489 1 this.current 13 @@ -37840,7 +39473,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1076 this -1797195169 +230835489 1 this.current 13 @@ -37853,7 +39486,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1075 this -1797195169 +230835489 1 this.current 14 @@ -37863,7 +39496,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1077 this -1797195169 +230835489 1 this.current 14 @@ -37873,7 +39506,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1077 this -1797195169 +230835489 1 this.current 14 @@ -37886,7 +39519,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1078 this -1797195169 +230835489 1 this.current 14 @@ -37896,7 +39529,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1079 this -1797195169 +230835489 1 this.current 14 @@ -37906,7 +39539,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1079 this -1797195169 +230835489 1 this.current 14 @@ -37919,13 +39552,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1078 this -1797195169 +230835489 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -37935,25 +39568,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1080 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -37962,7 +39595,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2074982600 +828441346 1 x.getClass().getName() "java.lang.Object" @@ -37979,7 +39612,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1081 this -1245614567 +1899073220 1 this.current 0 @@ -37992,25 +39625,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1080 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38019,13 +39652,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2074982600 +828441346 1 x.getClass().getName() "java.lang.Object" 1 return -1245614567 +1899073220 1 return.current 0 @@ -38035,7 +39668,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1082 this -1245614567 +1899073220 1 this.current 0 @@ -38045,7 +39678,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1083 this -1245614567 +1899073220 1 this.current 0 @@ -38055,7 +39688,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1083 this -1245614567 +1899073220 1 this.current 0 @@ -38068,7 +39701,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1082 this -1245614567 +1899073220 1 this.current 0 @@ -38084,25 +39717,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1084 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38111,7 +39744,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1373436613 +555826066 1 x.getClass().getName() "java.lang.Integer" @@ -38128,7 +39761,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1085 this -47433088 +174573182 1 this.current 15 @@ -38141,25 +39774,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1084 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38168,13 +39801,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1373436613 +555826066 1 x.getClass().getName() "java.lang.Integer" 1 return -47433088 +174573182 1 return.current 15 @@ -38184,7 +39817,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1086 this -47433088 +174573182 1 this.current 15 @@ -38194,7 +39827,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1087 this -47433088 +174573182 1 this.current 15 @@ -38204,7 +39837,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1087 this -47433088 +174573182 1 this.current 15 @@ -38217,13 +39850,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1086 this -47433088 +174573182 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38233,7 +39866,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1088 this -1797195169 +230835489 1 this.current 14 @@ -38243,7 +39876,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1089 this -1797195169 +230835489 1 this.current 14 @@ -38253,7 +39886,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1089 this -1797195169 +230835489 1 this.current 14 @@ -38266,7 +39899,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1088 this -1797195169 +230835489 1 this.current 15 @@ -38276,7 +39909,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1090 this -1797195169 +230835489 1 this.current 15 @@ -38286,7 +39919,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1090 this -1797195169 +230835489 1 this.current 15 @@ -38299,7 +39932,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1091 this -1797195169 +230835489 1 this.current 15 @@ -38309,7 +39942,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1092 this -1797195169 +230835489 1 this.current 15 @@ -38319,7 +39952,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1092 this -1797195169 +230835489 1 this.current 15 @@ -38332,13 +39965,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1091 this -1797195169 +230835489 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38348,25 +39981,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1093 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38375,7 +40008,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -491476979 +858242339 1 x.getClass().getName() "java.lang.String" @@ -38392,7 +40025,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1094 this -1031479691 +1310540333 1 this.current 0 @@ -38405,25 +40038,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1093 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38432,13 +40065,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -491476979 +858242339 1 x.getClass().getName() "java.lang.String" 1 return -1031479691 +1310540333 1 return.current 0 @@ -38448,7 +40081,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1095 this -1031479691 +1310540333 1 this.current 0 @@ -38458,7 +40091,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1096 this -1031479691 +1310540333 1 this.current 0 @@ -38468,7 +40101,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1096 this -1031479691 +1310540333 1 this.current 0 @@ -38481,7 +40114,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1095 this -1031479691 +1310540333 1 this.current 0 @@ -38497,25 +40130,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1097 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38524,7 +40157,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1591168053 +1715998167 1 x.getClass().getName() "DataStructures.MyInteger" @@ -38541,7 +40174,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1098 this -147610680 +1386767190 1 this.current 14 @@ -38554,25 +40187,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1097 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38581,13 +40214,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1591168053 +1715998167 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -147610680 +1386767190 1 return.current 14 @@ -38597,7 +40230,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1099 this -147610680 +1386767190 1 this.current 14 @@ -38607,7 +40240,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1100 this -147610680 +1386767190 1 this.current 14 @@ -38617,7 +40250,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1100 this -147610680 +1386767190 1 this.current 14 @@ -38630,13 +40263,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1099 this -147610680 +1386767190 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -38646,7 +40279,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1101 this -1797195169 +230835489 1 this.current 15 @@ -38656,7 +40289,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1102 this -1797195169 +230835489 1 this.current 15 @@ -38666,7 +40299,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1102 this -1797195169 +230835489 1 this.current 15 @@ -38679,7 +40312,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1101 this -1797195169 +230835489 1 this.current 0 @@ -38689,7 +40322,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1103 this -1797195169 +230835489 1 this.current 0 @@ -38699,7 +40332,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1103 this -1797195169 +230835489 1 this.current 0 @@ -38712,25 +40345,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 1104 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38750,7 +40383,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1105 this -549086475 +1558712965 1 this.current 4 @@ -38763,25 +40396,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 1104 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38790,7 +40423,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -549086475 +1558712965 1 return.current 4 @@ -38800,7 +40433,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1106 this -549086475 +1558712965 1 this.current 4 @@ -38810,7 +40443,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1106 this -549086475 +1558712965 1 this.current 4 @@ -38823,7 +40456,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1107 this -549086475 +1558712965 1 this.current 4 @@ -38833,7 +40466,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1108 this -549086475 +1558712965 1 this.current 4 @@ -38843,7 +40476,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1108 this -549086475 +1558712965 1 this.current 4 @@ -38856,7 +40489,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1107 this -549086475 +1558712965 1 this.current 4 @@ -38872,25 +40505,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1109 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38899,7 +40532,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -759154166 +2025864991 1 x.getClass().getName() "java.lang.Double" @@ -38916,7 +40549,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1110 this -903721135 +1589683045 1 this.current 15 @@ -38929,25 +40562,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1109 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -38956,13 +40589,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -759154166 +2025864991 1 x.getClass().getName() "java.lang.Double" 1 return -903721135 +1589683045 1 return.current 15 @@ -38972,7 +40605,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1111 this -903721135 +1589683045 1 this.current 15 @@ -38982,7 +40615,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1112 this -903721135 +1589683045 1 this.current 15 @@ -38992,7 +40625,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1112 this -903721135 +1589683045 1 this.current 15 @@ -39005,13 +40638,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1111 this -903721135 +1589683045 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39021,7 +40654,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1113 this -549086475 +1558712965 1 this.current 4 @@ -39031,7 +40664,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1114 this -549086475 +1558712965 1 this.current 4 @@ -39041,7 +40674,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1114 this -549086475 +1558712965 1 this.current 4 @@ -39054,7 +40687,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1113 this -549086475 +1558712965 1 this.current 2 @@ -39064,7 +40697,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1115 this -549086475 +1558712965 1 this.current 2 @@ -39074,7 +40707,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1115 this -549086475 +1558712965 1 this.current 2 @@ -39087,7 +40720,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1116 this -549086475 +1558712965 1 this.current 2 @@ -39097,7 +40730,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1117 this -549086475 +1558712965 1 this.current 2 @@ -39107,7 +40740,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1117 this -549086475 +1558712965 1 this.current 2 @@ -39120,13 +40753,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1116 this -549086475 +1558712965 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -39136,25 +40769,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1118 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39163,7 +40796,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1836764361 +1340328248 1 x.getClass().getName() "java.lang.Long" @@ -39180,7 +40813,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1119 this -421189702 +1401132667 1 this.current 4 @@ -39193,25 +40826,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1118 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39220,13 +40853,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1836764361 +1340328248 1 x.getClass().getName() "java.lang.Long" 1 return -421189702 +1401132667 1 return.current 4 @@ -39236,7 +40869,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1120 this -421189702 +1401132667 1 this.current 4 @@ -39246,7 +40879,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1121 this -421189702 +1401132667 1 this.current 4 @@ -39256,7 +40889,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1121 this -421189702 +1401132667 1 this.current 4 @@ -39269,7 +40902,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1120 this -421189702 +1401132667 1 this.current 4 @@ -39285,7 +40918,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1122 this -549086475 +1558712965 1 this.current 2 @@ -39295,7 +40928,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1123 this -549086475 +1558712965 1 this.current 2 @@ -39305,7 +40938,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1123 this -549086475 +1558712965 1 this.current 2 @@ -39318,7 +40951,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1122 this -549086475 +1558712965 1 this.current 12 @@ -39328,7 +40961,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1124 this -549086475 +1558712965 1 this.current 12 @@ -39338,7 +40971,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1124 this -549086475 +1558712965 1 this.current 12 @@ -39351,7 +40984,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1125 this -549086475 +1558712965 1 this.current 12 @@ -39361,7 +40994,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1126 this -549086475 +1558712965 1 this.current 12 @@ -39371,7 +41004,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1126 this -549086475 +1558712965 1 this.current 12 @@ -39384,13 +41017,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1125 this -549086475 +1558712965 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -39400,25 +41033,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1127 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39427,7 +41060,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829221002 +717386707 1 x.getClass().getName() "java.lang.String" @@ -39444,7 +41077,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1128 this -1695995231 +1900164709 1 this.current 15 @@ -39457,25 +41090,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1127 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39484,13 +41117,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829221002 +717386707 1 x.getClass().getName() "java.lang.String" 1 return -1695995231 +1900164709 1 return.current 15 @@ -39500,7 +41133,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1129 this -1695995231 +1900164709 1 this.current 15 @@ -39510,7 +41143,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1130 this -1695995231 +1900164709 1 this.current 15 @@ -39520,7 +41153,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1130 this -1695995231 +1900164709 1 this.current 15 @@ -39533,13 +41166,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1129 this -1695995231 +1900164709 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39549,7 +41182,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1131 this -549086475 +1558712965 1 this.current 12 @@ -39559,7 +41192,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1132 this -549086475 +1558712965 1 this.current 12 @@ -39569,7 +41202,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1132 this -549086475 +1558712965 1 this.current 12 @@ -39582,7 +41215,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1131 this -549086475 +1558712965 1 this.current 13 @@ -39592,7 +41225,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1133 this -549086475 +1558712965 1 this.current 13 @@ -39602,7 +41235,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1133 this -549086475 +1558712965 1 this.current 13 @@ -39615,7 +41248,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1134 this -549086475 +1558712965 1 this.current 13 @@ -39625,7 +41258,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1135 this -549086475 +1558712965 1 this.current 13 @@ -39635,7 +41268,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1135 this -549086475 +1558712965 1 this.current 13 @@ -39648,13 +41281,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1134 this -549086475 +1558712965 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -39664,25 +41297,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1136 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39691,7 +41324,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1041400786 +540642172 1 x.getClass().getName() "java.lang.String" @@ -39708,7 +41341,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1137 this -831287252 +1875308878 1 this.current 15 @@ -39721,25 +41354,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1136 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39748,13 +41381,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1041400786 +540642172 1 x.getClass().getName() "java.lang.String" 1 return -831287252 +1875308878 1 return.current 15 @@ -39764,7 +41397,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1138 this -831287252 +1875308878 1 this.current 15 @@ -39774,7 +41407,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1139 this -831287252 +1875308878 1 this.current 15 @@ -39784,7 +41417,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1139 this -831287252 +1875308878 1 this.current 15 @@ -39797,13 +41430,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1138 this -831287252 +1875308878 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -39813,7 +41446,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1140 this -549086475 +1558712965 1 this.current 13 @@ -39823,7 +41456,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1141 this -549086475 +1558712965 1 this.current 13 @@ -39833,7 +41466,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1141 this -549086475 +1558712965 1 this.current 13 @@ -39846,7 +41479,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1140 this -549086475 +1558712965 1 this.current 14 @@ -39856,7 +41489,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1142 this -549086475 +1558712965 1 this.current 14 @@ -39866,7 +41499,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1142 this -549086475 +1558712965 1 this.current 14 @@ -39879,7 +41512,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1143 this -549086475 +1558712965 1 this.current 14 @@ -39889,7 +41522,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1144 this -549086475 +1558712965 1 this.current 14 @@ -39899,7 +41532,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1144 this -549086475 +1558712965 1 this.current 14 @@ -39912,13 +41545,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1143 this -549086475 +1558712965 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -39928,25 +41561,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1145 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -39955,7 +41588,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -39972,7 +41605,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1146 this -2063720629 +1445157774 1 this.current 12 @@ -39985,25 +41618,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1145 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40012,13 +41645,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -2063720629 +1445157774 1 return.current 12 @@ -40028,7 +41661,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1147 this -2063720629 +1445157774 1 this.current 12 @@ -40038,7 +41671,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1148 this -2063720629 +1445157774 1 this.current 12 @@ -40048,7 +41681,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1148 this -2063720629 +1445157774 1 this.current 12 @@ -40061,13 +41694,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1147 this -2063720629 +1445157774 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -40077,7 +41710,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1149 this -549086475 +1558712965 1 this.current 14 @@ -40087,7 +41720,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1150 this -549086475 +1558712965 1 this.current 14 @@ -40097,7 +41730,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1150 this -549086475 +1558712965 1 this.current 14 @@ -40110,7 +41743,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1149 this -549086475 +1558712965 1 this.current 15 @@ -40120,7 +41753,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1151 this -549086475 +1558712965 1 this.current 15 @@ -40130,7 +41763,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1151 this -549086475 +1558712965 1 this.current 15 @@ -40143,7 +41776,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1152 this -549086475 +1558712965 1 this.current 15 @@ -40153,7 +41786,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1153 this -549086475 +1558712965 1 this.current 15 @@ -40163,7 +41796,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1153 this -549086475 +1558712965 1 this.current 15 @@ -40176,13 +41809,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1152 this -549086475 +1558712965 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -40192,25 +41825,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1154 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40219,7 +41852,7 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -40236,7 +41869,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1155 this -944228906 +909295153 1 this.current 13 @@ -40249,25 +41882,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1154 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40276,13 +41909,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -944228906 +909295153 1 return.current 13 @@ -40292,7 +41925,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1156 this -944228906 +909295153 1 this.current 13 @@ -40302,7 +41935,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1157 this -944228906 +909295153 1 this.current 13 @@ -40312,7 +41945,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1157 this -944228906 +909295153 1 this.current 13 @@ -40325,13 +41958,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1156 this -944228906 +909295153 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -40341,7 +41974,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1158 this -549086475 +1558712965 1 this.current 15 @@ -40351,7 +41984,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1159 this -549086475 +1558712965 1 this.current 15 @@ -40361,7 +41994,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1159 this -549086475 +1558712965 1 this.current 15 @@ -40374,7 +42007,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1158 this -549086475 +1558712965 1 this.current 0 @@ -40384,7 +42017,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1160 this -549086475 +1558712965 1 this.current 0 @@ -40394,7 +42027,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1160 this -549086475 +1558712965 1 this.current 0 @@ -40407,7 +42040,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1161 this -1624142202 +1471868639 1 this.current 14 @@ -40417,7 +42050,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1162 this -1624142202 +1471868639 1 this.current 14 @@ -40427,7 +42060,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1162 this -1624142202 +1471868639 1 this.current 14 @@ -40440,7 +42073,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1161 this -1624142202 +1471868639 1 this.current 15 @@ -40450,25 +42083,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1163 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40477,13 +42110,13 @@ DataStructures.CursorList.cursorSpace[..].next [16 3 12 5 2 7 0 9 0 11 0 0 13 14 15 0 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1898555459 +1522311648 1 x.getClass().getName() "java.lang.Object" 1 p -1624142202 +1471868639 1 p.current 15 @@ -40493,19 +42126,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 1164 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40518,19 +42151,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 1164 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40546,25 +42179,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1163 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40573,13 +42206,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1898555459 +1522311648 1 x.getClass().getName() "java.lang.Object" 1 p -1624142202 +1471868639 1 p.current 15 @@ -40589,19 +42222,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 1165 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40610,7 +42243,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -40620,25 +42253,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1166 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40651,25 +42284,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1166 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40685,25 +42318,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1167 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40723,7 +42356,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1168 this -1709572287 +36202360 1 this.current 2 @@ -40736,25 +42369,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1167 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -40763,7 +42396,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1709572287 +36202360 1 return.current 2 @@ -40773,7 +42406,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1169 this -1709572287 +36202360 1 this.current 2 @@ -40783,7 +42416,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1169 this -1709572287 +36202360 1 this.current 2 @@ -40796,7 +42429,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1170 this -1709572287 +36202360 1 this.current 2 @@ -40806,7 +42439,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1171 this -1709572287 +36202360 1 this.current 2 @@ -40816,7 +42449,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1171 this -1709572287 +36202360 1 this.current 2 @@ -40829,13 +42462,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1170 this -1709572287 +36202360 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -40845,7 +42478,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1172 this -1709572287 +36202360 1 this.current 2 @@ -40855,7 +42488,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1173 this -1709572287 +36202360 1 this.current 2 @@ -40865,7 +42498,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1173 this -1709572287 +36202360 1 this.current 2 @@ -40878,7 +42511,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1172 this -1709572287 +36202360 1 this.current 12 @@ -40888,7 +42521,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1174 this -1709572287 +36202360 1 this.current 12 @@ -40898,7 +42531,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1174 this -1709572287 +36202360 1 this.current 12 @@ -40911,7 +42544,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1175 this -1709572287 +36202360 1 this.current 12 @@ -40921,7 +42554,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1176 this -1709572287 +36202360 1 this.current 12 @@ -40931,7 +42564,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1176 this -1709572287 +36202360 1 this.current 12 @@ -40944,13 +42577,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1175 this -1709572287 +36202360 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -40960,7 +42593,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1177 this -1709572287 +36202360 1 this.current 12 @@ -40970,7 +42603,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1178 this -1709572287 +36202360 1 this.current 12 @@ -40980,7 +42613,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1178 this -1709572287 +36202360 1 this.current 12 @@ -40993,7 +42626,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1177 this -1709572287 +36202360 1 this.current 13 @@ -41003,7 +42636,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1179 this -1709572287 +36202360 1 this.current 13 @@ -41013,7 +42646,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1179 this -1709572287 +36202360 1 this.current 13 @@ -41026,7 +42659,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1180 this -1709572287 +36202360 1 this.current 13 @@ -41036,7 +42669,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1181 this -1709572287 +36202360 1 this.current 13 @@ -41046,7 +42679,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1181 this -1709572287 +36202360 1 this.current 13 @@ -41059,13 +42692,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1180 this -1709572287 +36202360 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -41075,7 +42708,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1182 this -1709572287 +36202360 1 this.current 13 @@ -41085,7 +42718,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1183 this -1709572287 +36202360 1 this.current 13 @@ -41095,7 +42728,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1183 this -1709572287 +36202360 1 this.current 13 @@ -41108,7 +42741,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1182 this -1709572287 +36202360 1 this.current 14 @@ -41118,7 +42751,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1184 this -1709572287 +36202360 1 this.current 14 @@ -41128,7 +42761,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1184 this -1709572287 +36202360 1 this.current 14 @@ -41141,7 +42774,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1185 this -1709572287 +36202360 1 this.current 14 @@ -41151,7 +42784,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1186 this -1709572287 +36202360 1 this.current 14 @@ -41161,7 +42794,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1186 this -1709572287 +36202360 1 this.current 14 @@ -41174,13 +42807,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1185 this -1709572287 +36202360 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -41190,7 +42823,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1187 this -1709572287 +36202360 1 this.current 14 @@ -41200,7 +42833,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1188 this -1709572287 +36202360 1 this.current 14 @@ -41210,7 +42843,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1188 this -1709572287 +36202360 1 this.current 14 @@ -41223,7 +42856,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1187 this -1709572287 +36202360 1 this.current 15 @@ -41233,7 +42866,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1189 this -1709572287 +36202360 1 this.current 15 @@ -41243,7 +42876,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1189 this -1709572287 +36202360 1 this.current 15 @@ -41256,7 +42889,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1190 this -1709572287 +36202360 1 this.current 15 @@ -41266,7 +42899,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1191 this -1709572287 +36202360 1 this.current 15 @@ -41276,7 +42909,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1191 this -1709572287 +36202360 1 this.current 15 @@ -41289,13 +42922,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1190 this -1709572287 +36202360 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -41305,7 +42938,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1192 this -1709572287 +36202360 1 this.current 15 @@ -41315,7 +42948,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1193 this -1709572287 +36202360 1 this.current 15 @@ -41325,7 +42958,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1193 this -1709572287 +36202360 1 this.current 15 @@ -41338,7 +42971,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1192 this -1709572287 +36202360 1 this.current 16 @@ -41348,7 +42981,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1194 this -1709572287 +36202360 1 this.current 16 @@ -41358,7 +42991,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1194 this -1709572287 +36202360 1 this.current 16 @@ -41371,7 +43004,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1195 this -1709572287 +36202360 1 this.current 16 @@ -41381,7 +43014,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1196 this -1709572287 +36202360 1 this.current 16 @@ -41391,7 +43024,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1196 this -1709572287 +36202360 1 this.current 16 @@ -41404,13 +43037,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1195 this -1709572287 +36202360 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -41420,7 +43053,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1197 this -1709572287 +36202360 1 this.current 16 @@ -41430,7 +43063,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1198 this -1709572287 +36202360 1 this.current 16 @@ -41440,7 +43073,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1198 this -1709572287 +36202360 1 this.current 16 @@ -41453,7 +43086,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1197 this -1709572287 +36202360 1 this.current 0 @@ -41463,7 +43096,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1199 this -1709572287 +36202360 1 this.current 0 @@ -41473,7 +43106,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1199 this -1709572287 +36202360 1 this.current 0 @@ -41486,19 +43119,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 1165 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41507,7 +43140,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -41517,25 +43150,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1200 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41548,25 +43181,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1200 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41582,25 +43215,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1201 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41620,7 +43253,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1202 this -1597714396 +1318822808 1 this.current 2 @@ -41633,25 +43266,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1201 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41660,7 +43293,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1597714396 +1318822808 1 return.current 2 @@ -41670,7 +43303,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1203 this -1597714396 +1318822808 1 this.current 2 @@ -41680,7 +43313,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1203 this -1597714396 +1318822808 1 this.current 2 @@ -41693,7 +43326,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1204 this -1597714396 +1318822808 1 this.current 2 @@ -41703,7 +43336,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1205 this -1597714396 +1318822808 1 this.current 2 @@ -41713,7 +43346,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1205 this -1597714396 +1318822808 1 this.current 2 @@ -41726,13 +43359,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1204 this -1597714396 +1318822808 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -41742,25 +43375,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1206 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41769,7 +43402,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -650331484 +1836797772 1 x.getClass().getName() "java.lang.Integer" @@ -41786,7 +43419,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1207 this -1576972005 +1383547042 1 this.current 0 @@ -41799,25 +43432,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1206 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41826,13 +43459,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -650331484 +1836797772 1 x.getClass().getName() "java.lang.Integer" 1 return -1576972005 +1383547042 1 return.current 0 @@ -41842,7 +43475,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1208 this -1576972005 +1383547042 1 this.current 0 @@ -41852,7 +43485,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1209 this -1576972005 +1383547042 1 this.current 0 @@ -41862,7 +43495,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1209 this -1576972005 +1383547042 1 this.current 0 @@ -41875,7 +43508,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1208 this -1576972005 +1383547042 1 this.current 0 @@ -41891,25 +43524,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1210 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41918,7 +43551,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2072800408 +329645619 1 x.getClass().getName() "java.lang.String" @@ -41935,7 +43568,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1211 this -1076735622 +3213500 1 this.current 16 @@ -41948,25 +43581,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1210 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -41975,13 +43608,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2072800408 +329645619 1 x.getClass().getName() "java.lang.String" 1 return -1076735622 +3213500 1 return.current 16 @@ -41991,7 +43624,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1212 this -1076735622 +3213500 1 this.current 16 @@ -42001,7 +43634,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1213 this -1076735622 +3213500 1 this.current 16 @@ -42011,7 +43644,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1213 this -1076735622 +3213500 1 this.current 16 @@ -42024,13 +43657,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1212 this -1076735622 +3213500 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -42040,7 +43673,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1214 this -1597714396 +1318822808 1 this.current 2 @@ -42050,7 +43683,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1215 this -1597714396 +1318822808 1 this.current 2 @@ -42060,7 +43693,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1215 this -1597714396 +1318822808 1 this.current 2 @@ -42073,7 +43706,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1214 this -1597714396 +1318822808 1 this.current 12 @@ -42083,7 +43716,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1216 this -1597714396 +1318822808 1 this.current 12 @@ -42093,7 +43726,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1216 this -1597714396 +1318822808 1 this.current 12 @@ -42106,7 +43739,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1217 this -1597714396 +1318822808 1 this.current 12 @@ -42116,7 +43749,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1218 this -1597714396 +1318822808 1 this.current 12 @@ -42126,7 +43759,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1218 this -1597714396 +1318822808 1 this.current 12 @@ -42139,13 +43772,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1217 this -1597714396 +1318822808 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -42155,25 +43788,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1219 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42182,7 +43815,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1998389332 +923219673 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42199,7 +43832,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1220 this -285263844 +1604125387 1 this.current 15 @@ -42212,25 +43845,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1219 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42239,13 +43872,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1998389332 +923219673 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -285263844 +1604125387 1 return.current 15 @@ -42255,7 +43888,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1221 this -285263844 +1604125387 1 this.current 15 @@ -42265,7 +43898,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1222 this -285263844 +1604125387 1 this.current 15 @@ -42275,7 +43908,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1222 this -285263844 +1604125387 1 this.current 15 @@ -42288,13 +43921,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1221 this -285263844 +1604125387 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42304,25 +43937,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1223 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42331,7 +43964,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1245926004 +1668627309 1 x.getClass().getName() "java.lang.Double" @@ -42348,7 +43981,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1224 this -165307331 +1795799895 1 this.current 16 @@ -42361,25 +43994,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1223 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42388,13 +44021,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1245926004 +1668627309 1 x.getClass().getName() "java.lang.Double" 1 return -165307331 +1795799895 1 return.current 16 @@ -42404,7 +44037,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1225 this -165307331 +1795799895 1 this.current 16 @@ -42414,7 +44047,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1226 this -165307331 +1795799895 1 this.current 16 @@ -42424,7 +44057,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1226 this -165307331 +1795799895 1 this.current 16 @@ -42437,13 +44070,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1225 this -165307331 +1795799895 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -42453,7 +44086,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1227 this -1597714396 +1318822808 1 this.current 12 @@ -42463,7 +44096,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1228 this -1597714396 +1318822808 1 this.current 12 @@ -42473,7 +44106,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1228 this -1597714396 +1318822808 1 this.current 12 @@ -42486,7 +44119,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1227 this -1597714396 +1318822808 1 this.current 13 @@ -42496,7 +44129,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1229 this -1597714396 +1318822808 1 this.current 13 @@ -42506,7 +44139,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1229 this -1597714396 +1318822808 1 this.current 13 @@ -42519,7 +44152,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1230 this -1597714396 +1318822808 1 this.current 13 @@ -42529,7 +44162,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1231 this -1597714396 +1318822808 1 this.current 13 @@ -42539,7 +44172,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1231 this -1597714396 +1318822808 1 this.current 13 @@ -42552,13 +44185,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1230 this -1597714396 +1318822808 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -42568,25 +44201,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1232 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42595,7 +44228,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1623956546 +1698097425 1 x.getClass().getName() "java.lang.Long" @@ -42612,7 +44245,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1233 this -1467998899 +1376400422 1 this.current 2 @@ -42625,25 +44258,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1232 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42652,13 +44285,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1623956546 +1698097425 1 x.getClass().getName() "java.lang.Long" 1 return -1467998899 +1376400422 1 return.current 2 @@ -42668,7 +44301,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1234 this -1467998899 +1376400422 1 this.current 2 @@ -42678,7 +44311,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1235 this -1467998899 +1376400422 1 this.current 2 @@ -42688,7 +44321,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1235 this -1467998899 +1376400422 1 this.current 2 @@ -42701,13 +44334,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1234 this -1467998899 +1376400422 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -42717,25 +44350,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1236 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42744,7 +44377,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -217875110 +418304857 1 x.getClass().getName() "java.lang.String" @@ -42761,7 +44394,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1237 this -367355635 +1050349584 1 this.current 16 @@ -42774,25 +44407,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1236 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -42801,13 +44434,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -217875110 +418304857 1 x.getClass().getName() "java.lang.String" 1 return -367355635 +1050349584 1 return.current 16 @@ -42817,7 +44450,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1238 this -367355635 +1050349584 1 this.current 16 @@ -42827,7 +44460,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1239 this -367355635 +1050349584 1 this.current 16 @@ -42837,7 +44470,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1239 this -367355635 +1050349584 1 this.current 16 @@ -42850,13 +44483,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1238 this -367355635 +1050349584 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -42866,7 +44499,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1240 this -1597714396 +1318822808 1 this.current 13 @@ -42876,7 +44509,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1241 this -1597714396 +1318822808 1 this.current 13 @@ -42886,7 +44519,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1241 this -1597714396 +1318822808 1 this.current 13 @@ -42899,7 +44532,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1240 this -1597714396 +1318822808 1 this.current 14 @@ -42909,7 +44542,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1242 this -1597714396 +1318822808 1 this.current 14 @@ -42919,7 +44552,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1242 this -1597714396 +1318822808 1 this.current 14 @@ -42932,7 +44565,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1243 this -1597714396 +1318822808 1 this.current 14 @@ -42942,7 +44575,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1244 this -1597714396 +1318822808 1 this.current 14 @@ -42952,7 +44585,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1244 this -1597714396 +1318822808 1 this.current 14 @@ -42965,13 +44598,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1243 this -1597714396 +1318822808 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -42981,25 +44614,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1245 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43008,7 +44641,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -130672320 +1815546035 1 x.getClass().getName() "java.lang.String" @@ -43025,7 +44658,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1246 this -1481395006 +1864350231 1 this.current 0 @@ -43038,25 +44671,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1245 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43065,13 +44698,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -130672320 +1815546035 1 x.getClass().getName() "java.lang.String" 1 return -1481395006 +1864350231 1 return.current 0 @@ -43081,7 +44714,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1247 this -1481395006 +1864350231 1 this.current 0 @@ -43091,7 +44724,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1248 this -1481395006 +1864350231 1 this.current 0 @@ -43101,7 +44734,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1248 this -1481395006 +1864350231 1 this.current 0 @@ -43114,7 +44747,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1247 this -1481395006 +1864350231 1 this.current 0 @@ -43130,25 +44763,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1249 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43157,7 +44790,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -43174,7 +44807,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1250 this -2027946171 +25548982 1 this.current 12 @@ -43187,25 +44820,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1249 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43214,13 +44847,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -2027946171 +25548982 1 return.current 12 @@ -43230,7 +44863,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1251 this -2027946171 +25548982 1 this.current 12 @@ -43240,7 +44873,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1252 this -2027946171 +25548982 1 this.current 12 @@ -43250,7 +44883,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1252 this -2027946171 +25548982 1 this.current 12 @@ -43263,13 +44896,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1251 this -2027946171 +25548982 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -43279,7 +44912,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1253 this -1597714396 +1318822808 1 this.current 14 @@ -43289,7 +44922,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1254 this -1597714396 +1318822808 1 this.current 14 @@ -43299,7 +44932,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1254 this -1597714396 +1318822808 1 this.current 14 @@ -43312,7 +44945,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1253 this -1597714396 +1318822808 1 this.current 15 @@ -43322,7 +44955,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1255 this -1597714396 +1318822808 1 this.current 15 @@ -43332,7 +44965,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1255 this -1597714396 +1318822808 1 this.current 15 @@ -43345,7 +44978,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1256 this -1597714396 +1318822808 1 this.current 15 @@ -43355,7 +44988,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1257 this -1597714396 +1318822808 1 this.current 15 @@ -43365,7 +44998,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1257 this -1597714396 +1318822808 1 this.current 15 @@ -43378,13 +45011,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1256 this -1597714396 +1318822808 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43394,25 +45027,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1258 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43421,7 +45054,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -43438,7 +45071,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1259 this -978334460 +1735934726 1 this.current 14 @@ -43451,25 +45084,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1258 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43478,13 +45111,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -978334460 +1735934726 1 return.current 14 @@ -43494,7 +45127,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1260 this -978334460 +1735934726 1 this.current 14 @@ -43504,7 +45137,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1261 this -978334460 +1735934726 1 this.current 14 @@ -43514,7 +45147,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1261 this -978334460 +1735934726 1 this.current 14 @@ -43527,13 +45160,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1260 this -978334460 +1735934726 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -43543,25 +45176,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1262 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43570,7 +45203,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1732467788 +861842890 1 x.getClass().getName() "java.lang.Object" @@ -43587,7 +45220,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1263 this -2002826890 +553871028 1 this.current 16 @@ -43600,25 +45233,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1262 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43627,13 +45260,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1732467788 +861842890 1 x.getClass().getName() "java.lang.Object" 1 return -2002826890 +553871028 1 return.current 16 @@ -43643,7 +45276,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1264 this -2002826890 +553871028 1 this.current 16 @@ -43653,7 +45286,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1265 this -2002826890 +553871028 1 this.current 16 @@ -43663,7 +45296,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1265 this -2002826890 +553871028 1 this.current 16 @@ -43676,13 +45309,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1264 this -2002826890 +553871028 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -43692,7 +45325,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1266 this -1597714396 +1318822808 1 this.current 15 @@ -43702,7 +45335,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1267 this -1597714396 +1318822808 1 this.current 15 @@ -43712,7 +45345,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1267 this -1597714396 +1318822808 1 this.current 15 @@ -43725,7 +45358,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1266 this -1597714396 +1318822808 1 this.current 16 @@ -43735,7 +45368,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1268 this -1597714396 +1318822808 1 this.current 16 @@ -43745,7 +45378,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1268 this -1597714396 +1318822808 1 this.current 16 @@ -43758,7 +45391,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1269 this -1597714396 +1318822808 1 this.current 16 @@ -43768,7 +45401,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1270 this -1597714396 +1318822808 1 this.current 16 @@ -43778,7 +45411,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1270 this -1597714396 +1318822808 1 this.current 16 @@ -43791,13 +45424,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1269 this -1597714396 +1318822808 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -43807,25 +45440,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1271 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43834,7 +45467,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1852857152 +250370634 1 x.getClass().getName() "java.lang.Integer" @@ -43851,7 +45484,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1272 this -309788517 +724125922 1 this.current 0 @@ -43864,25 +45497,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1271 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43891,13 +45524,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1852857152 +250370634 1 x.getClass().getName() "java.lang.Integer" 1 return -309788517 +724125922 1 return.current 0 @@ -43907,7 +45540,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1273 this -309788517 +724125922 1 this.current 0 @@ -43917,7 +45550,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1274 this -309788517 +724125922 1 this.current 0 @@ -43927,7 +45560,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1274 this -309788517 +724125922 1 this.current 0 @@ -43940,7 +45573,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1273 this -309788517 +724125922 1 this.current 0 @@ -43956,25 +45589,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1275 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -43983,7 +45616,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1115244891 +1843368112 1 x.getClass().getName() "java.lang.String" @@ -44000,7 +45633,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1276 this -683612021 +1465085305 1 this.current 16 @@ -44013,25 +45646,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1275 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44040,13 +45673,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1115244891 +1843368112 1 x.getClass().getName() "java.lang.String" 1 return -683612021 +1465085305 1 return.current 16 @@ -44056,7 +45689,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1277 this -683612021 +1465085305 1 this.current 16 @@ -44066,7 +45699,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1278 this -683612021 +1465085305 1 this.current 16 @@ -44076,7 +45709,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1278 this -683612021 +1465085305 1 this.current 16 @@ -44089,13 +45722,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1277 this -683612021 +1465085305 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -44105,7 +45738,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1279 this -1597714396 +1318822808 1 this.current 16 @@ -44115,7 +45748,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1280 this -1597714396 +1318822808 1 this.current 16 @@ -44125,7 +45758,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1280 this -1597714396 +1318822808 1 this.current 16 @@ -44138,7 +45771,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1279 this -1597714396 +1318822808 1 this.current 0 @@ -44148,7 +45781,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1281 this -1597714396 +1318822808 1 this.current 0 @@ -44158,7 +45791,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1281 this -1597714396 +1318822808 1 this.current 0 @@ -44171,25 +45804,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 1282 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44209,7 +45842,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1283 this -429725497 +989938643 1 this.current 4 @@ -44222,25 +45855,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 1282 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44249,7 +45882,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -429725497 +989938643 1 return.current 4 @@ -44259,7 +45892,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1284 this -429725497 +989938643 1 this.current 4 @@ -44269,7 +45902,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1284 this -429725497 +989938643 1 this.current 4 @@ -44282,7 +45915,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1285 this -429725497 +989938643 1 this.current 4 @@ -44292,7 +45925,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1286 this -429725497 +989938643 1 this.current 4 @@ -44302,7 +45935,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1286 this -429725497 +989938643 1 this.current 4 @@ -44315,7 +45948,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1285 this -429725497 +989938643 1 this.current 4 @@ -44331,25 +45964,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1287 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44358,7 +45991,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -408923218 +1519280649 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44375,7 +46008,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1288 this -824854526 +1262822392 1 this.current 14 @@ -44388,25 +46021,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1287 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44415,13 +46048,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -408923218 +1519280649 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -824854526 +1262822392 1 return.current 14 @@ -44431,7 +46064,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1289 this -824854526 +1262822392 1 this.current 14 @@ -44441,7 +46074,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1290 this -824854526 +1262822392 1 this.current 14 @@ -44451,7 +46084,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1290 this -824854526 +1262822392 1 this.current 14 @@ -44464,13 +46097,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1289 this -824854526 +1262822392 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -44480,7 +46113,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1291 this -429725497 +989938643 1 this.current 4 @@ -44490,7 +46123,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1292 this -429725497 +989938643 1 this.current 4 @@ -44500,7 +46133,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1292 this -429725497 +989938643 1 this.current 4 @@ -44513,7 +46146,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1291 this -429725497 +989938643 1 this.current 2 @@ -44523,7 +46156,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1293 this -429725497 +989938643 1 this.current 2 @@ -44533,7 +46166,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1293 this -429725497 +989938643 1 this.current 2 @@ -44546,7 +46179,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1294 this -429725497 +989938643 1 this.current 2 @@ -44556,7 +46189,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1295 this -429725497 +989938643 1 this.current 2 @@ -44566,7 +46199,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1295 this -429725497 +989938643 1 this.current 2 @@ -44579,13 +46212,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1294 this -429725497 +989938643 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -44595,25 +46228,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1296 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44622,7 +46255,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1323077097 +120694604 1 x.getClass().getName() "java.lang.Double" @@ -44639,7 +46272,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1297 this -1911088241 +916419490 1 this.current 16 @@ -44652,25 +46285,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1296 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44679,13 +46312,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1323077097 +120694604 1 x.getClass().getName() "java.lang.Double" 1 return -1911088241 +916419490 1 return.current 16 @@ -44695,7 +46328,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1298 this -1911088241 +916419490 1 this.current 16 @@ -44705,7 +46338,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1299 this -1911088241 +916419490 1 this.current 16 @@ -44715,7 +46348,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1299 this -1911088241 +916419490 1 this.current 16 @@ -44728,13 +46361,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1298 this -1911088241 +916419490 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -44744,7 +46377,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1300 this -429725497 +989938643 1 this.current 2 @@ -44754,7 +46387,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1301 this -429725497 +989938643 1 this.current 2 @@ -44764,7 +46397,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1301 this -429725497 +989938643 1 this.current 2 @@ -44777,7 +46410,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1300 this -429725497 +989938643 1 this.current 12 @@ -44787,7 +46420,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1302 this -429725497 +989938643 1 this.current 12 @@ -44797,7 +46430,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1302 this -429725497 +989938643 1 this.current 12 @@ -44810,7 +46443,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1303 this -429725497 +989938643 1 this.current 12 @@ -44820,7 +46453,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1304 this -429725497 +989938643 1 this.current 12 @@ -44830,7 +46463,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1304 this -429725497 +989938643 1 this.current 12 @@ -44843,13 +46476,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1303 this -429725497 +989938643 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -44859,25 +46492,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1305 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44886,7 +46519,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1894641955 +522764626 1 x.getClass().getName() "java.lang.Long" @@ -44903,7 +46536,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1306 this -359819969 +2106620844 1 this.current 4 @@ -44916,25 +46549,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1305 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -44943,13 +46576,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1894641955 +522764626 1 x.getClass().getName() "java.lang.Long" 1 return -359819969 +2106620844 1 return.current 4 @@ -44959,7 +46592,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1307 this -359819969 +2106620844 1 this.current 4 @@ -44969,7 +46602,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1308 this -359819969 +2106620844 1 this.current 4 @@ -44979,7 +46612,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1308 this -359819969 +2106620844 1 this.current 4 @@ -44992,7 +46625,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1307 this -359819969 +2106620844 1 this.current 4 @@ -45008,7 +46641,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1309 this -429725497 +989938643 1 this.current 12 @@ -45018,7 +46651,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1310 this -429725497 +989938643 1 this.current 12 @@ -45028,7 +46661,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1310 this -429725497 +989938643 1 this.current 12 @@ -45041,7 +46674,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1309 this -429725497 +989938643 1 this.current 13 @@ -45051,7 +46684,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1311 this -429725497 +989938643 1 this.current 13 @@ -45061,7 +46694,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1311 this -429725497 +989938643 1 this.current 13 @@ -45074,7 +46707,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1312 this -429725497 +989938643 1 this.current 13 @@ -45084,7 +46717,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1313 this -429725497 +989938643 1 this.current 13 @@ -45094,7 +46727,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1313 this -429725497 +989938643 1 this.current 13 @@ -45107,13 +46740,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1312 this -429725497 +989938643 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -45123,25 +46756,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1314 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45150,7 +46783,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -180269031 +2006034581 1 x.getClass().getName() "java.lang.String" @@ -45167,7 +46800,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1315 this -1829661747 +979294118 1 this.current 16 @@ -45180,25 +46813,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1314 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45207,13 +46840,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -180269031 +2006034581 1 x.getClass().getName() "java.lang.String" 1 return -1829661747 +979294118 1 return.current 16 @@ -45223,7 +46856,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1316 this -1829661747 +979294118 1 this.current 16 @@ -45233,7 +46866,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1317 this -1829661747 +979294118 1 this.current 16 @@ -45243,7 +46876,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1317 this -1829661747 +979294118 1 this.current 16 @@ -45256,13 +46889,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1316 this -1829661747 +979294118 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -45272,7 +46905,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1318 this -429725497 +989938643 1 this.current 13 @@ -45282,7 +46915,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1319 this -429725497 +989938643 1 this.current 13 @@ -45292,7 +46925,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1319 this -429725497 +989938643 1 this.current 13 @@ -45305,7 +46938,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1318 this -429725497 +989938643 1 this.current 14 @@ -45315,7 +46948,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1320 this -429725497 +989938643 1 this.current 14 @@ -45325,7 +46958,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1320 this -429725497 +989938643 1 this.current 14 @@ -45338,7 +46971,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1321 this -429725497 +989938643 1 this.current 14 @@ -45348,7 +46981,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1322 this -429725497 +989938643 1 this.current 14 @@ -45358,7 +46991,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1322 this -429725497 +989938643 1 this.current 14 @@ -45371,13 +47004,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1321 this -429725497 +989938643 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -45387,25 +47020,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1323 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45414,7 +47047,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1306640436 +1663411182 1 x.getClass().getName() "java.lang.String" @@ -45431,7 +47064,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1324 this -538033630 +488044861 1 this.current 16 @@ -45444,25 +47077,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1323 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45471,13 +47104,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1306640436 +1663411182 1 x.getClass().getName() "java.lang.String" 1 return -538033630 +488044861 1 return.current 16 @@ -45487,7 +47120,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1325 this -538033630 +488044861 1 this.current 16 @@ -45497,7 +47130,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1326 this -538033630 +488044861 1 this.current 16 @@ -45507,7 +47140,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1326 this -538033630 +488044861 1 this.current 16 @@ -45520,13 +47153,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1325 this -538033630 +488044861 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -45536,7 +47169,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1327 this -429725497 +989938643 1 this.current 14 @@ -45546,7 +47179,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1328 this -429725497 +989938643 1 this.current 14 @@ -45556,7 +47189,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1328 this -429725497 +989938643 1 this.current 14 @@ -45569,7 +47202,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1327 this -429725497 +989938643 1 this.current 15 @@ -45579,7 +47212,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1329 this -429725497 +989938643 1 this.current 15 @@ -45589,7 +47222,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1329 this -429725497 +989938643 1 this.current 15 @@ -45602,7 +47235,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1330 this -429725497 +989938643 1 this.current 15 @@ -45612,7 +47245,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1331 this -429725497 +989938643 1 this.current 15 @@ -45622,7 +47255,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1331 this -429725497 +989938643 1 this.current 15 @@ -45635,13 +47268,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1330 this -429725497 +989938643 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45651,25 +47284,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1332 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45678,7 +47311,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -45695,7 +47328,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1333 this -1825065540 +1740189450 1 this.current 12 @@ -45708,25 +47341,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1332 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45735,13 +47368,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1825065540 +1740189450 1 return.current 12 @@ -45751,7 +47384,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1334 this -1825065540 +1740189450 1 this.current 12 @@ -45761,7 +47394,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1335 this -1825065540 +1740189450 1 this.current 12 @@ -45771,7 +47404,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1335 this -1825065540 +1740189450 1 this.current 12 @@ -45784,13 +47417,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1334 this -1825065540 +1740189450 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -45800,7 +47433,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1336 this -429725497 +989938643 1 this.current 15 @@ -45810,7 +47443,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1337 this -429725497 +989938643 1 this.current 15 @@ -45820,7 +47453,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1337 this -429725497 +989938643 1 this.current 15 @@ -45833,7 +47466,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1336 this -429725497 +989938643 1 this.current 16 @@ -45843,7 +47476,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1338 this -429725497 +989938643 1 this.current 16 @@ -45853,7 +47486,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1338 this -429725497 +989938643 1 this.current 16 @@ -45866,7 +47499,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1339 this -429725497 +989938643 1 this.current 16 @@ -45876,7 +47509,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1340 this -429725497 +989938643 1 this.current 16 @@ -45886,7 +47519,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1340 this -429725497 +989938643 1 this.current 16 @@ -45899,13 +47532,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1339 this -429725497 +989938643 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -45915,25 +47548,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1341 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45942,7 +47575,7 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -45959,7 +47592,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1342 this -1367600679 +731260860 1 this.current 13 @@ -45972,25 +47605,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1341 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -45999,13 +47632,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1367600679 +731260860 1 return.current 13 @@ -46015,7 +47648,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1343 this -1367600679 +731260860 1 this.current 13 @@ -46025,7 +47658,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1344 this -1367600679 +731260860 1 this.current 13 @@ -46035,7 +47668,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1344 this -1367600679 +731260860 1 this.current 13 @@ -46048,13 +47681,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1343 this -1367600679 +731260860 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -46064,7 +47697,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1345 this -429725497 +989938643 1 this.current 16 @@ -46074,7 +47707,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1346 this -429725497 +989938643 1 this.current 16 @@ -46084,7 +47717,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1346 this -429725497 +989938643 1 this.current 16 @@ -46097,7 +47730,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1345 this -429725497 +989938643 1 this.current 0 @@ -46107,7 +47740,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1347 this -429725497 +989938643 1 this.current 0 @@ -46117,7 +47750,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1347 this -429725497 +989938643 1 this.current 0 @@ -46130,7 +47763,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1348 this -1624142202 +1471868639 1 this.current 15 @@ -46140,7 +47773,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1349 this -1624142202 +1471868639 1 this.current 15 @@ -46150,7 +47783,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1349 this -1624142202 +1471868639 1 this.current 15 @@ -46163,7 +47796,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1348 this -1624142202 +1471868639 1 this.current 16 @@ -46173,25 +47806,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1350 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46200,13 +47833,13 @@ DataStructures.CursorList.cursorSpace[..].next [17 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -747138112 +1709366259 1 x.getClass().getName() "java.lang.Object" 1 p -1624142202 +1471868639 1 p.current 16 @@ -46216,19 +47849,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 1351 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46241,19 +47874,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 1351 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46269,25 +47902,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1350 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46296,13 +47929,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -747138112 +1709366259 1 x.getClass().getName() "java.lang.Object" 1 p -1624142202 +1471868639 1 p.current 16 @@ -46312,19 +47945,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 1352 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46333,7 +47966,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -46343,25 +47976,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1353 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46374,25 +48007,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1353 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46408,25 +48041,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1354 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46446,7 +48079,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1355 this -813364375 +1335298403 1 this.current 2 @@ -46459,25 +48092,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1354 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -46486,7 +48119,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -813364375 +1335298403 1 return.current 2 @@ -46496,7 +48129,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1356 this -813364375 +1335298403 1 this.current 2 @@ -46506,7 +48139,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1356 this -813364375 +1335298403 1 this.current 2 @@ -46519,7 +48152,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1357 this -813364375 +1335298403 1 this.current 2 @@ -46529,7 +48162,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1358 this -813364375 +1335298403 1 this.current 2 @@ -46539,7 +48172,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1358 this -813364375 +1335298403 1 this.current 2 @@ -46552,13 +48185,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1357 this -813364375 +1335298403 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -46568,7 +48201,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1359 this -813364375 +1335298403 1 this.current 2 @@ -46578,7 +48211,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1360 this -813364375 +1335298403 1 this.current 2 @@ -46588,7 +48221,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1360 this -813364375 +1335298403 1 this.current 2 @@ -46601,7 +48234,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1359 this -813364375 +1335298403 1 this.current 12 @@ -46611,7 +48244,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1361 this -813364375 +1335298403 1 this.current 12 @@ -46621,7 +48254,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1361 this -813364375 +1335298403 1 this.current 12 @@ -46634,7 +48267,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1362 this -813364375 +1335298403 1 this.current 12 @@ -46644,7 +48277,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1363 this -813364375 +1335298403 1 this.current 12 @@ -46654,7 +48287,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1363 this -813364375 +1335298403 1 this.current 12 @@ -46667,13 +48300,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1362 this -813364375 +1335298403 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -46683,7 +48316,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1364 this -813364375 +1335298403 1 this.current 12 @@ -46693,7 +48326,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1365 this -813364375 +1335298403 1 this.current 12 @@ -46703,7 +48336,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1365 this -813364375 +1335298403 1 this.current 12 @@ -46716,7 +48349,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1364 this -813364375 +1335298403 1 this.current 13 @@ -46726,7 +48359,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1366 this -813364375 +1335298403 1 this.current 13 @@ -46736,7 +48369,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1366 this -813364375 +1335298403 1 this.current 13 @@ -46749,7 +48382,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1367 this -813364375 +1335298403 1 this.current 13 @@ -46759,7 +48392,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1368 this -813364375 +1335298403 1 this.current 13 @@ -46769,7 +48402,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1368 this -813364375 +1335298403 1 this.current 13 @@ -46782,13 +48415,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1367 this -813364375 +1335298403 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -46798,7 +48431,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1369 this -813364375 +1335298403 1 this.current 13 @@ -46808,7 +48441,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1370 this -813364375 +1335298403 1 this.current 13 @@ -46818,7 +48451,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1370 this -813364375 +1335298403 1 this.current 13 @@ -46831,7 +48464,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1369 this -813364375 +1335298403 1 this.current 14 @@ -46841,7 +48474,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1371 this -813364375 +1335298403 1 this.current 14 @@ -46851,7 +48484,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1371 this -813364375 +1335298403 1 this.current 14 @@ -46864,7 +48497,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1372 this -813364375 +1335298403 1 this.current 14 @@ -46874,7 +48507,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1373 this -813364375 +1335298403 1 this.current 14 @@ -46884,7 +48517,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1373 this -813364375 +1335298403 1 this.current 14 @@ -46897,13 +48530,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1372 this -813364375 +1335298403 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -46913,7 +48546,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1374 this -813364375 +1335298403 1 this.current 14 @@ -46923,7 +48556,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1375 this -813364375 +1335298403 1 this.current 14 @@ -46933,7 +48566,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1375 this -813364375 +1335298403 1 this.current 14 @@ -46946,7 +48579,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1374 this -813364375 +1335298403 1 this.current 15 @@ -46956,7 +48589,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1376 this -813364375 +1335298403 1 this.current 15 @@ -46966,7 +48599,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1376 this -813364375 +1335298403 1 this.current 15 @@ -46979,7 +48612,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1377 this -813364375 +1335298403 1 this.current 15 @@ -46989,7 +48622,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1378 this -813364375 +1335298403 1 this.current 15 @@ -46999,7 +48632,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1378 this -813364375 +1335298403 1 this.current 15 @@ -47012,13 +48645,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1377 this -813364375 +1335298403 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47028,7 +48661,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1379 this -813364375 +1335298403 1 this.current 15 @@ -47038,7 +48671,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1380 this -813364375 +1335298403 1 this.current 15 @@ -47048,7 +48681,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1380 this -813364375 +1335298403 1 this.current 15 @@ -47061,7 +48694,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1379 this -813364375 +1335298403 1 this.current 16 @@ -47071,7 +48704,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1381 this -813364375 +1335298403 1 this.current 16 @@ -47081,7 +48714,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1381 this -813364375 +1335298403 1 this.current 16 @@ -47094,7 +48727,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1382 this -813364375 +1335298403 1 this.current 16 @@ -47104,7 +48737,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1383 this -813364375 +1335298403 1 this.current 16 @@ -47114,7 +48747,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1383 this -813364375 +1335298403 1 this.current 16 @@ -47127,13 +48760,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1382 this -813364375 +1335298403 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -47143,7 +48776,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1384 this -813364375 +1335298403 1 this.current 16 @@ -47153,7 +48786,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1385 this -813364375 +1335298403 1 this.current 16 @@ -47163,7 +48796,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1385 this -813364375 +1335298403 1 this.current 16 @@ -47176,7 +48809,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1384 this -813364375 +1335298403 1 this.current 17 @@ -47186,7 +48819,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1386 this -813364375 +1335298403 1 this.current 17 @@ -47196,7 +48829,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1386 this -813364375 +1335298403 1 this.current 17 @@ -47209,7 +48842,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1387 this -813364375 +1335298403 1 this.current 17 @@ -47219,7 +48852,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1388 this -813364375 +1335298403 1 this.current 17 @@ -47229,7 +48862,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1388 this -813364375 +1335298403 1 this.current 17 @@ -47242,13 +48875,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1387 this -813364375 +1335298403 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -47258,7 +48891,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1389 this -813364375 +1335298403 1 this.current 17 @@ -47268,7 +48901,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1390 this -813364375 +1335298403 1 this.current 17 @@ -47278,7 +48911,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1390 this -813364375 +1335298403 1 this.current 17 @@ -47291,7 +48924,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1389 this -813364375 +1335298403 1 this.current 0 @@ -47301,7 +48934,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1391 this -813364375 +1335298403 1 this.current 0 @@ -47311,7 +48944,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1391 this -813364375 +1335298403 1 this.current 0 @@ -47324,19 +48957,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 1352 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47345,7 +48978,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -47355,25 +48988,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1392 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47386,25 +49019,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1392 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47420,25 +49053,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1393 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47458,7 +49091,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1394 this -1481637470 +1643691748 1 this.current 2 @@ -47471,25 +49104,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1393 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47498,7 +49131,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1481637470 +1643691748 1 return.current 2 @@ -47508,7 +49141,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1395 this -1481637470 +1643691748 1 this.current 2 @@ -47518,7 +49151,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1395 this -1481637470 +1643691748 1 this.current 2 @@ -47531,7 +49164,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1396 this -1481637470 +1643691748 1 this.current 2 @@ -47541,7 +49174,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1397 this -1481637470 +1643691748 1 this.current 2 @@ -47551,7 +49184,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1397 this -1481637470 +1643691748 1 this.current 2 @@ -47564,13 +49197,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1396 this -1481637470 +1643691748 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -47580,25 +49213,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1398 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47607,7 +49240,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1808071325 +2068434592 1 x.getClass().getName() "java.lang.Integer" @@ -47624,7 +49257,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1399 this -1361154225 +143110009 1 this.current 0 @@ -47637,25 +49270,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1398 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47664,13 +49297,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1808071325 +2068434592 1 x.getClass().getName() "java.lang.Integer" 1 return -1361154225 +143110009 1 return.current 0 @@ -47680,7 +49313,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1400 this -1361154225 +143110009 1 this.current 0 @@ -47690,7 +49323,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1401 this -1361154225 +143110009 1 this.current 0 @@ -47700,7 +49333,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1401 this -1361154225 +143110009 1 this.current 0 @@ -47713,7 +49346,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1400 this -1361154225 +143110009 1 this.current 0 @@ -47729,25 +49362,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1402 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47756,7 +49389,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1923251731 +2142003995 1 x.getClass().getName() "java.lang.String" @@ -47773,7 +49406,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1403 this -167988273 +1535634836 1 this.current 17 @@ -47786,25 +49419,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1402 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -47813,13 +49446,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1923251731 +2142003995 1 x.getClass().getName() "java.lang.String" 1 return -167988273 +1535634836 1 return.current 17 @@ -47829,7 +49462,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1404 this -167988273 +1535634836 1 this.current 17 @@ -47839,7 +49472,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1405 this -167988273 +1535634836 1 this.current 17 @@ -47849,7 +49482,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1405 this -167988273 +1535634836 1 this.current 17 @@ -47862,13 +49495,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1404 this -167988273 +1535634836 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -47878,7 +49511,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1406 this -1481637470 +1643691748 1 this.current 2 @@ -47888,7 +49521,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1407 this -1481637470 +1643691748 1 this.current 2 @@ -47898,7 +49531,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1407 this -1481637470 +1643691748 1 this.current 2 @@ -47911,7 +49544,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1406 this -1481637470 +1643691748 1 this.current 12 @@ -47921,7 +49554,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1408 this -1481637470 +1643691748 1 this.current 12 @@ -47931,7 +49564,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1408 this -1481637470 +1643691748 1 this.current 12 @@ -47944,7 +49577,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1409 this -1481637470 +1643691748 1 this.current 12 @@ -47954,7 +49587,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1410 this -1481637470 +1643691748 1 this.current 12 @@ -47964,7 +49597,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1410 this -1481637470 +1643691748 1 this.current 12 @@ -47977,13 +49610,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1409 this -1481637470 +1643691748 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -47993,25 +49626,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1411 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48020,7 +49653,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1585392153 +1846412426 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48037,7 +49670,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1412 this -1856307142 +1539805781 1 this.current 15 @@ -48050,25 +49683,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1411 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48077,13 +49710,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1585392153 +1846412426 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1856307142 +1539805781 1 return.current 15 @@ -48093,7 +49726,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1413 this -1856307142 +1539805781 1 this.current 15 @@ -48103,7 +49736,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1414 this -1856307142 +1539805781 1 this.current 15 @@ -48113,7 +49746,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1414 this -1856307142 +1539805781 1 this.current 15 @@ -48126,13 +49759,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1413 this -1856307142 +1539805781 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -48142,25 +49775,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1415 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48169,7 +49802,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -311711978 +1206883981 1 x.getClass().getName() "java.lang.Double" @@ -48186,7 +49819,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1416 this -1230599213 +601893033 1 this.current 17 @@ -48199,25 +49832,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1415 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48226,13 +49859,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -311711978 +1206883981 1 x.getClass().getName() "java.lang.Double" 1 return -1230599213 +601893033 1 return.current 17 @@ -48242,7 +49875,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1417 this -1230599213 +601893033 1 this.current 17 @@ -48252,7 +49885,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1418 this -1230599213 +601893033 1 this.current 17 @@ -48262,7 +49895,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1418 this -1230599213 +601893033 1 this.current 17 @@ -48275,13 +49908,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1417 this -1230599213 +601893033 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -48291,7 +49924,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1419 this -1481637470 +1643691748 1 this.current 12 @@ -48301,7 +49934,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1420 this -1481637470 +1643691748 1 this.current 12 @@ -48311,7 +49944,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1420 this -1481637470 +1643691748 1 this.current 12 @@ -48324,7 +49957,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1419 this -1481637470 +1643691748 1 this.current 13 @@ -48334,7 +49967,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1421 this -1481637470 +1643691748 1 this.current 13 @@ -48344,7 +49977,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1421 this -1481637470 +1643691748 1 this.current 13 @@ -48357,7 +49990,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1422 this -1481637470 +1643691748 1 this.current 13 @@ -48367,7 +50000,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1423 this -1481637470 +1643691748 1 this.current 13 @@ -48377,7 +50010,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1423 this -1481637470 +1643691748 1 this.current 13 @@ -48390,13 +50023,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1422 this -1481637470 +1643691748 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -48406,25 +50039,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1424 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48433,7 +50066,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -265968634 +1037324811 1 x.getClass().getName() "java.lang.Long" @@ -48450,7 +50083,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1425 this -1221362231 +1525037790 1 this.current 2 @@ -48463,25 +50096,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1424 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48490,13 +50123,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -265968634 +1037324811 1 x.getClass().getName() "java.lang.Long" 1 return -1221362231 +1525037790 1 return.current 2 @@ -48506,7 +50139,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1426 this -1221362231 +1525037790 1 this.current 2 @@ -48516,7 +50149,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1427 this -1221362231 +1525037790 1 this.current 2 @@ -48526,7 +50159,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1427 this -1221362231 +1525037790 1 this.current 2 @@ -48539,13 +50172,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1426 this -1221362231 +1525037790 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -48555,25 +50188,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1428 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48582,7 +50215,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1786318391 +1627821297 1 x.getClass().getName() "java.lang.String" @@ -48599,7 +50232,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1429 this -831812477 +1132547352 1 this.current 17 @@ -48612,25 +50245,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1428 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48639,13 +50272,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1786318391 +1627821297 1 x.getClass().getName() "java.lang.String" 1 return -831812477 +1132547352 1 return.current 17 @@ -48655,7 +50288,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1430 this -831812477 +1132547352 1 this.current 17 @@ -48665,7 +50298,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1431 this -831812477 +1132547352 1 this.current 17 @@ -48675,7 +50308,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1431 this -831812477 +1132547352 1 this.current 17 @@ -48688,13 +50321,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1430 this -831812477 +1132547352 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -48704,7 +50337,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1432 this -1481637470 +1643691748 1 this.current 13 @@ -48714,7 +50347,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1433 this -1481637470 +1643691748 1 this.current 13 @@ -48724,7 +50357,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1433 this -1481637470 +1643691748 1 this.current 13 @@ -48737,7 +50370,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1432 this -1481637470 +1643691748 1 this.current 14 @@ -48747,7 +50380,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1434 this -1481637470 +1643691748 1 this.current 14 @@ -48757,7 +50390,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1434 this -1481637470 +1643691748 1 this.current 14 @@ -48770,7 +50403,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1435 this -1481637470 +1643691748 1 this.current 14 @@ -48780,7 +50413,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1436 this -1481637470 +1643691748 1 this.current 14 @@ -48790,7 +50423,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1436 this -1481637470 +1643691748 1 this.current 14 @@ -48803,13 +50436,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1435 this -1481637470 +1643691748 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -48819,25 +50452,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1437 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48846,7 +50479,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153758969 +1549409129 1 x.getClass().getName() "java.lang.String" @@ -48863,7 +50496,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1438 this -804164642 +922872566 1 this.current 0 @@ -48876,25 +50509,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1437 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48903,13 +50536,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153758969 +1549409129 1 x.getClass().getName() "java.lang.String" 1 return -804164642 +922872566 1 return.current 0 @@ -48919,7 +50552,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1439 this -804164642 +922872566 1 this.current 0 @@ -48929,7 +50562,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1440 this -804164642 +922872566 1 this.current 0 @@ -48939,7 +50572,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1440 this -804164642 +922872566 1 this.current 0 @@ -48952,7 +50585,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1439 this -804164642 +922872566 1 this.current 0 @@ -48968,25 +50601,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1441 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -48995,7 +50628,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -49012,7 +50645,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1442 this -1480547523 +1651855867 1 this.current 12 @@ -49025,25 +50658,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1441 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49052,13 +50685,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1480547523 +1651855867 1 return.current 12 @@ -49068,7 +50701,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1443 this -1480547523 +1651855867 1 this.current 12 @@ -49078,7 +50711,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1444 this -1480547523 +1651855867 1 this.current 12 @@ -49088,7 +50721,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1444 this -1480547523 +1651855867 1 this.current 12 @@ -49101,13 +50734,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1443 this -1480547523 +1651855867 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -49117,7 +50750,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1445 this -1481637470 +1643691748 1 this.current 14 @@ -49127,7 +50760,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1446 this -1481637470 +1643691748 1 this.current 14 @@ -49137,7 +50770,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1446 this -1481637470 +1643691748 1 this.current 14 @@ -49150,7 +50783,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1445 this -1481637470 +1643691748 1 this.current 15 @@ -49160,7 +50793,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1447 this -1481637470 +1643691748 1 this.current 15 @@ -49170,7 +50803,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1447 this -1481637470 +1643691748 1 this.current 15 @@ -49183,7 +50816,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1448 this -1481637470 +1643691748 1 this.current 15 @@ -49193,7 +50826,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1449 this -1481637470 +1643691748 1 this.current 15 @@ -49203,7 +50836,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1449 this -1481637470 +1643691748 1 this.current 15 @@ -49216,13 +50849,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1448 this -1481637470 +1643691748 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49232,25 +50865,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1450 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49259,7 +50892,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -49276,7 +50909,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1451 this -669201272 +727001376 1 this.current 14 @@ -49289,25 +50922,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1450 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49316,13 +50949,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -669201272 +727001376 1 return.current 14 @@ -49332,7 +50965,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1452 this -669201272 +727001376 1 this.current 14 @@ -49342,7 +50975,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1453 this -669201272 +727001376 1 this.current 14 @@ -49352,7 +50985,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1453 this -669201272 +727001376 1 this.current 14 @@ -49365,13 +50998,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1452 this -669201272 +727001376 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -49381,25 +51014,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1454 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49408,7 +51041,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -893919165 +660143728 1 x.getClass().getName() "java.lang.Object" @@ -49425,7 +51058,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1455 this -303811743 +523691575 1 this.current 17 @@ -49438,25 +51071,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1454 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49465,13 +51098,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -893919165 +660143728 1 x.getClass().getName() "java.lang.Object" 1 return -303811743 +523691575 1 return.current 17 @@ -49481,7 +51114,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1456 this -303811743 +523691575 1 this.current 17 @@ -49491,7 +51124,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1457 this -303811743 +523691575 1 this.current 17 @@ -49501,7 +51134,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1457 this -303811743 +523691575 1 this.current 17 @@ -49514,13 +51147,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1456 this -303811743 +523691575 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -49530,7 +51163,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1458 this -1481637470 +1643691748 1 this.current 15 @@ -49540,7 +51173,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1459 this -1481637470 +1643691748 1 this.current 15 @@ -49550,7 +51183,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1459 this -1481637470 +1643691748 1 this.current 15 @@ -49563,7 +51196,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1458 this -1481637470 +1643691748 1 this.current 16 @@ -49573,7 +51206,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1460 this -1481637470 +1643691748 1 this.current 16 @@ -49583,7 +51216,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1460 this -1481637470 +1643691748 1 this.current 16 @@ -49596,7 +51229,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1461 this -1481637470 +1643691748 1 this.current 16 @@ -49606,7 +51239,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1462 this -1481637470 +1643691748 1 this.current 16 @@ -49616,7 +51249,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1462 this -1481637470 +1643691748 1 this.current 16 @@ -49629,13 +51262,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1461 this -1481637470 +1643691748 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -49645,25 +51278,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1463 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49672,7 +51305,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1595335682 +1468303011 1 x.getClass().getName() "java.lang.Integer" @@ -49689,7 +51322,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1464 this -1473474579 +1427810650 1 this.current 0 @@ -49702,25 +51335,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1463 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49729,13 +51362,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1595335682 +1468303011 1 x.getClass().getName() "java.lang.Integer" 1 return -1473474579 +1427810650 1 return.current 0 @@ -49745,7 +51378,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1465 this -1473474579 +1427810650 1 this.current 0 @@ -49755,7 +51388,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1466 this -1473474579 +1427810650 1 this.current 0 @@ -49765,7 +51398,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1466 this -1473474579 +1427810650 1 this.current 0 @@ -49778,7 +51411,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1465 this -1473474579 +1427810650 1 this.current 0 @@ -49794,25 +51427,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1467 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49821,7 +51454,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2053315696 +902919927 1 x.getClass().getName() "java.lang.String" @@ -49838,7 +51471,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1468 this -14695382 +503195940 1 this.current 17 @@ -49851,25 +51484,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1467 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -49878,13 +51511,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2053315696 +902919927 1 x.getClass().getName() "java.lang.String" 1 return -14695382 +503195940 1 return.current 17 @@ -49894,7 +51527,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1469 this -14695382 +503195940 1 this.current 17 @@ -49904,7 +51537,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1470 this -14695382 +503195940 1 this.current 17 @@ -49914,7 +51547,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1470 this -14695382 +503195940 1 this.current 17 @@ -49927,13 +51560,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1469 this -14695382 +503195940 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -49943,7 +51576,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1471 this -1481637470 +1643691748 1 this.current 16 @@ -49953,7 +51586,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1472 this -1481637470 +1643691748 1 this.current 16 @@ -49963,7 +51596,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1472 this -1481637470 +1643691748 1 this.current 16 @@ -49976,7 +51609,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1471 this -1481637470 +1643691748 1 this.current 17 @@ -49986,7 +51619,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1473 this -1481637470 +1643691748 1 this.current 17 @@ -49996,7 +51629,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1473 this -1481637470 +1643691748 1 this.current 17 @@ -50009,7 +51642,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1474 this -1481637470 +1643691748 1 this.current 17 @@ -50019,7 +51652,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1475 this -1481637470 +1643691748 1 this.current 17 @@ -50029,7 +51662,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1475 this -1481637470 +1643691748 1 this.current 17 @@ -50042,13 +51675,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1474 this -1481637470 +1643691748 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -50058,25 +51691,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1476 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50085,7 +51718,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -24665869 +1857815974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50102,7 +51735,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1477 this -94916412 +1852584274 1 this.current 15 @@ -50115,25 +51748,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1476 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50142,13 +51775,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -24665869 +1857815974 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -94916412 +1852584274 1 return.current 15 @@ -50158,7 +51791,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1478 this -94916412 +1852584274 1 this.current 15 @@ -50168,7 +51801,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1479 this -94916412 +1852584274 1 this.current 15 @@ -50178,7 +51811,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1479 this -94916412 +1852584274 1 this.current 15 @@ -50191,13 +51824,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1478 this -94916412 +1852584274 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50207,25 +51840,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1480 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50234,7 +51867,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1827270410 +1354011814 1 x.getClass().getName() "java.lang.Double" @@ -50251,7 +51884,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1481 this -1917628770 +1022308509 1 this.current 17 @@ -50264,25 +51897,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1480 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50291,13 +51924,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1827270410 +1354011814 1 x.getClass().getName() "java.lang.Double" 1 return -1917628770 +1022308509 1 return.current 17 @@ -50307,7 +51940,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1482 this -1917628770 +1022308509 1 this.current 17 @@ -50317,7 +51950,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1483 this -1917628770 +1022308509 1 this.current 17 @@ -50327,7 +51960,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1483 this -1917628770 +1022308509 1 this.current 17 @@ -50340,13 +51973,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1482 this -1917628770 +1022308509 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -50356,7 +51989,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1484 this -1481637470 +1643691748 1 this.current 17 @@ -50366,7 +51999,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1485 this -1481637470 +1643691748 1 this.current 17 @@ -50376,7 +52009,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1485 this -1481637470 +1643691748 1 this.current 17 @@ -50389,7 +52022,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1484 this -1481637470 +1643691748 1 this.current 0 @@ -50399,7 +52032,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1486 this -1481637470 +1643691748 1 this.current 0 @@ -50409,7 +52042,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1486 this -1481637470 +1643691748 1 this.current 0 @@ -50422,25 +52055,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 1487 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50460,7 +52093,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1488 this -152163214 +846238611 1 this.current 4 @@ -50473,25 +52106,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 1487 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50500,7 +52133,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -152163214 +846238611 1 return.current 4 @@ -50510,7 +52143,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1489 this -152163214 +846238611 1 this.current 4 @@ -50520,7 +52153,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1489 this -152163214 +846238611 1 this.current 4 @@ -50533,7 +52166,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1490 this -152163214 +846238611 1 this.current 4 @@ -50543,7 +52176,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1491 this -152163214 +846238611 1 this.current 4 @@ -50553,7 +52186,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1491 this -152163214 +846238611 1 this.current 4 @@ -50566,7 +52199,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1490 this -152163214 +846238611 1 this.current 4 @@ -50582,25 +52215,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1492 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50609,7 +52242,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1901597768 +1033490990 1 x.getClass().getName() "java.lang.Long" @@ -50626,7 +52259,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1493 this -1302052122 +1241276575 1 this.current 4 @@ -50639,25 +52272,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1492 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50666,13 +52299,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1901597768 +1033490990 1 x.getClass().getName() "java.lang.Long" 1 return -1302052122 +1241276575 1 return.current 4 @@ -50682,7 +52315,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1494 this -1302052122 +1241276575 1 this.current 4 @@ -50692,7 +52325,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1495 this -1302052122 +1241276575 1 this.current 4 @@ -50702,7 +52335,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1495 this -1302052122 +1241276575 1 this.current 4 @@ -50715,7 +52348,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1494 this -1302052122 +1241276575 1 this.current 4 @@ -50731,7 +52364,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1496 this -152163214 +846238611 1 this.current 4 @@ -50741,7 +52374,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1497 this -152163214 +846238611 1 this.current 4 @@ -50751,7 +52384,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1497 this -152163214 +846238611 1 this.current 4 @@ -50764,7 +52397,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1496 this -152163214 +846238611 1 this.current 2 @@ -50774,7 +52407,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1498 this -152163214 +846238611 1 this.current 2 @@ -50784,7 +52417,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1498 this -152163214 +846238611 1 this.current 2 @@ -50797,7 +52430,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1499 this -152163214 +846238611 1 this.current 2 @@ -50807,7 +52440,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1500 this -152163214 +846238611 1 this.current 2 @@ -50817,7 +52450,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1500 this -152163214 +846238611 1 this.current 2 @@ -50830,13 +52463,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1499 this -152163214 +846238611 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -50846,25 +52479,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1501 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50873,7 +52506,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -731651524 +215145189 1 x.getClass().getName() "java.lang.String" @@ -50890,7 +52523,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1502 this -375801146 +982007015 1 this.current 17 @@ -50903,25 +52536,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1501 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -50930,13 +52563,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -731651524 +215145189 1 x.getClass().getName() "java.lang.String" 1 return -375801146 +982007015 1 return.current 17 @@ -50946,7 +52579,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1503 this -375801146 +982007015 1 this.current 17 @@ -50956,7 +52589,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1504 this -375801146 +982007015 1 this.current 17 @@ -50966,7 +52599,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1504 this -375801146 +982007015 1 this.current 17 @@ -50979,13 +52612,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1503 this -375801146 +982007015 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -50995,7 +52628,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1505 this -152163214 +846238611 1 this.current 2 @@ -51005,7 +52638,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1506 this -152163214 +846238611 1 this.current 2 @@ -51015,7 +52648,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1506 this -152163214 +846238611 1 this.current 2 @@ -51028,7 +52661,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1505 this -152163214 +846238611 1 this.current 12 @@ -51038,7 +52671,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1507 this -152163214 +846238611 1 this.current 12 @@ -51048,7 +52681,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1507 this -152163214 +846238611 1 this.current 12 @@ -51061,7 +52694,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1508 this -152163214 +846238611 1 this.current 12 @@ -51071,7 +52704,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1509 this -152163214 +846238611 1 this.current 12 @@ -51081,7 +52714,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1509 this -152163214 +846238611 1 this.current 12 @@ -51094,13 +52727,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1508 this -152163214 +846238611 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -51110,25 +52743,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1510 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51137,7 +52770,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -340454995 +1232306490 1 x.getClass().getName() "java.lang.String" @@ -51154,7 +52787,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1511 this -1130665357 +1663166483 1 this.current 17 @@ -51167,25 +52800,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1510 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51194,13 +52827,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -340454995 +1232306490 1 x.getClass().getName() "java.lang.String" 1 return -1130665357 +1663166483 1 return.current 17 @@ -51210,7 +52843,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1512 this -1130665357 +1663166483 1 this.current 17 @@ -51220,7 +52853,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1513 this -1130665357 +1663166483 1 this.current 17 @@ -51230,7 +52863,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1513 this -1130665357 +1663166483 1 this.current 17 @@ -51243,13 +52876,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1512 this -1130665357 +1663166483 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -51259,7 +52892,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1514 this -152163214 +846238611 1 this.current 12 @@ -51269,7 +52902,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1515 this -152163214 +846238611 1 this.current 12 @@ -51279,7 +52912,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1515 this -152163214 +846238611 1 this.current 12 @@ -51292,7 +52925,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1514 this -152163214 +846238611 1 this.current 13 @@ -51302,7 +52935,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1516 this -152163214 +846238611 1 this.current 13 @@ -51312,7 +52945,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1516 this -152163214 +846238611 1 this.current 13 @@ -51325,7 +52958,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1517 this -152163214 +846238611 1 this.current 13 @@ -51335,7 +52968,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1518 this -152163214 +846238611 1 this.current 13 @@ -51345,7 +52978,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1518 this -152163214 +846238611 1 this.current 13 @@ -51358,13 +52991,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1517 this -152163214 +846238611 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -51374,25 +53007,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1519 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51401,7 +53034,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -51418,7 +53051,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1520 this -9862796 +2042495840 1 this.current 12 @@ -51431,25 +53064,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1519 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51458,13 +53091,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -9862796 +2042495840 1 return.current 12 @@ -51474,7 +53107,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1521 this -9862796 +2042495840 1 this.current 12 @@ -51484,7 +53117,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1522 this -9862796 +2042495840 1 this.current 12 @@ -51494,7 +53127,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1522 this -9862796 +2042495840 1 this.current 12 @@ -51507,13 +53140,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1521 this -9862796 +2042495840 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -51523,7 +53156,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1523 this -152163214 +846238611 1 this.current 13 @@ -51533,7 +53166,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1524 this -152163214 +846238611 1 this.current 13 @@ -51543,7 +53176,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1524 this -152163214 +846238611 1 this.current 13 @@ -51556,7 +53189,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1523 this -152163214 +846238611 1 this.current 14 @@ -51566,7 +53199,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1525 this -152163214 +846238611 1 this.current 14 @@ -51576,7 +53209,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1525 this -152163214 +846238611 1 this.current 14 @@ -51589,7 +53222,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1526 this -152163214 +846238611 1 this.current 14 @@ -51599,7 +53232,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1527 this -152163214 +846238611 1 this.current 14 @@ -51609,7 +53242,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1527 this -152163214 +846238611 1 this.current 14 @@ -51622,13 +53255,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1526 this -152163214 +846238611 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -51638,25 +53271,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1528 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51665,7 +53298,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -51682,7 +53315,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1529 this -407771553 +36333492 1 this.current 13 @@ -51695,25 +53328,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1528 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51722,13 +53355,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -407771553 +36333492 1 return.current 13 @@ -51738,7 +53371,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1530 this -407771553 +36333492 1 this.current 13 @@ -51748,7 +53381,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1531 this -407771553 +36333492 1 this.current 13 @@ -51758,7 +53391,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1531 this -407771553 +36333492 1 this.current 13 @@ -51771,13 +53404,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1530 this -407771553 +36333492 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -51787,7 +53420,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1532 this -152163214 +846238611 1 this.current 14 @@ -51797,7 +53430,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1533 this -152163214 +846238611 1 this.current 14 @@ -51807,7 +53440,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1533 this -152163214 +846238611 1 this.current 14 @@ -51820,7 +53453,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1532 this -152163214 +846238611 1 this.current 15 @@ -51830,7 +53463,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1534 this -152163214 +846238611 1 this.current 15 @@ -51840,7 +53473,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1534 this -152163214 +846238611 1 this.current 15 @@ -51853,7 +53486,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1535 this -152163214 +846238611 1 this.current 15 @@ -51863,7 +53496,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1536 this -152163214 +846238611 1 this.current 15 @@ -51873,7 +53506,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1536 this -152163214 +846238611 1 this.current 15 @@ -51886,13 +53519,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1535 this -152163214 +846238611 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51902,25 +53535,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1537 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51929,7 +53562,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -796173694 +1468357786 1 x.getClass().getName() "java.lang.Object" @@ -51946,7 +53579,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1538 this -320670601 +990398217 1 this.current 17 @@ -51959,25 +53592,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1537 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -51986,13 +53619,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -796173694 +1468357786 1 x.getClass().getName() "java.lang.Object" 1 return -320670601 +990398217 1 return.current 17 @@ -52002,7 +53635,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1539 this -320670601 +990398217 1 this.current 17 @@ -52012,7 +53645,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1540 this -320670601 +990398217 1 this.current 17 @@ -52022,7 +53655,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1540 this -320670601 +990398217 1 this.current 17 @@ -52035,13 +53668,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1539 this -320670601 +990398217 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -52051,7 +53684,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1541 this -152163214 +846238611 1 this.current 15 @@ -52061,7 +53694,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1542 this -152163214 +846238611 1 this.current 15 @@ -52071,7 +53704,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1542 this -152163214 +846238611 1 this.current 15 @@ -52084,7 +53717,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1541 this -152163214 +846238611 1 this.current 16 @@ -52094,7 +53727,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1543 this -152163214 +846238611 1 this.current 16 @@ -52104,7 +53737,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1543 this -152163214 +846238611 1 this.current 16 @@ -52117,7 +53750,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1544 this -152163214 +846238611 1 this.current 16 @@ -52127,7 +53760,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1545 this -152163214 +846238611 1 this.current 16 @@ -52137,7 +53770,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1545 this -152163214 +846238611 1 this.current 16 @@ -52150,13 +53783,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1544 this -152163214 +846238611 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -52166,25 +53799,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1546 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52193,7 +53826,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1474320684 +841283083 1 x.getClass().getName() "java.lang.Integer" @@ -52210,7 +53843,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1547 this -1241416902 +1675763772 1 this.current 17 @@ -52223,25 +53856,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1546 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52250,13 +53883,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1474320684 +841283083 1 x.getClass().getName() "java.lang.Integer" 1 return -1241416902 +1675763772 1 return.current 17 @@ -52266,7 +53899,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1548 this -1241416902 +1675763772 1 this.current 17 @@ -52276,7 +53909,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1549 this -1241416902 +1675763772 1 this.current 17 @@ -52286,7 +53919,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1549 this -1241416902 +1675763772 1 this.current 17 @@ -52299,13 +53932,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1548 this -1241416902 +1675763772 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -52315,7 +53948,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1550 this -152163214 +846238611 1 this.current 16 @@ -52325,7 +53958,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1551 this -152163214 +846238611 1 this.current 16 @@ -52335,7 +53968,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1551 this -152163214 +846238611 1 this.current 16 @@ -52348,7 +53981,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1550 this -152163214 +846238611 1 this.current 17 @@ -52358,7 +53991,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1552 this -152163214 +846238611 1 this.current 17 @@ -52368,7 +54001,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1552 this -152163214 +846238611 1 this.current 17 @@ -52381,7 +54014,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1553 this -152163214 +846238611 1 this.current 17 @@ -52391,7 +54024,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1554 this -152163214 +846238611 1 this.current 17 @@ -52401,7 +54034,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1554 this -152163214 +846238611 1 this.current 17 @@ -52414,13 +54047,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1553 this -152163214 +846238611 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -52430,25 +54063,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1555 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52457,7 +54090,7 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1690241309 +520016214 1 x.getClass().getName() "java.lang.String" @@ -52474,7 +54107,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1556 this -971997847 +1731722639 1 this.current 17 @@ -52487,25 +54120,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1555 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52514,13 +54147,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1690241309 +520016214 1 x.getClass().getName() "java.lang.String" 1 return -971997847 +1731722639 1 return.current 17 @@ -52530,7 +54163,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1557 this -971997847 +1731722639 1 this.current 17 @@ -52540,7 +54173,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1558 this -971997847 +1731722639 1 this.current 17 @@ -52550,7 +54183,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1558 this -971997847 +1731722639 1 this.current 17 @@ -52563,13 +54196,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1557 this -971997847 +1731722639 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -52579,7 +54212,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1559 this -152163214 +846238611 1 this.current 17 @@ -52589,7 +54222,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1560 this -152163214 +846238611 1 this.current 17 @@ -52599,7 +54232,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1560 this -152163214 +846238611 1 this.current 17 @@ -52612,7 +54245,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1559 this -152163214 +846238611 1 this.current 0 @@ -52622,7 +54255,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1561 this -152163214 +846238611 1 this.current 0 @@ -52632,7 +54265,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1561 this -152163214 +846238611 1 this.current 0 @@ -52645,7 +54278,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1562 this -1624142202 +1471868639 1 this.current 16 @@ -52655,7 +54288,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1563 this -1624142202 +1471868639 1 this.current 16 @@ -52665,7 +54298,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1563 this -1624142202 +1471868639 1 this.current 16 @@ -52678,7 +54311,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1562 this -1624142202 +1471868639 1 this.current 17 @@ -52688,25 +54321,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1564 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52715,13 +54348,13 @@ DataStructures.CursorList.cursorSpace[..].next [18 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 0 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -459711800 +1924582348 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1624142202 +1471868639 1 p.current 17 @@ -52731,19 +54364,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 1565 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52756,19 +54389,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 1565 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52784,25 +54417,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1564 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52811,13 +54444,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -459711800 +1924582348 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -1624142202 +1471868639 1 p.current 17 @@ -52827,19 +54460,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 1566 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52848,7 +54481,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -52858,25 +54491,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1567 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52889,25 +54522,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1567 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52923,25 +54556,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1568 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -52961,7 +54594,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1569 this -1877544341 +11003494 1 this.current 2 @@ -52974,25 +54607,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1568 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -53001,7 +54634,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1877544341 +11003494 1 return.current 2 @@ -53011,7 +54644,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1570 this -1877544341 +11003494 1 this.current 2 @@ -53021,7 +54654,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1570 this -1877544341 +11003494 1 this.current 2 @@ -53034,7 +54667,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1571 this -1877544341 +11003494 1 this.current 2 @@ -53044,7 +54677,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1572 this -1877544341 +11003494 1 this.current 2 @@ -53054,7 +54687,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1572 this -1877544341 +11003494 1 this.current 2 @@ -53067,13 +54700,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1571 this -1877544341 +11003494 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -53083,7 +54716,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1573 this -1877544341 +11003494 1 this.current 2 @@ -53093,7 +54726,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1574 this -1877544341 +11003494 1 this.current 2 @@ -53103,7 +54736,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1574 this -1877544341 +11003494 1 this.current 2 @@ -53116,7 +54749,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1573 this -1877544341 +11003494 1 this.current 12 @@ -53126,7 +54759,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1575 this -1877544341 +11003494 1 this.current 12 @@ -53136,7 +54769,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1575 this -1877544341 +11003494 1 this.current 12 @@ -53149,7 +54782,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1576 this -1877544341 +11003494 1 this.current 12 @@ -53159,7 +54792,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1577 this -1877544341 +11003494 1 this.current 12 @@ -53169,7 +54802,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1577 this -1877544341 +11003494 1 this.current 12 @@ -53182,13 +54815,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1576 this -1877544341 +11003494 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -53198,7 +54831,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1578 this -1877544341 +11003494 1 this.current 12 @@ -53208,7 +54841,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1579 this -1877544341 +11003494 1 this.current 12 @@ -53218,7 +54851,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1579 this -1877544341 +11003494 1 this.current 12 @@ -53231,7 +54864,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1578 this -1877544341 +11003494 1 this.current 13 @@ -53241,7 +54874,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1580 this -1877544341 +11003494 1 this.current 13 @@ -53251,7 +54884,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1580 this -1877544341 +11003494 1 this.current 13 @@ -53264,7 +54897,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1581 this -1877544341 +11003494 1 this.current 13 @@ -53274,7 +54907,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1582 this -1877544341 +11003494 1 this.current 13 @@ -53284,7 +54917,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1582 this -1877544341 +11003494 1 this.current 13 @@ -53297,13 +54930,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1581 this -1877544341 +11003494 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -53313,7 +54946,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1583 this -1877544341 +11003494 1 this.current 13 @@ -53323,7 +54956,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1584 this -1877544341 +11003494 1 this.current 13 @@ -53333,7 +54966,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1584 this -1877544341 +11003494 1 this.current 13 @@ -53346,7 +54979,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1583 this -1877544341 +11003494 1 this.current 14 @@ -53356,7 +54989,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1585 this -1877544341 +11003494 1 this.current 14 @@ -53366,7 +54999,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1585 this -1877544341 +11003494 1 this.current 14 @@ -53379,7 +55012,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1586 this -1877544341 +11003494 1 this.current 14 @@ -53389,7 +55022,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1587 this -1877544341 +11003494 1 this.current 14 @@ -53399,7 +55032,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1587 this -1877544341 +11003494 1 this.current 14 @@ -53412,13 +55045,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1586 this -1877544341 +11003494 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -53428,7 +55061,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1588 this -1877544341 +11003494 1 this.current 14 @@ -53438,7 +55071,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1589 this -1877544341 +11003494 1 this.current 14 @@ -53448,7 +55081,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1589 this -1877544341 +11003494 1 this.current 14 @@ -53461,7 +55094,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1588 this -1877544341 +11003494 1 this.current 15 @@ -53471,7 +55104,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1590 this -1877544341 +11003494 1 this.current 15 @@ -53481,7 +55114,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1590 this -1877544341 +11003494 1 this.current 15 @@ -53494,7 +55127,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1591 this -1877544341 +11003494 1 this.current 15 @@ -53504,7 +55137,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1592 this -1877544341 +11003494 1 this.current 15 @@ -53514,7 +55147,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1592 this -1877544341 +11003494 1 this.current 15 @@ -53527,13 +55160,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1591 this -1877544341 +11003494 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53543,7 +55176,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1593 this -1877544341 +11003494 1 this.current 15 @@ -53553,7 +55186,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1594 this -1877544341 +11003494 1 this.current 15 @@ -53563,7 +55196,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1594 this -1877544341 +11003494 1 this.current 15 @@ -53576,7 +55209,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1593 this -1877544341 +11003494 1 this.current 16 @@ -53586,7 +55219,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1595 this -1877544341 +11003494 1 this.current 16 @@ -53596,7 +55229,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1595 this -1877544341 +11003494 1 this.current 16 @@ -53609,7 +55242,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1596 this -1877544341 +11003494 1 this.current 16 @@ -53619,7 +55252,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1597 this -1877544341 +11003494 1 this.current 16 @@ -53629,7 +55262,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1597 this -1877544341 +11003494 1 this.current 16 @@ -53642,13 +55275,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1596 this -1877544341 +11003494 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -53658,7 +55291,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1598 this -1877544341 +11003494 1 this.current 16 @@ -53668,7 +55301,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1599 this -1877544341 +11003494 1 this.current 16 @@ -53678,7 +55311,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1599 this -1877544341 +11003494 1 this.current 16 @@ -53691,7 +55324,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1598 this -1877544341 +11003494 1 this.current 17 @@ -53701,7 +55334,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1600 this -1877544341 +11003494 1 this.current 17 @@ -53711,7 +55344,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1600 this -1877544341 +11003494 1 this.current 17 @@ -53724,7 +55357,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1601 this -1877544341 +11003494 1 this.current 17 @@ -53734,7 +55367,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1602 this -1877544341 +11003494 1 this.current 17 @@ -53744,7 +55377,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1602 this -1877544341 +11003494 1 this.current 17 @@ -53757,13 +55390,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1601 this -1877544341 +11003494 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -53773,7 +55406,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1603 this -1877544341 +11003494 1 this.current 17 @@ -53783,7 +55416,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1604 this -1877544341 +11003494 1 this.current 17 @@ -53793,7 +55426,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1604 this -1877544341 +11003494 1 this.current 17 @@ -53806,7 +55439,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1603 this -1877544341 +11003494 1 this.current 18 @@ -53816,7 +55449,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1605 this -1877544341 +11003494 1 this.current 18 @@ -53826,7 +55459,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1605 this -1877544341 +11003494 1 this.current 18 @@ -53839,7 +55472,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1606 this -1877544341 +11003494 1 this.current 18 @@ -53849,7 +55482,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1607 this -1877544341 +11003494 1 this.current 18 @@ -53859,7 +55492,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1607 this -1877544341 +11003494 1 this.current 18 @@ -53872,13 +55505,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1606 this -1877544341 +11003494 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53888,7 +55521,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1608 this -1877544341 +11003494 1 this.current 18 @@ -53898,7 +55531,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1609 this -1877544341 +11003494 1 this.current 18 @@ -53908,7 +55541,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1609 this -1877544341 +11003494 1 this.current 18 @@ -53921,7 +55554,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1608 this -1877544341 +11003494 1 this.current 0 @@ -53931,7 +55564,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1610 this -1877544341 +11003494 1 this.current 0 @@ -53941,7 +55574,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1610 this -1877544341 +11003494 1 this.current 0 @@ -53954,19 +55587,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 1566 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -53975,7 +55608,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -53985,25 +55618,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1611 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54016,25 +55649,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1611 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54050,25 +55683,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1612 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54088,7 +55721,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1613 this -763030169 +1757143877 1 this.current 2 @@ -54101,25 +55734,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1612 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54128,7 +55761,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -763030169 +1757143877 1 return.current 2 @@ -54138,7 +55771,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1614 this -763030169 +1757143877 1 this.current 2 @@ -54148,7 +55781,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1614 this -763030169 +1757143877 1 this.current 2 @@ -54161,7 +55794,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1615 this -763030169 +1757143877 1 this.current 2 @@ -54171,7 +55804,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1616 this -763030169 +1757143877 1 this.current 2 @@ -54181,7 +55814,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1616 this -763030169 +1757143877 1 this.current 2 @@ -54194,13 +55827,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1615 this -763030169 +1757143877 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -54210,25 +55843,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1617 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54237,7 +55870,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1623194146 +817406040 1 x.getClass().getName() "java.lang.Double" @@ -54254,7 +55887,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1618 this -1539243981 +1955915048 1 this.current 0 @@ -54267,25 +55900,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1617 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54294,13 +55927,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1623194146 +817406040 1 x.getClass().getName() "java.lang.Double" 1 return -1539243981 +1955915048 1 return.current 0 @@ -54310,7 +55943,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1619 this -1539243981 +1955915048 1 this.current 0 @@ -54320,7 +55953,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1620 this -1539243981 +1955915048 1 this.current 0 @@ -54330,7 +55963,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1620 this -1539243981 +1955915048 1 this.current 0 @@ -54343,7 +55976,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1619 this -1539243981 +1955915048 1 this.current 0 @@ -54359,25 +55992,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1621 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54386,7 +56019,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1485576905 +1270855946 1 x.getClass().getName() "java.lang.Long" @@ -54403,7 +56036,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1622 this -1446162313 +2083117811 1 this.current 4 @@ -54416,25 +56049,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1621 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54443,13 +56076,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1485576905 +1270855946 1 x.getClass().getName() "java.lang.Long" 1 return -1446162313 +2083117811 1 return.current 4 @@ -54459,7 +56092,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1623 this -1446162313 +2083117811 1 this.current 4 @@ -54469,7 +56102,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1624 this -1446162313 +2083117811 1 this.current 4 @@ -54479,7 +56112,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1624 this -1446162313 +2083117811 1 this.current 4 @@ -54492,7 +56125,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1623 this -1446162313 +2083117811 1 this.current 4 @@ -54508,7 +56141,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1625 this -763030169 +1757143877 1 this.current 2 @@ -54518,7 +56151,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1626 this -763030169 +1757143877 1 this.current 2 @@ -54528,7 +56161,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1626 this -763030169 +1757143877 1 this.current 2 @@ -54541,7 +56174,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1625 this -763030169 +1757143877 1 this.current 12 @@ -54551,7 +56184,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1627 this -763030169 +1757143877 1 this.current 12 @@ -54561,7 +56194,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1627 this -763030169 +1757143877 1 this.current 12 @@ -54574,7 +56207,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1628 this -763030169 +1757143877 1 this.current 12 @@ -54584,7 +56217,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1629 this -763030169 +1757143877 1 this.current 12 @@ -54594,7 +56227,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1629 this -763030169 +1757143877 1 this.current 12 @@ -54607,13 +56240,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1628 this -763030169 +1757143877 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -54623,25 +56256,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1630 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54650,7 +56283,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -430077845 +157683534 1 x.getClass().getName() "java.lang.String" @@ -54667,7 +56300,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1631 this -2035868760 +1518864111 1 this.current 0 @@ -54680,25 +56313,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1630 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54707,13 +56340,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -430077845 +157683534 1 x.getClass().getName() "java.lang.String" 1 return -2035868760 +1518864111 1 return.current 0 @@ -54723,7 +56356,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1632 this -2035868760 +1518864111 1 this.current 0 @@ -54733,7 +56366,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1633 this -2035868760 +1518864111 1 this.current 0 @@ -54743,7 +56376,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1633 this -2035868760 +1518864111 1 this.current 0 @@ -54756,7 +56389,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1632 this -2035868760 +1518864111 1 this.current 0 @@ -54772,25 +56405,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1634 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54799,7 +56432,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -989301669 +1816757085 1 x.getClass().getName() "java.lang.String" @@ -54816,7 +56449,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1635 this -1374755809 +1585787493 1 this.current 18 @@ -54829,25 +56462,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1634 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -54856,13 +56489,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -989301669 +1816757085 1 x.getClass().getName() "java.lang.String" 1 return -1374755809 +1585787493 1 return.current 18 @@ -54872,7 +56505,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1636 this -1374755809 +1585787493 1 this.current 18 @@ -54882,7 +56515,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1637 this -1374755809 +1585787493 1 this.current 18 @@ -54892,7 +56525,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1637 this -1374755809 +1585787493 1 this.current 18 @@ -54905,13 +56538,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1636 this -1374755809 +1585787493 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54921,7 +56554,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1638 this -763030169 +1757143877 1 this.current 12 @@ -54931,7 +56564,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1639 this -763030169 +1757143877 1 this.current 12 @@ -54941,7 +56574,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1639 this -763030169 +1757143877 1 this.current 12 @@ -54954,7 +56587,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1638 this -763030169 +1757143877 1 this.current 13 @@ -54964,7 +56597,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1640 this -763030169 +1757143877 1 this.current 13 @@ -54974,7 +56607,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1640 this -763030169 +1757143877 1 this.current 13 @@ -54987,7 +56620,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1641 this -763030169 +1757143877 1 this.current 13 @@ -54997,7 +56630,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1642 this -763030169 +1757143877 1 this.current 13 @@ -55007,7 +56640,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1642 this -763030169 +1757143877 1 this.current 13 @@ -55020,13 +56653,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1641 this -763030169 +1757143877 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -55036,25 +56669,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1643 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55063,7 +56696,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -55080,7 +56713,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1644 this -744323790 +1730173572 1 this.current 13 @@ -55093,25 +56726,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1643 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55120,13 +56753,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -744323790 +1730173572 1 return.current 13 @@ -55136,7 +56769,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1645 this -744323790 +1730173572 1 this.current 13 @@ -55146,7 +56779,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1646 this -744323790 +1730173572 1 this.current 13 @@ -55156,7 +56789,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1646 this -744323790 +1730173572 1 this.current 13 @@ -55169,13 +56802,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1645 this -744323790 +1730173572 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -55185,25 +56818,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1647 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55212,7 +56845,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -55229,7 +56862,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1648 this -757694755 +2097514481 1 this.current 13 @@ -55242,25 +56875,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1647 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55269,13 +56902,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -757694755 +2097514481 1 return.current 13 @@ -55285,7 +56918,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1649 this -757694755 +2097514481 1 this.current 13 @@ -55295,7 +56928,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1650 this -757694755 +2097514481 1 this.current 13 @@ -55305,7 +56938,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1650 this -757694755 +2097514481 1 this.current 13 @@ -55318,13 +56951,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1649 this -757694755 +2097514481 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -55334,7 +56967,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1651 this -763030169 +1757143877 1 this.current 13 @@ -55344,7 +56977,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1652 this -763030169 +1757143877 1 this.current 13 @@ -55354,7 +56987,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1652 this -763030169 +1757143877 1 this.current 13 @@ -55367,7 +57000,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1651 this -763030169 +1757143877 1 this.current 14 @@ -55377,7 +57010,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1653 this -763030169 +1757143877 1 this.current 14 @@ -55387,7 +57020,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1653 this -763030169 +1757143877 1 this.current 14 @@ -55400,7 +57033,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1654 this -763030169 +1757143877 1 this.current 14 @@ -55410,7 +57043,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1655 this -763030169 +1757143877 1 this.current 14 @@ -55420,7 +57053,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1655 this -763030169 +1757143877 1 this.current 14 @@ -55433,13 +57066,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1654 this -763030169 +1757143877 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -55449,25 +57082,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1656 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55476,7 +57109,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2145204222 +1568059495 1 x.getClass().getName() "java.lang.Object" @@ -55493,7 +57126,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1657 this -344409671 +706197430 1 this.current 0 @@ -55506,25 +57139,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1656 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55533,13 +57166,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2145204222 +1568059495 1 x.getClass().getName() "java.lang.Object" 1 return -344409671 +706197430 1 return.current 0 @@ -55549,7 +57182,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1658 this -344409671 +706197430 1 this.current 0 @@ -55559,7 +57192,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1659 this -344409671 +706197430 1 this.current 0 @@ -55569,7 +57202,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1659 this -344409671 +706197430 1 this.current 0 @@ -55582,7 +57215,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1658 this -344409671 +706197430 1 this.current 0 @@ -55598,25 +57231,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1660 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55625,7 +57258,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1024911832 +1325808650 1 x.getClass().getName() "java.lang.Integer" @@ -55642,7 +57275,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1661 this -726827837 +510464020 1 this.current 18 @@ -55655,25 +57288,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1660 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55682,13 +57315,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1024911832 +1325808650 1 x.getClass().getName() "java.lang.Integer" 1 return -726827837 +510464020 1 return.current 18 @@ -55698,7 +57331,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1662 this -726827837 +510464020 1 this.current 18 @@ -55708,7 +57341,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1663 this -726827837 +510464020 1 this.current 18 @@ -55718,7 +57351,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1663 this -726827837 +510464020 1 this.current 18 @@ -55731,13 +57364,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1662 this -726827837 +510464020 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55747,7 +57380,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1664 this -763030169 +1757143877 1 this.current 14 @@ -55757,7 +57390,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1665 this -763030169 +1757143877 1 this.current 14 @@ -55767,7 +57400,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1665 this -763030169 +1757143877 1 this.current 14 @@ -55780,7 +57413,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1664 this -763030169 +1757143877 1 this.current 15 @@ -55790,7 +57423,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1666 this -763030169 +1757143877 1 this.current 15 @@ -55800,7 +57433,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1666 this -763030169 +1757143877 1 this.current 15 @@ -55813,7 +57446,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1667 this -763030169 +1757143877 1 this.current 15 @@ -55823,7 +57456,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1668 this -763030169 +1757143877 1 this.current 15 @@ -55833,7 +57466,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1668 this -763030169 +1757143877 1 this.current 15 @@ -55846,13 +57479,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1667 this -763030169 +1757143877 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55862,25 +57495,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1669 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55889,7 +57522,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -908472323 +1987083830 1 x.getClass().getName() "java.lang.String" @@ -55906,7 +57539,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1670 this -85602491 +1632492873 1 this.current 0 @@ -55919,25 +57552,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1669 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -55946,13 +57579,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -908472323 +1987083830 1 x.getClass().getName() "java.lang.String" 1 return -85602491 +1632492873 1 return.current 0 @@ -55962,7 +57595,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1671 this -85602491 +1632492873 1 this.current 0 @@ -55972,7 +57605,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1672 this -85602491 +1632492873 1 this.current 0 @@ -55982,7 +57615,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1672 this -85602491 +1632492873 1 this.current 0 @@ -55995,7 +57628,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1671 this -85602491 +1632492873 1 this.current 0 @@ -56011,25 +57644,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1673 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56038,7 +57671,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2054506394 +525683462 1 x.getClass().getName() "DataStructures.MyInteger" @@ -56055,7 +57688,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1674 this -699403845 +1766724936 1 this.current 14 @@ -56068,25 +57701,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1673 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56095,13 +57728,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2054506394 +525683462 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -699403845 +1766724936 1 return.current 14 @@ -56111,7 +57744,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1675 this -699403845 +1766724936 1 this.current 14 @@ -56121,7 +57754,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1676 this -699403845 +1766724936 1 this.current 14 @@ -56131,7 +57764,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1676 this -699403845 +1766724936 1 this.current 14 @@ -56144,13 +57777,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1675 this -699403845 +1766724936 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -56160,7 +57793,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1677 this -763030169 +1757143877 1 this.current 15 @@ -56170,7 +57803,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1678 this -763030169 +1757143877 1 this.current 15 @@ -56180,7 +57813,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1678 this -763030169 +1757143877 1 this.current 15 @@ -56193,7 +57826,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1677 this -763030169 +1757143877 1 this.current 16 @@ -56203,7 +57836,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1679 this -763030169 +1757143877 1 this.current 16 @@ -56213,7 +57846,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1679 this -763030169 +1757143877 1 this.current 16 @@ -56226,7 +57859,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1680 this -763030169 +1757143877 1 this.current 16 @@ -56236,7 +57869,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1681 this -763030169 +1757143877 1 this.current 16 @@ -56246,7 +57879,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1681 this -763030169 +1757143877 1 this.current 16 @@ -56259,13 +57892,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1680 this -763030169 +1757143877 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -56275,25 +57908,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1682 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56302,7 +57935,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1702422884 +473581465 1 x.getClass().getName() "java.lang.Double" @@ -56319,7 +57952,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1683 this -1696782407 +319977154 1 this.current 0 @@ -56332,25 +57965,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1682 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56359,13 +57992,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1702422884 +473581465 1 x.getClass().getName() "java.lang.Double" 1 return -1696782407 +319977154 1 return.current 0 @@ -56375,7 +58008,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1684 this -1696782407 +319977154 1 this.current 0 @@ -56385,7 +58018,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1685 this -1696782407 +319977154 1 this.current 0 @@ -56395,7 +58028,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1685 this -1696782407 +319977154 1 this.current 0 @@ -56408,7 +58041,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1684 this -1696782407 +319977154 1 this.current 0 @@ -56424,25 +58057,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1686 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56451,7 +58084,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1386565936 +648680157 1 x.getClass().getName() "java.lang.Long" @@ -56468,7 +58101,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1687 this -1668632755 +1071097621 1 this.current 4 @@ -56481,25 +58114,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1686 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56508,13 +58141,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1386565936 +648680157 1 x.getClass().getName() "java.lang.Long" 1 return -1668632755 +1071097621 1 return.current 4 @@ -56524,7 +58157,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1688 this -1668632755 +1071097621 1 this.current 4 @@ -56534,7 +58167,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1689 this -1668632755 +1071097621 1 this.current 4 @@ -56544,7 +58177,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1689 this -1668632755 +1071097621 1 this.current 4 @@ -56557,7 +58190,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1688 this -1668632755 +1071097621 1 this.current 4 @@ -56573,7 +58206,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1690 this -763030169 +1757143877 1 this.current 16 @@ -56583,7 +58216,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1691 this -763030169 +1757143877 1 this.current 16 @@ -56593,7 +58226,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1691 this -763030169 +1757143877 1 this.current 16 @@ -56606,7 +58239,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1690 this -763030169 +1757143877 1 this.current 17 @@ -56616,7 +58249,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1692 this -763030169 +1757143877 1 this.current 17 @@ -56626,7 +58259,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1692 this -763030169 +1757143877 1 this.current 17 @@ -56639,7 +58272,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1693 this -763030169 +1757143877 1 this.current 17 @@ -56649,7 +58282,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1694 this -763030169 +1757143877 1 this.current 17 @@ -56659,7 +58292,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1694 this -763030169 +1757143877 1 this.current 17 @@ -56672,13 +58305,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1693 this -763030169 +1757143877 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -56688,25 +58321,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1695 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56715,7 +58348,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -721767112 +1897871865 1 x.getClass().getName() "java.lang.String" @@ -56732,7 +58365,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1696 this -1752213128 +1908143486 1 this.current 0 @@ -56745,25 +58378,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1695 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56772,13 +58405,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -721767112 +1897871865 1 x.getClass().getName() "java.lang.String" 1 return -1752213128 +1908143486 1 return.current 0 @@ -56788,7 +58421,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1697 this -1752213128 +1908143486 1 this.current 0 @@ -56798,7 +58431,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1698 this -1752213128 +1908143486 1 this.current 0 @@ -56808,7 +58441,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1698 this -1752213128 +1908143486 1 this.current 0 @@ -56821,7 +58454,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1697 this -1752213128 +1908143486 1 this.current 0 @@ -56837,25 +58470,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1699 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56864,7 +58497,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1002790985 +133250414 1 x.getClass().getName() "java.lang.String" @@ -56881,7 +58514,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1700 this -456423239 +85777802 1 this.current 18 @@ -56894,25 +58527,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1699 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -56921,13 +58554,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1002790985 +133250414 1 x.getClass().getName() "java.lang.String" 1 return -456423239 +85777802 1 return.current 18 @@ -56937,7 +58570,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1701 this -456423239 +85777802 1 this.current 18 @@ -56947,7 +58580,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1702 this -456423239 +85777802 1 this.current 18 @@ -56957,7 +58590,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1702 this -456423239 +85777802 1 this.current 18 @@ -56970,13 +58603,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1701 this -456423239 +85777802 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56986,7 +58619,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1703 this -763030169 +1757143877 1 this.current 17 @@ -56996,7 +58629,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1704 this -763030169 +1757143877 1 this.current 17 @@ -57006,7 +58639,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1704 this -763030169 +1757143877 1 this.current 17 @@ -57019,7 +58652,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1703 this -763030169 +1757143877 1 this.current 18 @@ -57029,7 +58662,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1705 this -763030169 +1757143877 1 this.current 18 @@ -57039,7 +58672,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1705 this -763030169 +1757143877 1 this.current 18 @@ -57052,7 +58685,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1706 this -763030169 +1757143877 1 this.current 18 @@ -57062,7 +58695,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1707 this -763030169 +1757143877 1 this.current 18 @@ -57072,7 +58705,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1707 this -763030169 +1757143877 1 this.current 18 @@ -57085,13 +58718,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1706 this -763030169 +1757143877 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57101,25 +58734,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1708 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57128,7 +58761,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -57145,7 +58778,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1709 this -293790789 +222624801 1 this.current 13 @@ -57158,25 +58791,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1708 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57185,13 +58818,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -293790789 +222624801 1 return.current 13 @@ -57201,7 +58834,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1710 this -293790789 +222624801 1 this.current 13 @@ -57211,7 +58844,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1711 this -293790789 +222624801 1 this.current 13 @@ -57221,7 +58854,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1711 this -293790789 +222624801 1 this.current 13 @@ -57234,13 +58867,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1710 this -293790789 +222624801 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -57250,25 +58883,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1712 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57277,7 +58910,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -57294,7 +58927,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1713 this -676886270 +603650290 1 this.current 13 @@ -57307,25 +58940,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1712 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57334,13 +58967,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -676886270 +603650290 1 return.current 13 @@ -57350,7 +58983,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1714 this -676886270 +603650290 1 this.current 13 @@ -57360,7 +58993,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1715 this -676886270 +603650290 1 this.current 13 @@ -57370,7 +59003,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1715 this -676886270 +603650290 1 this.current 13 @@ -57383,13 +59016,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1714 this -676886270 +603650290 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -57399,7 +59032,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1716 this -763030169 +1757143877 1 this.current 18 @@ -57409,7 +59042,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1717 this -763030169 +1757143877 1 this.current 18 @@ -57419,7 +59052,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1717 this -763030169 +1757143877 1 this.current 18 @@ -57432,7 +59065,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1716 this -763030169 +1757143877 1 this.current 0 @@ -57442,7 +59075,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1718 this -763030169 +1757143877 1 this.current 0 @@ -57452,7 +59085,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1718 this -763030169 +1757143877 1 this.current 0 @@ -57465,25 +59098,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 1719 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57503,7 +59136,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1720 this -1206661731 +762227630 1 this.current 4 @@ -57516,25 +59149,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 1719 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57543,7 +59176,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1206661731 +762227630 1 return.current 4 @@ -57553,7 +59186,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1721 this -1206661731 +762227630 1 this.current 4 @@ -57563,7 +59196,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1721 this -1206661731 +762227630 1 this.current 4 @@ -57576,7 +59209,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1722 this -1206661731 +762227630 1 this.current 4 @@ -57586,7 +59219,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1723 this -1206661731 +762227630 1 this.current 4 @@ -57596,7 +59229,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1723 this -1206661731 +762227630 1 this.current 4 @@ -57609,7 +59242,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1722 this -1206661731 +762227630 1 this.current 4 @@ -57625,25 +59258,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1724 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57652,7 +59285,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1675634296 +1316864772 1 x.getClass().getName() "java.lang.Object" @@ -57669,7 +59302,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1725 this -285066114 +1685232414 1 this.current 18 @@ -57682,25 +59315,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1724 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57709,13 +59342,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1675634296 +1316864772 1 x.getClass().getName() "java.lang.Object" 1 return -285066114 +1685232414 1 return.current 18 @@ -57725,7 +59358,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1726 this -285066114 +1685232414 1 this.current 18 @@ -57735,7 +59368,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1727 this -285066114 +1685232414 1 this.current 18 @@ -57745,7 +59378,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1727 this -285066114 +1685232414 1 this.current 18 @@ -57758,13 +59391,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1726 this -285066114 +1685232414 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57774,7 +59407,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1728 this -1206661731 +762227630 1 this.current 4 @@ -57784,7 +59417,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1729 this -1206661731 +762227630 1 this.current 4 @@ -57794,7 +59427,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1729 this -1206661731 +762227630 1 this.current 4 @@ -57807,7 +59440,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1728 this -1206661731 +762227630 1 this.current 2 @@ -57817,7 +59450,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1730 this -1206661731 +762227630 1 this.current 2 @@ -57827,7 +59460,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1730 this -1206661731 +762227630 1 this.current 2 @@ -57840,7 +59473,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1731 this -1206661731 +762227630 1 this.current 2 @@ -57850,7 +59483,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1732 this -1206661731 +762227630 1 this.current 2 @@ -57860,7 +59493,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1732 this -1206661731 +762227630 1 this.current 2 @@ -57873,13 +59506,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1731 this -1206661731 +762227630 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -57889,25 +59522,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1733 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57916,7 +59549,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -70161541 +280744458 1 x.getClass().getName() "java.lang.Integer" @@ -57933,7 +59566,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1734 this -236497384 +1213216872 1 this.current 18 @@ -57946,25 +59579,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1733 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -57973,13 +59606,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -70161541 +280744458 1 x.getClass().getName() "java.lang.Integer" 1 return -236497384 +1213216872 1 return.current 18 @@ -57989,7 +59622,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1735 this -236497384 +1213216872 1 this.current 18 @@ -57999,7 +59632,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1736 this -236497384 +1213216872 1 this.current 18 @@ -58009,7 +59642,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1736 this -236497384 +1213216872 1 this.current 18 @@ -58022,13 +59655,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1735 this -236497384 +1213216872 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58038,7 +59671,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1737 this -1206661731 +762227630 1 this.current 2 @@ -58048,7 +59681,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1738 this -1206661731 +762227630 1 this.current 2 @@ -58058,7 +59691,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1738 this -1206661731 +762227630 1 this.current 2 @@ -58071,7 +59704,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1737 this -1206661731 +762227630 1 this.current 12 @@ -58081,7 +59714,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1739 this -1206661731 +762227630 1 this.current 12 @@ -58091,7 +59724,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1739 this -1206661731 +762227630 1 this.current 12 @@ -58104,7 +59737,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1740 this -1206661731 +762227630 1 this.current 12 @@ -58114,7 +59747,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1741 this -1206661731 +762227630 1 this.current 12 @@ -58124,7 +59757,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1741 this -1206661731 +762227630 1 this.current 12 @@ -58137,13 +59770,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1740 this -1206661731 +762227630 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -58153,25 +59786,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1742 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58180,7 +59813,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1966785938 +1754638213 1 x.getClass().getName() "java.lang.String" @@ -58197,7 +59830,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1743 this -1702965342 +407858146 1 this.current 18 @@ -58210,25 +59843,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1742 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58237,13 +59870,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1966785938 +1754638213 1 x.getClass().getName() "java.lang.String" 1 return -1702965342 +407858146 1 return.current 18 @@ -58253,7 +59886,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1744 this -1702965342 +407858146 1 this.current 18 @@ -58263,7 +59896,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1745 this -1702965342 +407858146 1 this.current 18 @@ -58273,7 +59906,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1745 this -1702965342 +407858146 1 this.current 18 @@ -58286,13 +59919,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1744 this -1702965342 +407858146 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58302,7 +59935,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1746 this -1206661731 +762227630 1 this.current 12 @@ -58312,7 +59945,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1747 this -1206661731 +762227630 1 this.current 12 @@ -58322,7 +59955,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1747 this -1206661731 +762227630 1 this.current 12 @@ -58335,7 +59968,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1746 this -1206661731 +762227630 1 this.current 13 @@ -58345,7 +59978,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1748 this -1206661731 +762227630 1 this.current 13 @@ -58355,7 +59988,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1748 this -1206661731 +762227630 1 this.current 13 @@ -58368,7 +60001,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1749 this -1206661731 +762227630 1 this.current 13 @@ -58378,7 +60011,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1750 this -1206661731 +762227630 1 this.current 13 @@ -58388,7 +60021,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1750 this -1206661731 +762227630 1 this.current 13 @@ -58401,13 +60034,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1749 this -1206661731 +762227630 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -58417,25 +60050,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1751 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58444,7 +60077,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -76455778 +1454031203 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58461,7 +60094,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1752 this -797039940 +527446182 1 this.current 14 @@ -58474,25 +60107,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1751 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58501,13 +60134,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -76455778 +1454031203 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -797039940 +527446182 1 return.current 14 @@ -58517,7 +60150,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1753 this -797039940 +527446182 1 this.current 14 @@ -58527,7 +60160,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1754 this -797039940 +527446182 1 this.current 14 @@ -58537,7 +60170,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1754 this -797039940 +527446182 1 this.current 14 @@ -58550,13 +60183,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1753 this -797039940 +527446182 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -58566,7 +60199,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1755 this -1206661731 +762227630 1 this.current 13 @@ -58576,7 +60209,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1756 this -1206661731 +762227630 1 this.current 13 @@ -58586,7 +60219,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1756 this -1206661731 +762227630 1 this.current 13 @@ -58599,7 +60232,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1755 this -1206661731 +762227630 1 this.current 14 @@ -58609,7 +60242,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1757 this -1206661731 +762227630 1 this.current 14 @@ -58619,7 +60252,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1757 this -1206661731 +762227630 1 this.current 14 @@ -58632,7 +60265,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1758 this -1206661731 +762227630 1 this.current 14 @@ -58642,7 +60275,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1759 this -1206661731 +762227630 1 this.current 14 @@ -58652,7 +60285,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1759 this -1206661731 +762227630 1 this.current 14 @@ -58665,13 +60298,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1758 this -1206661731 +762227630 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -58681,25 +60314,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1760 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58708,7 +60341,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1994765241 +1511785794 1 x.getClass().getName() "java.lang.Double" @@ -58725,7 +60358,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1761 this -1652192170 +963601816 1 this.current 18 @@ -58738,25 +60371,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1760 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58765,13 +60398,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1994765241 +1511785794 1 x.getClass().getName() "java.lang.Double" 1 return -1652192170 +963601816 1 return.current 18 @@ -58781,7 +60414,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1762 this -1652192170 +963601816 1 this.current 18 @@ -58791,7 +60424,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1763 this -1652192170 +963601816 1 this.current 18 @@ -58801,7 +60434,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1763 this -1652192170 +963601816 1 this.current 18 @@ -58814,13 +60447,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1762 this -1652192170 +963601816 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58830,7 +60463,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1764 this -1206661731 +762227630 1 this.current 14 @@ -58840,7 +60473,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1765 this -1206661731 +762227630 1 this.current 14 @@ -58850,7 +60483,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1765 this -1206661731 +762227630 1 this.current 14 @@ -58863,7 +60496,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1764 this -1206661731 +762227630 1 this.current 15 @@ -58873,7 +60506,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1766 this -1206661731 +762227630 1 this.current 15 @@ -58883,7 +60516,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1766 this -1206661731 +762227630 1 this.current 15 @@ -58896,7 +60529,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1767 this -1206661731 +762227630 1 this.current 15 @@ -58906,7 +60539,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1768 this -1206661731 +762227630 1 this.current 15 @@ -58916,7 +60549,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1768 this -1206661731 +762227630 1 this.current 15 @@ -58929,13 +60562,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1767 this -1206661731 +762227630 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58945,25 +60578,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1769 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -58972,7 +60605,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1430245480 +961419791 1 x.getClass().getName() "java.lang.Long" @@ -58989,7 +60622,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1770 this -1351321489 +665188480 1 this.current 4 @@ -59002,25 +60635,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1769 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59029,13 +60662,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1430245480 +961419791 1 x.getClass().getName() "java.lang.Long" 1 return -1351321489 +665188480 1 return.current 4 @@ -59045,7 +60678,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1771 this -1351321489 +665188480 1 this.current 4 @@ -59055,7 +60688,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1772 this -1351321489 +665188480 1 this.current 4 @@ -59065,7 +60698,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1772 this -1351321489 +665188480 1 this.current 4 @@ -59078,7 +60711,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1771 this -1351321489 +665188480 1 this.current 4 @@ -59094,7 +60727,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1773 this -1206661731 +762227630 1 this.current 15 @@ -59104,7 +60737,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1774 this -1206661731 +762227630 1 this.current 15 @@ -59114,7 +60747,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1774 this -1206661731 +762227630 1 this.current 15 @@ -59127,7 +60760,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1773 this -1206661731 +762227630 1 this.current 16 @@ -59137,7 +60770,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1775 this -1206661731 +762227630 1 this.current 16 @@ -59147,7 +60780,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1775 this -1206661731 +762227630 1 this.current 16 @@ -59160,7 +60793,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1776 this -1206661731 +762227630 1 this.current 16 @@ -59170,7 +60803,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1777 this -1206661731 +762227630 1 this.current 16 @@ -59180,7 +60813,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1777 this -1206661731 +762227630 1 this.current 16 @@ -59193,13 +60826,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1776 this -1206661731 +762227630 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -59209,25 +60842,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1778 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59236,7 +60869,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2020698598 +489279267 1 x.getClass().getName() "java.lang.String" @@ -59253,7 +60886,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1779 this -1574942928 +1596467899 1 this.current 18 @@ -59266,25 +60899,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1778 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59293,13 +60926,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2020698598 +489279267 1 x.getClass().getName() "java.lang.String" 1 return -1574942928 +1596467899 1 return.current 18 @@ -59309,7 +60942,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1780 this -1574942928 +1596467899 1 this.current 18 @@ -59319,7 +60952,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1781 this -1574942928 +1596467899 1 this.current 18 @@ -59329,7 +60962,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1781 this -1574942928 +1596467899 1 this.current 18 @@ -59342,13 +60975,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1780 this -1574942928 +1596467899 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59358,7 +60991,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1782 this -1206661731 +762227630 1 this.current 16 @@ -59368,7 +61001,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1783 this -1206661731 +762227630 1 this.current 16 @@ -59378,7 +61011,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1783 this -1206661731 +762227630 1 this.current 16 @@ -59391,7 +61024,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1782 this -1206661731 +762227630 1 this.current 17 @@ -59401,7 +61034,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1784 this -1206661731 +762227630 1 this.current 17 @@ -59411,7 +61044,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1784 this -1206661731 +762227630 1 this.current 17 @@ -59424,7 +61057,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1785 this -1206661731 +762227630 1 this.current 17 @@ -59434,7 +61067,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1786 this -1206661731 +762227630 1 this.current 17 @@ -59444,7 +61077,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1786 this -1206661731 +762227630 1 this.current 17 @@ -59457,13 +61090,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1785 this -1206661731 +762227630 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -59473,25 +61106,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1787 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59500,7 +61133,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -182357974 +377478451 1 x.getClass().getName() "java.lang.String" @@ -59517,7 +61150,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1788 this -431304749 +513169028 1 this.current 18 @@ -59530,25 +61163,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1787 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59557,13 +61190,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -182357974 +377478451 1 x.getClass().getName() "java.lang.String" 1 return -431304749 +513169028 1 return.current 18 @@ -59573,7 +61206,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1789 this -431304749 +513169028 1 this.current 18 @@ -59583,7 +61216,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1790 this -431304749 +513169028 1 this.current 18 @@ -59593,7 +61226,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1790 this -431304749 +513169028 1 this.current 18 @@ -59606,13 +61239,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1789 this -431304749 +513169028 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59622,7 +61255,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1791 this -1206661731 +762227630 1 this.current 17 @@ -59632,7 +61265,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1792 this -1206661731 +762227630 1 this.current 17 @@ -59642,7 +61275,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1792 this -1206661731 +762227630 1 this.current 17 @@ -59655,7 +61288,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1791 this -1206661731 +762227630 1 this.current 18 @@ -59665,7 +61298,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1793 this -1206661731 +762227630 1 this.current 18 @@ -59675,7 +61308,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1793 this -1206661731 +762227630 1 this.current 18 @@ -59688,7 +61321,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1794 this -1206661731 +762227630 1 this.current 18 @@ -59698,7 +61331,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1795 this -1206661731 +762227630 1 this.current 18 @@ -59708,7 +61341,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1795 this -1206661731 +762227630 1 this.current 18 @@ -59721,13 +61354,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1794 this -1206661731 +762227630 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59737,25 +61370,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1796 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59764,7 +61397,7 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -59781,7 +61414,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1797 this -1181607818 +1301664418 1 this.current 12 @@ -59794,25 +61427,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1796 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -59821,13 +61454,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1181607818 +1301664418 1 return.current 12 @@ -59837,7 +61470,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1798 this -1181607818 +1301664418 1 this.current 12 @@ -59847,7 +61480,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1799 this -1181607818 +1301664418 1 this.current 12 @@ -59857,7 +61490,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1799 this -1181607818 +1301664418 1 this.current 12 @@ -59870,13 +61503,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1798 this -1181607818 +1301664418 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -59886,7 +61519,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1800 this -1206661731 +762227630 1 this.current 18 @@ -59896,7 +61529,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1801 this -1206661731 +762227630 1 this.current 18 @@ -59906,7 +61539,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1801 this -1206661731 +762227630 1 this.current 18 @@ -59919,7 +61552,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1800 this -1206661731 +762227630 1 this.current 0 @@ -59929,7 +61562,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1802 this -1206661731 +762227630 1 this.current 0 @@ -59939,7 +61572,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1802 this -1206661731 +762227630 1 this.current 0 @@ -59952,7 +61585,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1803 this -1624142202 +1471868639 1 this.current 17 @@ -59962,7 +61595,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1804 this -1624142202 +1471868639 1 this.current 17 @@ -59972,7 +61605,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1804 this -1624142202 +1471868639 1 this.current 17 @@ -59985,7 +61618,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1803 this -1624142202 +1471868639 1 this.current 18 @@ -59995,25 +61628,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1805 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60022,13 +61655,13 @@ DataStructures.CursorList.cursorSpace[..].next [19 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 0 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 p -1624142202 +1471868639 1 p.current 18 @@ -60038,19 +61671,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 1806 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60063,19 +61696,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 1806 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60091,25 +61724,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 1805 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60118,13 +61751,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 p -1624142202 +1471868639 1 p.current 18 @@ -60134,19 +61767,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 1807 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60155,7 +61788,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -60165,25 +61798,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1808 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60196,25 +61829,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1808 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60230,25 +61863,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1809 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60268,7 +61901,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1810 this -1501313317 +1408652377 1 this.current 2 @@ -60281,25 +61914,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1809 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -60308,7 +61941,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1501313317 +1408652377 1 return.current 2 @@ -60318,7 +61951,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1811 this -1501313317 +1408652377 1 this.current 2 @@ -60328,7 +61961,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1811 this -1501313317 +1408652377 1 this.current 2 @@ -60341,7 +61974,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1812 this -1501313317 +1408652377 1 this.current 2 @@ -60351,7 +61984,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1813 this -1501313317 +1408652377 1 this.current 2 @@ -60361,7 +61994,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1813 this -1501313317 +1408652377 1 this.current 2 @@ -60374,13 +62007,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1812 this -1501313317 +1408652377 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -60390,7 +62023,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1814 this -1501313317 +1408652377 1 this.current 2 @@ -60400,7 +62033,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1815 this -1501313317 +1408652377 1 this.current 2 @@ -60410,7 +62043,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1815 this -1501313317 +1408652377 1 this.current 2 @@ -60423,7 +62056,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1814 this -1501313317 +1408652377 1 this.current 12 @@ -60433,7 +62066,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1816 this -1501313317 +1408652377 1 this.current 12 @@ -60443,7 +62076,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1816 this -1501313317 +1408652377 1 this.current 12 @@ -60456,7 +62089,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1817 this -1501313317 +1408652377 1 this.current 12 @@ -60466,7 +62099,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1818 this -1501313317 +1408652377 1 this.current 12 @@ -60476,7 +62109,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1818 this -1501313317 +1408652377 1 this.current 12 @@ -60489,13 +62122,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1817 this -1501313317 +1408652377 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -60505,7 +62138,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1819 this -1501313317 +1408652377 1 this.current 12 @@ -60515,7 +62148,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1820 this -1501313317 +1408652377 1 this.current 12 @@ -60525,7 +62158,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1820 this -1501313317 +1408652377 1 this.current 12 @@ -60538,7 +62171,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1819 this -1501313317 +1408652377 1 this.current 13 @@ -60548,7 +62181,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1821 this -1501313317 +1408652377 1 this.current 13 @@ -60558,7 +62191,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1821 this -1501313317 +1408652377 1 this.current 13 @@ -60571,7 +62204,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1822 this -1501313317 +1408652377 1 this.current 13 @@ -60581,7 +62214,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1823 this -1501313317 +1408652377 1 this.current 13 @@ -60591,7 +62224,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1823 this -1501313317 +1408652377 1 this.current 13 @@ -60604,13 +62237,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1822 this -1501313317 +1408652377 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -60620,7 +62253,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1824 this -1501313317 +1408652377 1 this.current 13 @@ -60630,7 +62263,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1825 this -1501313317 +1408652377 1 this.current 13 @@ -60640,7 +62273,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1825 this -1501313317 +1408652377 1 this.current 13 @@ -60653,7 +62286,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1824 this -1501313317 +1408652377 1 this.current 14 @@ -60663,7 +62296,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1826 this -1501313317 +1408652377 1 this.current 14 @@ -60673,7 +62306,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1826 this -1501313317 +1408652377 1 this.current 14 @@ -60686,7 +62319,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1827 this -1501313317 +1408652377 1 this.current 14 @@ -60696,7 +62329,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1828 this -1501313317 +1408652377 1 this.current 14 @@ -60706,7 +62339,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1828 this -1501313317 +1408652377 1 this.current 14 @@ -60719,13 +62352,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1827 this -1501313317 +1408652377 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -60735,7 +62368,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1829 this -1501313317 +1408652377 1 this.current 14 @@ -60745,7 +62378,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1830 this -1501313317 +1408652377 1 this.current 14 @@ -60755,7 +62388,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1830 this -1501313317 +1408652377 1 this.current 14 @@ -60768,7 +62401,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1829 this -1501313317 +1408652377 1 this.current 15 @@ -60778,7 +62411,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1831 this -1501313317 +1408652377 1 this.current 15 @@ -60788,7 +62421,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1831 this -1501313317 +1408652377 1 this.current 15 @@ -60801,7 +62434,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1832 this -1501313317 +1408652377 1 this.current 15 @@ -60811,7 +62444,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1833 this -1501313317 +1408652377 1 this.current 15 @@ -60821,7 +62454,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1833 this -1501313317 +1408652377 1 this.current 15 @@ -60834,13 +62467,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1832 this -1501313317 +1408652377 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60850,7 +62483,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1834 this -1501313317 +1408652377 1 this.current 15 @@ -60860,7 +62493,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1835 this -1501313317 +1408652377 1 this.current 15 @@ -60870,7 +62503,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1835 this -1501313317 +1408652377 1 this.current 15 @@ -60883,7 +62516,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1834 this -1501313317 +1408652377 1 this.current 16 @@ -60893,7 +62526,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1836 this -1501313317 +1408652377 1 this.current 16 @@ -60903,7 +62536,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1836 this -1501313317 +1408652377 1 this.current 16 @@ -60916,7 +62549,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1837 this -1501313317 +1408652377 1 this.current 16 @@ -60926,7 +62559,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1838 this -1501313317 +1408652377 1 this.current 16 @@ -60936,7 +62569,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1838 this -1501313317 +1408652377 1 this.current 16 @@ -60949,13 +62582,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1837 this -1501313317 +1408652377 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -60965,7 +62598,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1839 this -1501313317 +1408652377 1 this.current 16 @@ -60975,7 +62608,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1840 this -1501313317 +1408652377 1 this.current 16 @@ -60985,7 +62618,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1840 this -1501313317 +1408652377 1 this.current 16 @@ -60998,7 +62631,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1839 this -1501313317 +1408652377 1 this.current 17 @@ -61008,7 +62641,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1841 this -1501313317 +1408652377 1 this.current 17 @@ -61018,7 +62651,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1841 this -1501313317 +1408652377 1 this.current 17 @@ -61031,7 +62664,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1842 this -1501313317 +1408652377 1 this.current 17 @@ -61041,7 +62674,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1843 this -1501313317 +1408652377 1 this.current 17 @@ -61051,7 +62684,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1843 this -1501313317 +1408652377 1 this.current 17 @@ -61064,13 +62697,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1842 this -1501313317 +1408652377 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -61080,7 +62713,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1844 this -1501313317 +1408652377 1 this.current 17 @@ -61090,7 +62723,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1845 this -1501313317 +1408652377 1 this.current 17 @@ -61100,7 +62733,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1845 this -1501313317 +1408652377 1 this.current 17 @@ -61113,7 +62746,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1844 this -1501313317 +1408652377 1 this.current 18 @@ -61123,7 +62756,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1846 this -1501313317 +1408652377 1 this.current 18 @@ -61133,7 +62766,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1846 this -1501313317 +1408652377 1 this.current 18 @@ -61146,7 +62779,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1847 this -1501313317 +1408652377 1 this.current 18 @@ -61156,7 +62789,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1848 this -1501313317 +1408652377 1 this.current 18 @@ -61166,7 +62799,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1848 this -1501313317 +1408652377 1 this.current 18 @@ -61179,13 +62812,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1847 this -1501313317 +1408652377 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61195,7 +62828,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1849 this -1501313317 +1408652377 1 this.current 18 @@ -61205,7 +62838,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1850 this -1501313317 +1408652377 1 this.current 18 @@ -61215,7 +62848,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1850 this -1501313317 +1408652377 1 this.current 18 @@ -61228,7 +62861,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1849 this -1501313317 +1408652377 1 this.current 19 @@ -61238,7 +62871,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1851 this -1501313317 +1408652377 1 this.current 19 @@ -61248,7 +62881,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1851 this -1501313317 +1408652377 1 this.current 19 @@ -61261,7 +62894,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1852 this -1501313317 +1408652377 1 this.current 19 @@ -61271,7 +62904,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1853 this -1501313317 +1408652377 1 this.current 19 @@ -61281,7 +62914,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1853 this -1501313317 +1408652377 1 this.current 19 @@ -61294,13 +62927,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1852 this -1501313317 +1408652377 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -61310,7 +62943,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1854 this -1501313317 +1408652377 1 this.current 19 @@ -61320,7 +62953,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1855 this -1501313317 +1408652377 1 this.current 19 @@ -61330,7 +62963,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1855 this -1501313317 +1408652377 1 this.current 19 @@ -61343,7 +62976,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1854 this -1501313317 +1408652377 1 this.current 0 @@ -61353,7 +62986,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1856 this -1501313317 +1408652377 1 this.current 0 @@ -61363,7 +62996,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1856 this -1501313317 +1408652377 1 this.current 0 @@ -61376,19 +63009,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 1807 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61397,7 +63030,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -61407,25 +63040,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 1857 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61438,25 +63071,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 1857 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61472,25 +63105,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 1858 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61510,7 +63143,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1859 this -1787550216 +990416209 1 this.current 2 @@ -61523,25 +63156,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 1858 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61550,7 +63183,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1787550216 +990416209 1 return.current 2 @@ -61560,7 +63193,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1860 this -1787550216 +990416209 1 this.current 2 @@ -61570,7 +63203,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1860 this -1787550216 +990416209 1 this.current 2 @@ -61583,7 +63216,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1861 this -1787550216 +990416209 1 this.current 2 @@ -61593,7 +63226,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1862 this -1787550216 +990416209 1 this.current 2 @@ -61603,7 +63236,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1862 this -1787550216 +990416209 1 this.current 2 @@ -61616,13 +63249,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1861 this -1787550216 +990416209 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -61632,25 +63265,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1863 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61659,7 +63292,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -60258782 +394714818 1 x.getClass().getName() "java.lang.Object" @@ -61676,7 +63309,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1864 this -1304551337 +1952779858 1 this.current 0 @@ -61689,25 +63322,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1863 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61716,13 +63349,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -60258782 +394714818 1 x.getClass().getName() "java.lang.Object" 1 return -1304551337 +1952779858 1 return.current 0 @@ -61732,7 +63365,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1865 this -1304551337 +1952779858 1 this.current 0 @@ -61742,7 +63375,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1866 this -1304551337 +1952779858 1 this.current 0 @@ -61752,7 +63385,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1866 this -1304551337 +1952779858 1 this.current 0 @@ -61765,7 +63398,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1865 this -1304551337 +1952779858 1 this.current 0 @@ -61781,25 +63414,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1867 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61808,7 +63441,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1933768736 +366004251 1 x.getClass().getName() "java.lang.Integer" @@ -61825,7 +63458,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1868 this -833632254 +1791868405 1 this.current 19 @@ -61838,25 +63471,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1867 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -61865,13 +63498,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1933768736 +366004251 1 x.getClass().getName() "java.lang.Integer" 1 return -833632254 +1791868405 1 return.current 19 @@ -61881,7 +63514,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1869 this -833632254 +1791868405 1 this.current 19 @@ -61891,7 +63524,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1870 this -833632254 +1791868405 1 this.current 19 @@ -61901,7 +63534,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1870 this -833632254 +1791868405 1 this.current 19 @@ -61914,13 +63547,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1869 this -833632254 +1791868405 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -61930,7 +63563,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1871 this -1787550216 +990416209 1 this.current 2 @@ -61940,7 +63573,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1872 this -1787550216 +990416209 1 this.current 2 @@ -61950,7 +63583,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1872 this -1787550216 +990416209 1 this.current 2 @@ -61963,7 +63596,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1871 this -1787550216 +990416209 1 this.current 12 @@ -61973,7 +63606,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1873 this -1787550216 +990416209 1 this.current 12 @@ -61983,7 +63616,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1873 this -1787550216 +990416209 1 this.current 12 @@ -61996,7 +63629,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1874 this -1787550216 +990416209 1 this.current 12 @@ -62006,7 +63639,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1875 this -1787550216 +990416209 1 this.current 12 @@ -62016,7 +63649,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1875 this -1787550216 +990416209 1 this.current 12 @@ -62029,13 +63662,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1874 this -1787550216 +990416209 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -62045,25 +63678,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1876 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62072,7 +63705,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -673979950 +1260134048 1 x.getClass().getName() "java.lang.String" @@ -62089,7 +63722,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1877 this -1752265372 +391618063 1 this.current 0 @@ -62102,25 +63735,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1876 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62129,13 +63762,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -673979950 +1260134048 1 x.getClass().getName() "java.lang.String" 1 return -1752265372 +391618063 1 return.current 0 @@ -62145,7 +63778,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1878 this -1752265372 +391618063 1 this.current 0 @@ -62155,7 +63788,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1879 this -1752265372 +391618063 1 this.current 0 @@ -62165,7 +63798,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1879 this -1752265372 +391618063 1 this.current 0 @@ -62178,7 +63811,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1878 this -1752265372 +391618063 1 this.current 0 @@ -62194,25 +63827,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1880 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62221,7 +63854,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1880855893 +81009902 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62238,7 +63871,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1881 this -585709811 +57748372 1 this.current 14 @@ -62251,25 +63884,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1880 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62278,13 +63911,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1880855893 +81009902 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -585709811 +57748372 1 return.current 14 @@ -62294,7 +63927,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1882 this -585709811 +57748372 1 this.current 14 @@ -62304,7 +63937,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1883 this -585709811 +57748372 1 this.current 14 @@ -62314,7 +63947,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1883 this -585709811 +57748372 1 this.current 14 @@ -62327,13 +63960,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1882 this -585709811 +57748372 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -62343,7 +63976,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1884 this -1787550216 +990416209 1 this.current 12 @@ -62353,7 +63986,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1885 this -1787550216 +990416209 1 this.current 12 @@ -62363,7 +63996,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1885 this -1787550216 +990416209 1 this.current 12 @@ -62376,7 +64009,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1884 this -1787550216 +990416209 1 this.current 13 @@ -62386,7 +64019,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1886 this -1787550216 +990416209 1 this.current 13 @@ -62396,7 +64029,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1886 this -1787550216 +990416209 1 this.current 13 @@ -62409,7 +64042,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1887 this -1787550216 +990416209 1 this.current 13 @@ -62419,7 +64052,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1888 this -1787550216 +990416209 1 this.current 13 @@ -62429,7 +64062,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1888 this -1787550216 +990416209 1 this.current 13 @@ -62442,13 +64075,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1887 this -1787550216 +990416209 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -62458,25 +64091,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1889 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62485,7 +64118,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2107239276 +674483268 1 x.getClass().getName() "java.lang.Double" @@ -62502,7 +64135,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1890 this -70205408 +54495403 1 this.current 0 @@ -62515,25 +64148,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1889 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62542,13 +64175,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2107239276 +674483268 1 x.getClass().getName() "java.lang.Double" 1 return -70205408 +54495403 1 return.current 0 @@ -62558,7 +64191,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1891 this -70205408 +54495403 1 this.current 0 @@ -62568,7 +64201,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1892 this -70205408 +54495403 1 this.current 0 @@ -62578,7 +64211,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1892 this -70205408 +54495403 1 this.current 0 @@ -62591,7 +64224,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1891 this -70205408 +54495403 1 this.current 0 @@ -62607,25 +64240,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1893 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62634,7 +64267,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -973770053 +665372494 1 x.getClass().getName() "java.lang.Long" @@ -62651,7 +64284,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1894 this -180406984 +764372388 1 this.current 4 @@ -62664,25 +64297,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1893 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62691,13 +64324,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -973770053 +665372494 1 x.getClass().getName() "java.lang.Long" 1 return -180406984 +764372388 1 return.current 4 @@ -62707,7 +64340,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1895 this -180406984 +764372388 1 this.current 4 @@ -62717,7 +64350,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1896 this -180406984 +764372388 1 this.current 4 @@ -62727,7 +64360,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1896 this -180406984 +764372388 1 this.current 4 @@ -62740,7 +64373,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1895 this -180406984 +764372388 1 this.current 4 @@ -62756,7 +64389,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1897 this -1787550216 +990416209 1 this.current 13 @@ -62766,7 +64399,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1898 this -1787550216 +990416209 1 this.current 13 @@ -62776,7 +64409,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1898 this -1787550216 +990416209 1 this.current 13 @@ -62789,7 +64422,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1897 this -1787550216 +990416209 1 this.current 14 @@ -62799,7 +64432,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1899 this -1787550216 +990416209 1 this.current 14 @@ -62809,7 +64442,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1899 this -1787550216 +990416209 1 this.current 14 @@ -62822,7 +64455,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1900 this -1787550216 +990416209 1 this.current 14 @@ -62832,7 +64465,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1901 this -1787550216 +990416209 1 this.current 14 @@ -62842,7 +64475,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1901 this -1787550216 +990416209 1 this.current 14 @@ -62855,13 +64488,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1900 this -1787550216 +990416209 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -62871,25 +64504,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1902 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62898,7 +64531,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2000754171 +459857341 1 x.getClass().getName() "java.lang.String" @@ -62915,7 +64548,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1903 this -1376407271 +1684890795 1 this.current 0 @@ -62928,25 +64561,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1902 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -62955,13 +64588,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2000754171 +459857341 1 x.getClass().getName() "java.lang.String" 1 return -1376407271 +1684890795 1 return.current 0 @@ -62971,7 +64604,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1904 this -1376407271 +1684890795 1 this.current 0 @@ -62981,7 +64614,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1905 this -1376407271 +1684890795 1 this.current 0 @@ -62991,7 +64624,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1905 this -1376407271 +1684890795 1 this.current 0 @@ -63004,7 +64637,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1904 this -1376407271 +1684890795 1 this.current 0 @@ -63020,25 +64653,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1906 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63047,7 +64680,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -583158213 +94264799 1 x.getClass().getName() "java.lang.String" @@ -63064,7 +64697,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1907 this -24720983 +1399499405 1 this.current 19 @@ -63077,25 +64710,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1906 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63104,13 +64737,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -583158213 +94264799 1 x.getClass().getName() "java.lang.String" 1 return -24720983 +1399499405 1 return.current 19 @@ -63120,7 +64753,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1908 this -24720983 +1399499405 1 this.current 19 @@ -63130,7 +64763,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1909 this -24720983 +1399499405 1 this.current 19 @@ -63140,7 +64773,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1909 this -24720983 +1399499405 1 this.current 19 @@ -63153,13 +64786,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1908 this -24720983 +1399499405 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -63169,7 +64802,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1910 this -1787550216 +990416209 1 this.current 14 @@ -63179,7 +64812,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1911 this -1787550216 +990416209 1 this.current 14 @@ -63189,7 +64822,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1911 this -1787550216 +990416209 1 this.current 14 @@ -63202,7 +64835,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1910 this -1787550216 +990416209 1 this.current 15 @@ -63212,7 +64845,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1912 this -1787550216 +990416209 1 this.current 15 @@ -63222,7 +64855,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1912 this -1787550216 +990416209 1 this.current 15 @@ -63235,7 +64868,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1913 this -1787550216 +990416209 1 this.current 15 @@ -63245,7 +64878,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1914 this -1787550216 +990416209 1 this.current 15 @@ -63255,7 +64888,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1914 this -1787550216 +990416209 1 this.current 15 @@ -63268,13 +64901,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1913 this -1787550216 +990416209 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -63284,25 +64917,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1915 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63311,7 +64944,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -63328,7 +64961,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1916 this -1021217410 +238157928 1 this.current 13 @@ -63341,25 +64974,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1915 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63368,13 +65001,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1021217410 +238157928 1 return.current 13 @@ -63384,7 +65017,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1917 this -1021217410 +238157928 1 this.current 13 @@ -63394,7 +65027,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1918 this -1021217410 +238157928 1 this.current 13 @@ -63404,7 +65037,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1918 this -1021217410 +238157928 1 this.current 13 @@ -63417,13 +65050,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1917 this -1021217410 +238157928 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -63433,25 +65066,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1919 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63460,7 +65093,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -63477,7 +65110,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1920 this -911703046 +32863545 1 this.current 13 @@ -63490,25 +65123,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1919 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63517,13 +65150,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -911703046 +32863545 1 return.current 13 @@ -63533,7 +65166,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1921 this -911703046 +32863545 1 this.current 13 @@ -63543,7 +65176,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1922 this -911703046 +32863545 1 this.current 13 @@ -63553,7 +65186,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1922 this -911703046 +32863545 1 this.current 13 @@ -63566,13 +65199,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1921 this -911703046 +32863545 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -63582,7 +65215,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1923 this -1787550216 +990416209 1 this.current 15 @@ -63592,7 +65225,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1924 this -1787550216 +990416209 1 this.current 15 @@ -63602,7 +65235,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1924 this -1787550216 +990416209 1 this.current 15 @@ -63615,7 +65248,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1923 this -1787550216 +990416209 1 this.current 16 @@ -63625,7 +65258,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1925 this -1787550216 +990416209 1 this.current 16 @@ -63635,7 +65268,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1925 this -1787550216 +990416209 1 this.current 16 @@ -63648,7 +65281,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1926 this -1787550216 +990416209 1 this.current 16 @@ -63658,7 +65291,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1927 this -1787550216 +990416209 1 this.current 16 @@ -63668,7 +65301,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1927 this -1787550216 +990416209 1 this.current 16 @@ -63681,13 +65314,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1926 this -1787550216 +990416209 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -63697,25 +65330,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1928 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63724,7 +65357,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -697272777 +1995616381 1 x.getClass().getName() "java.lang.Object" @@ -63741,7 +65374,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1929 this -245301360 +1883919084 1 this.current 0 @@ -63754,25 +65387,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1928 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63781,13 +65414,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -697272777 +1995616381 1 x.getClass().getName() "java.lang.Object" 1 return -245301360 +1883919084 1 return.current 0 @@ -63797,7 +65430,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1930 this -245301360 +1883919084 1 this.current 0 @@ -63807,7 +65440,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1931 this -245301360 +1883919084 1 this.current 0 @@ -63817,7 +65450,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1931 this -245301360 +1883919084 1 this.current 0 @@ -63830,7 +65463,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1930 this -245301360 +1883919084 1 this.current 0 @@ -63846,25 +65479,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1932 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63873,7 +65506,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1758838927 +1860513229 1 x.getClass().getName() "java.lang.Integer" @@ -63890,7 +65523,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1933 this -693445134 +1150538133 1 this.current 19 @@ -63903,25 +65536,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1932 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -63930,13 +65563,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1758838927 +1860513229 1 x.getClass().getName() "java.lang.Integer" 1 return -693445134 +1150538133 1 return.current 19 @@ -63946,7 +65579,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1934 this -693445134 +1150538133 1 this.current 19 @@ -63956,7 +65589,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1935 this -693445134 +1150538133 1 this.current 19 @@ -63966,7 +65599,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1935 this -693445134 +1150538133 1 this.current 19 @@ -63979,13 +65612,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1934 this -693445134 +1150538133 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -63995,7 +65628,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1936 this -1787550216 +990416209 1 this.current 16 @@ -64005,7 +65638,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1937 this -1787550216 +990416209 1 this.current 16 @@ -64015,7 +65648,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1937 this -1787550216 +990416209 1 this.current 16 @@ -64028,7 +65661,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1936 this -1787550216 +990416209 1 this.current 17 @@ -64038,7 +65671,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1938 this -1787550216 +990416209 1 this.current 17 @@ -64048,7 +65681,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1938 this -1787550216 +990416209 1 this.current 17 @@ -64061,7 +65694,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1939 this -1787550216 +990416209 1 this.current 17 @@ -64071,7 +65704,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1940 this -1787550216 +990416209 1 this.current 17 @@ -64081,7 +65714,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1940 this -1787550216 +990416209 1 this.current 17 @@ -64094,13 +65727,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1939 this -1787550216 +990416209 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -64110,25 +65743,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1941 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64137,7 +65770,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -338614869 +662822946 1 x.getClass().getName() "java.lang.String" @@ -64154,7 +65787,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1942 this -268438733 +92150540 1 this.current 0 @@ -64167,25 +65800,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1941 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64194,13 +65827,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -338614869 +662822946 1 x.getClass().getName() "java.lang.String" 1 return -268438733 +92150540 1 return.current 0 @@ -64210,7 +65843,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1943 this -268438733 +92150540 1 this.current 0 @@ -64220,7 +65853,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1944 this -268438733 +92150540 1 this.current 0 @@ -64230,7 +65863,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1944 this -268438733 +92150540 1 this.current 0 @@ -64243,7 +65876,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1943 this -268438733 +92150540 1 this.current 0 @@ -64259,25 +65892,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1945 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64286,7 +65919,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1934126831 +1110623531 1 x.getClass().getName() "DataStructures.MyInteger" @@ -64303,7 +65936,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1946 this -409683978 +410495873 1 this.current 14 @@ -64316,25 +65949,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1945 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64343,13 +65976,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1934126831 +1110623531 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -409683978 +410495873 1 return.current 14 @@ -64359,7 +65992,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1947 this -409683978 +410495873 1 this.current 14 @@ -64369,7 +66002,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1948 this -409683978 +410495873 1 this.current 14 @@ -64379,7 +66012,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1948 this -409683978 +410495873 1 this.current 14 @@ -64392,13 +66025,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1947 this -409683978 +410495873 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -64408,7 +66041,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1949 this -1787550216 +990416209 1 this.current 17 @@ -64418,7 +66051,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1950 this -1787550216 +990416209 1 this.current 17 @@ -64428,7 +66061,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1950 this -1787550216 +990416209 1 this.current 17 @@ -64441,7 +66074,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1949 this -1787550216 +990416209 1 this.current 18 @@ -64451,7 +66084,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1951 this -1787550216 +990416209 1 this.current 18 @@ -64461,7 +66094,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1951 this -1787550216 +990416209 1 this.current 18 @@ -64474,7 +66107,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1952 this -1787550216 +990416209 1 this.current 18 @@ -64484,7 +66117,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1953 this -1787550216 +990416209 1 this.current 18 @@ -64494,7 +66127,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1953 this -1787550216 +990416209 1 this.current 18 @@ -64507,13 +66140,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1952 this -1787550216 +990416209 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64523,25 +66156,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1954 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64550,7 +66183,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -726045964 +811587677 1 x.getClass().getName() "java.lang.Double" @@ -64567,7 +66200,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1955 this -652434694 +1166807841 1 this.current 0 @@ -64580,25 +66213,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1954 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64607,13 +66240,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -726045964 +811587677 1 x.getClass().getName() "java.lang.Double" 1 return -652434694 +1166807841 1 return.current 0 @@ -64623,7 +66256,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1956 this -652434694 +1166807841 1 this.current 0 @@ -64633,7 +66266,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1957 this -652434694 +1166807841 1 this.current 0 @@ -64643,7 +66276,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1957 this -652434694 +1166807841 1 this.current 0 @@ -64656,7 +66289,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1956 this -652434694 +1166807841 1 this.current 0 @@ -64672,25 +66305,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1958 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64699,7 +66332,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -418400476 +289639718 1 x.getClass().getName() "java.lang.Long" @@ -64716,7 +66349,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1959 this -1195339854 +885851948 1 this.current 4 @@ -64729,25 +66362,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1958 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64756,13 +66389,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -418400476 +289639718 1 x.getClass().getName() "java.lang.Long" 1 return -1195339854 +885851948 1 return.current 4 @@ -64772,7 +66405,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1960 this -1195339854 +885851948 1 this.current 4 @@ -64782,7 +66415,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1961 this -1195339854 +885851948 1 this.current 4 @@ -64792,7 +66425,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1961 this -1195339854 +885851948 1 this.current 4 @@ -64805,7 +66438,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1960 this -1195339854 +885851948 1 this.current 4 @@ -64821,7 +66454,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1962 this -1787550216 +990416209 1 this.current 18 @@ -64831,7 +66464,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1963 this -1787550216 +990416209 1 this.current 18 @@ -64841,7 +66474,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1963 this -1787550216 +990416209 1 this.current 18 @@ -64854,7 +66487,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1962 this -1787550216 +990416209 1 this.current 19 @@ -64864,7 +66497,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1964 this -1787550216 +990416209 1 this.current 19 @@ -64874,7 +66507,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1964 this -1787550216 +990416209 1 this.current 19 @@ -64887,7 +66520,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1965 this -1787550216 +990416209 1 this.current 19 @@ -64897,7 +66530,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1966 this -1787550216 +990416209 1 this.current 19 @@ -64907,7 +66540,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1966 this -1787550216 +990416209 1 this.current 19 @@ -64920,13 +66553,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1965 this -1787550216 +990416209 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -64936,25 +66569,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 1967 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -64963,7 +66596,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -367408493 +2048834776 1 x.getClass().getName() "java.lang.String" @@ -64980,7 +66613,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1968 this -1019056726 +1605283233 1 this.current 0 @@ -64993,25 +66626,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 1967 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65020,13 +66653,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -367408493 +2048834776 1 x.getClass().getName() "java.lang.String" 1 return -1019056726 +1605283233 1 return.current 0 @@ -65036,7 +66669,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1969 this -1019056726 +1605283233 1 this.current 0 @@ -65046,7 +66679,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1970 this -1019056726 +1605283233 1 this.current 0 @@ -65056,7 +66689,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1970 this -1019056726 +1605283233 1 this.current 0 @@ -65069,7 +66702,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1969 this -1019056726 +1605283233 1 this.current 0 @@ -65085,25 +66718,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1971 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65112,7 +66745,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1104309057 +1384722895 1 x.getClass().getName() "java.lang.String" @@ -65129,7 +66762,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1972 this -1568643625 +245475541 1 this.current 19 @@ -65142,25 +66775,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1971 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65169,13 +66802,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1104309057 +1384722895 1 x.getClass().getName() "java.lang.String" 1 return -1568643625 +245475541 1 return.current 19 @@ -65185,7 +66818,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1973 this -1568643625 +245475541 1 this.current 19 @@ -65195,7 +66828,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1974 this -1568643625 +245475541 1 this.current 19 @@ -65205,7 +66838,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1974 this -1568643625 +245475541 1 this.current 19 @@ -65218,13 +66851,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1973 this -1568643625 +245475541 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -65234,7 +66867,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1975 this -1787550216 +990416209 1 this.current 19 @@ -65244,7 +66877,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1976 this -1787550216 +990416209 1 this.current 19 @@ -65254,7 +66887,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1976 this -1787550216 +990416209 1 this.current 19 @@ -65267,7 +66900,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1975 this -1787550216 +990416209 1 this.current 0 @@ -65277,7 +66910,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1977 this -1787550216 +990416209 1 this.current 0 @@ -65287,7 +66920,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1977 this -1787550216 +990416209 1 this.current 0 @@ -65300,25 +66933,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 1978 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65338,7 +66971,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1979 this -1684154803 +22429093 1 this.current 4 @@ -65351,25 +66984,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 1978 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65378,7 +67011,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1684154803 +22429093 1 return.current 4 @@ -65388,7 +67021,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1980 this -1684154803 +22429093 1 this.current 4 @@ -65398,7 +67031,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1980 this -1684154803 +22429093 1 this.current 4 @@ -65411,7 +67044,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1981 this -1684154803 +22429093 1 this.current 4 @@ -65421,7 +67054,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1982 this -1684154803 +22429093 1 this.current 4 @@ -65431,7 +67064,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1982 this -1684154803 +22429093 1 this.current 4 @@ -65444,7 +67077,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1981 this -1684154803 +22429093 1 this.current 4 @@ -65460,25 +67093,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1983 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65487,7 +67120,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -65504,7 +67137,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1984 this -1755306561 +733957003 1 this.current 12 @@ -65517,25 +67150,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1983 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65544,13 +67177,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1755306561 +733957003 1 return.current 12 @@ -65560,7 +67193,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1985 this -1755306561 +733957003 1 this.current 12 @@ -65570,7 +67203,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1986 this -1755306561 +733957003 1 this.current 12 @@ -65580,7 +67213,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1986 this -1755306561 +733957003 1 this.current 12 @@ -65593,13 +67226,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1985 this -1755306561 +733957003 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -65609,7 +67242,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1987 this -1684154803 +22429093 1 this.current 4 @@ -65619,7 +67252,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1988 this -1684154803 +22429093 1 this.current 4 @@ -65629,7 +67262,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1988 this -1684154803 +22429093 1 this.current 4 @@ -65642,7 +67275,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1987 this -1684154803 +22429093 1 this.current 2 @@ -65652,7 +67285,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1989 this -1684154803 +22429093 1 this.current 2 @@ -65662,7 +67295,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1989 this -1684154803 +22429093 1 this.current 2 @@ -65675,7 +67308,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1990 this -1684154803 +22429093 1 this.current 2 @@ -65685,7 +67318,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1991 this -1684154803 +22429093 1 this.current 2 @@ -65695,7 +67328,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1991 this -1684154803 +22429093 1 this.current 2 @@ -65708,13 +67341,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1990 this -1684154803 +22429093 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -65724,25 +67357,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 1992 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65751,7 +67384,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -65768,7 +67401,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 1993 this -1454511888 +815992954 1 this.current 13 @@ -65781,25 +67414,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 1992 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65808,13 +67441,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1454511888 +815992954 1 return.current 13 @@ -65824,7 +67457,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1994 this -1454511888 +815992954 1 this.current 13 @@ -65834,7 +67467,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1995 this -1454511888 +815992954 1 this.current 13 @@ -65844,7 +67477,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1995 this -1454511888 +815992954 1 this.current 13 @@ -65857,13 +67490,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1994 this -1454511888 +815992954 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -65873,7 +67506,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 1996 this -1684154803 +22429093 1 this.current 2 @@ -65883,7 +67516,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1997 this -1684154803 +22429093 1 this.current 2 @@ -65893,7 +67526,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1997 this -1684154803 +22429093 1 this.current 2 @@ -65906,7 +67539,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 1996 this -1684154803 +22429093 1 this.current 12 @@ -65916,7 +67549,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 1998 this -1684154803 +22429093 1 this.current 12 @@ -65926,7 +67559,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 1998 this -1684154803 +22429093 1 this.current 12 @@ -65939,7 +67572,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 1999 this -1684154803 +22429093 1 this.current 12 @@ -65949,7 +67582,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2000 this -1684154803 +22429093 1 this.current 12 @@ -65959,7 +67592,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2000 this -1684154803 +22429093 1 this.current 12 @@ -65972,13 +67605,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 1999 this -1684154803 +22429093 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -65988,25 +67621,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2001 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66015,7 +67648,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1174947815 +868737467 1 x.getClass().getName() "java.lang.Object" @@ -66032,7 +67665,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2002 this -1235792540 +55331187 1 this.current 19 @@ -66045,25 +67678,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2001 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66072,13 +67705,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1174947815 +868737467 1 x.getClass().getName() "java.lang.Object" 1 return -1235792540 +55331187 1 return.current 19 @@ -66088,7 +67721,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2003 this -1235792540 +55331187 1 this.current 19 @@ -66098,7 +67731,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2004 this -1235792540 +55331187 1 this.current 19 @@ -66108,7 +67741,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2004 this -1235792540 +55331187 1 this.current 19 @@ -66121,13 +67754,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2003 this -1235792540 +55331187 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -66137,7 +67770,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2005 this -1684154803 +22429093 1 this.current 12 @@ -66147,7 +67780,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2006 this -1684154803 +22429093 1 this.current 12 @@ -66157,7 +67790,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2006 this -1684154803 +22429093 1 this.current 12 @@ -66170,7 +67803,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2005 this -1684154803 +22429093 1 this.current 13 @@ -66180,7 +67813,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2007 this -1684154803 +22429093 1 this.current 13 @@ -66190,7 +67823,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2007 this -1684154803 +22429093 1 this.current 13 @@ -66203,7 +67836,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2008 this -1684154803 +22429093 1 this.current 13 @@ -66213,7 +67846,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2009 this -1684154803 +22429093 1 this.current 13 @@ -66223,7 +67856,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2009 this -1684154803 +22429093 1 this.current 13 @@ -66236,13 +67869,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2008 this -1684154803 +22429093 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -66252,25 +67885,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2010 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66279,7 +67912,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1650869643 +1392425346 1 x.getClass().getName() "java.lang.Integer" @@ -66296,7 +67929,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2011 this -677370661 +2054574951 1 this.current 19 @@ -66309,25 +67942,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2010 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66336,13 +67969,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1650869643 +1392425346 1 x.getClass().getName() "java.lang.Integer" 1 return -677370661 +2054574951 1 return.current 19 @@ -66352,7 +67985,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2012 this -677370661 +2054574951 1 this.current 19 @@ -66362,7 +67995,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2013 this -677370661 +2054574951 1 this.current 19 @@ -66372,7 +68005,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2013 this -677370661 +2054574951 1 this.current 19 @@ -66385,13 +68018,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2012 this -677370661 +2054574951 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -66401,7 +68034,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2014 this -1684154803 +22429093 1 this.current 13 @@ -66411,7 +68044,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2015 this -1684154803 +22429093 1 this.current 13 @@ -66421,7 +68054,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2015 this -1684154803 +22429093 1 this.current 13 @@ -66434,7 +68067,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2014 this -1684154803 +22429093 1 this.current 14 @@ -66444,7 +68077,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2016 this -1684154803 +22429093 1 this.current 14 @@ -66454,7 +68087,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2016 this -1684154803 +22429093 1 this.current 14 @@ -66467,7 +68100,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2017 this -1684154803 +22429093 1 this.current 14 @@ -66477,7 +68110,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2018 this -1684154803 +22429093 1 this.current 14 @@ -66487,7 +68120,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2018 this -1684154803 +22429093 1 this.current 14 @@ -66500,13 +68133,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2017 this -1684154803 +22429093 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -66516,25 +68149,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2019 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66543,7 +68176,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -757886680 +1991294891 1 x.getClass().getName() "java.lang.String" @@ -66560,7 +68193,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2020 this -1075920403 +399931359 1 this.current 19 @@ -66573,25 +68206,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2019 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66600,13 +68233,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -757886680 +1991294891 1 x.getClass().getName() "java.lang.String" 1 return -1075920403 +399931359 1 return.current 19 @@ -66616,7 +68249,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2021 this -1075920403 +399931359 1 this.current 19 @@ -66626,7 +68259,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2022 this -1075920403 +399931359 1 this.current 19 @@ -66636,7 +68269,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2022 this -1075920403 +399931359 1 this.current 19 @@ -66649,13 +68282,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2021 this -1075920403 +399931359 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -66665,7 +68298,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2023 this -1684154803 +22429093 1 this.current 14 @@ -66675,7 +68308,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2024 this -1684154803 +22429093 1 this.current 14 @@ -66685,7 +68318,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2024 this -1684154803 +22429093 1 this.current 14 @@ -66698,7 +68331,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2023 this -1684154803 +22429093 1 this.current 15 @@ -66708,7 +68341,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2025 this -1684154803 +22429093 1 this.current 15 @@ -66718,7 +68351,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2025 this -1684154803 +22429093 1 this.current 15 @@ -66731,7 +68364,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2026 this -1684154803 +22429093 1 this.current 15 @@ -66741,7 +68374,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2027 this -1684154803 +22429093 1 this.current 15 @@ -66751,7 +68384,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2027 this -1684154803 +22429093 1 this.current 15 @@ -66764,13 +68397,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2026 this -1684154803 +22429093 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -66780,25 +68413,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2028 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66807,7 +68440,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1181905481 +809762318 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66824,7 +68457,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2029 this -61684417 +2028371466 1 this.current 14 @@ -66837,25 +68470,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2028 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66864,13 +68497,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1181905481 +809762318 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -61684417 +2028371466 1 return.current 14 @@ -66880,7 +68513,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2030 this -61684417 +2028371466 1 this.current 14 @@ -66890,7 +68523,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2031 this -61684417 +2028371466 1 this.current 14 @@ -66900,7 +68533,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2031 this -61684417 +2028371466 1 this.current 14 @@ -66913,13 +68546,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2030 this -61684417 +2028371466 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -66929,7 +68562,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2032 this -1684154803 +22429093 1 this.current 15 @@ -66939,7 +68572,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2033 this -1684154803 +22429093 1 this.current 15 @@ -66949,7 +68582,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2033 this -1684154803 +22429093 1 this.current 15 @@ -66962,7 +68595,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2032 this -1684154803 +22429093 1 this.current 16 @@ -66972,7 +68605,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2034 this -1684154803 +22429093 1 this.current 16 @@ -66982,7 +68615,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2034 this -1684154803 +22429093 1 this.current 16 @@ -66995,7 +68628,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2035 this -1684154803 +22429093 1 this.current 16 @@ -67005,7 +68638,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2036 this -1684154803 +22429093 1 this.current 16 @@ -67015,7 +68648,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2036 this -1684154803 +22429093 1 this.current 16 @@ -67028,13 +68661,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2035 this -1684154803 +22429093 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -67044,25 +68677,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2037 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67071,7 +68704,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1642878665 +198761306 1 x.getClass().getName() "java.lang.Double" @@ -67088,7 +68721,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2038 this -1664473176 +798244209 1 this.current 19 @@ -67101,25 +68734,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2037 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67128,13 +68761,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1642878665 +198761306 1 x.getClass().getName() "java.lang.Double" 1 return -1664473176 +798244209 1 return.current 19 @@ -67144,7 +68777,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2039 this -1664473176 +798244209 1 this.current 19 @@ -67154,7 +68787,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2040 this -1664473176 +798244209 1 this.current 19 @@ -67164,7 +68797,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2040 this -1664473176 +798244209 1 this.current 19 @@ -67177,13 +68810,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2039 this -1664473176 +798244209 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -67193,7 +68826,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2041 this -1684154803 +22429093 1 this.current 16 @@ -67203,7 +68836,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2042 this -1684154803 +22429093 1 this.current 16 @@ -67213,7 +68846,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2042 this -1684154803 +22429093 1 this.current 16 @@ -67226,7 +68859,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2041 this -1684154803 +22429093 1 this.current 17 @@ -67236,7 +68869,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2043 this -1684154803 +22429093 1 this.current 17 @@ -67246,7 +68879,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2043 this -1684154803 +22429093 1 this.current 17 @@ -67259,7 +68892,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2044 this -1684154803 +22429093 1 this.current 17 @@ -67269,7 +68902,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2045 this -1684154803 +22429093 1 this.current 17 @@ -67279,7 +68912,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2045 this -1684154803 +22429093 1 this.current 17 @@ -67292,13 +68925,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2044 this -1684154803 +22429093 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -67308,25 +68941,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2046 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67335,7 +68968,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1678683210 +525571 1 x.getClass().getName() "java.lang.Long" @@ -67352,7 +68985,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2047 this -2136039831 +1263877414 1 this.current 4 @@ -67365,25 +68998,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2046 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67392,13 +69025,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1678683210 +525571 1 x.getClass().getName() "java.lang.Long" 1 return -2136039831 +1263877414 1 return.current 4 @@ -67408,7 +69041,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2048 this -2136039831 +1263877414 1 this.current 4 @@ -67418,7 +69051,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2049 this -2136039831 +1263877414 1 this.current 4 @@ -67428,7 +69061,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2049 this -2136039831 +1263877414 1 this.current 4 @@ -67441,7 +69074,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2048 this -2136039831 +1263877414 1 this.current 4 @@ -67457,7 +69090,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2050 this -1684154803 +22429093 1 this.current 17 @@ -67467,7 +69100,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2051 this -1684154803 +22429093 1 this.current 17 @@ -67477,7 +69110,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2051 this -1684154803 +22429093 1 this.current 17 @@ -67490,7 +69123,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2050 this -1684154803 +22429093 1 this.current 18 @@ -67500,7 +69133,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2052 this -1684154803 +22429093 1 this.current 18 @@ -67510,7 +69143,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2052 this -1684154803 +22429093 1 this.current 18 @@ -67523,7 +69156,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2053 this -1684154803 +22429093 1 this.current 18 @@ -67533,7 +69166,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2054 this -1684154803 +22429093 1 this.current 18 @@ -67543,7 +69176,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2054 this -1684154803 +22429093 1 this.current 18 @@ -67556,13 +69189,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2053 this -1684154803 +22429093 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -67572,25 +69205,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2055 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67599,7 +69232,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -937312718 +110771485 1 x.getClass().getName() "java.lang.String" @@ -67616,7 +69249,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2056 this -1622300681 +141289226 1 this.current 19 @@ -67629,25 +69262,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2055 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67656,13 +69289,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -937312718 +110771485 1 x.getClass().getName() "java.lang.String" 1 return -1622300681 +141289226 1 return.current 19 @@ -67672,7 +69305,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2057 this -1622300681 +141289226 1 this.current 19 @@ -67682,7 +69315,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2058 this -1622300681 +141289226 1 this.current 19 @@ -67692,7 +69325,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2058 this -1622300681 +141289226 1 this.current 19 @@ -67705,13 +69338,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2057 this -1622300681 +141289226 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -67721,7 +69354,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2059 this -1684154803 +22429093 1 this.current 18 @@ -67731,7 +69364,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2060 this -1684154803 +22429093 1 this.current 18 @@ -67741,7 +69374,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2060 this -1684154803 +22429093 1 this.current 18 @@ -67754,7 +69387,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2059 this -1684154803 +22429093 1 this.current 19 @@ -67764,7 +69397,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2061 this -1684154803 +22429093 1 this.current 19 @@ -67774,7 +69407,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2061 this -1684154803 +22429093 1 this.current 19 @@ -67787,7 +69420,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2062 this -1684154803 +22429093 1 this.current 19 @@ -67797,7 +69430,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2063 this -1684154803 +22429093 1 this.current 19 @@ -67807,7 +69440,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2063 this -1684154803 +22429093 1 this.current 19 @@ -67820,13 +69453,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2062 this -1684154803 +22429093 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -67836,25 +69469,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2064 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67863,7 +69496,7 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1555163255 +1208736537 1 x.getClass().getName() "java.lang.String" @@ -67880,7 +69513,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2065 this -605359148 +710239027 1 this.current 19 @@ -67893,25 +69526,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2064 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67920,13 +69553,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1555163255 +1208736537 1 x.getClass().getName() "java.lang.String" 1 return -605359148 +710239027 1 return.current 19 @@ -67936,7 +69569,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2066 this -605359148 +710239027 1 this.current 19 @@ -67946,7 +69579,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2067 this -605359148 +710239027 1 this.current 19 @@ -67956,7 +69589,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2067 this -605359148 +710239027 1 this.current 19 @@ -67969,13 +69602,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2066 this -605359148 +710239027 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -67985,7 +69618,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2068 this -1684154803 +22429093 1 this.current 19 @@ -67995,7 +69628,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2069 this -1684154803 +22429093 1 this.current 19 @@ -68005,7 +69638,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2069 this -1684154803 +22429093 1 this.current 19 @@ -68018,7 +69651,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2068 this -1684154803 +22429093 1 this.current 0 @@ -68028,7 +69661,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2070 this -1684154803 +22429093 1 this.current 0 @@ -68038,7 +69671,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2070 this -1684154803 +22429093 1 this.current 0 @@ -68051,7 +69684,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2071 this -1624142202 +1471868639 1 this.current 18 @@ -68061,7 +69694,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2072 this -1624142202 +1471868639 1 this.current 18 @@ -68071,7 +69704,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2072 this -1624142202 +1471868639 1 this.current 18 @@ -68084,7 +69717,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2071 this -1624142202 +1471868639 1 this.current 19 @@ -68094,25 +69727,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 2073 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68121,13 +69754,13 @@ DataStructures.CursorList.cursorSpace[..].next [20 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 0 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 p -1624142202 +1471868639 1 p.current 19 @@ -68137,19 +69770,19 @@ DataStructures.CursorList.alloc():::ENTER this_invocation_nonce 2074 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68162,19 +69795,19 @@ DataStructures.CursorList.alloc():::EXIT37 this_invocation_nonce 2074 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68190,25 +69823,25 @@ DataStructures.CursorList.insert(java.lang.Object, DataStructures.CursorListItr) this_invocation_nonce 2073 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68217,13 +69850,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 p -1624142202 +1471868639 1 p.current 19 @@ -68233,19 +69866,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 2075 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68254,7 +69887,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -68264,25 +69897,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 2076 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68295,25 +69928,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 2076 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68329,25 +69962,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2077 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68367,7 +70000,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2078 this -1641164597 +2104545713 1 this.current 2 @@ -68380,25 +70013,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 2077 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -68407,7 +70040,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1641164597 +2104545713 1 return.current 2 @@ -68417,7 +70050,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2079 this -1641164597 +2104545713 1 this.current 2 @@ -68427,7 +70060,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2079 this -1641164597 +2104545713 1 this.current 2 @@ -68440,7 +70073,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2080 this -1641164597 +2104545713 1 this.current 2 @@ -68450,7 +70083,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2081 this -1641164597 +2104545713 1 this.current 2 @@ -68460,7 +70093,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2081 this -1641164597 +2104545713 1 this.current 2 @@ -68473,13 +70106,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2080 this -1641164597 +2104545713 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -68489,7 +70122,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2082 this -1641164597 +2104545713 1 this.current 2 @@ -68499,7 +70132,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2083 this -1641164597 +2104545713 1 this.current 2 @@ -68509,7 +70142,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2083 this -1641164597 +2104545713 1 this.current 2 @@ -68522,7 +70155,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2082 this -1641164597 +2104545713 1 this.current 12 @@ -68532,7 +70165,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2084 this -1641164597 +2104545713 1 this.current 12 @@ -68542,7 +70175,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2084 this -1641164597 +2104545713 1 this.current 12 @@ -68555,7 +70188,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2085 this -1641164597 +2104545713 1 this.current 12 @@ -68565,7 +70198,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2086 this -1641164597 +2104545713 1 this.current 12 @@ -68575,7 +70208,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2086 this -1641164597 +2104545713 1 this.current 12 @@ -68588,13 +70221,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2085 this -1641164597 +2104545713 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -68604,7 +70237,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2087 this -1641164597 +2104545713 1 this.current 12 @@ -68614,7 +70247,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2088 this -1641164597 +2104545713 1 this.current 12 @@ -68624,7 +70257,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2088 this -1641164597 +2104545713 1 this.current 12 @@ -68637,7 +70270,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2087 this -1641164597 +2104545713 1 this.current 13 @@ -68647,7 +70280,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2089 this -1641164597 +2104545713 1 this.current 13 @@ -68657,7 +70290,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2089 this -1641164597 +2104545713 1 this.current 13 @@ -68670,7 +70303,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2090 this -1641164597 +2104545713 1 this.current 13 @@ -68680,7 +70313,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2091 this -1641164597 +2104545713 1 this.current 13 @@ -68690,7 +70323,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2091 this -1641164597 +2104545713 1 this.current 13 @@ -68703,13 +70336,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2090 this -1641164597 +2104545713 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -68719,7 +70352,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2092 this -1641164597 +2104545713 1 this.current 13 @@ -68729,7 +70362,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2093 this -1641164597 +2104545713 1 this.current 13 @@ -68739,7 +70372,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2093 this -1641164597 +2104545713 1 this.current 13 @@ -68752,7 +70385,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2092 this -1641164597 +2104545713 1 this.current 14 @@ -68762,7 +70395,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2094 this -1641164597 +2104545713 1 this.current 14 @@ -68772,7 +70405,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2094 this -1641164597 +2104545713 1 this.current 14 @@ -68785,7 +70418,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2095 this -1641164597 +2104545713 1 this.current 14 @@ -68795,7 +70428,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2096 this -1641164597 +2104545713 1 this.current 14 @@ -68805,7 +70438,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2096 this -1641164597 +2104545713 1 this.current 14 @@ -68818,13 +70451,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2095 this -1641164597 +2104545713 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -68834,7 +70467,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2097 this -1641164597 +2104545713 1 this.current 14 @@ -68844,7 +70477,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2098 this -1641164597 +2104545713 1 this.current 14 @@ -68854,7 +70487,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2098 this -1641164597 +2104545713 1 this.current 14 @@ -68867,7 +70500,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2097 this -1641164597 +2104545713 1 this.current 15 @@ -68877,7 +70510,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2099 this -1641164597 +2104545713 1 this.current 15 @@ -68887,7 +70520,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2099 this -1641164597 +2104545713 1 this.current 15 @@ -68900,7 +70533,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2100 this -1641164597 +2104545713 1 this.current 15 @@ -68910,7 +70543,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2101 this -1641164597 +2104545713 1 this.current 15 @@ -68920,7 +70553,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2101 this -1641164597 +2104545713 1 this.current 15 @@ -68933,13 +70566,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2100 this -1641164597 +2104545713 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68949,7 +70582,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2102 this -1641164597 +2104545713 1 this.current 15 @@ -68959,7 +70592,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2103 this -1641164597 +2104545713 1 this.current 15 @@ -68969,7 +70602,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2103 this -1641164597 +2104545713 1 this.current 15 @@ -68982,7 +70615,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2102 this -1641164597 +2104545713 1 this.current 16 @@ -68992,7 +70625,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2104 this -1641164597 +2104545713 1 this.current 16 @@ -69002,7 +70635,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2104 this -1641164597 +2104545713 1 this.current 16 @@ -69015,7 +70648,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2105 this -1641164597 +2104545713 1 this.current 16 @@ -69025,7 +70658,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2106 this -1641164597 +2104545713 1 this.current 16 @@ -69035,7 +70668,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2106 this -1641164597 +2104545713 1 this.current 16 @@ -69048,13 +70681,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2105 this -1641164597 +2104545713 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -69064,7 +70697,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2107 this -1641164597 +2104545713 1 this.current 16 @@ -69074,7 +70707,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2108 this -1641164597 +2104545713 1 this.current 16 @@ -69084,7 +70717,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2108 this -1641164597 +2104545713 1 this.current 16 @@ -69097,7 +70730,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2107 this -1641164597 +2104545713 1 this.current 17 @@ -69107,7 +70740,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2109 this -1641164597 +2104545713 1 this.current 17 @@ -69117,7 +70750,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2109 this -1641164597 +2104545713 1 this.current 17 @@ -69130,7 +70763,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2110 this -1641164597 +2104545713 1 this.current 17 @@ -69140,7 +70773,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2111 this -1641164597 +2104545713 1 this.current 17 @@ -69150,7 +70783,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2111 this -1641164597 +2104545713 1 this.current 17 @@ -69163,13 +70796,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2110 this -1641164597 +2104545713 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -69179,7 +70812,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2112 this -1641164597 +2104545713 1 this.current 17 @@ -69189,7 +70822,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2113 this -1641164597 +2104545713 1 this.current 17 @@ -69199,7 +70832,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2113 this -1641164597 +2104545713 1 this.current 17 @@ -69212,7 +70845,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2112 this -1641164597 +2104545713 1 this.current 18 @@ -69222,7 +70855,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2114 this -1641164597 +2104545713 1 this.current 18 @@ -69232,7 +70865,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2114 this -1641164597 +2104545713 1 this.current 18 @@ -69245,7 +70878,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2115 this -1641164597 +2104545713 1 this.current 18 @@ -69255,7 +70888,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2116 this -1641164597 +2104545713 1 this.current 18 @@ -69265,7 +70898,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2116 this -1641164597 +2104545713 1 this.current 18 @@ -69278,13 +70911,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2115 this -1641164597 +2104545713 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -69294,7 +70927,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2117 this -1641164597 +2104545713 1 this.current 18 @@ -69304,7 +70937,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2118 this -1641164597 +2104545713 1 this.current 18 @@ -69314,7 +70947,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2118 this -1641164597 +2104545713 1 this.current 18 @@ -69327,7 +70960,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2117 this -1641164597 +2104545713 1 this.current 19 @@ -69337,7 +70970,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2119 this -1641164597 +2104545713 1 this.current 19 @@ -69347,7 +70980,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2119 this -1641164597 +2104545713 1 this.current 19 @@ -69360,7 +70993,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2120 this -1641164597 +2104545713 1 this.current 19 @@ -69370,7 +71003,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2121 this -1641164597 +2104545713 1 this.current 19 @@ -69380,7 +71013,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2121 this -1641164597 +2104545713 1 this.current 19 @@ -69393,13 +71026,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2120 this -1641164597 +2104545713 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -69409,7 +71042,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2122 this -1641164597 +2104545713 1 this.current 19 @@ -69419,7 +71052,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2123 this -1641164597 +2104545713 1 this.current 19 @@ -69429,7 +71062,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2123 this -1641164597 +2104545713 1 this.current 19 @@ -69442,7 +71075,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2122 this -1641164597 +2104545713 1 this.current 20 @@ -69452,7 +71085,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2124 this -1641164597 +2104545713 1 this.current 20 @@ -69462,7 +71095,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2124 this -1641164597 +2104545713 1 this.current 20 @@ -69475,7 +71108,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2125 this -1641164597 +2104545713 1 this.current 20 @@ -69485,7 +71118,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2126 this -1641164597 +2104545713 1 this.current 20 @@ -69495,7 +71128,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2126 this -1641164597 +2104545713 1 this.current 20 @@ -69508,13 +71141,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2125 this -1641164597 +2104545713 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -69524,7 +71157,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2127 this -1641164597 +2104545713 1 this.current 20 @@ -69534,7 +71167,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2128 this -1641164597 +2104545713 1 this.current 20 @@ -69544,7 +71177,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2128 this -1641164597 +2104545713 1 this.current 20 @@ -69557,7 +71190,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2127 this -1641164597 +2104545713 1 this.current 0 @@ -69567,7 +71200,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2129 this -1641164597 +2104545713 1 this.current 0 @@ -69577,7 +71210,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2129 this -1641164597 +2104545713 1 this.current 0 @@ -69590,19 +71223,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 2075 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69611,7 +71244,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -69621,25 +71254,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 2130 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69652,25 +71285,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 2130 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69686,25 +71319,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2131 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69724,7 +71357,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2132 this -773419711 +712256162 1 this.current 2 @@ -69737,25 +71370,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 2131 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69764,7 +71397,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -773419711 +712256162 1 return.current 2 @@ -69774,7 +71407,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2133 this -773419711 +712256162 1 this.current 2 @@ -69784,7 +71417,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2133 this -773419711 +712256162 1 this.current 2 @@ -69797,7 +71430,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2134 this -773419711 +712256162 1 this.current 2 @@ -69807,7 +71440,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2135 this -773419711 +712256162 1 this.current 2 @@ -69817,7 +71450,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2135 this -773419711 +712256162 1 this.current 2 @@ -69830,13 +71463,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2134 this -773419711 +712256162 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -69846,25 +71479,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2136 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69873,7 +71506,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -69890,7 +71523,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2137 this -1035830194 +1018298342 1 this.current 14 @@ -69903,25 +71536,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2136 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -69930,13 +71563,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1035830194 +1018298342 1 return.current 14 @@ -69946,7 +71579,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2138 this -1035830194 +1018298342 1 this.current 14 @@ -69956,7 +71589,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2139 this -1035830194 +1018298342 1 this.current 14 @@ -69966,7 +71599,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2139 this -1035830194 +1018298342 1 this.current 14 @@ -69979,13 +71612,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2138 this -1035830194 +1018298342 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -69995,25 +71628,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2140 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70022,7 +71655,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1695627976 +1039949752 1 x.getClass().getName() "java.lang.Object" @@ -70039,7 +71672,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2141 this -1311396942 +1182461167 1 this.current 20 @@ -70052,25 +71685,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2140 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70079,13 +71712,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1695627976 +1039949752 1 x.getClass().getName() "java.lang.Object" 1 return -1311396942 +1182461167 1 return.current 20 @@ -70095,7 +71728,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2142 this -1311396942 +1182461167 1 this.current 20 @@ -70105,7 +71738,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2143 this -1311396942 +1182461167 1 this.current 20 @@ -70115,7 +71748,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2143 this -1311396942 +1182461167 1 this.current 20 @@ -70128,13 +71761,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2142 this -1311396942 +1182461167 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -70144,7 +71777,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2144 this -773419711 +712256162 1 this.current 2 @@ -70154,7 +71787,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2145 this -773419711 +712256162 1 this.current 2 @@ -70164,7 +71797,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2145 this -773419711 +712256162 1 this.current 2 @@ -70177,7 +71810,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2144 this -773419711 +712256162 1 this.current 12 @@ -70187,7 +71820,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2146 this -773419711 +712256162 1 this.current 12 @@ -70197,7 +71830,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2146 this -773419711 +712256162 1 this.current 12 @@ -70210,7 +71843,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2147 this -773419711 +712256162 1 this.current 12 @@ -70220,7 +71853,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2148 this -773419711 +712256162 1 this.current 12 @@ -70230,7 +71863,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2148 this -773419711 +712256162 1 this.current 12 @@ -70243,13 +71876,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2147 this -773419711 +712256162 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -70259,25 +71892,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2149 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70286,7 +71919,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1023735033 +1297149880 1 x.getClass().getName() "java.lang.Integer" @@ -70303,7 +71936,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2150 this -275719867 +2116908859 1 this.current 0 @@ -70316,25 +71949,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2149 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70343,13 +71976,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1023735033 +1297149880 1 x.getClass().getName() "java.lang.Integer" 1 return -275719867 +2116908859 1 return.current 0 @@ -70359,7 +71992,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2151 this -275719867 +2116908859 1 this.current 0 @@ -70369,7 +72002,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2152 this -275719867 +2116908859 1 this.current 0 @@ -70379,7 +72012,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2152 this -275719867 +2116908859 1 this.current 0 @@ -70392,7 +72025,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2151 this -275719867 +2116908859 1 this.current 0 @@ -70408,25 +72041,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2153 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70435,7 +72068,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1901578090 +561247961 1 x.getClass().getName() "java.lang.String" @@ -70452,7 +72085,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2154 this -971323976 +813656972 1 this.current 20 @@ -70465,25 +72098,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2153 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70492,13 +72125,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1901578090 +561247961 1 x.getClass().getName() "java.lang.String" 1 return -971323976 +813656972 1 return.current 20 @@ -70508,7 +72141,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2155 this -971323976 +813656972 1 this.current 20 @@ -70518,7 +72151,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2156 this -971323976 +813656972 1 this.current 20 @@ -70528,7 +72161,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2156 this -971323976 +813656972 1 this.current 20 @@ -70541,13 +72174,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2155 this -971323976 +813656972 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -70557,7 +72190,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2157 this -773419711 +712256162 1 this.current 12 @@ -70567,7 +72200,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2158 this -773419711 +712256162 1 this.current 12 @@ -70577,7 +72210,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2158 this -773419711 +712256162 1 this.current 12 @@ -70590,7 +72223,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2157 this -773419711 +712256162 1 this.current 13 @@ -70600,7 +72233,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2159 this -773419711 +712256162 1 this.current 13 @@ -70610,7 +72243,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2159 this -773419711 +712256162 1 this.current 13 @@ -70623,7 +72256,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2160 this -773419711 +712256162 1 this.current 13 @@ -70633,7 +72266,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2161 this -773419711 +712256162 1 this.current 13 @@ -70643,7 +72276,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2161 this -773419711 +712256162 1 this.current 13 @@ -70656,13 +72289,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2160 this -773419711 +712256162 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -70672,25 +72305,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2162 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70699,7 +72332,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2018863785 +2048425748 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70716,7 +72349,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2163 this -802011895 +1863932867 1 this.current 15 @@ -70729,25 +72362,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2162 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70756,13 +72389,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2018863785 +2048425748 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -802011895 +1863932867 1 return.current 15 @@ -70772,7 +72405,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2164 this -802011895 +1863932867 1 this.current 15 @@ -70782,7 +72415,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2165 this -802011895 +1863932867 1 this.current 15 @@ -70792,7 +72425,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2165 this -802011895 +1863932867 1 this.current 15 @@ -70805,13 +72438,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2164 this -802011895 +1863932867 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -70821,25 +72454,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2166 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70848,7 +72481,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1806550693 +1373810119 1 x.getClass().getName() "java.lang.Double" @@ -70865,7 +72498,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2167 this -1573695965 +445288316 1 this.current 20 @@ -70878,25 +72511,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2166 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -70905,13 +72538,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1806550693 +1373810119 1 x.getClass().getName() "java.lang.Double" 1 return -1573695965 +445288316 1 return.current 20 @@ -70921,7 +72554,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2168 this -1573695965 +445288316 1 this.current 20 @@ -70931,7 +72564,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2169 this -1573695965 +445288316 1 this.current 20 @@ -70941,7 +72574,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2169 this -1573695965 +445288316 1 this.current 20 @@ -70954,13 +72587,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2168 this -1573695965 +445288316 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -70970,7 +72603,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2170 this -773419711 +712256162 1 this.current 13 @@ -70980,7 +72613,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2171 this -773419711 +712256162 1 this.current 13 @@ -70990,7 +72623,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2171 this -773419711 +712256162 1 this.current 13 @@ -71003,7 +72636,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2170 this -773419711 +712256162 1 this.current 14 @@ -71013,7 +72646,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2172 this -773419711 +712256162 1 this.current 14 @@ -71023,7 +72656,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2172 this -773419711 +712256162 1 this.current 14 @@ -71036,7 +72669,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2173 this -773419711 +712256162 1 this.current 14 @@ -71046,7 +72679,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2174 this -773419711 +712256162 1 this.current 14 @@ -71056,7 +72689,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2174 this -773419711 +712256162 1 this.current 14 @@ -71069,13 +72702,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2173 this -773419711 +712256162 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -71085,25 +72718,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2175 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71112,7 +72745,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -699487303 +592688102 1 x.getClass().getName() "java.lang.Long" @@ -71129,7 +72762,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2176 this -957617843 +103887628 1 this.current 2 @@ -71142,25 +72775,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2175 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71169,13 +72802,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -699487303 +592688102 1 x.getClass().getName() "java.lang.Long" 1 return -957617843 +103887628 1 return.current 2 @@ -71185,7 +72818,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2177 this -957617843 +103887628 1 this.current 2 @@ -71195,7 +72828,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2178 this -957617843 +103887628 1 this.current 2 @@ -71205,7 +72838,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2178 this -957617843 +103887628 1 this.current 2 @@ -71218,13 +72851,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2177 this -957617843 +103887628 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -71234,25 +72867,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2179 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71261,7 +72894,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1440636683 +1123629720 1 x.getClass().getName() "java.lang.String" @@ -71278,7 +72911,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2180 this -2050094903 +205962452 1 this.current 20 @@ -71291,25 +72924,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2179 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71318,13 +72951,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1440636683 +1123629720 1 x.getClass().getName() "java.lang.String" 1 return -2050094903 +205962452 1 return.current 20 @@ -71334,7 +72967,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2181 this -2050094903 +205962452 1 this.current 20 @@ -71344,7 +72977,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2182 this -2050094903 +205962452 1 this.current 20 @@ -71354,7 +72987,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2182 this -2050094903 +205962452 1 this.current 20 @@ -71367,13 +73000,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2181 this -2050094903 +205962452 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -71383,7 +73016,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2183 this -773419711 +712256162 1 this.current 14 @@ -71393,7 +73026,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2184 this -773419711 +712256162 1 this.current 14 @@ -71403,7 +73036,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2184 this -773419711 +712256162 1 this.current 14 @@ -71416,7 +73049,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2183 this -773419711 +712256162 1 this.current 15 @@ -71426,7 +73059,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2185 this -773419711 +712256162 1 this.current 15 @@ -71436,7 +73069,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2185 this -773419711 +712256162 1 this.current 15 @@ -71449,7 +73082,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2186 this -773419711 +712256162 1 this.current 15 @@ -71459,7 +73092,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2187 this -773419711 +712256162 1 this.current 15 @@ -71469,7 +73102,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2187 this -773419711 +712256162 1 this.current 15 @@ -71482,13 +73115,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2186 this -773419711 +712256162 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -71498,25 +73131,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2188 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71525,7 +73158,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1717402253 +842326585 1 x.getClass().getName() "java.lang.String" @@ -71542,7 +73175,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2189 this -51966844 +1032986144 1 this.current 0 @@ -71555,25 +73188,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2188 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71582,13 +73215,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1717402253 +842326585 1 x.getClass().getName() "java.lang.String" 1 return -51966844 +1032986144 1 return.current 0 @@ -71598,7 +73231,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2190 this -51966844 +1032986144 1 this.current 0 @@ -71608,7 +73241,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2191 this -51966844 +1032986144 1 this.current 0 @@ -71618,7 +73251,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2191 this -51966844 +1032986144 1 this.current 0 @@ -71631,7 +73264,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2190 this -51966844 +1032986144 1 this.current 0 @@ -71647,25 +73280,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2192 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71674,7 +73307,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -71691,7 +73324,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2193 this -1528386426 +917819120 1 this.current 12 @@ -71704,25 +73337,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2192 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71731,13 +73364,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1528386426 +917819120 1 return.current 12 @@ -71747,7 +73380,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2194 this -1528386426 +917819120 1 this.current 12 @@ -71757,7 +73390,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2195 this -1528386426 +917819120 1 this.current 12 @@ -71767,7 +73400,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2195 this -1528386426 +917819120 1 this.current 12 @@ -71780,13 +73413,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2194 this -1528386426 +917819120 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -71796,7 +73429,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2196 this -773419711 +712256162 1 this.current 15 @@ -71806,7 +73439,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2197 this -773419711 +712256162 1 this.current 15 @@ -71816,7 +73449,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2197 this -773419711 +712256162 1 this.current 15 @@ -71829,7 +73462,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2196 this -773419711 +712256162 1 this.current 16 @@ -71839,7 +73472,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2198 this -773419711 +712256162 1 this.current 16 @@ -71849,7 +73482,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2198 this -773419711 +712256162 1 this.current 16 @@ -71862,7 +73495,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2199 this -773419711 +712256162 1 this.current 16 @@ -71872,7 +73505,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2200 this -773419711 +712256162 1 this.current 16 @@ -71882,7 +73515,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2200 this -773419711 +712256162 1 this.current 16 @@ -71895,13 +73528,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2199 this -773419711 +712256162 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -71911,25 +73544,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2201 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71938,7 +73571,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -71955,7 +73588,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2202 this -1538760015 +263025902 1 this.current 14 @@ -71968,25 +73601,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2201 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -71995,13 +73628,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1538760015 +263025902 1 return.current 14 @@ -72011,7 +73644,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2203 this -1538760015 +263025902 1 this.current 14 @@ -72021,7 +73654,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2204 this -1538760015 +263025902 1 this.current 14 @@ -72031,7 +73664,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2204 this -1538760015 +263025902 1 this.current 14 @@ -72044,13 +73677,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2203 this -1538760015 +263025902 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -72060,25 +73693,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2205 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72087,7 +73720,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1941494931 +438135304 1 x.getClass().getName() "java.lang.Object" @@ -72104,7 +73737,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2206 this -1838772799 +936580213 1 this.current 20 @@ -72117,25 +73750,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2205 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72144,13 +73777,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1941494931 +438135304 1 x.getClass().getName() "java.lang.Object" 1 return -1838772799 +936580213 1 return.current 20 @@ -72160,7 +73793,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2207 this -1838772799 +936580213 1 this.current 20 @@ -72170,7 +73803,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2208 this -1838772799 +936580213 1 this.current 20 @@ -72180,7 +73813,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2208 this -1838772799 +936580213 1 this.current 20 @@ -72193,13 +73826,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2207 this -1838772799 +936580213 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -72209,7 +73842,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2209 this -773419711 +712256162 1 this.current 16 @@ -72219,7 +73852,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2210 this -773419711 +712256162 1 this.current 16 @@ -72229,7 +73862,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2210 this -773419711 +712256162 1 this.current 16 @@ -72242,7 +73875,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2209 this -773419711 +712256162 1 this.current 17 @@ -72252,7 +73885,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2211 this -773419711 +712256162 1 this.current 17 @@ -72262,7 +73895,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2211 this -773419711 +712256162 1 this.current 17 @@ -72275,7 +73908,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2212 this -773419711 +712256162 1 this.current 17 @@ -72285,7 +73918,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2213 this -773419711 +712256162 1 this.current 17 @@ -72295,7 +73928,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2213 this -773419711 +712256162 1 this.current 17 @@ -72308,13 +73941,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2212 this -773419711 +712256162 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -72324,25 +73957,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2214 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72351,7 +73984,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1964752463 +662736689 1 x.getClass().getName() "java.lang.Integer" @@ -72368,7 +74001,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2215 this -1886089369 +1131316523 1 this.current 0 @@ -72381,25 +74014,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2214 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72408,13 +74041,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1964752463 +662736689 1 x.getClass().getName() "java.lang.Integer" 1 return -1886089369 +1131316523 1 return.current 0 @@ -72424,7 +74057,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2216 this -1886089369 +1131316523 1 this.current 0 @@ -72434,7 +74067,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2217 this -1886089369 +1131316523 1 this.current 0 @@ -72444,7 +74077,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2217 this -1886089369 +1131316523 1 this.current 0 @@ -72457,7 +74090,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2216 this -1886089369 +1131316523 1 this.current 0 @@ -72473,25 +74106,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2218 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72500,7 +74133,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -497911416 +852687460 1 x.getClass().getName() "java.lang.String" @@ -72517,7 +74150,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2219 this -1800880000 +495792375 1 this.current 20 @@ -72530,25 +74163,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2218 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72557,13 +74190,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -497911416 +852687460 1 x.getClass().getName() "java.lang.String" 1 return -1800880000 +495792375 1 return.current 20 @@ -72573,7 +74206,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2220 this -1800880000 +495792375 1 this.current 20 @@ -72583,7 +74216,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2221 this -1800880000 +495792375 1 this.current 20 @@ -72593,7 +74226,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2221 this -1800880000 +495792375 1 this.current 20 @@ -72606,13 +74239,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2220 this -1800880000 +495792375 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -72622,7 +74255,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2222 this -773419711 +712256162 1 this.current 17 @@ -72632,7 +74265,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2223 this -773419711 +712256162 1 this.current 17 @@ -72642,7 +74275,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2223 this -773419711 +712256162 1 this.current 17 @@ -72655,7 +74288,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2222 this -773419711 +712256162 1 this.current 18 @@ -72665,7 +74298,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2224 this -773419711 +712256162 1 this.current 18 @@ -72675,7 +74308,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2224 this -773419711 +712256162 1 this.current 18 @@ -72688,7 +74321,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2225 this -773419711 +712256162 1 this.current 18 @@ -72698,7 +74331,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2226 this -773419711 +712256162 1 this.current 18 @@ -72708,7 +74341,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2226 this -773419711 +712256162 1 this.current 18 @@ -72721,13 +74354,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2225 this -773419711 +712256162 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72737,25 +74370,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2227 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72764,7 +74397,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -755639182 +1045941616 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72781,7 +74414,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2228 this -1956927163 +161960012 1 this.current 15 @@ -72794,25 +74427,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2227 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72821,13 +74454,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -755639182 +1045941616 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1956927163 +161960012 1 return.current 15 @@ -72837,7 +74470,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2229 this -1956927163 +161960012 1 this.current 15 @@ -72847,7 +74480,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2230 this -1956927163 +161960012 1 this.current 15 @@ -72857,7 +74490,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2230 this -1956927163 +161960012 1 this.current 15 @@ -72870,13 +74503,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2229 this -1956927163 +161960012 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72886,25 +74519,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2231 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72913,7 +74546,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1362774736 +738433734 1 x.getClass().getName() "java.lang.Double" @@ -72930,7 +74563,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2232 this -1241892697 +1484594489 1 this.current 20 @@ -72943,25 +74576,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2231 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -72970,13 +74603,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1362774736 +738433734 1 x.getClass().getName() "java.lang.Double" 1 return -1241892697 +1484594489 1 return.current 20 @@ -72986,7 +74619,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2233 this -1241892697 +1484594489 1 this.current 20 @@ -72996,7 +74629,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2234 this -1241892697 +1484594489 1 this.current 20 @@ -73006,7 +74639,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2234 this -1241892697 +1484594489 1 this.current 20 @@ -73019,13 +74652,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2233 this -1241892697 +1484594489 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -73035,7 +74668,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2235 this -773419711 +712256162 1 this.current 18 @@ -73045,7 +74678,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2236 this -773419711 +712256162 1 this.current 18 @@ -73055,7 +74688,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2236 this -773419711 +712256162 1 this.current 18 @@ -73068,7 +74701,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2235 this -773419711 +712256162 1 this.current 19 @@ -73078,7 +74711,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2237 this -773419711 +712256162 1 this.current 19 @@ -73088,7 +74721,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2237 this -773419711 +712256162 1 this.current 19 @@ -73101,7 +74734,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2238 this -773419711 +712256162 1 this.current 19 @@ -73111,7 +74744,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2239 this -773419711 +712256162 1 this.current 19 @@ -73121,7 +74754,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2239 this -773419711 +712256162 1 this.current 19 @@ -73134,13 +74767,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2238 this -773419711 +712256162 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -73150,25 +74783,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2240 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73177,7 +74810,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1096993286 +1489069835 1 x.getClass().getName() "java.lang.Long" @@ -73194,7 +74827,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2241 this -1019048307 +1800890735 1 this.current 2 @@ -73207,25 +74840,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2240 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73234,13 +74867,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1096993286 +1489069835 1 x.getClass().getName() "java.lang.Long" 1 return -1019048307 +1800890735 1 return.current 2 @@ -73250,7 +74883,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2242 this -1019048307 +1800890735 1 this.current 2 @@ -73260,7 +74893,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2243 this -1019048307 +1800890735 1 this.current 2 @@ -73270,7 +74903,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2243 this -1019048307 +1800890735 1 this.current 2 @@ -73283,13 +74916,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2242 this -1019048307 +1800890735 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -73299,25 +74932,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2244 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73326,7 +74959,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -962810924 +1538399081 1 x.getClass().getName() "java.lang.String" @@ -73343,7 +74976,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2245 this -673919523 +1805013491 1 this.current 20 @@ -73356,25 +74989,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2244 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73383,13 +75016,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -962810924 +1538399081 1 x.getClass().getName() "java.lang.String" 1 return -673919523 +1805013491 1 return.current 20 @@ -73399,7 +75032,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2246 this -673919523 +1805013491 1 this.current 20 @@ -73409,7 +75042,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2247 this -673919523 +1805013491 1 this.current 20 @@ -73419,7 +75052,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2247 this -673919523 +1805013491 1 this.current 20 @@ -73432,13 +75065,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2246 this -673919523 +1805013491 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -73448,7 +75081,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2248 this -773419711 +712256162 1 this.current 19 @@ -73458,7 +75091,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2249 this -773419711 +712256162 1 this.current 19 @@ -73468,7 +75101,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2249 this -773419711 +712256162 1 this.current 19 @@ -73481,7 +75114,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2248 this -773419711 +712256162 1 this.current 20 @@ -73491,7 +75124,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2250 this -773419711 +712256162 1 this.current 20 @@ -73501,7 +75134,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2250 this -773419711 +712256162 1 this.current 20 @@ -73514,7 +75147,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2251 this -773419711 +712256162 1 this.current 20 @@ -73524,7 +75157,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2252 this -773419711 +712256162 1 this.current 20 @@ -73534,7 +75167,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2252 this -773419711 +712256162 1 this.current 20 @@ -73547,13 +75180,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2251 this -773419711 +712256162 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -73563,25 +75196,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2253 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73590,7 +75223,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -736668783 +951880373 1 x.getClass().getName() "java.lang.String" @@ -73607,7 +75240,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2254 this -949010926 +1752203484 1 this.current 0 @@ -73620,25 +75253,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2253 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73647,13 +75280,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -736668783 +951880373 1 x.getClass().getName() "java.lang.String" 1 return -949010926 +1752203484 1 return.current 0 @@ -73663,7 +75296,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2255 this -949010926 +1752203484 1 this.current 0 @@ -73673,7 +75306,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2256 this -949010926 +1752203484 1 this.current 0 @@ -73683,7 +75316,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2256 this -949010926 +1752203484 1 this.current 0 @@ -73696,7 +75329,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2255 this -949010926 +1752203484 1 this.current 0 @@ -73712,25 +75345,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2257 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73739,7 +75372,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -73756,7 +75389,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2258 this -665587013 +601008104 1 this.current 12 @@ -73769,25 +75402,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2257 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73796,13 +75429,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -665587013 +601008104 1 return.current 12 @@ -73812,7 +75445,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2259 this -665587013 +601008104 1 this.current 12 @@ -73822,7 +75455,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2260 this -665587013 +601008104 1 this.current 12 @@ -73832,7 +75465,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2260 this -665587013 +601008104 1 this.current 12 @@ -73845,13 +75478,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2259 this -665587013 +601008104 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -73861,7 +75494,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2261 this -773419711 +712256162 1 this.current 20 @@ -73871,7 +75504,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2262 this -773419711 +712256162 1 this.current 20 @@ -73881,7 +75514,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2262 this -773419711 +712256162 1 this.current 20 @@ -73894,7 +75527,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2261 this -773419711 +712256162 1 this.current 0 @@ -73904,7 +75537,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2263 this -773419711 +712256162 1 this.current 0 @@ -73914,7 +75547,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2263 this -773419711 +712256162 1 this.current 0 @@ -73927,25 +75560,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 2264 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -73965,7 +75598,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2265 this -278610268 +2056418216 1 this.current 4 @@ -73978,25 +75611,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 2264 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74005,7 +75638,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -278610268 +2056418216 1 return.current 4 @@ -74015,7 +75648,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2266 this -278610268 +2056418216 1 this.current 4 @@ -74025,7 +75658,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2266 this -278610268 +2056418216 1 this.current 4 @@ -74038,7 +75671,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2267 this -278610268 +2056418216 1 this.current 4 @@ -74048,7 +75681,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2268 this -278610268 +2056418216 1 this.current 4 @@ -74058,7 +75691,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2268 this -278610268 +2056418216 1 this.current 4 @@ -74071,7 +75704,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2267 this -278610268 +2056418216 1 this.current 4 @@ -74087,25 +75720,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2269 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74114,7 +75747,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -74131,7 +75764,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2270 this -1088423816 +648525677 1 this.current 13 @@ -74144,25 +75777,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2269 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74171,13 +75804,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1088423816 +648525677 1 return.current 13 @@ -74187,7 +75820,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2271 this -1088423816 +648525677 1 this.current 13 @@ -74197,7 +75830,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2272 this -1088423816 +648525677 1 this.current 13 @@ -74207,7 +75840,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2272 this -1088423816 +648525677 1 this.current 13 @@ -74220,13 +75853,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2271 this -1088423816 +648525677 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -74236,7 +75869,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2273 this -278610268 +2056418216 1 this.current 4 @@ -74246,7 +75879,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2274 this -278610268 +2056418216 1 this.current 4 @@ -74256,7 +75889,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2274 this -278610268 +2056418216 1 this.current 4 @@ -74269,7 +75902,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2273 this -278610268 +2056418216 1 this.current 2 @@ -74279,7 +75912,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2275 this -278610268 +2056418216 1 this.current 2 @@ -74289,7 +75922,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2275 this -278610268 +2056418216 1 this.current 2 @@ -74302,7 +75935,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2276 this -278610268 +2056418216 1 this.current 2 @@ -74312,7 +75945,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2277 this -278610268 +2056418216 1 this.current 2 @@ -74322,7 +75955,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2277 this -278610268 +2056418216 1 this.current 2 @@ -74335,13 +75968,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2276 this -278610268 +2056418216 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -74351,25 +75984,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2278 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74378,7 +76011,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -873370366 +1253946629 1 x.getClass().getName() "java.lang.Object" @@ -74395,7 +76028,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2279 this -685014117 +2095490653 1 this.current 20 @@ -74408,25 +76041,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2278 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74435,13 +76068,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -873370366 +1253946629 1 x.getClass().getName() "java.lang.Object" 1 return -685014117 +2095490653 1 return.current 20 @@ -74451,7 +76084,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2280 this -685014117 +2095490653 1 this.current 20 @@ -74461,7 +76094,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2281 this -685014117 +2095490653 1 this.current 20 @@ -74471,7 +76104,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2281 this -685014117 +2095490653 1 this.current 20 @@ -74484,13 +76117,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2280 this -685014117 +2095490653 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -74500,7 +76133,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2282 this -278610268 +2056418216 1 this.current 2 @@ -74510,7 +76143,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2283 this -278610268 +2056418216 1 this.current 2 @@ -74520,7 +76153,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2283 this -278610268 +2056418216 1 this.current 2 @@ -74533,7 +76166,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2282 this -278610268 +2056418216 1 this.current 12 @@ -74543,7 +76176,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2284 this -278610268 +2056418216 1 this.current 12 @@ -74553,7 +76186,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2284 this -278610268 +2056418216 1 this.current 12 @@ -74566,7 +76199,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2285 this -278610268 +2056418216 1 this.current 12 @@ -74576,7 +76209,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2286 this -278610268 +2056418216 1 this.current 12 @@ -74586,7 +76219,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2286 this -278610268 +2056418216 1 this.current 12 @@ -74599,13 +76232,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2285 this -278610268 +2056418216 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -74615,25 +76248,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2287 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74642,7 +76275,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -372432852 +352359770 1 x.getClass().getName() "java.lang.Integer" @@ -74659,7 +76292,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2288 this -1711596206 +243745864 1 this.current 20 @@ -74672,25 +76305,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2287 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74699,13 +76332,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -372432852 +352359770 1 x.getClass().getName() "java.lang.Integer" 1 return -1711596206 +243745864 1 return.current 20 @@ -74715,7 +76348,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2289 this -1711596206 +243745864 1 this.current 20 @@ -74725,7 +76358,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2290 this -1711596206 +243745864 1 this.current 20 @@ -74735,7 +76368,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2290 this -1711596206 +243745864 1 this.current 20 @@ -74748,13 +76381,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2289 this -1711596206 +243745864 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -74764,7 +76397,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2291 this -278610268 +2056418216 1 this.current 12 @@ -74774,7 +76407,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2292 this -278610268 +2056418216 1 this.current 12 @@ -74784,7 +76417,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2292 this -278610268 +2056418216 1 this.current 12 @@ -74797,7 +76430,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2291 this -278610268 +2056418216 1 this.current 13 @@ -74807,7 +76440,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2293 this -278610268 +2056418216 1 this.current 13 @@ -74817,7 +76450,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2293 this -278610268 +2056418216 1 this.current 13 @@ -74830,7 +76463,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2294 this -278610268 +2056418216 1 this.current 13 @@ -74840,7 +76473,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2295 this -278610268 +2056418216 1 this.current 13 @@ -74850,7 +76483,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2295 this -278610268 +2056418216 1 this.current 13 @@ -74863,13 +76496,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2294 this -278610268 +2056418216 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -74879,25 +76512,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2296 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74906,7 +76539,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1253982677 +699780352 1 x.getClass().getName() "java.lang.String" @@ -74923,7 +76556,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2297 this -282340681 +1613255205 1 this.current 20 @@ -74936,25 +76569,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2296 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -74963,13 +76596,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1253982677 +699780352 1 x.getClass().getName() "java.lang.String" 1 return -282340681 +1613255205 1 return.current 20 @@ -74979,7 +76612,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2298 this -282340681 +1613255205 1 this.current 20 @@ -74989,7 +76622,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2299 this -282340681 +1613255205 1 this.current 20 @@ -74999,7 +76632,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2299 this -282340681 +1613255205 1 this.current 20 @@ -75012,13 +76645,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2298 this -282340681 +1613255205 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -75028,7 +76661,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2300 this -278610268 +2056418216 1 this.current 13 @@ -75038,7 +76671,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2301 this -278610268 +2056418216 1 this.current 13 @@ -75048,7 +76681,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2301 this -278610268 +2056418216 1 this.current 13 @@ -75061,7 +76694,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2300 this -278610268 +2056418216 1 this.current 14 @@ -75071,7 +76704,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2302 this -278610268 +2056418216 1 this.current 14 @@ -75081,7 +76714,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2302 this -278610268 +2056418216 1 this.current 14 @@ -75094,7 +76727,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2303 this -278610268 +2056418216 1 this.current 14 @@ -75104,7 +76737,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2304 this -278610268 +2056418216 1 this.current 14 @@ -75114,7 +76747,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2304 this -278610268 +2056418216 1 this.current 14 @@ -75127,13 +76760,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2303 this -278610268 +2056418216 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -75143,25 +76776,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2305 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75170,7 +76803,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1508449344 +1897115967 1 x.getClass().getName() "DataStructures.MyInteger" @@ -75187,7 +76820,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2306 this -1463671773 +1166151249 1 this.current 14 @@ -75200,25 +76833,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2305 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75227,13 +76860,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1508449344 +1897115967 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1463671773 +1166151249 1 return.current 14 @@ -75243,7 +76876,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2307 this -1463671773 +1166151249 1 this.current 14 @@ -75253,7 +76886,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2308 this -1463671773 +1166151249 1 this.current 14 @@ -75263,7 +76896,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2308 this -1463671773 +1166151249 1 this.current 14 @@ -75276,13 +76909,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2307 this -1463671773 +1166151249 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -75292,7 +76925,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2309 this -278610268 +2056418216 1 this.current 14 @@ -75302,7 +76935,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2310 this -278610268 +2056418216 1 this.current 14 @@ -75312,7 +76945,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2310 this -278610268 +2056418216 1 this.current 14 @@ -75325,7 +76958,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2309 this -278610268 +2056418216 1 this.current 15 @@ -75335,7 +76968,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2311 this -278610268 +2056418216 1 this.current 15 @@ -75345,7 +76978,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2311 this -278610268 +2056418216 1 this.current 15 @@ -75358,7 +76991,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2312 this -278610268 +2056418216 1 this.current 15 @@ -75368,7 +77001,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2313 this -278610268 +2056418216 1 this.current 15 @@ -75378,7 +77011,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2313 this -278610268 +2056418216 1 this.current 15 @@ -75391,13 +77024,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2312 this -278610268 +2056418216 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75407,25 +77040,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2314 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75434,7 +77067,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -506312426 +1121453612 1 x.getClass().getName() "java.lang.Double" @@ -75451,7 +77084,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2315 this -1262734368 +1615056168 1 this.current 20 @@ -75464,25 +77097,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2314 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75491,13 +77124,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -506312426 +1121453612 1 x.getClass().getName() "java.lang.Double" 1 return -1262734368 +1615056168 1 return.current 20 @@ -75507,7 +77140,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2316 this -1262734368 +1615056168 1 this.current 20 @@ -75517,7 +77150,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2317 this -1262734368 +1615056168 1 this.current 20 @@ -75527,7 +77160,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2317 this -1262734368 +1615056168 1 this.current 20 @@ -75540,13 +77173,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2316 this -1262734368 +1615056168 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -75556,7 +77189,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2318 this -278610268 +2056418216 1 this.current 15 @@ -75566,7 +77199,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2319 this -278610268 +2056418216 1 this.current 15 @@ -75576,7 +77209,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2319 this -278610268 +2056418216 1 this.current 15 @@ -75589,7 +77222,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2318 this -278610268 +2056418216 1 this.current 16 @@ -75599,7 +77232,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2320 this -278610268 +2056418216 1 this.current 16 @@ -75609,7 +77242,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2320 this -278610268 +2056418216 1 this.current 16 @@ -75622,7 +77255,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2321 this -278610268 +2056418216 1 this.current 16 @@ -75632,7 +77265,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2322 this -278610268 +2056418216 1 this.current 16 @@ -75642,7 +77275,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2322 this -278610268 +2056418216 1 this.current 16 @@ -75655,13 +77288,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2321 this -278610268 +2056418216 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -75671,25 +77304,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2323 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75698,7 +77331,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1343123322 +213193302 1 x.getClass().getName() "java.lang.Long" @@ -75715,7 +77348,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2324 this -1673059237 +1502635287 1 this.current 4 @@ -75728,25 +77361,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2323 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75755,13 +77388,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1343123322 +213193302 1 x.getClass().getName() "java.lang.Long" 1 return -1673059237 +1502635287 1 return.current 4 @@ -75771,7 +77404,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2325 this -1673059237 +1502635287 1 this.current 4 @@ -75781,7 +77414,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2326 this -1673059237 +1502635287 1 this.current 4 @@ -75791,7 +77424,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2326 this -1673059237 +1502635287 1 this.current 4 @@ -75804,7 +77437,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2325 this -1673059237 +1502635287 1 this.current 4 @@ -75820,7 +77453,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2327 this -278610268 +2056418216 1 this.current 16 @@ -75830,7 +77463,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2328 this -278610268 +2056418216 1 this.current 16 @@ -75840,7 +77473,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2328 this -278610268 +2056418216 1 this.current 16 @@ -75853,7 +77486,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2327 this -278610268 +2056418216 1 this.current 17 @@ -75863,7 +77496,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2329 this -278610268 +2056418216 1 this.current 17 @@ -75873,7 +77506,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2329 this -278610268 +2056418216 1 this.current 17 @@ -75886,7 +77519,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2330 this -278610268 +2056418216 1 this.current 17 @@ -75896,7 +77529,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2331 this -278610268 +2056418216 1 this.current 17 @@ -75906,7 +77539,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2331 this -278610268 +2056418216 1 this.current 17 @@ -75919,13 +77552,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2330 this -278610268 +2056418216 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -75935,25 +77568,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2332 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -75962,7 +77595,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2103206088 +1543237999 1 x.getClass().getName() "java.lang.String" @@ -75979,7 +77612,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2333 this -1003891396 +632249781 1 this.current 20 @@ -75992,25 +77625,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2332 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76019,13 +77652,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2103206088 +1543237999 1 x.getClass().getName() "java.lang.String" 1 return -1003891396 +632249781 1 return.current 20 @@ -76035,7 +77668,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2334 this -1003891396 +632249781 1 this.current 20 @@ -76045,7 +77678,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2335 this -1003891396 +632249781 1 this.current 20 @@ -76055,7 +77688,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2335 this -1003891396 +632249781 1 this.current 20 @@ -76068,13 +77701,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2334 this -1003891396 +632249781 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -76084,7 +77717,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2336 this -278610268 +2056418216 1 this.current 17 @@ -76094,7 +77727,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2337 this -278610268 +2056418216 1 this.current 17 @@ -76104,7 +77737,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2337 this -278610268 +2056418216 1 this.current 17 @@ -76117,7 +77750,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2336 this -278610268 +2056418216 1 this.current 18 @@ -76127,7 +77760,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2338 this -278610268 +2056418216 1 this.current 18 @@ -76137,7 +77770,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2338 this -278610268 +2056418216 1 this.current 18 @@ -76150,7 +77783,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2339 this -278610268 +2056418216 1 this.current 18 @@ -76160,7 +77793,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2340 this -278610268 +2056418216 1 this.current 18 @@ -76170,7 +77803,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2340 this -278610268 +2056418216 1 this.current 18 @@ -76183,13 +77816,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2339 this -278610268 +2056418216 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -76199,25 +77832,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2341 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76226,7 +77859,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1771161740 +19717364 1 x.getClass().getName() "java.lang.String" @@ -76243,7 +77876,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2342 this -1644533113 +1540270363 1 this.current 20 @@ -76256,25 +77889,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2341 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76283,13 +77916,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1771161740 +19717364 1 x.getClass().getName() "java.lang.String" 1 return -1644533113 +1540270363 1 return.current 20 @@ -76299,7 +77932,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2343 this -1644533113 +1540270363 1 this.current 20 @@ -76309,7 +77942,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2344 this -1644533113 +1540270363 1 this.current 20 @@ -76319,7 +77952,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2344 this -1644533113 +1540270363 1 this.current 20 @@ -76332,13 +77965,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2343 this -1644533113 +1540270363 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -76348,7 +77981,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2345 this -278610268 +2056418216 1 this.current 18 @@ -76358,7 +77991,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2346 this -278610268 +2056418216 1 this.current 18 @@ -76368,7 +78001,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2346 this -278610268 +2056418216 1 this.current 18 @@ -76381,7 +78014,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2345 this -278610268 +2056418216 1 this.current 19 @@ -76391,7 +78024,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2347 this -278610268 +2056418216 1 this.current 19 @@ -76401,7 +78034,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2347 this -278610268 +2056418216 1 this.current 19 @@ -76414,7 +78047,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2348 this -278610268 +2056418216 1 this.current 19 @@ -76424,7 +78057,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2349 this -278610268 +2056418216 1 this.current 19 @@ -76434,7 +78067,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2349 this -278610268 +2056418216 1 this.current 19 @@ -76447,13 +78080,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2348 this -278610268 +2056418216 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -76463,25 +78096,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2350 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76490,7 +78123,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -76507,7 +78140,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2351 this -1553493301 +1597655940 1 this.current 12 @@ -76520,25 +78153,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2350 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76547,13 +78180,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1553493301 +1597655940 1 return.current 12 @@ -76563,7 +78196,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2352 this -1553493301 +1597655940 1 this.current 12 @@ -76573,7 +78206,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2353 this -1553493301 +1597655940 1 this.current 12 @@ -76583,7 +78216,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2353 this -1553493301 +1597655940 1 this.current 12 @@ -76596,13 +78229,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2352 this -1553493301 +1597655940 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -76612,7 +78245,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2354 this -278610268 +2056418216 1 this.current 19 @@ -76622,7 +78255,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2355 this -278610268 +2056418216 1 this.current 19 @@ -76632,7 +78265,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2355 this -278610268 +2056418216 1 this.current 19 @@ -76645,7 +78278,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2354 this -278610268 +2056418216 1 this.current 20 @@ -76655,7 +78288,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2356 this -278610268 +2056418216 1 this.current 20 @@ -76665,7 +78298,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2356 this -278610268 +2056418216 1 this.current 20 @@ -76678,7 +78311,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2357 this -278610268 +2056418216 1 this.current 20 @@ -76688,7 +78321,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2358 this -278610268 +2056418216 1 this.current 20 @@ -76698,7 +78331,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2358 this -278610268 +2056418216 1 this.current 20 @@ -76711,13 +78344,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2357 this -278610268 +2056418216 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -76727,25 +78360,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2359 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76754,7 +78387,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -76771,7 +78404,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2360 this -455729681 +2619171 1 this.current 13 @@ -76784,25 +78417,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2359 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -76811,13 +78444,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -455729681 +2619171 1 return.current 13 @@ -76827,7 +78460,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2361 this -455729681 +2619171 1 this.current 13 @@ -76837,7 +78470,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2362 this -455729681 +2619171 1 this.current 13 @@ -76847,7 +78480,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2362 this -455729681 +2619171 1 this.current 13 @@ -76860,13 +78493,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2361 this -455729681 +2619171 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -76876,7 +78509,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2363 this -278610268 +2056418216 1 this.current 20 @@ -76886,7 +78519,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2364 this -278610268 +2056418216 1 this.current 20 @@ -76896,7 +78529,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2364 this -278610268 +2056418216 1 this.current 20 @@ -76909,7 +78542,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2363 this -278610268 +2056418216 1 this.current 0 @@ -76919,7 +78552,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2365 this -278610268 +2056418216 1 this.current 0 @@ -76929,7 +78562,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2365 this -278610268 +2056418216 1 this.current 0 @@ -76942,7 +78575,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2366 this -1624142202 +1471868639 1 this.current 19 @@ -76952,7 +78585,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2367 this -1624142202 +1471868639 1 this.current 19 @@ -76962,7 +78595,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2367 this -1624142202 +1471868639 1 this.current 19 @@ -76975,7 +78608,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2366 this -1624142202 +1471868639 1 this.current 20 @@ -76985,25 +78618,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2368 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77023,7 +78656,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2369 this -1522063365 +1728790703 1 this.current 2 @@ -77036,25 +78669,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 2368 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77063,7 +78696,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1522063365 +1728790703 1 return.current 2 @@ -77073,7 +78706,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2370 this -1522063365 +1728790703 1 this.current 2 @@ -77083,7 +78716,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2371 this -1522063365 +1728790703 1 this.current 2 @@ -77093,7 +78726,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2371 this -1522063365 +1728790703 1 this.current 2 @@ -77106,13 +78739,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2370 this -1522063365 +1728790703 1 this.current 2 1 return -293351997 +876563773 1 return.getClass().getName() "java.lang.Long" @@ -77122,25 +78755,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 2372 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77149,7 +78782,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -293351997 +876563773 1 x.getClass().getName() "java.lang.Long" @@ -77159,25 +78792,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2373 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77186,7 +78819,7 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -293351997 +876563773 1 x.getClass().getName() "java.lang.Long" @@ -77203,7 +78836,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2374 this -493772491 +1227074340 1 this.current 4 @@ -77216,25 +78849,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2373 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77243,13 +78876,13 @@ DataStructures.CursorList.cursorSpace[..].next [21 3 12 5 2 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -293351997 +876563773 1 x.getClass().getName() "java.lang.Long" 1 return -493772491 +1227074340 1 return.current 4 @@ -77259,19 +78892,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 2375 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null 293351997 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null 876563773 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null "java.lang.Long" "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77287,19 +78920,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 2375 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77315,25 +78948,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 2372 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77342,7 +78975,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -293351997 +876563773 1 x.getClass().getName() "java.lang.Long" @@ -77352,19 +78985,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 2376 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77373,7 +79006,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -77383,25 +79016,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 2377 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77414,25 +79047,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 2377 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77448,25 +79081,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2378 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77486,7 +79119,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2379 this -957444229 +1154002927 1 this.current 12 @@ -77499,25 +79132,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 2378 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -77526,7 +79159,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -957444229 +1154002927 1 return.current 12 @@ -77536,7 +79169,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2380 this -957444229 +1154002927 1 this.current 12 @@ -77546,7 +79179,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2380 this -957444229 +1154002927 1 this.current 12 @@ -77559,7 +79192,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2381 this -957444229 +1154002927 1 this.current 12 @@ -77569,7 +79202,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2382 this -957444229 +1154002927 1 this.current 12 @@ -77579,7 +79212,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2382 this -957444229 +1154002927 1 this.current 12 @@ -77592,13 +79225,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2381 this -957444229 +1154002927 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -77608,7 +79241,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2383 this -957444229 +1154002927 1 this.current 12 @@ -77618,7 +79251,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2384 this -957444229 +1154002927 1 this.current 12 @@ -77628,7 +79261,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2384 this -957444229 +1154002927 1 this.current 12 @@ -77641,7 +79274,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2383 this -957444229 +1154002927 1 this.current 13 @@ -77651,7 +79284,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2385 this -957444229 +1154002927 1 this.current 13 @@ -77661,7 +79294,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2385 this -957444229 +1154002927 1 this.current 13 @@ -77674,7 +79307,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2386 this -957444229 +1154002927 1 this.current 13 @@ -77684,7 +79317,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2387 this -957444229 +1154002927 1 this.current 13 @@ -77694,7 +79327,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2387 this -957444229 +1154002927 1 this.current 13 @@ -77707,13 +79340,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2386 this -957444229 +1154002927 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -77723,7 +79356,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2388 this -957444229 +1154002927 1 this.current 13 @@ -77733,7 +79366,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2389 this -957444229 +1154002927 1 this.current 13 @@ -77743,7 +79376,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2389 this -957444229 +1154002927 1 this.current 13 @@ -77756,7 +79389,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2388 this -957444229 +1154002927 1 this.current 14 @@ -77766,7 +79399,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2390 this -957444229 +1154002927 1 this.current 14 @@ -77776,7 +79409,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2390 this -957444229 +1154002927 1 this.current 14 @@ -77789,7 +79422,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2391 this -957444229 +1154002927 1 this.current 14 @@ -77799,7 +79432,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2392 this -957444229 +1154002927 1 this.current 14 @@ -77809,7 +79442,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2392 this -957444229 +1154002927 1 this.current 14 @@ -77822,13 +79455,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2391 this -957444229 +1154002927 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -77838,7 +79471,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2393 this -957444229 +1154002927 1 this.current 14 @@ -77848,7 +79481,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2394 this -957444229 +1154002927 1 this.current 14 @@ -77858,7 +79491,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2394 this -957444229 +1154002927 1 this.current 14 @@ -77871,7 +79504,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2393 this -957444229 +1154002927 1 this.current 15 @@ -77881,7 +79514,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2395 this -957444229 +1154002927 1 this.current 15 @@ -77891,7 +79524,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2395 this -957444229 +1154002927 1 this.current 15 @@ -77904,7 +79537,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2396 this -957444229 +1154002927 1 this.current 15 @@ -77914,7 +79547,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2397 this -957444229 +1154002927 1 this.current 15 @@ -77924,7 +79557,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2397 this -957444229 +1154002927 1 this.current 15 @@ -77937,13 +79570,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2396 this -957444229 +1154002927 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77953,7 +79586,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2398 this -957444229 +1154002927 1 this.current 15 @@ -77963,7 +79596,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2399 this -957444229 +1154002927 1 this.current 15 @@ -77973,7 +79606,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2399 this -957444229 +1154002927 1 this.current 15 @@ -77986,7 +79619,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2398 this -957444229 +1154002927 1 this.current 16 @@ -77996,7 +79629,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2400 this -957444229 +1154002927 1 this.current 16 @@ -78006,7 +79639,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2400 this -957444229 +1154002927 1 this.current 16 @@ -78019,7 +79652,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2401 this -957444229 +1154002927 1 this.current 16 @@ -78029,7 +79662,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2402 this -957444229 +1154002927 1 this.current 16 @@ -78039,7 +79672,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2402 this -957444229 +1154002927 1 this.current 16 @@ -78052,13 +79685,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2401 this -957444229 +1154002927 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -78068,7 +79701,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2403 this -957444229 +1154002927 1 this.current 16 @@ -78078,7 +79711,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2404 this -957444229 +1154002927 1 this.current 16 @@ -78088,7 +79721,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2404 this -957444229 +1154002927 1 this.current 16 @@ -78101,7 +79734,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2403 this -957444229 +1154002927 1 this.current 17 @@ -78111,7 +79744,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2405 this -957444229 +1154002927 1 this.current 17 @@ -78121,7 +79754,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2405 this -957444229 +1154002927 1 this.current 17 @@ -78134,7 +79767,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2406 this -957444229 +1154002927 1 this.current 17 @@ -78144,7 +79777,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2407 this -957444229 +1154002927 1 this.current 17 @@ -78154,7 +79787,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2407 this -957444229 +1154002927 1 this.current 17 @@ -78167,13 +79800,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2406 this -957444229 +1154002927 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -78183,7 +79816,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2408 this -957444229 +1154002927 1 this.current 17 @@ -78193,7 +79826,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2409 this -957444229 +1154002927 1 this.current 17 @@ -78203,7 +79836,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2409 this -957444229 +1154002927 1 this.current 17 @@ -78216,7 +79849,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2408 this -957444229 +1154002927 1 this.current 18 @@ -78226,7 +79859,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2410 this -957444229 +1154002927 1 this.current 18 @@ -78236,7 +79869,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2410 this -957444229 +1154002927 1 this.current 18 @@ -78249,7 +79882,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2411 this -957444229 +1154002927 1 this.current 18 @@ -78259,7 +79892,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2412 this -957444229 +1154002927 1 this.current 18 @@ -78269,7 +79902,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2412 this -957444229 +1154002927 1 this.current 18 @@ -78282,13 +79915,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2411 this -957444229 +1154002927 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78298,7 +79931,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2413 this -957444229 +1154002927 1 this.current 18 @@ -78308,7 +79941,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2414 this -957444229 +1154002927 1 this.current 18 @@ -78318,7 +79951,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2414 this -957444229 +1154002927 1 this.current 18 @@ -78331,7 +79964,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2413 this -957444229 +1154002927 1 this.current 19 @@ -78341,7 +79974,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2415 this -957444229 +1154002927 1 this.current 19 @@ -78351,7 +79984,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2415 this -957444229 +1154002927 1 this.current 19 @@ -78364,7 +79997,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2416 this -957444229 +1154002927 1 this.current 19 @@ -78374,7 +80007,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2417 this -957444229 +1154002927 1 this.current 19 @@ -78384,7 +80017,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2417 this -957444229 +1154002927 1 this.current 19 @@ -78397,13 +80030,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2416 this -957444229 +1154002927 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -78413,7 +80046,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2418 this -957444229 +1154002927 1 this.current 19 @@ -78423,7 +80056,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2419 this -957444229 +1154002927 1 this.current 19 @@ -78433,7 +80066,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2419 this -957444229 +1154002927 1 this.current 19 @@ -78446,7 +80079,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2418 this -957444229 +1154002927 1 this.current 20 @@ -78456,7 +80089,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2420 this -957444229 +1154002927 1 this.current 20 @@ -78466,7 +80099,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2420 this -957444229 +1154002927 1 this.current 20 @@ -78479,7 +80112,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2421 this -957444229 +1154002927 1 this.current 20 @@ -78489,7 +80122,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2422 this -957444229 +1154002927 1 this.current 20 @@ -78499,7 +80132,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2422 this -957444229 +1154002927 1 this.current 20 @@ -78512,13 +80145,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2421 this -957444229 +1154002927 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -78528,7 +80161,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2423 this -957444229 +1154002927 1 this.current 20 @@ -78538,7 +80171,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2424 this -957444229 +1154002927 1 this.current 20 @@ -78548,7 +80181,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2424 this -957444229 +1154002927 1 this.current 20 @@ -78561,7 +80194,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2423 this -957444229 +1154002927 1 this.current 0 @@ -78571,7 +80204,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2425 this -957444229 +1154002927 1 this.current 0 @@ -78581,7 +80214,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2425 this -957444229 +1154002927 1 this.current 0 @@ -78594,19 +80227,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 this_invocation_nonce 2376 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78615,7 +80248,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -78625,25 +80258,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 2426 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78656,25 +80289,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 2426 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78690,25 +80323,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2427 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78728,7 +80361,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2428 this -670189832 +2070529722 1 this.current 12 @@ -78741,25 +80374,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 2427 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78768,7 +80401,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -670189832 +2070529722 1 return.current 12 @@ -78778,7 +80411,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2429 this -670189832 +2070529722 1 this.current 12 @@ -78788,7 +80421,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2429 this -670189832 +2070529722 1 this.current 12 @@ -78801,7 +80434,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2430 this -670189832 +2070529722 1 this.current 12 @@ -78811,7 +80444,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2431 this -670189832 +2070529722 1 this.current 12 @@ -78821,7 +80454,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2431 this -670189832 +2070529722 1 this.current 12 @@ -78834,13 +80467,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2430 this -670189832 +2070529722 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -78850,25 +80483,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2432 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78877,7 +80510,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -328777909 +1188753216 1 x.getClass().getName() "java.lang.Object" @@ -78894,7 +80527,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2433 this -294892832 +317986356 1 this.current 0 @@ -78907,25 +80540,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2432 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -78934,13 +80567,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -328777909 +1188753216 1 x.getClass().getName() "java.lang.Object" 1 return -294892832 +317986356 1 return.current 0 @@ -78950,7 +80583,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2434 this -294892832 +317986356 1 this.current 0 @@ -78960,7 +80593,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2435 this -294892832 +317986356 1 this.current 0 @@ -78970,7 +80603,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2435 this -294892832 +317986356 1 this.current 0 @@ -78983,7 +80616,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2434 this -294892832 +317986356 1 this.current 0 @@ -78999,25 +80632,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2436 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79026,7 +80659,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2019053795 +331510866 1 x.getClass().getName() "java.lang.Integer" @@ -79043,7 +80676,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2437 this -1848026318 +640363654 1 this.current 20 @@ -79056,25 +80689,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2436 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79083,13 +80716,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -2019053795 +331510866 1 x.getClass().getName() "java.lang.Integer" 1 return -1848026318 +640363654 1 return.current 20 @@ -79099,7 +80732,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2438 this -1848026318 +640363654 1 this.current 20 @@ -79109,7 +80742,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2439 this -1848026318 +640363654 1 this.current 20 @@ -79119,7 +80752,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2439 this -1848026318 +640363654 1 this.current 20 @@ -79132,13 +80765,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2438 this -1848026318 +640363654 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -79148,7 +80781,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2440 this -670189832 +2070529722 1 this.current 12 @@ -79158,7 +80791,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2441 this -670189832 +2070529722 1 this.current 12 @@ -79168,7 +80801,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2441 this -670189832 +2070529722 1 this.current 12 @@ -79181,7 +80814,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2440 this -670189832 +2070529722 1 this.current 13 @@ -79191,7 +80824,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2442 this -670189832 +2070529722 1 this.current 13 @@ -79201,7 +80834,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2442 this -670189832 +2070529722 1 this.current 13 @@ -79214,7 +80847,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2443 this -670189832 +2070529722 1 this.current 13 @@ -79224,7 +80857,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2444 this -670189832 +2070529722 1 this.current 13 @@ -79234,7 +80867,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2444 this -670189832 +2070529722 1 this.current 13 @@ -79247,13 +80880,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2443 this -670189832 +2070529722 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -79263,25 +80896,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2445 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79290,7 +80923,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -722340065 +924477420 1 x.getClass().getName() "java.lang.String" @@ -79307,7 +80940,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2446 this -644415964 +99451533 1 this.current 0 @@ -79320,25 +80953,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2445 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79347,13 +80980,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -722340065 +924477420 1 x.getClass().getName() "java.lang.String" 1 return -644415964 +99451533 1 return.current 0 @@ -79363,7 +80996,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2447 this -644415964 +99451533 1 this.current 0 @@ -79373,7 +81006,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2448 this -644415964 +99451533 1 this.current 0 @@ -79383,7 +81016,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2448 this -644415964 +99451533 1 this.current 0 @@ -79396,7 +81029,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2447 this -644415964 +99451533 1 this.current 0 @@ -79412,25 +81045,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2449 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79439,7 +81072,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -939075127 +84739718 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79456,7 +81089,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2450 this -1178337686 +2050835901 1 this.current 14 @@ -79469,25 +81102,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2449 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79496,13 +81129,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -939075127 +84739718 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1178337686 +2050835901 1 return.current 14 @@ -79512,7 +81145,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2451 this -1178337686 +2050835901 1 this.current 14 @@ -79522,7 +81155,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2452 this -1178337686 +2050835901 1 this.current 14 @@ -79532,7 +81165,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2452 this -1178337686 +2050835901 1 this.current 14 @@ -79545,13 +81178,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2451 this -1178337686 +2050835901 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -79561,7 +81194,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2453 this -670189832 +2070529722 1 this.current 13 @@ -79571,7 +81204,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2454 this -670189832 +2070529722 1 this.current 13 @@ -79581,7 +81214,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2454 this -670189832 +2070529722 1 this.current 13 @@ -79594,7 +81227,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2453 this -670189832 +2070529722 1 this.current 14 @@ -79604,7 +81237,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2455 this -670189832 +2070529722 1 this.current 14 @@ -79614,7 +81247,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2455 this -670189832 +2070529722 1 this.current 14 @@ -79627,7 +81260,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2456 this -670189832 +2070529722 1 this.current 14 @@ -79637,7 +81270,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2457 this -670189832 +2070529722 1 this.current 14 @@ -79647,7 +81280,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2457 this -670189832 +2070529722 1 this.current 14 @@ -79660,13 +81293,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2456 this -670189832 +2070529722 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -79676,25 +81309,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2458 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79703,7 +81336,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -227295968 +511473681 1 x.getClass().getName() "java.lang.Double" @@ -79720,7 +81353,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2459 this -1937409810 +2011986105 1 this.current 0 @@ -79733,25 +81366,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2458 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79760,13 +81393,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -227295968 +511473681 1 x.getClass().getName() "java.lang.Double" 1 return -1937409810 +2011986105 1 return.current 0 @@ -79776,7 +81409,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2460 this -1937409810 +2011986105 1 this.current 0 @@ -79786,7 +81419,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2461 this -1937409810 +2011986105 1 this.current 0 @@ -79796,7 +81429,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2461 this -1937409810 +2011986105 1 this.current 0 @@ -79809,7 +81442,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2460 this -1937409810 +2011986105 1 this.current 0 @@ -79825,25 +81458,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2462 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79852,7 +81485,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1899620856 +439904756 1 x.getClass().getName() "java.lang.Long" @@ -79869,7 +81502,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2463 this -288346843 +171497379 1 this.current 20 @@ -79882,25 +81515,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2462 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -79909,13 +81542,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1899620856 +439904756 1 x.getClass().getName() "java.lang.Long" 1 return -288346843 +171497379 1 return.current 20 @@ -79925,7 +81558,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2464 this -288346843 +171497379 1 this.current 20 @@ -79935,7 +81568,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2465 this -288346843 +171497379 1 this.current 20 @@ -79945,7 +81578,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2465 this -288346843 +171497379 1 this.current 20 @@ -79958,13 +81591,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2464 this -288346843 +171497379 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -79974,7 +81607,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2466 this -670189832 +2070529722 1 this.current 14 @@ -79984,7 +81617,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2467 this -670189832 +2070529722 1 this.current 14 @@ -79994,7 +81627,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2467 this -670189832 +2070529722 1 this.current 14 @@ -80007,7 +81640,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2466 this -670189832 +2070529722 1 this.current 15 @@ -80017,7 +81650,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2468 this -670189832 +2070529722 1 this.current 15 @@ -80027,7 +81660,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2468 this -670189832 +2070529722 1 this.current 15 @@ -80040,7 +81673,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2469 this -670189832 +2070529722 1 this.current 15 @@ -80050,7 +81683,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2470 this -670189832 +2070529722 1 this.current 15 @@ -80060,7 +81693,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2470 this -670189832 +2070529722 1 this.current 15 @@ -80073,13 +81706,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2469 this -670189832 +2070529722 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80089,25 +81722,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2471 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80116,7 +81749,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1522282669 +2012846597 1 x.getClass().getName() "java.lang.String" @@ -80133,7 +81766,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2472 this -2032131172 +1665404403 1 this.current 0 @@ -80146,25 +81779,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2471 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80173,13 +81806,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1522282669 +2012846597 1 x.getClass().getName() "java.lang.String" 1 return -2032131172 +1665404403 1 return.current 0 @@ -80189,7 +81822,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2473 this -2032131172 +1665404403 1 this.current 0 @@ -80199,7 +81832,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2474 this -2032131172 +1665404403 1 this.current 0 @@ -80209,7 +81842,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2474 this -2032131172 +1665404403 1 this.current 0 @@ -80222,7 +81855,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2473 this -2032131172 +1665404403 1 this.current 0 @@ -80238,25 +81871,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2475 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80265,7 +81898,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -448685916 +988458918 1 x.getClass().getName() "java.lang.String" @@ -80282,7 +81915,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2476 this -1249105595 +1990451863 1 this.current 20 @@ -80295,25 +81928,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2475 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80322,13 +81955,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -448685916 +988458918 1 x.getClass().getName() "java.lang.String" 1 return -1249105595 +1990451863 1 return.current 20 @@ -80338,7 +81971,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2477 this -1249105595 +1990451863 1 this.current 20 @@ -80348,7 +81981,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2478 this -1249105595 +1990451863 1 this.current 20 @@ -80358,7 +81991,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2478 this -1249105595 +1990451863 1 this.current 20 @@ -80371,13 +82004,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2477 this -1249105595 +1990451863 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -80387,7 +82020,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2479 this -670189832 +2070529722 1 this.current 15 @@ -80397,7 +82030,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2480 this -670189832 +2070529722 1 this.current 15 @@ -80407,7 +82040,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2480 this -670189832 +2070529722 1 this.current 15 @@ -80420,7 +82053,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2479 this -670189832 +2070529722 1 this.current 16 @@ -80430,7 +82063,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2481 this -670189832 +2070529722 1 this.current 16 @@ -80440,7 +82073,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2481 this -670189832 +2070529722 1 this.current 16 @@ -80453,7 +82086,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2482 this -670189832 +2070529722 1 this.current 16 @@ -80463,7 +82096,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2483 this -670189832 +2070529722 1 this.current 16 @@ -80473,7 +82106,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2483 this -670189832 +2070529722 1 this.current 16 @@ -80486,13 +82119,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2482 this -670189832 +2070529722 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -80502,25 +82135,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2484 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80529,7 +82162,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -80546,7 +82179,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2485 this -2065085740 +1295083508 1 this.current 13 @@ -80559,25 +82192,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2484 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80586,13 +82219,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -2065085740 +1295083508 1 return.current 13 @@ -80602,7 +82235,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2486 this -2065085740 +1295083508 1 this.current 13 @@ -80612,7 +82245,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2487 this -2065085740 +1295083508 1 this.current 13 @@ -80622,7 +82255,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2487 this -2065085740 +1295083508 1 this.current 13 @@ -80635,13 +82268,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2486 this -2065085740 +1295083508 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -80651,25 +82284,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2488 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80678,7 +82311,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -80695,7 +82328,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2489 this -265329366 +249155636 1 this.current 13 @@ -80708,25 +82341,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2488 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80735,13 +82368,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -265329366 +249155636 1 return.current 13 @@ -80751,7 +82384,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2490 this -265329366 +249155636 1 this.current 13 @@ -80761,7 +82394,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2491 this -265329366 +249155636 1 this.current 13 @@ -80771,7 +82404,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2491 this -265329366 +249155636 1 this.current 13 @@ -80784,13 +82417,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2490 this -265329366 +249155636 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -80800,7 +82433,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2492 this -670189832 +2070529722 1 this.current 16 @@ -80810,7 +82443,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2493 this -670189832 +2070529722 1 this.current 16 @@ -80820,7 +82453,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2493 this -670189832 +2070529722 1 this.current 16 @@ -80833,7 +82466,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2492 this -670189832 +2070529722 1 this.current 17 @@ -80843,7 +82476,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2494 this -670189832 +2070529722 1 this.current 17 @@ -80853,7 +82486,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2494 this -670189832 +2070529722 1 this.current 17 @@ -80866,7 +82499,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2495 this -670189832 +2070529722 1 this.current 17 @@ -80876,7 +82509,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2496 this -670189832 +2070529722 1 this.current 17 @@ -80886,7 +82519,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2496 this -670189832 +2070529722 1 this.current 17 @@ -80899,13 +82532,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2495 this -670189832 +2070529722 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -80915,25 +82548,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2497 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80942,7 +82575,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1214603190 +1629604310 1 x.getClass().getName() "java.lang.Object" @@ -80959,7 +82592,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2498 this -2003749595 +142555199 1 this.current 0 @@ -80972,25 +82605,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2497 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -80999,13 +82632,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1214603190 +1629604310 1 x.getClass().getName() "java.lang.Object" 1 return -2003749595 +142555199 1 return.current 0 @@ -81015,7 +82648,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2499 this -2003749595 +142555199 1 this.current 0 @@ -81025,7 +82658,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2500 this -2003749595 +142555199 1 this.current 0 @@ -81035,7 +82668,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2500 this -2003749595 +142555199 1 this.current 0 @@ -81048,7 +82681,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2499 this -2003749595 +142555199 1 this.current 0 @@ -81064,25 +82697,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2501 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81091,7 +82724,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -180890911 +1320677379 1 x.getClass().getName() "java.lang.Integer" @@ -81108,7 +82741,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2502 this -1544180672 +246399377 1 this.current 20 @@ -81121,25 +82754,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2501 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81148,13 +82781,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -180890911 +1320677379 1 x.getClass().getName() "java.lang.Integer" 1 return -1544180672 +246399377 1 return.current 20 @@ -81164,7 +82797,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2503 this -1544180672 +246399377 1 this.current 20 @@ -81174,7 +82807,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2504 this -1544180672 +246399377 1 this.current 20 @@ -81184,7 +82817,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2504 this -1544180672 +246399377 1 this.current 20 @@ -81197,13 +82830,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2503 this -1544180672 +246399377 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -81213,7 +82846,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2505 this -670189832 +2070529722 1 this.current 17 @@ -81223,7 +82856,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2506 this -670189832 +2070529722 1 this.current 17 @@ -81233,7 +82866,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2506 this -670189832 +2070529722 1 this.current 17 @@ -81246,7 +82879,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2505 this -670189832 +2070529722 1 this.current 18 @@ -81256,7 +82889,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2507 this -670189832 +2070529722 1 this.current 18 @@ -81266,7 +82899,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2507 this -670189832 +2070529722 1 this.current 18 @@ -81279,7 +82912,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2508 this -670189832 +2070529722 1 this.current 18 @@ -81289,7 +82922,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2509 this -670189832 +2070529722 1 this.current 18 @@ -81299,7 +82932,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2509 this -670189832 +2070529722 1 this.current 18 @@ -81312,13 +82945,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2508 this -670189832 +2070529722 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81328,25 +82961,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2510 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81355,7 +82988,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -704680309 +1630521067 1 x.getClass().getName() "java.lang.String" @@ -81372,7 +83005,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2511 this -189640158 +274773041 1 this.current 0 @@ -81385,25 +83018,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2510 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81412,13 +83045,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -704680309 +1630521067 1 x.getClass().getName() "java.lang.String" 1 return -189640158 +274773041 1 return.current 0 @@ -81428,7 +83061,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2512 this -189640158 +274773041 1 this.current 0 @@ -81438,7 +83071,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2513 this -189640158 +274773041 1 this.current 0 @@ -81448,7 +83081,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2513 this -189640158 +274773041 1 this.current 0 @@ -81461,7 +83094,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2512 this -189640158 +274773041 1 this.current 0 @@ -81477,25 +83110,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2514 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81504,7 +83137,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -416403358 +1629911510 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81521,7 +83154,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2515 this -1989515980 +292917034 1 this.current 14 @@ -81534,25 +83167,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2514 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81561,13 +83194,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -416403358 +1629911510 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1989515980 +292917034 1 return.current 14 @@ -81577,7 +83210,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2516 this -1989515980 +292917034 1 this.current 14 @@ -81587,7 +83220,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2517 this -1989515980 +292917034 1 this.current 14 @@ -81597,7 +83230,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2517 this -1989515980 +292917034 1 this.current 14 @@ -81610,13 +83243,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2516 this -1989515980 +292917034 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -81626,7 +83259,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2518 this -670189832 +2070529722 1 this.current 18 @@ -81636,7 +83269,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2519 this -670189832 +2070529722 1 this.current 18 @@ -81646,7 +83279,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2519 this -670189832 +2070529722 1 this.current 18 @@ -81659,7 +83292,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2518 this -670189832 +2070529722 1 this.current 19 @@ -81669,7 +83302,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2520 this -670189832 +2070529722 1 this.current 19 @@ -81679,7 +83312,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2520 this -670189832 +2070529722 1 this.current 19 @@ -81692,7 +83325,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2521 this -670189832 +2070529722 1 this.current 19 @@ -81702,7 +83335,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2522 this -670189832 +2070529722 1 this.current 19 @@ -81712,7 +83345,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2522 this -670189832 +2070529722 1 this.current 19 @@ -81725,13 +83358,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2521 this -670189832 +2070529722 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -81741,25 +83374,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2523 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81768,7 +83401,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1474692070 +242355057 1 x.getClass().getName() "java.lang.Double" @@ -81785,7 +83418,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2524 this -1040850463 +455538610 1 this.current 0 @@ -81798,25 +83431,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2523 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81825,13 +83458,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1474692070 +242355057 1 x.getClass().getName() "java.lang.Double" 1 return -1040850463 +455538610 1 return.current 0 @@ -81841,7 +83474,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2525 this -1040850463 +455538610 1 this.current 0 @@ -81851,7 +83484,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2526 this -1040850463 +455538610 1 this.current 0 @@ -81861,7 +83494,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2526 this -1040850463 +455538610 1 this.current 0 @@ -81874,7 +83507,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2525 this -1040850463 +455538610 1 this.current 0 @@ -81890,25 +83523,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2527 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81917,7 +83550,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -171943179 +1226622409 1 x.getClass().getName() "java.lang.Long" @@ -81934,7 +83567,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2528 this -1483504238 +1957502751 1 this.current 20 @@ -81947,25 +83580,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2527 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -81974,13 +83607,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -171943179 +1226622409 1 x.getClass().getName() "java.lang.Long" 1 return -1483504238 +1957502751 1 return.current 20 @@ -81990,7 +83623,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2529 this -1483504238 +1957502751 1 this.current 20 @@ -82000,7 +83633,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2530 this -1483504238 +1957502751 1 this.current 20 @@ -82010,7 +83643,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2530 this -1483504238 +1957502751 1 this.current 20 @@ -82023,13 +83656,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2529 this -1483504238 +1957502751 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -82039,7 +83672,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2531 this -670189832 +2070529722 1 this.current 19 @@ -82049,7 +83682,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2532 this -670189832 +2070529722 1 this.current 19 @@ -82059,7 +83692,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2532 this -670189832 +2070529722 1 this.current 19 @@ -82072,7 +83705,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2531 this -670189832 +2070529722 1 this.current 20 @@ -82082,7 +83715,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2533 this -670189832 +2070529722 1 this.current 20 @@ -82092,7 +83725,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2533 this -670189832 +2070529722 1 this.current 20 @@ -82105,7 +83738,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2534 this -670189832 +2070529722 1 this.current 20 @@ -82115,7 +83748,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2535 this -670189832 +2070529722 1 this.current 20 @@ -82125,7 +83758,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2535 this -670189832 +2070529722 1 this.current 20 @@ -82138,13 +83771,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2534 this -670189832 +2070529722 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -82154,25 +83787,25 @@ DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce 2536 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82181,7 +83814,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -970586396 +1780132728 1 x.getClass().getName() "java.lang.String" @@ -82198,7 +83831,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2537 this -359774960 +1177377518 1 this.current 0 @@ -82211,25 +83844,25 @@ DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce 2536 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82238,13 +83871,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -970586396 +1780132728 1 x.getClass().getName() "java.lang.String" 1 return -359774960 +1177377518 1 return.current 0 @@ -82254,7 +83887,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2538 this -359774960 +1177377518 1 this.current 0 @@ -82264,7 +83897,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2539 this -359774960 +1177377518 1 this.current 0 @@ -82274,7 +83907,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2539 this -359774960 +1177377518 1 this.current 0 @@ -82287,7 +83920,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2538 this -359774960 +1177377518 1 this.current 0 @@ -82303,25 +83936,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2540 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82330,7 +83963,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1571286415 +1773206895 1 x.getClass().getName() "java.lang.String" @@ -82347,7 +83980,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2541 this -1004369746 +1970881185 1 this.current 20 @@ -82360,25 +83993,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2540 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82387,13 +84020,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1571286415 +1773206895 1 x.getClass().getName() "java.lang.String" 1 return -1004369746 +1970881185 1 return.current 20 @@ -82403,7 +84036,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2542 this -1004369746 +1970881185 1 this.current 20 @@ -82413,7 +84046,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2543 this -1004369746 +1970881185 1 this.current 20 @@ -82423,7 +84056,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2543 this -1004369746 +1970881185 1 this.current 20 @@ -82436,13 +84069,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2542 this -1004369746 +1970881185 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -82452,7 +84085,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2544 this -670189832 +2070529722 1 this.current 20 @@ -82462,7 +84095,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2545 this -670189832 +2070529722 1 this.current 20 @@ -82472,7 +84105,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2545 this -670189832 +2070529722 1 this.current 20 @@ -82485,7 +84118,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2544 this -670189832 +2070529722 1 this.current 0 @@ -82495,7 +84128,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2546 this -670189832 +2070529722 1 this.current 0 @@ -82505,7 +84138,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2546 this -670189832 +2070529722 1 this.current 0 @@ -82518,25 +84151,25 @@ DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce 2547 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82556,7 +84189,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2548 this -1220855602 +1250391581 1 this.current 4 @@ -82569,25 +84202,25 @@ DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce 2547 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82596,7 +84229,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1220855602 +1250391581 1 return.current 4 @@ -82606,7 +84239,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2549 this -1220855602 +1250391581 1 this.current 4 @@ -82616,7 +84249,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2549 this -1220855602 +1250391581 1 this.current 4 @@ -82629,7 +84262,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2550 this -1220855602 +1250391581 1 this.current 4 @@ -82639,7 +84272,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2551 this -1220855602 +1250391581 1 this.current 4 @@ -82649,7 +84282,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2551 this -1220855602 +1250391581 1 this.current 4 @@ -82662,7 +84295,7 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2550 this -1220855602 +1250391581 1 this.current 4 @@ -82678,25 +84311,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2552 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82705,7 +84338,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" @@ -82722,7 +84355,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2553 this -1861339376 +1725017993 1 this.current 12 @@ -82735,25 +84368,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2552 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82762,13 +84395,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +237351678 1 x.getClass().getName() "java.io.PrintStream" 1 return -1861339376 +1725017993 1 return.current 12 @@ -82778,7 +84411,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2554 this -1861339376 +1725017993 1 this.current 12 @@ -82788,7 +84421,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2555 this -1861339376 +1725017993 1 this.current 12 @@ -82798,7 +84431,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2555 this -1861339376 +1725017993 1 this.current 12 @@ -82811,13 +84444,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2554 this -1861339376 +1725017993 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -82827,7 +84460,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2556 this -1220855602 +1250391581 1 this.current 4 @@ -82837,7 +84470,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2557 this -1220855602 +1250391581 1 this.current 4 @@ -82847,7 +84480,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2557 this -1220855602 +1250391581 1 this.current 4 @@ -82860,7 +84493,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2556 this -1220855602 +1250391581 1 this.current 12 @@ -82870,7 +84503,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2558 this -1220855602 +1250391581 1 this.current 12 @@ -82880,7 +84513,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2558 this -1220855602 +1250391581 1 this.current 12 @@ -82893,7 +84526,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2559 this -1220855602 +1250391581 1 this.current 12 @@ -82903,7 +84536,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2560 this -1220855602 +1250391581 1 this.current 12 @@ -82913,7 +84546,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2560 this -1220855602 +1250391581 1 this.current 12 @@ -82926,13 +84559,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2559 this -1220855602 +1250391581 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -82942,25 +84575,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2561 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -82969,7 +84602,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" @@ -82986,7 +84619,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2562 this -1136606583 +140799417 1 this.current 13 @@ -82999,25 +84632,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2561 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83026,13 +84659,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +2036958521 1 x.getClass().getName() "java.lang.Class" 1 return -1136606583 +140799417 1 return.current 13 @@ -83042,7 +84675,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2563 this -1136606583 +140799417 1 this.current 13 @@ -83052,7 +84685,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2564 this -1136606583 +140799417 1 this.current 13 @@ -83062,7 +84695,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2564 this -1136606583 +140799417 1 this.current 13 @@ -83075,13 +84708,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2563 this -1136606583 +140799417 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -83091,7 +84724,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2565 this -1220855602 +1250391581 1 this.current 12 @@ -83101,7 +84734,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2566 this -1220855602 +1250391581 1 this.current 12 @@ -83111,7 +84744,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2566 this -1220855602 +1250391581 1 this.current 12 @@ -83124,7 +84757,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2565 this -1220855602 +1250391581 1 this.current 13 @@ -83134,7 +84767,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2567 this -1220855602 +1250391581 1 this.current 13 @@ -83144,7 +84777,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2567 this -1220855602 +1250391581 1 this.current 13 @@ -83157,7 +84790,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2568 this -1220855602 +1250391581 1 this.current 13 @@ -83167,7 +84800,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2569 this -1220855602 +1250391581 1 this.current 13 @@ -83177,7 +84810,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2569 this -1220855602 +1250391581 1 this.current 13 @@ -83190,13 +84823,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2568 this -1220855602 +1250391581 1 this.current 13 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -83206,25 +84839,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2570 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83233,7 +84866,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1079800416 +926370398 1 x.getClass().getName() "java.lang.Object" @@ -83250,7 +84883,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2571 this -1968774562 +1181869371 1 this.current 20 @@ -83263,25 +84896,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2570 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83290,13 +84923,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1079800416 +926370398 1 x.getClass().getName() "java.lang.Object" 1 return -1968774562 +1181869371 1 return.current 20 @@ -83306,7 +84939,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2572 this -1968774562 +1181869371 1 this.current 20 @@ -83316,7 +84949,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2573 this -1968774562 +1181869371 1 this.current 20 @@ -83326,7 +84959,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2573 this -1968774562 +1181869371 1 this.current 20 @@ -83339,13 +84972,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2572 this -1968774562 +1181869371 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -83355,7 +84988,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2574 this -1220855602 +1250391581 1 this.current 13 @@ -83365,7 +84998,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2575 this -1220855602 +1250391581 1 this.current 13 @@ -83375,7 +85008,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2575 this -1220855602 +1250391581 1 this.current 13 @@ -83388,7 +85021,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2574 this -1220855602 +1250391581 1 this.current 14 @@ -83398,7 +85031,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2576 this -1220855602 +1250391581 1 this.current 14 @@ -83408,7 +85041,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2576 this -1220855602 +1250391581 1 this.current 14 @@ -83421,7 +85054,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2577 this -1220855602 +1250391581 1 this.current 14 @@ -83431,7 +85064,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2578 this -1220855602 +1250391581 1 this.current 14 @@ -83441,7 +85074,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2578 this -1220855602 +1250391581 1 this.current 14 @@ -83454,13 +85087,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2577 this -1220855602 +1250391581 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -83470,25 +85103,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2579 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83497,7 +85130,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -766030558 +767010715 1 x.getClass().getName() "java.lang.Integer" @@ -83514,7 +85147,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2580 this -511124541 +110431793 1 this.current 20 @@ -83527,25 +85160,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2579 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83554,13 +85187,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -766030558 +767010715 1 x.getClass().getName() "java.lang.Integer" 1 return -511124541 +110431793 1 return.current 20 @@ -83570,7 +85203,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2581 this -511124541 +110431793 1 this.current 20 @@ -83580,7 +85213,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2582 this -511124541 +110431793 1 this.current 20 @@ -83590,7 +85223,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2582 this -511124541 +110431793 1 this.current 20 @@ -83603,13 +85236,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2581 this -511124541 +110431793 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -83619,7 +85252,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2583 this -1220855602 +1250391581 1 this.current 14 @@ -83629,7 +85262,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2584 this -1220855602 +1250391581 1 this.current 14 @@ -83639,7 +85272,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2584 this -1220855602 +1250391581 1 this.current 14 @@ -83652,7 +85285,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2583 this -1220855602 +1250391581 1 this.current 15 @@ -83662,7 +85295,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2585 this -1220855602 +1250391581 1 this.current 15 @@ -83672,7 +85305,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2585 this -1220855602 +1250391581 1 this.current 15 @@ -83685,7 +85318,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2586 this -1220855602 +1250391581 1 this.current 15 @@ -83695,7 +85328,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2587 this -1220855602 +1250391581 1 this.current 15 @@ -83705,7 +85338,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2587 this -1220855602 +1250391581 1 this.current 15 @@ -83718,13 +85351,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2586 this -1220855602 +1250391581 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83734,25 +85367,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2588 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83761,7 +85394,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -535572587 +192794887 1 x.getClass().getName() "java.lang.String" @@ -83778,7 +85411,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2589 this -1264505132 +1122805102 1 this.current 20 @@ -83791,25 +85424,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2588 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -83818,13 +85451,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -535572587 +192794887 1 x.getClass().getName() "java.lang.String" 1 return -1264505132 +1122805102 1 return.current 20 @@ -83834,7 +85467,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2590 this -1264505132 +1122805102 1 this.current 20 @@ -83844,7 +85477,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2591 this -1264505132 +1122805102 1 this.current 20 @@ -83854,7 +85487,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2591 this -1264505132 +1122805102 1 this.current 20 @@ -83867,13 +85500,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2590 this -1264505132 +1122805102 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -83883,7 +85516,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2592 this -1220855602 +1250391581 1 this.current 15 @@ -83893,7 +85526,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2593 this -1220855602 +1250391581 1 this.current 15 @@ -83903,7 +85536,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2593 this -1220855602 +1250391581 1 this.current 15 @@ -83916,7 +85549,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2592 this -1220855602 +1250391581 1 this.current 16 @@ -83926,7 +85559,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2594 this -1220855602 +1250391581 1 this.current 16 @@ -83936,7 +85569,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2594 this -1220855602 +1250391581 1 this.current 16 @@ -83949,7 +85582,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2595 this -1220855602 +1250391581 1 this.current 16 @@ -83959,7 +85592,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2596 this -1220855602 +1250391581 1 this.current 16 @@ -83969,7 +85602,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2596 this -1220855602 +1250391581 1 this.current 16 @@ -83982,13 +85615,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2595 this -1220855602 +1250391581 1 this.current 16 1 return -1898555459 +1522311648 1 return.getClass().getName() "java.lang.Object" @@ -83998,25 +85631,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2597 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84025,7 +85658,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1039582812 +1391942103 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84042,7 +85675,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2598 this -341369292 +2092769598 1 this.current 14 @@ -84055,25 +85688,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2597 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84082,13 +85715,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1039582812 +1391942103 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -341369292 +2092769598 1 return.current 14 @@ -84098,7 +85731,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2599 this -341369292 +2092769598 1 this.current 14 @@ -84108,7 +85741,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2600 this -341369292 +2092769598 1 this.current 14 @@ -84118,7 +85751,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2600 this -341369292 +2092769598 1 this.current 14 @@ -84131,13 +85764,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2599 this -341369292 +2092769598 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -84147,7 +85780,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2601 this -1220855602 +1250391581 1 this.current 16 @@ -84157,7 +85790,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2602 this -1220855602 +1250391581 1 this.current 16 @@ -84167,7 +85800,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2602 this -1220855602 +1250391581 1 this.current 16 @@ -84180,7 +85813,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2601 this -1220855602 +1250391581 1 this.current 17 @@ -84190,7 +85823,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2603 this -1220855602 +1250391581 1 this.current 17 @@ -84200,7 +85833,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2603 this -1220855602 +1250391581 1 this.current 17 @@ -84213,7 +85846,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2604 this -1220855602 +1250391581 1 this.current 17 @@ -84223,7 +85856,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2605 this -1220855602 +1250391581 1 this.current 17 @@ -84233,7 +85866,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2605 this -1220855602 +1250391581 1 this.current 17 @@ -84246,13 +85879,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2604 this -1220855602 +1250391581 1 this.current 17 1 return -747138112 +1709366259 1 return.getClass().getName() "java.lang.Object" @@ -84262,25 +85895,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2606 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84289,7 +85922,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1464869507 +422392391 1 x.getClass().getName() "java.lang.Double" @@ -84306,7 +85939,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2607 this -1309274941 +1053631449 1 this.current 20 @@ -84319,25 +85952,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2606 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84346,13 +85979,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1464869507 +422392391 1 x.getClass().getName() "java.lang.Double" 1 return -1309274941 +1053631449 1 return.current 20 @@ -84362,7 +85995,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2608 this -1309274941 +1053631449 1 this.current 20 @@ -84372,7 +86005,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2609 this -1309274941 +1053631449 1 this.current 20 @@ -84382,7 +86015,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2609 this -1309274941 +1053631449 1 this.current 20 @@ -84395,13 +86028,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2608 this -1309274941 +1053631449 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -84411,7 +86044,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2610 this -1220855602 +1250391581 1 this.current 17 @@ -84421,7 +86054,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2611 this -1220855602 +1250391581 1 this.current 17 @@ -84431,7 +86064,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2611 this -1220855602 +1250391581 1 this.current 17 @@ -84444,7 +86077,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2610 this -1220855602 +1250391581 1 this.current 18 @@ -84454,7 +86087,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2612 this -1220855602 +1250391581 1 this.current 18 @@ -84464,7 +86097,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2612 this -1220855602 +1250391581 1 this.current 18 @@ -84477,7 +86110,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2613 this -1220855602 +1250391581 1 this.current 18 @@ -84487,7 +86120,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2614 this -1220855602 +1250391581 1 this.current 18 @@ -84497,7 +86130,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2614 this -1220855602 +1250391581 1 this.current 18 @@ -84510,13 +86143,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2613 this -1220855602 +1250391581 1 this.current 18 1 return -459711800 +1924582348 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84526,25 +86159,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2615 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84553,7 +86186,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1866486225 +1453128758 1 x.getClass().getName() "java.lang.Long" @@ -84570,7 +86203,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2616 this -1740351846 +1136497418 1 this.current 20 @@ -84583,25 +86216,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2615 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84610,13 +86243,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1866486225 +1453128758 1 x.getClass().getName() "java.lang.Long" 1 return -1740351846 +1136497418 1 return.current 20 @@ -84626,7 +86259,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2617 this -1740351846 +1136497418 1 this.current 20 @@ -84636,7 +86269,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2618 this -1740351846 +1136497418 1 this.current 20 @@ -84646,7 +86279,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2618 this -1740351846 +1136497418 1 this.current 20 @@ -84659,13 +86292,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2617 this -1740351846 +1136497418 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -84675,7 +86308,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2619 this -1220855602 +1250391581 1 this.current 18 @@ -84685,7 +86318,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2620 this -1220855602 +1250391581 1 this.current 18 @@ -84695,7 +86328,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2620 this -1220855602 +1250391581 1 this.current 18 @@ -84708,7 +86341,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2619 this -1220855602 +1250391581 1 this.current 19 @@ -84718,7 +86351,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2621 this -1220855602 +1250391581 1 this.current 19 @@ -84728,7 +86361,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2621 this -1220855602 +1250391581 1 this.current 19 @@ -84741,7 +86374,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2622 this -1220855602 +1250391581 1 this.current 19 @@ -84751,7 +86384,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2623 this -1220855602 +1250391581 1 this.current 19 @@ -84761,7 +86394,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2623 this -1220855602 +1250391581 1 this.current 19 @@ -84774,13 +86407,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2622 this -1220855602 +1250391581 1 this.current 19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -84790,25 +86423,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2624 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84817,7 +86450,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1366203582 +863125040 1 x.getClass().getName() "java.lang.String" @@ -84834,7 +86467,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2625 this -888448950 +1693847660 1 this.current 20 @@ -84847,25 +86480,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2624 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -84874,13 +86507,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1366203582 +863125040 1 x.getClass().getName() "java.lang.String" 1 return -888448950 +1693847660 1 return.current 20 @@ -84890,7 +86523,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2626 this -888448950 +1693847660 1 this.current 20 @@ -84900,7 +86533,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2627 this -888448950 +1693847660 1 this.current 20 @@ -84910,7 +86543,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2627 this -888448950 +1693847660 1 this.current 20 @@ -84923,13 +86556,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2626 this -888448950 +1693847660 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -84939,7 +86572,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2628 this -1220855602 +1250391581 1 this.current 19 @@ -84949,7 +86582,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2629 this -1220855602 +1250391581 1 this.current 19 @@ -84959,7 +86592,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2629 this -1220855602 +1250391581 1 this.current 19 @@ -84972,7 +86605,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2628 this -1220855602 +1250391581 1 this.current 20 @@ -84982,7 +86615,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2630 this -1220855602 +1250391581 1 this.current 20 @@ -84992,7 +86625,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2630 this -1220855602 +1250391581 1 this.current 20 @@ -85005,7 +86638,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2631 this -1220855602 +1250391581 1 this.current 20 @@ -85015,7 +86648,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2632 this -1220855602 +1250391581 1 this.current 20 @@ -85025,7 +86658,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2632 this -1220855602 +1250391581 1 this.current 20 @@ -85038,13 +86671,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2631 this -1220855602 +1250391581 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -85054,25 +86687,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2633 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85081,7 +86714,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -707705059 +1429880200 1 x.getClass().getName() "java.lang.String" @@ -85098,7 +86731,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2634 this -1634489527 +2050019814 1 this.current 20 @@ -85111,25 +86744,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2633 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85138,13 +86771,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -707705059 +1429880200 1 x.getClass().getName() "java.lang.String" 1 return -1634489527 +2050019814 1 return.current 20 @@ -85154,7 +86787,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2635 this -1634489527 +2050019814 1 this.current 20 @@ -85164,7 +86797,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2636 this -1634489527 +2050019814 1 this.current 20 @@ -85174,7 +86807,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2636 this -1634489527 +2050019814 1 this.current 20 @@ -85187,13 +86820,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2635 this -1634489527 +2050019814 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -85203,7 +86836,7 @@ DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce 2637 this -1220855602 +1250391581 1 this.current 20 @@ -85213,7 +86846,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2638 this -1220855602 +1250391581 1 this.current 20 @@ -85223,7 +86856,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2638 this -1220855602 +1250391581 1 this.current 20 @@ -85236,7 +86869,7 @@ DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce 2637 this -1220855602 +1250391581 1 this.current 0 @@ -85246,7 +86879,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2639 this -1220855602 +1250391581 1 this.current 0 @@ -85256,7 +86889,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2639 this -1220855602 +1250391581 1 this.current 0 @@ -85269,25 +86902,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2640 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85307,7 +86940,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2641 this -254667865 +1485955886 1 this.current 12 @@ -85320,25 +86953,25 @@ DataStructures.CursorList.first():::EXIT89 this_invocation_nonce 2640 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85347,7 +86980,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -254667865 +1485955886 1 return.current 12 @@ -85357,7 +86990,7 @@ DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce 2642 this -254667865 +1485955886 1 this.current 12 @@ -85367,7 +87000,7 @@ DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce 2643 this -254667865 +1485955886 1 this.current 12 @@ -85377,7 +87010,7 @@ DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce 2643 this -254667865 +1485955886 1 this.current 12 @@ -85390,13 +87023,13 @@ DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce 2642 this -254667865 +1485955886 1 this.current 12 1 return -612674980 +1308244637 1 return.getClass().getName() "java.lang.Object" @@ -85406,25 +87039,25 @@ DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce 2644 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85433,7 +87066,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -612674980 +1308244637 1 x.getClass().getName() "java.lang.Object" @@ -85443,25 +87076,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 2645 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85470,7 +87103,7 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -612674980 +1308244637 1 x.getClass().getName() "java.lang.Object" @@ -85487,7 +87120,7 @@ DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce 2646 this -267898584 +212921632 1 this.current 4 @@ -85500,25 +87133,25 @@ DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce 2645 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85527,13 +87160,13 @@ DataStructures.CursorList.cursorSpace[..].next [2 3 21 5 12 7 0 9 0 11 0 0 13 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -612674980 +1308244637 1 x.getClass().getName() "java.lang.Object" 1 return -267898584 +212921632 1 return.current 4 @@ -85543,19 +87176,19 @@ DataStructures.CursorList.free(int):::ENTER this_invocation_nonce 2647 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 612674980 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 1308244637 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" "java.lang.Object" "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85571,19 +87204,19 @@ DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce 2647 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85599,25 +87232,25 @@ DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce 2644 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85626,7 +87259,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -612674980 +1308244637 1 x.getClass().getName() "java.lang.Object" @@ -85636,19 +87269,19 @@ DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 2648 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85657,7 +87290,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -85667,25 +87300,25 @@ DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce 2649 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85698,25 +87331,25 @@ DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce 2649 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85732,25 +87365,25 @@ DataStructures.CursorList.first():::ENTER this_invocation_nonce 2650 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -85760,540 +87393,80 @@ DataStructures.CursorList.cursorSpace[..].next 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2651 -theNode -13 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -2651 -this -1445777176 -1 -this.current -13 -1 -theNode -13 -1 - -DataStructures.CursorList.first():::EXIT89 -this_invocation_nonce -2650 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -return -1445777176 -1 -return.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2652 -this -1445777176 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2652 -this -1445777176 -1 -this.current -13 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2653 -this -1445777176 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2654 -this -1445777176 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2654 -this -1445777176 -1 -this.current -13 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2653 -this -1445777176 -1 -this.current -13 -1 -return -829274326 -1 -return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2655 -this -1445777176 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2656 -this -1445777176 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2656 -this -1445777176 -1 -this.current -13 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2655 -this -1445777176 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2657 -this -1445777176 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2657 -this -1445777176 -1 -this.current -14 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2658 -this -1445777176 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2659 -this -1445777176 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2659 -this -1445777176 -1 -this.current -14 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2658 -this -1445777176 -1 -this.current -14 -1 -return -153302244 -1 -return.getClass().getName() -"java.lang.Class" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2660 -this -1445777176 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2661 -this -1445777176 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2661 -this -1445777176 -1 -this.current -14 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2660 -this -1445777176 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2662 -this -1445777176 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2662 -this -1445777176 -1 -this.current -15 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2663 -this -1445777176 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2664 -this -1445777176 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2664 -this -1445777176 -1 -this.current -15 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2663 -this -1445777176 -1 -this.current -15 -1 -return -966091658 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2665 -this -1445777176 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2666 -this -1445777176 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2666 -this -1445777176 -1 -this.current -15 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2665 -this -1445777176 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2667 -this -1445777176 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2667 -this -1445777176 -1 -this.current -16 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2668 -this -1445777176 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2669 -this -1445777176 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2669 -this -1445777176 -1 -this.current -16 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2668 -this -1445777176 -1 -this.current -16 -1 -return -1898555459 -1 -return.getClass().getName() -"java.lang.Object" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2670 -this -1445777176 -1 -this.current -16 +this_invocation_nonce +2651 +theNode +13 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2671 +2651 this -1445777176 +149047107 1 this.current -16 +13 +1 +theNode +13 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorList.first():::EXIT89 this_invocation_nonce -2671 +2650 this -1445777176 +1216590855 1 -this.current -16 +this.header +4 1 -return -false +DataStructures.CursorList.cursorSpace +1659791576 1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2670 -this -1445777176 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 -this.current -17 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +return +149047107 +1 +return.current +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2672 +2652 this -1445777176 +149047107 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2672 +2652 this -1445777176 +149047107 1 this.current -17 +13 1 return false @@ -86301,32 +87474,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2673 +2653 this -1445777176 +149047107 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2674 +2654 this -1445777176 +149047107 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2674 +2654 this -1445777176 +149047107 1 this.current -17 +13 1 return false @@ -86334,48 +87507,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2673 +2653 this -1445777176 +149047107 1 this.current -17 +13 1 return -747138112 +237351678 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2675 +2655 this -1445777176 +149047107 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2676 +2656 this -1445777176 +149047107 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2676 +2656 this -1445777176 +149047107 1 this.current -17 +13 1 return false @@ -86383,32 +87556,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2675 +2655 this -1445777176 +149047107 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2677 +2657 this -1445777176 +149047107 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2677 +2657 this -1445777176 +149047107 1 this.current -18 +14 1 return false @@ -86416,32 +87589,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2678 +2658 this -1445777176 +149047107 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2679 +2659 this -1445777176 +149047107 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2679 +2659 this -1445777176 +149047107 1 this.current -18 +14 1 return false @@ -86449,48 +87622,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2678 +2658 this -1445777176 +149047107 1 this.current -18 +14 1 return -459711800 +2036958521 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2680 +2660 this -1445777176 +149047107 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2681 +2661 this -1445777176 +149047107 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2681 +2661 this -1445777176 +149047107 1 this.current -18 +14 1 return false @@ -86498,32 +87671,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2680 +2660 this -1445777176 +149047107 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2682 +2662 this -1445777176 +149047107 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2682 +2662 this -1445777176 +149047107 1 this.current -19 +15 1 return false @@ -86531,32 +87704,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2683 +2663 this -1445777176 +149047107 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2684 +2664 this -1445777176 +149047107 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2684 +2664 this -1445777176 +149047107 1 this.current -19 +15 1 return false @@ -86564,48 +87737,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2683 +2663 this -1445777176 +149047107 1 this.current -19 +15 1 return -153302244 +1440047379 1 return.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2685 +2665 this -1445777176 +149047107 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2686 +2666 this -1445777176 +149047107 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2686 +2666 this -1445777176 +149047107 1 this.current -19 +15 1 return false @@ -86613,32 +87786,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2685 +2665 this -1445777176 +149047107 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2687 +2667 this -1445777176 +149047107 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2687 +2667 this -1445777176 +149047107 1 this.current -20 +16 1 return false @@ -86646,32 +87819,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2688 +2668 this -1445777176 +149047107 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2689 +2669 this -1445777176 +149047107 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2689 +2669 this -1445777176 +149047107 1 this.current -20 +16 1 return false @@ -86679,48 +87852,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2688 +2668 this -1445777176 +149047107 1 this.current -20 +16 1 return -829274326 +1522311648 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2690 +2670 this -1445777176 +149047107 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2691 +2671 this -1445777176 +149047107 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2691 +2671 this -1445777176 +149047107 1 this.current -20 +16 1 return false @@ -86728,421 +87901,180 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2690 +2670 this -1445777176 +149047107 1 this.current -0 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2692 +2672 this -1445777176 +149047107 1 this.current -0 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2692 +2672 this -1445777176 +149047107 1 this.current -0 +17 1 return -true +false 1 -DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2648 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -theList -1266405716 +2673 +this +149047107 1 -theList.header -4 +this.current +17 1 -DataStructures.CursorList.isEmpty():::ENTER +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2693 +2674 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +149047107 1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +17 1 -DataStructures.CursorList.isEmpty():::EXIT62 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2693 +2674 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +149047107 1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +17 1 return false 1 -DataStructures.CursorList.first():::ENTER +DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2694 +2673 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" +149047107 1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +17 1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +return +1709366259 1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2695 -theNode -13 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2695 +2675 this -399531227 +149047107 1 this.current -13 -1 -theNode -13 -1 - -DataStructures.CursorList.first():::EXIT89 -this_invocation_nonce -2694 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -return -399531227 -1 -return.current -13 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2696 +2676 this -399531227 +149047107 1 this.current -13 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2696 +2676 this -399531227 +149047107 1 this.current -13 +17 1 return false 1 -DataStructures.CursorListItr.retrieve():::ENTER +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2697 +2675 this -399531227 +149047107 1 this.current -13 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2698 +2677 this -399531227 +149047107 1 this.current -13 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2698 +2677 this -399531227 +149047107 1 this.current -13 +18 1 return false 1 -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2697 -this -399531227 -1 -this.current -13 -1 -return -829274326 -1 -return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.CursorList.find(java.lang.Object):::ENTER -this_invocation_nonce -2699 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -829274326 -1 -x.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2700 -theNode -13 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -2700 -this -1887451667 -1 -this.current -13 -1 -theNode -13 -1 - -DataStructures.CursorList.find(java.lang.Object):::EXIT122 -this_invocation_nonce -2699 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -829274326 -1 -x.getClass().getName() -"java.io.PrintStream" -1 -return -1887451667 -1 -return.current -13 -1 - DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2701 +2678 this -1887451667 +149047107 1 this.current -13 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2702 +2679 this -1887451667 +149047107 1 this.current -13 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2702 +2679 this -1887451667 +149047107 1 this.current -13 +18 1 return false @@ -87150,148 +88082,114 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2701 +2678 this -1887451667 +149047107 1 this.current -13 +18 1 return -829274326 +1924582348 1 return.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2703 +2680 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +149047107 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -153302244 -1 -x.getClass().getName() -"java.lang.Class" +this.current +18 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2704 -theNode -13 +2681 +this +149047107 +1 +this.current +18 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2704 +2681 this -1919217432 +149047107 1 this.current -13 +18 1 -theNode -13 +return +false 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2703 +2680 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +149047107 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +19 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2682 +this +149047107 1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +19 1 -x -153302244 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2682 +this +149047107 1 -x.getClass().getName() -"java.lang.Class" +this.current +19 1 return -1919217432 -1 -return.current -13 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2705 +2683 this -1919217432 +149047107 1 this.current -13 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2706 +2684 this -1919217432 +149047107 1 this.current -13 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2706 +2684 this -1919217432 +149047107 1 this.current -13 +19 1 return false @@ -87299,48 +88197,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2705 +2683 this -1919217432 +149047107 1 this.current -13 +19 1 return -829274326 +2036958521 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2707 +2685 this -399531227 +149047107 1 this.current -13 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2708 +2686 this -399531227 +149047107 1 this.current -13 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2708 +2686 this -399531227 +149047107 1 this.current -13 +19 1 return false @@ -87348,32 +88246,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2707 +2685 this -399531227 +149047107 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2709 +2687 this -399531227 +149047107 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2709 +2687 this -399531227 +149047107 1 this.current -14 +20 1 return false @@ -87381,32 +88279,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2710 +2688 this -399531227 +149047107 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2711 +2689 this -399531227 +149047107 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2711 +2689 this -399531227 +149047107 1 this.current -14 +20 1 return false @@ -87414,100 +88312,103 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2710 +2688 this -399531227 +149047107 1 this.current -14 +20 1 return -153302244 +237351678 1 return.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 -DataStructures.CursorList.find(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2712 +2690 this -1266405716 -1 -this.header -4 +149047107 1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +this.current +20 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2691 +this +149047107 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +20 1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2691 +this +149047107 1 -x -1083001684 +this.current +20 1 -x.getClass().getName() -"java.lang.Object" +return +false 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2713 -theNode +2690 +this +149047107 +1 +this.current 0 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2713 +2692 this -2085394663 +149047107 1 this.current 0 1 -theNode -0 -1 -DataStructures.CursorList.find(java.lang.Object):::EXIT122 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2712 +2692 this -1266405716 +149047107 1 -this.header -4 +this.current +0 +1 +return +true 1 + +DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 +this_invocation_nonce +2648 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -87515,91 +88416,67 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -1083001684 -1 -x.getClass().getName() -"java.lang.Object" -1 -return -2085394663 +theList +1216590855 1 -return.current -0 +theList.header +4 1 -DataStructures.CursorListItr.retrieve():::ENTER +DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce -2714 +2693 this -2085394663 +1216590855 1 -this.current -0 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2715 -this -2085394663 +this.header +4 1 -this.current -0 +DataStructures.CursorList.cursorSpace +1659791576 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2715 -this -2085394663 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 -this.current -0 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 -return -true +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2714 -this -2085394663 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -this.current -0 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -return -null +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -return.getClass().getName() -nonsensical -2 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce -2716 +2693 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -87607,56 +88484,33 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -147498354 -1 -x.getClass().getName() -"java.lang.Integer" -1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2717 -theNode -20 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -2717 -this -808707040 -1 -this.current -20 -1 -theNode -20 +return +false 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorList.first():::ENTER this_invocation_nonce -2716 +2694 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -87664,129 +88518,82 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -147498354 -1 -x.getClass().getName() -"java.lang.Integer" -1 -return -808707040 -1 -return.current -20 -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2718 -this -808707040 -1 -this.current -20 -1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2719 -this -808707040 -1 -this.current -20 +2695 +theNode +13 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2719 +2695 this -808707040 +1956710488 1 this.current -20 +13 1 -return -false +theNode +13 1 -DataStructures.CursorListItr.retrieve():::EXIT45 +DataStructures.CursorList.first():::EXIT89 this_invocation_nonce -2718 +2694 this -808707040 +1216590855 1 -this.current -20 -1 -return -829274326 +this.header +4 1 -return.getClass().getName() -"java.io.PrintStream" +DataStructures.CursorList.cursorSpace +1659791576 1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2720 -this -399531227 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 -this.current -14 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2721 -this -399531227 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 -this.current -14 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2721 -this -399531227 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -this.current -14 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2720 -this -399531227 +1956710488 1 -this.current -15 +return.current +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2722 +2696 this -399531227 +1956710488 1 this.current -15 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2722 +2696 this -399531227 +1956710488 1 this.current -15 +13 1 return false @@ -87794,32 +88601,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2723 +2697 this -399531227 +1956710488 1 this.current -15 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2724 +2698 this -399531227 +1956710488 1 this.current -15 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2724 +2698 this -399531227 +1956710488 1 this.current -15 +13 1 return false @@ -87827,43 +88634,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2723 +2697 this -399531227 +1956710488 1 this.current -15 +13 1 return -966091658 +237351678 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2725 +2699 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -87872,55 +88679,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -515219417 +237351678 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2726 +2700 theNode -0 +13 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2726 +2700 this -638676815 +603856241 1 this.current -0 +13 1 theNode -0 +13 1 DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2725 +2699 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -87929,90 +88736,90 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -515219417 +237351678 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 return -638676815 +603856241 1 return.current -0 +13 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2727 +2701 this -638676815 +603856241 1 this.current -0 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2728 +2702 this -638676815 +603856241 1 this.current -0 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2728 +2702 this -638676815 +603856241 1 this.current -0 +13 1 return -true +false 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2727 +2701 this -638676815 +603856241 1 this.current -0 +13 1 return -null +237351678 1 return.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2729 +2703 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88021,55 +88828,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1117961999 +2036958521 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2730 +2704 theNode -14 +13 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2730 +2704 this -1252889590 +682376643 1 this.current -14 +13 1 theNode -14 +13 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2729 +2703 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88078,46 +88885,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1117961999 +2036958521 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 return -1252889590 +682376643 1 return.current -14 +13 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2731 +2705 this -1252889590 +682376643 1 this.current -14 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2732 +2706 this -1252889590 +682376643 1 this.current -14 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2732 +2706 this -1252889590 +682376643 1 this.current -14 +13 1 return false @@ -88125,48 +88932,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2731 +2705 this -1252889590 +682376643 1 this.current -14 +13 1 return -153302244 +237351678 1 return.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2733 +2707 this -399531227 +1956710488 1 this.current -15 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2734 +2708 this -399531227 +1956710488 1 this.current -15 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2734 +2708 this -399531227 +1956710488 1 this.current -15 +13 1 return false @@ -88174,32 +88981,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2733 +2707 this -399531227 +1956710488 1 this.current -16 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2735 +2709 this -399531227 +1956710488 1 this.current -16 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2735 +2709 this -399531227 +1956710488 1 this.current -16 +14 1 return false @@ -88207,32 +89014,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2736 +2710 this -399531227 +1956710488 1 this.current -16 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2737 +2711 this -399531227 +1956710488 1 this.current -16 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2737 +2711 this -399531227 +1956710488 1 this.current -16 +14 1 return false @@ -88240,43 +89047,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2736 +2710 this -399531227 +1956710488 1 this.current -16 +14 1 return -1898555459 +2036958521 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2738 +2712 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88285,24 +89092,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1238180295 +854507466 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Object" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2739 +2713 theNode 0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2739 +2713 this -979678635 +1316061703 1 this.current 0 @@ -88313,27 +89120,27 @@ theNode DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2738 +2712 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88342,13 +89149,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1238180295 +854507466 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Object" 1 return -979678635 +1316061703 1 return.current 0 @@ -88356,9 +89163,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2740 +2714 this -979678635 +1316061703 1 this.current 0 @@ -88366,9 +89173,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2741 +2715 this -979678635 +1316061703 1 this.current 0 @@ -88376,9 +89183,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2741 +2715 this -979678635 +1316061703 1 this.current 0 @@ -88389,9 +89196,9 @@ true DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2740 +2714 this -979678635 +1316061703 1 this.current 0 @@ -88405,27 +89212,27 @@ nonsensical DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2742 +2716 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88434,24 +89241,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -701696896 +490150701 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2743 +2717 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2743 +2717 this -1587025395 +1413246829 1 this.current 20 @@ -88462,27 +89269,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2742 +2716 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88491,13 +89298,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -701696896 +490150701 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 return -1587025395 +1413246829 1 return.current 20 @@ -88505,9 +89312,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2744 +2718 this -1587025395 +1413246829 1 this.current 20 @@ -88515,9 +89322,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2745 +2719 this -1587025395 +1413246829 1 this.current 20 @@ -88525,9 +89332,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2745 +2719 this -1587025395 +1413246829 1 this.current 20 @@ -88538,15 +89345,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2744 +2718 this -1587025395 +1413246829 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -88554,32 +89361,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2746 +2720 this -399531227 +1956710488 1 this.current -16 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2747 +2721 this -399531227 +1956710488 1 this.current -16 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2747 +2721 this -399531227 +1956710488 1 this.current -16 +14 1 return false @@ -88587,32 +89394,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2746 +2720 this -399531227 +1956710488 1 this.current -17 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2748 +2722 this -399531227 +1956710488 1 this.current -17 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2748 +2722 this -399531227 +1956710488 1 this.current -17 +15 1 return false @@ -88620,32 +89427,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2749 +2723 this -399531227 +1956710488 1 this.current -17 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2750 +2724 this -399531227 +1956710488 1 this.current -17 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2750 +2724 this -399531227 +1956710488 1 this.current -17 +15 1 return false @@ -88653,43 +89460,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2749 +2723 this -399531227 +1956710488 1 this.current -17 +15 1 return -747138112 +1440047379 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2751 +2725 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88698,7 +89505,7 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1388918025 +334203599 1 x.getClass().getName() "java.lang.String" @@ -88706,16 +89513,16 @@ x.getClass().getName() DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2752 +2726 theNode 0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2752 +2726 this -398003285 +1372082959 1 this.current 0 @@ -88726,27 +89533,27 @@ theNode DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2751 +2725 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88755,13 +89562,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1388918025 +334203599 1 x.getClass().getName() "java.lang.String" 1 return -398003285 +1372082959 1 return.current 0 @@ -88769,9 +89576,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2753 +2727 this -398003285 +1372082959 1 this.current 0 @@ -88779,9 +89586,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2754 +2728 this -398003285 +1372082959 1 this.current 0 @@ -88789,9 +89596,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2754 +2728 this -398003285 +1372082959 1 this.current 0 @@ -88802,9 +89609,9 @@ true DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2753 +2727 this -398003285 +1372082959 1 this.current 0 @@ -88818,27 +89625,27 @@ nonsensical DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2755 +2729 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88847,55 +89654,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1977134237 +1946403944 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2756 +2730 theNode -20 +14 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2756 +2730 this -1680651228 +1131645570 1 this.current -20 +14 1 theNode -20 +14 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2755 +2729 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -88904,46 +89711,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1977134237 +1946403944 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 return -1680651228 +1131645570 1 return.current -20 +14 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2757 +2731 this -1680651228 +1131645570 1 this.current -20 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2758 +2732 this -1680651228 +1131645570 1 this.current -20 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2758 +2732 this -1680651228 +1131645570 1 this.current -20 +14 1 return false @@ -88951,48 +89758,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2757 +2731 this -1680651228 +1131645570 1 this.current -20 +14 1 return -829274326 +2036958521 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2759 +2733 this -399531227 +1956710488 1 this.current -17 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2760 +2734 this -399531227 +1956710488 1 this.current -17 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2760 +2734 this -399531227 +1956710488 1 this.current -17 +15 1 return false @@ -89000,32 +89807,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2759 +2733 this -399531227 +1956710488 1 this.current -18 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2761 +2735 this -399531227 +1956710488 1 this.current -18 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2761 +2735 this -399531227 +1956710488 1 this.current -18 +16 1 return false @@ -89033,32 +89840,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2762 +2736 this -399531227 +1956710488 1 this.current -18 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2763 +2737 this -399531227 +1956710488 1 this.current -18 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2763 +2737 this -399531227 +1956710488 1 this.current -18 +16 1 return false @@ -89066,43 +89873,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2762 +2736 this -399531227 +1956710488 1 this.current -18 +16 1 return -459711800 +1522311648 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2764 +2738 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89111,55 +89918,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +209833425 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2765 +2739 theNode -13 +0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2765 +2739 this -852780005 +532854629 1 this.current -13 +0 1 theNode -13 +0 1 DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2764 +2738 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89168,90 +89975,90 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +209833425 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 return -852780005 +532854629 1 return.current -13 +0 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2766 +2740 this -852780005 +532854629 1 this.current -13 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2767 +2741 this -852780005 +532854629 1 this.current -13 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2767 +2741 this -852780005 +532854629 1 this.current -13 +0 1 return -false +true 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2766 +2740 this -852780005 +532854629 1 this.current -13 +0 1 return -829274326 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2768 +2742 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89260,55 +90067,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +1971851377 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2769 +2743 theNode -13 +20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2769 +2743 this -367683957 +712025048 1 this.current -13 +20 1 theNode -13 +20 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2768 +2742 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89317,46 +90124,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +1971851377 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return -367683957 +712025048 1 return.current -13 +20 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2770 +2744 this -367683957 +712025048 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2771 +2745 this -367683957 +712025048 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2771 +2745 this -367683957 +712025048 1 this.current -13 +20 1 return false @@ -89364,15 +90171,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2770 +2744 this -367683957 +712025048 1 this.current -13 +20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -89380,32 +90187,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2772 +2746 this -399531227 +1956710488 1 this.current -18 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2773 +2747 this -399531227 +1956710488 1 this.current -18 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2773 +2747 this -399531227 +1956710488 1 this.current -18 +16 1 return false @@ -89413,32 +90220,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2772 +2746 this -399531227 +1956710488 1 this.current -19 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2774 +2748 this -399531227 +1956710488 1 this.current -19 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2774 +2748 this -399531227 +1956710488 1 this.current -19 +17 1 return false @@ -89446,32 +90253,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2775 +2749 this -399531227 +1956710488 1 this.current -19 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2776 +2750 this -399531227 +1956710488 1 this.current -19 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2776 +2750 this -399531227 +1956710488 1 this.current -19 +17 1 return false @@ -89479,43 +90286,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2775 +2749 this -399531227 +1956710488 1 this.current -19 +17 1 return -153302244 +1709366259 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2777 +2751 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89524,24 +90331,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1353812880 +681384962 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2778 +2752 theNode 0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2778 +2752 this -943834195 +586084331 1 this.current 0 @@ -89552,27 +90359,27 @@ theNode DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2777 +2751 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89581,13 +90388,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1353812880 +681384962 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 return -943834195 +586084331 1 return.current 0 @@ -89595,9 +90402,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2779 +2753 this -943834195 +586084331 1 this.current 0 @@ -89605,9 +90412,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2780 +2754 this -943834195 +586084331 1 this.current 0 @@ -89615,9 +90422,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2780 +2754 this -943834195 +586084331 1 this.current 0 @@ -89628,9 +90435,9 @@ true DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2779 +2753 this -943834195 +586084331 1 this.current 0 @@ -89644,27 +90451,27 @@ nonsensical DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2781 +2755 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89673,24 +90480,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1707098623 +399534175 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2782 +2756 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2782 +2756 this -825032841 +949057310 1 this.current 20 @@ -89701,27 +90508,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2781 +2755 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89730,13 +90537,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1707098623 +399534175 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 return -825032841 +949057310 1 return.current 20 @@ -89744,9 +90551,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2783 +2757 this -825032841 +949057310 1 this.current 20 @@ -89754,9 +90561,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2784 +2758 this -825032841 +949057310 1 this.current 20 @@ -89764,9 +90571,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2784 +2758 this -825032841 +949057310 1 this.current 20 @@ -89777,15 +90584,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2783 +2757 this -825032841 +949057310 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -89793,32 +90600,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2785 +2759 this -399531227 +1956710488 1 this.current -19 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2786 +2760 this -399531227 +1956710488 1 this.current -19 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2786 +2760 this -399531227 +1956710488 1 this.current -19 +17 1 return false @@ -89826,32 +90633,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2785 +2759 this -399531227 +1956710488 1 this.current -20 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2787 +2761 this -399531227 +1956710488 1 this.current -20 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2787 +2761 this -399531227 +1956710488 1 this.current -20 +18 1 return false @@ -89859,32 +90666,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2788 +2762 this -399531227 +1956710488 1 this.current -20 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2789 +2763 this -399531227 +1956710488 1 this.current -20 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2789 +2763 this -399531227 +1956710488 1 this.current -20 +18 1 return false @@ -89892,43 +90699,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2788 +2762 this -399531227 +1956710488 1 this.current -20 +18 1 return -829274326 +1924582348 1 return.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2790 +2764 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89937,55 +90744,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -25050008 +237351678 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2791 +2765 theNode -0 +13 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2791 +2765 this -108689644 +2024542466 1 this.current -0 +13 1 theNode -0 +13 1 DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2790 +2764 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -89994,90 +90801,90 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -25050008 +237351678 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 return -108689644 +2024542466 1 return.current -0 +13 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2792 +2766 this -108689644 +2024542466 1 this.current -0 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2793 +2767 this -108689644 +2024542466 1 this.current -0 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2793 +2767 this -108689644 +2024542466 1 this.current -0 +13 1 return -true +false 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2792 +2766 this -108689644 +2024542466 1 this.current -0 +13 1 return -null +237351678 1 return.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2794 +2768 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90086,55 +90893,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1385746758 +2036958521 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2795 +2769 theNode -14 +13 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2795 +2769 this -785609991 +770189387 1 this.current -14 +13 1 theNode -14 +13 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2794 +2768 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90143,156 +90950,205 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1385746758 +2036958521 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 return -785609991 +770189387 1 return.current -14 +13 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2796 +2770 this -785609991 +770189387 1 this.current -14 +13 +1 + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2771 +this +770189387 +1 +this.current +13 +1 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2771 +this +770189387 +1 +this.current +13 +1 +return +false +1 + +DataStructures.CursorListItr.retrieve():::EXIT45 +this_invocation_nonce +2770 +this +770189387 +1 +this.current +13 +1 +return +237351678 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2797 +2772 this -785609991 +1956710488 1 this.current -14 +18 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2797 +2773 this -785609991 +1956710488 1 this.current -14 -1 -return -false +18 1 -DataStructures.CursorListItr.retrieve():::EXIT45 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2796 +2773 this -785609991 +1956710488 1 this.current -14 +18 1 return -153302244 -1 -return.getClass().getName() -"java.lang.Class" +false 1 -DataStructures.CursorListItr.advance():::ENTER +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2798 +2772 this -399531227 +1956710488 1 this.current -20 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2799 +2774 this -399531227 +1956710488 1 this.current -20 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2799 +2774 this -399531227 +1956710488 1 this.current -20 +19 1 return false 1 -DataStructures.CursorListItr.advance():::EXIT56 +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2798 +2775 this -399531227 +1956710488 1 this.current -0 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2800 +2776 this -399531227 +1956710488 1 this.current -0 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2800 +2776 this -399531227 +1956710488 1 this.current -0 +19 1 return -true +false 1 -DataStructures.CursorList.zeroth():::ENTER +DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2801 +2775 +this +1956710488 +1 +this.current +19 +1 +return +2036958521 +1 +return.getClass().getName() +"java.lang.Class" +1 + +DataStructures.CursorList.find(java.lang.Object):::ENTER +this_invocation_nonce +2777 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90300,50 +91156,56 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 +x +963522361 +1 +x.getClass().getName() +"java.lang.Object" +1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2802 +2778 theNode -4 +0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2802 +2778 this -1017656981 +175408781 1 this.current -4 +0 1 theNode -4 +0 1 -DataStructures.CursorList.zeroth():::EXIT80 +DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2801 +2777 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90351,77 +91213,60 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -return -1017656981 -1 -return.current -4 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2803 -this -1017656981 -1 -this.current -4 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2803 -this -1017656981 +x +963522361 1 -this.current -4 +x.getClass().getName() +"java.lang.Object" 1 return -false +175408781 +1 +return.current +0 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2804 +2779 this -1017656981 +175408781 1 this.current -4 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2805 +2780 this -1017656981 +175408781 1 this.current -4 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2805 +2780 this -1017656981 +175408781 1 this.current -4 +0 1 return -false +true 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2804 +2779 this -1017656981 +175408781 1 this.current -4 +0 1 return null @@ -90432,27 +91277,27 @@ nonsensical DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2806 +2781 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90461,24 +91306,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1201114959 +315138752 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Integer" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2807 +2782 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2807 +2782 this -792834113 +2114874018 1 this.current 20 @@ -90489,27 +91334,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2806 +2781 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90518,13 +91363,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1201114959 +315138752 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Integer" 1 return -792834113 +2114874018 1 return.current 20 @@ -90532,9 +91377,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2808 +2783 this -792834113 +2114874018 1 this.current 20 @@ -90542,9 +91387,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2809 +2784 this -792834113 +2114874018 1 this.current 20 @@ -90552,9 +91397,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2809 +2784 this -792834113 +2114874018 1 this.current 20 @@ -90565,15 +91410,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2808 +2783 this -792834113 +2114874018 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -90581,32 +91426,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2810 +2785 this -1017656981 +1956710488 1 this.current -4 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2811 +2786 this -1017656981 +1956710488 1 this.current -4 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2811 +2786 this -1017656981 +1956710488 1 this.current -4 +19 1 return false @@ -90614,32 +91459,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2810 +2785 this -1017656981 +1956710488 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2812 +2787 this -1017656981 +1956710488 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2812 +2787 this -1017656981 +1956710488 1 this.current -13 +20 1 return false @@ -90647,32 +91492,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2813 +2788 this -1017656981 +1956710488 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2814 +2789 this -1017656981 +1956710488 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2814 +2789 this -1017656981 +1956710488 1 this.current -13 +20 1 return false @@ -90680,43 +91525,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2813 +2788 this -1017656981 +1956710488 1 this.current -13 +20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2815 +2790 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90725,55 +91570,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -26907556 +911312317 1 x.getClass().getName() -"java.lang.Long" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2816 +2791 theNode -20 +0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2816 +2791 this -1263727822 +415186196 1 this.current -20 +0 1 theNode -20 +0 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2815 +2790 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90782,205 +91627,90 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -26907556 +911312317 1 x.getClass().getName() -"java.lang.Long" +"java.lang.String" 1 return -1263727822 +415186196 1 return.current -20 -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2817 -this -1263727822 -1 -this.current -20 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2818 -this -1263727822 -1 -this.current -20 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2818 -this -1263727822 -1 -this.current -20 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2817 -this -1263727822 -1 -this.current -20 -1 -return -829274326 -1 -return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2819 -this -1017656981 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2820 -this -1017656981 -1 -this.current -13 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2820 -this -1017656981 -1 -this.current -13 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2819 -this -1017656981 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2821 -this -1017656981 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2821 -this -1017656981 -1 -this.current -14 -1 -return -false +0 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2822 +2792 this -1017656981 +415186196 1 this.current -14 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2823 +2793 this -1017656981 +415186196 1 this.current -14 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2823 +2793 this -1017656981 +415186196 1 this.current -14 +0 1 return -false +true 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2822 +2792 this -1017656981 +415186196 1 this.current -14 +0 1 return -153302244 +null 1 return.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2824 +2794 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -90989,55 +91719,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -860235524 +1337344609 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2825 +2795 theNode -20 +14 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2825 +2795 this -1118540264 +1113619023 1 this.current -20 +14 1 theNode -20 +14 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2824 +2794 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -91046,46 +91776,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -860235524 +1337344609 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 return -1118540264 +1113619023 1 return.current -20 +14 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2826 +2796 this -1118540264 +1113619023 1 this.current -20 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2827 +2797 this -1118540264 +1113619023 1 this.current -20 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2827 +2797 this -1118540264 +1113619023 1 this.current -20 +14 1 return false @@ -91093,48 +91823,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2826 +2796 this -1118540264 +1113619023 1 this.current -20 +14 1 return -829274326 +2036958521 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2828 +2798 this -1017656981 +1956710488 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2829 +2799 this -1017656981 +1956710488 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2829 +2799 this -1017656981 +1956710488 1 this.current -14 +20 1 return false @@ -91142,166 +91872,60 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2828 -this -1017656981 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2830 -this -1017656981 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2830 -this -1017656981 -1 -this.current -15 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2831 +2798 this -1017656981 +1956710488 1 this.current -15 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2832 +2800 this -1017656981 +1956710488 1 this.current -15 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2832 -this -1017656981 -1 -this.current -15 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2831 +2800 this -1017656981 +1956710488 1 this.current -15 +0 1 return -966091658 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER -this_invocation_nonce -2833 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -234371210 -1 -x.getClass().getName() -"java.lang.String" -1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2834 -theNode -20 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -2834 -this -591917872 -1 -this.current -20 -1 -theNode -20 +true 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorList.zeroth():::ENTER this_invocation_nonce -2833 +2801 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -91309,129 +91933,82 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -234371210 -1 -x.getClass().getName() -"java.lang.String" -1 -return -591917872 -1 -return.current -20 -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2835 -this -591917872 -1 -this.current -20 -1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2836 -this -591917872 -1 -this.current -20 +2802 +theNode +4 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2836 +2802 this -591917872 +2015781843 1 this.current -20 +4 1 -return -false +theNode +4 1 -DataStructures.CursorListItr.retrieve():::EXIT45 +DataStructures.CursorList.zeroth():::EXIT80 this_invocation_nonce -2835 +2801 this -591917872 +1216590855 1 -this.current -20 -1 -return -829274326 +this.header +4 1 -return.getClass().getName() -"java.io.PrintStream" +DataStructures.CursorList.cursorSpace +1659791576 1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2837 -this -1017656981 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 -this.current -15 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2838 -this -1017656981 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 -this.current -15 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2838 -this -1017656981 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -this.current -15 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -false +2015781843 1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2837 -this -1017656981 -1 -this.current -16 +return.current +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2839 +2803 this -1017656981 +2015781843 1 this.current -16 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2839 +2803 this -1017656981 +2015781843 1 this.current -16 +4 1 return false @@ -91439,32 +92016,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2840 +2804 this -1017656981 +2015781843 1 this.current -16 +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2841 +2805 this -1017656981 +2015781843 1 this.current -16 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2841 +2805 this -1017656981 +2015781843 1 this.current -16 +4 1 return false @@ -91472,43 +92049,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2840 +2804 this -1017656981 +2015781843 1 this.current -16 +4 1 return -1898555459 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2842 +2806 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -91517,55 +92094,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +428910174 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2843 +2807 theNode -4 +20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2843 +2807 this -1219421800 +1682463303 1 this.current -4 +20 1 theNode -4 +20 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2842 +2806 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -91574,46 +92151,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +428910174 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 return -1219421800 +1682463303 1 return.current -4 +20 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2844 +2808 this -1219421800 +1682463303 1 this.current -4 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2845 +2809 this -1219421800 +1682463303 1 this.current -4 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2845 +2809 this -1219421800 +1682463303 1 this.current -4 +20 1 return false @@ -91621,48 +92198,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2844 +2808 this -1219421800 +1682463303 1 this.current -4 +20 1 return -null +237351678 1 return.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2846 +2810 this -1017656981 +2015781843 1 this.current -16 +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2847 +2811 this -1017656981 +2015781843 1 this.current -16 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2847 +2811 this -1017656981 +2015781843 1 this.current -16 +4 1 return false @@ -91670,32 +92247,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2846 +2810 this -1017656981 +2015781843 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2848 +2812 this -1017656981 +2015781843 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2848 +2812 this -1017656981 +2015781843 1 this.current -17 +13 1 return false @@ -91703,32 +92280,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2849 +2813 this -1017656981 +2015781843 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2850 +2814 this -1017656981 +2015781843 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2850 +2814 this -1017656981 +2015781843 1 this.current -17 +13 1 return false @@ -91736,43 +92313,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2849 +2813 this -1017656981 +2015781843 1 this.current -17 +13 1 return -747138112 +237351678 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2851 +2815 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -91781,55 +92358,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +633075331 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2852 +2816 theNode -13 +20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2852 +2816 this -1385749279 +1858609436 1 this.current -13 +20 1 theNode -13 +20 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2851 +2815 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -91838,46 +92415,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +633075331 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return -1385749279 +1858609436 1 return.current -13 +20 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2853 +2817 this -1385749279 +1858609436 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2854 +2818 this -1385749279 +1858609436 1 this.current -13 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2854 +2818 this -1385749279 +1858609436 1 this.current -13 +20 1 return false @@ -91885,15 +92462,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2853 +2817 this -1385749279 +1858609436 1 this.current -13 +20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -91901,32 +92478,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2855 +2819 this -1017656981 +2015781843 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2856 +2820 this -1017656981 +2015781843 1 this.current -17 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2856 +2820 this -1017656981 +2015781843 1 this.current -17 +13 1 return false @@ -91934,32 +92511,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2855 +2819 this -1017656981 +2015781843 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2857 +2821 this -1017656981 +2015781843 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2857 +2821 this -1017656981 +2015781843 1 this.current -18 +14 1 return false @@ -91967,32 +92544,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2858 +2822 this -1017656981 +2015781843 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2859 +2823 this -1017656981 +2015781843 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2859 +2823 this -1017656981 +2015781843 1 this.current -18 +14 1 return false @@ -92000,43 +92577,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2858 +2822 this -1017656981 +2015781843 1 this.current -18 +14 1 return -459711800 +2036958521 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2860 +2824 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92045,24 +92622,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -827980438 +1920387277 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2861 +2825 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2861 +2825 this -173188906 +1414147750 1 this.current 20 @@ -92073,27 +92650,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2860 +2824 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92102,13 +92679,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -827980438 +1920387277 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 return -173188906 +1414147750 1 return.current 20 @@ -92116,9 +92693,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2862 +2826 this -173188906 +1414147750 1 this.current 20 @@ -92126,9 +92703,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2863 +2827 this -173188906 +1414147750 1 this.current 20 @@ -92136,9 +92713,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2863 +2827 this -173188906 +1414147750 1 this.current 20 @@ -92149,15 +92726,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2862 +2826 this -173188906 +1414147750 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -92165,32 +92742,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2864 +2828 this -1017656981 +2015781843 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2865 +2829 this -1017656981 +2015781843 1 this.current -18 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2865 +2829 this -1017656981 +2015781843 1 this.current -18 +14 1 return false @@ -92198,32 +92775,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2864 +2828 this -1017656981 +2015781843 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2866 +2830 this -1017656981 +2015781843 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2866 +2830 this -1017656981 +2015781843 1 this.current -19 +15 1 return false @@ -92231,32 +92808,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2867 +2831 this -1017656981 +2015781843 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2868 +2832 this -1017656981 +2015781843 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2868 +2832 this -1017656981 +2015781843 1 this.current -19 +15 1 return false @@ -92264,43 +92841,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2867 +2831 this -1017656981 +2015781843 1 this.current -19 +15 1 return -153302244 +1440047379 1 return.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2869 +2833 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92309,24 +92886,24 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -945601457 +775931202 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2870 +2834 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2870 +2834 this -1344699999 +22069592 1 this.current 20 @@ -92337,27 +92914,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2869 +2833 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92366,13 +92943,13 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -945601457 +775931202 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 return -1344699999 +22069592 1 return.current 20 @@ -92380,9 +92957,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2871 +2835 this -1344699999 +22069592 1 this.current 20 @@ -92390,9 +92967,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2872 +2836 this -1344699999 +22069592 1 this.current 20 @@ -92400,9 +92977,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2872 +2836 this -1344699999 +22069592 1 this.current 20 @@ -92413,15 +92990,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2871 +2835 this -1344699999 +22069592 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -92429,32 +93006,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2873 +2837 this -1017656981 +2015781843 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2874 +2838 this -1017656981 +2015781843 1 this.current -19 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2874 +2838 this -1017656981 +2015781843 1 this.current -19 +15 1 return false @@ -92462,32 +93039,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2873 +2837 this -1017656981 +2015781843 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2875 +2839 this -1017656981 +2015781843 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2875 +2839 this -1017656981 +2015781843 1 this.current -20 +16 1 return false @@ -92495,32 +93072,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2876 +2840 this -1017656981 +2015781843 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2877 +2841 this -1017656981 +2015781843 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2877 +2841 this -1017656981 +2015781843 1 this.current -20 +16 1 return false @@ -92528,43 +93105,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2876 +2840 this -1017656981 +2015781843 1 this.current -20 +16 1 return -829274326 +1522311648 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2878 +2842 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92573,55 +93150,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -254982165 +237351678 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2879 +2843 theNode -20 +4 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2879 +2843 this -1255371390 +1160003871 1 this.current -20 +4 1 theNode -20 +4 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2878 +2842 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92630,46 +93207,46 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -254982165 +237351678 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 return -1255371390 +1160003871 1 return.current -20 +4 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2880 +2844 this -1255371390 +1160003871 1 this.current -20 +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2881 +2845 this -1255371390 +1160003871 1 this.current -20 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2881 +2845 this -1255371390 +1160003871 1 this.current -20 +4 1 return false @@ -92677,48 +93254,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2880 +2844 this -1255371390 +1160003871 1 this.current -20 +4 1 return -829274326 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2882 +2846 this -1017656981 +2015781843 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2883 +2847 this -1017656981 +2015781843 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2883 +2847 this -1017656981 +2015781843 1 this.current -20 +16 1 return false @@ -92726,153 +93303,65 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2882 +2846 this -1017656981 +2015781843 1 this.current -0 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2884 +2848 this -1017656981 +2015781843 1 this.current -0 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2884 -this -1017656981 -1 -this.current -0 -1 -return -true -1 - -DataStructures.CursorList.first():::ENTER -this_invocation_nonce -2885 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2886 -theNode -13 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -2886 +2848 this -119955 +2015781843 1 this.current -13 -1 -theNode -13 -1 - -DataStructures.CursorList.first():::EXIT89 -this_invocation_nonce -2885 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +17 1 return -119955 -1 -return.current -13 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2887 +2849 this -119955 +2015781843 1 this.current -13 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2888 +2850 this -119955 +2015781843 1 this.current -13 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2888 +2850 this -119955 +2015781843 1 this.current -13 +17 1 return false @@ -92880,80 +93369,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2887 +2849 this -119955 +2015781843 1 this.current -13 +17 1 return -829274326 +1709366259 1 return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.CursorList.remove(java.lang.Object):::ENTER -this_invocation_nonce -2889 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -829274326 -1 -x.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2890 +2851 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -92962,55 +93414,55 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +2036958521 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2891 +2852 theNode -4 +13 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2891 +2852 this -2016083685 +1075738627 1 this.current -4 +13 1 theNode -4 +13 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2890 +2851 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -93019,346 +93471,310 @@ DataStructures.CursorList.cursorSpace[..].next [12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +2036958521 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 return -2016083685 +1075738627 1 return.current -4 +13 1 -DataStructures.CursorList.free(int):::ENTER +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2892 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null 829274326 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[12 3 21 5 14 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +2853 +this +1075738627 1 -p +this.current 13 1 -DataStructures.CursorList.free(int):::EXIT45 +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2892 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +2854 +this +1075738627 1 -p +this.current 13 1 -DataStructures.CursorList.remove(java.lang.Object):::EXIT157 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2889 +2854 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" +1075738627 1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +this.current +13 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +return +false 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.retrieve():::EXIT45 +this_invocation_nonce +2853 +this +1075738627 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +13 1 -x -829274326 +return +237351678 1 -x.getClass().getName() +return.getClass().getName() "java.io.PrintStream" 1 -DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2893 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +2855 +this +2015781843 1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +this.current +17 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2856 +this +2015781843 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +17 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2856 +this +2015781843 1 -theList -1266405716 +this.current +17 1 -theList.header -4 +return +false 1 -DataStructures.CursorList.isEmpty():::ENTER +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2894 +2855 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 +2015781843 1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" +this.current +18 1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2857 +this +2015781843 1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +this.current +18 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2857 +this +2015781843 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +18 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +return +false 1 -DataStructures.CursorList.isEmpty():::EXIT62 +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2894 +2858 this -1266405716 +2015781843 1 -this.header -4 +this.current +18 1 -DataStructures.CursorList.cursorSpace -1911757902 + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2859 +this +2015781843 1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" +this.current +18 1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2859 +this +2015781843 1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +this.current +18 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +return +false 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.retrieve():::EXIT45 +this_invocation_nonce +2858 +this +2015781843 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +18 1 return -false +1924582348 +1 +return.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.CursorList.first():::ENTER +DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2895 +2860 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +282828951 +1 +x.getClass().getName() +"java.lang.Object" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2896 +2861 theNode -14 +20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2896 +2861 this -1321511429 +394721749 1 this.current -14 +20 1 theNode -14 +20 1 -DataStructures.CursorList.first():::EXIT89 +DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2895 +2860 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -return -1321511429 -1 -return.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2897 -this -1321511429 -1 -this.current -14 +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2897 -this -1321511429 +x +282828951 1 -this.current -14 +x.getClass().getName() +"java.lang.Object" 1 return -false +394721749 +1 +return.current +20 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2898 +2862 this -1321511429 +394721749 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2899 +2863 this -1321511429 +394721749 1 this.current -14 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2899 +2863 this -1321511429 +394721749 1 this.current -14 +20 1 return false @@ -93366,48 +93782,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2898 +2862 this -1321511429 +394721749 1 this.current -14 +20 1 return -153302244 +237351678 1 return.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2900 +2864 this -1321511429 +2015781843 1 this.current -14 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2901 +2865 this -1321511429 +2015781843 1 this.current -14 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2901 +2865 this -1321511429 +2015781843 1 this.current -14 +18 1 return false @@ -93415,32 +93831,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2900 +2864 this -1321511429 +2015781843 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2902 +2866 this -1321511429 +2015781843 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2902 +2866 this -1321511429 +2015781843 1 this.current -15 +19 1 return false @@ -93448,32 +93864,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2903 +2867 this -1321511429 +2015781843 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2904 +2868 this -1321511429 +2015781843 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2904 +2868 this -1321511429 +2015781843 1 this.current -15 +19 1 return false @@ -93481,114 +93897,148 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2903 +2867 this -1321511429 +2015781843 1 this.current -15 +19 1 return -966091658 +2036958521 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 -DataStructures.CursorListItr.advance():::ENTER +DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2905 +2869 this -1321511429 +1216590855 1 -this.current -15 +this.header +4 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2906 -this -1321511429 +DataStructures.CursorList.cursorSpace +1659791576 1 -this.current -15 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2906 -this -1321511429 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 -this.current -15 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 -return -false +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +1884122755 +1 +x.getClass().getName() +"java.lang.Integer" 1 -DataStructures.CursorListItr.advance():::EXIT56 +DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2905 -this -1321511429 -1 -this.current -16 +2870 +theNode +20 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2907 +2870 this -1321511429 +1134612201 1 this.current -16 +20 +1 +theNode +20 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2907 +2869 this -1321511429 +1216590855 1 -this.current -16 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +1884122755 +1 +x.getClass().getName() +"java.lang.Integer" 1 return -false +1134612201 +1 +return.current +20 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2908 +2871 this -1321511429 +1134612201 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2909 +2872 this -1321511429 +1134612201 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2909 +2872 this -1321511429 +1134612201 1 this.current -16 +20 1 return false @@ -93596,48 +94046,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2908 +2871 this -1321511429 +1134612201 1 this.current -16 +20 1 return -1898555459 +237351678 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2910 +2873 this -1321511429 +2015781843 1 this.current -16 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2911 +2874 this -1321511429 +2015781843 1 this.current -16 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2911 +2874 this -1321511429 +2015781843 1 this.current -16 +19 1 return false @@ -93645,32 +94095,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2910 +2873 this -1321511429 +2015781843 1 this.current -17 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2912 +2875 this -1321511429 +2015781843 1 this.current -17 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2912 +2875 this -1321511429 +2015781843 1 this.current -17 +20 1 return false @@ -93678,32 +94128,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2913 +2876 this -1321511429 +2015781843 1 this.current -17 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2914 +2877 this -1321511429 +2015781843 1 this.current -17 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2914 +2877 this -1321511429 +2015781843 1 this.current -17 +20 1 return false @@ -93711,229 +94161,351 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2913 +2876 this -1321511429 +2015781843 1 this.current -17 +20 1 return -747138112 +237351678 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 -DataStructures.CursorListItr.advance():::ENTER +DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2915 +2878 this -1321511429 +1216590855 1 -this.current -17 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +246550802 +1 +x.getClass().getName() +"java.lang.String" 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2916 +2879 +theNode +20 +1 + +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +this_invocation_nonce +2879 this -1321511429 +786041152 1 this.current -17 +20 +1 +theNode +20 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2916 +2878 this -1321511429 +1216590855 1 -this.current -17 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +246550802 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +786041152 +1 +return.current +20 1 -DataStructures.CursorListItr.advance():::EXIT56 +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2915 +2880 this -1321511429 +786041152 1 this.current -18 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2917 +2881 this -1321511429 +786041152 1 this.current -18 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2917 +2881 this -1321511429 +786041152 1 this.current -18 +20 1 return false 1 -DataStructures.CursorListItr.retrieve():::ENTER +DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2918 +2880 this -1321511429 +786041152 1 this.current -18 +20 +1 +return +237351678 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2919 +2882 this -1321511429 +2015781843 1 this.current -18 +20 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2919 +2883 this -1321511429 +2015781843 1 this.current -18 -1 -return -false +20 1 -DataStructures.CursorListItr.retrieve():::EXIT45 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2918 +2883 this -1321511429 +2015781843 1 this.current -18 +20 1 return -459711800 -1 -return.getClass().getName() -"DataStructures.MyInteger" +false 1 -DataStructures.CursorListItr.advance():::ENTER +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2920 +2882 this -1321511429 +2015781843 1 this.current -18 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2921 +2884 this -1321511429 +2015781843 1 this.current -18 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2921 +2884 this -1321511429 +2015781843 1 this.current -18 +0 1 return -false +true 1 -DataStructures.CursorListItr.advance():::EXIT56 +DataStructures.CursorList.first():::ENTER this_invocation_nonce -2920 +2885 this -1321511429 +1216590855 1 -this.current -19 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2922 +2886 +theNode +13 +1 + +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +this_invocation_nonce +2886 this -1321511429 +897074030 1 this.current -19 +13 +1 +theNode +13 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorList.first():::EXIT89 this_invocation_nonce -2922 +2885 this -1321511429 +1216590855 1 -this.current -19 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -false +897074030 +1 +return.current +13 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2923 +2887 this -1321511429 +897074030 1 this.current -19 +13 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2924 +2888 this -1321511429 +897074030 1 this.current -19 +13 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2924 +2888 this -1321511429 +897074030 1 this.current -19 +13 1 return false @@ -93941,218 +94513,267 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2923 +2887 this -1321511429 +897074030 1 this.current -19 +13 1 return -153302244 +237351678 1 return.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 -DataStructures.CursorListItr.advance():::ENTER +DataStructures.CursorList.remove(java.lang.Object):::ENTER this_invocation_nonce -2925 +2889 this -1321511429 +1216590855 1 -this.current -19 +this.header +4 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2926 -this -1321511429 +DataStructures.CursorList.cursorSpace +1659791576 1 -this.current -19 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2926 -this -1321511429 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 -this.current -19 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 -return -false +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2925 -this -1321511429 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -this.current -20 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2927 -this -1321511429 +x +237351678 1 -this.current -20 +x.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2927 +2890 this -1321511429 +1216590855 1 -this.current -20 +this.header +4 1 -return -false +DataStructures.CursorList.cursorSpace +1659791576 1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2928 -this -1321511429 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 -this.current -20 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +237351678 +1 +x.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2929 -this -1321511429 -1 -this.current -20 +2891 +theNode +4 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2929 +2891 this -1321511429 +1885996206 1 this.current -20 +4 1 -return -false +theNode +4 1 -DataStructures.CursorListItr.retrieve():::EXIT45 +DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2928 +2890 this -1321511429 +1216590855 1 -this.current -20 +this.header +4 1 -return -829274326 +DataStructures.CursorList.cursorSpace +1659791576 1 -return.getClass().getName() -"java.io.PrintStream" +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2930 -this -1321511429 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 -this.current -20 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2931 -this -1321511429 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -this.current -20 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2931 -this -1321511429 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 13 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -this.current -20 +x +237351678 +1 +x.getClass().getName() +"java.io.PrintStream" 1 return -false +1885996206 +1 +return.current +4 1 -DataStructures.CursorListItr.advance():::EXIT56 +DataStructures.CursorList.free(int):::ENTER this_invocation_nonce -2930 -this -1321511429 +2892 +DataStructures.CursorList.cursorSpace +1659791576 1 -this.current -0 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null 237351678 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "java.io.PrintStream" "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[12 3 21 5 14 7 0 9 0 11 0 0 2 14 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +p +13 1 -DataStructures.CursorListItr.isPastEnd():::ENTER +DataStructures.CursorList.free(int):::EXIT45 this_invocation_nonce -2932 -this -1321511429 +2892 +DataStructures.CursorList.cursorSpace +1659791576 1 -this.current -0 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +p +13 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 +DataStructures.CursorList.remove(java.lang.Object):::EXIT157 this_invocation_nonce -2932 +2889 this -1321511429 +1216590855 1 -this.current -0 +this.header +4 1 -return -true +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 +x +237351678 +1 +x.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 +DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER this_invocation_nonce 2893 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -94161,7 +94782,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 theList -1266405716 +1216590855 1 theList.header 4 @@ -94169,27 +94790,27 @@ theList.header DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce -2933 +2894 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -94200,27 +94821,27 @@ DataStructures.CursorList.cursorSpace[..].next DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce -2933 +2894 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -94234,27 +94855,27 @@ false DataStructures.CursorList.first():::ENTER this_invocation_nonce -2934 +2895 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -94265,16 +94886,16 @@ DataStructures.CursorList.cursorSpace[..].next DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2935 +2896 theNode 14 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2935 +2896 this -1366709929 +1859039536 1 this.current 14 @@ -94285,27 +94906,27 @@ theNode DataStructures.CursorList.first():::EXIT89 this_invocation_nonce -2934 +2895 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -94314,7 +94935,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -1366709929 +1859039536 1 return.current 14 @@ -94322,9 +94943,9 @@ return.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2936 +2897 this -1366709929 +1859039536 1 this.current 14 @@ -94332,9 +94953,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2936 +2897 this -1366709929 +1859039536 1 this.current 14 @@ -94345,9 +94966,9 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2937 +2898 this -1366709929 +1859039536 1 this.current 14 @@ -94355,9 +94976,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2938 +2899 this -1366709929 +1859039536 1 this.current 14 @@ -94365,9 +94986,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2938 +2899 this -1366709929 +1859039536 1 this.current 14 @@ -94378,125 +94999,91 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2937 +2898 this -1366709929 +1859039536 1 this.current 14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" 1 -DataStructures.CursorList.find(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2939 +2900 this -1266405716 -1 -this.header -4 +1859039536 1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +this.current +14 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2901 +this +1859039536 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +14 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2901 +this +1859039536 1 -x -808688391 +this.current +14 1 -x.getClass().getName() -"DataStructures.MyInteger" +return +false 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2940 -theNode +2900 +this +1859039536 +1 +this.current 15 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2940 +2902 this -201785674 +1859039536 1 this.current 15 1 -theNode -15 -1 -DataStructures.CursorList.find(java.lang.Object):::EXIT122 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2939 +2902 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1859039536 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -808688391 -1 -x.getClass().getName() -"DataStructures.MyInteger" +this.current +15 1 return -201785674 -1 -return.current -15 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2941 +2903 this -201785674 +1859039536 1 this.current 15 @@ -94504,9 +95091,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2942 +2904 this -201785674 +1859039536 1 this.current 15 @@ -94514,9 +95101,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2942 +2904 this -201785674 +1859039536 1 this.current 15 @@ -94527,148 +95114,114 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2941 +2903 this -201785674 +1859039536 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2943 +2905 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -535144305 +1859039536 1 -x.getClass().getName() -"java.lang.Double" +this.current +15 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2944 -theNode -20 +2906 +this +1859039536 +1 +this.current +15 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2944 +2906 this -508820499 +1859039536 1 this.current -20 +15 1 -theNode -20 +return +false 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2943 +2905 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1859039536 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +16 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2907 +this +1859039536 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +16 1 -x -535144305 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2907 +this +1859039536 1 -x.getClass().getName() -"java.lang.Double" +this.current +16 1 return -508820499 -1 -return.current -20 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2945 +2908 this -508820499 +1859039536 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2946 +2909 this -508820499 +1859039536 1 this.current -20 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2946 +2909 this -508820499 +1859039536 1 this.current -20 +16 1 return false @@ -94676,48 +95229,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2945 +2908 this -508820499 +1859039536 1 this.current -20 +16 1 return -829274326 +1522311648 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2947 +2910 this -1366709929 +1859039536 1 this.current -14 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2948 +2911 this -1366709929 +1859039536 1 this.current -14 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2948 +2911 this -1366709929 +1859039536 1 this.current -14 +16 1 return false @@ -94725,32 +95278,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2947 +2910 this -1366709929 +1859039536 1 this.current -15 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2949 +2912 this -1366709929 +1859039536 1 this.current -15 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2949 +2912 this -1366709929 +1859039536 1 this.current -15 +17 1 return false @@ -94758,32 +95311,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2950 +2913 this -1366709929 +1859039536 1 this.current -15 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2951 +2914 this -1366709929 +1859039536 1 this.current -15 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2951 +2914 this -1366709929 +1859039536 1 this.current -15 +17 1 return false @@ -94791,297 +95344,229 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2950 +2913 this -1366709929 +1859039536 1 this.current -15 +17 1 return -966091658 +1709366259 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 -DataStructures.CursorList.find(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2952 +2915 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -466244339 +1859039536 1 -x.getClass().getName() -"java.lang.Long" +this.current +17 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2953 -theNode -0 +2916 +this +1859039536 +1 +this.current +17 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2953 +2916 this -777670 +1859039536 1 this.current -0 +17 1 -theNode -0 +return +false 1 -DataStructures.CursorList.find(java.lang.Object):::EXIT122 +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2952 +2915 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" +1859039536 1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +18 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2917 +this +1859039536 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +18 1 -x -466244339 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2917 +this +1859039536 1 -x.getClass().getName() -"java.lang.Long" +this.current +18 1 return -777670 -1 -return.current -0 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2954 +2918 this -777670 +1859039536 1 this.current -0 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2955 +2919 this -777670 +1859039536 1 this.current -0 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2955 +2919 this -777670 +1859039536 1 this.current -0 +18 1 return -true +false 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2954 +2918 this -777670 +1859039536 1 this.current -0 +18 1 return -null +1924582348 1 return.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2956 +2920 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -185397808 +1859039536 1 -x.getClass().getName() -"java.lang.String" +this.current +18 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2957 -theNode -20 +2921 +this +1859039536 +1 +this.current +18 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2957 +2921 this -2129670906 +1859039536 1 this.current -20 +18 1 -theNode -20 +return +false 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2956 +2920 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1859039536 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +19 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2922 +this +1859039536 1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +19 1 -x -185397808 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2922 +this +1859039536 1 -x.getClass().getName() -"java.lang.String" +this.current +19 1 return -2129670906 -1 -return.current -20 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2958 +2923 this -2129670906 +1859039536 1 this.current -20 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2959 +2924 this -2129670906 +1859039536 1 this.current -20 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2959 +2924 this -2129670906 +1859039536 1 this.current -20 +19 1 return false @@ -95089,48 +95574,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2958 +2923 this -2129670906 +1859039536 1 this.current -20 +19 1 return -829274326 +2036958521 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2960 +2925 this -1366709929 +1859039536 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2961 +2926 this -1366709929 +1859039536 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2961 +2926 this -1366709929 +1859039536 1 this.current -15 +19 1 return false @@ -95138,32 +95623,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2960 +2925 this -1366709929 +1859039536 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2962 +2927 this -1366709929 +1859039536 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2962 +2927 this -1366709929 +1859039536 1 this.current -16 +20 1 return false @@ -95171,32 +95656,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2963 +2928 this -1366709929 +1859039536 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2964 +2929 this -1366709929 +1859039536 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2964 +2929 this -1366709929 +1859039536 1 this.current -16 +20 1 return false @@ -95204,43 +95689,103 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2963 +2928 this -1366709929 +1859039536 1 this.current -16 +20 1 return -1898555459 +237351678 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 -DataStructures.CursorList.find(java.lang.Object):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2965 +2930 this -1266405716 +1859039536 1 -this.header -4 +this.current +20 +1 + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2931 +this +1859039536 +1 +this.current +20 +1 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2931 +this +1859039536 +1 +this.current +20 +1 +return +false +1 + +DataStructures.CursorListItr.advance():::EXIT56 +this_invocation_nonce +2930 +this +1859039536 +1 +this.current +0 +1 + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2932 +this +1859039536 1 +this.current +0 +1 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2932 +this +1859039536 +1 +this.current +0 +1 +return +true +1 + +DataStructures.CursorList.printList(DataStructures.CursorList):::EXIT172 +this_invocation_nonce +2893 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95248,56 +95793,36 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -1268972593 -1 -x.getClass().getName() -"java.lang.String" -1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -2966 -theNode -0 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -2966 -this -962272194 -1 -this.current -0 +theList +1216590855 1 -theNode -0 +theList.header +4 1 -DataStructures.CursorList.find(java.lang.Object):::EXIT122 +DataStructures.CursorList.isEmpty():::ENTER this_invocation_nonce -2965 +2933 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95305,91 +95830,64 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -1268972593 -1 -x.getClass().getName() -"java.lang.String" -1 -return -962272194 -1 -return.current -0 -1 -DataStructures.CursorListItr.retrieve():::ENTER +DataStructures.CursorList.isEmpty():::EXIT62 this_invocation_nonce -2967 +2933 this -962272194 +1216590855 1 -this.current -0 +this.header +4 1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2968 -this -962272194 +DataStructures.CursorList.cursorSpace +1659791576 1 -this.current -0 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" 1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2968 -this -962272194 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 -this.current -0 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 -return -true +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2967 -this -962272194 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -this.current -0 +DataStructures.CursorList.cursorSpace[..].next +[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 return -null +false 1 -return.getClass().getName() -nonsensical -2 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorList.first():::ENTER this_invocation_nonce -2969 +2934 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95397,56 +95895,50 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -829274326 -1 -x.getClass().getName() -"java.io.PrintStream" -1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2970 +2935 theNode -19 +14 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2970 +2935 this -209419001 +278934944 1 this.current -19 +14 1 theNode -19 +14 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorList.first():::EXIT89 this_invocation_nonce -2969 +2934 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95454,129 +95946,31 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -x -829274326 -1 -x.getClass().getName() -"java.io.PrintStream" -1 return -209419001 +278934944 1 return.current -19 -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -2971 -this -209419001 -1 -this.current -19 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2972 -this -209419001 -1 -this.current -19 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2972 -this -209419001 -1 -this.current -19 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -2971 -this -209419001 -1 -this.current -19 -1 -return -153302244 -1 -return.getClass().getName() -"java.lang.Class" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -2973 -this -1366709929 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -2974 -this -1366709929 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -2974 -this -1366709929 -1 -this.current -16 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -2973 -this -1366709929 -1 -this.current -17 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2975 +2936 this -1366709929 +278934944 1 this.current -17 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2975 +2936 this -1366709929 +278934944 1 this.current -17 +14 1 return false @@ -95584,32 +95978,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2976 +2937 this -1366709929 +278934944 1 this.current -17 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2977 +2938 this -1366709929 +278934944 1 this.current -17 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2977 +2938 this -1366709929 +278934944 1 this.current -17 +14 1 return false @@ -95617,43 +96011,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2976 +2937 this -1366709929 +278934944 1 this.current -17 +14 1 return -747138112 +2036958521 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2978 +2939 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95662,55 +96056,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +1739876329 1 x.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2979 +2940 theNode -14 +15 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2979 +2940 this -2126936021 +1205555397 1 this.current -14 +15 1 theNode -14 +15 1 DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2978 +2939 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95719,46 +96113,46 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +1739876329 1 x.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 return -2126936021 +1205555397 1 return.current -14 +15 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2980 +2941 this -2126936021 +1205555397 1 this.current -14 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2981 +2942 this -2126936021 +1205555397 1 this.current -14 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2981 +2942 this -2126936021 +1205555397 1 this.current -14 +15 1 return false @@ -95766,43 +96160,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2980 +2941 this -2126936021 +1205555397 1 this.current -14 +15 1 return -153302244 +1440047379 1 return.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2982 +2943 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95811,24 +96205,24 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -400916985 +1543974463 1 x.getClass().getName() -"java.lang.Object" +"java.lang.Double" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2983 +2944 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2983 +2944 this -1555566256 +1293618474 1 this.current 20 @@ -95839,27 +96233,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2982 +2943 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -95868,13 +96262,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -400916985 +1543974463 1 x.getClass().getName() -"java.lang.Object" +"java.lang.Double" 1 return -1555566256 +1293618474 1 return.current 20 @@ -95882,9 +96276,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2984 +2945 this -1555566256 +1293618474 1 this.current 20 @@ -95892,9 +96286,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2985 +2946 this -1555566256 +1293618474 1 this.current 20 @@ -95902,9 +96296,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2985 +2946 this -1555566256 +1293618474 1 this.current 20 @@ -95915,15 +96309,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2984 +2945 this -1555566256 +1293618474 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -95931,32 +96325,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2986 +2947 this -1366709929 +278934944 1 this.current -17 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2987 +2948 this -1366709929 +278934944 1 this.current -17 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2987 +2948 this -1366709929 +278934944 1 this.current -17 +14 1 return false @@ -95964,32 +96358,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2986 +2947 this -1366709929 +278934944 1 this.current -18 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2988 +2949 this -1366709929 +278934944 1 this.current -18 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2988 +2949 this -1366709929 +278934944 1 this.current -18 +15 1 return false @@ -95997,32 +96391,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2989 +2950 this -1366709929 +278934944 1 this.current -18 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2990 +2951 this -1366709929 +278934944 1 this.current -18 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2990 +2951 this -1366709929 +278934944 1 this.current -18 +15 1 return false @@ -96030,15 +96424,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2989 +2950 this -1366709929 +278934944 1 this.current -18 +15 1 return -459711800 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96046,27 +96440,27 @@ return.getClass().getName() DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -2991 +2952 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96075,24 +96469,24 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -936146014 +156545103 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.Long" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2992 +2953 theNode 0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2992 +2953 this -1340859376 +345281752 1 this.current 0 @@ -96103,27 +96497,27 @@ theNode DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -2991 +2952 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96132,13 +96526,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -936146014 +156545103 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.Long" 1 return -1340859376 +345281752 1 return.current 0 @@ -96146,9 +96540,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2993 +2954 this -1340859376 +345281752 1 this.current 0 @@ -96156,9 +96550,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2994 +2955 this -1340859376 +345281752 1 this.current 0 @@ -96166,9 +96560,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2994 +2955 this -1340859376 +345281752 1 this.current 0 @@ -96179,9 +96573,9 @@ true DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2993 +2954 this -1340859376 +345281752 1 this.current 0 @@ -96195,27 +96589,27 @@ nonsensical DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -2995 +2956 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96224,7 +96618,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -130140814 +1896294051 1 x.getClass().getName() "java.lang.String" @@ -96232,16 +96626,16 @@ x.getClass().getName() DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -2996 +2957 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -2996 +2957 this -1138308252 +1684015092 1 this.current 20 @@ -96252,27 +96646,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -2995 +2956 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96281,13 +96675,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -130140814 +1896294051 1 x.getClass().getName() "java.lang.String" 1 return -1138308252 +1684015092 1 return.current 20 @@ -96295,9 +96689,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -2997 +2958 this -1138308252 +1684015092 1 this.current 20 @@ -96305,9 +96699,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -2998 +2959 this -1138308252 +1684015092 1 this.current 20 @@ -96315,9 +96709,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -2998 +2959 this -1138308252 +1684015092 1 this.current 20 @@ -96328,15 +96722,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -2997 +2958 this -1138308252 +1684015092 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -96344,32 +96738,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -2999 +2960 this -1366709929 +278934944 1 this.current -18 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3000 +2961 this -1366709929 +278934944 1 this.current -18 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3000 +2961 this -1366709929 +278934944 1 this.current -18 +15 1 return false @@ -96377,32 +96771,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -2999 +2960 this -1366709929 +278934944 1 this.current -19 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3001 +2962 this -1366709929 +278934944 1 this.current -19 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3001 +2962 this -1366709929 +278934944 1 this.current -19 +16 1 return false @@ -96410,32 +96804,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3002 +2963 this -1366709929 +278934944 1 this.current -19 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3003 +2964 this -1366709929 +278934944 1 this.current -19 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3003 +2964 this -1366709929 +278934944 1 this.current -19 +16 1 return false @@ -96443,43 +96837,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3002 +2963 this -1366709929 +278934944 1 this.current -19 +16 1 return -153302244 +1522311648 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -3004 +2965 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96488,55 +96882,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1762463888 +1209669119 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3005 +2966 theNode -15 +0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3005 +2966 this -1488622545 +2014866032 1 this.current -15 +0 1 theNode -15 +0 1 DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -3004 +2965 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96545,90 +96939,90 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1762463888 +1209669119 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.String" 1 return -1488622545 +2014866032 1 return.current -15 +0 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3006 +2967 this -1488622545 +2014866032 1 this.current -15 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3007 +2968 this -1488622545 +2014866032 1 this.current -15 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3007 +2968 this -1488622545 +2014866032 1 this.current -15 +0 1 return -false +true 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3006 +2967 this -1488622545 +2014866032 1 this.current -15 +0 1 return -966091658 +null 1 return.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3008 +2969 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96637,55 +97031,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1094626265 +237351678 1 x.getClass().getName() -"java.lang.Double" +"java.io.PrintStream" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3009 +2970 theNode -20 +19 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3009 +2970 this -2038715653 +811760110 1 this.current -20 +19 1 theNode -20 +19 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3008 +2969 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96694,46 +97088,46 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1094626265 +237351678 1 x.getClass().getName() -"java.lang.Double" +"java.io.PrintStream" 1 return -2038715653 +811760110 1 return.current -20 +19 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3010 +2971 this -2038715653 +811760110 1 this.current -20 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3011 +2972 this -2038715653 +811760110 1 this.current -20 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3011 +2972 this -2038715653 +811760110 1 this.current -20 +19 1 return false @@ -96741,48 +97135,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3010 +2971 this -2038715653 +811760110 1 this.current -20 +19 1 return -829274326 +2036958521 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3012 +2973 this -1366709929 +278934944 1 this.current -19 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3013 +2974 this -1366709929 +278934944 1 this.current -19 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3013 +2974 this -1366709929 +278934944 1 this.current -19 +16 1 return false @@ -96790,32 +97184,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3012 +2973 this -1366709929 +278934944 1 this.current -20 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3014 +2975 this -1366709929 +278934944 1 this.current -20 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3014 +2975 this -1366709929 +278934944 1 this.current -20 +17 1 return false @@ -96823,32 +97217,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3015 +2976 this -1366709929 +278934944 1 this.current -20 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3016 +2977 this -1366709929 +278934944 1 this.current -20 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3016 +2977 this -1366709929 +278934944 1 this.current -20 +17 1 return false @@ -96856,43 +97250,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3015 +2976 this -1366709929 +278934944 1 this.current -20 +17 1 return -829274326 +1709366259 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -3017 +2978 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96901,55 +97295,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1592392086 +2036958521 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3018 +2979 theNode -0 +14 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3018 +2979 this -1392580488 +1415157681 1 this.current -0 +14 1 theNode -0 +14 1 DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -3017 +2978 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -96958,90 +97352,90 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1592392086 +2036958521 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 return -1392580488 +1415157681 1 return.current -0 +14 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3019 +2980 this -1392580488 +1415157681 1 this.current -0 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3020 +2981 this -1392580488 +1415157681 1 this.current -0 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3020 +2981 this -1392580488 +1415157681 1 this.current -0 +14 1 return -true +false 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3019 +2980 this -1392580488 +1415157681 1 this.current -0 +14 1 return -null +2036958521 1 return.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3021 +2982 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97050,24 +97444,24 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1823476810 +1291113768 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3022 +2983 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3022 +2983 this -435619333 +2005167404 1 this.current 20 @@ -97078,27 +97472,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3021 +2982 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97107,13 +97501,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1823476810 +1291113768 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 return -435619333 +2005167404 1 return.current 20 @@ -97121,9 +97515,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3023 +2984 this -435619333 +2005167404 1 this.current 20 @@ -97131,9 +97525,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3024 +2985 this -435619333 +2005167404 1 this.current 20 @@ -97141,9 +97535,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3024 +2985 this -435619333 +2005167404 1 this.current 20 @@ -97154,15 +97548,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3023 +2984 this -435619333 +2005167404 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -97170,32 +97564,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3025 +2986 this -1366709929 +278934944 1 this.current -20 +17 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3026 +2987 this -1366709929 +278934944 1 this.current -20 +17 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3026 +2987 this -1366709929 +278934944 1 this.current -20 +17 1 return false @@ -97203,60 +97597,109 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3025 +2986 this -1366709929 +278934944 1 this.current -0 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3027 +2988 this -1366709929 +278934944 1 this.current -0 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3027 +2988 this -1366709929 +278934944 1 this.current -0 +18 1 return -true +false 1 -DataStructures.CursorList.zeroth():::ENTER +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3028 +2989 this -1266405716 +278934944 +1 +this.current +18 +1 + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +2990 +this +278934944 +1 +this.current +18 +1 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +2990 +this +278934944 +1 +this.current +18 +1 +return +false +1 + +DataStructures.CursorListItr.retrieve():::EXIT45 +this_invocation_nonce +2989 +this +278934944 +1 +this.current +18 +1 +return +1924582348 +1 +return.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.CursorList.find(java.lang.Object):::ENTER +this_invocation_nonce +2991 +this +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97264,50 +97707,56 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 +x +1418385211 +1 +x.getClass().getName() +"java.lang.Integer" +1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3029 +2992 theNode -4 +0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3029 +2992 this -682377108 +1282811396 1 this.current -4 +0 1 theNode -4 +0 1 -DataStructures.CursorList.zeroth():::EXIT80 +DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -3028 +2991 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97315,77 +97764,60 @@ DataStructures.CursorList.cursorSpace[..].element.getClass().getName() DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -return -682377108 -1 -return.current -4 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3030 -this -682377108 -1 -this.current -4 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3030 -this -682377108 +x +1418385211 1 -this.current -4 +x.getClass().getName() +"java.lang.Integer" 1 return -false +1282811396 +1 +return.current +0 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3031 +2993 this -682377108 +1282811396 1 this.current -4 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3032 +2994 this -682377108 +1282811396 1 this.current -4 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3032 +2994 this -682377108 +1282811396 1 this.current -4 +0 1 return -false +true 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3031 +2993 this -682377108 +1282811396 1 this.current -4 +0 1 return null @@ -97396,27 +97828,27 @@ nonsensical DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3033 +2995 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97425,7 +97857,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1149379176 +641853239 1 x.getClass().getName() "java.lang.String" @@ -97433,16 +97865,16 @@ x.getClass().getName() DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3034 +2996 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3034 +2996 this -1000406267 +1920467934 1 this.current 20 @@ -97453,27 +97885,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3033 +2995 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97482,13 +97914,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1149379176 +641853239 1 x.getClass().getName() "java.lang.String" 1 return -1000406267 +1920467934 1 return.current 20 @@ -97496,9 +97928,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3035 +2997 this -1000406267 +1920467934 1 this.current 20 @@ -97506,9 +97938,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3036 +2998 this -1000406267 +1920467934 1 this.current 20 @@ -97516,9 +97948,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3036 +2998 this -1000406267 +1920467934 1 this.current 20 @@ -97529,15 +97961,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3035 +2997 this -1000406267 +1920467934 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -97545,32 +97977,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3037 +2999 this -682377108 +278934944 1 this.current -4 +18 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3038 +3000 this -682377108 +278934944 1 this.current -4 +18 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3038 +3000 this -682377108 +278934944 1 this.current -4 +18 1 return false @@ -97578,32 +98010,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3037 +2999 this -682377108 +278934944 1 this.current -14 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3039 +3001 this -682377108 +278934944 1 this.current -14 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3039 +3001 this -682377108 +278934944 1 this.current -14 +19 1 return false @@ -97611,32 +98043,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3040 +3002 this -682377108 +278934944 1 this.current -14 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3041 +3003 this -682377108 +278934944 1 this.current -14 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3041 +3003 this -682377108 +278934944 1 this.current -14 +19 1 return false @@ -97644,43 +98076,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3040 +3002 this -682377108 +278934944 1 this.current -14 +19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -3042 +3004 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97689,55 +98121,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +1883840933 1 x.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3043 +3005 theNode -19 +15 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3043 +3005 this -1178657106 +233996206 1 this.current -19 +15 1 theNode -19 +15 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -3042 +3004 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97746,138 +98178,23 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -829274326 +1883840933 1 x.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 return -1178657106 +233996206 1 return.current -19 -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -3044 -this -1178657106 -1 -this.current -19 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3045 -this -1178657106 -1 -this.current -19 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3045 -this -1178657106 -1 -this.current -19 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -3044 -this -1178657106 -1 -this.current -19 -1 -return -153302244 -1 -return.getClass().getName() -"java.lang.Class" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -3046 -this -682377108 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3047 -this -682377108 -1 -this.current -14 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3047 -this -682377108 -1 -this.current -14 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -3046 -this -682377108 -1 -this.current -15 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3048 -this -682377108 -1 -this.current 15 1 -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3048 -this -682377108 -1 -this.current -15 -1 -return -false -1 - DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3049 +3006 this -682377108 +233996206 1 this.current 15 @@ -97885,9 +98202,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3050 +3007 this -682377108 +233996206 1 this.current 15 @@ -97895,9 +98212,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3050 +3007 this -682377108 +233996206 1 this.current 15 @@ -97908,15 +98225,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3049 +3006 this -682377108 +233996206 1 this.current 15 1 return -966091658 +1440047379 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97924,27 +98241,27 @@ return.getClass().getName() DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3051 +3008 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -97953,55 +98270,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +614685048 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Double" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3052 +3009 theNode -4 +20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3052 +3009 this -1300820614 +385337537 1 this.current -4 +20 1 theNode -4 +20 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3051 +3008 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98010,46 +98327,46 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +614685048 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Double" 1 return -1300820614 +385337537 1 return.current -4 +20 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3053 +3010 this -1300820614 +385337537 1 this.current -4 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3054 +3011 this -1300820614 +385337537 1 this.current -4 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3054 +3011 this -1300820614 +385337537 1 this.current -4 +20 1 return false @@ -98057,48 +98374,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3053 +3010 this -1300820614 +385337537 1 this.current -4 +20 1 return -null +237351678 1 return.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3055 +3012 this -682377108 +278934944 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3056 +3013 this -682377108 +278934944 1 this.current -15 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3056 +3013 this -682377108 +278934944 1 this.current -15 +19 1 return false @@ -98106,32 +98423,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3055 +3012 this -682377108 +278934944 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3057 +3014 this -682377108 +278934944 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3057 +3014 this -682377108 +278934944 1 this.current -16 +20 1 return false @@ -98139,32 +98456,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3058 +3015 this -682377108 +278934944 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3059 +3016 this -682377108 +278934944 1 this.current -16 +20 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3059 +3016 this -682377108 +278934944 1 this.current -16 +20 1 return false @@ -98172,43 +98489,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3058 +3015 this -682377108 +278934944 1 this.current -16 +20 1 return -1898555459 +237351678 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER +DataStructures.CursorList.find(java.lang.Object):::ENTER this_invocation_nonce -3060 +3017 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98217,55 +98534,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1508533038 +789219251 1 x.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3061 +3018 theNode -20 +0 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3061 +3018 this -722833184 +832279283 1 this.current -20 +0 1 theNode -20 +0 1 -DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 +DataStructures.CursorList.find(java.lang.Object):::EXIT122 this_invocation_nonce -3060 +3017 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98274,205 +98591,90 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1508533038 +789219251 1 x.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 return -722833184 +832279283 1 return.current -20 -1 - -DataStructures.CursorListItr.retrieve():::ENTER -this_invocation_nonce -3062 -this -722833184 -1 -this.current -20 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3063 -this -722833184 -1 -this.current -20 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3063 -this -722833184 -1 -this.current -20 -1 -return -false -1 - -DataStructures.CursorListItr.retrieve():::EXIT45 -this_invocation_nonce -3062 -this -722833184 -1 -this.current -20 -1 -return -829274326 -1 -return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.CursorListItr.advance():::ENTER -this_invocation_nonce -3064 -this -682377108 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3065 -this -682377108 -1 -this.current -16 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3065 -this -682377108 -1 -this.current -16 -1 -return -false -1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -3064 -this -682377108 -1 -this.current -17 -1 - -DataStructures.CursorListItr.isPastEnd():::ENTER -this_invocation_nonce -3066 -this -682377108 -1 -this.current -17 -1 - -DataStructures.CursorListItr.isPastEnd():::EXIT35 -this_invocation_nonce -3066 -this -682377108 -1 -this.current -17 -1 -return -false +0 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3067 +3019 this -682377108 +832279283 1 this.current -17 +0 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3068 +3020 this -682377108 +832279283 1 this.current -17 +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3068 +3020 this -682377108 +832279283 1 this.current -17 +0 1 return -false +true 1 DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3067 +3019 this -682377108 +832279283 1 this.current -17 +0 1 return -747138112 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3069 +3021 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98481,24 +98683,24 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -342332409 +265119009 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3070 +3022 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3070 +3022 this -472107750 +668210649 1 this.current 20 @@ -98509,27 +98711,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3069 +3021 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98538,13 +98740,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -342332409 +265119009 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 return -472107750 +668210649 1 return.current 20 @@ -98552,9 +98754,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3071 +3023 this -472107750 +668210649 1 this.current 20 @@ -98562,9 +98764,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3072 +3024 this -472107750 +668210649 1 this.current 20 @@ -98572,9 +98774,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3072 +3024 this -472107750 +668210649 1 this.current 20 @@ -98585,15 +98787,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3071 +3023 this -472107750 +668210649 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -98601,65 +98803,176 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3073 +3025 this -682377108 +278934944 1 this.current -17 +20 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3074 +3026 this -682377108 +278934944 1 this.current -17 +20 +1 + +DataStructures.CursorListItr.isPastEnd():::EXIT35 +this_invocation_nonce +3026 +this +278934944 +1 +this.current +20 +1 +return +false +1 + +DataStructures.CursorListItr.advance():::EXIT56 +this_invocation_nonce +3025 +this +278934944 +1 +this.current +0 +1 + +DataStructures.CursorListItr.isPastEnd():::ENTER +this_invocation_nonce +3027 +this +278934944 +1 +this.current +0 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3074 +3027 +this +278934944 +1 +this.current +0 +1 +return +true +1 + +DataStructures.CursorList.zeroth():::ENTER +this_invocation_nonce +3028 +this +1216590855 +1 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +1 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +1 +DataStructures.CursorList.cursorSpace[..].next +[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +1 + +DataStructures.CursorListItr.CursorListItr(int):::ENTER +this_invocation_nonce +3029 +theNode +4 +1 + +DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +this_invocation_nonce +3029 +this +1545087375 +1 +this.current +4 +1 +theNode +4 +1 + +DataStructures.CursorList.zeroth():::EXIT80 +this_invocation_nonce +3028 this -682377108 +1216590855 +1 +this.header +4 +1 +DataStructures.CursorList.cursorSpace +1659791576 +1 +DataStructures.CursorList.cursorSpace.getClass().getName() +"DataStructures.CursorNode[]" +1 +DataStructures.CursorList.cursorSpace[..] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] +1 +DataStructures.CursorList.cursorSpace[..].getClass().getName() +["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 -this.current -17 +DataStructures.CursorList.cursorSpace[..].element +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 -return -false +DataStructures.CursorList.cursorSpace[..].element.getClass().getName() +[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 - -DataStructures.CursorListItr.advance():::EXIT56 -this_invocation_nonce -3073 -this -682377108 +DataStructures.CursorList.cursorSpace[..].next +[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 -this.current -18 +return +1545087375 +1 +return.current +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3075 +3030 this -682377108 +1545087375 1 this.current -18 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3075 +3030 this -682377108 +1545087375 1 this.current -18 +4 1 return false @@ -98667,32 +98980,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3076 +3031 this -682377108 +1545087375 1 this.current -18 +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3077 +3032 this -682377108 +1545087375 1 this.current -18 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3077 +3032 this -682377108 +1545087375 1 this.current -18 +4 1 return false @@ -98700,43 +99013,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3076 +3031 this -682377108 +1545087375 1 this.current -18 +4 1 return -459711800 +null 1 return.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3078 +3033 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98745,7 +99058,7 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1910362232 +838411509 1 x.getClass().getName() "java.lang.String" @@ -98753,16 +99066,16 @@ x.getClass().getName() DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3079 +3034 theNode 20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3079 +3034 this -430026927 +1434041222 1 this.current 20 @@ -98773,27 +99086,27 @@ theNode DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3078 +3033 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -98802,13 +99115,13 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1910362232 +838411509 1 x.getClass().getName() "java.lang.String" 1 return -430026927 +1434041222 1 return.current 20 @@ -98816,9 +99129,9 @@ return.current DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3080 +3035 this -430026927 +1434041222 1 this.current 20 @@ -98826,9 +99139,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3081 +3036 this -430026927 +1434041222 1 this.current 20 @@ -98836,9 +99149,9 @@ this.current DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3081 +3036 this -430026927 +1434041222 1 this.current 20 @@ -98849,15 +99162,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3080 +3035 this -430026927 +1434041222 1 this.current 20 1 return -829274326 +237351678 1 return.getClass().getName() "java.io.PrintStream" @@ -98865,32 +99178,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3082 +3037 this -682377108 +1545087375 1 this.current -18 +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3083 +3038 this -682377108 +1545087375 1 this.current -18 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3083 +3038 this -682377108 +1545087375 1 this.current -18 +4 1 return false @@ -98898,32 +99211,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3082 +3037 this -682377108 +1545087375 1 this.current -19 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3084 +3039 this -682377108 +1545087375 1 this.current -19 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3084 +3039 this -682377108 +1545087375 1 this.current -19 +14 1 return false @@ -98931,32 +99244,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3085 +3040 this -682377108 +1545087375 1 this.current -19 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3086 +3041 this -682377108 +1545087375 1 this.current -19 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3086 +3041 this -682377108 +1545087375 1 this.current -19 +14 1 return false @@ -98964,15 +99277,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3085 +3040 this -682377108 +1545087375 1 this.current -19 +14 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -98980,27 +99293,27 @@ return.getClass().getName() DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3087 +3042 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -99009,55 +99322,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1180089934 +237351678 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3088 +3043 theNode -14 +19 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3088 +3043 this -1760040693 +1375995437 1 this.current -14 +19 1 theNode -14 +19 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3087 +3042 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -99066,46 +99379,46 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1180089934 +237351678 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 return -1760040693 +1375995437 1 return.current -14 +19 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3089 +3044 this -1760040693 +1375995437 1 this.current -14 +19 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3090 +3045 this -1760040693 +1375995437 1 this.current -14 +19 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3090 +3045 this -1760040693 +1375995437 1 this.current -14 +19 1 return false @@ -99113,15 +99426,15 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3089 +3044 this -1760040693 +1375995437 1 this.current -14 +19 1 return -153302244 +2036958521 1 return.getClass().getName() "java.lang.Class" @@ -99129,32 +99442,32 @@ return.getClass().getName() DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3091 +3046 this -682377108 +1545087375 1 this.current -19 +14 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3092 +3047 this -682377108 +1545087375 1 this.current -19 +14 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3092 +3047 this -682377108 +1545087375 1 this.current -19 +14 1 return false @@ -99162,32 +99475,32 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3091 +3046 this -682377108 +1545087375 1 this.current -20 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3093 +3048 this -682377108 +1545087375 1 this.current -20 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3093 +3048 this -682377108 +1545087375 1 this.current -20 +15 1 return false @@ -99195,32 +99508,32 @@ false DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3094 +3049 this -682377108 +1545087375 1 this.current -20 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3095 +3050 this -682377108 +1545087375 1 this.current -20 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3095 +3050 this -682377108 +1545087375 1 this.current -20 +15 1 return false @@ -99228,43 +99541,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3094 +3049 this -682377108 +1545087375 1 this.current -20 +15 1 return -829274326 +1440047379 1 return.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3096 +3051 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -99273,55 +99586,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1564173473 +2036958521 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Class" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3097 +3052 theNode -20 +4 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3097 +3052 this -1716237784 +1338841523 1 this.current -20 +4 1 theNode -20 +4 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3096 +3051 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -99330,46 +99643,46 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -1564173473 +2036958521 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Class" 1 return -1716237784 +1338841523 1 return.current -20 +4 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3098 +3053 this -1716237784 +1338841523 1 this.current -20 +4 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3099 +3054 this -1716237784 +1338841523 1 this.current -20 +4 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3099 +3054 this -1716237784 +1338841523 1 this.current -20 +4 1 return false @@ -99377,48 +99690,48 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3098 +3053 this -1716237784 +1338841523 1 this.current -20 +4 1 return -829274326 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3100 +3055 this -682377108 +1545087375 1 this.current -20 +15 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3101 +3056 this -682377108 +1545087375 1 this.current -20 +15 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3101 +3056 this -682377108 +1545087375 1 this.current -20 +15 1 return false @@ -99426,153 +99739,65 @@ false DataStructures.CursorListItr.advance():::EXIT56 this_invocation_nonce -3100 +3055 this -682377108 +1545087375 1 this.current -0 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3102 +3057 this -682377108 +1545087375 1 this.current -0 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3102 -this -682377108 -1 -this.current -0 -1 -return -true -1 - -DataStructures.CursorList.first():::ENTER -this_invocation_nonce -3103 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 - -DataStructures.CursorListItr.CursorListItr(int):::ENTER -this_invocation_nonce -3104 -theNode -14 -1 - -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 -this_invocation_nonce -3104 +3057 this -1955572831 +1545087375 1 this.current -14 -1 -theNode -14 -1 - -DataStructures.CursorList.first():::EXIT89 -this_invocation_nonce -3103 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +16 1 return -1955572831 -1 -return.current -14 +false 1 DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3105 +3058 this -1955572831 +1545087375 1 this.current -14 +16 1 DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3106 +3059 this -1955572831 +1545087375 1 this.current -14 +16 1 DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3106 +3059 this -1955572831 +1545087375 1 this.current -14 +16 1 return false @@ -99580,80 +99805,43 @@ false DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3105 +3058 this -1955572831 +1545087375 1 this.current -14 +16 1 return -153302244 +1522311648 1 return.getClass().getName() -"java.lang.Class" -1 - -DataStructures.CursorList.remove(java.lang.Object):::ENTER -this_invocation_nonce -3107 -this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -153302244 -1 -x.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.CursorList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -3108 +3060 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -99662,55 +99850,55 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +929776179 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.CursorListItr.CursorListItr(int):::ENTER this_invocation_nonce -3109 +3061 theNode -4 +20 1 DataStructures.CursorListItr.CursorListItr(int):::EXIT27 this_invocation_nonce -3109 +3061 this -75353282 +802581203 1 this.current -4 +20 1 theNode -4 +20 1 DataStructures.CursorList.findPrevious(java.lang.Object):::EXIT139 this_invocation_nonce -3108 +3060 this -1266405716 +1216590855 1 this.header 4 1 DataStructures.CursorList.cursorSpace -1911757902 +1659791576 1 DataStructures.CursorList.cursorSpace.getClass().getName() "DataStructures.CursorNode[]" 1 DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +[75457651 362239120 1796488937 423031029 1712669532 1225373914 60830820 759156157 1635546341 1698156408 1740035246 884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012 1394336709 1387228415 120960120 748658608 546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107 57494364 1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214] 1 DataStructures.CursorList.cursorSpace[..].getClass().getName() ["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] 1 DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[null null null 1364614850 null 2015601401 null 967765295 null 703504298 null 146611050 null null 2036958521 1440047379 1522311648 1709366259 1924582348 2036958521 237351678 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 DataStructures.CursorList.cursorSpace[..].element.getClass().getName() [null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -99719,255 +99907,84 @@ DataStructures.CursorList.cursorSpace[..].next [13 3 21 5 14 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] 1 x -153302244 +929776179 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 return -75353282 +802581203 1 return.current -4 -1 - -DataStructures.CursorList.free(int):::ENTER -this_invocation_nonce -3110 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null 153302244 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null "java.lang.Class" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[13 3 21 5 15 7 0 9 0 11 0 0 2 12 15 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -p -14 -1 - -DataStructures.CursorList.free(int):::EXIT45 -this_invocation_nonce -3110 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[14 3 21 5 15 7 0 9 0 11 0 0 2 12 13 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -p -14 +20 1 -DataStructures.CursorList.remove(java.lang.Object):::EXIT157 +DataStructures.CursorListItr.retrieve():::ENTER this_invocation_nonce -3107 +3062 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" +802581203 1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[14 3 21 5 15 7 0 9 0 11 0 0 2 12 13 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -x -153302244 -1 -x.getClass().getName() -"java.lang.Class" -1 - -DataStructures.CursorList.printList(DataStructures.CursorList):::ENTER -this_invocation_nonce -3111 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[14 3 21 5 15 7 0 9 0 11 0 0 2 12 13 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] -1 -theList -1266405716 -1 -theList.header -4 +this.current +20 1 -DataStructures.CursorList.isEmpty():::ENTER +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3112 +3063 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +802581203 1 -DataStructures.CursorList.cursorSpace[..].next -[14 3 21 5 15 7 0 9 0 11 0 0 2 12 13 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +20 1 -DataStructures.CursorList.isEmpty():::EXIT62 +DataStructures.CursorListItr.isPastEnd():::EXIT35 this_invocation_nonce -3112 +3063 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] -1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] +802581203 1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] -1 -DataStructures.CursorList.cursorSpace[..].next -[14 3 21 5 15 7 0 9 0 11 0 0 2 12 13 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +this.current +20 1 return false 1 -DataStructures.CursorList.first():::ENTER +DataStructures.CursorListItr.retrieve():::EXIT45 this_invocation_nonce -3113 +3062 this -1266405716 -1 -this.header -4 -1 -DataStructures.CursorList.cursorSpace -1911757902 -1 -DataStructures.CursorList.cursorSpace.getClass().getName() -"DataStructures.CursorNode[]" -1 -DataStructures.CursorList.cursorSpace[..] -[1488997419 933039143 663286007 260308072 573577165 57320772 1317541148 1210190219 849389996 1373861163 740393997 1281656861 1545883417 1405428113 857661838 812272602 312077835 937106871 310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 762558070 131077194 1843661383 375321518 869281787 687743568 1149159222 1598606683 614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 2075326481 582771593 2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 1801601815 2282005 1846436036] +802581203 1 -DataStructures.CursorList.cursorSpace[..].getClass().getName() -["DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode" "DataStructures.CursorNode"] -1 -DataStructures.CursorList.cursorSpace[..].element -[null null null 94073967 null 805547347 null 1679788513 null 195302273 null 593563423 null null null 966091658 1898555459 747138112 459711800 153302244 829274326 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +this.current +20 1 -DataStructures.CursorList.cursorSpace[..].element.getClass().getName() -[null null null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null "DataStructures.MyInteger" null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Class" "java.io.PrintStream" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +return +237351678 1 -DataStructures.CursorList.cursorSpace[..].next -[14 3 21 5 15 7 0 9 0 11 0 0 2 12 13 16 17 18 19 20 0 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 0] +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.CursorListItr.CursorListItr(int):::ENTER +DataStructures.CursorListItr.advance():::ENTER this_invocation_nonce -3114 -theNode -15 +3064 +this +1545087375 +1 +this.current +16 1 -DataStructures.CursorListItr.CursorListItr(int):::EXIT27 +DataStructures.CursorListItr.isPastEnd():::ENTER this_invocation_nonce -3114 +3065 this -1594742491 +1545087375 1 this.current -15 -1 -theNode -15 +16 1 diff --git a/tests/daikon-tests/DisjSets/DisjSets.txt-chicory.goal b/tests/daikon-tests/DisjSets/DisjSets.txt-chicory.goal index 26cd971754..c39a0f8330 100644 --- a/tests/daikon-tests/DisjSets/DisjSets.txt-chicory.goal +++ b/tests/daikon-tests/DisjSets/DisjSets.txt-chicory.goal @@ -45,6 +45,50 @@ variable numElements flags is_param comparability 22 +ppt DataStructures.DisjSets.DisjSets(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.DisjSets:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.DisjSets + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s + var-kind field s + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s[..] + var-kind array + enclosing-var this.s + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable numElements + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.DisjSets.unionDisjoint(int,\_int):::ENTER ppt-type enter parent parent DataStructures.DisjSets:::OBJECT 1 @@ -121,6 +165,56 @@ variable root2 flags is_param comparability 22 +ppt DataStructures.DisjSets.unionDisjoint(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.DisjSets:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.DisjSets + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s + var-kind field s + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s[..] + var-kind array + enclosing-var this.s + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable root1 + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable root2 + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.DisjSets.unionCareful(int,\_int):::ENTER ppt-type enter parent parent DataStructures.DisjSets:::OBJECT 1 @@ -197,6 +291,56 @@ variable set2 flags is_param comparability 22 +ppt DataStructures.DisjSets.unionCareful(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.DisjSets:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.DisjSets + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s + var-kind field s + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s[..] + var-kind array + enclosing-var this.s + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable set1 + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable set2 + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.DisjSets.find(int):::ENTER ppt-type enter parent parent DataStructures.DisjSets:::OBJECT 1 @@ -303,6 +447,50 @@ variable return rep-type int comparability 22 +ppt DataStructures.DisjSets.find(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.DisjSets:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.DisjSets + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s + var-kind field s + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable this.s[..] + var-kind array + enclosing-var this.s + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent DataStructures.DisjSets:::OBJECT 1 +variable x + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.DisjSets:::OBJECT ppt-type object variable this @@ -336,10 +524,10 @@ DataStructures.DisjSets.DisjSets(int):::EXIT32 this_invocation_nonce 0 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -352,10 +540,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -368,10 +556,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -387,10 +575,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -406,10 +594,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 3 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -422,10 +610,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 3 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -441,10 +629,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 4 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -457,10 +645,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 4 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -476,10 +664,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -495,10 +683,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 5 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -511,10 +699,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 5 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -530,10 +718,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 6 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -549,10 +737,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 7 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -565,10 +753,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 7 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -584,10 +772,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 8 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -600,10 +788,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 8 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -619,10 +807,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 6 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -638,10 +826,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 9 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -654,10 +842,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 9 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -673,10 +861,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 10 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -692,10 +880,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 11 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -708,10 +896,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 11 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -727,10 +915,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 12 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -743,10 +931,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 12 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -762,10 +950,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 10 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -781,10 +969,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 13 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -797,10 +985,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 13 this -319257700 +245672235 1 this.s -583568501 +1012570586 1 this.s[..] [-1] @@ -823,10 +1011,10 @@ DataStructures.DisjSets.DisjSets(int):::EXIT32 this_invocation_nonce 14 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -839,10 +1027,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 15 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -855,10 +1043,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 15 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -874,10 +1062,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 16 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -890,10 +1078,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 16 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -909,10 +1097,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 17 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -925,10 +1113,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 17 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -944,10 +1132,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 18 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -960,10 +1148,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 18 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -979,10 +1167,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 19 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -995,10 +1183,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 19 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1014,10 +1202,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 20 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1033,10 +1221,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 21 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1049,10 +1237,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 21 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1068,10 +1256,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 22 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1084,10 +1272,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 22 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1103,10 +1291,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 23 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [-1 -1 -1 -1 -1] @@ -1122,10 +1310,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 23 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1141,10 +1329,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 20 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1160,10 +1348,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 24 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1176,10 +1364,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 25 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1192,10 +1380,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 25 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1211,10 +1399,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 24 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1230,10 +1418,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 26 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1249,10 +1437,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 27 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1265,10 +1453,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 27 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1284,10 +1472,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 28 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1300,10 +1488,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 29 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1316,10 +1504,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 29 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1335,10 +1523,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 28 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1354,10 +1542,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 30 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 -1 -1 -1 -1] @@ -1373,10 +1561,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 30 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1392,10 +1580,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 26 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1411,10 +1599,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 31 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1427,10 +1615,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 32 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1443,10 +1631,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 33 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1459,10 +1647,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 33 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1478,10 +1666,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 32 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1497,10 +1685,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 31 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1516,10 +1704,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 34 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1535,10 +1723,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 35 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1551,10 +1739,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 35 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1570,10 +1758,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 36 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1586,10 +1774,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 36 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1605,10 +1793,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 34 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1624,10 +1812,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 37 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1640,10 +1828,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 38 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1656,10 +1844,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 39 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1672,10 +1860,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 39 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1691,10 +1879,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 38 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1710,10 +1898,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 37 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1729,10 +1917,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 40 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1748,10 +1936,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 41 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1764,10 +1952,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 41 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1783,10 +1971,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 42 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1799,10 +1987,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 42 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1818,10 +2006,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 43 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 -1 -1] @@ -1837,10 +2025,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 43 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1856,10 +2044,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 40 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1875,10 +2063,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 44 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1891,10 +2079,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 45 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1907,10 +2095,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 46 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1923,10 +2111,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 46 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1942,10 +2130,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 45 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1961,10 +2149,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 44 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1980,10 +2168,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 47 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -1999,10 +2187,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 48 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2015,10 +2203,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 49 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2031,10 +2219,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 49 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2050,10 +2238,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 48 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2069,10 +2257,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 50 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2085,10 +2273,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 51 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2101,10 +2289,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 52 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2117,10 +2305,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 52 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2136,10 +2324,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 51 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2155,10 +2343,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 50 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2174,10 +2362,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 47 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2193,10 +2381,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 53 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2209,10 +2397,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 54 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2225,10 +2413,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 55 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2241,10 +2429,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 55 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2260,10 +2448,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 54 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2279,10 +2467,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 53 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2298,10 +2486,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 56 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2317,10 +2505,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 57 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2333,10 +2521,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 58 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2349,10 +2537,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 58 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2368,10 +2556,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 57 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2387,10 +2575,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 59 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2403,10 +2591,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 59 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2422,10 +2610,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 60 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 -1 2 -1] @@ -2441,10 +2629,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 60 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2460,10 +2648,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 56 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2479,10 +2667,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 61 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2495,10 +2683,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 62 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2511,10 +2699,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 63 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2527,10 +2715,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 63 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2546,10 +2734,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 62 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2565,10 +2753,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 61 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2584,10 +2772,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 64 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2603,10 +2791,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 65 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2619,10 +2807,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 66 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2635,10 +2823,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 67 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2651,10 +2839,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 67 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2670,10 +2858,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 66 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2689,10 +2877,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 65 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2708,10 +2896,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 68 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2724,10 +2912,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 69 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2740,10 +2928,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 69 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2759,10 +2947,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 68 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2778,10 +2966,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 64 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2797,10 +2985,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 70 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2813,10 +3001,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 71 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2829,10 +3017,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 72 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2845,10 +3033,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 72 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2864,10 +3052,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 71 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2883,10 +3071,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 70 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2902,10 +3090,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 73 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2921,10 +3109,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 74 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2937,10 +3125,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 75 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2953,10 +3141,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 75 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2972,10 +3160,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 74 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -2991,10 +3179,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 76 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3007,10 +3195,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 77 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3023,10 +3211,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 77 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3042,10 +3230,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 76 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3061,10 +3249,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 73 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3080,10 +3268,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 78 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3096,10 +3284,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 79 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3112,10 +3300,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 80 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3128,10 +3316,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 80 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3147,10 +3335,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 79 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3166,10 +3354,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 78 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3185,10 +3373,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 81 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3204,10 +3392,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 82 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3220,10 +3408,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 82 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3239,10 +3427,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 83 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3255,10 +3443,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 84 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3271,10 +3459,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 84 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3290,10 +3478,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 83 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3309,10 +3497,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 81 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3328,10 +3516,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 85 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3344,10 +3532,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 86 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3360,10 +3548,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 87 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3376,10 +3564,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 87 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3395,10 +3583,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 86 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3414,10 +3602,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 85 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3433,10 +3621,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 88 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3452,10 +3640,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 89 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3468,10 +3656,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 90 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3484,10 +3672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 91 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3500,10 +3688,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 91 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3519,10 +3707,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 90 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3538,10 +3726,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 89 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3557,10 +3745,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 92 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3573,10 +3761,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 93 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3589,10 +3777,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 93 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3608,10 +3796,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 92 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3627,10 +3815,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 88 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3646,10 +3834,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 94 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3662,10 +3850,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 95 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3678,10 +3866,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 96 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3694,10 +3882,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 96 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3713,10 +3901,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 95 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3732,10 +3920,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 94 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3751,10 +3939,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 97 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3770,10 +3958,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 98 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3786,10 +3974,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 98 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3805,10 +3993,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 99 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3821,10 +4009,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 100 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3837,10 +4025,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 100 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3856,10 +4044,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 99 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3875,10 +4063,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 97 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3894,10 +4082,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 101 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3910,10 +4098,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 102 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3926,10 +4114,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 103 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3942,10 +4130,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 103 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3961,10 +4149,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 102 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3980,10 +4168,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 101 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -3999,10 +4187,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 104 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4018,10 +4206,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 105 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4034,10 +4222,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 106 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4050,10 +4238,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 107 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4066,10 +4254,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 107 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4085,10 +4273,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 106 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4104,10 +4292,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 105 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4123,10 +4311,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 108 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4139,10 +4327,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 109 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4155,10 +4343,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 109 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4174,10 +4362,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 108 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4193,10 +4381,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 104 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4212,10 +4400,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 110 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4228,10 +4416,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 111 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4244,10 +4432,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 112 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4260,10 +4448,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 112 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4279,10 +4467,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 111 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4298,10 +4486,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 110 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4317,10 +4505,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 113 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4336,10 +4524,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 114 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4352,10 +4540,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 115 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4368,10 +4556,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 115 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4387,10 +4575,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 114 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4406,10 +4594,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 116 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4422,10 +4610,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 117 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4438,10 +4626,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 118 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4454,10 +4642,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 118 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4473,10 +4661,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 117 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4492,10 +4680,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 116 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4511,10 +4699,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 113 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4530,10 +4718,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 119 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4546,10 +4734,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 120 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4562,10 +4750,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 121 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4578,10 +4766,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 121 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4597,10 +4785,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 120 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4616,10 +4804,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 119 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4635,10 +4823,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 122 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4654,10 +4842,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 123 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4670,10 +4858,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 124 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4686,10 +4874,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 124 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4705,10 +4893,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 123 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4724,10 +4912,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 125 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4740,10 +4928,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 126 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4756,10 +4944,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 127 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4772,10 +4960,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 127 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4791,10 +4979,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 126 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4810,10 +4998,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 125 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4829,10 +5017,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 122 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4848,10 +5036,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 128 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4864,10 +5052,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 129 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4880,10 +5068,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 130 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4896,10 +5084,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 130 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4915,10 +5103,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 129 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4934,10 +5122,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 128 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4953,10 +5141,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 131 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4972,10 +5160,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 132 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -4988,10 +5176,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 133 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5004,10 +5192,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 133 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5023,10 +5211,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 132 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5042,10 +5230,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 134 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5058,10 +5246,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 135 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5074,10 +5262,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 135 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5093,10 +5281,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 134 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5112,10 +5300,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 131 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5131,10 +5319,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 136 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5147,10 +5335,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 137 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5163,10 +5351,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 138 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5179,10 +5367,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 138 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5198,10 +5386,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 137 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5217,10 +5405,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 136 this -477980458 +1207140081 1 this.s -1828717826 +1510067370 1 this.s[..] [1 4 4 2 -1] @@ -5243,10 +5431,10 @@ DataStructures.DisjSets.DisjSets(int):::EXIT32 this_invocation_nonce 139 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5259,10 +5447,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 140 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5275,10 +5463,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 140 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5294,10 +5482,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 141 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5310,10 +5498,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 141 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5329,10 +5517,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 142 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5345,10 +5533,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 142 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5364,10 +5552,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 143 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5380,10 +5568,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 143 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5399,10 +5587,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 144 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5415,10 +5603,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 144 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5434,10 +5622,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 145 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5450,10 +5638,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 145 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5469,10 +5657,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 146 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5485,10 +5673,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 146 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5504,10 +5692,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 147 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5520,10 +5708,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 147 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5539,10 +5727,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 148 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5555,10 +5743,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 148 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5574,10 +5762,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 149 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5590,10 +5778,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 149 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5609,10 +5797,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 150 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5625,10 +5813,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 150 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5644,10 +5832,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 151 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5660,10 +5848,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 151 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5679,10 +5867,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 152 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5695,10 +5883,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 152 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5714,10 +5902,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 153 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5730,10 +5918,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 153 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5749,10 +5937,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 154 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5765,10 +5953,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 154 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5784,10 +5972,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 155 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5800,10 +5988,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 155 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5819,10 +6007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 156 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5835,10 +6023,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 156 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5854,10 +6042,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 157 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5870,10 +6058,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 157 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5889,10 +6077,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 158 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5905,10 +6093,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 158 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5924,10 +6112,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 159 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5940,10 +6128,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 159 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5959,10 +6147,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 160 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5975,10 +6163,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 160 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -5994,10 +6182,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 161 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6010,10 +6198,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 161 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6029,10 +6217,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 162 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6045,10 +6233,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 162 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6064,10 +6252,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 163 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6080,10 +6268,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 163 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6099,10 +6287,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 164 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6115,10 +6303,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 164 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6134,10 +6322,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 165 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6150,10 +6338,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 165 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6169,10 +6357,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 166 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6185,10 +6373,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 166 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6204,10 +6392,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 167 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6220,10 +6408,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 167 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6239,10 +6427,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 168 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6255,10 +6443,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 168 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6274,10 +6462,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 169 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6290,10 +6478,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 169 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6309,10 +6497,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 170 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6325,10 +6513,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 170 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6344,10 +6532,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 171 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6360,10 +6548,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 171 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6379,10 +6567,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 172 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6395,10 +6583,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 172 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6414,10 +6602,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 173 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6430,10 +6618,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 173 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6449,10 +6637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 174 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6465,10 +6653,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 174 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6484,10 +6672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 175 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6500,10 +6688,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 175 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6519,10 +6707,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 176 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6535,10 +6723,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 176 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6554,10 +6742,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 177 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6570,10 +6758,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 177 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6589,10 +6777,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 178 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6605,10 +6793,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 178 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6624,10 +6812,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 179 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6640,10 +6828,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 179 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6659,10 +6847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 180 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6675,10 +6863,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 180 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6694,10 +6882,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 181 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6710,10 +6898,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 181 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6729,10 +6917,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 182 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6745,10 +6933,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 182 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6764,10 +6952,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 183 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6780,10 +6968,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 183 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6799,10 +6987,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 184 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6815,10 +7003,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 184 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6834,10 +7022,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 185 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6850,10 +7038,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 185 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6869,10 +7057,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 186 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6885,10 +7073,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 186 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6904,10 +7092,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 187 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6920,10 +7108,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 187 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6939,10 +7127,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 188 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6955,10 +7143,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 188 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6974,10 +7162,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 189 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -6990,10 +7178,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 189 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7009,10 +7197,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 190 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7028,10 +7216,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 191 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7044,10 +7232,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 191 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7063,10 +7251,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 192 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7079,10 +7267,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 192 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7098,10 +7286,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 193 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7117,10 +7305,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 193 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7136,10 +7324,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 190 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7155,10 +7343,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 194 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7171,10 +7359,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 194 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7190,10 +7378,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 195 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7209,10 +7397,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 196 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7225,10 +7413,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 196 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7244,10 +7432,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 197 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7260,10 +7448,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 197 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7279,10 +7467,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 198 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7298,10 +7486,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 198 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7317,10 +7505,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 195 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7336,10 +7524,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 199 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7352,10 +7540,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 199 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7371,10 +7559,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 200 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7390,10 +7578,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 201 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7406,10 +7594,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 201 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7425,10 +7613,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 202 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7441,10 +7629,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 202 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7460,10 +7648,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 203 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7479,10 +7667,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 203 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7498,10 +7686,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 200 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7517,10 +7705,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 204 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7533,10 +7721,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 204 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7552,10 +7740,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 205 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7571,10 +7759,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 206 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7587,10 +7775,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 207 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7603,10 +7791,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 207 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7622,10 +7810,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 206 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7641,10 +7829,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 208 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7657,10 +7845,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 208 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7676,10 +7864,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 209 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7695,10 +7883,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 209 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7714,10 +7902,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 205 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7733,10 +7921,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 210 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7749,10 +7937,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 210 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7768,10 +7956,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 211 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7787,10 +7975,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 212 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7803,10 +7991,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 212 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7822,10 +8010,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 213 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7838,10 +8026,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 213 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7857,10 +8045,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 214 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1] @@ -7876,10 +8064,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 214 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -7895,10 +8083,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 211 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -7914,10 +8102,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 215 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -7930,10 +8118,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 215 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -7949,10 +8137,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 216 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -7968,10 +8156,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 217 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -7984,10 +8172,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 217 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8003,10 +8191,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 218 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8019,10 +8207,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 218 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8038,10 +8226,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 219 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8057,10 +8245,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 219 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8076,10 +8264,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 216 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8095,10 +8283,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 220 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8111,10 +8299,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 220 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8130,10 +8318,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 221 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8149,10 +8337,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 222 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8165,10 +8353,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 222 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8184,10 +8372,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 223 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8200,10 +8388,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 223 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8219,10 +8407,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 224 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 -1 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8238,10 +8426,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 224 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8257,10 +8445,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 221 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8276,10 +8464,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 225 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8292,10 +8480,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 225 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8311,10 +8499,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 226 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8330,10 +8518,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 227 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8346,10 +8534,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 227 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8365,10 +8553,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 228 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8381,10 +8569,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 228 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8400,10 +8588,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 229 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8419,10 +8607,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 229 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8438,10 +8626,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 226 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8457,10 +8645,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 230 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8473,10 +8661,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 230 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8492,10 +8680,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 231 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8511,10 +8699,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 232 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8527,10 +8715,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 232 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8546,10 +8734,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 233 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8562,10 +8750,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 233 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8581,10 +8769,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 234 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 -1 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8600,10 +8788,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 234 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8619,10 +8807,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 231 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8638,10 +8826,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 235 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8654,10 +8842,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 235 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8673,10 +8861,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 236 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8692,10 +8880,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 237 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8708,10 +8896,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 237 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8727,10 +8915,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 238 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8743,10 +8931,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 238 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8762,10 +8950,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 239 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 -1 -1 -1 -1] @@ -8781,10 +8969,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 239 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8800,10 +8988,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 236 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8819,10 +9007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 240 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8835,10 +9023,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 240 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8854,10 +9042,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 241 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8873,10 +9061,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 242 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8889,10 +9077,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 243 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8905,10 +9093,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 243 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8924,10 +9112,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 242 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8943,10 +9131,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 244 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8959,10 +9147,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 245 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8975,10 +9163,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 245 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -8994,10 +9182,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 244 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9013,10 +9201,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 246 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9032,10 +9220,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 246 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9051,10 +9239,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 241 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9070,10 +9258,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 247 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9086,10 +9274,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 247 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9105,10 +9293,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 248 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9124,10 +9312,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 249 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9140,10 +9328,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 249 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9159,10 +9347,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 250 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9175,10 +9363,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 251 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9191,10 +9379,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 252 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9207,10 +9395,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 252 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9226,10 +9414,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 251 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9245,10 +9433,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 250 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9264,10 +9452,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 253 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 -1 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9283,10 +9471,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 253 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9302,10 +9490,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 248 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9321,10 +9509,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 254 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9337,10 +9525,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 254 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9356,10 +9544,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 255 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9375,10 +9563,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 256 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9391,10 +9579,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 257 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9407,10 +9595,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 257 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9426,10 +9614,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 256 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9445,10 +9633,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 258 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9461,10 +9649,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 258 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9480,10 +9668,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 259 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 -1 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9499,10 +9687,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 259 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9518,10 +9706,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 255 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9537,10 +9725,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 260 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9553,10 +9741,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 260 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9572,10 +9760,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 261 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9591,10 +9779,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 262 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9607,10 +9795,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 262 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9626,10 +9814,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 263 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9642,10 +9830,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 263 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9661,10 +9849,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 264 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 -1 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9680,10 +9868,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 264 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9699,10 +9887,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 261 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9718,10 +9906,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 265 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9734,10 +9922,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 265 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9753,10 +9941,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 266 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9772,10 +9960,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 267 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9788,10 +9976,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 268 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9804,10 +9992,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 268 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9823,10 +10011,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 267 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9842,10 +10030,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 269 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9858,10 +10046,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 269 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9877,10 +10065,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 270 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 -1 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9896,10 +10084,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 270 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9915,10 +10103,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 266 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9934,10 +10122,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 271 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9950,10 +10138,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 271 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9969,10 +10157,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 272 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -9988,10 +10176,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 273 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10004,10 +10192,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 273 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10023,10 +10211,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 274 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10039,10 +10227,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 275 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10055,10 +10243,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 276 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10071,10 +10259,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 276 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10090,10 +10278,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 275 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10109,10 +10297,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 274 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10128,10 +10316,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 277 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 -1] @@ -10147,10 +10335,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 277 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10166,10 +10354,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 272 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10185,10 +10373,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 278 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10201,10 +10389,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 278 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10220,10 +10408,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 279 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10239,10 +10427,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 280 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10255,10 +10443,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 280 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10274,10 +10462,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 281 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10290,10 +10478,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 282 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10306,10 +10494,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 282 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10325,10 +10513,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 281 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10344,10 +10532,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 283 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 -1 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10363,10 +10551,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 283 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10382,10 +10570,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 279 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10401,10 +10589,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 284 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10417,10 +10605,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 284 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10436,10 +10624,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 285 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10455,10 +10643,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 286 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10471,10 +10659,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 286 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10490,10 +10678,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 287 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10506,10 +10694,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 287 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10525,10 +10713,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 288 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 -1 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10544,10 +10732,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 288 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10563,10 +10751,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 285 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10582,10 +10770,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 289 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10598,10 +10786,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 289 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10617,10 +10805,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 290 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10636,10 +10824,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 291 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10652,10 +10840,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 291 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10671,10 +10859,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 292 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10687,10 +10875,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 292 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10706,10 +10894,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 293 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 -1 21 39 -1 -1 16] @@ -10725,10 +10913,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 293 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10744,10 +10932,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 290 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10763,10 +10951,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 294 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10779,10 +10967,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 294 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10798,10 +10986,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 295 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10817,10 +11005,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 296 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10833,10 +11021,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 296 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10852,10 +11040,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 297 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10868,10 +11056,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 297 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10887,10 +11075,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 298 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 -1 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10906,10 +11094,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 298 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10925,10 +11113,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 295 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10944,10 +11132,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 299 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10960,10 +11148,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 299 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10979,10 +11167,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 300 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -10998,10 +11186,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 301 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11014,10 +11202,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 301 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11033,10 +11221,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 302 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11049,10 +11237,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 303 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11065,10 +11253,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 304 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11081,10 +11269,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 305 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11097,10 +11285,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 305 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11116,10 +11304,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 304 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11135,10 +11323,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 303 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11154,10 +11342,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 302 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11173,10 +11361,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 306 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 -1 -1 27 21 39 -1 -1 16] @@ -11192,10 +11380,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 306 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11211,10 +11399,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 300 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11230,10 +11418,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 307 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11246,10 +11434,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 307 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11265,10 +11453,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 308 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11284,10 +11472,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 309 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11300,10 +11488,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 309 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11319,10 +11507,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 310 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11335,10 +11523,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 311 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11351,10 +11539,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 311 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11370,10 +11558,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 310 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11389,10 +11577,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 312 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 -1 11 -1 27 21 39 -1 -1 16] @@ -11408,10 +11596,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 312 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11427,10 +11615,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 308 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11446,10 +11634,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 313 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11462,10 +11650,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 313 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11481,10 +11669,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 314 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11500,10 +11688,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 315 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11516,10 +11704,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 316 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11532,10 +11720,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 317 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11548,10 +11736,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 318 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11564,10 +11752,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 319 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11580,10 +11768,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 320 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11596,10 +11784,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 321 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11612,10 +11800,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 321 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11631,10 +11819,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 320 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11650,10 +11838,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 319 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11669,10 +11857,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 318 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11688,10 +11876,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 317 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11707,10 +11895,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 316 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11726,10 +11914,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 315 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11745,10 +11933,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 322 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11761,10 +11949,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 323 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11777,10 +11965,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 324 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11793,10 +11981,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 325 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11809,10 +11997,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 326 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11825,10 +12013,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 327 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11841,10 +12029,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 327 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11860,10 +12048,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 326 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11879,10 +12067,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 325 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11898,10 +12086,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 324 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11917,10 +12105,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 323 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11936,10 +12124,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 322 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11955,10 +12143,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 314 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11974,10 +12162,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 328 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -11990,10 +12178,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 328 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12009,10 +12197,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 329 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12028,10 +12216,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 330 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12044,10 +12232,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 331 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12060,10 +12248,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 331 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12079,10 +12267,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 330 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12098,10 +12286,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 332 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12114,10 +12302,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 332 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12133,10 +12321,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 333 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 -1 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12152,10 +12340,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 333 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12171,10 +12359,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 329 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12190,10 +12378,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 334 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12206,10 +12394,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 334 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12225,10 +12413,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 335 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12244,10 +12432,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 336 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12260,10 +12448,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 336 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12279,10 +12467,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 337 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12295,10 +12483,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 337 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12314,10 +12502,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 338 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 -1 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12333,10 +12521,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 338 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12352,10 +12540,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 335 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12371,10 +12559,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 339 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12387,10 +12575,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 339 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12406,10 +12594,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 340 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12425,10 +12613,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 341 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12441,10 +12629,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 341 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12460,10 +12648,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 342 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12476,10 +12664,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 342 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12495,10 +12683,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 343 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 -1 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12514,10 +12702,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 343 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12533,10 +12721,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 340 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12552,10 +12740,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 344 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12568,10 +12756,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 344 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12587,10 +12775,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 345 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12606,10 +12794,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 346 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12622,10 +12810,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 346 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12641,10 +12829,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 347 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12657,10 +12845,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 347 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12676,10 +12864,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 348 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 -1 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12695,10 +12883,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 348 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12714,10 +12902,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 345 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12733,10 +12921,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 349 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12749,10 +12937,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 349 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12768,10 +12956,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 350 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12787,10 +12975,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 351 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12803,10 +12991,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 352 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12819,10 +13007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 353 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12835,10 +13023,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 354 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12851,10 +13039,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 355 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12867,10 +13055,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 355 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12886,10 +13074,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 354 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12905,10 +13093,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 353 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12924,10 +13112,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 352 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12943,10 +13131,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 351 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12962,10 +13150,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 356 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12978,10 +13166,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 356 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -12997,10 +13185,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 357 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 -1 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13016,10 +13204,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 357 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13035,10 +13223,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 350 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13054,10 +13242,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 358 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13070,10 +13258,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 358 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13089,10 +13277,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 359 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13108,10 +13296,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 360 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13124,10 +13312,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 360 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13143,10 +13331,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 361 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13159,10 +13347,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 361 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13178,10 +13366,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 362 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 -1 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13197,10 +13385,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 362 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13216,10 +13404,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 359 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13235,10 +13423,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 363 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13251,10 +13439,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 363 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13270,10 +13458,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 364 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13289,10 +13477,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 365 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13305,10 +13493,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 365 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13324,10 +13512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 366 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13340,10 +13528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 367 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13356,10 +13544,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 367 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13375,10 +13563,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 366 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13394,10 +13582,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 368 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 -1 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13413,10 +13601,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 368 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13432,10 +13620,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 364 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13451,10 +13639,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 369 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13467,10 +13655,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 369 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13486,10 +13674,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 370 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13505,10 +13693,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 371 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13521,10 +13709,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 372 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13537,10 +13725,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 373 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13553,10 +13741,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 374 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13569,10 +13757,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 375 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13585,10 +13773,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 376 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13601,10 +13789,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 376 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13620,10 +13808,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 375 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13639,10 +13827,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 374 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13658,10 +13846,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 373 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13677,10 +13865,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 372 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13696,10 +13884,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 371 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13715,10 +13903,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 377 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13731,10 +13919,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 378 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13747,10 +13935,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 378 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13766,10 +13954,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 377 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13785,10 +13973,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 379 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 -1 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13804,10 +13992,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 379 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13823,10 +14011,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 370 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13842,10 +14030,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 380 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13858,10 +14046,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 380 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13877,10 +14065,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 381 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13896,10 +14084,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 382 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13912,10 +14100,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 382 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13931,10 +14119,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 383 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13947,10 +14135,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 384 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13963,10 +14151,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 385 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13979,10 +14167,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 386 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -13995,10 +14183,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 386 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14014,10 +14202,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 385 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14033,10 +14221,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 384 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14052,10 +14240,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 383 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14071,10 +14259,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 387 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 -1 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14090,10 +14278,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 387 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14109,10 +14297,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 381 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14128,10 +14316,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 388 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14144,10 +14332,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 388 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14163,10 +14351,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 389 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14182,10 +14370,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 390 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14198,10 +14386,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 391 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14214,10 +14402,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 391 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14233,10 +14421,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 390 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14252,10 +14440,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 392 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14268,10 +14456,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 393 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14284,10 +14472,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 394 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14300,10 +14488,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 395 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14316,10 +14504,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 396 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14332,10 +14520,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 397 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14348,10 +14536,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 398 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14364,10 +14552,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 399 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14380,10 +14568,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 400 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14396,10 +14584,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 400 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14415,10 +14603,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 399 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14434,10 +14622,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 398 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14453,10 +14641,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 397 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14472,10 +14660,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 396 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14491,10 +14679,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 395 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14510,10 +14698,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 394 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14529,10 +14717,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 393 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14548,10 +14736,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 392 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14567,10 +14755,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 401 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 -1 -1 16] @@ -14586,10 +14774,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 401 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14605,10 +14793,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 389 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14624,10 +14812,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 402 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14640,10 +14828,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 402 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14659,10 +14847,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 403 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14678,10 +14866,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 404 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14694,10 +14882,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 405 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14710,10 +14898,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 406 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14726,10 +14914,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 407 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14742,10 +14930,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 408 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14758,10 +14946,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 408 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14777,10 +14965,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 407 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14796,10 +14984,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 406 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14815,10 +15003,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 405 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14834,10 +15022,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 404 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14853,10 +15041,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 409 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14869,10 +15057,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 410 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14885,10 +15073,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 411 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14901,10 +15089,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 411 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14920,10 +15108,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 410 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14939,10 +15127,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 409 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14958,10 +15146,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 412 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 -1 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14977,10 +15165,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 412 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -14996,10 +15184,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 403 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15015,10 +15203,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 413 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15031,10 +15219,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 413 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15050,10 +15238,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 414 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15069,10 +15257,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 415 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15085,10 +15273,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 415 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15104,10 +15292,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 416 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15120,10 +15308,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 417 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15136,10 +15324,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 418 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15152,10 +15340,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 419 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15168,10 +15356,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 419 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15187,10 +15375,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 418 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15206,10 +15394,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 417 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15225,10 +15413,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 416 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15244,10 +15432,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 420 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 -1 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15263,10 +15451,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 420 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15282,10 +15470,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 414 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15301,10 +15489,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 421 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15317,10 +15505,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 421 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15336,10 +15524,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 422 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15355,10 +15543,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 423 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15371,10 +15559,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 424 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15387,10 +15575,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 425 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15403,10 +15591,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 426 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15419,10 +15607,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 427 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15435,10 +15623,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 428 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15451,10 +15639,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 428 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15470,10 +15658,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 427 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15489,10 +15677,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 426 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15508,10 +15696,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 425 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15527,10 +15715,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 424 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15546,10 +15734,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 423 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15565,10 +15753,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 429 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15581,10 +15769,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 430 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15597,10 +15785,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 431 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15613,10 +15801,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 432 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15629,10 +15817,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 433 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15645,10 +15833,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 434 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15661,10 +15849,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 435 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15677,10 +15865,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 436 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15693,10 +15881,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 437 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15709,10 +15897,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 437 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15728,10 +15916,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 436 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15747,10 +15935,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 435 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15766,10 +15954,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 434 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15785,10 +15973,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 433 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15804,10 +15992,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 432 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15823,10 +16011,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 431 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15842,10 +16030,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 430 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15861,10 +16049,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 429 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15880,10 +16068,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 422 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15899,10 +16087,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 438 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15915,10 +16103,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 438 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15934,10 +16122,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 439 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15953,10 +16141,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 440 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15969,10 +16157,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 440 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -15988,10 +16176,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 441 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16004,10 +16192,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 442 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16020,10 +16208,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 443 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16036,10 +16224,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 444 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16052,10 +16240,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 445 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16068,10 +16256,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 446 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16084,10 +16272,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 447 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16100,10 +16288,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 448 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16116,10 +16304,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 449 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16132,10 +16320,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 450 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16148,10 +16336,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 450 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16167,10 +16355,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 449 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16186,10 +16374,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 448 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16205,10 +16393,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 447 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16224,10 +16412,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 446 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16243,10 +16431,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 445 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16262,10 +16450,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 444 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16281,10 +16469,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 443 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16300,10 +16488,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 442 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16319,10 +16507,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 441 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16338,10 +16526,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 451 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 -1 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16357,10 +16545,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 451 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16376,10 +16564,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 439 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16395,10 +16583,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 452 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16411,10 +16599,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 452 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16430,10 +16618,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 453 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16449,10 +16637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 454 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16465,10 +16653,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 454 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16484,10 +16672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 455 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16500,10 +16688,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 456 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16516,10 +16704,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 456 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16535,10 +16723,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 455 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16554,10 +16742,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 457 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 -1 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16573,10 +16761,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 457 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16592,10 +16780,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 453 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16611,10 +16799,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 458 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16627,10 +16815,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 458 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16646,10 +16834,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 459 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16665,10 +16853,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 460 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16681,10 +16869,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 461 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16697,10 +16885,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 462 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16713,10 +16901,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 462 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16732,10 +16920,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 461 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16751,10 +16939,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 460 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16770,10 +16958,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 463 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16786,10 +16974,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 463 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16805,10 +16993,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 464 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 -1 35 11 -1 27 21 39 27 -1 16] @@ -16824,10 +17012,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 464 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16843,10 +17031,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 459 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16862,10 +17050,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 465 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16878,10 +17066,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 465 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16897,10 +17085,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 466 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16916,10 +17104,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 467 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16932,10 +17120,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 468 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16948,10 +17136,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 469 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16964,10 +17152,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 470 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16980,10 +17168,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 471 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -16996,10 +17184,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 471 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17015,10 +17203,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 470 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17034,10 +17222,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 469 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17053,10 +17241,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 468 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17072,10 +17260,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 467 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17091,10 +17279,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 472 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17107,10 +17295,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 472 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17126,10 +17314,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 466 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17145,10 +17333,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 473 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17161,10 +17349,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 473 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17180,10 +17368,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 474 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17199,10 +17387,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 475 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17215,10 +17403,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 476 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17231,10 +17419,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 476 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17250,10 +17438,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 475 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17269,10 +17457,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 477 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17285,10 +17473,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 478 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17301,10 +17489,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 478 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17320,10 +17508,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 477 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17339,10 +17527,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 479 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 -1 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17358,10 +17546,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 479 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17377,10 +17565,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 474 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17396,10 +17584,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 480 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17412,10 +17600,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 480 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17431,10 +17619,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 481 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17450,10 +17638,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 482 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17466,10 +17654,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 483 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17482,10 +17670,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 484 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17498,10 +17686,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 485 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17514,10 +17702,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 486 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17530,10 +17718,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 487 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17546,10 +17734,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 488 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17562,10 +17750,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 489 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17578,10 +17766,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 490 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17594,10 +17782,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 491 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17610,10 +17798,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 491 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17629,10 +17817,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 490 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17648,10 +17836,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 489 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17667,10 +17855,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 488 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17686,10 +17874,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 487 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17705,10 +17893,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 486 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17724,10 +17912,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 485 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17743,10 +17931,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 484 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17762,10 +17950,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 483 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17781,10 +17969,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 482 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17800,10 +17988,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 492 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17816,10 +18004,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 493 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17832,10 +18020,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 494 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17848,10 +18036,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 495 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17864,10 +18052,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 495 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17883,10 +18071,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 494 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17902,10 +18090,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 493 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17921,10 +18109,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 492 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17940,10 +18128,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 481 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17959,10 +18147,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 496 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17975,10 +18163,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 496 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -17994,10 +18182,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 497 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18013,10 +18201,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 498 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18029,10 +18217,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 499 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18045,10 +18233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 500 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18061,10 +18249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 501 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18077,10 +18265,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 502 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18093,10 +18281,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 503 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18109,10 +18297,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 504 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18125,10 +18313,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 504 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18144,10 +18332,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 503 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18163,10 +18351,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 502 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18182,10 +18370,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 501 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18201,10 +18389,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 500 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18220,10 +18408,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 499 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18239,10 +18427,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 498 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18258,10 +18446,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 505 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18274,10 +18462,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 506 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18290,10 +18478,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 507 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18306,10 +18494,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 508 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18322,10 +18510,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 509 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18338,10 +18526,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 510 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18354,10 +18542,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 511 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18370,10 +18558,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 512 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18386,10 +18574,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 512 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18405,10 +18593,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 511 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18424,10 +18612,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 510 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18443,10 +18631,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 509 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18462,10 +18650,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 508 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18481,10 +18669,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 507 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18500,10 +18688,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 506 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18519,10 +18707,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 505 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18538,10 +18726,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 497 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18557,10 +18745,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 513 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18573,10 +18761,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 513 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18592,10 +18780,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 514 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18611,10 +18799,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 515 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18627,10 +18815,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 516 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18643,10 +18831,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 517 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18659,10 +18847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 518 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18675,10 +18863,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 518 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18694,10 +18882,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 517 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18713,10 +18901,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 516 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18732,10 +18920,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 515 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18751,10 +18939,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 519 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18767,10 +18955,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 520 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18783,10 +18971,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 521 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18799,10 +18987,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 522 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18815,10 +19003,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 523 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18831,10 +19019,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 523 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18850,10 +19038,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 522 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18869,10 +19057,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 521 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18888,10 +19076,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 520 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18907,10 +19095,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 519 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18926,10 +19114,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 514 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18945,10 +19133,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 524 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18961,10 +19149,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 524 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18980,10 +19168,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 525 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -18999,10 +19187,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 526 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19015,10 +19203,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 526 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19034,10 +19222,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 527 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19050,10 +19238,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 528 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19066,10 +19254,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 529 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19082,10 +19270,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 530 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19098,10 +19286,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 531 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19114,10 +19302,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 532 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19130,10 +19318,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 533 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19146,10 +19334,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 533 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19165,10 +19353,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 532 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19184,10 +19372,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 531 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19203,10 +19391,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 530 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19222,10 +19410,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 529 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19241,10 +19429,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 528 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19260,10 +19448,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 527 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19279,10 +19467,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 534 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 -1 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19298,10 +19486,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 534 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19317,10 +19505,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 525 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19336,10 +19524,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 535 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19352,10 +19540,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 535 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19371,10 +19559,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 536 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19390,10 +19578,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 537 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19406,10 +19594,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 538 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19422,10 +19610,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 539 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19438,10 +19626,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 540 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19454,10 +19642,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 541 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19470,10 +19658,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 542 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19486,10 +19674,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 543 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19502,10 +19690,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 544 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19518,10 +19706,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 545 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19534,10 +19722,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 545 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19553,10 +19741,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 544 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19572,10 +19760,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 543 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19591,10 +19779,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 542 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19610,10 +19798,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 541 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19629,10 +19817,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 540 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19648,10 +19836,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 539 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19667,10 +19855,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 538 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19686,10 +19874,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 537 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19705,10 +19893,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 546 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19721,10 +19909,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 547 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19737,10 +19925,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 548 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19753,10 +19941,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 549 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19769,10 +19957,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 550 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19785,10 +19973,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 551 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19801,10 +19989,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 552 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19817,10 +20005,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 553 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19833,10 +20021,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 554 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19849,10 +20037,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 555 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19865,10 +20053,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 556 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19881,10 +20069,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 556 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19900,10 +20088,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 555 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19919,10 +20107,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 554 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19938,10 +20126,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 553 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19957,10 +20145,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 552 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19976,10 +20164,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 551 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -19995,10 +20183,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 550 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20014,10 +20202,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 549 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20033,10 +20221,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 548 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20052,10 +20240,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 547 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20071,10 +20259,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 546 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20090,10 +20278,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 536 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20109,10 +20297,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 557 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20125,10 +20313,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 557 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20144,10 +20332,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 558 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20163,10 +20351,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 559 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20179,10 +20367,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 560 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20195,10 +20383,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 561 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20211,10 +20399,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 562 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20227,10 +20415,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 563 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20243,10 +20431,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 564 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20259,10 +20447,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 565 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20275,10 +20463,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 566 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20291,10 +20479,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 566 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20310,10 +20498,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 565 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20329,10 +20517,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 564 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20348,10 +20536,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 563 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20367,10 +20555,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 562 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20386,10 +20574,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 561 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20405,10 +20593,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 560 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20424,10 +20612,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 559 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20443,10 +20631,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 567 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20459,10 +20647,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 568 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20475,10 +20663,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 569 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20491,10 +20679,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 570 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20507,10 +20695,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 570 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20526,10 +20714,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 569 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20545,10 +20733,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 568 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20564,10 +20752,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 567 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20583,10 +20771,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 558 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20602,10 +20790,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 571 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20618,10 +20806,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 571 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20637,10 +20825,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 572 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20656,10 +20844,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 573 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20672,10 +20860,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 574 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20688,10 +20876,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 575 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20704,10 +20892,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 576 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20720,10 +20908,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 577 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20736,10 +20924,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 578 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20752,10 +20940,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 579 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20768,10 +20956,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 580 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20784,10 +20972,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 581 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20800,10 +20988,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 581 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20819,10 +21007,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 580 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20838,10 +21026,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 579 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20857,10 +21045,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 578 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20876,10 +21064,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 577 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20895,10 +21083,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 576 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20914,10 +21102,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 575 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20933,10 +21121,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 574 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20952,10 +21140,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 573 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20971,10 +21159,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 582 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -20987,10 +21175,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 583 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21003,10 +21191,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 584 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21019,10 +21207,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 585 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21035,10 +21223,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 586 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21051,10 +21239,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 587 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21067,10 +21255,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 588 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21083,10 +21271,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 589 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21099,10 +21287,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 590 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21115,10 +21303,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 591 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21131,10 +21319,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 591 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21150,10 +21338,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 590 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21169,10 +21357,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 589 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21188,10 +21376,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 588 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21207,10 +21395,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 587 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21226,10 +21414,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 586 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21245,10 +21433,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 585 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21264,10 +21452,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 584 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21283,10 +21471,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 583 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21302,10 +21490,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 582 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21321,10 +21509,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 572 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21340,10 +21528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 592 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21356,10 +21544,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 592 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21375,10 +21563,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 593 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21394,10 +21582,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 594 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21410,10 +21598,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 594 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21429,10 +21617,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 595 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21445,10 +21633,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 596 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21461,10 +21649,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 597 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21477,10 +21665,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 598 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21493,10 +21681,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 599 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21509,10 +21697,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 600 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21525,10 +21713,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 601 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21541,10 +21729,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 601 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21560,10 +21748,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 600 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21579,10 +21767,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 599 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21598,10 +21786,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 598 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21617,10 +21805,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 597 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21636,10 +21824,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 596 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21655,10 +21843,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 595 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21674,10 +21862,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 602 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [-1 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21693,10 +21881,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 602 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21712,10 +21900,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 593 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21731,10 +21919,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 603 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21747,10 +21935,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 604 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21763,10 +21951,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 604 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21782,10 +21970,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 603 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21801,10 +21989,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 605 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21820,10 +22008,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 606 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21836,10 +22024,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 607 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21852,10 +22040,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 608 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21868,10 +22056,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 609 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21884,10 +22072,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 610 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21900,10 +22088,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 611 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21916,10 +22104,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 612 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21932,10 +22120,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 613 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21948,10 +22136,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 614 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21964,10 +22152,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 615 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21980,10 +22168,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 616 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -21996,10 +22184,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 617 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22012,10 +22200,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 617 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22031,10 +22219,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 616 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22050,10 +22238,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 615 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22069,10 +22257,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 614 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22088,10 +22276,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 613 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22107,10 +22295,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 612 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22126,10 +22314,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 611 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22145,10 +22333,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 610 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22164,10 +22352,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 609 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22183,10 +22371,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 608 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22202,10 +22390,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 607 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22221,10 +22409,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 606 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22240,10 +22428,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 618 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22256,10 +22444,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 619 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22272,10 +22460,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 620 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22288,10 +22476,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 621 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22304,10 +22492,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 622 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22320,10 +22508,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 623 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22336,10 +22524,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 623 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22355,10 +22543,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 622 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22374,10 +22562,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 621 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22393,10 +22581,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 620 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22412,10 +22600,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 619 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22431,10 +22619,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 618 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22450,10 +22638,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 605 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22469,10 +22657,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 624 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22485,10 +22673,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 625 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22501,10 +22689,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 625 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22520,10 +22708,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 624 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22539,10 +22727,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 626 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22558,10 +22746,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 627 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22574,10 +22762,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 628 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22590,10 +22778,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 629 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22606,10 +22794,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 630 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22622,10 +22810,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 630 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22641,10 +22829,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 629 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22660,10 +22848,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 628 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22679,10 +22867,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 627 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22698,10 +22886,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 631 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22714,10 +22902,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 632 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22730,10 +22918,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 633 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22746,10 +22934,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 634 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22762,10 +22950,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 634 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22781,10 +22969,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 633 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22800,10 +22988,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 632 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22819,10 +23007,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 631 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22838,10 +23026,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 626 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22857,10 +23045,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 635 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22873,10 +23061,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 636 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22889,10 +23077,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 636 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22908,10 +23096,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 635 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22927,10 +23115,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 637 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22946,10 +23134,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 638 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22962,10 +23150,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 638 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22981,10 +23169,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 639 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -22997,10 +23185,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 640 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23013,10 +23201,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 641 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23029,10 +23217,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 642 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23045,10 +23233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 643 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23061,10 +23249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 644 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23077,10 +23265,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 644 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23096,10 +23284,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 643 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23115,10 +23303,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 642 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23134,10 +23322,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 641 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23153,10 +23341,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 640 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23172,10 +23360,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 639 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23191,10 +23379,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 645 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 -1 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23210,10 +23398,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 645 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23229,10 +23417,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 637 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23248,10 +23436,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 646 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23264,10 +23452,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 647 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23280,10 +23468,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 648 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23296,10 +23484,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 648 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23315,10 +23503,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 647 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23334,10 +23522,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 646 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23353,10 +23541,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 649 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23372,10 +23560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 650 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23388,10 +23576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 651 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23404,10 +23592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 652 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23420,10 +23608,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 653 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23436,10 +23624,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 654 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23452,10 +23640,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 655 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23468,10 +23656,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 656 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23484,10 +23672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 657 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23500,10 +23688,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 658 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23516,10 +23704,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 659 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23532,10 +23720,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 660 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23548,10 +23736,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 661 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23564,10 +23752,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 662 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23580,10 +23768,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 662 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23599,10 +23787,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 661 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23618,10 +23806,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 660 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23637,10 +23825,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 659 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23656,10 +23844,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 658 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23675,10 +23863,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 657 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23694,10 +23882,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 656 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23713,10 +23901,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 655 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23732,10 +23920,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 654 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23751,10 +23939,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 653 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23770,10 +23958,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 652 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23789,10 +23977,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 651 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23808,10 +23996,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 650 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23827,10 +24015,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 663 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23843,10 +24031,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 664 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23859,10 +24047,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 665 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23875,10 +24063,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 666 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23891,10 +24079,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 667 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23907,10 +24095,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 668 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23923,10 +24111,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 669 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23939,10 +24127,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 669 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23958,10 +24146,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 668 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23977,10 +24165,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 667 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -23996,10 +24184,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 666 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24015,10 +24203,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 665 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24034,10 +24222,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 664 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24053,10 +24241,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 663 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24072,10 +24260,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 649 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24091,10 +24279,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 670 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24107,10 +24295,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 671 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24123,10 +24311,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 672 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24139,10 +24327,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 672 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24158,10 +24346,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 671 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24177,10 +24365,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 670 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24196,10 +24384,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 673 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24215,10 +24403,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 674 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24231,10 +24419,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 675 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24247,10 +24435,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 675 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24266,10 +24454,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 674 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24285,10 +24473,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 676 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24301,10 +24489,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 677 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24317,10 +24505,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 678 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24333,10 +24521,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 679 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24349,10 +24537,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 680 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24365,10 +24553,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 681 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24381,10 +24569,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 681 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24400,10 +24588,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 680 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24419,10 +24607,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 679 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24438,10 +24626,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 678 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24457,10 +24645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 677 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24476,10 +24664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 676 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24495,10 +24683,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 673 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24514,10 +24702,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 682 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24530,10 +24718,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 683 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24546,10 +24734,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 684 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24562,10 +24750,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 684 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24581,10 +24769,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 683 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24600,10 +24788,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 682 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24619,10 +24807,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 685 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24638,10 +24826,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 686 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24654,10 +24842,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 687 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24670,10 +24858,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 687 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24689,10 +24877,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 686 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24708,10 +24896,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 688 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24724,10 +24912,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 689 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24740,10 +24928,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 690 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24756,10 +24944,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 691 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24772,10 +24960,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 692 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24788,10 +24976,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 693 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24804,10 +24992,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 694 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24820,10 +25008,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 694 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24839,10 +25027,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 693 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24858,10 +25046,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 692 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24877,10 +25065,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 691 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24896,10 +25084,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 690 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24915,10 +25103,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 689 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24934,10 +25122,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 688 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24953,10 +25141,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 685 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24972,10 +25160,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 695 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -24988,10 +25176,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 696 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25004,10 +25192,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 697 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25020,10 +25208,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 697 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25039,10 +25227,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 696 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25058,10 +25246,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 695 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25077,10 +25265,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 698 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25096,10 +25284,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 699 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25112,10 +25300,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 700 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25128,10 +25316,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 701 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25144,10 +25332,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 702 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25160,10 +25348,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 703 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25176,10 +25364,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 704 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25192,10 +25380,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 705 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25208,10 +25396,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 706 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25224,10 +25412,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 707 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25240,10 +25428,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 707 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25259,10 +25447,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 706 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25278,10 +25466,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 705 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25297,10 +25485,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 704 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25316,10 +25504,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 703 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25335,10 +25523,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 702 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25354,10 +25542,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 701 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25373,10 +25561,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 700 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25392,10 +25580,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 699 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25411,10 +25599,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 708 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25427,10 +25615,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 709 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25443,10 +25631,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 710 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25459,10 +25647,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 710 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25478,10 +25666,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 709 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25497,10 +25685,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 708 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25516,10 +25704,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 698 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25535,10 +25723,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 711 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25551,10 +25739,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 712 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25567,10 +25755,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 713 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25583,10 +25771,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 713 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25602,10 +25790,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 712 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25621,10 +25809,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 711 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25640,10 +25828,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 714 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25659,10 +25847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 715 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25675,10 +25863,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 715 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25694,10 +25882,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 716 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25710,10 +25898,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 717 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25726,10 +25914,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 718 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25742,10 +25930,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 719 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25758,10 +25946,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 720 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25774,10 +25962,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 721 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25790,10 +25978,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 721 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25809,10 +25997,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 720 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25828,10 +26016,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 719 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25847,10 +26035,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 718 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25866,10 +26054,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 717 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25885,10 +26073,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 716 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25904,10 +26092,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 722 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 -1 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25923,10 +26111,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 722 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25942,10 +26130,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 714 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25961,10 +26149,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 723 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25977,10 +26165,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 724 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -25993,10 +26181,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 725 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26009,10 +26197,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 726 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26025,10 +26213,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 726 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26044,10 +26232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 725 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26063,10 +26251,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 724 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26082,10 +26270,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 723 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26101,10 +26289,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 727 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26120,10 +26308,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 728 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26136,10 +26324,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 729 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26152,10 +26340,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 730 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26168,10 +26356,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 731 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26184,10 +26372,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 732 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26200,10 +26388,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 733 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26216,10 +26404,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 734 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26232,10 +26420,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 735 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26248,10 +26436,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 735 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26267,10 +26455,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 734 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26286,10 +26474,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 733 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26305,10 +26493,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 732 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26324,10 +26512,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 731 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26343,10 +26531,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 730 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26362,10 +26550,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 729 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26381,10 +26569,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 728 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26400,10 +26588,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 736 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26416,10 +26604,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 737 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26432,10 +26620,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 738 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26448,10 +26636,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 739 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26464,10 +26652,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 740 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26480,10 +26668,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 741 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26496,10 +26684,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 742 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26512,10 +26700,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 743 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26528,10 +26716,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 744 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26544,10 +26732,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 745 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26560,10 +26748,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 746 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26576,10 +26764,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 746 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26595,10 +26783,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 745 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26614,10 +26802,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 744 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26633,10 +26821,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 743 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26652,10 +26840,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 742 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26671,10 +26859,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 741 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26690,10 +26878,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 740 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26709,10 +26897,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 739 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26728,10 +26916,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 738 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26747,10 +26935,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 737 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26766,10 +26954,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 736 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26785,10 +26973,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 727 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26804,10 +26992,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 747 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26820,10 +27008,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 748 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26836,10 +27024,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 749 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26852,10 +27040,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 750 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26868,10 +27056,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 750 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26887,10 +27075,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 749 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26906,10 +27094,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 748 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26925,10 +27113,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 747 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26944,10 +27132,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 751 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26963,10 +27151,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 752 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26979,10 +27167,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 753 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -26995,10 +27183,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 754 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27011,10 +27199,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 755 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27027,10 +27215,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 756 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27043,10 +27231,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 757 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27059,10 +27247,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 758 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27075,10 +27263,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 759 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27091,10 +27279,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 759 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27110,10 +27298,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 758 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27129,10 +27317,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 757 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27148,10 +27336,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 756 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27167,10 +27355,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 755 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27186,10 +27374,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 754 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27205,10 +27393,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 753 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27224,10 +27412,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 752 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27243,10 +27431,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 760 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27259,10 +27447,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 761 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27275,10 +27463,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 762 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27291,10 +27479,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 763 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27307,10 +27495,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 764 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27323,10 +27511,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 765 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27339,10 +27527,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 766 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27355,10 +27543,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 767 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27371,10 +27559,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 768 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27387,10 +27575,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 768 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27406,10 +27594,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 767 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27425,10 +27613,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 766 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27444,10 +27632,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 765 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27463,10 +27651,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 764 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27482,10 +27670,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 763 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27501,10 +27689,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 762 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27520,10 +27708,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 761 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27539,10 +27727,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 760 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27558,10 +27746,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 751 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27577,10 +27765,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 769 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27593,10 +27781,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 770 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27609,10 +27797,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 771 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27625,10 +27813,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 772 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27641,10 +27829,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 772 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27660,10 +27848,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 771 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27679,10 +27867,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 770 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27698,10 +27886,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 769 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27717,10 +27905,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 773 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27736,10 +27924,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 774 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27752,10 +27940,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 775 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27768,10 +27956,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 776 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27784,10 +27972,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 777 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27800,10 +27988,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 777 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27819,10 +28007,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 776 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27838,10 +28026,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 775 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27857,10 +28045,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 774 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27876,10 +28064,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 778 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27892,10 +28080,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 779 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27908,10 +28096,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 780 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27924,10 +28112,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 780 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27943,10 +28131,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 779 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27962,10 +28150,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 778 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -27981,10 +28169,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 773 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28000,10 +28188,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 781 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28016,10 +28204,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 782 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28032,10 +28220,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 783 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28048,10 +28236,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 784 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28064,10 +28252,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 784 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28083,10 +28271,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 783 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28102,10 +28290,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 782 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28121,10 +28309,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 781 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28140,10 +28328,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 785 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28159,10 +28347,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 786 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28175,10 +28363,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 787 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28191,10 +28379,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 788 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28207,10 +28395,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 789 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28223,10 +28411,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 790 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28239,10 +28427,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 791 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28255,10 +28443,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 792 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28271,10 +28459,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 793 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28287,10 +28475,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 794 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28303,10 +28491,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 795 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28319,10 +28507,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 795 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28338,10 +28526,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 794 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28357,10 +28545,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 793 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28376,10 +28564,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 792 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28395,10 +28583,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 791 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28414,10 +28602,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 790 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28433,10 +28621,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 789 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28452,10 +28640,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 788 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28471,10 +28659,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 787 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28490,10 +28678,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 786 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28509,10 +28697,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 796 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28525,10 +28713,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 797 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28541,10 +28729,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 798 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28557,10 +28745,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 799 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28573,10 +28761,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 800 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28589,10 +28777,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 801 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28605,10 +28793,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 802 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28621,10 +28809,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 803 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28637,10 +28825,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 804 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28653,10 +28841,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 805 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28669,10 +28857,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 806 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28685,10 +28873,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 807 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28701,10 +28889,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 808 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28717,10 +28905,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 809 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28733,10 +28921,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 810 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28749,10 +28937,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 811 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28765,10 +28953,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 811 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28784,10 +28972,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 810 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28803,10 +28991,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 809 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28822,10 +29010,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 808 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28841,10 +29029,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 807 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28860,10 +29048,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 806 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28879,10 +29067,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 805 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28898,10 +29086,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 804 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28917,10 +29105,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 803 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28936,10 +29124,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 802 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28955,10 +29143,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 801 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28974,10 +29162,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 800 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -28993,10 +29181,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 799 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29012,10 +29200,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 798 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29031,10 +29219,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 797 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29050,10 +29238,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 796 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29069,10 +29257,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 785 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29088,10 +29276,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 812 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29104,10 +29292,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 813 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29120,10 +29308,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 814 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29136,10 +29324,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 815 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29152,10 +29340,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 815 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29171,10 +29359,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 814 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29190,10 +29378,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 813 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29209,10 +29397,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 812 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29228,10 +29416,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 816 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29247,10 +29435,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 817 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29263,10 +29451,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 818 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29279,10 +29467,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 819 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29295,10 +29483,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 820 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29311,10 +29499,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 821 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29327,10 +29515,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 822 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29343,10 +29531,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 823 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29359,10 +29547,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 823 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29378,10 +29566,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 822 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29397,10 +29585,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 821 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29416,10 +29604,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 820 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29435,10 +29623,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 819 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29454,10 +29642,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 818 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29473,10 +29661,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 817 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29492,10 +29680,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 824 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29508,10 +29696,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 825 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29524,10 +29712,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 826 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29540,10 +29728,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 827 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29556,10 +29744,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 828 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29572,10 +29760,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 829 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29588,10 +29776,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 830 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29604,10 +29792,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 831 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29620,10 +29808,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 831 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29639,10 +29827,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 830 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29658,10 +29846,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 829 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29677,10 +29865,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 828 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29696,10 +29884,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 827 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29715,10 +29903,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 826 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29734,10 +29922,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 825 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29753,10 +29941,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 824 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29772,10 +29960,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 816 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29791,10 +29979,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 832 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29807,10 +29995,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 833 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29823,10 +30011,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 834 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29839,10 +30027,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 835 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29855,10 +30043,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 835 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29874,10 +30062,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 834 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29893,10 +30081,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 833 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29912,10 +30100,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 832 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29931,10 +30119,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 836 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29950,10 +30138,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 837 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29966,10 +30154,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 838 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29982,10 +30170,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 839 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -29998,10 +30186,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 840 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30014,10 +30202,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 841 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30030,10 +30218,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 842 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30046,10 +30234,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 843 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30062,10 +30250,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 843 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30081,10 +30269,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 842 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30100,10 +30288,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 841 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30119,10 +30307,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 840 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30138,10 +30326,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 839 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30157,10 +30345,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 838 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30176,10 +30364,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 837 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30195,10 +30383,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 844 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30211,10 +30399,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 845 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30227,10 +30415,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 846 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30243,10 +30431,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 847 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30259,10 +30447,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 848 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30275,10 +30463,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 849 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30291,10 +30479,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 850 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30307,10 +30495,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 850 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30326,10 +30514,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 849 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30345,10 +30533,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 848 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30364,10 +30552,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 847 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30383,10 +30571,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 846 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30402,10 +30590,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 845 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30421,10 +30609,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 844 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30440,10 +30628,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 836 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30459,10 +30647,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 851 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30475,10 +30663,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 852 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30491,10 +30679,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 853 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30507,10 +30695,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 854 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30523,10 +30711,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 854 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30542,10 +30730,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 853 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30561,10 +30749,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 852 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30580,10 +30768,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 851 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30599,10 +30787,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 855 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30618,10 +30806,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 856 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30634,10 +30822,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 857 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30650,10 +30838,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 858 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30666,10 +30854,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 859 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30682,10 +30870,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 860 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30698,10 +30886,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 861 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30714,10 +30902,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 862 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30730,10 +30918,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 862 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30749,10 +30937,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 861 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30768,10 +30956,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 860 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30787,10 +30975,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 859 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30806,10 +30994,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 858 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30825,10 +31013,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 857 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30844,10 +31032,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 856 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30863,10 +31051,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 863 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30879,10 +31067,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 864 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30895,10 +31083,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 865 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30911,10 +31099,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 866 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30927,10 +31115,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 867 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30943,10 +31131,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 868 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30959,10 +31147,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 869 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30975,10 +31163,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 870 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -30991,10 +31179,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 871 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31007,10 +31195,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 872 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31023,10 +31211,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 872 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31042,10 +31230,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 871 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31061,10 +31249,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 870 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31080,10 +31268,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 869 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31099,10 +31287,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 868 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31118,10 +31306,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 867 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31137,10 +31325,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 866 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31156,10 +31344,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 865 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31175,10 +31363,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 864 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31194,10 +31382,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 863 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31213,10 +31401,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 855 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31232,10 +31420,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 873 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31248,10 +31436,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 874 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31264,10 +31452,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 875 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31280,10 +31468,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 876 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31296,10 +31484,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 876 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31315,10 +31503,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 875 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31334,10 +31522,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 874 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31353,10 +31541,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 873 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31372,10 +31560,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 877 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31391,10 +31579,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 878 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31407,10 +31595,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 879 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31423,10 +31611,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 880 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31439,10 +31627,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 881 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31455,10 +31643,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 882 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31471,10 +31659,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 883 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31487,10 +31675,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 884 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31503,10 +31691,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 885 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31519,10 +31707,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 886 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31535,10 +31723,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 886 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31554,10 +31742,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 885 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31573,10 +31761,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 884 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31592,10 +31780,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 883 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31611,10 +31799,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 882 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31630,10 +31818,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 881 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31649,10 +31837,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 880 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31668,10 +31856,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 879 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31687,10 +31875,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 878 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31706,10 +31894,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 887 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31722,10 +31910,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 888 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31738,10 +31926,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 889 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31754,10 +31942,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 890 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31770,10 +31958,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 891 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31786,10 +31974,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 892 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31802,10 +31990,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 893 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31818,10 +32006,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 893 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31837,10 +32025,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 892 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31856,10 +32044,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 891 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31875,10 +32063,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 890 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31894,10 +32082,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 889 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31913,10 +32101,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 888 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31932,10 +32120,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 887 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31951,10 +32139,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 877 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31970,10 +32158,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 894 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -31986,10 +32174,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 895 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32002,10 +32190,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 896 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32018,10 +32206,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 897 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32034,10 +32222,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 897 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32053,10 +32241,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 896 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32072,10 +32260,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 895 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32091,10 +32279,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 894 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32110,10 +32298,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 898 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32129,10 +32317,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 899 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32145,10 +32333,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 899 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32164,10 +32352,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 900 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32180,10 +32368,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 901 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32196,10 +32384,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 902 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32212,10 +32400,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 903 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32228,10 +32416,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 904 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32244,10 +32432,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 905 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32260,10 +32448,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 906 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32276,10 +32464,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 907 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32292,10 +32480,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 908 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32308,10 +32496,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 908 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32327,10 +32515,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 907 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32346,10 +32534,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 906 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32365,10 +32553,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 905 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32384,10 +32572,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 904 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32403,10 +32591,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 903 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32422,10 +32610,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 902 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32441,10 +32629,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 901 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32460,10 +32648,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 900 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32479,10 +32667,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 909 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 -1 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32498,10 +32686,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 909 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32517,10 +32705,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 898 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32536,10 +32724,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 910 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32552,10 +32740,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 911 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32568,10 +32756,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 912 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32584,10 +32772,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 913 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32600,10 +32788,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 914 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32616,10 +32804,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 914 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32635,10 +32823,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 913 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32654,10 +32842,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 912 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32673,10 +32861,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 911 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32692,10 +32880,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 910 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32711,10 +32899,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 915 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32730,10 +32918,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 916 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32746,10 +32934,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 917 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32762,10 +32950,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 918 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32778,10 +32966,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 919 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32794,10 +32982,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 920 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32810,10 +32998,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 921 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32826,10 +33014,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 922 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32842,10 +33030,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 922 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32861,10 +33049,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 921 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32880,10 +33068,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 920 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32899,10 +33087,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 919 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32918,10 +33106,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 918 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32937,10 +33125,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 917 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32956,10 +33144,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 916 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32975,10 +33163,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 923 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -32991,10 +33179,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 924 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33007,10 +33195,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 925 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33023,10 +33211,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 925 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33042,10 +33230,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 924 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33061,10 +33249,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 923 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33080,10 +33268,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 915 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33099,10 +33287,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 926 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33115,10 +33303,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 927 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33131,10 +33319,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 928 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33147,10 +33335,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 929 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33163,10 +33351,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 930 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33179,10 +33367,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 930 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33198,10 +33386,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 929 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33217,10 +33405,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 928 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33236,10 +33424,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 927 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33255,10 +33443,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 926 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33274,10 +33462,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 931 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33293,10 +33481,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 932 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33309,10 +33497,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 933 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33325,10 +33513,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 934 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33341,10 +33529,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 935 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33357,10 +33545,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 936 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33373,10 +33561,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 936 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33392,10 +33580,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 935 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33411,10 +33599,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 934 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33430,10 +33618,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 933 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33449,10 +33637,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 932 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33468,10 +33656,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 937 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33484,10 +33672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 938 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33500,10 +33688,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 939 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33516,10 +33704,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 940 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33532,10 +33720,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 941 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33548,10 +33736,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 942 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33564,10 +33752,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 943 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33580,10 +33768,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 944 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33596,10 +33784,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 945 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33612,10 +33800,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 946 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33628,10 +33816,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 947 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33644,10 +33832,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 948 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33660,10 +33848,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 948 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33679,10 +33867,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 947 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33698,10 +33886,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 946 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33717,10 +33905,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 945 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33736,10 +33924,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 944 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33755,10 +33943,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 943 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33774,10 +33962,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 942 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33793,10 +33981,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 941 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33812,10 +34000,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 940 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33831,10 +34019,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 939 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33850,10 +34038,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 938 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33869,10 +34057,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 937 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33888,10 +34076,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 931 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33907,10 +34095,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 949 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33923,10 +34111,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 950 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33939,10 +34127,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 951 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33955,10 +34143,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 952 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33971,10 +34159,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 953 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -33987,10 +34175,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 953 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34006,10 +34194,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 952 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34025,10 +34213,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 951 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34044,10 +34232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 950 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34063,10 +34251,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 949 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34082,10 +34270,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 954 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34101,10 +34289,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 955 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34117,10 +34305,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 956 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34133,10 +34321,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 957 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34149,10 +34337,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 958 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34165,10 +34353,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 959 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34181,10 +34369,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 960 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34197,10 +34385,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 961 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34213,10 +34401,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 962 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34229,10 +34417,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 963 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34245,10 +34433,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 964 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34261,10 +34449,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 965 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34277,10 +34465,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 966 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34293,10 +34481,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 967 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34309,10 +34497,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 968 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34325,10 +34513,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 969 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34341,10 +34529,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 970 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34357,10 +34545,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 970 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34376,10 +34564,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 969 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34395,10 +34583,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 968 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34414,10 +34602,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 967 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34433,10 +34621,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 966 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34452,10 +34640,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 965 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34471,10 +34659,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 964 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34490,10 +34678,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 963 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34509,10 +34697,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 962 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34528,10 +34716,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 961 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34547,10 +34735,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 960 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34566,10 +34754,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 959 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34585,10 +34773,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 958 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34604,10 +34792,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 957 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34623,10 +34811,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 956 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34642,10 +34830,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 955 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34661,10 +34849,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 971 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34677,10 +34865,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 972 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34693,10 +34881,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 973 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34709,10 +34897,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 974 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34725,10 +34913,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 975 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34741,10 +34929,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 976 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34757,10 +34945,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 977 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34773,10 +34961,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 978 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34789,10 +34977,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 979 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34805,10 +34993,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 980 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34821,10 +35009,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 981 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34837,10 +35025,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 982 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34853,10 +35041,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 983 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34869,10 +35057,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 984 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34885,10 +35073,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 985 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34901,10 +35089,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 986 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34917,10 +35105,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 986 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34936,10 +35124,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 985 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34955,10 +35143,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 984 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34974,10 +35162,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 983 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -34993,10 +35181,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 982 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35012,10 +35200,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 981 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35031,10 +35219,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 980 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35050,10 +35238,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 979 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35069,10 +35257,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 978 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35088,10 +35276,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 977 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35107,10 +35295,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 976 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35126,10 +35314,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 975 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35145,10 +35333,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 974 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35164,10 +35352,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 973 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35183,10 +35371,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 972 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35202,10 +35390,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 971 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35221,10 +35409,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 954 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35240,10 +35428,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 987 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35256,10 +35444,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 988 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35272,10 +35460,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 989 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35288,10 +35476,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 990 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35304,10 +35492,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 991 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35320,10 +35508,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 991 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35339,10 +35527,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 990 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35358,10 +35546,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 989 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35377,10 +35565,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 988 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35396,10 +35584,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 987 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35415,10 +35603,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 992 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35434,10 +35622,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 993 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35450,10 +35638,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 994 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35466,10 +35654,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 995 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35482,10 +35670,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 996 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35498,10 +35686,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 997 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35514,10 +35702,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 998 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35530,10 +35718,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 999 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35546,10 +35734,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1000 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35562,10 +35750,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1001 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35578,10 +35766,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1002 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35594,10 +35782,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1003 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35610,10 +35798,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1003 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35629,10 +35817,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1002 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35648,10 +35836,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1001 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35667,10 +35855,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1000 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35686,10 +35874,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 999 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35705,10 +35893,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 998 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35724,10 +35912,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 997 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35743,10 +35931,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 996 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35762,10 +35950,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 995 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35781,10 +35969,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 994 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35800,10 +35988,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 993 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35819,10 +36007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1004 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35835,10 +36023,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1005 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35851,10 +36039,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1006 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35867,10 +36055,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1007 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35883,10 +36071,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1008 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35899,10 +36087,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1009 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35915,10 +36103,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1010 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35931,10 +36119,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1011 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35947,10 +36135,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1012 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35963,10 +36151,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1013 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35979,10 +36167,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1013 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -35998,10 +36186,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1012 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36017,10 +36205,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1011 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36036,10 +36224,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1010 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36055,10 +36243,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1009 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36074,10 +36262,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1008 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36093,10 +36281,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1007 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36112,10 +36300,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1006 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36131,10 +36319,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1005 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36150,10 +36338,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1004 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36169,10 +36357,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 992 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36188,10 +36376,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1014 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36204,10 +36392,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1015 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36220,10 +36408,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1016 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36236,10 +36424,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1017 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36252,10 +36440,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1018 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36268,10 +36456,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1018 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36287,10 +36475,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1017 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36306,10 +36494,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1016 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36325,10 +36513,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1015 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36344,10 +36532,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1014 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36363,10 +36551,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1019 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36382,10 +36570,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1020 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36398,10 +36586,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1021 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36414,10 +36602,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1022 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36430,10 +36618,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1023 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36446,10 +36634,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1024 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36462,10 +36650,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1025 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36478,10 +36666,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1026 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36494,10 +36682,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1027 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36510,10 +36698,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1028 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36526,10 +36714,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1028 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36545,10 +36733,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1027 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36564,10 +36752,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1026 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36583,10 +36771,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1025 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36602,10 +36790,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1024 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36621,10 +36809,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1023 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36640,10 +36828,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1022 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36659,10 +36847,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1021 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36678,10 +36866,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1020 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36697,10 +36885,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1029 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36713,10 +36901,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1030 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36729,10 +36917,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1031 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36745,10 +36933,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1032 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36761,10 +36949,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1033 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36777,10 +36965,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1034 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36793,10 +36981,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1035 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36809,10 +36997,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1036 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36825,10 +37013,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1037 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36841,10 +37029,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1038 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36857,10 +37045,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1038 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36876,10 +37064,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1037 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36895,10 +37083,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1036 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36914,10 +37102,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1035 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36933,10 +37121,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1034 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36952,10 +37140,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1033 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36971,10 +37159,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1032 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -36990,10 +37178,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1031 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37009,10 +37197,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1030 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37028,10 +37216,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1029 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37047,10 +37235,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1019 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37066,10 +37254,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1039 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37082,10 +37270,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1040 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37098,10 +37286,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1041 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37114,10 +37302,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1042 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37130,10 +37318,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1043 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37146,10 +37334,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1043 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37165,10 +37353,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1042 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37184,10 +37372,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1041 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37203,10 +37391,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1040 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37222,10 +37410,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1039 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37241,10 +37429,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1044 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37260,10 +37448,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1045 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37276,10 +37464,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1046 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37292,10 +37480,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1047 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37308,10 +37496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1048 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37324,10 +37512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1049 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37340,10 +37528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1050 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37356,10 +37544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1051 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37372,10 +37560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1052 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37388,10 +37576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1053 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37404,10 +37592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1054 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37420,10 +37608,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1054 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37439,10 +37627,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1053 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37458,10 +37646,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1052 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37477,10 +37665,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1051 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37496,10 +37684,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1050 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37515,10 +37703,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1049 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37534,10 +37722,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1048 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37553,10 +37741,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1047 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37572,10 +37760,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1046 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37591,10 +37779,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1045 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37610,10 +37798,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1055 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37626,10 +37814,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1056 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37642,10 +37830,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1057 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37658,10 +37846,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1058 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37674,10 +37862,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1059 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37690,10 +37878,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1060 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37706,10 +37894,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1061 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37722,10 +37910,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1062 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37738,10 +37926,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1063 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37754,10 +37942,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1064 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37770,10 +37958,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1065 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37786,10 +37974,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1065 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37805,10 +37993,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1064 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37824,10 +38012,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1063 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37843,10 +38031,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1062 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37862,10 +38050,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1061 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37881,10 +38069,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1060 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37900,10 +38088,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1059 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37919,10 +38107,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1058 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37938,10 +38126,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1057 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37957,10 +38145,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1056 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37976,10 +38164,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1055 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -37995,10 +38183,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1044 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38014,10 +38202,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1066 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38030,10 +38218,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1067 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38046,10 +38234,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1068 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38062,10 +38250,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1069 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38078,10 +38266,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1070 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38094,10 +38282,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1070 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38113,10 +38301,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1069 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38132,10 +38320,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1068 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38151,10 +38339,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1067 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38170,10 +38358,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1066 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38189,10 +38377,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1071 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38208,10 +38396,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1072 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38224,10 +38412,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1073 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38240,10 +38428,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1074 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38256,10 +38444,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1075 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38272,10 +38460,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1076 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38288,10 +38476,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1077 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38304,10 +38492,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1078 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38320,10 +38508,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1079 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38336,10 +38524,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1080 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38352,10 +38540,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1081 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38368,10 +38556,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1082 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38384,10 +38572,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1083 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38400,10 +38588,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1083 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38419,10 +38607,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1082 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38438,10 +38626,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1081 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38457,10 +38645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1080 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38476,10 +38664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1079 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38495,10 +38683,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1078 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38514,10 +38702,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1077 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38533,10 +38721,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1076 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38552,10 +38740,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1075 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38571,10 +38759,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1074 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38590,10 +38778,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1073 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38609,10 +38797,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1072 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38628,10 +38816,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1084 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38644,10 +38832,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1085 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38660,10 +38848,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1086 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38676,10 +38864,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1087 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38692,10 +38880,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1088 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38708,10 +38896,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1089 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38724,10 +38912,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1090 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38740,10 +38928,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1091 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38756,10 +38944,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1092 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38772,10 +38960,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1093 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38788,10 +38976,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1094 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38804,10 +38992,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1095 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38820,10 +39008,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1096 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38836,10 +39024,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1096 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38855,10 +39043,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1095 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38874,10 +39062,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1094 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38893,10 +39081,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1093 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38912,10 +39100,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1092 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38931,10 +39119,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1091 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38950,10 +39138,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1090 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38969,10 +39157,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1089 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -38988,10 +39176,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1088 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39007,10 +39195,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1087 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39026,10 +39214,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1086 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39045,10 +39233,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1085 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39064,10 +39252,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1084 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39083,10 +39271,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1071 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39102,10 +39290,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1097 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39118,10 +39306,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1098 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39134,10 +39322,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1099 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39150,10 +39338,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1100 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39166,10 +39354,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1101 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39182,10 +39370,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1101 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39201,10 +39389,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1100 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39220,10 +39408,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1099 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39239,10 +39427,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1098 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39258,10 +39446,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1097 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39277,10 +39465,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1102 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39296,10 +39484,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1103 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39312,10 +39500,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1104 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39328,10 +39516,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1105 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39344,10 +39532,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1106 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39360,10 +39548,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1107 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39376,10 +39564,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1108 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39392,10 +39580,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1109 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39408,10 +39596,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1110 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39424,10 +39612,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1111 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39440,10 +39628,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1111 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39459,10 +39647,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1110 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39478,10 +39666,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1109 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39497,10 +39685,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1108 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39516,10 +39704,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1107 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39535,10 +39723,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1106 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39554,10 +39742,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1105 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39573,10 +39761,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1104 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39592,10 +39780,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1103 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39611,10 +39799,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1112 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39627,10 +39815,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1113 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39643,10 +39831,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1114 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39659,10 +39847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1115 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39675,10 +39863,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1116 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39691,10 +39879,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1117 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39707,10 +39895,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1118 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39723,10 +39911,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1119 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39739,10 +39927,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1120 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39755,10 +39943,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1120 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39774,10 +39962,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1119 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39793,10 +39981,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1118 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39812,10 +40000,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1117 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39831,10 +40019,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1116 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39850,10 +40038,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1115 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39869,10 +40057,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1114 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39888,10 +40076,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1113 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39907,10 +40095,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1112 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39926,10 +40114,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1102 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39945,10 +40133,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1121 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39961,10 +40149,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1122 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39977,10 +40165,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1123 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -39993,10 +40181,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1124 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40009,10 +40197,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1125 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40025,10 +40213,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1125 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40044,10 +40232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1124 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40063,10 +40251,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1123 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40082,10 +40270,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1122 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40101,10 +40289,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1121 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40120,10 +40308,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1126 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40139,10 +40327,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1127 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40155,10 +40343,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1128 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40171,10 +40359,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1129 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40187,10 +40375,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1130 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40203,10 +40391,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1131 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40219,10 +40407,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1132 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40235,10 +40423,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1133 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40251,10 +40439,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1134 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40267,10 +40455,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1135 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40283,10 +40471,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1135 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40302,10 +40490,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1134 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40321,10 +40509,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1133 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40340,10 +40528,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1132 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40359,10 +40547,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1131 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40378,10 +40566,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1130 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40397,10 +40585,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1129 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40416,10 +40604,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1128 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40435,10 +40623,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1127 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40454,10 +40642,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1136 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40470,10 +40658,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1137 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40486,10 +40674,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1138 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40502,10 +40690,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1139 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40518,10 +40706,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1140 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40534,10 +40722,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1141 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40550,10 +40738,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1142 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40566,10 +40754,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1143 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40582,10 +40770,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1144 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40598,10 +40786,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1145 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40614,10 +40802,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1145 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40633,10 +40821,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1144 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40652,10 +40840,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1143 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40671,10 +40859,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1142 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40690,10 +40878,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1141 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40709,10 +40897,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1140 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40728,10 +40916,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1139 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40747,10 +40935,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1138 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40766,10 +40954,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1137 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40785,10 +40973,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1136 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40804,10 +40992,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1126 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40823,10 +41011,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1146 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40839,10 +41027,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1147 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40855,10 +41043,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1148 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40871,10 +41059,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1149 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40887,10 +41075,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1150 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40903,10 +41091,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1150 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40922,10 +41110,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1149 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40941,10 +41129,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1148 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40960,10 +41148,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1147 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40979,10 +41167,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1146 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -40998,10 +41186,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1151 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41017,10 +41205,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1152 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41033,10 +41221,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1153 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41049,10 +41237,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1154 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41065,10 +41253,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1155 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41081,10 +41269,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1156 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41097,10 +41285,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1157 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41113,10 +41301,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1158 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41129,10 +41317,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1159 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41145,10 +41333,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1160 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41161,10 +41349,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1161 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41177,10 +41365,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1162 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41193,10 +41381,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1163 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41209,10 +41397,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1164 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41225,10 +41413,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1165 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41241,10 +41429,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1166 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41257,10 +41445,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1167 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41273,10 +41461,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1168 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41289,10 +41477,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1168 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41308,10 +41496,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1167 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41327,10 +41515,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1166 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41346,10 +41534,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1165 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41365,10 +41553,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1164 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41384,10 +41572,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1163 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41403,10 +41591,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1162 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41422,10 +41610,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1161 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41441,10 +41629,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1160 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41460,10 +41648,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1159 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41479,10 +41667,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1158 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41498,10 +41686,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1157 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41517,10 +41705,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1156 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41536,10 +41724,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1155 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41555,10 +41743,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1154 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41574,10 +41762,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1153 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41593,10 +41781,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1152 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41612,10 +41800,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1169 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41628,10 +41816,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1170 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41644,10 +41832,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1171 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41660,10 +41848,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1172 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41676,10 +41864,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1173 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41692,10 +41880,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1174 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41708,10 +41896,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1175 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41724,10 +41912,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1176 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41740,10 +41928,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1177 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41756,10 +41944,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1177 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41775,10 +41963,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1176 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41794,10 +41982,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1175 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41813,10 +42001,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1174 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41832,10 +42020,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1173 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41851,10 +42039,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1172 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41870,10 +42058,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1171 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41889,10 +42077,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1170 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41908,10 +42096,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1169 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41927,10 +42115,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1151 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41946,10 +42134,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1178 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41962,10 +42150,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1179 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41978,10 +42166,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1180 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -41994,10 +42182,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1181 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42010,10 +42198,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1182 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42026,10 +42214,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1182 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42045,10 +42233,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1181 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42064,10 +42252,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1180 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42083,10 +42271,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1179 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42102,10 +42290,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1178 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42121,10 +42309,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1183 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42140,10 +42328,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1184 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42156,10 +42344,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1185 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42172,10 +42360,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1186 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42188,10 +42376,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1187 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42204,10 +42392,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1188 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42220,10 +42408,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1189 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42236,10 +42424,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1190 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42252,10 +42440,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1191 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42268,10 +42456,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1192 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42284,10 +42472,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1192 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42303,10 +42491,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1191 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42322,10 +42510,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1190 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42341,10 +42529,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1189 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42360,10 +42548,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1188 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42379,10 +42567,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1187 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42398,10 +42586,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1186 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42417,10 +42605,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1185 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42436,10 +42624,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1184 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42455,10 +42643,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1193 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42471,10 +42659,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1194 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42487,10 +42675,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1195 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42503,10 +42691,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1196 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42519,10 +42707,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1196 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42538,10 +42726,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1195 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42557,10 +42745,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1194 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42576,10 +42764,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1193 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42595,10 +42783,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1183 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42614,10 +42802,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1197 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42630,10 +42818,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1198 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42646,10 +42834,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1199 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42662,10 +42850,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1200 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42678,10 +42866,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1201 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42694,10 +42882,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1201 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42713,10 +42901,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1200 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42732,10 +42920,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1199 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42751,10 +42939,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1198 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42770,10 +42958,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1197 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42789,10 +42977,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1202 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42808,10 +42996,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1203 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42824,10 +43012,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1204 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42840,10 +43028,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1205 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42856,10 +43044,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1206 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42872,10 +43060,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1207 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42888,10 +43076,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1207 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42907,10 +43095,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1206 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42926,10 +43114,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1205 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42945,10 +43133,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1204 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42964,10 +43152,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1203 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42983,10 +43171,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1208 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -42999,10 +43187,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1209 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43015,10 +43203,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1210 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43031,10 +43219,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1211 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43047,10 +43235,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1212 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43063,10 +43251,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1213 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43079,10 +43267,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1214 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43095,10 +43283,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1215 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43111,10 +43299,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1216 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43127,10 +43315,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1217 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43143,10 +43331,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1217 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43162,10 +43350,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1216 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43181,10 +43369,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1215 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43200,10 +43388,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1214 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43219,10 +43407,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1213 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43238,10 +43426,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1212 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43257,10 +43445,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1211 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43276,10 +43464,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1210 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43295,10 +43483,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1209 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43314,10 +43502,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1208 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43333,10 +43521,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1202 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43352,10 +43540,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1218 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43368,10 +43556,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1219 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43384,10 +43572,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1220 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43400,10 +43588,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1221 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43416,10 +43604,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1222 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43432,10 +43620,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1222 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43451,10 +43639,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1221 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43470,10 +43658,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1220 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43489,10 +43677,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1219 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43508,10 +43696,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1218 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43527,10 +43715,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1223 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43546,10 +43734,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1224 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43562,10 +43750,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1225 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43578,10 +43766,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1226 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43594,10 +43782,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1226 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43613,10 +43801,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1225 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43632,10 +43820,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1224 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43651,10 +43839,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1227 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43667,10 +43855,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1228 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43683,10 +43871,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1229 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43699,10 +43887,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1230 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43715,10 +43903,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1231 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43731,10 +43919,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1232 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43747,10 +43935,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1233 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43763,10 +43951,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1234 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43779,10 +43967,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1235 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43795,10 +43983,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1236 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43811,10 +43999,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1237 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43827,10 +44015,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1238 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43843,10 +44031,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1239 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43859,10 +44047,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1240 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43875,10 +44063,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1241 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43891,10 +44079,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1241 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43910,10 +44098,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1240 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43929,10 +44117,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1239 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43948,10 +44136,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1238 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43967,10 +44155,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1237 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -43986,10 +44174,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1236 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44005,10 +44193,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1235 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44024,10 +44212,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1234 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44043,10 +44231,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1233 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44062,10 +44250,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1232 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44081,10 +44269,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1231 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44100,10 +44288,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1230 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44119,10 +44307,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1229 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44138,10 +44326,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1228 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44157,10 +44345,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1227 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44176,10 +44364,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1223 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44195,10 +44383,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1242 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44211,10 +44399,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1243 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44227,10 +44415,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1244 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44243,10 +44431,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1245 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44259,10 +44447,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1246 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44275,10 +44463,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1246 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44294,10 +44482,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1245 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44313,10 +44501,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1244 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44332,10 +44520,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1243 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44351,10 +44539,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1242 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44370,10 +44558,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1247 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44389,10 +44577,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1248 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44405,10 +44593,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1249 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44421,10 +44609,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1250 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44437,10 +44625,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1251 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44453,10 +44641,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1252 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44469,10 +44657,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1253 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44485,10 +44673,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1254 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44501,10 +44689,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1255 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44517,10 +44705,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1256 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44533,10 +44721,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1257 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44549,10 +44737,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1258 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44565,10 +44753,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1259 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44581,10 +44769,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1260 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44597,10 +44785,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1261 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44613,10 +44801,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1262 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44629,10 +44817,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1263 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44645,10 +44833,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1264 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44661,10 +44849,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1264 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44680,10 +44868,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1263 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44699,10 +44887,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1262 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44718,10 +44906,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1261 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44737,10 +44925,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1260 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44756,10 +44944,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1259 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44775,10 +44963,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1258 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44794,10 +44982,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1257 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44813,10 +45001,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1256 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44832,10 +45020,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1255 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44851,10 +45039,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1254 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44870,10 +45058,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1253 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44889,10 +45077,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1252 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44908,10 +45096,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1251 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44927,10 +45115,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1250 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44946,10 +45134,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1249 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44965,10 +45153,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1248 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -44984,10 +45172,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1265 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45000,10 +45188,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1266 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45016,10 +45204,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1267 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45032,10 +45220,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1268 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45048,10 +45236,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1269 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45064,10 +45252,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1270 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45080,10 +45268,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1271 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45096,10 +45284,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1272 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45112,10 +45300,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1273 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45128,10 +45316,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1274 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45144,10 +45332,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1275 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45160,10 +45348,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1276 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45176,10 +45364,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1276 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45195,10 +45383,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1275 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45214,10 +45402,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1274 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45233,10 +45421,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1273 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45252,10 +45440,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1272 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45271,10 +45459,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1271 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45290,10 +45478,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1270 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45309,10 +45497,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1269 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45328,10 +45516,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1268 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45347,10 +45535,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1267 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45366,10 +45554,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1266 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45385,10 +45573,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1265 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45404,10 +45592,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1247 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45423,10 +45611,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1277 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45439,10 +45627,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1278 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45455,10 +45643,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1279 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45471,10 +45659,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1280 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45487,10 +45675,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1281 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45503,10 +45691,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1281 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45522,10 +45710,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1280 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45541,10 +45729,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1279 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45560,10 +45748,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1278 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45579,10 +45767,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1277 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45598,10 +45786,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1282 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45617,10 +45805,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1283 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45633,10 +45821,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1284 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45649,10 +45837,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1285 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45665,10 +45853,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1286 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45681,10 +45869,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1287 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45697,10 +45885,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1288 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45713,10 +45901,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1289 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45729,10 +45917,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1290 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45745,10 +45933,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1290 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45764,10 +45952,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1289 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45783,10 +45971,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1288 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45802,10 +45990,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1287 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45821,10 +46009,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1286 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45840,10 +46028,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1285 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45859,10 +46047,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1284 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45878,10 +46066,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1283 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45897,10 +46085,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1291 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45913,10 +46101,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1291 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45932,10 +46120,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 1292 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 -1 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45951,10 +46139,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 1292 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45970,10 +46158,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1282 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -45989,10 +46177,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1293 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46005,10 +46193,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1294 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46021,10 +46209,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1295 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46037,10 +46225,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1296 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46053,10 +46241,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1297 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46069,10 +46257,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1297 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46088,10 +46276,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1296 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46107,10 +46295,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1295 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46126,10 +46314,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1294 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46145,10 +46333,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1293 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46164,10 +46352,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1298 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46183,10 +46371,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1299 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46199,10 +46387,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1300 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46215,10 +46403,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1301 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46231,10 +46419,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1302 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46247,10 +46435,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1303 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46263,10 +46451,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1304 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46279,10 +46467,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1305 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46295,10 +46483,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1306 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46311,10 +46499,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1306 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46330,10 +46518,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1305 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46349,10 +46537,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1304 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46368,10 +46556,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1303 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46387,10 +46575,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1302 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46406,10 +46594,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1301 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46425,10 +46613,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1300 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46444,10 +46632,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1299 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46463,10 +46651,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1307 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46479,10 +46667,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1308 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46495,10 +46683,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1309 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46511,10 +46699,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1310 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46527,10 +46715,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1311 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46543,10 +46731,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1312 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46559,10 +46747,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1313 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46575,10 +46763,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1314 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46591,10 +46779,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1315 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46607,10 +46795,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1315 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46626,10 +46814,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1314 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46645,10 +46833,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1313 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46664,10 +46852,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1312 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46683,10 +46871,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1311 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46702,10 +46890,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1310 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46721,10 +46909,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1309 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46740,10 +46928,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1308 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46759,10 +46947,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1307 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46778,10 +46966,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1298 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46797,10 +46985,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1316 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46813,10 +47001,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1317 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46829,10 +47017,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1318 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46845,10 +47033,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1319 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46861,10 +47049,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1320 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46877,10 +47065,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1320 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46896,10 +47084,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1319 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46915,10 +47103,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1318 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46934,10 +47122,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1317 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46953,10 +47141,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1316 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46972,10 +47160,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1321 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -46991,10 +47179,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1322 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47007,10 +47195,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1323 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47023,10 +47211,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1324 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47039,10 +47227,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1325 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47055,10 +47243,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1326 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47071,10 +47259,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1327 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47087,10 +47275,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1328 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47103,10 +47291,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1329 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47119,10 +47307,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1330 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47135,10 +47323,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1331 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47151,10 +47339,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1332 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47167,10 +47355,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1333 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47183,10 +47371,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1333 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47202,10 +47390,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1332 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47221,10 +47409,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1331 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47240,10 +47428,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1330 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47259,10 +47447,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1329 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47278,10 +47466,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1328 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47297,10 +47485,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1327 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47316,10 +47504,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1326 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47335,10 +47523,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1325 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47354,10 +47542,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1324 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47373,10 +47561,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1323 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47392,10 +47580,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1322 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47411,10 +47599,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1334 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47427,10 +47615,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1335 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47443,10 +47631,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1336 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47459,10 +47647,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1337 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47475,10 +47663,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1338 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47491,10 +47679,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1339 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47507,10 +47695,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1340 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47523,10 +47711,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1341 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47539,10 +47727,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1342 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47555,10 +47743,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1343 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47571,10 +47759,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1344 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47587,10 +47775,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1344 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47606,10 +47794,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1343 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47625,10 +47813,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1342 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47644,10 +47832,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1341 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47663,10 +47851,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1340 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47682,10 +47870,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1339 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47701,10 +47889,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1338 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47720,10 +47908,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1337 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47739,10 +47927,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1336 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47758,10 +47946,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1335 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47777,10 +47965,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1334 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47796,10 +47984,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1321 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47815,10 +48003,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1345 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47831,10 +48019,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1346 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47847,10 +48035,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1347 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47863,10 +48051,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1348 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47879,10 +48067,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1349 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47895,10 +48083,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1349 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47914,10 +48102,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1348 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47933,10 +48121,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1347 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47952,10 +48140,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1346 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47971,10 +48159,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1345 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -47990,10 +48178,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1350 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48009,10 +48197,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1351 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48025,10 +48213,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1352 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48041,10 +48229,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1353 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48057,10 +48245,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1354 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48073,10 +48261,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1355 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48089,10 +48277,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1356 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48105,10 +48293,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1357 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48121,10 +48309,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1358 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48137,10 +48325,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1359 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48153,10 +48341,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1360 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48169,10 +48357,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1361 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48185,10 +48373,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1362 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48201,10 +48389,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1363 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48217,10 +48405,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1364 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48233,10 +48421,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1365 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48249,10 +48437,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1365 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48268,10 +48456,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1364 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48287,10 +48475,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1363 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48306,10 +48494,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1362 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48325,10 +48513,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1361 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48344,10 +48532,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1360 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48363,10 +48551,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1359 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48382,10 +48570,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1358 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48401,10 +48589,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1357 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48420,10 +48608,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1356 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48439,10 +48627,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1355 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48458,10 +48646,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1354 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48477,10 +48665,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1353 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48496,10 +48684,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1352 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48515,10 +48703,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1351 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48534,10 +48722,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1366 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48550,10 +48738,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1367 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48566,10 +48754,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1368 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48582,10 +48770,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1369 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48598,10 +48786,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1370 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48614,10 +48802,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1371 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48630,10 +48818,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1372 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48646,10 +48834,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1373 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48662,10 +48850,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1374 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48678,10 +48866,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1375 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48694,10 +48882,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1376 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48710,10 +48898,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1376 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48729,10 +48917,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1375 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48748,10 +48936,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1374 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48767,10 +48955,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1373 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48786,10 +48974,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1372 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48805,10 +48993,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1371 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48824,10 +49012,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1370 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48843,10 +49031,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1369 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48862,10 +49050,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1368 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48881,10 +49069,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1367 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48900,10 +49088,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1366 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48919,10 +49107,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1350 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48938,10 +49126,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1377 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48954,10 +49142,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1378 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48970,10 +49158,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1379 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -48986,10 +49174,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1380 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49002,10 +49190,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1381 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49018,10 +49206,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1381 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49037,10 +49225,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1380 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49056,10 +49244,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1379 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49075,10 +49263,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1378 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49094,10 +49282,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1377 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49113,10 +49301,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1382 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49132,10 +49320,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1383 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49148,10 +49336,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1383 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49167,10 +49355,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1384 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49183,10 +49371,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1385 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49199,10 +49387,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1386 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49215,10 +49403,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1387 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49231,10 +49419,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1388 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49247,10 +49435,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1389 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49263,10 +49451,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1390 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49279,10 +49467,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1391 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49295,10 +49483,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1392 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49311,10 +49499,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1393 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49327,10 +49515,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1394 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49343,10 +49531,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1394 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49362,10 +49550,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1393 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49381,10 +49569,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1392 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49400,10 +49588,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1391 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49419,10 +49607,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1390 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49438,10 +49626,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1389 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49457,10 +49645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1388 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49476,10 +49664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1387 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49495,10 +49683,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1386 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49514,10 +49702,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1385 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49533,10 +49721,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1384 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49552,10 +49740,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 1395 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 -1 16] @@ -49571,10 +49759,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 1395 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49590,10 +49778,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1382 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49609,10 +49797,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1396 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49625,10 +49813,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1397 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49641,10 +49829,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1398 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49657,10 +49845,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1399 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49673,10 +49861,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1400 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49689,10 +49877,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1401 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49705,10 +49893,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1401 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49724,10 +49912,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1400 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49743,10 +49931,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1399 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49762,10 +49950,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1398 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49781,10 +49969,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1397 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49800,10 +49988,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1396 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49819,10 +50007,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1402 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49838,10 +50026,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1403 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49854,10 +50042,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1404 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49870,10 +50058,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1405 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49886,10 +50074,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1406 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49902,10 +50090,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1407 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49918,10 +50106,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1408 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49934,10 +50122,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1409 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49950,10 +50138,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1410 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49966,10 +50154,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1411 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -49982,10 +50170,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1411 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50001,10 +50189,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1410 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50020,10 +50208,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1409 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50039,10 +50227,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1408 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50058,10 +50246,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1407 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50077,10 +50265,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1406 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50096,10 +50284,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1405 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50115,10 +50303,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1404 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50134,10 +50322,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1403 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50153,10 +50341,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1412 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50169,10 +50357,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1413 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50185,10 +50373,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1414 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50201,10 +50389,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1415 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50217,10 +50405,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1416 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50233,10 +50421,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1417 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50249,10 +50437,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1418 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50265,10 +50453,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1418 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50284,10 +50472,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1417 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50303,10 +50491,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1416 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50322,10 +50510,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1415 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50341,10 +50529,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1414 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50360,10 +50548,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1413 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50379,10 +50567,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1412 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50398,10 +50586,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1402 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50417,10 +50605,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1419 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50433,10 +50621,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1420 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50449,10 +50637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1421 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50465,10 +50653,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1422 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50481,10 +50669,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1423 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50497,10 +50685,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1424 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50513,10 +50701,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1424 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50532,10 +50720,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1423 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50551,10 +50739,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1422 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50570,10 +50758,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1421 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50589,10 +50777,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1420 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50608,10 +50796,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1419 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50627,10 +50815,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1425 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50646,10 +50834,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1426 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50662,10 +50850,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1427 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50678,10 +50866,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1428 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50694,10 +50882,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1429 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50710,10 +50898,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1430 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50726,10 +50914,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1431 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50742,10 +50930,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1432 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50758,10 +50946,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1433 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50774,10 +50962,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1434 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50790,10 +50978,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1435 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50806,10 +50994,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1435 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50825,10 +51013,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1434 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50844,10 +51032,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1433 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50863,10 +51051,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1432 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50882,10 +51070,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1431 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50901,10 +51089,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1430 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50920,10 +51108,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1429 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50939,10 +51127,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1428 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50958,10 +51146,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1427 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50977,10 +51165,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1426 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -50996,10 +51184,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1436 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51012,10 +51200,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1437 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51028,10 +51216,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1438 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51044,10 +51232,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1439 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51060,10 +51248,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1440 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51076,10 +51264,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1441 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51092,10 +51280,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1442 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51108,10 +51296,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1443 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51124,10 +51312,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1444 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51140,10 +51328,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1445 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51156,10 +51344,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1445 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51175,10 +51363,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1444 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51194,10 +51382,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1443 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51213,10 +51401,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1442 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51232,10 +51420,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1441 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51251,10 +51439,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1440 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51270,10 +51458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1439 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51289,10 +51477,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1438 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51308,10 +51496,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1437 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51327,10 +51515,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1436 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51346,10 +51534,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1425 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51365,10 +51553,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1446 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51381,10 +51569,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1447 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51397,10 +51585,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1448 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51413,10 +51601,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1449 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51429,10 +51617,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1450 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51445,10 +51633,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1451 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51461,10 +51649,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1451 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51480,10 +51668,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1450 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51499,10 +51687,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1449 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51518,10 +51706,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1448 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51537,10 +51725,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1447 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51556,10 +51744,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1446 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51575,10 +51763,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1452 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51594,10 +51782,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1453 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51610,10 +51798,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1454 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51626,10 +51814,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1455 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51642,10 +51830,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1456 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51658,10 +51846,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1457 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51674,10 +51862,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1458 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51690,10 +51878,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1459 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51706,10 +51894,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1460 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51722,10 +51910,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1461 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51738,10 +51926,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1461 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51757,10 +51945,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1460 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51776,10 +51964,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1459 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51795,10 +51983,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1458 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51814,10 +52002,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1457 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51833,10 +52021,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1456 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51852,10 +52040,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1455 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51871,10 +52059,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1454 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51890,10 +52078,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1453 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51909,10 +52097,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1462 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51925,10 +52113,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1463 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51941,10 +52129,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1464 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51957,10 +52145,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1465 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51973,10 +52161,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1466 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -51989,10 +52177,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1467 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52005,10 +52193,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1468 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52021,10 +52209,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1469 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52037,10 +52225,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1470 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52053,10 +52241,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1471 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52069,10 +52257,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1472 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52085,10 +52273,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1473 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52101,10 +52289,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1474 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52117,10 +52305,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1474 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52136,10 +52324,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1473 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52155,10 +52343,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1472 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52174,10 +52362,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1471 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52193,10 +52381,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1470 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52212,10 +52400,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1469 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52231,10 +52419,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1468 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52250,10 +52438,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1467 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52269,10 +52457,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1466 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52288,10 +52476,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1465 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52307,10 +52495,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1464 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52326,10 +52514,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1463 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52345,10 +52533,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1462 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52364,10 +52552,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1452 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52383,10 +52571,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1475 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52399,10 +52587,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1476 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52415,10 +52603,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1477 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52431,10 +52619,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1478 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52447,10 +52635,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1479 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52463,10 +52651,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1480 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52479,10 +52667,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1480 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52498,10 +52686,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1479 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52517,10 +52705,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1478 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52536,10 +52724,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1477 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52555,10 +52743,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1476 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52574,10 +52762,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1475 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52593,10 +52781,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1481 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52612,10 +52800,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1482 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52628,10 +52816,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1483 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52644,10 +52832,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1484 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52660,10 +52848,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1485 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52676,10 +52864,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1486 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52692,10 +52880,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1487 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52708,10 +52896,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1488 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52724,10 +52912,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1489 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52740,10 +52928,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1489 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52759,10 +52947,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1488 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52778,10 +52966,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1487 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52797,10 +52985,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1486 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52816,10 +53004,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1485 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52835,10 +53023,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1484 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52854,10 +53042,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1483 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52873,10 +53061,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1482 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52892,10 +53080,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1490 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52908,10 +53096,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1491 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52924,10 +53112,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1492 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52940,10 +53128,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1493 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52956,10 +53144,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1494 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52972,10 +53160,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1495 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -52988,10 +53176,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1496 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53004,10 +53192,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1497 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53020,10 +53208,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1498 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53036,10 +53224,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1499 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53052,10 +53240,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1500 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53068,10 +53256,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1500 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53087,10 +53275,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1499 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53106,10 +53294,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1498 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53125,10 +53313,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1497 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53144,10 +53332,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1496 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53163,10 +53351,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1495 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53182,10 +53370,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1494 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53201,10 +53389,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1493 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53220,10 +53408,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1492 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53239,10 +53427,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1491 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53258,10 +53446,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1490 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53277,10 +53465,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1481 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53296,10 +53484,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1501 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53312,10 +53500,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1502 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53328,10 +53516,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1503 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53344,10 +53532,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1504 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53360,10 +53548,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1505 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53376,10 +53564,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1506 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53392,10 +53580,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1506 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53411,10 +53599,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1505 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53430,10 +53618,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1504 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53449,10 +53637,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1503 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53468,10 +53656,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1502 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53487,10 +53675,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1501 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53506,10 +53694,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1507 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53525,10 +53713,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1508 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53541,10 +53729,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1508 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53560,10 +53748,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1509 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53576,10 +53764,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1510 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53592,10 +53780,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1511 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53608,10 +53796,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1511 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53627,10 +53815,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1510 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53646,10 +53834,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1509 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53665,10 +53853,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1507 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53684,10 +53872,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1512 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53700,10 +53888,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1513 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53716,10 +53904,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1514 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53732,10 +53920,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1515 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53748,10 +53936,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1516 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53764,10 +53952,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1517 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53780,10 +53968,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1517 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53799,10 +53987,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1516 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53818,10 +54006,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1515 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53837,10 +54025,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1514 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53856,10 +54044,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1513 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53875,10 +54063,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1512 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53894,10 +54082,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1518 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53913,10 +54101,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1519 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53929,10 +54117,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1520 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53945,10 +54133,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1521 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53961,10 +54149,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1522 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53977,10 +54165,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1523 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -53993,10 +54181,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1524 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54009,10 +54197,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1525 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54025,10 +54213,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1526 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54041,10 +54229,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1527 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54057,10 +54245,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1528 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54073,10 +54261,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1529 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54089,10 +54277,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1530 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54105,10 +54293,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1530 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54124,10 +54312,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1529 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54143,10 +54331,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1528 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54162,10 +54350,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1527 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54181,10 +54369,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1526 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54200,10 +54388,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1525 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54219,10 +54407,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1524 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54238,10 +54426,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1523 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54257,10 +54445,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1522 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54276,10 +54464,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1521 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54295,10 +54483,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1520 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54314,10 +54502,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1519 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54333,10 +54521,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1531 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54349,10 +54537,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1531 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54368,10 +54556,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 1532 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 -1 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54387,10 +54575,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 1532 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54406,10 +54594,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1518 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54425,10 +54613,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1533 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54441,10 +54629,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1534 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54457,10 +54645,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1535 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54473,10 +54661,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1536 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54489,10 +54677,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1537 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54505,10 +54693,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1538 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54521,10 +54709,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1538 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54540,10 +54728,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1537 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54559,10 +54747,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1536 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54578,10 +54766,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1535 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54597,10 +54785,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1534 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54616,10 +54804,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1533 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54635,10 +54823,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1539 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54654,10 +54842,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1540 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54670,10 +54858,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1541 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54686,10 +54874,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1542 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54702,10 +54890,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1543 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54718,10 +54906,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1544 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54734,10 +54922,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1545 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54750,10 +54938,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1546 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54766,10 +54954,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1547 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54782,10 +54970,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1548 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54798,10 +54986,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1549 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54814,10 +55002,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1550 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54830,10 +55018,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1551 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54846,10 +55034,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1551 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54865,10 +55053,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1550 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54884,10 +55072,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1549 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54903,10 +55091,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1548 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54922,10 +55110,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1547 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54941,10 +55129,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1546 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54960,10 +55148,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1545 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54979,10 +55167,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1544 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -54998,10 +55186,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1543 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55017,10 +55205,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1542 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55036,10 +55224,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1541 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55055,10 +55243,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1540 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55074,10 +55262,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1552 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55090,10 +55278,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1553 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55106,10 +55294,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1554 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55122,10 +55310,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1555 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55138,10 +55326,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1556 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55154,10 +55342,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1557 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55170,10 +55358,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1558 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55186,10 +55374,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1559 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55202,10 +55390,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1560 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55218,10 +55406,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1561 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55234,10 +55422,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1561 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55253,10 +55441,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1560 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55272,10 +55460,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1559 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55291,10 +55479,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1558 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55310,10 +55498,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1557 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55329,10 +55517,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1556 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55348,10 +55536,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1555 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55367,10 +55555,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1554 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55386,10 +55574,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1553 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55405,10 +55593,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1552 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55424,10 +55612,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1539 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55443,10 +55631,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1562 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55459,10 +55647,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1563 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55475,10 +55663,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1564 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55491,10 +55679,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1565 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55507,10 +55695,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1566 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55523,10 +55711,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1567 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55539,10 +55727,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1567 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55558,10 +55746,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1566 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55577,10 +55765,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1565 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55596,10 +55784,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1564 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55615,10 +55803,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1563 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55634,10 +55822,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1562 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55653,10 +55841,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1568 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55672,10 +55860,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1569 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55688,10 +55876,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1570 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55704,10 +55892,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1571 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55720,10 +55908,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1572 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55736,10 +55924,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1573 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55752,10 +55940,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1574 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55768,10 +55956,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1575 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55784,10 +55972,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1576 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55800,10 +55988,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1577 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55816,10 +56004,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1578 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55832,10 +56020,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1579 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55848,10 +56036,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1580 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55864,10 +56052,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1581 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55880,10 +56068,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1582 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55896,10 +56084,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1582 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55915,10 +56103,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1581 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55934,10 +56122,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1580 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55953,10 +56141,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1579 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55972,10 +56160,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1578 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -55991,10 +56179,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1577 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56010,10 +56198,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1576 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56029,10 +56217,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1575 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56048,10 +56236,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1574 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56067,10 +56255,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1573 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56086,10 +56274,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1572 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56105,10 +56293,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1571 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56124,10 +56312,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1570 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56143,10 +56331,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1569 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56162,10 +56350,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1583 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56178,10 +56366,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1584 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56194,10 +56382,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1585 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56210,10 +56398,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1586 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56226,10 +56414,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1587 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56242,10 +56430,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1588 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56258,10 +56446,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1589 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56274,10 +56462,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1590 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56290,10 +56478,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1591 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56306,10 +56494,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1592 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56322,10 +56510,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1592 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56341,10 +56529,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1591 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56360,10 +56548,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1590 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56379,10 +56567,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1589 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56398,10 +56586,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1588 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56417,10 +56605,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1587 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56436,10 +56624,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1586 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56455,10 +56643,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1585 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56474,10 +56662,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1584 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56493,10 +56681,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1583 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56512,10 +56700,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1568 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56531,10 +56719,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1593 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56547,10 +56735,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1594 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56563,10 +56751,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1595 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56579,10 +56767,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1596 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56595,10 +56783,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1597 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56611,10 +56799,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1598 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56627,10 +56815,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1598 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56646,10 +56834,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1597 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56665,10 +56853,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1596 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56684,10 +56872,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1595 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56703,10 +56891,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1594 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56722,10 +56910,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1593 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56741,10 +56929,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1599 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56760,10 +56948,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1600 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56776,10 +56964,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1600 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56795,10 +56983,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1601 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56811,10 +56999,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1602 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56827,10 +57015,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1603 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56843,10 +57031,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1604 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56859,10 +57047,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1605 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56875,10 +57063,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1606 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56891,10 +57079,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1607 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56907,10 +57095,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1608 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56923,10 +57111,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1609 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56939,10 +57127,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1610 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56955,10 +57143,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1611 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56971,10 +57159,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1612 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -56987,10 +57175,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1613 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57003,10 +57191,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1613 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57022,10 +57210,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1612 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57041,10 +57229,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1611 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57060,10 +57248,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1610 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57079,10 +57267,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1609 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57098,10 +57286,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1608 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57117,10 +57305,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1607 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57136,10 +57324,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1606 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57155,10 +57343,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1605 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57174,10 +57362,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1604 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57193,10 +57381,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1603 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57212,10 +57400,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1602 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57231,10 +57419,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1601 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57250,10 +57438,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 1614 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 -1 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57269,10 +57457,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 1614 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57288,10 +57476,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1599 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57307,10 +57495,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1615 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57323,10 +57511,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1616 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57339,10 +57527,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1617 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57355,10 +57543,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1618 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57371,10 +57559,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1619 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57387,10 +57575,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1620 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57403,10 +57591,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1621 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57419,10 +57607,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1621 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57438,10 +57626,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1620 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57457,10 +57645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1619 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57476,10 +57664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1618 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57495,10 +57683,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1617 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57514,10 +57702,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1616 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57533,10 +57721,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1615 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57552,10 +57740,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1622 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57571,10 +57759,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1623 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57587,10 +57775,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1624 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57603,10 +57791,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1625 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57619,10 +57807,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1626 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57635,10 +57823,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1627 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57651,10 +57839,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1628 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57667,10 +57855,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1629 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57683,10 +57871,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1630 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57699,10 +57887,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1631 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57715,10 +57903,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1632 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57731,10 +57919,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1632 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57750,10 +57938,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1631 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57769,10 +57957,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1630 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57788,10 +57976,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1629 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57807,10 +57995,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1628 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57826,10 +58014,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1627 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57845,10 +58033,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1626 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57864,10 +58052,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1625 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57883,10 +58071,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1624 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57902,10 +58090,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1623 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57921,10 +58109,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1633 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57937,10 +58125,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1634 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57953,10 +58141,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1635 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57969,10 +58157,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1635 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -57988,10 +58176,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1634 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58007,10 +58195,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1633 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58026,10 +58214,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1622 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58045,10 +58233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1636 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58061,10 +58249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1637 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58077,10 +58265,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1638 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58093,10 +58281,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1639 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58109,10 +58297,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1640 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58125,10 +58313,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1641 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58141,10 +58329,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1642 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58157,10 +58345,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1642 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58176,10 +58364,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1641 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58195,10 +58383,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1640 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58214,10 +58402,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1639 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58233,10 +58421,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1638 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58252,10 +58440,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1637 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58271,10 +58459,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1636 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58290,10 +58478,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1643 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58309,10 +58497,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1644 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58325,10 +58513,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1645 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58341,10 +58529,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1646 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58357,10 +58545,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1647 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58373,10 +58561,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1648 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58389,10 +58577,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1649 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58405,10 +58593,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1650 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58421,10 +58609,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1651 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58437,10 +58625,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1652 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58453,10 +58641,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1652 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58472,10 +58660,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1651 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58491,10 +58679,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1650 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58510,10 +58698,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1649 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58529,10 +58717,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1648 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58548,10 +58736,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1647 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58567,10 +58755,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1646 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58586,10 +58774,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1645 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58605,10 +58793,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1644 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58624,10 +58812,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1653 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58640,10 +58828,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1654 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58656,10 +58844,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1655 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58672,10 +58860,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1656 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58688,10 +58876,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1657 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58704,10 +58892,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1658 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58720,10 +58908,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1659 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58736,10 +58924,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1660 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58752,10 +58940,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1661 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58768,10 +58956,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1662 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58784,10 +58972,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1663 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58800,10 +58988,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1663 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58819,10 +59007,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1662 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58838,10 +59026,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1661 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58857,10 +59045,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1660 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58876,10 +59064,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1659 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58895,10 +59083,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1658 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58914,10 +59102,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1657 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58933,10 +59121,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1656 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58952,10 +59140,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1655 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58971,10 +59159,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1654 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -58990,10 +59178,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1653 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59009,10 +59197,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1643 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59028,10 +59216,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1664 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59044,10 +59232,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1665 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59060,10 +59248,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1666 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59076,10 +59264,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1667 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59092,10 +59280,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1668 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59108,10 +59296,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1669 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59124,10 +59312,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1670 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59140,10 +59328,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1670 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59159,10 +59347,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1669 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59178,10 +59366,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1668 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59197,10 +59385,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1667 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59216,10 +59404,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1666 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59235,10 +59423,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1665 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59254,10 +59442,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1664 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59273,10 +59461,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1671 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59292,10 +59480,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1672 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59308,10 +59496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1673 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59324,10 +59512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1674 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59340,10 +59528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1675 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59356,10 +59544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1676 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59372,10 +59560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1677 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59388,10 +59576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1678 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59404,10 +59592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1679 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59420,10 +59608,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1680 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59436,10 +59624,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1681 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59452,10 +59640,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1682 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59468,10 +59656,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1682 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59487,10 +59675,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1681 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59506,10 +59694,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1680 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59525,10 +59713,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1679 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59544,10 +59732,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1678 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59563,10 +59751,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1677 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59582,10 +59770,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1676 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59601,10 +59789,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1675 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59620,10 +59808,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1674 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59639,10 +59827,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1673 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59658,10 +59846,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1672 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59677,10 +59865,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1683 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59693,10 +59881,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1684 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59709,10 +59897,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1685 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59725,10 +59913,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1686 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59741,10 +59929,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1687 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59757,10 +59945,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1688 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59773,10 +59961,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1689 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59789,10 +59977,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1690 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59805,10 +59993,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1691 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59821,10 +60009,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1692 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59837,10 +60025,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1693 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59853,10 +60041,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1694 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59869,10 +60057,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1695 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59885,10 +60073,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1696 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59901,10 +60089,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1697 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59917,10 +60105,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1698 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59933,10 +60121,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1699 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59949,10 +60137,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1699 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59968,10 +60156,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1698 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -59987,10 +60175,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1697 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60006,10 +60194,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1696 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60025,10 +60213,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1695 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60044,10 +60232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1694 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60063,10 +60251,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1693 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60082,10 +60270,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1692 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60101,10 +60289,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1691 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60120,10 +60308,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1690 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60139,10 +60327,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1689 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60158,10 +60346,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1688 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60177,10 +60365,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1687 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60196,10 +60384,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1686 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60215,10 +60403,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1685 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60234,10 +60422,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1684 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60253,10 +60441,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1683 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60272,10 +60460,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1671 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60291,10 +60479,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1700 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60307,10 +60495,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1701 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60323,10 +60511,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1702 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60339,10 +60527,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1703 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60355,10 +60543,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1704 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60371,10 +60559,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1705 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60387,10 +60575,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1706 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60403,10 +60591,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1706 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60422,10 +60610,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1705 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60441,10 +60629,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1704 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60460,10 +60648,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1703 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60479,10 +60667,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1702 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60498,10 +60686,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1701 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60517,10 +60705,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1700 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60536,10 +60724,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1707 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60555,10 +60743,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1708 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60571,10 +60759,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1709 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60587,10 +60775,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1710 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60603,10 +60791,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1711 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60619,10 +60807,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1712 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60635,10 +60823,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1713 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60651,10 +60839,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1714 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60667,10 +60855,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1715 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60683,10 +60871,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1716 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60699,10 +60887,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1717 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60715,10 +60903,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1718 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60731,10 +60919,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1719 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60747,10 +60935,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1720 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60763,10 +60951,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1721 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60779,10 +60967,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1722 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60795,10 +60983,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1723 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60811,10 +60999,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1723 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60830,10 +61018,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1722 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60849,10 +61037,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1721 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60868,10 +61056,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1720 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60887,10 +61075,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1719 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60906,10 +61094,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1718 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60925,10 +61113,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1717 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60944,10 +61132,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1716 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60963,10 +61151,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1715 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -60982,10 +61170,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1714 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61001,10 +61189,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1713 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61020,10 +61208,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1712 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61039,10 +61227,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1711 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61058,10 +61246,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1710 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61077,10 +61265,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1709 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61096,10 +61284,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1708 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61115,10 +61303,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1724 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61131,10 +61319,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1725 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61147,10 +61335,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1726 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61163,10 +61351,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1727 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61179,10 +61367,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1728 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61195,10 +61383,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1729 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61211,10 +61399,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1730 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61227,10 +61415,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1731 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61243,10 +61431,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1732 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61259,10 +61447,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1732 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61278,10 +61466,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1731 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61297,10 +61485,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1730 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61316,10 +61504,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1729 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61335,10 +61523,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1728 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61354,10 +61542,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1727 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61373,10 +61561,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1726 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61392,10 +61580,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1725 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61411,10 +61599,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1724 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61430,10 +61618,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1707 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61449,10 +61637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1733 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61465,10 +61653,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1734 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61481,10 +61669,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1735 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61497,10 +61685,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1736 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61513,10 +61701,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1737 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61529,10 +61717,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1738 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61545,10 +61733,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1739 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61561,10 +61749,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1739 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61580,10 +61768,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1738 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61599,10 +61787,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1737 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61618,10 +61806,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1736 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61637,10 +61825,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1735 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61656,10 +61844,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1734 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61675,10 +61863,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1733 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61694,10 +61882,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1740 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61713,10 +61901,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1741 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61729,10 +61917,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1742 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61745,10 +61933,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1743 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61761,10 +61949,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1744 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61777,10 +61965,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1745 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61793,10 +61981,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1746 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61809,10 +61997,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1747 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61825,10 +62013,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1748 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61841,10 +62029,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1749 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61857,10 +62045,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1750 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61873,10 +62061,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1751 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61889,10 +62077,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1752 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61905,10 +62093,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1753 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61921,10 +62109,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1753 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61940,10 +62128,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1752 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61959,10 +62147,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1751 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61978,10 +62166,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1750 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -61997,10 +62185,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1749 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62016,10 +62204,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1748 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62035,10 +62223,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1747 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62054,10 +62242,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1746 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62073,10 +62261,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1745 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62092,10 +62280,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1744 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62111,10 +62299,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1743 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62130,10 +62318,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1742 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62149,10 +62337,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1741 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62168,10 +62356,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1754 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62184,10 +62372,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1755 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62200,10 +62388,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1756 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62216,10 +62404,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1757 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62232,10 +62420,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1758 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62248,10 +62436,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1759 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62264,10 +62452,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1760 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62280,10 +62468,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1761 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62296,10 +62484,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1762 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62312,10 +62500,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1763 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62328,10 +62516,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1764 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62344,10 +62532,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1765 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62360,10 +62548,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1766 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62376,10 +62564,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1767 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62392,10 +62580,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1767 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62411,10 +62599,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1766 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62430,10 +62618,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1765 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62449,10 +62637,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1764 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62468,10 +62656,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1763 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62487,10 +62675,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1762 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62506,10 +62694,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1761 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62525,10 +62713,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1760 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62544,10 +62732,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1759 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62563,10 +62751,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1758 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62582,10 +62770,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1757 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62601,10 +62789,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1756 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62620,10 +62808,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1755 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62639,10 +62827,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1754 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62658,10 +62846,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1740 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62677,10 +62865,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1768 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62693,10 +62881,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1769 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62709,10 +62897,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1770 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62725,10 +62913,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1771 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62741,10 +62929,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1772 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62757,10 +62945,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1773 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62773,10 +62961,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1774 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62789,10 +62977,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1774 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62808,10 +62996,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1773 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62827,10 +63015,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1772 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62846,10 +63034,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1771 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62865,10 +63053,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1770 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62884,10 +63072,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1769 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62903,10 +63091,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1768 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62922,10 +63110,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1775 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62941,10 +63129,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1776 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62957,10 +63145,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1777 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62973,10 +63161,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1778 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -62989,10 +63177,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1779 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63005,10 +63193,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1780 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63021,10 +63209,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1781 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63037,10 +63225,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1782 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63053,10 +63241,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1783 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63069,10 +63257,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1784 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63085,10 +63273,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1785 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63101,10 +63289,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1786 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63117,10 +63305,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1787 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63133,10 +63321,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1788 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63149,10 +63337,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1789 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63165,10 +63353,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1790 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63181,10 +63369,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1791 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63197,10 +63385,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1792 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63213,10 +63401,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1792 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63232,10 +63420,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1791 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63251,10 +63439,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1790 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63270,10 +63458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1789 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63289,10 +63477,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1788 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63308,10 +63496,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1787 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63327,10 +63515,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1786 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63346,10 +63534,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1785 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63365,10 +63553,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1784 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63384,10 +63572,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1783 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63403,10 +63591,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1782 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63422,10 +63610,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1781 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63441,10 +63629,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1780 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63460,10 +63648,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1779 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63479,10 +63667,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1778 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63498,10 +63686,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1777 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63517,10 +63705,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1776 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63536,10 +63724,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1793 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63552,10 +63740,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1794 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63568,10 +63756,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1795 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63584,10 +63772,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1796 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63600,10 +63788,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1797 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63616,10 +63804,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1798 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63632,10 +63820,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1799 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63648,10 +63836,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1800 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63664,10 +63852,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1801 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63680,10 +63868,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1802 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63696,10 +63884,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1803 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63712,10 +63900,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1804 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63728,10 +63916,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1805 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63744,10 +63932,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1805 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63763,10 +63951,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1804 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63782,10 +63970,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1803 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63801,10 +63989,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1802 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63820,10 +64008,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1801 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63839,10 +64027,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1800 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63858,10 +64046,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1799 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63877,10 +64065,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1798 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63896,10 +64084,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1797 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63915,10 +64103,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1796 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63934,10 +64122,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1795 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63953,10 +64141,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1794 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63972,10 +64160,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1793 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -63991,10 +64179,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1775 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64010,10 +64198,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1806 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64026,10 +64214,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1807 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64042,10 +64230,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1808 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64058,10 +64246,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1809 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64074,10 +64262,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1810 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64090,10 +64278,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1811 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64106,10 +64294,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1812 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64122,10 +64310,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1812 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64141,10 +64329,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1811 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64160,10 +64348,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1810 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64179,10 +64367,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1809 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64198,10 +64386,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1808 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64217,10 +64405,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1807 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64236,10 +64424,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1806 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64255,10 +64443,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1813 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64274,10 +64462,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1814 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64290,10 +64478,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1815 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64306,10 +64494,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1816 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64322,10 +64510,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1817 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64338,10 +64526,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1818 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64354,10 +64542,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1819 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64370,10 +64558,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1820 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64386,10 +64574,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1821 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64402,10 +64590,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1822 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64418,10 +64606,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1823 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64434,10 +64622,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1824 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64450,10 +64638,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1824 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64469,10 +64657,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1823 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64488,10 +64676,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1822 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64507,10 +64695,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1821 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64526,10 +64714,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1820 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64545,10 +64733,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1819 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64564,10 +64752,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1818 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64583,10 +64771,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1817 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64602,10 +64790,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1816 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64621,10 +64809,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1815 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64640,10 +64828,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1814 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64659,10 +64847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1825 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64675,10 +64863,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1826 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64691,10 +64879,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1827 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64707,10 +64895,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1828 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64723,10 +64911,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1829 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64739,10 +64927,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1830 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64755,10 +64943,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1831 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64771,10 +64959,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1832 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64787,10 +64975,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1833 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64803,10 +64991,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1834 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64819,10 +65007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1835 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64835,10 +65023,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1836 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64851,10 +65039,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1837 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64867,10 +65055,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1838 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64883,10 +65071,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1839 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64899,10 +65087,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1840 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64915,10 +65103,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1841 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64931,10 +65119,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1842 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64947,10 +65135,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1842 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64966,10 +65154,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1841 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -64985,10 +65173,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1840 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65004,10 +65192,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1839 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65023,10 +65211,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1838 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65042,10 +65230,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1837 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65061,10 +65249,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1836 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65080,10 +65268,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1835 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65099,10 +65287,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1834 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65118,10 +65306,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1833 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65137,10 +65325,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1832 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65156,10 +65344,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1831 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65175,10 +65363,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1830 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65194,10 +65382,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1829 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65213,10 +65401,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1828 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65232,10 +65420,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1827 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65251,10 +65439,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1826 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65270,10 +65458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1825 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65289,10 +65477,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1813 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65308,10 +65496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1843 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65324,10 +65512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1844 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65340,10 +65528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1845 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65356,10 +65544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1846 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65372,10 +65560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1847 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65388,10 +65576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1848 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65404,10 +65592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1849 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65420,10 +65608,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1849 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65439,10 +65627,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1848 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65458,10 +65646,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1847 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65477,10 +65665,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1846 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65496,10 +65684,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1845 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65515,10 +65703,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1844 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65534,10 +65722,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1843 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65553,10 +65741,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1850 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65572,10 +65760,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1851 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65588,10 +65776,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1852 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65604,10 +65792,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1853 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65620,10 +65808,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1854 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65636,10 +65824,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1855 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65652,10 +65840,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1856 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65668,10 +65856,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1857 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65684,10 +65872,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1858 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65700,10 +65888,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1859 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65716,10 +65904,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1860 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65732,10 +65920,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1861 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65748,10 +65936,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1862 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65764,10 +65952,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1863 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65780,10 +65968,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1863 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65799,10 +65987,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1862 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65818,10 +66006,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1861 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65837,10 +66025,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1860 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65856,10 +66044,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1859 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65875,10 +66063,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1858 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65894,10 +66082,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1857 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65913,10 +66101,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1856 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65932,10 +66120,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1855 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65951,10 +66139,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1854 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65970,10 +66158,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1853 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -65989,10 +66177,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1852 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66008,10 +66196,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1851 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66027,10 +66215,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1864 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66043,10 +66231,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1865 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66059,10 +66247,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1866 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66075,10 +66263,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1867 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66091,10 +66279,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1868 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66107,10 +66295,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1869 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66123,10 +66311,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1870 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66139,10 +66327,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1871 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66155,10 +66343,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1872 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66171,10 +66359,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1872 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66190,10 +66378,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1871 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66209,10 +66397,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1870 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66228,10 +66416,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1869 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66247,10 +66435,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1868 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66266,10 +66454,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1867 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66285,10 +66473,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1866 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66304,10 +66492,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1865 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66323,10 +66511,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1864 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66342,10 +66530,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1850 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66361,10 +66549,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1873 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66377,10 +66565,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1874 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66393,10 +66581,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1875 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66409,10 +66597,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1876 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66425,10 +66613,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1877 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66441,10 +66629,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1878 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66457,10 +66645,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1879 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66473,10 +66661,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1879 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66492,10 +66680,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1878 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66511,10 +66699,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1877 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66530,10 +66718,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1876 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66549,10 +66737,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1875 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66568,10 +66756,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1874 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66587,10 +66775,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1873 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66606,10 +66794,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1880 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66625,10 +66813,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1881 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66641,10 +66829,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1882 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66657,10 +66845,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1883 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66673,10 +66861,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1884 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66689,10 +66877,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1885 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66705,10 +66893,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1886 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66721,10 +66909,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1887 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66737,10 +66925,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1888 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66753,10 +66941,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1889 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66769,10 +66957,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1890 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66785,10 +66973,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1891 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66801,10 +66989,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1892 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66817,10 +67005,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1892 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66836,10 +67024,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1891 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66855,10 +67043,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1890 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66874,10 +67062,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1889 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66893,10 +67081,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1888 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66912,10 +67100,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1887 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66931,10 +67119,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1886 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66950,10 +67138,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1885 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66969,10 +67157,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1884 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -66988,10 +67176,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1883 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67007,10 +67195,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1882 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67026,10 +67214,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1881 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67045,10 +67233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1893 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67061,10 +67249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1894 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67077,10 +67265,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1895 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67093,10 +67281,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1896 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67109,10 +67297,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1897 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67125,10 +67313,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1898 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67141,10 +67329,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1899 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67157,10 +67345,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1900 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67173,10 +67361,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1901 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67189,10 +67377,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1902 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67205,10 +67393,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1903 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67221,10 +67409,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1904 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67237,10 +67425,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1905 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67253,10 +67441,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1906 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67269,10 +67457,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1907 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67285,10 +67473,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1907 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67304,10 +67492,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1906 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67323,10 +67511,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1905 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67342,10 +67530,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1904 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67361,10 +67549,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1903 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67380,10 +67568,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1902 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67399,10 +67587,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1901 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67418,10 +67606,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1900 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67437,10 +67625,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1899 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67456,10 +67644,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1898 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67475,10 +67663,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1897 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67494,10 +67682,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1896 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67513,10 +67701,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1895 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67532,10 +67720,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1894 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67551,10 +67739,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1893 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67570,10 +67758,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1880 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67589,10 +67777,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1908 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67605,10 +67793,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1909 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67621,10 +67809,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1910 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67637,10 +67825,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1911 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67653,10 +67841,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1912 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67669,10 +67857,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1913 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67685,10 +67873,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1914 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67701,10 +67889,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1914 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67720,10 +67908,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1913 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67739,10 +67927,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1912 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67758,10 +67946,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1911 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67777,10 +67965,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1910 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67796,10 +67984,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1909 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67815,10 +68003,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1908 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67834,10 +68022,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1915 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67853,10 +68041,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1916 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67869,10 +68057,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1917 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67885,10 +68073,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1918 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67901,10 +68089,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1919 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67917,10 +68105,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1920 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67933,10 +68121,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1921 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67949,10 +68137,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1922 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67965,10 +68153,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1923 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67981,10 +68169,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1924 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -67997,10 +68185,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1925 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68013,10 +68201,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1926 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68029,10 +68217,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1927 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68045,10 +68233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1928 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68061,10 +68249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1929 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68077,10 +68265,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1930 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68093,10 +68281,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1931 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68109,10 +68297,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1932 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68125,10 +68313,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1933 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68141,10 +68329,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1934 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68157,10 +68345,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1934 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68176,10 +68364,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1933 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68195,10 +68383,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1932 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68214,10 +68402,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1931 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68233,10 +68421,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1930 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68252,10 +68440,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1929 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68271,10 +68459,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1928 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68290,10 +68478,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1927 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68309,10 +68497,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1926 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68328,10 +68516,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1925 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68347,10 +68535,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1924 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68366,10 +68554,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1923 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68385,10 +68573,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1922 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68404,10 +68592,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1921 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68423,10 +68611,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1920 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68442,10 +68630,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1919 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68461,10 +68649,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1918 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68480,10 +68668,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1917 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68499,10 +68687,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1916 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68518,10 +68706,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1935 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68534,10 +68722,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1936 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68550,10 +68738,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1937 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68566,10 +68754,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1938 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68582,10 +68770,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1939 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68598,10 +68786,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1939 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68617,10 +68805,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1938 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68636,10 +68824,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1937 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68655,10 +68843,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1936 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68674,10 +68862,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1935 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68693,10 +68881,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1915 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68712,10 +68900,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1940 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68728,10 +68916,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1941 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68744,10 +68932,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1942 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68760,10 +68948,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1943 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68776,10 +68964,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1944 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68792,10 +68980,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1945 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68808,10 +68996,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1946 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68824,10 +69012,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1946 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68843,10 +69031,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1945 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68862,10 +69050,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1944 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68881,10 +69069,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1943 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68900,10 +69088,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1942 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68919,10 +69107,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1941 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68938,10 +69126,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1940 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68957,10 +69145,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1947 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68976,10 +69164,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1948 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -68992,10 +69180,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1949 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69008,10 +69196,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1950 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69024,10 +69212,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1951 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69040,10 +69228,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1952 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69056,10 +69244,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1953 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69072,10 +69260,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1954 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69088,10 +69276,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1955 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69104,10 +69292,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1956 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69120,10 +69308,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1957 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69136,10 +69324,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1958 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69152,10 +69340,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1959 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69168,10 +69356,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1960 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69184,10 +69372,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1961 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69200,10 +69388,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1962 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69216,10 +69404,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1963 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69232,10 +69420,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1964 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69248,10 +69436,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1964 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69267,10 +69455,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1963 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69286,10 +69474,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1962 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69305,10 +69493,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1961 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69324,10 +69512,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1960 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69343,10 +69531,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1959 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69362,10 +69550,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1958 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69381,10 +69569,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1957 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69400,10 +69588,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1956 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69419,10 +69607,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1955 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69438,10 +69626,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1954 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69457,10 +69645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1953 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69476,10 +69664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1952 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69495,10 +69683,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1951 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69514,10 +69702,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1950 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69533,10 +69721,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1949 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69552,10 +69740,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1948 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69571,10 +69759,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1965 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69587,10 +69775,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1966 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69603,10 +69791,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1967 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69619,10 +69807,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1968 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69635,10 +69823,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1969 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69651,10 +69839,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1970 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69667,10 +69855,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1970 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69686,10 +69874,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1969 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69705,10 +69893,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1968 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69724,10 +69912,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1967 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69743,10 +69931,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1966 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69762,10 +69950,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1965 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69781,10 +69969,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1947 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69800,10 +69988,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1971 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69816,10 +70004,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1972 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69832,10 +70020,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1973 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69848,10 +70036,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1974 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69864,10 +70052,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1975 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69880,10 +70068,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1976 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69896,10 +70084,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1977 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69912,10 +70100,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1977 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69931,10 +70119,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1976 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69950,10 +70138,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1975 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69969,10 +70157,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1974 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -69988,10 +70176,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1973 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70007,10 +70195,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1972 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70026,10 +70214,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1971 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70045,10 +70233,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 1978 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70064,10 +70252,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1979 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70080,10 +70268,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1980 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70096,10 +70284,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1981 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70112,10 +70300,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1982 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70128,10 +70316,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1983 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70144,10 +70332,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1984 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70160,10 +70348,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1985 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70176,10 +70364,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1986 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70192,10 +70380,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1987 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70208,10 +70396,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1988 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70224,10 +70412,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1989 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70240,10 +70428,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1990 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70256,10 +70444,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1991 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70272,10 +70460,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1992 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70288,10 +70476,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1993 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70304,10 +70492,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1994 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70320,10 +70508,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1995 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70336,10 +70524,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 1995 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70355,10 +70543,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1994 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70374,10 +70562,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1993 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70393,10 +70581,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1992 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70412,10 +70600,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1991 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70431,10 +70619,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1990 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70450,10 +70638,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1989 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70469,10 +70657,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1988 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70488,10 +70676,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1987 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70507,10 +70695,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1986 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70526,10 +70714,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1985 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70545,10 +70733,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1984 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70564,10 +70752,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1983 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70583,10 +70771,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1982 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70602,10 +70790,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1981 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70621,10 +70809,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1980 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70640,10 +70828,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1979 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70659,10 +70847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1996 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70675,10 +70863,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1997 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70691,10 +70879,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1998 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70707,10 +70895,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 1999 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70723,10 +70911,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2000 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70739,10 +70927,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2001 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70755,10 +70943,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2002 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70771,10 +70959,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2003 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70787,10 +70975,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2004 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70803,10 +70991,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2005 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70819,10 +71007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2006 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70835,10 +71023,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2007 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70851,10 +71039,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2008 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70867,10 +71055,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2009 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70883,10 +71071,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2010 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70899,10 +71087,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2011 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70915,10 +71103,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2012 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70931,10 +71119,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2013 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70947,10 +71135,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2013 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70966,10 +71154,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2012 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -70985,10 +71173,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2011 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71004,10 +71192,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2010 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71023,10 +71211,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2009 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71042,10 +71230,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2008 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71061,10 +71249,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2007 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71080,10 +71268,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2006 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71099,10 +71287,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2005 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71118,10 +71306,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2004 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71137,10 +71325,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2003 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71156,10 +71344,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2002 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71175,10 +71363,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2001 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71194,10 +71382,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2000 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71213,10 +71401,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1999 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71232,10 +71420,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1998 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71251,10 +71439,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1997 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71270,10 +71458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 1996 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71289,10 +71477,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 1978 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71308,10 +71496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2014 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71324,10 +71512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2015 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71340,10 +71528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2016 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71356,10 +71544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2017 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71372,10 +71560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2018 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71388,10 +71576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2019 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71404,10 +71592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2020 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71420,10 +71608,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2020 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71439,10 +71627,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2019 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71458,10 +71646,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2018 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71477,10 +71665,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2017 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71496,10 +71684,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2016 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71515,10 +71703,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2015 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71534,10 +71722,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2014 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71553,10 +71741,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2021 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71572,10 +71760,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2022 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71588,10 +71776,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2023 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71604,10 +71792,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2024 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71620,10 +71808,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2025 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71636,10 +71824,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2026 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71652,10 +71840,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2027 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71668,10 +71856,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2028 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71684,10 +71872,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2029 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71700,10 +71888,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2030 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71716,10 +71904,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2031 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71732,10 +71920,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2032 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71748,10 +71936,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2033 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71764,10 +71952,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2034 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71780,10 +71968,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2035 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71796,10 +71984,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2036 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71812,10 +72000,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2037 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71828,10 +72016,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2038 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71844,10 +72032,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2039 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71860,10 +72048,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2040 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71876,10 +72064,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2040 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71895,10 +72083,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2039 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71914,10 +72102,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2038 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71933,10 +72121,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2037 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71952,10 +72140,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2036 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71971,10 +72159,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2035 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -71990,10 +72178,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2034 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72009,10 +72197,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2033 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72028,10 +72216,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2032 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72047,10 +72235,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2031 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72066,10 +72254,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2030 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72085,10 +72273,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2029 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72104,10 +72292,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2028 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72123,10 +72311,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2027 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72142,10 +72330,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2026 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72161,10 +72349,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2025 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72180,10 +72368,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2024 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72199,10 +72387,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2023 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72218,10 +72406,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2022 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72237,10 +72425,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2041 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72253,10 +72441,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2042 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72269,10 +72457,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2043 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72285,10 +72473,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2044 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72301,10 +72489,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2045 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72317,10 +72505,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2046 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72333,10 +72521,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2047 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72349,10 +72537,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2048 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72365,10 +72553,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2049 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72381,10 +72569,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2050 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72397,10 +72585,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2051 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72413,10 +72601,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2052 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72429,10 +72617,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2053 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72445,10 +72633,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2054 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72461,10 +72649,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2055 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72477,10 +72665,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2056 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72493,10 +72681,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2057 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72509,10 +72697,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2058 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72525,10 +72713,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2059 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72541,10 +72729,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2059 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72560,10 +72748,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2058 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72579,10 +72767,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2057 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72598,10 +72786,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2056 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72617,10 +72805,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2055 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72636,10 +72824,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2054 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72655,10 +72843,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2053 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72674,10 +72862,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2052 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72693,10 +72881,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2051 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72712,10 +72900,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2050 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72731,10 +72919,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2049 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72750,10 +72938,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2048 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72769,10 +72957,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2047 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72788,10 +72976,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2046 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72807,10 +72995,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2045 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72826,10 +73014,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2044 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72845,10 +73033,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2043 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72864,10 +73052,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2042 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72883,10 +73071,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2041 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72902,10 +73090,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2021 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72921,10 +73109,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2060 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72937,10 +73125,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2061 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72953,10 +73141,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2062 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72969,10 +73157,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2063 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -72985,10 +73173,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2064 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73001,10 +73189,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2065 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73017,10 +73205,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2066 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73033,10 +73221,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2066 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73052,10 +73240,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2065 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73071,10 +73259,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2064 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73090,10 +73278,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2063 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73109,10 +73297,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2062 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73128,10 +73316,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2061 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73147,10 +73335,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2060 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73166,10 +73354,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2067 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73185,10 +73373,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2068 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73201,10 +73389,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2069 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73217,10 +73405,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2070 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73233,10 +73421,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2071 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73249,10 +73437,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2071 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73268,10 +73456,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2070 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73287,10 +73475,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2069 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73306,10 +73494,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2068 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73325,10 +73513,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2072 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73341,10 +73529,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2073 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73357,10 +73545,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2074 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73373,10 +73561,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2075 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73389,10 +73577,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2076 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73405,10 +73593,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2077 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73421,10 +73609,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2078 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73437,10 +73625,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2078 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73456,10 +73644,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2077 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73475,10 +73663,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2076 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73494,10 +73682,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2075 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73513,10 +73701,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2074 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73532,10 +73720,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2073 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73551,10 +73739,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2072 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73570,10 +73758,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2067 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73589,10 +73777,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2079 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73605,10 +73793,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2080 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73621,10 +73809,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2081 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73637,10 +73825,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2082 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73653,10 +73841,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2083 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73669,10 +73857,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2084 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73685,10 +73873,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2085 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73701,10 +73889,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2085 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73720,10 +73908,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2084 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73739,10 +73927,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2083 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73758,10 +73946,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2082 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73777,10 +73965,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2081 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73796,10 +73984,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2080 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73815,10 +74003,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2079 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73834,10 +74022,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2086 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73853,10 +74041,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2087 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73869,10 +74057,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2088 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73885,10 +74073,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2089 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73901,10 +74089,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2090 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73917,10 +74105,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2091 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73933,10 +74121,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2092 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73949,10 +74137,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2093 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73965,10 +74153,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2094 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73981,10 +74169,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2095 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -73997,10 +74185,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2096 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74013,10 +74201,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2096 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74032,10 +74220,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2095 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74051,10 +74239,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2094 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74070,10 +74258,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2093 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74089,10 +74277,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2092 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74108,10 +74296,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2091 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74127,10 +74315,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2090 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74146,10 +74334,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2089 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74165,10 +74353,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2088 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74184,10 +74372,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2087 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74203,10 +74391,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2097 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74219,10 +74407,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2098 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74235,10 +74423,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2099 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74251,10 +74439,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2100 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74267,10 +74455,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2101 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74283,10 +74471,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2102 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74299,10 +74487,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2103 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74315,10 +74503,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2104 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74331,10 +74519,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2105 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74347,10 +74535,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2106 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74363,10 +74551,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2107 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74379,10 +74567,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2108 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74395,10 +74583,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2109 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74411,10 +74599,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2110 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74427,10 +74615,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2110 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74446,10 +74634,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2109 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74465,10 +74653,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2108 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74484,10 +74672,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2107 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74503,10 +74691,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2106 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74522,10 +74710,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2105 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74541,10 +74729,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2104 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74560,10 +74748,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2103 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74579,10 +74767,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2102 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74598,10 +74786,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2101 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74617,10 +74805,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2100 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74636,10 +74824,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2099 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74655,10 +74843,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2098 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74674,10 +74862,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2097 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74693,10 +74881,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2086 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74712,10 +74900,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2111 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74728,10 +74916,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2112 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74744,10 +74932,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2113 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74760,10 +74948,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2114 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74776,10 +74964,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2115 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74792,10 +74980,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2116 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74808,10 +74996,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2117 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74824,10 +75012,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2117 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74843,10 +75031,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2116 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74862,10 +75050,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2115 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74881,10 +75069,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2114 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74900,10 +75088,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2113 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74919,10 +75107,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2112 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74938,10 +75126,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2111 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74957,10 +75145,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2118 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74976,10 +75164,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2119 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -74992,10 +75180,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2120 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75008,10 +75196,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2121 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75024,10 +75212,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2122 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75040,10 +75228,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2123 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75056,10 +75244,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2124 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75072,10 +75260,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2125 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75088,10 +75276,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2126 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75104,10 +75292,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2127 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75120,10 +75308,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2128 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75136,10 +75324,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2129 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75152,10 +75340,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2130 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75168,10 +75356,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2131 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75184,10 +75372,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2132 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75200,10 +75388,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2133 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75216,10 +75404,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2133 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75235,10 +75423,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2132 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75254,10 +75442,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2131 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75273,10 +75461,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2130 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75292,10 +75480,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2129 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75311,10 +75499,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2128 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75330,10 +75518,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2127 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75349,10 +75537,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2126 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75368,10 +75556,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2125 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75387,10 +75575,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2124 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75406,10 +75594,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2123 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75425,10 +75613,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2122 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75444,10 +75632,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2121 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75463,10 +75651,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2120 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75482,10 +75670,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2119 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75501,10 +75689,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2134 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75517,10 +75705,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2135 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75533,10 +75721,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2136 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75549,10 +75737,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2137 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75565,10 +75753,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2138 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75581,10 +75769,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2139 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75597,10 +75785,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2140 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75613,10 +75801,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2140 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75632,10 +75820,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2139 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75651,10 +75839,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2138 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75670,10 +75858,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2137 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75689,10 +75877,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2136 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75708,10 +75896,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2135 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75727,10 +75915,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2134 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75746,10 +75934,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2118 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75765,10 +75953,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2141 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75781,10 +75969,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2142 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75797,10 +75985,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2143 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75813,10 +76001,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2144 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75829,10 +76017,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2145 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75845,10 +76033,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2146 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75861,10 +76049,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2147 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75877,10 +76065,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2147 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75896,10 +76084,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2146 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75915,10 +76103,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2145 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75934,10 +76122,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2144 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75953,10 +76141,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2143 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75972,10 +76160,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2142 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -75991,10 +76179,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2141 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76010,10 +76198,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2148 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76029,10 +76217,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2149 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76045,10 +76233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2150 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76061,10 +76249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2151 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76077,10 +76265,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2152 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76093,10 +76281,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2153 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76109,10 +76297,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2154 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76125,10 +76313,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2155 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76141,10 +76329,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2156 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76157,10 +76345,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2157 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76173,10 +76361,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2158 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76189,10 +76377,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2159 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76205,10 +76393,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2160 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76221,10 +76409,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2161 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76237,10 +76425,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2162 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76253,10 +76441,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2163 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76269,10 +76457,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2164 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76285,10 +76473,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2165 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76301,10 +76489,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2166 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76317,10 +76505,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2166 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76336,10 +76524,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2165 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76355,10 +76543,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2164 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76374,10 +76562,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2163 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76393,10 +76581,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2162 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76412,10 +76600,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2161 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76431,10 +76619,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2160 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76450,10 +76638,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2159 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76469,10 +76657,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2158 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76488,10 +76676,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2157 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76507,10 +76695,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2156 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76526,10 +76714,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2155 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76545,10 +76733,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2154 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76564,10 +76752,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2153 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76583,10 +76771,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2152 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76602,10 +76790,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2151 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76621,10 +76809,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2150 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76640,10 +76828,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2149 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76659,10 +76847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2167 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76675,10 +76863,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2168 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76691,10 +76879,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2169 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76707,10 +76895,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2170 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76723,10 +76911,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2171 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76739,10 +76927,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2172 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76755,10 +76943,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2173 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76771,10 +76959,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2174 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76787,10 +76975,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2175 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76803,10 +76991,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2176 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76819,10 +77007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2177 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76835,10 +77023,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2178 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76851,10 +77039,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2179 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76867,10 +77055,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2180 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76883,10 +77071,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2181 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76899,10 +77087,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2182 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76915,10 +77103,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2183 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76931,10 +77119,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2184 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76947,10 +77135,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2184 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76966,10 +77154,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2183 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -76985,10 +77173,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2182 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77004,10 +77192,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2181 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77023,10 +77211,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2180 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77042,10 +77230,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2179 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77061,10 +77249,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2178 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77080,10 +77268,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2177 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77099,10 +77287,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2176 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77118,10 +77306,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2175 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77137,10 +77325,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2174 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77156,10 +77344,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2173 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77175,10 +77363,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2172 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77194,10 +77382,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2171 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77213,10 +77401,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2170 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77232,10 +77420,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2169 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77251,10 +77439,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2168 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77270,10 +77458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2167 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77289,10 +77477,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2148 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77308,10 +77496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2185 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77324,10 +77512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2186 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77340,10 +77528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2187 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77356,10 +77544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2188 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77372,10 +77560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2189 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77388,10 +77576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2190 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77404,10 +77592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2191 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77420,10 +77608,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2191 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77439,10 +77627,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2190 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77458,10 +77646,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2189 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77477,10 +77665,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2188 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77496,10 +77684,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2187 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77515,10 +77703,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2186 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77534,10 +77722,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2185 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77553,10 +77741,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2192 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77572,10 +77760,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2193 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77588,10 +77776,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2194 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77604,10 +77792,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2195 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77620,10 +77808,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2196 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77636,10 +77824,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2197 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77652,10 +77840,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2198 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77668,10 +77856,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2199 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77684,10 +77872,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2200 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77700,10 +77888,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2201 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77716,10 +77904,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2202 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77732,10 +77920,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2203 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77748,10 +77936,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2204 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77764,10 +77952,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2205 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77780,10 +77968,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2206 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77796,10 +77984,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2207 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77812,10 +78000,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2208 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77828,10 +78016,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2209 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77844,10 +78032,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2209 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77863,10 +78051,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2208 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77882,10 +78070,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2207 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77901,10 +78089,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2206 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77920,10 +78108,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2205 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77939,10 +78127,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2204 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77958,10 +78146,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2203 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77977,10 +78165,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2202 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -77996,10 +78184,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2201 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78015,10 +78203,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2200 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78034,10 +78222,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2199 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78053,10 +78241,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2198 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78072,10 +78260,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2197 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78091,10 +78279,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2196 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78110,10 +78298,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2195 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78129,10 +78317,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2194 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78148,10 +78336,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2193 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78167,10 +78355,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2210 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78183,10 +78371,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2211 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78199,10 +78387,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2212 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78215,10 +78403,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2213 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78231,10 +78419,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2214 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78247,10 +78435,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2215 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78263,10 +78451,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2216 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78279,10 +78467,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2217 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78295,10 +78483,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2218 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78311,10 +78499,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2219 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78327,10 +78515,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2220 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78343,10 +78531,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2220 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78362,10 +78550,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2219 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78381,10 +78569,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2218 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78400,10 +78588,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2217 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78419,10 +78607,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2216 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78438,10 +78626,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2215 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78457,10 +78645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2214 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78476,10 +78664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2213 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78495,10 +78683,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2212 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78514,10 +78702,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2211 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78533,10 +78721,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2210 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78552,10 +78740,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2192 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78571,10 +78759,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2221 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78587,10 +78775,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2222 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78603,10 +78791,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2223 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78619,10 +78807,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2224 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78635,10 +78823,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2225 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78651,10 +78839,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2226 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78667,10 +78855,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2227 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78683,10 +78871,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2227 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78702,10 +78890,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2226 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78721,10 +78909,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2225 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78740,10 +78928,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2224 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78759,10 +78947,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2223 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78778,10 +78966,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2222 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78797,10 +78985,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2221 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78816,10 +79004,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2228 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78835,10 +79023,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2229 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78851,10 +79039,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2230 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78867,10 +79055,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2231 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78883,10 +79071,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2232 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78899,10 +79087,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2233 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78915,10 +79103,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2234 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78931,10 +79119,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2234 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78950,10 +79138,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2233 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78969,10 +79157,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2232 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -78988,10 +79176,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2231 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79007,10 +79195,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2230 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79026,10 +79214,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2229 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79045,10 +79233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2235 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79061,10 +79249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2236 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79077,10 +79265,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2237 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79093,10 +79281,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2237 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79112,10 +79300,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2236 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79131,10 +79319,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2235 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79150,10 +79338,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2228 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79169,10 +79357,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2238 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79185,10 +79373,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2239 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79201,10 +79389,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2240 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79217,10 +79405,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2241 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79233,10 +79421,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2242 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79249,10 +79437,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2243 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79265,10 +79453,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2244 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79281,10 +79469,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2244 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79300,10 +79488,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2243 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79319,10 +79507,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2242 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79338,10 +79526,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2241 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79357,10 +79545,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2240 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79376,10 +79564,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2239 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79395,10 +79583,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2238 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79414,10 +79602,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2245 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79433,10 +79621,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2246 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79449,10 +79637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2247 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79465,10 +79653,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2248 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79481,10 +79669,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2249 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79497,10 +79685,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2250 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79513,10 +79701,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2251 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79529,10 +79717,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2252 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79545,10 +79733,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2253 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79561,10 +79749,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2254 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79577,10 +79765,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2255 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79593,10 +79781,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2256 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79609,10 +79797,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2257 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79625,10 +79813,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2258 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79641,10 +79829,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2259 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79657,10 +79845,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2260 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79673,10 +79861,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2261 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79689,10 +79877,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2262 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79705,10 +79893,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2263 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79721,10 +79909,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2263 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79740,10 +79928,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2262 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79759,10 +79947,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2261 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79778,10 +79966,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2260 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79797,10 +79985,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2259 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79816,10 +80004,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2258 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79835,10 +80023,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2257 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79854,10 +80042,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2256 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79873,10 +80061,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2255 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79892,10 +80080,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2254 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79911,10 +80099,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2253 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79930,10 +80118,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2252 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79949,10 +80137,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2251 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79968,10 +80156,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2250 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -79987,10 +80175,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2249 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80006,10 +80194,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2248 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80025,10 +80213,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2247 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80044,10 +80232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2246 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80063,10 +80251,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2264 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80079,10 +80267,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2265 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80095,10 +80283,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2266 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80111,10 +80299,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2267 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80127,10 +80315,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2268 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80143,10 +80331,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2269 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80159,10 +80347,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2270 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80175,10 +80363,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2270 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80194,10 +80382,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2269 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80213,10 +80401,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2268 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80232,10 +80420,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2267 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80251,10 +80439,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2266 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80270,10 +80458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2265 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80289,10 +80477,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2264 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80308,10 +80496,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2245 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80327,10 +80515,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2271 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80343,10 +80531,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2272 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80359,10 +80547,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2273 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80375,10 +80563,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2274 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80391,10 +80579,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2275 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80407,10 +80595,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2276 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80423,10 +80611,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2277 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80439,10 +80627,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2277 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80458,10 +80646,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2276 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80477,10 +80665,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2275 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80496,10 +80684,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2274 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80515,10 +80703,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2273 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80534,10 +80722,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2272 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80553,10 +80741,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2271 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80572,10 +80760,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2278 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80591,10 +80779,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2279 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80607,10 +80795,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2280 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80623,10 +80811,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2281 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80639,10 +80827,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2281 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80658,10 +80846,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2280 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80677,10 +80865,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2279 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80696,10 +80884,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2282 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80712,10 +80900,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2283 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80728,10 +80916,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2284 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80744,10 +80932,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2285 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80760,10 +80948,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2286 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80776,10 +80964,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2287 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80792,10 +80980,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2288 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80808,10 +80996,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2289 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80824,10 +81012,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2290 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80840,10 +81028,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2291 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80856,10 +81044,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2292 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80872,10 +81060,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2293 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80888,10 +81076,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2294 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80904,10 +81092,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2295 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80920,10 +81108,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2295 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80939,10 +81127,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2294 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80958,10 +81146,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2293 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80977,10 +81165,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2292 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -80996,10 +81184,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2291 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81015,10 +81203,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2290 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81034,10 +81222,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2289 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81053,10 +81241,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2288 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81072,10 +81260,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2287 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81091,10 +81279,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2286 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81110,10 +81298,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2285 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81129,10 +81317,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2284 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81148,10 +81336,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2283 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81167,10 +81355,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2282 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81186,10 +81374,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2278 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81205,10 +81393,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2296 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81221,10 +81409,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2297 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81237,10 +81425,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2298 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81253,10 +81441,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2299 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81269,10 +81457,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2300 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81285,10 +81473,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2301 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81301,10 +81489,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2302 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81317,10 +81505,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2302 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81336,10 +81524,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2301 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81355,10 +81543,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2300 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81374,10 +81562,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2299 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81393,10 +81581,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2298 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81412,10 +81600,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2297 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81431,10 +81619,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2296 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81450,10 +81638,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2303 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81469,10 +81657,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2304 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81485,10 +81673,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2305 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81501,10 +81689,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2306 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81517,10 +81705,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2307 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81533,10 +81721,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2308 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81549,10 +81737,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2309 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81565,10 +81753,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2310 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81581,10 +81769,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2311 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81597,10 +81785,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2312 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81613,10 +81801,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2313 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81629,10 +81817,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2314 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81645,10 +81833,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2315 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81661,10 +81849,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2316 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81677,10 +81865,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2317 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81693,10 +81881,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2317 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81712,10 +81900,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2316 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81731,10 +81919,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2315 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81750,10 +81938,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2314 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81769,10 +81957,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2313 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81788,10 +81976,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2312 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81807,10 +81995,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2311 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81826,10 +82014,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2310 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81845,10 +82033,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2309 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81864,10 +82052,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2308 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81883,10 +82071,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2307 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81902,10 +82090,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2306 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81921,10 +82109,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2305 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81940,10 +82128,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2304 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81959,10 +82147,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2318 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81975,10 +82163,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2319 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -81991,10 +82179,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2320 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82007,10 +82195,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2321 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82023,10 +82211,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2322 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82039,10 +82227,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2323 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82055,10 +82243,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2324 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82071,10 +82259,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2325 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82087,10 +82275,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2326 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82103,10 +82291,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2327 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82119,10 +82307,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2328 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82135,10 +82323,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2329 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82151,10 +82339,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2329 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82170,10 +82358,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2328 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82189,10 +82377,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2327 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82208,10 +82396,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2326 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82227,10 +82415,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2325 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82246,10 +82434,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2324 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82265,10 +82453,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2323 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82284,10 +82472,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2322 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82303,10 +82491,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2321 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82322,10 +82510,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2320 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82341,10 +82529,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2319 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82360,10 +82548,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2318 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82379,10 +82567,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2303 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82398,10 +82586,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2330 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82414,10 +82602,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2331 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82430,10 +82618,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2332 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82446,10 +82634,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2333 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82462,10 +82650,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2334 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82478,10 +82666,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2335 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82494,10 +82682,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2336 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82510,10 +82698,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2336 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82529,10 +82717,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2335 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82548,10 +82736,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2334 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82567,10 +82755,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2333 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82586,10 +82774,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2332 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82605,10 +82793,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2331 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82624,10 +82812,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2330 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82643,10 +82831,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2337 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82662,10 +82850,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2338 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82678,10 +82866,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2339 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82694,10 +82882,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2340 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82710,10 +82898,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2341 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82726,10 +82914,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2342 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82742,10 +82930,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2343 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82758,10 +82946,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2344 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82774,10 +82962,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2345 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82790,10 +82978,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2346 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82806,10 +82994,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2347 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82822,10 +83010,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2348 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82838,10 +83026,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2349 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82854,10 +83042,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2350 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82870,10 +83058,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2351 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82886,10 +83074,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2352 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82902,10 +83090,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2353 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82918,10 +83106,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2354 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82934,10 +83122,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2355 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82950,10 +83138,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2355 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82969,10 +83157,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2354 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -82988,10 +83176,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2353 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83007,10 +83195,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2352 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83026,10 +83214,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2351 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83045,10 +83233,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2350 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83064,10 +83252,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2349 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83083,10 +83271,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2348 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83102,10 +83290,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2347 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83121,10 +83309,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2346 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83140,10 +83328,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2345 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83159,10 +83347,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2344 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83178,10 +83366,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2343 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83197,10 +83385,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2342 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83216,10 +83404,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2341 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83235,10 +83423,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2340 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83254,10 +83442,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2339 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83273,10 +83461,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2338 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83292,10 +83480,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2356 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83308,10 +83496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2357 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83324,10 +83512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2358 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83340,10 +83528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2359 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83356,10 +83544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2360 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83372,10 +83560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2361 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83388,10 +83576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2362 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83404,10 +83592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2363 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83420,10 +83608,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2364 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83436,10 +83624,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2365 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83452,10 +83640,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2366 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83468,10 +83656,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2367 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83484,10 +83672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2368 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83500,10 +83688,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2368 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83519,10 +83707,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2367 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83538,10 +83726,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2366 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83557,10 +83745,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2365 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83576,10 +83764,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2364 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83595,10 +83783,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2363 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83614,10 +83802,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2362 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83633,10 +83821,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2361 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83652,10 +83840,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2360 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83671,10 +83859,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2359 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83690,10 +83878,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2358 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83709,10 +83897,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2357 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83728,10 +83916,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2356 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83747,10 +83935,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2337 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83766,10 +83954,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2369 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83782,10 +83970,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2370 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83798,10 +83986,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2371 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83814,10 +84002,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2372 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83830,10 +84018,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2373 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83846,10 +84034,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2374 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83862,10 +84050,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2375 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83878,10 +84066,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2375 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83897,10 +84085,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2374 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83916,10 +84104,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2373 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83935,10 +84123,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2372 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83954,10 +84142,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2371 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83973,10 +84161,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2370 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -83992,10 +84180,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2369 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84011,10 +84199,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2376 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84030,10 +84218,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2377 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84046,10 +84234,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2378 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84062,10 +84250,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2379 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84078,10 +84266,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2380 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84094,10 +84282,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2381 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84110,10 +84298,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2382 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84126,10 +84314,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2383 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84142,10 +84330,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2384 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84158,10 +84346,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2385 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84174,10 +84362,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2386 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84190,10 +84378,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2387 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84206,10 +84394,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2388 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84222,10 +84410,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2389 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84238,10 +84426,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2390 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84254,10 +84442,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2391 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84270,10 +84458,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2392 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84286,10 +84474,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2393 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84302,10 +84490,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2393 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84321,10 +84509,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2392 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84340,10 +84528,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2391 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84359,10 +84547,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2390 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84378,10 +84566,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2389 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84397,10 +84585,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2388 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84416,10 +84604,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2387 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84435,10 +84623,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2386 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84454,10 +84642,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2385 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84473,10 +84661,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2384 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84492,10 +84680,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2383 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84511,10 +84699,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2382 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84530,10 +84718,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2381 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84549,10 +84737,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2380 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84568,10 +84756,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2379 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84587,10 +84775,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2378 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84606,10 +84794,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2377 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84625,10 +84813,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2394 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84641,10 +84829,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2395 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84657,10 +84845,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2396 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84673,10 +84861,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2397 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84689,10 +84877,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2398 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84705,10 +84893,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2399 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84721,10 +84909,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2400 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84737,10 +84925,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2401 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84753,10 +84941,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2402 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84769,10 +84957,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2403 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84785,10 +84973,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2404 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84801,10 +84989,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2405 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84817,10 +85005,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2406 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84833,10 +85021,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2407 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84849,10 +85037,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2407 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84868,10 +85056,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2406 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84887,10 +85075,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2405 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84906,10 +85094,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2404 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84925,10 +85113,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2403 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84944,10 +85132,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2402 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84963,10 +85151,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2401 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -84982,10 +85170,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2400 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85001,10 +85189,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2399 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85020,10 +85208,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2398 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85039,10 +85227,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2397 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85058,10 +85246,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2396 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85077,10 +85265,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2395 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85096,10 +85284,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2394 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85115,10 +85303,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2376 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85134,10 +85322,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2408 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85150,10 +85338,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2409 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85166,10 +85354,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2410 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85182,10 +85370,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2411 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85198,10 +85386,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2412 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85214,10 +85402,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2413 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85230,10 +85418,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2414 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85246,10 +85434,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2414 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85265,10 +85453,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2413 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85284,10 +85472,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2412 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85303,10 +85491,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2411 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85322,10 +85510,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2410 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85341,10 +85529,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2409 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85360,10 +85548,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2408 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85379,10 +85567,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2415 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85398,10 +85586,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2416 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85414,10 +85602,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2417 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85430,10 +85618,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2418 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85446,10 +85634,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2419 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85462,10 +85650,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2420 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85478,10 +85666,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2421 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85494,10 +85682,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2422 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85510,10 +85698,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2423 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85526,10 +85714,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2424 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85542,10 +85730,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2425 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85558,10 +85746,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2426 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85574,10 +85762,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2427 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85590,10 +85778,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2428 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85606,10 +85794,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2429 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85622,10 +85810,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2429 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85641,10 +85829,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2428 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85660,10 +85848,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2427 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85679,10 +85867,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2426 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85698,10 +85886,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2425 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85717,10 +85905,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2424 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85736,10 +85924,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2423 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85755,10 +85943,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2422 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85774,10 +85962,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2421 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85793,10 +85981,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2420 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85812,10 +86000,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2419 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85831,10 +86019,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2418 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85850,10 +86038,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2417 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85869,10 +86057,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2416 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85888,10 +86076,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2430 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85904,10 +86092,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2431 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85920,10 +86108,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2432 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85936,10 +86124,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2432 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85955,10 +86143,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2431 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85974,10 +86162,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2430 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -85993,10 +86181,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2415 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86012,10 +86200,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2433 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86028,10 +86216,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2434 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86044,10 +86232,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2435 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86060,10 +86248,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2436 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86076,10 +86264,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2437 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86092,10 +86280,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2438 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86108,10 +86296,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2439 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86124,10 +86312,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2439 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86143,10 +86331,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2438 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86162,10 +86350,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2437 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86181,10 +86369,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2436 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86200,10 +86388,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2435 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86219,10 +86407,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2434 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86238,10 +86426,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2433 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86257,10 +86445,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2440 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86276,10 +86464,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2441 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86292,10 +86480,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2442 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86308,10 +86496,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2443 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86324,10 +86512,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2444 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86340,10 +86528,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2445 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86356,10 +86544,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2446 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86372,10 +86560,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2447 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86388,10 +86576,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2448 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86404,10 +86592,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2449 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86420,10 +86608,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2450 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86436,10 +86624,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2451 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86452,10 +86640,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2452 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86468,10 +86656,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2453 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86484,10 +86672,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2454 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86500,10 +86688,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2455 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86516,10 +86704,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2456 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86532,10 +86720,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2457 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86548,10 +86736,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2458 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86564,10 +86752,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2459 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86580,10 +86768,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2459 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86599,10 +86787,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2458 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86618,10 +86806,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2457 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86637,10 +86825,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2456 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86656,10 +86844,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2455 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86675,10 +86863,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2454 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86694,10 +86882,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2453 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86713,10 +86901,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2452 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86732,10 +86920,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2451 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86751,10 +86939,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2450 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86770,10 +86958,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2449 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86789,10 +86977,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2448 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86808,10 +86996,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2447 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86827,10 +87015,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2446 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86846,10 +87034,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2445 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86865,10 +87053,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2444 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86884,10 +87072,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2443 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86903,10 +87091,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2442 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86922,10 +87110,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2441 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86941,10 +87129,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2460 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86957,10 +87145,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2461 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86973,10 +87161,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2462 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -86989,10 +87177,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2463 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87005,10 +87193,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2463 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87024,10 +87212,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2462 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87043,10 +87231,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2461 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87062,10 +87250,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2460 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87081,10 +87269,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2440 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87100,10 +87288,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2464 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87116,10 +87304,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2465 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87132,10 +87320,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2466 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87148,10 +87336,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2467 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87164,10 +87352,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2468 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87180,10 +87368,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2469 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87196,10 +87384,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2470 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87212,10 +87400,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2470 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87231,10 +87419,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2469 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87250,10 +87438,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2468 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87269,10 +87457,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2467 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87288,10 +87476,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2466 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87307,10 +87495,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2465 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87326,10 +87514,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2464 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87345,10 +87533,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2471 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87364,10 +87552,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2472 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87380,10 +87568,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2473 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87396,10 +87584,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2473 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87415,10 +87603,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2472 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87434,10 +87622,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2474 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87450,10 +87638,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2474 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87469,10 +87657,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::ENTER this_invocation_nonce 2475 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 -1 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87488,10 +87676,10 @@ DataStructures.DisjSets.unionDisjoint(int, int):::EXIT44 this_invocation_nonce 2475 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87507,10 +87695,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2471 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87526,10 +87714,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2476 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87542,10 +87730,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2477 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87558,10 +87746,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2478 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87574,10 +87762,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2479 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87590,10 +87778,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2480 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87606,10 +87794,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2481 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87622,10 +87810,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2482 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87638,10 +87826,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2482 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87657,10 +87845,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2481 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87676,10 +87864,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2480 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87695,10 +87883,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2479 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87714,10 +87902,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2478 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87733,10 +87921,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2477 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87752,10 +87940,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2476 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87771,10 +87959,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2483 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87790,10 +87978,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2484 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87806,10 +87994,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2485 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87822,10 +88010,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2486 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87838,10 +88026,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2487 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87854,10 +88042,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2488 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87870,10 +88058,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2489 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87886,10 +88074,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2490 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87902,10 +88090,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2491 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87918,10 +88106,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2492 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87934,10 +88122,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2493 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87950,10 +88138,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2494 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87966,10 +88154,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2495 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87982,10 +88170,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2496 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -87998,10 +88186,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2497 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88014,10 +88202,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2498 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88030,10 +88218,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2499 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88046,10 +88234,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2500 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88062,10 +88250,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2500 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88081,10 +88269,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2499 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88100,10 +88288,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2498 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88119,10 +88307,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2497 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88138,10 +88326,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2496 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88157,10 +88345,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2495 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88176,10 +88364,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2494 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88195,10 +88383,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2493 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88214,10 +88402,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2492 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88233,10 +88421,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2491 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88252,10 +88440,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2490 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88271,10 +88459,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2489 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88290,10 +88478,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2488 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88309,10 +88497,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2487 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88328,10 +88516,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2486 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88347,10 +88535,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2485 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88366,10 +88554,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2484 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88385,10 +88573,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2501 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88401,10 +88589,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2502 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88417,10 +88605,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2503 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88433,10 +88621,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2504 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88449,10 +88637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2505 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88465,10 +88653,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2505 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88484,10 +88672,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2504 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88503,10 +88691,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2503 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88522,10 +88710,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2502 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88541,10 +88729,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2501 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88560,10 +88748,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2483 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88579,10 +88767,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2506 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88595,10 +88783,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2507 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88611,10 +88799,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2508 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88627,10 +88815,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2509 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88643,10 +88831,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2510 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88659,10 +88847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2511 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88675,10 +88863,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2512 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88691,10 +88879,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2512 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88710,10 +88898,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2511 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88729,10 +88917,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2510 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88748,10 +88936,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2509 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88767,10 +88955,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2508 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88786,10 +88974,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2507 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88805,10 +88993,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2506 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88824,10 +89012,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2513 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88843,10 +89031,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2514 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88859,10 +89047,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2515 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88875,10 +89063,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2516 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88891,10 +89079,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2517 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88907,10 +89095,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2518 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88923,10 +89111,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2519 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88939,10 +89127,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2520 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88955,10 +89143,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2521 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88971,10 +89159,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2522 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -88987,10 +89175,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2523 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89003,10 +89191,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2524 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89019,10 +89207,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2525 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89035,10 +89223,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2526 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89051,10 +89239,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2527 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89067,10 +89255,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2528 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89083,10 +89271,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2529 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89099,10 +89287,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2530 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89115,10 +89303,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2530 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89134,10 +89322,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2529 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89153,10 +89341,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2528 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89172,10 +89360,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2527 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89191,10 +89379,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2526 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89210,10 +89398,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2525 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89229,10 +89417,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2524 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89248,10 +89436,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2523 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89267,10 +89455,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2522 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89286,10 +89474,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2521 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89305,10 +89493,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2520 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89324,10 +89512,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2519 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89343,10 +89531,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2518 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89362,10 +89550,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2517 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89381,10 +89569,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2516 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89400,10 +89588,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2515 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89419,10 +89607,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2514 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89438,10 +89626,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2531 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89454,10 +89642,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2532 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89470,10 +89658,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2533 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89486,10 +89674,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2534 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89502,10 +89690,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2535 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89518,10 +89706,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2536 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89534,10 +89722,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2537 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89550,10 +89738,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2538 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89566,10 +89754,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2539 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89582,10 +89770,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2540 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89598,10 +89786,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2541 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89614,10 +89802,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2542 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89630,10 +89818,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2543 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89646,10 +89834,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2544 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89662,10 +89850,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2545 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89678,10 +89866,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2545 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89697,10 +89885,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2544 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89716,10 +89904,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2543 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89735,10 +89923,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2542 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89754,10 +89942,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2541 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89773,10 +89961,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2540 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89792,10 +89980,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2539 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89811,10 +89999,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2538 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89830,10 +90018,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2537 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89849,10 +90037,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2536 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89868,10 +90056,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2535 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89887,10 +90075,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2534 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89906,10 +90094,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2533 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89925,10 +90113,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2532 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89944,10 +90132,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2531 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89963,10 +90151,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2513 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89982,10 +90170,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2546 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -89998,10 +90186,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2547 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90014,10 +90202,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2548 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90030,10 +90218,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2549 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90046,10 +90234,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2550 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90062,10 +90250,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2551 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90078,10 +90266,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2552 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90094,10 +90282,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2552 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90113,10 +90301,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2551 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90132,10 +90320,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2550 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90151,10 +90339,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2549 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90170,10 +90358,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2548 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90189,10 +90377,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2547 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90208,10 +90396,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2546 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90227,10 +90415,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2553 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90246,10 +90434,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2554 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90262,10 +90450,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2555 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90278,10 +90466,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2556 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90294,10 +90482,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2557 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90310,10 +90498,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2558 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90326,10 +90514,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2559 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90342,10 +90530,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2560 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90358,10 +90546,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2561 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90374,10 +90562,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2562 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90390,10 +90578,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2563 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90406,10 +90594,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2564 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90422,10 +90610,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2565 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90438,10 +90626,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2565 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90457,10 +90645,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2564 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90476,10 +90664,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2563 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90495,10 +90683,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2562 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90514,10 +90702,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2561 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90533,10 +90721,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2560 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90552,10 +90740,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2559 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90571,10 +90759,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2558 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90590,10 +90778,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2557 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90609,10 +90797,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2556 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90628,10 +90816,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2555 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90647,10 +90835,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2554 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90666,10 +90854,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2566 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90682,10 +90870,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2567 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90698,10 +90886,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2568 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90714,10 +90902,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2569 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90730,10 +90918,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2570 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90746,10 +90934,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2571 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90762,10 +90950,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2572 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90778,10 +90966,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2573 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90794,10 +90982,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2574 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90810,10 +90998,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2575 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90826,10 +91014,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2576 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90842,10 +91030,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2577 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90858,10 +91046,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2578 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90874,10 +91062,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2579 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90890,10 +91078,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2580 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90906,10 +91094,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2581 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90922,10 +91110,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2582 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90938,10 +91126,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2583 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90954,10 +91142,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2583 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90973,10 +91161,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2582 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -90992,10 +91180,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2581 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91011,10 +91199,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2580 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91030,10 +91218,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2579 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91049,10 +91237,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2578 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91068,10 +91256,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2577 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91087,10 +91275,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2576 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91106,10 +91294,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2575 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91125,10 +91313,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2574 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91144,10 +91332,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2573 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91163,10 +91351,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2572 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91182,10 +91370,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2571 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91201,10 +91389,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2570 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91220,10 +91408,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2569 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91239,10 +91427,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2568 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91258,10 +91446,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2567 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91277,10 +91465,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2566 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91296,10 +91484,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2553 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91315,10 +91503,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2584 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91331,10 +91519,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2585 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91347,10 +91535,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2586 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91363,10 +91551,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2587 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91379,10 +91567,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2588 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91395,10 +91583,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2589 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91411,10 +91599,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2590 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91427,10 +91615,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2590 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91446,10 +91634,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2589 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91465,10 +91653,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2588 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91484,10 +91672,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2587 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91503,10 +91691,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2586 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91522,10 +91710,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2585 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91541,10 +91729,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2584 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91560,10 +91748,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2591 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91579,10 +91767,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2592 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91595,10 +91783,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2593 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91611,10 +91799,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2594 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91627,10 +91815,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2595 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91643,10 +91831,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2596 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91659,10 +91847,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2597 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91675,10 +91863,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2598 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91691,10 +91879,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2599 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91707,10 +91895,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2600 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91723,10 +91911,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2601 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91739,10 +91927,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2602 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91755,10 +91943,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2603 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91771,10 +91959,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2604 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91787,10 +91975,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2605 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91803,10 +91991,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2606 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91819,10 +92007,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2607 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91835,10 +92023,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2607 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91854,10 +92042,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2606 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91873,10 +92061,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2605 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91892,10 +92080,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2604 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91911,10 +92099,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2603 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91930,10 +92118,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2602 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91949,10 +92137,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2601 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91968,10 +92156,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2600 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -91987,10 +92175,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2599 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92006,10 +92194,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2598 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92025,10 +92213,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2597 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92044,10 +92232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2596 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92063,10 +92251,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2595 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92082,10 +92270,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2594 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92101,10 +92289,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2593 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92120,10 +92308,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2592 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92139,10 +92327,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2608 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92155,10 +92343,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2609 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92171,10 +92359,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2610 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92187,10 +92375,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2611 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92203,10 +92391,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2612 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92219,10 +92407,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2613 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92235,10 +92423,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2614 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92251,10 +92439,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2615 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92267,10 +92455,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2616 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92283,10 +92471,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2617 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92299,10 +92487,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2618 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92315,10 +92503,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2619 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92331,10 +92519,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2619 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92350,10 +92538,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2618 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92369,10 +92557,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2617 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92388,10 +92576,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2616 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92407,10 +92595,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2615 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92426,10 +92614,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2614 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92445,10 +92633,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2613 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92464,10 +92652,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2612 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92483,10 +92671,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2611 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92502,10 +92690,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2610 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92521,10 +92709,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2609 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92540,10 +92728,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2608 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92559,10 +92747,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2591 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92578,10 +92766,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2620 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92594,10 +92782,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2621 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92610,10 +92798,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2622 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92626,10 +92814,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2623 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92642,10 +92830,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2624 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92658,10 +92846,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2625 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92674,10 +92862,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2626 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92690,10 +92878,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2626 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92709,10 +92897,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2625 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92728,10 +92916,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2624 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92747,10 +92935,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2623 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92766,10 +92954,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2622 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92785,10 +92973,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2621 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92804,10 +92992,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2620 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92823,10 +93011,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2627 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92842,10 +93030,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2628 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92858,10 +93046,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2629 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92874,10 +93062,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2630 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92890,10 +93078,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2631 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92906,10 +93094,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2632 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92922,10 +93110,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2633 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92938,10 +93126,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2634 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92954,10 +93142,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2635 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92970,10 +93158,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2636 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -92986,10 +93174,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2637 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93002,10 +93190,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2638 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93018,10 +93206,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2639 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93034,10 +93222,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2640 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93050,10 +93238,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2641 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93066,10 +93254,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2642 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93082,10 +93270,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2643 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93098,10 +93286,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2644 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93114,10 +93302,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2644 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93133,10 +93321,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2643 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93152,10 +93340,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2642 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93171,10 +93359,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2641 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93190,10 +93378,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2640 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93209,10 +93397,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2639 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93228,10 +93416,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2638 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93247,10 +93435,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2637 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93266,10 +93454,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2636 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93285,10 +93473,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2635 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93304,10 +93492,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2634 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93323,10 +93511,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2633 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93342,10 +93530,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2632 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93361,10 +93549,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2631 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93380,10 +93568,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2630 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93399,10 +93587,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2629 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93418,10 +93606,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2628 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93437,10 +93625,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2645 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93453,10 +93641,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2646 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93469,10 +93657,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2647 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93485,10 +93673,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2648 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93501,10 +93689,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2649 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93517,10 +93705,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2650 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93533,10 +93721,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2651 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93549,10 +93737,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2652 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93565,10 +93753,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2653 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93581,10 +93769,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2654 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93597,10 +93785,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2655 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93613,10 +93801,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2656 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93629,10 +93817,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2657 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93645,10 +93833,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2658 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93661,10 +93849,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2659 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93677,10 +93865,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2660 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93693,10 +93881,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2661 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93709,10 +93897,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2661 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93728,10 +93916,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2660 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93747,10 +93935,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2659 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93766,10 +93954,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2658 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93785,10 +93973,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2657 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93804,10 +93992,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2656 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93823,10 +94011,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2655 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93842,10 +94030,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2654 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93861,10 +94049,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2653 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93880,10 +94068,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2652 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93899,10 +94087,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2651 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93918,10 +94106,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2650 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93937,10 +94125,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2649 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93956,10 +94144,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2648 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93975,10 +94163,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2647 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -93994,10 +94182,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2646 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94013,10 +94201,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2645 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94032,10 +94220,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2627 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94051,10 +94239,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2662 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94067,10 +94255,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2663 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94083,10 +94271,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2664 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94099,10 +94287,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2665 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94115,10 +94303,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2666 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94131,10 +94319,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2667 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94147,10 +94335,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2668 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94163,10 +94351,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2668 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94182,10 +94370,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2667 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94201,10 +94389,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2666 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94220,10 +94408,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2665 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94239,10 +94427,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2664 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94258,10 +94446,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2663 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94277,10 +94465,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2662 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94296,10 +94484,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2669 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94315,10 +94503,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2670 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94331,10 +94519,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2671 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94347,10 +94535,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2672 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94363,10 +94551,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2673 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94379,10 +94567,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2674 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94395,10 +94583,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2675 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94411,10 +94599,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2675 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94430,10 +94618,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2674 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94449,10 +94637,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2673 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94468,10 +94656,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2672 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94487,10 +94675,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2671 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94506,10 +94694,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2670 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94525,10 +94713,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2676 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94541,10 +94729,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2677 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94557,10 +94745,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2678 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94573,10 +94761,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2679 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94589,10 +94777,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2680 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94605,10 +94793,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2681 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94621,10 +94809,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2682 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94637,10 +94825,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2683 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94653,10 +94841,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2684 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94669,10 +94857,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2685 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94685,10 +94873,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2686 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94701,10 +94889,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2687 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94717,10 +94905,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2688 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94733,10 +94921,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2689 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94749,10 +94937,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2690 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94765,10 +94953,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2691 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94781,10 +94969,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2692 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94797,10 +94985,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2692 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94816,10 +95004,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2691 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94835,10 +95023,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2690 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94854,10 +95042,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2689 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94873,10 +95061,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2688 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94892,10 +95080,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2687 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94911,10 +95099,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2686 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94930,10 +95118,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2685 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94949,10 +95137,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2684 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94968,10 +95156,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2683 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -94987,10 +95175,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2682 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95006,10 +95194,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2681 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95025,10 +95213,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2680 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95044,10 +95232,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2679 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95063,10 +95251,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2678 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95082,10 +95270,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2677 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95101,10 +95289,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2676 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95120,10 +95308,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2669 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95139,10 +95327,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2693 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95155,10 +95343,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2694 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95171,10 +95359,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2695 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95187,10 +95375,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2696 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95203,10 +95391,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2697 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95219,10 +95407,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2698 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95235,10 +95423,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2699 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95251,10 +95439,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2699 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95270,10 +95458,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2698 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95289,10 +95477,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2697 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95308,10 +95496,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2696 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95327,10 +95515,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2695 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95346,10 +95534,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2694 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95365,10 +95553,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2693 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95384,10 +95572,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2700 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95403,10 +95591,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2701 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95419,10 +95607,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2702 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95435,10 +95623,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2703 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95451,10 +95639,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2704 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95467,10 +95655,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2705 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95483,10 +95671,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2705 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95502,10 +95690,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2704 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95521,10 +95709,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2703 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95540,10 +95728,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2702 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95559,10 +95747,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2701 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95578,10 +95766,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2706 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95594,10 +95782,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2707 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95610,10 +95798,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2708 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95626,10 +95814,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2709 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95642,10 +95830,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2709 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95661,10 +95849,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2708 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95680,10 +95868,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2707 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95699,10 +95887,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2706 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95718,10 +95906,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2700 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95737,10 +95925,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2710 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95753,10 +95941,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2711 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95769,10 +95957,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2712 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95785,10 +95973,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2713 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95801,10 +95989,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2714 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95817,10 +96005,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2715 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95833,10 +96021,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2716 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95849,10 +96037,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2716 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95868,10 +96056,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2715 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95887,10 +96075,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2714 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95906,10 +96094,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2713 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95925,10 +96113,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2712 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95944,10 +96132,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2711 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95963,10 +96151,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2710 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -95982,10 +96170,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2717 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96001,10 +96189,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2718 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96017,10 +96205,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2719 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96033,10 +96221,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2720 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96049,10 +96237,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2721 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96065,10 +96253,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2722 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96081,10 +96269,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2723 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96097,10 +96285,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2724 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96113,10 +96301,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2725 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96129,10 +96317,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2726 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96145,10 +96333,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2727 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96161,10 +96349,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2728 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96177,10 +96365,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2729 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96193,10 +96381,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2729 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96212,10 +96400,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2728 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96231,10 +96419,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2727 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96250,10 +96438,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2726 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96269,10 +96457,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2725 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96288,10 +96476,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2724 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96307,10 +96495,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2723 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96326,10 +96514,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2722 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96345,10 +96533,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2721 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96364,10 +96552,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2720 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96383,10 +96571,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2719 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96402,10 +96590,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2718 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96421,10 +96609,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2730 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96437,10 +96625,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2731 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96453,10 +96641,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2732 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96469,10 +96657,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2733 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96485,10 +96673,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2734 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96501,10 +96689,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2735 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96517,10 +96705,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2736 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96533,10 +96721,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2737 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96549,10 +96737,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2738 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96565,10 +96753,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2739 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96581,10 +96769,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2740 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96597,10 +96785,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2741 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96613,10 +96801,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2742 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96629,10 +96817,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2743 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96645,10 +96833,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2744 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96661,10 +96849,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2744 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96680,10 +96868,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2743 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96699,10 +96887,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2742 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96718,10 +96906,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2741 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96737,10 +96925,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2740 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96756,10 +96944,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2739 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96775,10 +96963,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2738 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96794,10 +96982,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2737 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96813,10 +97001,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2736 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96832,10 +97020,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2735 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96851,10 +97039,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2734 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96870,10 +97058,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2733 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96889,10 +97077,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2732 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96908,10 +97096,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2731 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96927,10 +97115,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2730 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96946,10 +97134,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2717 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96965,10 +97153,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2745 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96981,10 +97169,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2746 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -96997,10 +97185,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2747 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97013,10 +97201,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2748 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97029,10 +97217,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2749 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97045,10 +97233,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2750 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97061,10 +97249,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2751 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97077,10 +97265,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2751 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97096,10 +97284,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2750 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97115,10 +97303,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2749 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97134,10 +97322,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2748 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97153,10 +97341,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2747 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97172,10 +97360,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2746 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97191,10 +97379,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2745 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97210,10 +97398,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2752 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97229,10 +97417,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2753 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97245,10 +97433,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2754 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97261,10 +97449,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2755 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97277,10 +97465,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2756 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97293,10 +97481,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2756 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97312,10 +97500,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2755 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97331,10 +97519,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2754 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97350,10 +97538,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2753 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97369,10 +97557,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2757 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97385,10 +97573,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2758 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97401,10 +97589,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2759 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97417,10 +97605,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2760 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97433,10 +97621,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2761 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97449,10 +97637,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2762 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97465,10 +97653,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2763 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97481,10 +97669,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2764 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97497,10 +97685,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2765 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97513,10 +97701,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2765 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97532,10 +97720,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2764 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97551,10 +97739,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2763 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97570,10 +97758,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2762 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97589,10 +97777,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2761 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97608,10 +97796,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2760 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97627,10 +97815,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2759 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97646,10 +97834,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2758 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97665,10 +97853,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2757 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97684,10 +97872,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2752 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97703,10 +97891,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2766 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97719,10 +97907,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2767 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97735,10 +97923,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2768 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97751,10 +97939,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2769 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97767,10 +97955,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2770 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97783,10 +97971,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2771 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97799,10 +97987,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2772 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97815,10 +98003,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2772 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97834,10 +98022,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2771 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97853,10 +98041,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2770 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97872,10 +98060,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2769 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97891,10 +98079,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2768 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97910,10 +98098,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2767 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97929,10 +98117,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2766 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97948,10 +98136,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2773 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97967,10 +98155,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2774 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97983,10 +98171,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2775 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -97999,10 +98187,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2776 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98015,10 +98203,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2777 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98031,10 +98219,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2778 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98047,10 +98235,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2779 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98063,10 +98251,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2780 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98079,10 +98267,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2781 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98095,10 +98283,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2782 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98111,10 +98299,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2783 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98127,10 +98315,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2784 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98143,10 +98331,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2785 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98159,10 +98347,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2785 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98178,10 +98366,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2784 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98197,10 +98385,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2783 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98216,10 +98404,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2782 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98235,10 +98423,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2781 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98254,10 +98442,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2780 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98273,10 +98461,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2779 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98292,10 +98480,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2778 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98311,10 +98499,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2777 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98330,10 +98518,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2776 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98349,10 +98537,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2775 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98368,10 +98556,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2774 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98387,10 +98575,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2786 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98403,10 +98591,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2787 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98419,10 +98607,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2788 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98435,10 +98623,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2788 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98454,10 +98642,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2787 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98473,10 +98661,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2786 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98492,10 +98680,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2773 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98511,10 +98699,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2789 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98527,10 +98715,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2790 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98543,10 +98731,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2791 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98559,10 +98747,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2792 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98575,10 +98763,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2793 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98591,10 +98779,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2794 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98607,10 +98795,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2795 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98623,10 +98811,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2795 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98642,10 +98830,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2794 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98661,10 +98849,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2793 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98680,10 +98868,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2792 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98699,10 +98887,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2791 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98718,10 +98906,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2790 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98737,10 +98925,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2789 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98756,10 +98944,10 @@ DataStructures.DisjSets.unionCareful(int, int):::ENTER this_invocation_nonce 2796 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98775,10 +98963,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2797 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98791,10 +98979,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2798 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98807,10 +98995,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2799 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98823,10 +99011,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2800 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98839,10 +99027,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2801 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98855,10 +99043,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2802 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98871,10 +99059,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2803 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98887,10 +99075,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2804 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98903,10 +99091,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2805 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98919,10 +99107,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2806 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98935,10 +99123,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2807 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98951,10 +99139,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2808 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98967,10 +99155,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2809 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98983,10 +99171,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2810 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -98999,10 +99187,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2811 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99015,10 +99203,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2812 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99031,10 +99219,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2812 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99050,10 +99238,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2811 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99069,10 +99257,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2810 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99088,10 +99276,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2809 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99107,10 +99295,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2808 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99126,10 +99314,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2807 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99145,10 +99333,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2806 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99164,10 +99352,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2805 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99183,10 +99371,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2804 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99202,10 +99390,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2803 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99221,10 +99409,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2802 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99240,10 +99428,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2801 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99259,10 +99447,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2800 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99278,10 +99466,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2799 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99297,10 +99485,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2798 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99316,10 +99504,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2797 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99335,10 +99523,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2813 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99351,10 +99539,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2814 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99367,10 +99555,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2815 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99383,10 +99571,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2816 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99399,10 +99587,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2817 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99415,10 +99603,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2818 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99431,10 +99619,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2819 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99447,10 +99635,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2820 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99463,10 +99651,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2821 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99479,10 +99667,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2822 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99495,10 +99683,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2823 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99511,10 +99699,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2824 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99527,10 +99715,10 @@ DataStructures.DisjSets.find(int):::EXIT68 this_invocation_nonce 2824 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99546,10 +99734,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2823 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99565,10 +99753,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2822 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99584,10 +99772,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2821 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99603,10 +99791,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2820 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99622,10 +99810,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2819 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99641,10 +99829,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2818 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99660,10 +99848,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2817 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99679,10 +99867,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2816 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99698,10 +99886,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2815 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99717,10 +99905,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2814 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99736,10 +99924,10 @@ DataStructures.DisjSets.find(int):::EXIT70 this_invocation_nonce 2813 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99755,10 +99943,10 @@ DataStructures.DisjSets.unionCareful(int, int):::EXIT57 this_invocation_nonce 2796 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99774,10 +99962,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2825 this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99790,201 +99978,10 @@ DataStructures.DisjSets.find(int):::ENTER this_invocation_nonce 2826 this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -31 -1 - -DataStructures.DisjSets.find(int):::ENTER -this_invocation_nonce -2827 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -24 -1 - -DataStructures.DisjSets.find(int):::ENTER -this_invocation_nonce -2828 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -28 -1 - -DataStructures.DisjSets.find(int):::ENTER -this_invocation_nonce -2829 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -48 -1 - -DataStructures.DisjSets.find(int):::ENTER -this_invocation_nonce -2830 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -36 -1 - -DataStructures.DisjSets.find(int):::ENTER -this_invocation_nonce -2831 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -43 -1 - -DataStructures.DisjSets.find(int):::EXIT68 -this_invocation_nonce -2831 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -43 -1 -return -43 -1 - -DataStructures.DisjSets.find(int):::EXIT70 -this_invocation_nonce -2830 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -36 -1 -return -43 -1 - -DataStructures.DisjSets.find(int):::EXIT70 -this_invocation_nonce -2829 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -48 -1 -return -43 -1 - -DataStructures.DisjSets.find(int):::EXIT70 -this_invocation_nonce -2828 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -28 -1 -return -43 -1 - -DataStructures.DisjSets.find(int):::EXIT70 -this_invocation_nonce -2827 -this -474545718 -1 -this.s -2083101115 -1 -this.s[..] -[31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] -1 -x -24 -1 -return -43 -1 - -DataStructures.DisjSets.find(int):::EXIT70 -this_invocation_nonce -2826 -this -474545718 +1908923184 1 this.s -2083101115 +431687835 1 this.s[..] [31 4 29 32 32 41 43 17 39 25 -1 14 41 48 47 11 42 14 49 31 25 42 36 29 28 0 32 9 48 25 8 24 20 49 41 27 43 8 27 49 20 35 11 -1 27 21 39 27 36 16] @@ -99992,7 +99989,4 @@ this.s[..] x 31 1 -return -43 -1 diff --git a/tests/daikon-tests/DisjSets/DisjSets.txt-jaif.goal b/tests/daikon-tests/DisjSets/DisjSets.txt-jaif.goal index 7c2a1b8835..e171910d9e 100644 --- a/tests/daikon-tests/DisjSets/DisjSets.txt-jaif.goal +++ b/tests/daikon-tests/DisjSets/DisjSets.txt-jaif.goal @@ -5,18 +5,32 @@ annotation @NonNull: package DataStructures: class DisjSets : // 23589/- obj/class samples field s : // int[] + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // numElements method (I)V : // 29 samples - return: + return: parameter #0 : // numElements + method find(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // x method find(I)I : // 11018 samples - return: + return: parameter #0 : // x + method unionCareful(II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // set1 + parameter #1 : // set2 method unionCareful(II)V : // 576 samples - return: + return: parameter #0 : // set1 parameter #1 : // set2 + method unionDisjoint(II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // root1 + parameter #1 : // root2 method unionDisjoint(II)V : // 186 samples - return: + return: parameter #0 : // root1 parameter #1 : // root2 diff --git a/tests/daikon-tests/ExceptionHandling/DaikonAnalyse.pure b/tests/daikon-tests/ExceptionHandling/DaikonAnalyse.pure new file mode 100644 index 0000000000..2719729a2e --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/DaikonAnalyse.pure @@ -0,0 +1,2 @@ +public boolean SimpleTest.DaikonAnalyseExceptions.isEvan(int) +public boolean SimpleTest.DaikonAnalyseExceptions.isFiveTimes(int) diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.decls-DynComp-nojdk.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.decls-DynComp-nojdk.goal new file mode 100644 index 0000000000..2a98c79b1e --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.decls-DynComp-nojdk.goal @@ -0,0 +1,532 @@ +// Declaration file written by daikon.dcomp + +VarComparability +implicit +DECLARE +ExceptionHandling.DaikonAnalyseExceptions:::CLASS + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions:::OBJECT +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +2 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::ENTER + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXIT5 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +2 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::EXIT8 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +boolean +boolean +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::EXIT12 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +boolean +boolean +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT66 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +int +int +3 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT68 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +int +int +3 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT71 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +int +int +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object):::EXIT1 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 +return +boolean +boolean +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals_dcomp_instrumented(java.lang.Object):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals_dcomp_instrumented(java.lang.Object):::EXIT1 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 +return +boolean +boolean +3 + diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.decls-DynComp.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.decls-DynComp.goal new file mode 100644 index 0000000000..2a98c79b1e --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.decls-DynComp.goal @@ -0,0 +1,532 @@ +// Declaration file written by daikon.dcomp + +VarComparability +implicit +DECLARE +ExceptionHandling.DaikonAnalyseExceptions:::CLASS + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions:::OBJECT +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +2 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::ENTER + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXIT5 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +2 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::EXIT8 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +boolean +boolean +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::EXIT12 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +boolean +boolean +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT66 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +int +int +3 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT68 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +int +int +3 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT71 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +parameter +int # isParam=true +int +2 +return +int +int +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +2 +parameter +int # isParam=true +int +2 +return +int +int +2 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object):::EXIT1 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 +return +boolean +boolean +3 + + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals_dcomp_instrumented(java.lang.Object):::ENTER +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +3 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +4 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 + +DECLARE +ExceptionHandling.DaikonAnalyseExceptions.equals_dcomp_instrumented(java.lang.Object):::EXIT1 +this +ExceptionHandling.DaikonAnalyseExceptions # isNonNull=true, isParam=true +hashcode +4 +this.classVar +int # declaringClassPackageName=ExceptionHandling +int +5 +obj +java.lang.Object # isParam=true +hashcode +2 +obj.getClass().getName() +java.lang.Class +java.lang.String +1 +return +boolean +boolean +3 + diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-chicory.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-chicory.goal new file mode 100644 index 0000000000..d37e8e52bf --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-chicory.goal @@ -0,0 +1,6341 @@ +// Declarations for ExceptionHandling.DaikonAnalyseExceptions +// Declarations written Tue Jul 25 16:42:58 PDT 2017 + +decl-version 2.0 +var-comparability none + +ppt ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::ENTER +ppt-type enter + +ppt ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXIT5 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 + +ppt ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::EXIT8 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.isEvan(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::EXIT12 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT66 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT68 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXIT71 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXCEPTION62 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase4(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +ppt-type enter +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent ExceptionHandling.DaikonAnalyseExceptions:::OBJECT 1 +variable parameter + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt ExceptionHandling.DaikonAnalyseExceptions:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type ExceptionHandling.DaikonAnalyseExceptions + rep-type hashcode + flags is_param non_null + comparability 22 +variable this.classVar + var-kind field classVar + enclosing-var this + dec-type int + rep-type int + comparability 22 + +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::ENTER +this_invocation_nonce +0 + +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXIT5 +this_invocation_nonce +0 +this +1854778591 +1 +this.classVar +42 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +1 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +1 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 +return +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +2 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +2 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 +return +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +3 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +4 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +4 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 +return +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +3 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 +return +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +5 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +5 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 +return +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +6 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +6 +this +1854778591 +1 +this.classVar +2 +1 +parameter +2 +1 +return +2 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +7 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +7 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 +return +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +8 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +8 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 +return +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +9 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +10 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +10 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 +return +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +9 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 +return +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +11 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +11 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 +return +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +12 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +12 +this +1854778591 +1 +this.classVar +3 +1 +parameter +3 +1 +return +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +13 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +13 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 +return +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +14 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +14 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 +return +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +15 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +16 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +16 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 +return +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +15 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 +return +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +17 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +17 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 +return +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +18 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +18 +this +1854778591 +1 +this.classVar +4 +1 +parameter +4 +1 +return +4 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +19 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +19 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 +exception +2054798982 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +20 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +20 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 +exception +885951223 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +21 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +22 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +22 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 +exception +191382150 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this_invocation_nonce +21 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 +return +0 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +23 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +this_invocation_nonce +23 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 +exception +142666848 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +24 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +this_invocation_nonce +24 +this +1854778591 +1 +this.classVar +5 +1 +parameter +5 +1 +exception +1060830840 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +25 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +25 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 +return +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +26 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +26 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 +return +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +27 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +28 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +28 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 +return +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +27 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 +return +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +29 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +29 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 +exception +2137211482 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +30 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 +this_invocation_nonce +30 +this +1854778591 +1 +this.classVar +6 +1 +parameter +6 +1 +exception +920011586 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +31 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +31 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 +return +49 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +32 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +32 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 +return +49 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +33 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +34 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +34 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 +return +49 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +33 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 +return +49 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +35 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +35 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 +return +49 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +36 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +36 +this +1854778591 +1 +this.classVar +7 +1 +parameter +7 +1 +return +49 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +37 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +37 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 +return +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +38 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +38 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 +return +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +39 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +40 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +40 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 +return +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +39 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 +return +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +41 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +41 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 +return +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +42 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +42 +this +1854778591 +1 +this.classVar +8 +1 +parameter +8 +1 +return +8 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +43 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +43 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 +return +81 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +44 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +44 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 +return +81 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +45 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +46 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +46 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 +return +81 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +45 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 +return +81 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +47 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +47 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 +return +81 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +48 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +48 +this +1854778591 +1 +this.classVar +9 +1 +parameter +9 +1 +return +81 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +49 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +49 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 +exception +968514068 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +50 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +50 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 +exception +1360767589 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +51 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +52 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +52 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 +exception +873415566 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this_invocation_nonce +51 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 +return +0 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +53 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +this_invocation_nonce +53 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 +exception +818403870 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +54 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +this_invocation_nonce +54 +this +1854778591 +1 +this.classVar +10 +1 +parameter +10 +1 +exception +1531333864 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +55 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +55 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 +return +121 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +56 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +56 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 +return +121 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +57 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +58 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +58 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 +return +121 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +57 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 +return +121 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +59 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +59 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 +return +121 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +60 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +60 +this +1854778591 +1 +this.classVar +11 +1 +parameter +11 +1 +return +121 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +61 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +61 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 +return +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +62 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +62 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 +return +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +63 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +64 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +64 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 +return +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +63 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 +return +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +65 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +65 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 +exception +1468177767 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +66 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 +this_invocation_nonce +66 +this +1854778591 +1 +this.classVar +12 +1 +parameter +12 +1 +exception +434091818 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +67 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +67 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 +return +169 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +68 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +68 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 +return +169 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +69 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +70 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +70 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 +return +169 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +69 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 +return +169 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +71 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +71 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 +return +169 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +72 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +72 +this +1854778591 +1 +this.classVar +13 +1 +parameter +13 +1 +return +169 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +73 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +73 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 +return +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +74 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +74 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 +return +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +75 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +76 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +76 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 +return +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +75 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 +return +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +77 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +77 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 +return +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +78 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +78 +this +1854778591 +1 +this.classVar +14 +1 +parameter +14 +1 +return +14 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +79 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +79 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 +exception +398887205 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +80 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +80 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 +exception +2114889273 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +81 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +82 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +82 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 +exception +1025799482 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this_invocation_nonce +81 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 +return +0 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +83 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +this_invocation_nonce +83 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 +exception +1504109395 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +84 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +this_invocation_nonce +84 +this +1854778591 +1 +this.classVar +15 +1 +parameter +15 +1 +exception +2047526627 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +85 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +85 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 +return +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +86 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +86 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 +return +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +87 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +88 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +88 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 +return +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +87 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 +return +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +89 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +89 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 +return +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +90 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +90 +this +1854778591 +1 +this.classVar +16 +1 +parameter +16 +1 +return +16 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +91 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +91 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 +return +289 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +92 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +92 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 +return +289 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +93 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +94 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +94 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 +return +289 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +93 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 +return +289 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +95 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +95 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 +return +289 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +96 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +96 +this +1854778591 +1 +this.classVar +17 +1 +parameter +17 +1 +return +289 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +97 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +97 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 +return +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +98 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +98 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 +return +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +99 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +100 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +100 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 +return +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +99 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 +return +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +101 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +101 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 +exception +1908316405 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +102 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 +this_invocation_nonce +102 +this +1854778591 +1 +this.classVar +18 +1 +parameter +18 +1 +exception +1873653341 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +103 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +103 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 +return +361 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +104 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +104 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 +return +361 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +105 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +106 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +106 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 +return +361 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +105 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 +return +361 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +107 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +107 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 +return +361 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +108 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +108 +this +1854778591 +1 +this.classVar +19 +1 +parameter +19 +1 +return +361 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +109 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +109 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 +exception +25126016 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +110 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +110 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 +exception +762218386 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +111 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +112 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +112 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 +exception +672320506 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this_invocation_nonce +111 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 +return +0 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +113 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +this_invocation_nonce +113 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 +exception +718231523 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +114 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +this_invocation_nonce +114 +this +1854778591 +1 +this.classVar +20 +1 +parameter +20 +1 +exception +1349414238 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +115 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +115 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 +return +441 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +116 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +116 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 +return +441 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +117 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +118 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +118 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 +return +441 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +117 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 +return +441 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +119 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +119 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 +return +441 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +120 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +120 +this +1854778591 +1 +this.classVar +21 +1 +parameter +21 +1 +return +441 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +121 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +121 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 +return +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +122 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +122 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 +return +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +123 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +124 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +124 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 +return +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +123 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 +return +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +125 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +125 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 +return +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +126 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +126 +this +1854778591 +1 +this.classVar +22 +1 +parameter +22 +1 +return +22 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +127 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +127 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 +return +529 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +128 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +128 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 +return +529 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +129 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +130 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +130 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 +return +529 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +129 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 +return +529 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +131 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +131 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 +return +529 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +132 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +132 +this +1854778591 +1 +this.classVar +23 +1 +parameter +23 +1 +return +529 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +133 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +133 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 +return +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +134 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +134 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 +return +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +135 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +136 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +136 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 +return +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +135 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 +return +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +137 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +137 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 +exception +157627094 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +138 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 +this_invocation_nonce +138 +this +1854778591 +1 +this.classVar +24 +1 +parameter +24 +1 +exception +932607259 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +139 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +139 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 +exception +1740000325 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +140 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +140 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 +exception +1142020464 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +141 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +142 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +142 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 +exception +1682092198 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this_invocation_nonce +141 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 +return +0 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +143 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +this_invocation_nonce +143 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 +exception +1626877848 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +144 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +this_invocation_nonce +144 +this +1854778591 +1 +this.classVar +25 +1 +parameter +25 +1 +exception +905544614 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +145 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +145 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 +return +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +146 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +146 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 +return +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +147 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +148 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +148 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 +return +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +147 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 +return +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +149 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +149 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 +return +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +150 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +150 +this +1854778591 +1 +this.classVar +26 +1 +parameter +26 +1 +return +26 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +151 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +151 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 +return +729 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +152 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +152 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 +return +729 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +153 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +154 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +154 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 +return +729 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +153 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 +return +729 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +155 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +155 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 +return +729 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +156 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +156 +this +1854778591 +1 +this.classVar +27 +1 +parameter +27 +1 +return +729 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +157 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +157 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 +return +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +158 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this_invocation_nonce +158 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 +return +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +159 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +160 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this_invocation_nonce +160 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 +return +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +159 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 +return +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +161 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this_invocation_nonce +161 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 +return +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +162 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this_invocation_nonce +162 +this +1854778591 +1 +this.classVar +28 +1 +parameter +28 +1 +return +28 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +163 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +163 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 +return +841 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +164 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this_invocation_nonce +164 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 +return +841 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +165 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +166 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this_invocation_nonce +166 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 +return +841 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this_invocation_nonce +165 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 +return +841 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +167 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this_invocation_nonce +167 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 +return +841 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +168 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this_invocation_nonce +168 +this +1854778591 +1 +this.classVar +29 +1 +parameter +29 +1 +return +841 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +169 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +169 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 +exception +2137589296 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this_invocation_nonce +170 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +this_invocation_nonce +170 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 +exception +249515771 +1 +exception.getClass().getName() +"java.lang.ArithmeticException" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this_invocation_nonce +171 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this_invocation_nonce +172 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +this_invocation_nonce +172 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 +exception +796533847 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +this_invocation_nonce +171 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 +return +0 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this_invocation_nonce +173 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +this_invocation_nonce +173 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 +exception +1449621165 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this_invocation_nonce +174 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 + +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +this_invocation_nonce +174 +this +1854778591 +1 +this.classVar +30 +1 +parameter +30 +1 +exception +1627960023 +1 +exception.getClass().getName() +"java.lang.Exception" +1 + diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-cset-nojdk.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-cset-nojdk.goal new file mode 100644 index 0000000000..95f6ded046 --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-cset-nojdk.goal @@ -0,0 +1,82 @@ + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.() enter +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.() exit + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isEvan(int parameter) enter + [1] [Parameter parameter] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isEvan(int parameter) exit + [1] [Parameter parameter] + [1] [return] + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int parameter) enter + [1] [Parameter parameter] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int parameter) exit + [1] [Parameter parameter] + [1] [return] + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase1(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase1(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase2(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase2(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase3(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase3(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase4(int parameter) enter + [1] [Parameter parameter] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase4(int parameter) exit + [1] [Parameter parameter] + [1] [return] + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase5(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase5(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase6(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase6(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object obj) enter + [1] [Parameter obj] + [1] [Class of obj] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object obj) exit + [1] [Parameter obj] + [1] [Class of obj] + [1] [return] + [1] [this] + [1] [Field classVar] diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-cset.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-cset.goal new file mode 100644 index 0000000000..95f6ded046 --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-cset.goal @@ -0,0 +1,82 @@ + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.() enter +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.() exit + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isEvan(int parameter) enter + [1] [Parameter parameter] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isEvan(int parameter) exit + [1] [Parameter parameter] + [1] [return] + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int parameter) enter + [1] [Parameter parameter] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.isFiveTimes(int parameter) exit + [1] [Parameter parameter] + [1] [return] + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase1(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase1(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase2(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase2(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase3(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase3(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase4(int parameter) enter + [1] [Parameter parameter] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase4(int parameter) exit + [1] [Parameter parameter] + [1] [return] + [1] [this] + [1] [Field classVar] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase5(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase5(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase6(int parameter) enter + [2] [Parameter parameter, Field classVar] + [1] [this] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.testCase6(int parameter) exit + [3] [Parameter parameter, return, Field classVar] + [1] [this] + +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object obj) enter + [1] [Parameter obj] + [1] [Class of obj] + [1] [this] + [1] [Field classVar] +Variable sets for ExceptionHandling.DaikonAnalyseExceptions.equals(java.lang.Object obj) exit + [1] [Parameter obj] + [1] [Class of obj] + [1] [return] + [1] [this] + [1] [Field classVar] diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-daikon.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-daikon.goal new file mode 100644 index 0000000000..f6f9c4838a --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-daikon.goal @@ -0,0 +1,162 @@ +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions:::OBJECT +this has only one value +this.classVar >= 2 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXIT +this.classVar == 42 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION +this == orig(this) +this.classVar == parameter +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +exception != null +exception.getClass().getName() == java.lang.Exception.class +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 +this.classVar == return +return == orig(this.classVar) +return == orig(parameter) +return == 0 (mod 2) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 +this.classVar == 1 (mod 2) +return == this.classVar**2 +this.classVar < return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +(this.classVar == 0 (mod 2)) <==> (this.classVar == return) +(this.classVar == 0 (mod 2)) ==> (return == 0 (mod 2)) +(this.classVar == 1 (mod 2)) <==> (this.classVar < return) +(this.classVar == 1 (mod 2)) ==> (return == this.classVar**2) +return % this.classVar == 0 +this.classVar <= return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTION +this == orig(this) +this.classVar == parameter +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +exception.getClass().getName() == java.lang.ArithmeticException.class +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 +this.classVar == return +return == orig(this.classVar) +return == orig(parameter) +return == 0 (mod 2) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 +this.classVar == 1 (mod 2) +return == this.classVar**2 +this.classVar < return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +(this.classVar == 0 (mod 2)) <==> (this.classVar == return) +(this.classVar == 0 (mod 2)) ==> (return == 0 (mod 2)) +(this.classVar == 1 (mod 2)) <==> (this.classVar < return) +(this.classVar == 1 (mod 2)) ==> (return == this.classVar**2) +return % this.classVar == 0 +this.classVar <= return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 +this.classVar <= return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 +return == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +(return == 0) ==> (return is a pointer) +return >= 0 +return % this.classVar == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION +this == orig(this) +this.classVar == parameter +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +exception.getClass().getName() is printable +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 +exception.getClass().getName() == java.lang.Exception.class +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT +exception.getClass().getName() == java.lang.ArithmeticException.class +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 +this.classVar == return +return == orig(this.classVar) +return == orig(parameter) +return == 0 (mod 2) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 +this.classVar == 1 (mod 2) +return == this.classVar**2 +this.classVar < return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +(this.classVar == 0 (mod 2)) <==> (this.classVar == return) +(this.classVar == 0 (mod 2)) ==> (return == 0 (mod 2)) +(this.classVar == 1 (mod 2)) <==> (this.classVar < return) +(this.classVar == 1 (mod 2)) ==> (return == this.classVar**2) +return % this.classVar == 0 +this.classVar <= return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION +this == orig(this) +this.classVar == parameter +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +exception.getClass().getName() == java.lang.Exception.class +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 +this.classVar == return +return == orig(this.classVar) +return == orig(parameter) +return == 0 (mod 2) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 +this.classVar == 1 (mod 2) +return == this.classVar**2 +this.classVar < return +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT +this.classVar == orig(this.classVar) +this.classVar == orig(parameter) +(this.classVar == 0 (mod 2)) <==> (this.classVar == return) +(this.classVar == 0 (mod 2)) ==> (return == 0 (mod 2)) +(this.classVar == 1 (mod 2)) <==> (this.classVar < return) +(this.classVar == 1 (mod 2)) ==> (return == this.classVar**2) +return % this.classVar == 0 +this.classVar <= return diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-jml.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-jml.goal new file mode 100644 index 0000000000..b7b4f60ae9 --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-jml.goal @@ -0,0 +1,194 @@ +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions:::OBJECT + Variables: this this.classVar +this != null +this.classVar >= 2 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.DaikonAnalyseExceptions():::EXIT + Variables: this this.classVar +this.classVar == 42 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::ENTER + Variables: this this.classVar parameter +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +this == \old(this) +this.classVar == parameter +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +Exception != null +Exception.getClass().getName() == java.lang.Exception.class.getName() +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXCEPTION20 + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT23 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \result +\result == \old(this.classVar) +\result == \old(parameter) +\result % 2 == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT25 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar % 2 == 1 +\result == this.classVar*this.classVar +this.classVar < \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase1(int):::EXIT + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +(this.classVar % 2 == 0) <==> (this.classVar == \result) +(this.classVar % 2 == 0) ==> (\result % 2 == 0) +(this.classVar % 2 == 1) <==> (this.classVar < \result) +(this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar) +\result % this.classVar == 0 +this.classVar <= \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::ENTER + Variables: this this.classVar parameter +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTION + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +this == \old(this) +this.classVar == parameter +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +Exception.getClass().getName() == java.lang.ArithmeticException.class.getName() +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXCEPTIONUNCAUGHT + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT35 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \result +\result == \old(this.classVar) +\result == \old(parameter) +\result % 2 == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT37 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar % 2 == 1 +\result == this.classVar*this.classVar +this.classVar < \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase2(int):::EXIT + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +(this.classVar % 2 == 0) <==> (this.classVar == \result) +(this.classVar % 2 == 0) ==> (\result % 2 == 0) +(this.classVar % 2 == 1) <==> (this.classVar < \result) +(this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar) +\result % this.classVar == 0 +this.classVar <= \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::ENTER + Variables: this this.classVar parameter +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT46 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar <= \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT48 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +\result == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase3(int):::EXIT + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +(\result == 0) ==> (\result is a pointer) +\result >= 0 +\result % this.classVar == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::ENTER + Variables: this this.classVar parameter +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +this == \old(this) +this.classVar == parameter +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +warning: method daikon.inv.unary.string.PrintableString.format(OutputFormat:JML) needs to be implemented: exception.getClass().getName() is printable +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTION80 + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +Exception.getClass().getName() == java.lang.Exception.class.getName() +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXCEPTIONUNCAUGHT + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +Exception.getClass().getName() == java.lang.ArithmeticException.class.getName() +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT84 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \result +\result == \old(this.classVar) +\result == \old(parameter) +\result % 2 == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT86 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar % 2 == 1 +\result == this.classVar*this.classVar +this.classVar < \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase5(int):::EXIT + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +(this.classVar % 2 == 0) <==> (this.classVar == \result) +(this.classVar % 2 == 0) ==> (\result % 2 == 0) +(this.classVar % 2 == 1) <==> (this.classVar < \result) +(this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar) +\result % this.classVar == 0 +this.classVar <= \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::ENTER + Variables: this this.classVar parameter +this.classVar == parameter +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +this == \old(this) +this.classVar == parameter +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +Exception.getClass().getName() == java.lang.Exception.class.getName() +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION96 + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXCEPTION99 + Variables: this this.classVar parameter exception exception.getClass().getName() orig(this) orig(this.classVar) orig(parameter) +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT102 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \result +\result == \old(this.classVar) +\result == \old(parameter) +\result % 2 == 0 +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT104 + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar % 2 == 1 +\result == this.classVar*this.classVar +this.classVar < \result +=========================================================================== +ExceptionHandling.DaikonAnalyseExceptions.testCase6(int):::EXIT + Variables: this this.classVar parameter return orig(this) orig(this.classVar) orig(parameter) +this.classVar == \old(this.classVar) +this.classVar == \old(parameter) +(this.classVar % 2 == 0) <==> (this.classVar == \result) +(this.classVar % 2 == 0) ==> (\result % 2 == 0) +(this.classVar % 2 == 1) <==> (this.classVar < \result) +(this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar) +\result % this.classVar == 0 +this.classVar <= \result diff --git a/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-merge-jml.goal b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-merge-jml.goal new file mode 100644 index 0000000000..4dd0c9a7f6 --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/ExceptionHandling.txt-merge-jml.goal @@ -0,0 +1,228 @@ +package ExceptionHandling; + +public class DaikonAnalyseExceptions { + + /*@ invariant this != null; */ + /*@ invariant this.classVar >= 2; */ + public int classVar = 42; + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires true; + @*/ + public boolean isEvan(int parameter) { + return ((parameter % 2) == 0); + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires true; + @*/ + public boolean isFiveTimes(int parameter) { + return ((parameter % 5) == 0); + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires this.classVar == parameter; + @ ensures this.classVar == \old(this.classVar); + @ ensures this.classVar == \old(parameter); + @ ensures (this.classVar % 2 == 0) <==> (this.classVar == \result); + @ ensures (this.classVar % 2 == 0) ==> (\result % 2 == 0); + @ ensures (this.classVar % 2 == 1) <==> (this.classVar < \result); + @ ensures (this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar); + @ ensures \result % this.classVar == 0; + @ ensures this.classVar <= \result; + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.classVar == parameter; + @ requires this.classVar == \old(this.classVar); + @ requires this.classVar == \old(parameter); + @ requires Exception != null; + @ requires Exception.getClass().getName() == java.lang.Exception.class.getName(); + @*/ + /** + * Throws one Exception. + */ + public int testCase1(int parameter) throws Exception { + if ((parameter % 5) == 0) { + throw new Exception(); + } + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires this.classVar == parameter; + @ ensures this.classVar == \old(this.classVar); + @ ensures this.classVar == \old(parameter); + @ ensures (this.classVar % 2 == 0) <==> (this.classVar == \result); + @ ensures (this.classVar % 2 == 0) ==> (\result % 2 == 0); + @ ensures (this.classVar % 2 == 1) <==> (this.classVar < \result); + @ ensures (this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar); + @ ensures \result % this.classVar == 0; + @ ensures this.classVar <= \result; + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.classVar == parameter; + @ requires this.classVar == \old(this.classVar); + @ requires this.classVar == \old(parameter); + @ requires Exception.getClass().getName() == java.lang.ArithmeticException.class.getName(); + @*/ + /** + * Throws one derivated Exception. + */ + public int testCase2(int parameter) throws Exception { + int x = 42 / (parameter % 5); + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires this.classVar == parameter; + @ ensures this.classVar == \old(this.classVar); + @ ensures this.classVar == \old(parameter); + @ ensures (\result == 0) ==> (\result is a pointer); + @ ensures \result >= 0; + @ ensures \result % this.classVar == 0; + @*/ + /** + * Catches a derivated Exception. + */ + public int testCase3(int parameter) { + try { + return testCase1(parameter); + } catch (Exception e) { + return 0; + } + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires true; + @*/ + /** + * Throws an Exception and one derivated Exception, which + * are both be catched in the same Method. + * + * Creates an Exit-PPT and ThrowNN-PPT in the same call. + * --> error! dont call! + */ + public int testCase4(int parameter) { + try { + if ((parameter % 5) == 0) { + throw new Exception(); + } + int x = 42 / (parameter % 5); + if ((parameter % 2) == 0) { + return parameter; + } else { + return parameter * parameter; + } + } catch (Exception e) { + return 0; + } + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires this.classVar == parameter; + @ ensures this.classVar == \old(this.classVar); + @ ensures this.classVar == \old(parameter); + @ ensures (this.classVar % 2 == 0) <==> (this.classVar == \result); + @ ensures (this.classVar % 2 == 0) ==> (\result % 2 == 0); + @ ensures (this.classVar % 2 == 1) <==> (this.classVar < \result); + @ ensures (this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar); + @ ensures \result % this.classVar == 0; + @ ensures this.classVar <= \result; + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.classVar == parameter; + @ requires this.classVar == \old(this.classVar); + @ requires this.classVar == \old(parameter); + @*/ + /** + * Throws an Exception and one derivated Exception, + */ + public int testCase5(int parameter) throws Exception { + if ((parameter % 5) == 0) { + throw new Exception(); + } + int x = 42 / (parameter % 6); + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + /*@ + @ public normal_behavior // Generated by Daikon + @ requires this.classVar == parameter; + @ ensures this.classVar == \old(this.classVar); + @ ensures this.classVar == \old(parameter); + @ ensures (this.classVar % 2 == 0) <==> (this.classVar == \result); + @ ensures (this.classVar % 2 == 0) ==> (\result % 2 == 0); + @ ensures (this.classVar % 2 == 1) <==> (this.classVar < \result); + @ ensures (this.classVar % 2 == 1) ==> (\result == this.classVar*this.classVar); + @ ensures \result % this.classVar == 0; + @ ensures this.classVar <= \result; + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.classVar == parameter; + @ requires this.classVar == \old(this.classVar); + @ requires this.classVar == \old(parameter); + @ requires Exception.getClass().getName() == java.lang.Exception.class.getName(); + @*/ + /** + * Throws two Exceptions. + * Creates Two THROWNN-PPTs. + */ + public int testCase6(int parameter) throws Exception { + if ((parameter % 5) == 0) { + throw new Exception(); + } + if ((parameter % 6) == 0) { + throw new Exception(); + } + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + ///** + //* check the Valid of the new created Stackframe Table + //*/ + //public int paratest(int i , int[] ia , Integer in, Integer[] inA, float flo, float[] floA, Float floa, Float[] floaA){ + //// char cc = 'C'; + //// int[] iii = {3,4,5}; + //// int blub= 6; + //// Integer john = 45; + //// Integer[] huhu = {13,12}; + //// float bu = 0.5f; + //// Float hehe = 4545.0f; + //// boolean b = true; + //// byte by = 0x4; + //// char c = 'C'; + //// short s = 7; + + //for (int i1 = -2; i1 <= 2; i1++) { + //i; + //} + //return 47; + //} +} diff --git a/tests/daikon-tests/ExceptionHandling/Makefile b/tests/daikon-tests/ExceptionHandling/Makefile new file mode 100644 index 0000000000..d941093fc0 --- /dev/null +++ b/tests/daikon-tests/ExceptionHandling/Makefile @@ -0,0 +1,13 @@ +########################################################################### + +# Read Makefile.common for what all of this means + +MAIN_CLASS:= ExceptionHandling.ExceptionHTest +THISPWD:=$(shell pwd) + +CHICORY_USER_FLAGS:= --purity-file=${THISPWD}/DaikonAnalyse.pure + +include ../../Makefile.common + +instrument-files-revise: + echo "ExceptionHandling/DaikonAnalyseExceptions.java" >| ${INST_LIST_FILE} diff --git a/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-chicory.goal b/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-chicory.goal index 20a4f2e30d..dc17a41543 100644 --- a/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-chicory.goal +++ b/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for six170.FixedSizeSet -// Declarations written Thu Jun 04 13:23:11 PDT 2015 +// Declarations written Mon Jul 31 13:14:44 PDT 2017 decl-version 2.0 var-comparability none @@ -11,10 +11,36 @@ ppt six170.FixedSizeSet.FixedSizeSet():::EXIT26 ppt-type subexit parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type boolean[] + rep-type hashcode + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits[..] + var-kind array + enclosing-var this.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 + +ppt six170.FixedSizeSet.FixedSizeSet():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.FixedSizeSet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -25,22 +51,34 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] rep-type boolean[] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.FixedSizeSet.add(int):::ENTER ppt-type enter parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -51,7 +89,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -59,7 +97,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -69,11 +107,43 @@ ppt six170.FixedSizeSet.add(int):::EXIT34 ppt-type subexit parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type boolean[] + rep-type hashcode + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits[..] + var-kind array + enclosing-var this.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt six170.FixedSizeSet.add(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.FixedSizeSet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits var-kind field bits @@ -83,7 +153,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -91,20 +161,32 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.FixedSizeSet.remove(int):::ENTER ppt-type enter parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -115,7 +197,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -123,7 +205,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -133,11 +215,43 @@ ppt six170.FixedSizeSet.remove(int):::EXIT42 ppt-type subexit parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type boolean[] + rep-type hashcode + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits[..] + var-kind array + enclosing-var this.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt six170.FixedSizeSet.remove(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.FixedSizeSet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits var-kind field bits @@ -147,7 +261,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -155,20 +269,32 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.FixedSizeSet.contains(int):::ENTER ppt-type enter parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -179,7 +305,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -187,7 +313,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -197,10 +323,10 @@ ppt six170.FixedSizeSet.contains(int):::EXIT49 ppt-type subexit parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -211,7 +337,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -219,25 +345,69 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt six170.FixedSizeSet.contains(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.FixedSizeSet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type boolean[] + rep-type hashcode + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits[..] + var-kind array + enclosing-var this.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt six170.FixedSizeSet.intersect(six170.FixedSizeSet):::ENTER ppt-type enter parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -248,7 +418,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -256,7 +426,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode flags is_param @@ -268,7 +438,7 @@ variable other.bits rep-type hashcode comparability 22 variable other.bits[..] - var-kind array + var-kind array enclosing-var other.bits array 1 dec-type boolean[] @@ -279,11 +449,56 @@ ppt six170.FixedSizeSet.intersect(six170.FixedSizeSet):::EXIT62 ppt-type subexit parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type boolean[] + rep-type hashcode + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits[..] + var-kind array + enclosing-var this.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable other + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode flags is_param comparability 22 +variable other.bits + var-kind field bits + enclosing-var other + dec-type boolean[] + rep-type hashcode + comparability 22 +variable other.bits[..] + var-kind array + enclosing-var other.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + +ppt six170.FixedSizeSet.intersect(six170.FixedSizeSet):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.FixedSizeSet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits var-kind field bits @@ -293,7 +508,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -301,7 +516,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode flags is_param @@ -313,21 +528,33 @@ variable other.bits rep-type hashcode comparability 22 variable other.bits[..] - var-kind array + var-kind array enclosing-var other.bits array 1 dec-type boolean[] rep-type boolean[] comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.FixedSizeSet.union(six170.FixedSizeSet):::ENTER ppt-type enter parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits @@ -338,7 +565,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -346,7 +573,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode flags is_param @@ -358,7 +585,7 @@ variable other.bits rep-type hashcode comparability 22 variable other.bits[..] - var-kind array + var-kind array enclosing-var other.bits array 1 dec-type boolean[] @@ -369,11 +596,56 @@ ppt six170.FixedSizeSet.union(six170.FixedSizeSet):::EXIT74 ppt-type subexit parent parent six170.FixedSizeSet:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type boolean[] + rep-type hashcode + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable this.bits[..] + var-kind array + enclosing-var this.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + parent six170.FixedSizeSet:::OBJECT 1 +variable other + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode flags is_param comparability 22 +variable other.bits + var-kind field bits + enclosing-var other + dec-type boolean[] + rep-type hashcode + comparability 22 +variable other.bits[..] + var-kind array + enclosing-var other.bits + array 1 + dec-type boolean[] + rep-type boolean[] + comparability 22 + +ppt six170.FixedSizeSet.union(six170.FixedSizeSet):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.FixedSizeSet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.FixedSizeSet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits var-kind field bits @@ -383,7 +655,7 @@ variable this.bits comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -391,7 +663,7 @@ variable this.bits[..] comparability 22 parent six170.FixedSizeSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode flags is_param @@ -403,20 +675,32 @@ variable other.bits rep-type hashcode comparability 22 variable other.bits[..] - var-kind array + var-kind array enclosing-var other.bits array 1 dec-type boolean[] rep-type boolean[] comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.FixedSizeSet:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type six170.FixedSizeSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.bits var-kind field bits @@ -425,7 +709,7 @@ variable this.bits rep-type hashcode comparability 22 variable this.bits[..] - var-kind array + var-kind array enclosing-var this.bits array 1 dec-type boolean[] @@ -440,10 +724,10 @@ six170.FixedSizeSet.FixedSizeSet():::EXIT26 this_invocation_nonce 0 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -457,10 +741,10 @@ six170.FixedSizeSet.FixedSizeSet():::EXIT26 this_invocation_nonce 1 this -1926788825 +1164175787 1 this.bits -1633868662 +290658609 1 this.bits[..] [false false false false false false false false] @@ -470,10 +754,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -486,10 +770,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -505,10 +789,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 3 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -521,10 +805,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 3 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -540,10 +824,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 4 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -556,10 +840,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 4 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -575,10 +859,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 5 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -591,10 +875,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 5 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -610,10 +894,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 6 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -626,10 +910,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 6 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -645,10 +929,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 7 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -661,10 +945,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 7 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -680,10 +964,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 8 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -696,10 +980,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 8 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -715,10 +999,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 9 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -731,10 +1015,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 9 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -750,10 +1034,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 10 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -766,10 +1050,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 10 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -782,10 +1066,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 11 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -798,10 +1082,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 11 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -817,10 +1101,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 12 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -833,10 +1117,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 12 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -852,10 +1136,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 13 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -868,10 +1152,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 13 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -887,10 +1171,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 14 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -903,10 +1187,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 14 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -922,10 +1206,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 15 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -938,10 +1222,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 15 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -957,10 +1241,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 16 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -973,10 +1257,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 16 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -992,10 +1276,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 17 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1008,10 +1292,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 17 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1027,10 +1311,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 18 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1043,10 +1327,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 18 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1062,10 +1346,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 19 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1078,10 +1362,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 19 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1094,10 +1378,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 20 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1110,10 +1394,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 20 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1129,10 +1413,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 21 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1145,10 +1429,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 21 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1164,10 +1448,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 22 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1180,10 +1464,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 22 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1199,10 +1483,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 23 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1215,10 +1499,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 23 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1234,10 +1518,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 24 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1250,10 +1534,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 24 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1269,10 +1553,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 25 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1285,10 +1569,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 25 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1304,10 +1588,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 26 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1320,10 +1604,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 26 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1339,10 +1623,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 27 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1355,10 +1639,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 27 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1374,10 +1658,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 28 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false false] @@ -1390,10 +1674,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 28 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1406,10 +1690,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 29 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1422,10 +1706,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 29 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1441,10 +1725,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 30 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1457,10 +1741,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 30 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1476,10 +1760,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 31 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1492,10 +1776,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 31 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1511,10 +1795,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 32 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1527,10 +1811,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 32 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1546,10 +1830,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 33 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1562,10 +1846,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 33 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1581,10 +1865,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 34 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1597,10 +1881,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 34 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1616,10 +1900,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 35 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1632,10 +1916,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 35 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1651,10 +1935,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 36 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1667,10 +1951,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 36 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1686,10 +1970,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 37 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1702,10 +1986,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 37 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1718,10 +2002,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 38 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1734,10 +2018,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 38 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1753,10 +2037,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 39 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1769,10 +2053,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 39 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1788,10 +2072,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 40 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1804,10 +2088,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 40 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1823,10 +2107,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 41 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1839,10 +2123,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 41 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1858,10 +2142,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 42 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1874,10 +2158,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 42 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1893,10 +2177,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 43 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1909,10 +2193,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 43 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1928,10 +2212,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 44 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1944,10 +2228,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 44 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1963,10 +2247,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 45 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1979,10 +2263,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 45 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -1998,10 +2282,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 46 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false false] @@ -2014,10 +2298,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 46 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2030,10 +2314,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 47 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2046,10 +2330,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 47 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2065,10 +2349,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 48 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2081,10 +2365,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 48 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2100,10 +2384,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 49 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2116,10 +2400,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 49 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2135,10 +2419,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 50 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2151,10 +2435,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 50 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2170,10 +2454,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 51 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2186,10 +2470,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 51 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2205,10 +2489,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 52 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2221,10 +2505,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 52 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2240,10 +2524,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 53 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2256,10 +2540,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 53 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2275,10 +2559,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 54 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2291,10 +2575,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 54 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2310,10 +2594,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 55 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2326,10 +2610,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 55 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2342,10 +2626,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 56 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2358,10 +2642,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 56 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2377,10 +2661,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 57 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2393,10 +2677,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 57 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2412,10 +2696,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 58 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2428,10 +2712,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 58 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2447,10 +2731,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 59 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2463,10 +2747,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 59 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2482,10 +2766,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 60 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2498,10 +2782,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 60 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2517,10 +2801,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 61 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2533,10 +2817,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 61 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2552,10 +2836,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 62 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2568,10 +2852,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 62 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2587,10 +2871,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 63 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2603,10 +2887,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 63 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2622,10 +2906,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 64 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2638,10 +2922,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 64 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2654,10 +2938,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 65 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2670,10 +2954,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 65 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2689,10 +2973,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 66 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2705,10 +2989,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 66 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2724,10 +3008,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 67 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2740,10 +3024,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 67 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2759,10 +3043,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 68 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2775,10 +3059,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 68 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2794,10 +3078,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 69 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2810,10 +3094,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 69 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2829,10 +3113,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 70 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2845,10 +3129,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 70 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2864,10 +3148,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 71 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2880,10 +3164,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 71 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2899,10 +3183,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 72 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2915,10 +3199,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 72 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2934,10 +3218,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 73 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2950,10 +3234,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 73 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2966,10 +3250,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 74 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -2982,10 +3266,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 74 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3001,10 +3285,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 75 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3017,10 +3301,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 75 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3036,10 +3320,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 76 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3052,10 +3336,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 76 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3071,10 +3355,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 77 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3087,10 +3371,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 77 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3106,10 +3390,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 78 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3122,10 +3406,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 78 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3141,10 +3425,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 79 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3157,10 +3441,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 79 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3176,10 +3460,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 80 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3192,10 +3476,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 80 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3211,10 +3495,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 81 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3227,10 +3511,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 81 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3246,10 +3530,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 82 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3262,10 +3546,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 82 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3278,10 +3562,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 83 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3294,10 +3578,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 83 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3313,10 +3597,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 84 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3329,10 +3613,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 84 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3348,10 +3632,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 85 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3364,10 +3648,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 85 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3383,10 +3667,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 86 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3399,10 +3683,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 86 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3418,10 +3702,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 87 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3434,10 +3718,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 87 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3453,10 +3737,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 88 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3469,10 +3753,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 88 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3488,10 +3772,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 89 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3504,10 +3788,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 89 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3523,10 +3807,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 90 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3539,10 +3823,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 90 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3558,10 +3842,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 91 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3574,10 +3858,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 91 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3590,10 +3874,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 92 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3606,10 +3890,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 92 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3625,10 +3909,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 93 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3641,10 +3925,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 93 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3660,10 +3944,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 94 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3676,10 +3960,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 94 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3695,10 +3979,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 95 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3711,10 +3995,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 95 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3730,10 +4014,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 96 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3746,10 +4030,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 96 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3765,10 +4049,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 97 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3781,10 +4065,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 97 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3800,10 +4084,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 98 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3816,10 +4100,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 98 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3835,10 +4119,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 99 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3851,10 +4135,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 99 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3870,10 +4154,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 100 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false false false false false true] @@ -3886,10 +4170,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 100 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -3902,10 +4186,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 101 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -3918,10 +4202,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 101 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -3937,10 +4221,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 102 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -3953,10 +4237,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 102 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -3972,10 +4256,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 103 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -3988,10 +4272,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 103 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4007,10 +4291,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 104 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4023,10 +4307,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 104 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4042,10 +4326,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 105 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4058,10 +4342,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 105 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4077,10 +4361,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 106 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4093,10 +4377,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 106 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4112,10 +4396,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 107 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4128,10 +4412,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 107 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4147,10 +4431,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 108 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4163,10 +4447,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 108 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4182,10 +4466,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 109 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4198,10 +4482,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 109 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4214,10 +4498,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 110 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4230,10 +4514,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 110 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4249,10 +4533,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 111 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4265,10 +4549,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 111 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4284,10 +4568,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 112 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4300,10 +4584,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 112 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4319,10 +4603,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 113 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4335,10 +4619,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 113 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4354,10 +4638,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 114 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4370,10 +4654,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 114 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4389,10 +4673,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 115 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4405,10 +4689,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 115 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4424,10 +4708,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 116 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4440,10 +4724,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 116 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4459,10 +4743,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 117 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4475,10 +4759,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 117 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4494,10 +4778,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 118 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4510,10 +4794,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 118 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4526,10 +4810,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 119 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4542,10 +4826,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 119 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4561,10 +4845,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 120 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4577,10 +4861,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 120 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4596,10 +4880,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 121 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4612,10 +4896,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 121 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4631,10 +4915,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 122 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4647,10 +4931,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 122 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4666,10 +4950,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 123 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4682,10 +4966,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 123 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4701,10 +4985,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 124 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4717,10 +5001,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 124 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4736,10 +5020,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 125 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4752,10 +5036,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 125 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4771,10 +5055,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 126 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4787,10 +5071,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 126 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4806,10 +5090,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 127 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4822,10 +5106,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 127 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4838,10 +5122,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 128 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4854,10 +5138,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 128 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4873,10 +5157,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 129 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4889,10 +5173,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 129 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4908,10 +5192,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 130 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4924,10 +5208,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 130 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4943,10 +5227,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 131 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4959,10 +5243,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 131 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4978,10 +5262,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 132 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -4994,10 +5278,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 132 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5013,10 +5297,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 133 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5029,10 +5313,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 133 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5048,10 +5332,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 134 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5064,10 +5348,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 134 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5083,10 +5367,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 135 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5099,10 +5383,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 135 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5118,10 +5402,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 136 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5134,10 +5418,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 136 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5150,10 +5434,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 137 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5166,10 +5450,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 137 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5185,10 +5469,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 138 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5201,10 +5485,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 138 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5220,10 +5504,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 139 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5236,10 +5520,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 139 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5255,10 +5539,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 140 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5271,10 +5555,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 140 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5290,10 +5574,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 141 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5306,10 +5590,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 141 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5325,10 +5609,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 142 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5341,10 +5625,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 142 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5360,10 +5644,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 143 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5376,10 +5660,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 143 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5395,10 +5679,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 144 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5411,10 +5695,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 144 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5430,10 +5714,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 145 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5446,10 +5730,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 145 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5462,10 +5746,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 146 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5478,10 +5762,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 146 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5497,10 +5781,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 147 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5513,10 +5797,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 147 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5532,10 +5816,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 148 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5548,10 +5832,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 148 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5567,10 +5851,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 149 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5583,10 +5867,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 149 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5602,10 +5886,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 150 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5618,10 +5902,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 150 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5637,10 +5921,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 151 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5653,10 +5937,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 151 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5672,10 +5956,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 152 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5688,10 +5972,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 152 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5707,10 +5991,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 153 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5723,10 +6007,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 153 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5742,10 +6026,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 154 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false false false false true] @@ -5758,10 +6042,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 154 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5774,10 +6058,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 155 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5790,10 +6074,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 155 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5809,10 +6093,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 156 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5825,10 +6109,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 156 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5844,10 +6128,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 157 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5860,10 +6144,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 157 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5879,10 +6163,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 158 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5895,10 +6179,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 158 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5914,10 +6198,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 159 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5930,10 +6214,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 159 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5949,10 +6233,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 160 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5965,10 +6249,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 160 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -5984,10 +6268,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 161 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6000,10 +6284,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 161 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6019,10 +6303,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 162 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6035,10 +6319,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 162 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6054,10 +6338,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 163 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6070,10 +6354,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 163 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6086,10 +6370,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 164 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6102,10 +6386,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 164 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6121,10 +6405,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 165 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6137,10 +6421,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 165 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6156,10 +6440,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 166 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6172,10 +6456,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 166 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6191,10 +6475,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 167 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6207,10 +6491,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 167 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6226,10 +6510,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 168 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6242,10 +6526,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 168 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6261,10 +6545,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 169 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6277,10 +6561,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 169 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6296,10 +6580,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 170 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6312,10 +6596,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 170 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6331,10 +6615,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 171 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6347,10 +6631,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 171 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6366,10 +6650,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 172 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false false false false true] @@ -6382,10 +6666,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 172 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6398,10 +6682,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 173 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6414,10 +6698,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 173 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6433,10 +6717,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 174 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6449,10 +6733,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 174 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6468,10 +6752,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 175 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6484,10 +6768,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 175 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6503,10 +6787,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 176 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6519,10 +6803,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 176 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6538,10 +6822,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 177 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6554,10 +6838,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 177 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6573,10 +6857,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 178 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6589,10 +6873,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 178 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6608,10 +6892,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 179 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6624,10 +6908,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 179 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6643,10 +6927,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 180 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6659,10 +6943,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 180 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6678,10 +6962,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 181 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6694,10 +6978,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 181 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6710,10 +6994,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 182 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6726,10 +7010,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 182 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6745,10 +7029,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 183 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6761,10 +7045,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 183 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6780,10 +7064,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 184 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6796,10 +7080,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 184 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6815,10 +7099,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 185 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6831,10 +7115,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 185 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6850,10 +7134,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 186 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6866,10 +7150,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 186 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6885,10 +7169,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 187 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6901,10 +7185,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 187 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6920,10 +7204,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 188 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6936,10 +7220,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 188 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6955,10 +7239,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 189 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6971,10 +7255,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 189 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -6990,10 +7274,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 190 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false false true] @@ -7006,10 +7290,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 190 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7022,10 +7306,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 191 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7038,10 +7322,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 191 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7057,10 +7341,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 192 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7073,10 +7357,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 192 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7092,10 +7376,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 193 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7108,10 +7392,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 193 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7127,10 +7411,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 194 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7143,10 +7427,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 194 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7162,10 +7446,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 195 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7178,10 +7462,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 195 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7197,10 +7481,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 196 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7213,10 +7497,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 196 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7232,10 +7516,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 197 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7248,10 +7532,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 197 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7267,10 +7551,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 198 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7283,10 +7567,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 198 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7302,10 +7586,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 199 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7318,10 +7602,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 199 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7334,10 +7618,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 200 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7350,10 +7634,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 200 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7369,10 +7653,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 201 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7385,10 +7669,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 201 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7404,10 +7688,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 202 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7420,10 +7704,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 202 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7439,10 +7723,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 203 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7455,10 +7739,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 203 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7474,10 +7758,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 204 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7490,10 +7774,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 204 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7509,10 +7793,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 205 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7525,10 +7809,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 205 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7544,10 +7828,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 206 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7560,10 +7844,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 206 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7579,10 +7863,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 207 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7595,10 +7879,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 207 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7614,10 +7898,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 208 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true false false false true] @@ -7630,10 +7914,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 208 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7646,10 +7930,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 209 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7662,10 +7946,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 209 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7681,10 +7965,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 210 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7697,10 +7981,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 210 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7716,10 +8000,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 211 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7732,10 +8016,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 211 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7751,10 +8035,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 212 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7767,10 +8051,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 212 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7786,10 +8070,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 213 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7802,10 +8086,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 213 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7821,10 +8105,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 214 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7837,10 +8121,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 214 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7856,10 +8140,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 215 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7872,10 +8156,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 215 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7891,10 +8175,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 216 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7907,10 +8191,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 216 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7926,10 +8210,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 217 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7942,10 +8226,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 217 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7958,10 +8242,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 218 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7974,10 +8258,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 218 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -7993,10 +8277,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 219 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8009,10 +8293,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 219 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8028,10 +8312,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 220 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8044,10 +8328,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 220 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8063,10 +8347,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 221 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8079,10 +8363,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 221 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8098,10 +8382,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 222 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8114,10 +8398,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 222 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8133,10 +8417,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 223 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8149,10 +8433,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 223 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8168,10 +8452,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 224 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8184,10 +8468,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 224 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8203,10 +8487,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 225 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8219,10 +8503,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 225 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8238,10 +8522,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 226 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8254,10 +8538,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 226 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8270,10 +8554,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 227 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8286,10 +8570,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 227 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8305,10 +8589,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 228 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8321,10 +8605,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 228 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8340,10 +8624,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 229 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8356,10 +8640,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 229 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8375,10 +8659,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 230 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8391,10 +8675,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 230 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8410,10 +8694,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 231 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8426,10 +8710,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 231 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8445,10 +8729,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 232 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8461,10 +8745,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 232 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8480,10 +8764,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 233 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8496,10 +8780,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 233 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8515,10 +8799,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 234 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8531,10 +8815,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 234 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8550,10 +8834,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 235 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8566,10 +8850,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 235 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8582,10 +8866,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 236 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8598,10 +8882,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 236 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8617,10 +8901,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 237 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8633,10 +8917,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 237 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8652,10 +8936,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 238 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8668,10 +8952,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 238 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8687,10 +8971,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 239 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8703,10 +8987,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 239 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8722,10 +9006,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 240 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8738,10 +9022,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 240 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8757,10 +9041,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 241 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8773,10 +9057,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 241 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8792,10 +9076,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 242 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8808,10 +9092,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 242 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8827,10 +9111,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 243 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8843,10 +9127,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 243 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8862,10 +9146,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 244 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8878,10 +9162,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 244 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8894,10 +9178,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 245 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8910,10 +9194,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 245 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8929,10 +9213,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 246 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8945,10 +9229,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 246 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8964,10 +9248,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 247 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8980,10 +9264,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 247 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -8999,10 +9283,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 248 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9015,10 +9299,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 248 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9034,10 +9318,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 249 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9050,10 +9334,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 249 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9069,10 +9353,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 250 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9085,10 +9369,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 250 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9104,10 +9388,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 251 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9120,10 +9404,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 251 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9139,10 +9423,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 252 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9155,10 +9439,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 252 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9174,10 +9458,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 253 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9190,10 +9474,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 253 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9206,10 +9490,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 254 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9222,10 +9506,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 254 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9241,10 +9525,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 255 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9257,10 +9541,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 255 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9276,10 +9560,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 256 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9292,10 +9576,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 256 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9311,10 +9595,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 257 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9327,10 +9611,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 257 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9346,10 +9630,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 258 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9362,10 +9646,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 258 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9381,10 +9665,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 259 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9397,10 +9681,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 259 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9416,10 +9700,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 260 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9432,10 +9716,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 260 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9451,10 +9735,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 261 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9467,10 +9751,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 261 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9486,10 +9770,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 262 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true false false true] @@ -9502,10 +9786,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 262 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9518,10 +9802,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 263 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9534,10 +9818,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 263 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9553,10 +9837,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 264 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9569,10 +9853,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 264 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9588,10 +9872,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 265 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9604,10 +9888,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 265 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9623,10 +9907,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 266 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9639,10 +9923,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 266 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9658,10 +9942,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 267 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9674,10 +9958,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 267 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9693,10 +9977,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 268 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9709,10 +9993,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 268 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9728,10 +10012,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 269 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9744,10 +10028,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 269 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9763,10 +10047,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 270 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9779,10 +10063,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 270 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9798,10 +10082,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 271 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9814,10 +10098,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 271 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9830,10 +10114,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 272 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9846,10 +10130,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 272 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9865,10 +10149,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 273 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9881,10 +10165,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 273 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9900,10 +10184,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 274 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9916,10 +10200,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 274 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9935,10 +10219,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 275 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9951,10 +10235,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 275 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9970,10 +10254,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 276 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -9986,10 +10270,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 276 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10005,10 +10289,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 277 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10021,10 +10305,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 277 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10040,10 +10324,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 278 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10056,10 +10340,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 278 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10075,10 +10359,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 279 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10091,10 +10375,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 279 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10110,10 +10394,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 280 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10126,10 +10410,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 280 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10142,10 +10426,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 281 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10158,10 +10442,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 281 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10177,10 +10461,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 282 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10193,10 +10477,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 282 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10212,10 +10496,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 283 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10228,10 +10512,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 283 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10247,10 +10531,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 284 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10263,10 +10547,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 284 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10282,10 +10566,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 285 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10298,10 +10582,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 285 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10317,10 +10601,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 286 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10333,10 +10617,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 286 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10352,10 +10636,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 287 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10368,10 +10652,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 287 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10387,10 +10671,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 288 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10403,10 +10687,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 288 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10422,10 +10706,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 289 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10438,10 +10722,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 289 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10454,10 +10738,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 290 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10470,10 +10754,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 290 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10489,10 +10773,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 291 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10505,10 +10789,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 291 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10524,10 +10808,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 292 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10540,10 +10824,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 292 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10559,10 +10843,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 293 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10575,10 +10859,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 293 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10594,10 +10878,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 294 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10610,10 +10894,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 294 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10629,10 +10913,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 295 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10645,10 +10929,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 295 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10664,10 +10948,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 296 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10680,10 +10964,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 296 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10699,10 +10983,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 297 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10715,10 +10999,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 297 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10734,10 +11018,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 298 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10750,10 +11034,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 298 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10766,10 +11050,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 299 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10782,10 +11066,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 299 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10801,10 +11085,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 300 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10817,10 +11101,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 300 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10836,10 +11120,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 301 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10852,10 +11136,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 301 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10871,10 +11155,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 302 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10887,10 +11171,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 302 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10906,10 +11190,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 303 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10922,10 +11206,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 303 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10941,10 +11225,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 304 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10957,10 +11241,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 304 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10976,10 +11260,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 305 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -10992,10 +11276,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 305 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11011,10 +11295,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 306 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11027,10 +11311,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 306 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11046,10 +11330,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 307 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11062,10 +11346,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 307 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11078,10 +11362,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 308 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11094,10 +11378,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 308 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11113,10 +11397,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 309 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11129,10 +11413,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 309 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11148,10 +11432,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 310 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11164,10 +11448,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 310 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11183,10 +11467,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 311 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11199,10 +11483,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 311 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11218,10 +11502,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 312 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11234,10 +11518,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 312 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11253,10 +11537,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 313 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11269,10 +11553,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 313 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11288,10 +11572,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 314 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11304,10 +11588,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 314 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11323,10 +11607,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 315 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11339,10 +11623,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 315 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11358,10 +11642,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 316 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false false true] @@ -11374,10 +11658,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 316 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11390,10 +11674,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 317 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11406,10 +11690,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 317 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11425,10 +11709,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 318 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11441,10 +11725,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 318 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11460,10 +11744,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 319 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11476,10 +11760,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 319 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11495,10 +11779,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 320 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11511,10 +11795,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 320 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11530,10 +11814,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 321 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11546,10 +11830,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 321 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11565,10 +11849,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 322 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11581,10 +11865,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 322 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11600,10 +11884,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 323 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11616,10 +11900,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 323 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11635,10 +11919,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 324 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11651,10 +11935,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 324 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11670,10 +11954,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 325 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11686,10 +11970,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 325 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11702,10 +11986,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 326 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11718,10 +12002,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 326 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11737,10 +12021,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 327 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11753,10 +12037,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 327 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11772,10 +12056,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 328 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11788,10 +12072,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 328 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11807,10 +12091,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 329 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11823,10 +12107,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 329 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11842,10 +12126,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 330 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11858,10 +12142,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 330 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11877,10 +12161,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 331 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11893,10 +12177,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 331 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11912,10 +12196,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 332 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11928,10 +12212,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 332 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11947,10 +12231,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 333 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11963,10 +12247,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 333 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11982,10 +12266,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 334 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -11998,10 +12282,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 334 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12014,10 +12298,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 335 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12030,10 +12314,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 335 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12049,10 +12333,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 336 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12065,10 +12349,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 336 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12084,10 +12368,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 337 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12100,10 +12384,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 337 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12119,10 +12403,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 338 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12135,10 +12419,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 338 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12154,10 +12438,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 339 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12170,10 +12454,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 339 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12189,10 +12473,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 340 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12205,10 +12489,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 340 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12224,10 +12508,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 341 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12240,10 +12524,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 341 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12259,10 +12543,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 342 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12275,10 +12559,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 342 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12294,10 +12578,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 343 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12310,10 +12594,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 343 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12326,10 +12610,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 344 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12342,10 +12626,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 344 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12361,10 +12645,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 345 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12377,10 +12661,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 345 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12396,10 +12680,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 346 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12412,10 +12696,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 346 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12431,10 +12715,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 347 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12447,10 +12731,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 347 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12466,10 +12750,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 348 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12482,10 +12766,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 348 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12501,10 +12785,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 349 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12517,10 +12801,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 349 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12536,10 +12820,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 350 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12552,10 +12836,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 350 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12571,10 +12855,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 351 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12587,10 +12871,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 351 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12606,10 +12890,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 352 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true true] @@ -12622,10 +12906,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 352 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12638,10 +12922,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 353 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12654,10 +12938,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 353 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12673,10 +12957,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 354 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12689,10 +12973,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 354 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12708,10 +12992,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 355 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12724,10 +13008,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 355 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12743,10 +13027,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 356 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12759,10 +13043,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 356 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12778,10 +13062,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 357 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12794,10 +13078,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 357 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12813,10 +13097,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 358 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12829,10 +13113,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 358 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12848,10 +13132,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 359 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12864,10 +13148,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 359 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12883,10 +13167,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 360 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12899,10 +13183,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 360 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12918,10 +13202,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 361 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12934,10 +13218,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 361 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12950,10 +13234,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 362 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12966,10 +13250,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 362 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -12985,10 +13269,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 363 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13001,10 +13285,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 363 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13020,10 +13304,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 364 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13036,10 +13320,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 364 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13055,10 +13339,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 365 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13071,10 +13355,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 365 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13090,10 +13374,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 366 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13106,10 +13390,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 366 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13125,10 +13409,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 367 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13141,10 +13425,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 367 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13160,10 +13444,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 368 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13176,10 +13460,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 368 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13195,10 +13479,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 369 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13211,10 +13495,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 369 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13230,10 +13514,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 370 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13246,10 +13530,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 370 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13262,10 +13546,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 371 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13278,10 +13562,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 371 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13297,10 +13581,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 372 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13313,10 +13597,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 372 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13332,10 +13616,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 373 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13348,10 +13632,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 373 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13367,10 +13651,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 374 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13383,10 +13667,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 374 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13402,10 +13686,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 375 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13418,10 +13702,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 375 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13437,10 +13721,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 376 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13453,10 +13737,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 376 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13472,10 +13756,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 377 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13488,10 +13772,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 377 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13507,10 +13791,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 378 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13523,10 +13807,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 378 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13542,10 +13826,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 379 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13558,10 +13842,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 379 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13574,10 +13858,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 380 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13590,10 +13874,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 380 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13609,10 +13893,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 381 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13625,10 +13909,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 381 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13644,10 +13928,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 382 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13660,10 +13944,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 382 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13679,10 +13963,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 383 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13695,10 +13979,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 383 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13714,10 +13998,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 384 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13730,10 +14014,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 384 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13749,10 +14033,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 385 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13765,10 +14049,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 385 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13784,10 +14068,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 386 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13800,10 +14084,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 386 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13819,10 +14103,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 387 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13835,10 +14119,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 387 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13854,10 +14138,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 388 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13870,10 +14154,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 388 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13886,10 +14170,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 389 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13902,10 +14186,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 389 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13921,10 +14205,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 390 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13937,10 +14221,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 390 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13956,10 +14240,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 391 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13972,10 +14256,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 391 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -13991,10 +14275,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 392 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14007,10 +14291,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 392 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14026,10 +14310,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 393 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14042,10 +14326,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 393 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14061,10 +14345,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 394 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14077,10 +14361,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 394 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14096,10 +14380,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 395 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14112,10 +14396,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 395 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14131,10 +14415,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 396 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14147,10 +14431,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 396 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14166,10 +14450,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 397 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14182,10 +14466,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 397 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14198,10 +14482,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 398 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14214,10 +14498,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 398 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14233,10 +14517,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 399 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14249,10 +14533,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 399 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14268,10 +14552,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 400 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14284,10 +14568,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 400 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14303,10 +14587,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 401 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14319,10 +14603,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 401 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14338,10 +14622,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 402 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14354,10 +14638,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 402 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14373,10 +14657,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 403 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14389,10 +14673,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 403 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14408,10 +14692,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 404 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14424,10 +14708,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 404 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14443,10 +14727,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 405 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14459,10 +14743,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 405 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14478,10 +14762,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 406 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false true true true] @@ -14494,10 +14778,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 406 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14510,10 +14794,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 407 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14526,10 +14810,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 407 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14545,10 +14829,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 408 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14561,10 +14845,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 408 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14580,10 +14864,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 409 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14596,10 +14880,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 409 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14615,10 +14899,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 410 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14631,10 +14915,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 410 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14650,10 +14934,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 411 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14666,10 +14950,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 411 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14685,10 +14969,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 412 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14701,10 +14985,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 412 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14720,10 +15004,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 413 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14736,10 +15020,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 413 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14755,10 +15039,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 414 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14771,10 +15055,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 414 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14790,10 +15074,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 415 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14806,10 +15090,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 415 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14822,10 +15106,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 416 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14838,10 +15122,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 416 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14857,10 +15141,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 417 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14873,10 +15157,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 417 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14892,10 +15176,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 418 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14908,10 +15192,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 418 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14927,10 +15211,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 419 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14943,10 +15227,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 419 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14962,10 +15246,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 420 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14978,10 +15262,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 420 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -14997,10 +15281,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 421 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15013,10 +15297,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 421 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15032,10 +15316,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 422 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15048,10 +15332,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 422 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15067,10 +15351,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 423 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15083,10 +15367,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 423 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15102,10 +15386,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 424 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15118,10 +15402,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 424 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15134,10 +15418,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 425 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15150,10 +15434,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 425 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15169,10 +15453,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 426 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15185,10 +15469,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 426 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15204,10 +15488,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 427 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15220,10 +15504,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 427 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15239,10 +15523,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 428 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15255,10 +15539,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 428 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15274,10 +15558,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 429 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15290,10 +15574,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 429 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15309,10 +15593,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 430 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15325,10 +15609,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 430 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15344,10 +15628,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 431 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15360,10 +15644,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 431 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15379,10 +15663,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 432 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15395,10 +15679,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 432 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15414,10 +15698,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 433 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15430,10 +15714,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 433 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15446,10 +15730,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 434 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15462,10 +15746,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 434 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15481,10 +15765,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 435 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15497,10 +15781,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 435 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15516,10 +15800,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 436 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15532,10 +15816,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 436 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15551,10 +15835,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 437 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15567,10 +15851,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 437 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15586,10 +15870,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 438 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15602,10 +15886,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 438 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15621,10 +15905,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 439 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15637,10 +15921,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 439 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15656,10 +15940,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 440 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15672,10 +15956,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 440 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15691,10 +15975,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 441 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15707,10 +15991,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 441 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15726,10 +16010,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 442 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15742,10 +16026,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 442 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15758,10 +16042,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 443 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15774,10 +16058,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 443 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15793,10 +16077,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 444 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15809,10 +16093,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 444 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15828,10 +16112,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 445 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15844,10 +16128,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 445 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15863,10 +16147,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 446 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15879,10 +16163,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 446 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15898,10 +16182,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 447 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15914,10 +16198,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 447 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15933,10 +16217,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 448 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15949,10 +16233,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 448 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15968,10 +16252,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 449 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -15984,10 +16268,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 449 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16003,10 +16287,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 450 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16019,10 +16303,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 450 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16038,10 +16322,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 451 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16054,10 +16338,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 451 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16070,10 +16354,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 452 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16086,10 +16370,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 452 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16105,10 +16389,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 453 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16121,10 +16405,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 453 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16140,10 +16424,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 454 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16156,10 +16440,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 454 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16175,10 +16459,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 455 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16191,10 +16475,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 455 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16210,10 +16494,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 456 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16226,10 +16510,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 456 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16245,10 +16529,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 457 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16261,10 +16545,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 457 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16280,10 +16564,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 458 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16296,10 +16580,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 458 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16315,10 +16599,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 459 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16331,10 +16615,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 459 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16350,10 +16634,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 460 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16366,10 +16650,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 460 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16382,10 +16666,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 461 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16398,10 +16682,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 461 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16417,10 +16701,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 462 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16433,10 +16717,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 462 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16452,10 +16736,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 463 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16468,10 +16752,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 463 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16487,10 +16771,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 464 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16503,10 +16787,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 464 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16522,10 +16806,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 465 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16538,10 +16822,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 465 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16557,10 +16841,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 466 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16573,10 +16857,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 466 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16592,10 +16876,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 467 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16608,10 +16892,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 467 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16627,10 +16911,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 468 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16643,10 +16927,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 468 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16662,10 +16946,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 469 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16678,10 +16962,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 469 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16694,10 +16978,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 470 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16710,10 +16994,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 470 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16729,10 +17013,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 471 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16745,10 +17029,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 471 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16764,10 +17048,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 472 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16780,10 +17064,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 472 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16799,10 +17083,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 473 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16815,10 +17099,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 473 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16834,10 +17118,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 474 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16850,10 +17134,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 474 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16869,10 +17153,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 475 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16885,10 +17169,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 475 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16904,10 +17188,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 476 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16920,10 +17204,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 476 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16939,10 +17223,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 477 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16955,10 +17239,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 477 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16974,10 +17258,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 478 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -16990,10 +17274,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 478 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17006,10 +17290,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 479 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17022,10 +17306,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 479 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17041,10 +17325,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 480 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17057,10 +17341,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 480 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17076,10 +17360,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 481 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17092,10 +17376,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 481 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17111,10 +17395,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 482 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17127,10 +17411,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 482 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17146,10 +17430,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 483 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17162,10 +17446,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 483 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17181,10 +17465,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 484 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17197,10 +17481,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 484 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17216,10 +17500,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 485 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17232,10 +17516,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 485 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17251,10 +17535,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 486 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17267,10 +17551,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 486 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17286,10 +17570,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 487 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17302,10 +17586,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 487 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17318,10 +17602,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 488 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17334,10 +17618,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 488 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17353,10 +17637,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 489 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17369,10 +17653,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 489 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17388,10 +17672,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 490 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17404,10 +17688,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 490 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17423,10 +17707,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 491 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17439,10 +17723,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 491 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17458,10 +17742,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 492 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17474,10 +17758,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 492 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17493,10 +17777,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 493 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17509,10 +17793,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 493 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17528,10 +17812,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 494 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17544,10 +17828,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 494 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17563,10 +17847,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 495 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17579,10 +17863,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 495 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17598,10 +17882,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 496 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true false false true true] @@ -17614,10 +17898,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 496 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17630,10 +17914,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 497 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17646,10 +17930,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 497 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17665,10 +17949,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 498 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17681,10 +17965,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 498 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17700,10 +17984,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 499 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17716,10 +18000,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 499 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17735,10 +18019,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 500 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17751,10 +18035,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 500 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17770,10 +18054,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 501 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17786,10 +18070,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 501 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17805,10 +18089,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 502 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17821,10 +18105,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 502 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17840,10 +18124,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 503 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17856,10 +18140,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 503 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17875,10 +18159,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 504 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17891,10 +18175,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 504 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17910,10 +18194,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 505 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17926,10 +18210,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 505 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17942,10 +18226,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 506 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17958,10 +18242,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 506 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17977,10 +18261,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 507 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -17993,10 +18277,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 507 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18012,10 +18296,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 508 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18028,10 +18312,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 508 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18047,10 +18331,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 509 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18063,10 +18347,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 509 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18082,10 +18366,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 510 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18098,10 +18382,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 510 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18117,10 +18401,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 511 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18133,10 +18417,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 511 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18152,10 +18436,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 512 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18168,10 +18452,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 512 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18187,10 +18471,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 513 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18203,10 +18487,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 513 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18222,10 +18506,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 514 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true false true true] @@ -18238,10 +18522,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 514 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18254,10 +18538,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 515 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18270,10 +18554,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 515 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18289,10 +18573,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 516 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18305,10 +18589,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 516 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18324,10 +18608,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 517 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18340,10 +18624,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 517 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18359,10 +18643,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 518 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18375,10 +18659,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 518 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18394,10 +18678,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 519 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18410,10 +18694,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 519 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18429,10 +18713,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 520 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18445,10 +18729,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 520 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18464,10 +18748,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 521 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18480,10 +18764,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 521 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18499,10 +18783,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 522 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18515,10 +18799,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 522 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18534,10 +18818,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 523 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18550,10 +18834,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 523 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18566,10 +18850,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 524 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18582,10 +18866,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 524 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18601,10 +18885,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 525 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18617,10 +18901,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 525 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18636,10 +18920,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 526 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18652,10 +18936,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 526 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18671,10 +18955,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 527 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18687,10 +18971,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 527 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18706,10 +18990,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 528 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18722,10 +19006,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 528 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18741,10 +19025,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 529 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18757,10 +19041,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 529 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18776,10 +19060,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 530 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18792,10 +19076,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 530 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18811,10 +19095,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 531 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18827,10 +19111,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 531 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18846,10 +19130,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 532 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18862,10 +19146,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 532 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18878,10 +19162,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 533 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18894,10 +19178,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 533 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18913,10 +19197,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 534 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18929,10 +19213,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 534 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18948,10 +19232,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 535 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18964,10 +19248,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 535 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18983,10 +19267,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 536 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -18999,10 +19283,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 536 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19018,10 +19302,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 537 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19034,10 +19318,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 537 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19053,10 +19337,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 538 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19069,10 +19353,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 538 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19088,10 +19372,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 539 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19104,10 +19388,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 539 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19123,10 +19407,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 540 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19139,10 +19423,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 540 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19158,10 +19442,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 541 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19174,10 +19458,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 541 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19190,10 +19474,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 542 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19206,10 +19490,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 542 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19225,10 +19509,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 543 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19241,10 +19525,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 543 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19260,10 +19544,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 544 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19276,10 +19560,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 544 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19295,10 +19579,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 545 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19311,10 +19595,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 545 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19330,10 +19614,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 546 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19346,10 +19630,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 546 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19365,10 +19649,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 547 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19381,10 +19665,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 547 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19400,10 +19684,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 548 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19416,10 +19700,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 548 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19435,10 +19719,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 549 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19451,10 +19735,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 549 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19470,10 +19754,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 550 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19486,10 +19770,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 550 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19502,10 +19786,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 551 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19518,10 +19802,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 551 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19537,10 +19821,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 552 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19553,10 +19837,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 552 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19572,10 +19856,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 553 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19588,10 +19872,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 553 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19607,10 +19891,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 554 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19623,10 +19907,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 554 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19642,10 +19926,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 555 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19658,10 +19942,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 555 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19677,10 +19961,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 556 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19693,10 +19977,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 556 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19712,10 +19996,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 557 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19728,10 +20012,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 557 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19747,10 +20031,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 558 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19763,10 +20047,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 558 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19782,10 +20066,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 559 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19798,10 +20082,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 559 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19814,10 +20098,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 560 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19830,10 +20114,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 560 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19849,10 +20133,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 561 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19865,10 +20149,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 561 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19884,10 +20168,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 562 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19900,10 +20184,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 562 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19919,10 +20203,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 563 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19935,10 +20219,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 563 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19954,10 +20238,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 564 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19970,10 +20254,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 564 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -19989,10 +20273,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 565 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20005,10 +20289,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 565 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20024,10 +20308,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 566 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20040,10 +20324,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 566 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20059,10 +20343,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 567 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20075,10 +20359,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 567 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20094,10 +20378,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 568 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20110,10 +20394,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 568 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20126,10 +20410,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 569 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20142,10 +20426,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 569 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20161,10 +20445,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 570 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20177,10 +20461,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 570 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20196,10 +20480,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 571 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20212,10 +20496,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 571 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20231,10 +20515,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 572 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20247,10 +20531,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 572 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20266,10 +20550,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 573 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20282,10 +20566,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 573 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20301,10 +20585,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 574 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20317,10 +20601,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 574 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20336,10 +20620,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 575 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20352,10 +20636,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 575 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20371,10 +20655,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 576 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20387,10 +20671,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 576 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20406,10 +20690,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 577 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20422,10 +20706,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 577 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20438,10 +20722,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 578 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20454,10 +20738,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 578 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20473,10 +20757,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 579 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20489,10 +20773,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 579 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20508,10 +20792,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 580 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20524,10 +20808,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 580 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20543,10 +20827,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 581 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20559,10 +20843,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 581 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20578,10 +20862,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 582 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20594,10 +20878,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 582 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20613,10 +20897,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 583 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20629,10 +20913,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 583 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20648,10 +20932,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 584 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20664,10 +20948,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 584 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20683,10 +20967,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 585 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20699,10 +20983,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 585 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20718,10 +21002,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 586 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -20734,10 +21018,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 586 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20750,10 +21034,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 587 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20766,10 +21050,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 587 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20785,10 +21069,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 588 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20801,10 +21085,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 588 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20820,10 +21104,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 589 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20836,10 +21120,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 589 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20855,10 +21139,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 590 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20871,10 +21155,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 590 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20890,10 +21174,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 591 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20906,10 +21190,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 591 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20925,10 +21209,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 592 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20941,10 +21225,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 592 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20960,10 +21244,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 593 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20976,10 +21260,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 593 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -20995,10 +21279,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 594 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21011,10 +21295,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 594 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21030,10 +21314,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 595 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21046,10 +21330,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 595 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21062,10 +21346,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 596 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21078,10 +21362,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 596 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21097,10 +21381,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 597 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21113,10 +21397,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 597 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21132,10 +21416,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 598 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21148,10 +21432,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 598 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21167,10 +21451,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 599 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21183,10 +21467,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 599 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21202,10 +21486,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 600 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21218,10 +21502,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 600 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21237,10 +21521,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 601 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21253,10 +21537,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 601 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21272,10 +21556,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 602 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21288,10 +21572,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 602 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21307,10 +21591,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 603 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21323,10 +21607,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 603 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21342,10 +21626,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 604 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21358,10 +21642,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 604 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21374,10 +21658,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 605 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21390,10 +21674,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 605 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21409,10 +21693,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 606 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21425,10 +21709,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 606 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21444,10 +21728,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 607 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21460,10 +21744,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 607 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21479,10 +21763,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 608 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21495,10 +21779,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 608 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21514,10 +21798,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 609 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21530,10 +21814,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 609 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21549,10 +21833,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 610 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21565,10 +21849,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 610 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21584,10 +21868,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 611 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21600,10 +21884,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 611 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21619,10 +21903,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 612 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21635,10 +21919,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 612 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21654,10 +21938,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 613 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21670,10 +21954,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 613 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21686,10 +21970,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 614 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21702,10 +21986,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 614 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21721,10 +22005,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 615 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21737,10 +22021,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 615 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21756,10 +22040,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 616 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21772,10 +22056,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 616 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21791,10 +22075,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 617 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21807,10 +22091,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 617 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21826,10 +22110,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 618 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21842,10 +22126,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 618 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21861,10 +22145,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 619 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21877,10 +22161,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 619 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21896,10 +22180,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 620 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21912,10 +22196,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 620 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21931,10 +22215,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 621 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21947,10 +22231,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 621 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21966,10 +22250,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 622 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -21982,10 +22266,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 622 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -21998,10 +22282,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 623 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22014,10 +22298,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 623 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22033,10 +22317,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 624 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22049,10 +22333,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 624 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22068,10 +22352,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 625 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22084,10 +22368,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 625 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22103,10 +22387,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 626 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22119,10 +22403,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 626 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22138,10 +22422,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 627 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22154,10 +22438,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 627 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22173,10 +22457,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 628 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22189,10 +22473,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 628 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22208,10 +22492,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 629 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22224,10 +22508,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 629 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22243,10 +22527,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 630 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22259,10 +22543,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 630 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22278,10 +22562,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 631 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22294,10 +22578,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 631 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22310,10 +22594,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 632 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22326,10 +22610,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 632 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22345,10 +22629,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 633 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22361,10 +22645,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 633 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22380,10 +22664,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 634 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22396,10 +22680,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 634 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22415,10 +22699,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 635 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22431,10 +22715,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 635 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22450,10 +22734,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 636 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22466,10 +22750,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 636 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22485,10 +22769,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 637 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22501,10 +22785,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 637 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22520,10 +22804,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 638 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22536,10 +22820,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 638 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22555,10 +22839,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 639 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22571,10 +22855,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 639 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22590,10 +22874,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 640 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22606,10 +22890,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 640 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22622,10 +22906,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 641 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22638,10 +22922,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 641 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22657,10 +22941,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 642 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22673,10 +22957,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 642 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22692,10 +22976,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 643 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22708,10 +22992,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 643 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22727,10 +23011,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 644 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22743,10 +23027,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 644 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22762,10 +23046,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 645 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22778,10 +23062,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 645 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22797,10 +23081,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 646 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22813,10 +23097,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 646 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22832,10 +23116,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 647 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22848,10 +23132,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 647 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22867,10 +23151,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 648 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22883,10 +23167,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 648 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22902,10 +23186,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 649 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22918,10 +23202,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 649 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22934,10 +23218,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 650 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22950,10 +23234,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 650 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22969,10 +23253,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 651 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -22985,10 +23269,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 651 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23004,10 +23288,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 652 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23020,10 +23304,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 652 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23039,10 +23323,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 653 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23055,10 +23339,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 653 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23074,10 +23358,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 654 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23090,10 +23374,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 654 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23109,10 +23393,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 655 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23125,10 +23409,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 655 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23144,10 +23428,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 656 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23160,10 +23444,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 656 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23179,10 +23463,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 657 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23195,10 +23479,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 657 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23214,10 +23498,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 658 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23230,10 +23514,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 658 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23246,10 +23530,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 659 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23262,10 +23546,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 659 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23281,10 +23565,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 660 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23297,10 +23581,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 660 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23316,10 +23600,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 661 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23332,10 +23616,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 661 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23351,10 +23635,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 662 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23367,10 +23651,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 662 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23386,10 +23670,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 663 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23402,10 +23686,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 663 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23421,10 +23705,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 664 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23437,10 +23721,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 664 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23456,10 +23740,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 665 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23472,10 +23756,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 665 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23491,10 +23775,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 666 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23507,10 +23791,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 666 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23526,10 +23810,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 667 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23542,10 +23826,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 667 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23558,10 +23842,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 668 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23574,10 +23858,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 668 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23593,10 +23877,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 669 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23609,10 +23893,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 669 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23628,10 +23912,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 670 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23644,10 +23928,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 670 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23663,10 +23947,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 671 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23679,10 +23963,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 671 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23698,10 +23982,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 672 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23714,10 +23998,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 672 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23733,10 +24017,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 673 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23749,10 +24033,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 673 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23768,10 +24052,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 674 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23784,10 +24068,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 674 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23803,10 +24087,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 675 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23819,10 +24103,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 675 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23838,10 +24122,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 676 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -23854,10 +24138,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 676 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23870,10 +24154,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 677 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23886,10 +24170,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 677 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23905,10 +24189,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 678 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23921,10 +24205,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 678 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23940,10 +24224,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 679 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23956,10 +24240,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 679 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23975,10 +24259,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 680 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -23991,10 +24275,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 680 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24010,10 +24294,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 681 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24026,10 +24310,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 681 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24045,10 +24329,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 682 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24061,10 +24345,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 682 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24080,10 +24364,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 683 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24096,10 +24380,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 683 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24115,10 +24399,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 684 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24131,10 +24415,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 684 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24150,10 +24434,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 685 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24166,10 +24450,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 685 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24182,10 +24466,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 686 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24198,10 +24482,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 686 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24217,10 +24501,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 687 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24233,10 +24517,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 687 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24252,10 +24536,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 688 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24268,10 +24552,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 688 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24287,10 +24571,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 689 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24303,10 +24587,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 689 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24322,10 +24606,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 690 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24338,10 +24622,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 690 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24357,10 +24641,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 691 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24373,10 +24657,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 691 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24392,10 +24676,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 692 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24408,10 +24692,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 692 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24427,10 +24711,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 693 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24443,10 +24727,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 693 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24462,10 +24746,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 694 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24478,10 +24762,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 694 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24494,10 +24778,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 695 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24510,10 +24794,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 695 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24529,10 +24813,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 696 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24545,10 +24829,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 696 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24564,10 +24848,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 697 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24580,10 +24864,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 697 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24599,10 +24883,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 698 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24615,10 +24899,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 698 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24634,10 +24918,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 699 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24650,10 +24934,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 699 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24669,10 +24953,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 700 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24685,10 +24969,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 700 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24704,10 +24988,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 701 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24720,10 +25004,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 701 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24739,10 +25023,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 702 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24755,10 +25039,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 702 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24774,10 +25058,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 703 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24790,10 +25074,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 703 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24806,10 +25090,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 704 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24822,10 +25106,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 704 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24841,10 +25125,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 705 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24857,10 +25141,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 705 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24876,10 +25160,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 706 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24892,10 +25176,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 706 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24911,10 +25195,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 707 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24927,10 +25211,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 707 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24946,10 +25230,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 708 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24962,10 +25246,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 708 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24981,10 +25265,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 709 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -24997,10 +25281,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 709 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25016,10 +25300,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 710 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25032,10 +25316,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 710 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25051,10 +25335,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 711 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25067,10 +25351,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 711 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25086,10 +25370,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 712 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25102,10 +25386,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 712 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25118,10 +25402,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 713 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25134,10 +25418,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 713 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25153,10 +25437,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 714 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25169,10 +25453,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 714 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25188,10 +25472,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 715 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25204,10 +25488,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 715 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25223,10 +25507,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 716 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25239,10 +25523,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 716 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25258,10 +25542,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 717 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25274,10 +25558,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 717 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25293,10 +25577,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 718 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25309,10 +25593,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 718 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25328,10 +25612,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 719 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25344,10 +25628,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 719 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25363,10 +25647,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 720 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25379,10 +25663,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 720 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25398,10 +25682,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 721 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25414,10 +25698,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 721 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25430,10 +25714,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 722 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25446,10 +25730,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 722 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25465,10 +25749,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 723 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25481,10 +25765,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 723 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25500,10 +25784,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 724 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25516,10 +25800,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 724 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25535,10 +25819,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 725 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25551,10 +25835,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 725 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25570,10 +25854,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 726 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25586,10 +25870,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 726 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25605,10 +25889,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 727 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25621,10 +25905,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 727 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25640,10 +25924,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 728 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25656,10 +25940,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 728 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25675,10 +25959,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 729 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25691,10 +25975,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 729 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25710,10 +25994,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 730 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25726,10 +26010,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 730 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25742,10 +26026,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 731 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25758,10 +26042,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 731 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25777,10 +26061,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 732 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25793,10 +26077,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 732 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25812,10 +26096,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 733 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25828,10 +26112,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 733 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25847,10 +26131,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 734 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25863,10 +26147,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 734 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25882,10 +26166,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 735 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25898,10 +26182,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 735 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25917,10 +26201,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 736 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25933,10 +26217,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 736 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25952,10 +26236,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 737 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25968,10 +26252,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 737 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -25987,10 +26271,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 738 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26003,10 +26287,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 738 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26022,10 +26306,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 739 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26038,10 +26322,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 739 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26054,10 +26338,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 740 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26070,10 +26354,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 740 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26089,10 +26373,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 741 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26105,10 +26389,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 741 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26124,10 +26408,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 742 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26140,10 +26424,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 742 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26159,10 +26443,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 743 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26175,10 +26459,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 743 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26194,10 +26478,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 744 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26210,10 +26494,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 744 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26229,10 +26513,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 745 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26245,10 +26529,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 745 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26264,10 +26548,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 746 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26280,10 +26564,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 746 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26299,10 +26583,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 747 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26315,10 +26599,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 747 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26334,10 +26618,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 748 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false false true] @@ -26350,10 +26634,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 748 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26366,10 +26650,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 749 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26382,10 +26666,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 749 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26401,10 +26685,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 750 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26417,10 +26701,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 750 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26436,10 +26720,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 751 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26452,10 +26736,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 751 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26471,10 +26755,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 752 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26487,10 +26771,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 752 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26506,10 +26790,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 753 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26522,10 +26806,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 753 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26541,10 +26825,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 754 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26557,10 +26841,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 754 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26576,10 +26860,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 755 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26592,10 +26876,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 755 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26611,10 +26895,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 756 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26627,10 +26911,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 756 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26646,10 +26930,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 757 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26662,10 +26946,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 757 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26678,10 +26962,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 758 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26694,10 +26978,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 758 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26713,10 +26997,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 759 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26729,10 +27013,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 759 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26748,10 +27032,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 760 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26764,10 +27048,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 760 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26783,10 +27067,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 761 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26799,10 +27083,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 761 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26818,10 +27102,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 762 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26834,10 +27118,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 762 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26853,10 +27137,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 763 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26869,10 +27153,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 763 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26888,10 +27172,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 764 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26904,10 +27188,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 764 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26923,10 +27207,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 765 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26939,10 +27223,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 765 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26958,10 +27242,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 766 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -26974,10 +27258,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 766 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -26990,10 +27274,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 767 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27006,10 +27290,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 767 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27025,10 +27309,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 768 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27041,10 +27325,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 768 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27060,10 +27344,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 769 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27076,10 +27360,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 769 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27095,10 +27379,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 770 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27111,10 +27395,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 770 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27130,10 +27414,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 771 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27146,10 +27430,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 771 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27165,10 +27449,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 772 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27181,10 +27465,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 772 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27200,10 +27484,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 773 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27216,10 +27500,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 773 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27235,10 +27519,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 774 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27251,10 +27535,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 774 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27270,10 +27554,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 775 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27286,10 +27570,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 775 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27302,10 +27586,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 776 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27318,10 +27602,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 776 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27337,10 +27621,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 777 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27353,10 +27637,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 777 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27372,10 +27656,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 778 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27388,10 +27672,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 778 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27407,10 +27691,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 779 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27423,10 +27707,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 779 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27442,10 +27726,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 780 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27458,10 +27742,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 780 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27477,10 +27761,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 781 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27493,10 +27777,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 781 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27512,10 +27796,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 782 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27528,10 +27812,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 782 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27547,10 +27831,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 783 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27563,10 +27847,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 783 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27582,10 +27866,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 784 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -27598,10 +27882,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 784 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27614,10 +27898,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 785 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27630,10 +27914,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 785 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27649,10 +27933,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 786 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27665,10 +27949,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 786 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27684,10 +27968,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 787 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27700,10 +27984,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 787 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27719,10 +28003,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 788 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27735,10 +28019,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 788 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27754,10 +28038,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 789 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27770,10 +28054,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 789 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27789,10 +28073,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 790 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27805,10 +28089,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 790 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27824,10 +28108,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 791 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27840,10 +28124,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 791 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27859,10 +28143,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 792 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27875,10 +28159,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 792 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27894,10 +28178,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 793 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27910,10 +28194,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 793 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27926,10 +28210,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 794 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27942,10 +28226,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 794 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27961,10 +28245,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 795 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27977,10 +28261,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 795 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -27996,10 +28280,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 796 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28012,10 +28296,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 796 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28031,10 +28315,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 797 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28047,10 +28331,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 797 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28066,10 +28350,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 798 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28082,10 +28366,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 798 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28101,10 +28385,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 799 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28117,10 +28401,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 799 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28136,10 +28420,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 800 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28152,10 +28436,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 800 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28171,10 +28455,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 801 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28187,10 +28471,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 801 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28206,10 +28490,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 802 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28222,10 +28506,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 802 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28238,10 +28522,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 803 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28254,10 +28538,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 803 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28273,10 +28557,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 804 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28289,10 +28573,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 804 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28308,10 +28592,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 805 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28324,10 +28608,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 805 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28343,10 +28627,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 806 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28359,10 +28643,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 806 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28378,10 +28662,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 807 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28394,10 +28678,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 807 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28413,10 +28697,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 808 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28429,10 +28713,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 808 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28448,10 +28732,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 809 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28464,10 +28748,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 809 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28483,10 +28767,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 810 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28499,10 +28783,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 810 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28518,10 +28802,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 811 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28534,10 +28818,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 811 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28550,10 +28834,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 812 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28566,10 +28850,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 812 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28585,10 +28869,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 813 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28601,10 +28885,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 813 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28620,10 +28904,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 814 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28636,10 +28920,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 814 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28655,10 +28939,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 815 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28671,10 +28955,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 815 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28690,10 +28974,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 816 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28706,10 +28990,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 816 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28725,10 +29009,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 817 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28741,10 +29025,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 817 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28760,10 +29044,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 818 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28776,10 +29060,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 818 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28795,10 +29079,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 819 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28811,10 +29095,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 819 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28830,10 +29114,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 820 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false false true true true true] @@ -28846,10 +29130,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 820 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28862,10 +29146,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 821 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28878,10 +29162,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 821 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28897,10 +29181,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 822 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28913,10 +29197,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 822 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28932,10 +29216,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 823 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28948,10 +29232,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 823 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28967,10 +29251,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 824 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -28983,10 +29267,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 824 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29002,10 +29286,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 825 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29018,10 +29302,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 825 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29037,10 +29321,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 826 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29053,10 +29337,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 826 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29072,10 +29356,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 827 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29088,10 +29372,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 827 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29107,10 +29391,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 828 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29123,10 +29407,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 828 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29142,10 +29426,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 829 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29158,10 +29442,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 829 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29174,10 +29458,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 830 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29190,10 +29474,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 830 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29209,10 +29493,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 831 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29225,10 +29509,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 831 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29244,10 +29528,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 832 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29260,10 +29544,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 832 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29279,10 +29563,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 833 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29295,10 +29579,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 833 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29314,10 +29598,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 834 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29330,10 +29614,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 834 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29349,10 +29633,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 835 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29365,10 +29649,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 835 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29384,10 +29668,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 836 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29400,10 +29684,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 836 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29419,10 +29703,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 837 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29435,10 +29719,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 837 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29454,10 +29738,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 838 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -29470,10 +29754,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 838 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29486,10 +29770,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 839 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29502,10 +29786,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 839 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29521,10 +29805,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 840 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29537,10 +29821,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 840 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29556,10 +29840,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 841 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29572,10 +29856,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 841 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29591,10 +29875,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 842 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29607,10 +29891,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 842 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29626,10 +29910,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 843 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29642,10 +29926,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 843 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29661,10 +29945,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 844 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29677,10 +29961,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 844 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29696,10 +29980,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 845 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29712,10 +29996,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 845 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29731,10 +30015,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 846 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29747,10 +30031,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 846 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29766,10 +30050,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 847 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29782,10 +30066,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 847 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29798,10 +30082,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 848 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29814,10 +30098,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 848 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29833,10 +30117,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 849 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29849,10 +30133,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 849 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29868,10 +30152,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 850 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29884,10 +30168,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 850 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29903,10 +30187,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 851 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29919,10 +30203,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 851 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29938,10 +30222,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 852 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29954,10 +30238,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 852 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29973,10 +30257,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 853 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -29989,10 +30273,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 853 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -30008,10 +30292,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 854 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -30024,10 +30308,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 854 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -30043,10 +30327,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 855 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -30059,10 +30343,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 855 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -30078,10 +30362,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 856 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true false] @@ -30094,10 +30378,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 856 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30110,10 +30394,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 857 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30126,10 +30410,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 857 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30145,10 +30429,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 858 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30161,10 +30445,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 858 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30180,10 +30464,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 859 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30196,10 +30480,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 859 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30215,10 +30499,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 860 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30231,10 +30515,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 860 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30250,10 +30534,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 861 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30266,10 +30550,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 861 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30285,10 +30569,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 862 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30301,10 +30585,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 862 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30320,10 +30604,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 863 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30336,10 +30620,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 863 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30355,10 +30639,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 864 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30371,10 +30655,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 864 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30390,10 +30674,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 865 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30406,10 +30690,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 865 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30422,10 +30706,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 866 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30438,10 +30722,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 866 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30457,10 +30741,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 867 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30473,10 +30757,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 867 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30492,10 +30776,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 868 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30508,10 +30792,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 868 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30527,10 +30811,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 869 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30543,10 +30827,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 869 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30562,10 +30846,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 870 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30578,10 +30862,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 870 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30597,10 +30881,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 871 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30613,10 +30897,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 871 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30632,10 +30916,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 872 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30648,10 +30932,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 872 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30667,10 +30951,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 873 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30683,10 +30967,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 873 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30702,10 +30986,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 874 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30718,10 +31002,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 874 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30734,10 +31018,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 875 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30750,10 +31034,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 875 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30769,10 +31053,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 876 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30785,10 +31069,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 876 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30804,10 +31088,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 877 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30820,10 +31104,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 877 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30839,10 +31123,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 878 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30855,10 +31139,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 878 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30874,10 +31158,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 879 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30890,10 +31174,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 879 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30909,10 +31193,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 880 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30925,10 +31209,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 880 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30944,10 +31228,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 881 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30960,10 +31244,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 881 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30979,10 +31263,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 882 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -30995,10 +31279,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 882 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31014,10 +31298,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 883 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31030,10 +31314,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 883 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31046,10 +31330,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 884 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31062,10 +31346,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 884 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31081,10 +31365,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 885 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31097,10 +31381,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 885 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31116,10 +31400,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 886 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31132,10 +31416,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 886 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31151,10 +31435,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 887 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31167,10 +31451,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 887 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31186,10 +31470,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 888 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31202,10 +31486,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 888 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31221,10 +31505,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 889 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31237,10 +31521,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 889 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31256,10 +31540,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 890 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31272,10 +31556,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 890 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31291,10 +31575,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 891 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31307,10 +31591,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 891 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31326,10 +31610,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 892 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true true true] @@ -31342,10 +31626,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 892 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31358,10 +31642,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 893 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31374,10 +31658,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 893 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31393,10 +31677,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 894 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31409,10 +31693,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 894 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31428,10 +31712,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 895 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31444,10 +31728,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 895 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31463,10 +31747,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 896 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31479,10 +31763,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 896 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31498,10 +31782,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 897 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31514,10 +31798,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 897 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31533,10 +31817,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 898 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31549,10 +31833,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 898 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31568,10 +31852,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 899 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31584,10 +31868,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 899 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31603,10 +31887,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 900 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31619,10 +31903,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 900 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31638,10 +31922,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 901 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31654,10 +31938,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 901 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31670,10 +31954,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 902 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31686,10 +31970,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 902 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31705,10 +31989,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 903 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31721,10 +32005,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 903 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31740,10 +32024,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 904 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31756,10 +32040,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 904 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31775,10 +32059,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 905 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31791,10 +32075,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 905 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31810,10 +32094,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 906 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31826,10 +32110,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 906 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31845,10 +32129,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 907 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31861,10 +32145,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 907 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31880,10 +32164,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 908 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31896,10 +32180,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 908 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31915,10 +32199,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 909 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31931,10 +32215,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 909 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31950,10 +32234,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 910 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -31966,10 +32250,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 910 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -31982,10 +32266,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 911 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -31998,10 +32282,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 911 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32017,10 +32301,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 912 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32033,10 +32317,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 912 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32052,10 +32336,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 913 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32068,10 +32352,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 913 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32087,10 +32371,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 914 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32103,10 +32387,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 914 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32122,10 +32406,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 915 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32138,10 +32422,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 915 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32157,10 +32441,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 916 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32173,10 +32457,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 916 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32192,10 +32476,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 917 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32208,10 +32492,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 917 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32227,10 +32511,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 918 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32243,10 +32527,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 918 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32262,10 +32546,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 919 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32278,10 +32562,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 919 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32294,10 +32578,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 920 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32310,10 +32594,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 920 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32329,10 +32613,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 921 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32345,10 +32629,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 921 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32364,10 +32648,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 922 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32380,10 +32664,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 922 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32399,10 +32683,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 923 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32415,10 +32699,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 923 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32434,10 +32718,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 924 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32450,10 +32734,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 924 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32469,10 +32753,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 925 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32485,10 +32769,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 925 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32504,10 +32788,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 926 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32520,10 +32804,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 926 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32539,10 +32823,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 927 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32555,10 +32839,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 927 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32574,10 +32858,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 928 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32590,10 +32874,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 928 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32606,10 +32890,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 929 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32622,10 +32906,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 929 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32641,10 +32925,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 930 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32657,10 +32941,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 930 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32676,10 +32960,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 931 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32692,10 +32976,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 931 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32711,10 +32995,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 932 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32727,10 +33011,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 932 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32746,10 +33030,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 933 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32762,10 +33046,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 933 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32781,10 +33065,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 934 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32797,10 +33081,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 934 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32816,10 +33100,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 935 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32832,10 +33116,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 935 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32851,10 +33135,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 936 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32867,10 +33151,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 936 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32886,10 +33170,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 937 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32902,10 +33186,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 937 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32918,10 +33202,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 938 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32934,10 +33218,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 938 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32953,10 +33237,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 939 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32969,10 +33253,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 939 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -32988,10 +33272,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 940 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33004,10 +33288,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 940 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33023,10 +33307,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 941 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33039,10 +33323,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 941 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33058,10 +33342,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 942 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33074,10 +33358,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 942 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33093,10 +33377,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 943 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33109,10 +33393,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 943 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33128,10 +33412,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 944 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33144,10 +33428,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 944 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33163,10 +33447,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 945 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33179,10 +33463,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 945 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33198,10 +33482,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 946 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33214,10 +33498,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 946 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33230,10 +33514,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 947 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33246,10 +33530,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 947 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33265,10 +33549,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 948 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33281,10 +33565,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 948 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33300,10 +33584,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 949 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33316,10 +33600,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 949 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33335,10 +33619,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 950 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33351,10 +33635,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 950 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33370,10 +33654,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 951 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33386,10 +33670,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 951 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33405,10 +33689,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 952 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33421,10 +33705,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 952 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33440,10 +33724,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 953 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33456,10 +33740,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 953 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33475,10 +33759,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 954 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33491,10 +33775,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 954 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33510,10 +33794,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 955 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33526,10 +33810,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 955 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33542,10 +33826,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 956 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33558,10 +33842,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 956 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33577,10 +33861,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 957 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33593,10 +33877,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 957 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33612,10 +33896,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 958 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33628,10 +33912,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 958 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33647,10 +33931,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 959 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33663,10 +33947,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 959 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33682,10 +33966,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 960 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33698,10 +33982,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 960 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33717,10 +34001,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 961 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33733,10 +34017,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 961 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33752,10 +34036,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 962 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33768,10 +34052,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 962 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33787,10 +34071,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 963 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33803,10 +34087,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 963 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33822,10 +34106,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 964 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -33838,10 +34122,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 964 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33854,10 +34138,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 965 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33870,10 +34154,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 965 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33889,10 +34173,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 966 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33905,10 +34189,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 966 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33924,10 +34208,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 967 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33940,10 +34224,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 967 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33959,10 +34243,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 968 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33975,10 +34259,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 968 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -33994,10 +34278,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 969 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34010,10 +34294,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 969 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34029,10 +34313,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 970 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34045,10 +34329,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 970 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34064,10 +34348,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 971 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34080,10 +34364,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 971 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34099,10 +34383,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 972 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34115,10 +34399,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 972 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34134,10 +34418,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 973 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34150,10 +34434,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 973 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34166,10 +34450,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 974 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34182,10 +34466,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 974 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34201,10 +34485,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 975 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34217,10 +34501,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 975 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34236,10 +34520,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 976 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34252,10 +34536,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 976 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34271,10 +34555,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 977 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34287,10 +34571,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 977 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34306,10 +34590,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 978 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34322,10 +34606,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 978 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34341,10 +34625,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 979 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34357,10 +34641,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 979 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34376,10 +34660,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 980 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34392,10 +34676,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 980 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34411,10 +34695,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 981 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34427,10 +34711,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 981 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34446,10 +34730,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 982 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34462,10 +34746,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 982 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34478,10 +34762,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 983 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34494,10 +34778,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 983 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34513,10 +34797,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 984 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34529,10 +34813,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 984 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34548,10 +34832,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 985 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34564,10 +34848,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 985 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34583,10 +34867,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 986 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34599,10 +34883,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 986 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34618,10 +34902,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 987 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34634,10 +34918,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 987 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34653,10 +34937,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 988 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34669,10 +34953,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 988 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34688,10 +34972,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 989 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34704,10 +34988,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 989 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34723,10 +35007,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 990 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34739,10 +35023,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 990 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34758,10 +35042,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 991 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34774,10 +35058,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 991 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34790,10 +35074,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 992 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34806,10 +35090,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 992 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34825,10 +35109,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 993 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34841,10 +35125,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 993 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34860,10 +35144,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 994 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34876,10 +35160,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 994 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34895,10 +35179,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 995 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34911,10 +35195,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 995 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34930,10 +35214,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 996 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34946,10 +35230,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 996 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34965,10 +35249,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 997 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -34981,10 +35265,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 997 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -35000,10 +35284,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 998 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -35016,10 +35300,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 998 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -35035,10 +35319,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 999 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -35051,10 +35335,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 999 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -35070,10 +35354,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1000 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -35086,10 +35370,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1000 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35102,10 +35386,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1001 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35118,10 +35402,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1001 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35137,10 +35421,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1002 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35153,10 +35437,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1002 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35172,10 +35456,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1003 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35188,10 +35472,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1003 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35207,10 +35491,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1004 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35223,10 +35507,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1004 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35242,10 +35526,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1005 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35258,10 +35542,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1005 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35277,10 +35561,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1006 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35293,10 +35577,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1006 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35312,10 +35596,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1007 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35328,10 +35612,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1007 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35347,10 +35631,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1008 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35363,10 +35647,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1008 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35382,10 +35666,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1009 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35398,10 +35682,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1009 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35414,10 +35698,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1010 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35430,10 +35714,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1010 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35449,10 +35733,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1011 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35465,10 +35749,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1011 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35484,10 +35768,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1012 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35500,10 +35784,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1012 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35519,10 +35803,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1013 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35535,10 +35819,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1013 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35554,10 +35838,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1014 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35570,10 +35854,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1014 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35589,10 +35873,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1015 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35605,10 +35889,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1015 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35624,10 +35908,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1016 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35640,10 +35924,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1016 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35659,10 +35943,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1017 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35675,10 +35959,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1017 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35694,10 +35978,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1018 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true false true] @@ -35710,10 +35994,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1018 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35726,10 +36010,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1019 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35742,10 +36026,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1019 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35761,10 +36045,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1020 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35777,10 +36061,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1020 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35796,10 +36080,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1021 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35812,10 +36096,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1021 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35831,10 +36115,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1022 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35847,10 +36131,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1022 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35866,10 +36150,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1023 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35882,10 +36166,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1023 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35901,10 +36185,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1024 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35917,10 +36201,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1024 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35936,10 +36220,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1025 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35952,10 +36236,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1025 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35971,10 +36255,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1026 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -35987,10 +36271,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1026 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36006,10 +36290,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1027 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36022,10 +36306,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1027 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36038,10 +36322,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1028 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36054,10 +36338,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1028 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36073,10 +36357,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1029 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36089,10 +36373,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1029 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36108,10 +36392,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1030 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36124,10 +36408,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1030 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36143,10 +36427,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1031 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36159,10 +36443,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1031 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36178,10 +36462,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1032 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36194,10 +36478,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1032 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36213,10 +36497,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1033 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36229,10 +36513,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1033 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36248,10 +36532,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1034 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36264,10 +36548,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1034 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36283,10 +36567,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1035 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36299,10 +36583,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1035 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36318,10 +36602,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1036 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36334,10 +36618,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1036 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36350,10 +36634,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1037 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36366,10 +36650,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1037 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36385,10 +36669,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1038 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36401,10 +36685,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1038 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36420,10 +36704,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1039 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36436,10 +36720,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1039 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36455,10 +36739,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1040 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36471,10 +36755,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1040 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36490,10 +36774,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1041 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36506,10 +36790,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1041 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36525,10 +36809,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1042 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36541,10 +36825,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1042 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36560,10 +36844,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1043 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36576,10 +36860,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1043 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36595,10 +36879,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1044 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36611,10 +36895,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1044 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36630,10 +36914,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1045 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36646,10 +36930,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1045 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36662,10 +36946,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1046 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36678,10 +36962,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1046 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36697,10 +36981,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1047 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36713,10 +36997,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1047 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36732,10 +37016,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1048 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36748,10 +37032,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1048 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36767,10 +37051,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1049 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36783,10 +37067,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1049 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36802,10 +37086,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1050 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36818,10 +37102,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1050 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36837,10 +37121,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1051 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36853,10 +37137,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1051 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36872,10 +37156,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1052 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36888,10 +37172,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1052 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36907,10 +37191,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1053 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36923,10 +37207,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1053 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36942,10 +37226,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1054 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true true] @@ -36958,10 +37242,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1054 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -36974,10 +37258,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1055 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -36990,10 +37274,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1055 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37009,10 +37293,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1056 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37025,10 +37309,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1056 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37044,10 +37328,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1057 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37060,10 +37344,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1057 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37079,10 +37363,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1058 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37095,10 +37379,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1058 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37114,10 +37398,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1059 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37130,10 +37414,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1059 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37149,10 +37433,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1060 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37165,10 +37449,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1060 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37184,10 +37468,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1061 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37200,10 +37484,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1061 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37219,10 +37503,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1062 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37235,10 +37519,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1062 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37254,10 +37538,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1063 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37270,10 +37554,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1063 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37286,10 +37570,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1064 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37302,10 +37586,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1064 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37321,10 +37605,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1065 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37337,10 +37621,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1065 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37356,10 +37640,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1066 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37372,10 +37656,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1066 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37391,10 +37675,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1067 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37407,10 +37691,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1067 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37426,10 +37710,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1068 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37442,10 +37726,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1068 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37461,10 +37745,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1069 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37477,10 +37761,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1069 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37496,10 +37780,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1070 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37512,10 +37796,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1070 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37531,10 +37815,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1071 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37547,10 +37831,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1071 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37566,10 +37850,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1072 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true false true true] @@ -37582,10 +37866,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1072 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37598,10 +37882,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1073 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37614,10 +37898,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1073 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37633,10 +37917,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1074 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37649,10 +37933,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1074 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37668,10 +37952,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1075 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37684,10 +37968,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1075 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37703,10 +37987,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1076 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37719,10 +38003,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1076 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37738,10 +38022,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1077 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37754,10 +38038,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1077 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37773,10 +38057,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1078 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37789,10 +38073,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1078 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37808,10 +38092,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1079 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37824,10 +38108,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1079 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37843,10 +38127,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1080 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37859,10 +38143,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1080 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37878,10 +38162,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1081 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37894,10 +38178,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1081 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37910,10 +38194,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1082 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37926,10 +38210,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1082 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37945,10 +38229,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1083 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37961,10 +38245,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1083 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37980,10 +38264,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1084 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -37996,10 +38280,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1084 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38015,10 +38299,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1085 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38031,10 +38315,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1085 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38050,10 +38334,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1086 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38066,10 +38350,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1086 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38085,10 +38369,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1087 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38101,10 +38385,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1087 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38120,10 +38404,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1088 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38136,10 +38420,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1088 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38155,10 +38439,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1089 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38171,10 +38455,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1089 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38190,10 +38474,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1090 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38206,10 +38490,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1090 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38222,10 +38506,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1091 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38238,10 +38522,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1091 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38257,10 +38541,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1092 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38273,10 +38557,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1092 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38292,10 +38576,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1093 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38308,10 +38592,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1093 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38327,10 +38611,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1094 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38343,10 +38627,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1094 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38362,10 +38646,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1095 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38378,10 +38662,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1095 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38397,10 +38681,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1096 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38413,10 +38697,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1096 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38432,10 +38716,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1097 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38448,10 +38732,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1097 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38467,10 +38751,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1098 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38483,10 +38767,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1098 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38502,10 +38786,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1099 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38518,10 +38802,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1099 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38534,10 +38818,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1100 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38550,10 +38834,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1100 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38569,10 +38853,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1101 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38585,10 +38869,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1101 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38604,10 +38888,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1102 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38620,10 +38904,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1102 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38639,10 +38923,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1103 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38655,10 +38939,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1103 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38674,10 +38958,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1104 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38690,10 +38974,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1104 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38709,10 +38993,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1105 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38725,10 +39009,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1105 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38744,10 +39028,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1106 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38760,10 +39044,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1106 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38779,10 +39063,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1107 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38795,10 +39079,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1107 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38814,10 +39098,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1108 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38830,10 +39114,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1108 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38846,10 +39130,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1109 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38862,10 +39146,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1109 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38881,10 +39165,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1110 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38897,10 +39181,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1110 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38916,10 +39200,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1111 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38932,10 +39216,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1111 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38951,10 +39235,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1112 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38967,10 +39251,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1112 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -38986,10 +39270,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1113 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39002,10 +39286,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1113 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39021,10 +39305,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1114 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39037,10 +39321,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1114 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39056,10 +39340,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1115 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39072,10 +39356,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1115 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39091,10 +39375,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1116 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39107,10 +39391,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1116 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39126,10 +39410,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1117 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39142,10 +39426,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1117 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39158,10 +39442,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1118 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39174,10 +39458,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1118 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39193,10 +39477,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1119 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39209,10 +39493,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1119 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39228,10 +39512,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1120 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39244,10 +39528,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1120 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39263,10 +39547,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1121 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39279,10 +39563,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1121 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39298,10 +39582,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1122 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39314,10 +39598,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1122 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39333,10 +39617,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1123 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39349,10 +39633,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1123 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39368,10 +39652,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1124 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39384,10 +39668,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1124 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39403,10 +39687,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1125 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39419,10 +39703,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1125 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39438,10 +39722,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1126 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39454,10 +39738,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1126 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39470,10 +39754,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1127 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39486,10 +39770,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1127 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39505,10 +39789,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1128 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39521,10 +39805,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1128 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39540,10 +39824,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1129 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39556,10 +39840,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1129 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39575,10 +39859,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1130 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39591,10 +39875,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1130 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39610,10 +39894,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1131 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39626,10 +39910,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1131 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39645,10 +39929,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1132 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39661,10 +39945,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1132 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39680,10 +39964,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1133 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39696,10 +39980,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1133 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39715,10 +39999,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1134 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39731,10 +40015,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1134 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39750,10 +40034,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1135 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39766,10 +40050,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1135 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39782,10 +40066,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1136 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39798,10 +40082,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1136 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39817,10 +40101,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1137 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39833,10 +40117,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1137 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39852,10 +40136,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1138 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39868,10 +40152,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1138 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39887,10 +40171,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1139 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39903,10 +40187,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1139 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39922,10 +40206,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1140 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39938,10 +40222,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1140 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39957,10 +40241,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1141 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39973,10 +40257,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1141 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -39992,10 +40276,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1142 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40008,10 +40292,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1142 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40027,10 +40311,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1143 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40043,10 +40327,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1143 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40062,10 +40346,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1144 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40078,10 +40362,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1144 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40094,10 +40378,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1145 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40110,10 +40394,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1145 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40129,10 +40413,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1146 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40145,10 +40429,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1146 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40164,10 +40448,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1147 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40180,10 +40464,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1147 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40199,10 +40483,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1148 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40215,10 +40499,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1148 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40234,10 +40518,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1149 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40250,10 +40534,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1149 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40269,10 +40553,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1150 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40285,10 +40569,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1150 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40304,10 +40588,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1151 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40320,10 +40604,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1151 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40339,10 +40623,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1152 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40355,10 +40639,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1152 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40374,10 +40658,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1153 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40390,10 +40674,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1153 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40406,10 +40690,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1154 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40422,10 +40706,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1154 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40441,10 +40725,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1155 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40457,10 +40741,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1155 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40476,10 +40760,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1156 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40492,10 +40776,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1156 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40511,10 +40795,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1157 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40527,10 +40811,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1157 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40546,10 +40830,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1158 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40562,10 +40846,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1158 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40581,10 +40865,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1159 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40597,10 +40881,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1159 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40616,10 +40900,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1160 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40632,10 +40916,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1160 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40651,10 +40935,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1161 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40667,10 +40951,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1161 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40686,10 +40970,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1162 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40702,10 +40986,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1162 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40718,10 +41002,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1163 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40734,10 +41018,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1163 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40753,10 +41037,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1164 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40769,10 +41053,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1164 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40788,10 +41072,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1165 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40804,10 +41088,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1165 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40823,10 +41107,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1166 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40839,10 +41123,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1166 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40858,10 +41142,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1167 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40874,10 +41158,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1167 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40893,10 +41177,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1168 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40909,10 +41193,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1168 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40928,10 +41212,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1169 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40944,10 +41228,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1169 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40963,10 +41247,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1170 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40979,10 +41263,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1170 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -40998,10 +41282,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1171 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41014,10 +41298,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1171 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41030,10 +41314,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1172 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41046,10 +41330,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1172 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41065,10 +41349,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1173 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41081,10 +41365,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1173 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41100,10 +41384,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1174 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41116,10 +41400,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1174 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41135,10 +41419,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1175 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41151,10 +41435,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1175 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41170,10 +41454,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1176 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41186,10 +41470,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1176 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41205,10 +41489,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1177 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41221,10 +41505,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1177 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41240,10 +41524,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1178 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41256,10 +41540,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1178 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41275,10 +41559,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1179 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41291,10 +41575,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1179 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41310,10 +41594,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1180 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41326,10 +41610,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1180 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41342,10 +41626,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1181 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41358,10 +41642,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1181 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41377,10 +41661,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1182 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41393,10 +41677,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1182 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41412,10 +41696,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1183 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41428,10 +41712,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1183 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41447,10 +41731,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1184 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41463,10 +41747,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1184 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41482,10 +41766,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1185 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41498,10 +41782,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1185 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41517,10 +41801,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1186 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41533,10 +41817,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1186 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41552,10 +41836,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1187 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41568,10 +41852,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1187 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41587,10 +41871,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1188 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41603,10 +41887,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1188 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41622,10 +41906,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1189 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41638,10 +41922,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1189 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41654,10 +41938,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1190 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41670,10 +41954,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1190 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41689,10 +41973,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1191 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41705,10 +41989,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1191 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41724,10 +42008,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1192 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41740,10 +42024,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1192 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41759,10 +42043,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1193 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41775,10 +42059,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1193 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41794,10 +42078,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1194 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41810,10 +42094,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1194 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41829,10 +42113,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1195 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41845,10 +42129,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1195 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41864,10 +42148,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1196 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41880,10 +42164,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1196 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41899,10 +42183,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1197 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41915,10 +42199,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1197 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41934,10 +42218,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1198 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -41950,10 +42234,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1198 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -41966,10 +42250,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1199 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -41982,10 +42266,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1199 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42001,10 +42285,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1200 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42017,10 +42301,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1200 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42036,10 +42320,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1201 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42052,10 +42336,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1201 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42071,10 +42355,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1202 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42087,10 +42371,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1202 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42106,10 +42390,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1203 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42122,10 +42406,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1203 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42141,10 +42425,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1204 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42157,10 +42441,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1204 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42176,10 +42460,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1205 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42192,10 +42476,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1205 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42211,10 +42495,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1206 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42227,10 +42511,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1206 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42246,10 +42530,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1207 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42262,10 +42546,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1207 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42278,10 +42562,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1208 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42294,10 +42578,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1208 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42313,10 +42597,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1209 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42329,10 +42613,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1209 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42348,10 +42632,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1210 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42364,10 +42648,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1210 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42383,10 +42667,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1211 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42399,10 +42683,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1211 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42418,10 +42702,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1212 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42434,10 +42718,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1212 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42453,10 +42737,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1213 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42469,10 +42753,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1213 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42488,10 +42772,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1214 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42504,10 +42788,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1214 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42523,10 +42807,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1215 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42539,10 +42823,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1215 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42558,10 +42842,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1216 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42574,10 +42858,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1216 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42590,10 +42874,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1217 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42606,10 +42890,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1217 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42625,10 +42909,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1218 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42641,10 +42925,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1218 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42660,10 +42944,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1219 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42676,10 +42960,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1219 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42695,10 +42979,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1220 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42711,10 +42995,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1220 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42730,10 +43014,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1221 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42746,10 +43030,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1221 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42765,10 +43049,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1222 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42781,10 +43065,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1222 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42800,10 +43084,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1223 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42816,10 +43100,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1223 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42835,10 +43119,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1224 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42851,10 +43135,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1224 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42870,10 +43154,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1225 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42886,10 +43170,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1225 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42902,10 +43186,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1226 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42918,10 +43202,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1226 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42937,10 +43221,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1227 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42953,10 +43237,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1227 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42972,10 +43256,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1228 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -42988,10 +43272,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1228 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43007,10 +43291,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1229 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43023,10 +43307,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1229 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43042,10 +43326,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1230 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43058,10 +43342,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1230 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43077,10 +43361,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1231 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43093,10 +43377,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1231 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43112,10 +43396,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1232 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43128,10 +43412,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1232 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43147,10 +43431,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1233 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43163,10 +43447,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1233 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43182,10 +43466,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1234 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43198,10 +43482,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1234 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43214,10 +43498,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1235 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43230,10 +43514,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1235 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43249,10 +43533,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1236 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43265,10 +43549,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1236 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43284,10 +43568,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1237 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43300,10 +43584,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1237 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43319,10 +43603,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1238 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43335,10 +43619,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1238 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43354,10 +43638,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1239 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43370,10 +43654,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1239 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43389,10 +43673,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1240 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43405,10 +43689,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1240 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43424,10 +43708,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1241 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43440,10 +43724,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1241 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43459,10 +43743,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1242 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43475,10 +43759,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1242 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43494,10 +43778,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1243 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43510,10 +43794,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1243 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43526,10 +43810,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1244 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43542,10 +43826,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1244 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43561,10 +43845,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1245 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43577,10 +43861,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1245 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43596,10 +43880,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1246 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43612,10 +43896,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1246 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43631,10 +43915,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1247 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43647,10 +43931,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1247 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43666,10 +43950,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1248 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43682,10 +43966,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1248 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43701,10 +43985,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1249 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43717,10 +44001,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1249 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43736,10 +44020,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1250 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43752,10 +44036,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1250 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43771,10 +44055,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1251 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43787,10 +44071,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1251 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43806,10 +44090,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1252 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43822,10 +44106,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1252 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43838,10 +44122,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1253 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43854,10 +44138,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1253 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43873,10 +44157,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1254 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43889,10 +44173,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1254 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43908,10 +44192,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1255 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43924,10 +44208,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1255 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43943,10 +44227,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1256 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43959,10 +44243,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1256 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43978,10 +44262,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1257 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -43994,10 +44278,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1257 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44013,10 +44297,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1258 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44029,10 +44313,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1258 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44048,10 +44332,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1259 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44064,10 +44348,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1259 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44083,10 +44367,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1260 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44099,10 +44383,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1260 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44118,10 +44402,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1261 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44134,10 +44418,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1261 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44150,10 +44434,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1262 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44166,10 +44450,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1262 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44185,10 +44469,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1263 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44201,10 +44485,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1263 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44220,10 +44504,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1264 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44236,10 +44520,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1264 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44255,10 +44539,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1265 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44271,10 +44555,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1265 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44290,10 +44574,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1266 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44306,10 +44590,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1266 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44325,10 +44609,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1267 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44341,10 +44625,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1267 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44360,10 +44644,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1268 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44376,10 +44660,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1268 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44395,10 +44679,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1269 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44411,10 +44695,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1269 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44430,10 +44714,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1270 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true true] @@ -44446,10 +44730,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1270 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44462,10 +44746,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1271 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44478,10 +44762,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1271 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44497,10 +44781,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1272 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44513,10 +44797,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1272 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44532,10 +44816,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1273 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44548,10 +44832,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1273 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44567,10 +44851,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1274 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44583,10 +44867,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1274 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44602,10 +44886,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1275 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44618,10 +44902,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1275 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44637,10 +44921,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1276 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44653,10 +44937,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1276 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44672,10 +44956,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1277 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44688,10 +44972,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1277 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44707,10 +44991,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1278 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44723,10 +45007,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1278 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44742,10 +45026,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1279 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44758,10 +45042,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1279 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44774,10 +45058,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1280 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44790,10 +45074,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1280 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44809,10 +45093,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1281 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44825,10 +45109,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1281 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44844,10 +45128,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1282 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44860,10 +45144,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1282 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44879,10 +45163,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1283 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44895,10 +45179,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1283 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44914,10 +45198,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1284 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44930,10 +45214,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1284 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44949,10 +45233,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1285 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44965,10 +45249,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1285 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -44984,10 +45268,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1286 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45000,10 +45284,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1286 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45019,10 +45303,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1287 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45035,10 +45319,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1287 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45054,10 +45338,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1288 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45070,10 +45354,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1288 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45086,10 +45370,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1289 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45102,10 +45386,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1289 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45121,10 +45405,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1290 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45137,10 +45421,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1290 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45156,10 +45440,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1291 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45172,10 +45456,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1291 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45191,10 +45475,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1292 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45207,10 +45491,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1292 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45226,10 +45510,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1293 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45242,10 +45526,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1293 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45261,10 +45545,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1294 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45277,10 +45561,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1294 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45296,10 +45580,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1295 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45312,10 +45596,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1295 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45331,10 +45615,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1296 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45347,10 +45631,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1296 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45366,10 +45650,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1297 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45382,10 +45666,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1297 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45398,10 +45682,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1298 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45414,10 +45698,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1298 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45433,10 +45717,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1299 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45449,10 +45733,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1299 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45468,10 +45752,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1300 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45484,10 +45768,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1300 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45503,10 +45787,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1301 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45519,10 +45803,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1301 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45538,10 +45822,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1302 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45554,10 +45838,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1302 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45573,10 +45857,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1303 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45589,10 +45873,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1303 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45608,10 +45892,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1304 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45624,10 +45908,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1304 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45643,10 +45927,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1305 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45659,10 +45943,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1305 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45678,10 +45962,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1306 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45694,10 +45978,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1306 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45710,10 +45994,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1307 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45726,10 +46010,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1307 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45745,10 +46029,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1308 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45761,10 +46045,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1308 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45780,10 +46064,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1309 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45796,10 +46080,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1309 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45815,10 +46099,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1310 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45831,10 +46115,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1310 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45850,10 +46134,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1311 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45866,10 +46150,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1311 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45885,10 +46169,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1312 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45901,10 +46185,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1312 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45920,10 +46204,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1313 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45936,10 +46220,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1313 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45955,10 +46239,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1314 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45971,10 +46255,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1314 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -45990,10 +46274,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1315 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46006,10 +46290,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1315 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46022,10 +46306,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1316 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46038,10 +46322,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1316 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46057,10 +46341,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1317 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46073,10 +46357,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1317 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46092,10 +46376,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1318 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46108,10 +46392,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1318 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46127,10 +46411,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1319 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46143,10 +46427,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1319 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46162,10 +46446,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1320 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46178,10 +46462,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1320 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46197,10 +46481,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1321 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46213,10 +46497,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1321 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46232,10 +46516,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1322 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46248,10 +46532,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1322 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46267,10 +46551,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1323 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46283,10 +46567,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1323 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46302,10 +46586,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1324 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true true true] @@ -46318,10 +46602,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1324 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46334,10 +46618,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1325 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46350,10 +46634,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1325 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46369,10 +46653,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1326 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46385,10 +46669,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1326 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46404,10 +46688,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1327 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46420,10 +46704,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1327 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46439,10 +46723,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1328 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46455,10 +46739,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1328 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46474,10 +46758,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1329 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46490,10 +46774,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1329 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46509,10 +46793,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1330 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46525,10 +46809,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1330 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46544,10 +46828,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1331 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46560,10 +46844,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1331 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46579,10 +46863,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1332 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46595,10 +46879,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1332 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46614,10 +46898,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1333 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46630,10 +46914,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1333 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46646,10 +46930,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1334 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46662,10 +46946,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1334 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46681,10 +46965,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1335 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46697,10 +46981,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1335 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46716,10 +47000,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1336 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46732,10 +47016,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1336 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46751,10 +47035,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1337 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46767,10 +47051,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1337 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46786,10 +47070,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1338 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46802,10 +47086,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1338 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46821,10 +47105,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1339 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46837,10 +47121,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1339 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46856,10 +47140,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1340 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46872,10 +47156,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1340 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46891,10 +47175,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1341 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46907,10 +47191,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1341 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46926,10 +47210,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1342 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46942,10 +47226,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1342 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46958,10 +47242,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1343 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46974,10 +47258,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1343 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -46993,10 +47277,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1344 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47009,10 +47293,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1344 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47028,10 +47312,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1345 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47044,10 +47328,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1345 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47063,10 +47347,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1346 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47079,10 +47363,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1346 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47098,10 +47382,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1347 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47114,10 +47398,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1347 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47133,10 +47417,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1348 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47149,10 +47433,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1348 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47168,10 +47452,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1349 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47184,10 +47468,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1349 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47203,10 +47487,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1350 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47219,10 +47503,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1350 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47238,10 +47522,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1351 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47254,10 +47538,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1351 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47270,10 +47554,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1352 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47286,10 +47570,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1352 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47305,10 +47589,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1353 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47321,10 +47605,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1353 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47340,10 +47624,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1354 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47356,10 +47640,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1354 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47375,10 +47659,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1355 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47391,10 +47675,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1355 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47410,10 +47694,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1356 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47426,10 +47710,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1356 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47445,10 +47729,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1357 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47461,10 +47745,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1357 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47480,10 +47764,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1358 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47496,10 +47780,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1358 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47515,10 +47799,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1359 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47531,10 +47815,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1359 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47550,10 +47834,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1360 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47566,10 +47850,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1360 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47582,10 +47866,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1361 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47598,10 +47882,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1361 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47617,10 +47901,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1362 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47633,10 +47917,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1362 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47652,10 +47936,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1363 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47668,10 +47952,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1363 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47687,10 +47971,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1364 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47703,10 +47987,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1364 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47722,10 +48006,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1365 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47738,10 +48022,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1365 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47757,10 +48041,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1366 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47773,10 +48057,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1366 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47792,10 +48076,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1367 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47808,10 +48092,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1367 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47827,10 +48111,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1368 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47843,10 +48127,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1368 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47862,10 +48146,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1369 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47878,10 +48162,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1369 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47894,10 +48178,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1370 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47910,10 +48194,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1370 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47929,10 +48213,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1371 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47945,10 +48229,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1371 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47964,10 +48248,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1372 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47980,10 +48264,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1372 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -47999,10 +48283,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1373 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48015,10 +48299,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1373 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48034,10 +48318,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1374 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48050,10 +48334,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1374 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48069,10 +48353,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1375 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48085,10 +48369,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1375 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48104,10 +48388,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1376 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48120,10 +48404,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1376 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48139,10 +48423,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1377 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48155,10 +48439,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1377 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48174,10 +48458,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1378 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true false true true] @@ -48190,10 +48474,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1378 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48206,10 +48490,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1379 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48222,10 +48506,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1379 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48241,10 +48525,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1380 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48257,10 +48541,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1380 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48276,10 +48560,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1381 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48292,10 +48576,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1381 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48311,10 +48595,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1382 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48327,10 +48611,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1382 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48346,10 +48630,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1383 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48362,10 +48646,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1383 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48381,10 +48665,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1384 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48397,10 +48681,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1384 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48416,10 +48700,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1385 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48432,10 +48716,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1385 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48451,10 +48735,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1386 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48467,10 +48751,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1386 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48486,10 +48770,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1387 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48502,10 +48786,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1387 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48518,10 +48802,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1388 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48534,10 +48818,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1388 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48553,10 +48837,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1389 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48569,10 +48853,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1389 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48588,10 +48872,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1390 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48604,10 +48888,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1390 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48623,10 +48907,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1391 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48639,10 +48923,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1391 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48658,10 +48942,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1392 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48674,10 +48958,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1392 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48693,10 +48977,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1393 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48709,10 +48993,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1393 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48728,10 +49012,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1394 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48744,10 +49028,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1394 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48763,10 +49047,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1395 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48779,10 +49063,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1395 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48798,10 +49082,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1396 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true false true true] @@ -48814,10 +49098,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1396 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48830,10 +49114,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1397 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48846,10 +49130,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1397 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48865,10 +49149,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1398 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48881,10 +49165,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1398 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48900,10 +49184,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1399 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48916,10 +49200,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1399 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48935,10 +49219,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1400 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48951,10 +49235,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1400 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48970,10 +49254,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1401 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -48986,10 +49270,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1401 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49005,10 +49289,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1402 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49021,10 +49305,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1402 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49040,10 +49324,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1403 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49056,10 +49340,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1403 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49075,10 +49359,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1404 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49091,10 +49375,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1404 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49110,10 +49394,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1405 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49126,10 +49410,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1405 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49142,10 +49426,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1406 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49158,10 +49442,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1406 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49177,10 +49461,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1407 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49193,10 +49477,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1407 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49212,10 +49496,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1408 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49228,10 +49512,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1408 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49247,10 +49531,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1409 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49263,10 +49547,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1409 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49282,10 +49566,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1410 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49298,10 +49582,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1410 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49317,10 +49601,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1411 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49333,10 +49617,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1411 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49352,10 +49636,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1412 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49368,10 +49652,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1412 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49387,10 +49671,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1413 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49403,10 +49687,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1413 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49422,10 +49706,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1414 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -49438,10 +49722,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1414 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49454,10 +49738,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1415 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49470,10 +49754,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1415 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49489,10 +49773,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1416 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49505,10 +49789,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1416 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49524,10 +49808,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1417 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49540,10 +49824,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1417 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49559,10 +49843,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1418 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49575,10 +49859,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1418 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49594,10 +49878,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1419 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49610,10 +49894,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1419 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49629,10 +49913,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1420 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49645,10 +49929,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1420 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49664,10 +49948,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1421 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49680,10 +49964,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1421 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49699,10 +49983,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1422 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49715,10 +49999,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1422 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49734,10 +50018,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1423 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49750,10 +50034,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1423 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49766,10 +50050,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1424 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49782,10 +50066,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1424 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49801,10 +50085,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1425 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49817,10 +50101,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1425 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49836,10 +50120,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1426 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49852,10 +50136,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1426 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49871,10 +50155,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1427 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49887,10 +50171,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1427 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49906,10 +50190,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1428 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49922,10 +50206,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1428 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49941,10 +50225,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1429 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49957,10 +50241,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1429 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49976,10 +50260,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1430 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -49992,10 +50276,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1430 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -50011,10 +50295,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1431 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -50027,10 +50311,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1431 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -50046,10 +50330,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1432 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -50062,10 +50346,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1432 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50078,10 +50362,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1433 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50094,10 +50378,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1433 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50113,10 +50397,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1434 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50129,10 +50413,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1434 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50148,10 +50432,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1435 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50164,10 +50448,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1435 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50183,10 +50467,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1436 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50199,10 +50483,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1436 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50218,10 +50502,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1437 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50234,10 +50518,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1437 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50253,10 +50537,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1438 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50269,10 +50553,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1438 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50288,10 +50572,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1439 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50304,10 +50588,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1439 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50323,10 +50607,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1440 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50339,10 +50623,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1440 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50358,10 +50642,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1441 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50374,10 +50658,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1441 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50390,10 +50674,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1442 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50406,10 +50690,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1442 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50425,10 +50709,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1443 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50441,10 +50725,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1443 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50460,10 +50744,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1444 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50476,10 +50760,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1444 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50495,10 +50779,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1445 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50511,10 +50795,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1445 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50530,10 +50814,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1446 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50546,10 +50830,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1446 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50565,10 +50849,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1447 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50581,10 +50865,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1447 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50600,10 +50884,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1448 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50616,10 +50900,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1448 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50635,10 +50919,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1449 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50651,10 +50935,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1449 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50670,10 +50954,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1450 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50686,10 +50970,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1450 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50702,10 +50986,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1451 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50718,10 +51002,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1451 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50737,10 +51021,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1452 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50753,10 +51037,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1452 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50772,10 +51056,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1453 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50788,10 +51072,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1453 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50807,10 +51091,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1454 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50823,10 +51107,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1454 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50842,10 +51126,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1455 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50858,10 +51142,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1455 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50877,10 +51161,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1456 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50893,10 +51177,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1456 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50912,10 +51196,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1457 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50928,10 +51212,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1457 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50947,10 +51231,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1458 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50963,10 +51247,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1458 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50982,10 +51266,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1459 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -50998,10 +51282,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1459 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51014,10 +51298,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1460 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51030,10 +51314,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1460 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51049,10 +51333,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1461 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51065,10 +51349,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1461 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51084,10 +51368,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1462 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51100,10 +51384,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1462 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51119,10 +51403,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1463 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51135,10 +51419,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1463 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51154,10 +51438,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1464 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51170,10 +51454,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1464 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51189,10 +51473,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1465 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51205,10 +51489,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1465 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51224,10 +51508,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1466 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51240,10 +51524,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1466 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51259,10 +51543,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1467 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51275,10 +51559,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1467 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51294,10 +51578,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1468 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51310,10 +51594,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1468 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51326,10 +51610,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1469 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51342,10 +51626,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1469 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51361,10 +51645,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1470 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51377,10 +51661,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1470 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51396,10 +51680,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1471 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51412,10 +51696,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1471 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51431,10 +51715,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1472 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51447,10 +51731,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1472 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51466,10 +51750,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1473 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51482,10 +51766,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1473 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51501,10 +51785,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1474 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51517,10 +51801,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1474 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51536,10 +51820,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1475 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51552,10 +51836,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1475 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51571,10 +51855,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1476 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51587,10 +51871,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1476 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51606,10 +51890,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1477 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51622,10 +51906,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1477 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51638,10 +51922,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1478 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51654,10 +51938,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1478 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51673,10 +51957,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1479 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51689,10 +51973,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1479 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51708,10 +51992,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1480 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51724,10 +52008,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1480 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51743,10 +52027,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1481 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51759,10 +52043,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1481 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51778,10 +52062,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1482 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51794,10 +52078,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1482 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51813,10 +52097,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1483 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51829,10 +52113,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1483 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51848,10 +52132,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1484 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51864,10 +52148,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1484 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51883,10 +52167,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1485 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51899,10 +52183,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1485 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51918,10 +52202,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1486 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true true true] @@ -51934,10 +52218,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1486 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -51950,10 +52234,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1487 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -51966,10 +52250,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1487 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -51985,10 +52269,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1488 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52001,10 +52285,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1488 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52020,10 +52304,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1489 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52036,10 +52320,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1489 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52055,10 +52339,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1490 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52071,10 +52355,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1490 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52090,10 +52374,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1491 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52106,10 +52390,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1491 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52125,10 +52409,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1492 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52141,10 +52425,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1492 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52160,10 +52444,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1493 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52176,10 +52460,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1493 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52195,10 +52479,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1494 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52211,10 +52495,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1494 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52230,10 +52514,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1495 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52246,10 +52530,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1495 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52262,10 +52546,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1496 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52278,10 +52562,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1496 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52297,10 +52581,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1497 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52313,10 +52597,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1497 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52332,10 +52616,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1498 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52348,10 +52632,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1498 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52367,10 +52651,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1499 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52383,10 +52667,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1499 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52402,10 +52686,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1500 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52418,10 +52702,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1500 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52437,10 +52721,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1501 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52453,10 +52737,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1501 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52472,10 +52756,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1502 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52488,10 +52772,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1502 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52507,10 +52791,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1503 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52523,10 +52807,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1503 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52542,10 +52826,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1504 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52558,10 +52842,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1504 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52574,10 +52858,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1505 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52590,10 +52874,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1505 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52609,10 +52893,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1506 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52625,10 +52909,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1506 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52644,10 +52928,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1507 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52660,10 +52944,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1507 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52679,10 +52963,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1508 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52695,10 +52979,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1508 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52714,10 +52998,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1509 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52730,10 +53014,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1509 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52749,10 +53033,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1510 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52765,10 +53049,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1510 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52784,10 +53068,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1511 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52800,10 +53084,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1511 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52819,10 +53103,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1512 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52835,10 +53119,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1512 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52854,10 +53138,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1513 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52870,10 +53154,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1513 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52886,10 +53170,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1514 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52902,10 +53186,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1514 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52921,10 +53205,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1515 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52937,10 +53221,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1515 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52956,10 +53240,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1516 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52972,10 +53256,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1516 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -52991,10 +53275,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1517 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53007,10 +53291,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1517 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53026,10 +53310,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1518 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53042,10 +53326,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1518 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53061,10 +53345,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1519 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53077,10 +53361,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1519 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53096,10 +53380,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1520 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53112,10 +53396,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1520 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53131,10 +53415,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1521 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53147,10 +53431,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1521 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53166,10 +53450,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1522 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53182,10 +53466,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1522 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53198,10 +53482,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1523 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53214,10 +53498,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1523 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53233,10 +53517,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1524 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53249,10 +53533,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1524 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53268,10 +53552,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1525 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53284,10 +53568,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1525 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53303,10 +53587,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1526 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53319,10 +53603,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1526 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53338,10 +53622,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1527 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53354,10 +53638,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1527 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53373,10 +53657,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1528 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53389,10 +53673,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1528 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53408,10 +53692,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1529 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53424,10 +53708,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1529 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53443,10 +53727,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1530 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53459,10 +53743,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1530 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53478,10 +53762,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1531 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53494,10 +53778,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1531 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53510,10 +53794,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1532 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53526,10 +53810,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1532 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53545,10 +53829,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1533 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53561,10 +53845,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1533 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53580,10 +53864,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1534 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53596,10 +53880,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1534 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53615,10 +53899,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1535 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53631,10 +53915,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1535 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53650,10 +53934,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1536 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53666,10 +53950,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1536 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53685,10 +53969,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1537 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53701,10 +53985,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1537 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53720,10 +54004,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1538 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53736,10 +54020,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1538 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53755,10 +54039,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1539 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53771,10 +54055,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1539 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53790,10 +54074,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1540 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53806,10 +54090,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1540 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53822,10 +54106,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1541 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53838,10 +54122,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1541 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53857,10 +54141,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1542 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53873,10 +54157,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1542 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53892,10 +54176,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1543 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53908,10 +54192,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1543 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53927,10 +54211,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1544 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53943,10 +54227,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1544 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53962,10 +54246,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1545 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53978,10 +54262,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1545 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -53997,10 +54281,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1546 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54013,10 +54297,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1546 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54032,10 +54316,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1547 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54048,10 +54332,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1547 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54067,10 +54351,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1548 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54083,10 +54367,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1548 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54102,10 +54386,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1549 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54118,10 +54402,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1549 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54134,10 +54418,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1550 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54150,10 +54434,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1550 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54169,10 +54453,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1551 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54185,10 +54469,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1551 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54204,10 +54488,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1552 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54220,10 +54504,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1552 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54239,10 +54523,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1553 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54255,10 +54539,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1553 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54274,10 +54558,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1554 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54290,10 +54574,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1554 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54309,10 +54593,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1555 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54325,10 +54609,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1555 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54344,10 +54628,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1556 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54360,10 +54644,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1556 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54379,10 +54663,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1557 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54395,10 +54679,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1557 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54414,10 +54698,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1558 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false false true true true false true] @@ -54430,10 +54714,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1558 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54446,10 +54730,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1559 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54462,10 +54746,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1559 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54481,10 +54765,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1560 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54497,10 +54781,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1560 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54516,10 +54800,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1561 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54532,10 +54816,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1561 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54551,10 +54835,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1562 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54567,10 +54851,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1562 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54586,10 +54870,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1563 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54602,10 +54886,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1563 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54621,10 +54905,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1564 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54637,10 +54921,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1564 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54656,10 +54940,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1565 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54672,10 +54956,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1565 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54691,10 +54975,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1566 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54707,10 +54991,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1566 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54726,10 +55010,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1567 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54742,10 +55026,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1567 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54758,10 +55042,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1568 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54774,10 +55058,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1568 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54793,10 +55077,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1569 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54809,10 +55093,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1569 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54828,10 +55112,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1570 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54844,10 +55128,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1570 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54863,10 +55147,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1571 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54879,10 +55163,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1571 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54898,10 +55182,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1572 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54914,10 +55198,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1572 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54933,10 +55217,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1573 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54949,10 +55233,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1573 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54968,10 +55252,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1574 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -54984,10 +55268,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1574 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55003,10 +55287,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1575 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55019,10 +55303,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1575 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55038,10 +55322,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1576 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55054,10 +55338,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1576 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55070,10 +55354,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1577 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55086,10 +55370,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1577 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55105,10 +55389,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1578 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55121,10 +55405,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1578 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55140,10 +55424,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1579 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55156,10 +55440,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1579 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55175,10 +55459,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1580 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55191,10 +55475,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1580 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55210,10 +55494,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1581 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55226,10 +55510,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1581 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55245,10 +55529,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1582 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55261,10 +55545,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1582 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55280,10 +55564,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1583 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55296,10 +55580,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1583 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55315,10 +55599,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1584 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55331,10 +55615,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1584 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55350,10 +55634,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1585 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55366,10 +55650,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1585 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55382,10 +55666,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1586 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55398,10 +55682,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1586 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55417,10 +55701,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1587 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55433,10 +55717,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1587 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55452,10 +55736,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1588 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55468,10 +55752,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1588 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55487,10 +55771,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1589 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55503,10 +55787,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1589 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55522,10 +55806,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1590 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55538,10 +55822,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1590 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55557,10 +55841,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1591 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55573,10 +55857,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1591 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55592,10 +55876,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1592 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55608,10 +55892,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1592 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55627,10 +55911,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1593 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55643,10 +55927,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1593 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55662,10 +55946,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1594 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -55678,10 +55962,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1594 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55694,10 +55978,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1595 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55710,10 +55994,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1595 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55729,10 +56013,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1596 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55745,10 +56029,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1596 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55764,10 +56048,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1597 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55780,10 +56064,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1597 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55799,10 +56083,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1598 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55815,10 +56099,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1598 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55834,10 +56118,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1599 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55850,10 +56134,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1599 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55869,10 +56153,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1600 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55885,10 +56169,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1600 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55904,10 +56188,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1601 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55920,10 +56204,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1601 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55939,10 +56223,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1602 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55955,10 +56239,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1602 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55974,10 +56258,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1603 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -55990,10 +56274,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1603 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56006,10 +56290,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1604 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56022,10 +56306,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1604 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56041,10 +56325,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1605 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56057,10 +56341,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1605 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56076,10 +56360,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1606 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56092,10 +56376,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1606 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56111,10 +56395,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1607 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56127,10 +56411,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1607 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56146,10 +56430,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1608 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56162,10 +56446,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1608 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56181,10 +56465,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1609 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56197,10 +56481,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1609 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56216,10 +56500,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1610 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56232,10 +56516,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1610 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56251,10 +56535,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1611 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56267,10 +56551,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1611 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56286,10 +56570,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1612 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true false true] @@ -56302,10 +56586,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1612 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56318,10 +56602,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1613 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56334,10 +56618,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1613 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56353,10 +56637,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1614 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56369,10 +56653,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1614 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56388,10 +56672,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1615 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56404,10 +56688,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1615 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56423,10 +56707,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1616 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56439,10 +56723,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1616 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56458,10 +56742,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1617 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56474,10 +56758,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1617 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56493,10 +56777,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1618 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56509,10 +56793,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1618 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56528,10 +56812,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1619 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56544,10 +56828,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1619 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56563,10 +56847,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1620 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56579,10 +56863,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1620 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56598,10 +56882,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1621 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56614,10 +56898,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1621 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56630,10 +56914,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1622 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56646,10 +56930,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1622 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56665,10 +56949,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1623 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56681,10 +56965,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1623 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56700,10 +56984,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1624 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56716,10 +57000,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1624 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56735,10 +57019,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1625 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56751,10 +57035,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1625 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56770,10 +57054,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1626 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56786,10 +57070,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1626 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56805,10 +57089,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1627 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56821,10 +57105,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1627 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56840,10 +57124,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1628 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56856,10 +57140,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1628 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56875,10 +57159,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1629 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56891,10 +57175,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1629 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56910,10 +57194,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1630 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56926,10 +57210,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1630 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56942,10 +57226,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1631 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56958,10 +57242,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1631 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56977,10 +57261,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1632 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -56993,10 +57277,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1632 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57012,10 +57296,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1633 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57028,10 +57312,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1633 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57047,10 +57331,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1634 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57063,10 +57347,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1634 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57082,10 +57366,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1635 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57098,10 +57382,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1635 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57117,10 +57401,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1636 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57133,10 +57417,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1636 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57152,10 +57436,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1637 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57168,10 +57452,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1637 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57187,10 +57471,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1638 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57203,10 +57487,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1638 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57222,10 +57506,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1639 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57238,10 +57522,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1639 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57254,10 +57538,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1640 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57270,10 +57554,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1640 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57289,10 +57573,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1641 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57305,10 +57589,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1641 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57324,10 +57608,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1642 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57340,10 +57624,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1642 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57359,10 +57643,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1643 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57375,10 +57659,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1643 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57394,10 +57678,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1644 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57410,10 +57694,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1644 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57429,10 +57713,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1645 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57445,10 +57729,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1645 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57464,10 +57748,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1646 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57480,10 +57764,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1646 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57499,10 +57783,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1647 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57515,10 +57799,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1647 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57534,10 +57818,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1648 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -57550,10 +57834,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1648 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57566,10 +57850,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1649 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57582,10 +57866,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1649 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57601,10 +57885,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1650 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57617,10 +57901,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1650 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57636,10 +57920,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1651 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57652,10 +57936,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1651 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57671,10 +57955,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1652 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57687,10 +57971,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1652 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57706,10 +57990,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1653 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57722,10 +58006,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1653 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57741,10 +58025,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1654 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57757,10 +58041,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1654 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57776,10 +58060,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1655 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57792,10 +58076,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1655 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57811,10 +58095,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1656 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57827,10 +58111,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1656 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57846,10 +58130,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1657 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57862,10 +58146,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1657 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57878,10 +58162,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1658 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57894,10 +58178,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1658 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57913,10 +58197,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1659 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57929,10 +58213,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1659 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57948,10 +58232,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1660 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57964,10 +58248,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1660 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57983,10 +58267,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1661 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -57999,10 +58283,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1661 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58018,10 +58302,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1662 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58034,10 +58318,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1662 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58053,10 +58337,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1663 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58069,10 +58353,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1663 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58088,10 +58372,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1664 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58104,10 +58388,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1664 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58123,10 +58407,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1665 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58139,10 +58423,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1665 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58158,10 +58442,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1666 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -58174,10 +58458,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1666 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58190,10 +58474,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1667 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58206,10 +58490,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1667 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58225,10 +58509,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1668 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58241,10 +58525,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1668 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58260,10 +58544,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1669 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58276,10 +58560,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1669 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58295,10 +58579,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1670 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58311,10 +58595,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1670 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58330,10 +58614,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1671 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58346,10 +58630,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1671 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58365,10 +58649,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1672 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58381,10 +58665,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1672 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58400,10 +58684,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1673 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58416,10 +58700,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1673 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58435,10 +58719,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1674 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58451,10 +58735,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1674 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58470,10 +58754,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1675 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58486,10 +58770,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1675 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58502,10 +58786,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1676 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58518,10 +58802,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1676 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58537,10 +58821,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1677 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58553,10 +58837,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1677 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58572,10 +58856,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1678 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58588,10 +58872,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1678 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58607,10 +58891,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1679 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58623,10 +58907,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1679 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58642,10 +58926,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1680 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58658,10 +58942,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1680 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58677,10 +58961,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1681 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58693,10 +58977,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1681 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58712,10 +58996,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1682 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58728,10 +59012,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1682 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58747,10 +59031,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1683 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58763,10 +59047,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1683 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58782,10 +59066,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1684 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58798,10 +59082,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1684 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58814,10 +59098,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1685 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58830,10 +59114,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1685 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58849,10 +59133,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1686 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58865,10 +59149,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1686 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58884,10 +59168,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1687 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58900,10 +59184,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1687 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58919,10 +59203,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1688 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58935,10 +59219,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1688 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58954,10 +59238,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1689 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58970,10 +59254,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1689 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -58989,10 +59273,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1690 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59005,10 +59289,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1690 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59024,10 +59308,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1691 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59040,10 +59324,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1691 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59059,10 +59343,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1692 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59075,10 +59359,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1692 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59094,10 +59378,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1693 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59110,10 +59394,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1693 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59126,10 +59410,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1694 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59142,10 +59426,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1694 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59161,10 +59445,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1695 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59177,10 +59461,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1695 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59196,10 +59480,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1696 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59212,10 +59496,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1696 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59231,10 +59515,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1697 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59247,10 +59531,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1697 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59266,10 +59550,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1698 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59282,10 +59566,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1698 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59301,10 +59585,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1699 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59317,10 +59601,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1699 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59336,10 +59620,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1700 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59352,10 +59636,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1700 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59371,10 +59655,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1701 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59387,10 +59671,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1701 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59406,10 +59690,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1702 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true true] @@ -59422,10 +59706,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1702 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59438,10 +59722,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1703 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59454,10 +59738,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1703 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59473,10 +59757,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1704 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59489,10 +59773,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1704 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59508,10 +59792,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1705 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59524,10 +59808,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1705 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59543,10 +59827,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1706 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59559,10 +59843,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1706 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59578,10 +59862,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1707 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59594,10 +59878,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1707 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59613,10 +59897,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1708 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59629,10 +59913,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1708 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59648,10 +59932,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1709 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59664,10 +59948,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1709 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59683,10 +59967,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1710 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59699,10 +59983,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1710 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59718,10 +60002,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1711 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59734,10 +60018,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1711 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59750,10 +60034,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1712 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59766,10 +60050,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1712 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59785,10 +60069,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1713 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59801,10 +60085,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1713 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59820,10 +60104,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1714 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59836,10 +60120,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1714 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59855,10 +60139,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1715 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59871,10 +60155,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1715 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59890,10 +60174,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1716 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59906,10 +60190,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1716 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59925,10 +60209,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1717 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59941,10 +60225,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1717 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59960,10 +60244,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1718 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59976,10 +60260,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1718 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -59995,10 +60279,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1719 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60011,10 +60295,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1719 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60030,10 +60314,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1720 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60046,10 +60330,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1720 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60062,10 +60346,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1721 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60078,10 +60362,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1721 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60097,10 +60381,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1722 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60113,10 +60397,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1722 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60132,10 +60416,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1723 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60148,10 +60432,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1723 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60167,10 +60451,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1724 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60183,10 +60467,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1724 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60202,10 +60486,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1725 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60218,10 +60502,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1725 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60237,10 +60521,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1726 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60253,10 +60537,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1726 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60272,10 +60556,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1727 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60288,10 +60572,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1727 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60307,10 +60591,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1728 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60323,10 +60607,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1728 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60342,10 +60626,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1729 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60358,10 +60642,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1729 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60374,10 +60658,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1730 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60390,10 +60674,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1730 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60409,10 +60693,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1731 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60425,10 +60709,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1731 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60444,10 +60728,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1732 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60460,10 +60744,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1732 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60479,10 +60763,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1733 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60495,10 +60779,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1733 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60514,10 +60798,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1734 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60530,10 +60814,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1734 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60549,10 +60833,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1735 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60565,10 +60849,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1735 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60584,10 +60868,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1736 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60600,10 +60884,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1736 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60619,10 +60903,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1737 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60635,10 +60919,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1737 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60654,10 +60938,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1738 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -60670,10 +60954,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1738 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60686,10 +60970,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1739 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60702,10 +60986,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1739 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60721,10 +61005,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1740 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60737,10 +61021,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1740 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60756,10 +61040,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1741 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60772,10 +61056,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1741 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60791,10 +61075,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1742 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60807,10 +61091,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1742 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60826,10 +61110,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1743 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60842,10 +61126,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1743 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60861,10 +61145,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1744 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60877,10 +61161,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1744 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60896,10 +61180,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1745 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60912,10 +61196,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1745 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60931,10 +61215,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1746 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60947,10 +61231,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1746 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60966,10 +61250,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1747 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60982,10 +61266,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1747 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -60998,10 +61282,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1748 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61014,10 +61298,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1748 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61033,10 +61317,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1749 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61049,10 +61333,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1749 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61068,10 +61352,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1750 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61084,10 +61368,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1750 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61103,10 +61387,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1751 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61119,10 +61403,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1751 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61138,10 +61422,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1752 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61154,10 +61438,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1752 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61173,10 +61457,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1753 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61189,10 +61473,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1753 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61208,10 +61492,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1754 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61224,10 +61508,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1754 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61243,10 +61527,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1755 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61259,10 +61543,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1755 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61278,10 +61562,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1756 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true true false] @@ -61294,10 +61578,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1756 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61310,10 +61594,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1757 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61326,10 +61610,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1757 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61345,10 +61629,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1758 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61361,10 +61645,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1758 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61380,10 +61664,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1759 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61396,10 +61680,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1759 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61415,10 +61699,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1760 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61431,10 +61715,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1760 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61450,10 +61734,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1761 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61466,10 +61750,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1761 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61485,10 +61769,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1762 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61501,10 +61785,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1762 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61520,10 +61804,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1763 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61536,10 +61820,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1763 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61555,10 +61839,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1764 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61571,10 +61855,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1764 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61590,10 +61874,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1765 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61606,10 +61890,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1765 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61622,10 +61906,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1766 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61638,10 +61922,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1766 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61657,10 +61941,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1767 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61673,10 +61957,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1767 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61692,10 +61976,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1768 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61708,10 +61992,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1768 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61727,10 +62011,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1769 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61743,10 +62027,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1769 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61762,10 +62046,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1770 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61778,10 +62062,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1770 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61797,10 +62081,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1771 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61813,10 +62097,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1771 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61832,10 +62116,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1772 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61848,10 +62132,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1772 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61867,10 +62151,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1773 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61883,10 +62167,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1773 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61902,10 +62186,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1774 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false false true true true true true false] @@ -61918,10 +62202,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1774 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -61934,10 +62218,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1775 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -61950,10 +62234,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1775 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -61969,10 +62253,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1776 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -61985,10 +62269,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1776 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62004,10 +62288,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1777 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62020,10 +62304,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1777 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62039,10 +62323,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1778 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62055,10 +62339,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1778 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62074,10 +62358,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1779 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62090,10 +62374,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1779 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62109,10 +62393,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1780 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62125,10 +62409,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1780 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62144,10 +62428,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1781 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62160,10 +62444,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1781 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62179,10 +62463,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1782 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62195,10 +62479,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1782 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62214,10 +62498,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1783 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62230,10 +62514,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1783 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62246,10 +62530,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1784 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62262,10 +62546,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1784 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62281,10 +62565,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1785 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62297,10 +62581,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1785 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62316,10 +62600,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1786 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62332,10 +62616,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1786 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62351,10 +62635,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1787 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62367,10 +62651,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1787 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62386,10 +62670,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1788 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62402,10 +62686,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1788 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62421,10 +62705,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1789 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62437,10 +62721,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1789 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62456,10 +62740,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1790 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62472,10 +62756,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1790 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62491,10 +62775,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1791 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62507,10 +62791,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1791 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62526,10 +62810,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1792 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62542,10 +62826,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1792 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62558,10 +62842,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1793 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62574,10 +62858,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1793 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62593,10 +62877,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1794 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62609,10 +62893,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1794 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62628,10 +62912,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1795 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62644,10 +62928,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1795 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62663,10 +62947,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1796 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62679,10 +62963,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1796 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62698,10 +62982,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1797 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62714,10 +62998,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1797 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62733,10 +63017,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1798 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62749,10 +63033,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1798 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62768,10 +63052,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1799 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62784,10 +63068,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1799 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62803,10 +63087,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1800 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62819,10 +63103,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1800 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62838,10 +63122,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1801 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62854,10 +63138,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1801 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62870,10 +63154,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1802 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62886,10 +63170,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1802 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62905,10 +63189,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1803 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62921,10 +63205,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1803 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62940,10 +63224,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1804 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62956,10 +63240,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1804 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62975,10 +63259,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1805 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -62991,10 +63275,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1805 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63010,10 +63294,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1806 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63026,10 +63310,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1806 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63045,10 +63329,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1807 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63061,10 +63345,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1807 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63080,10 +63364,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1808 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63096,10 +63380,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1808 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63115,10 +63399,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1809 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63131,10 +63415,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1809 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63150,10 +63434,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1810 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63166,10 +63450,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1810 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63182,10 +63466,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1811 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63198,10 +63482,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1811 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63217,10 +63501,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1812 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63233,10 +63517,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1812 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63252,10 +63536,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1813 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63268,10 +63552,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1813 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63287,10 +63571,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1814 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63303,10 +63587,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1814 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63322,10 +63606,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1815 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63338,10 +63622,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1815 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63357,10 +63641,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1816 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63373,10 +63657,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1816 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63392,10 +63676,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1817 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63408,10 +63692,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1817 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63427,10 +63711,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1818 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63443,10 +63727,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1818 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63462,10 +63746,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1819 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63478,10 +63762,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1819 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63494,10 +63778,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1820 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63510,10 +63794,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1820 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63529,10 +63813,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1821 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63545,10 +63829,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1821 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63564,10 +63848,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1822 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63580,10 +63864,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1822 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63599,10 +63883,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1823 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63615,10 +63899,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1823 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63634,10 +63918,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1824 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63650,10 +63934,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1824 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63669,10 +63953,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1825 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63685,10 +63969,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1825 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63704,10 +63988,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1826 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63720,10 +64004,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1826 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63739,10 +64023,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1827 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63755,10 +64039,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1827 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63774,10 +64058,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1828 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true false true true true false] @@ -63790,10 +64074,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1828 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63806,10 +64090,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1829 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63822,10 +64106,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1829 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63841,10 +64125,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1830 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63857,10 +64141,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1830 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63876,10 +64160,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1831 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63892,10 +64176,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1831 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63911,10 +64195,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1832 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63927,10 +64211,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1832 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63946,10 +64230,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1833 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63962,10 +64246,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1833 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63981,10 +64265,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1834 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -63997,10 +64281,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1834 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64016,10 +64300,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1835 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64032,10 +64316,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1835 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64051,10 +64335,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1836 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64067,10 +64351,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1836 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64086,10 +64370,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1837 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64102,10 +64386,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1837 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64118,10 +64402,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1838 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64134,10 +64418,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1838 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64153,10 +64437,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1839 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64169,10 +64453,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1839 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64188,10 +64472,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1840 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64204,10 +64488,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1840 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64223,10 +64507,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1841 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64239,10 +64523,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1841 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64258,10 +64542,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1842 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64274,10 +64558,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1842 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64293,10 +64577,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1843 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64309,10 +64593,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1843 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64328,10 +64612,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1844 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64344,10 +64628,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1844 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64363,10 +64647,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1845 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64379,10 +64663,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1845 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64398,10 +64682,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1846 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64414,10 +64698,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1846 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64430,10 +64714,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1847 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64446,10 +64730,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1847 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64465,10 +64749,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1848 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64481,10 +64765,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1848 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64500,10 +64784,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1849 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64516,10 +64800,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1849 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64535,10 +64819,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1850 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64551,10 +64835,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1850 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64570,10 +64854,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1851 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64586,10 +64870,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1851 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64605,10 +64889,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1852 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64621,10 +64905,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1852 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64640,10 +64924,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1853 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64656,10 +64940,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1853 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64675,10 +64959,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1854 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64691,10 +64975,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1854 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64710,10 +64994,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1855 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64726,10 +65010,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1855 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64742,10 +65026,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1856 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64758,10 +65042,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1856 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64777,10 +65061,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1857 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64793,10 +65077,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1857 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64812,10 +65096,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1858 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64828,10 +65112,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1858 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64847,10 +65131,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1859 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64863,10 +65147,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1859 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64882,10 +65166,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1860 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64898,10 +65182,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1860 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64917,10 +65201,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1861 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64933,10 +65217,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1861 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64952,10 +65236,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1862 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64968,10 +65252,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1862 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -64987,10 +65271,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1863 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -65003,10 +65287,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1863 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -65022,10 +65306,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1864 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true true true true true true false] @@ -65038,10 +65322,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1864 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65054,10 +65338,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1865 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65070,10 +65354,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1865 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65089,10 +65373,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1866 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65105,10 +65389,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1866 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65124,10 +65408,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1867 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65140,10 +65424,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1867 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65159,10 +65443,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1868 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65175,10 +65459,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1868 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65194,10 +65478,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1869 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65210,10 +65494,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1869 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65229,10 +65513,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1870 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65245,10 +65529,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1870 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65264,10 +65548,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1871 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65280,10 +65564,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1871 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65299,10 +65583,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1872 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65315,10 +65599,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1872 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65334,10 +65618,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1873 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65350,10 +65634,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1873 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65366,10 +65650,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1874 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65382,10 +65666,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1874 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65401,10 +65685,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1875 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65417,10 +65701,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1875 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65436,10 +65720,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1876 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65452,10 +65736,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1876 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65471,10 +65755,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1877 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65487,10 +65771,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1877 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65506,10 +65790,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1878 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65522,10 +65806,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1878 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65541,10 +65825,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1879 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65557,10 +65841,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1879 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65576,10 +65860,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1880 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65592,10 +65876,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1880 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65611,10 +65895,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1881 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65627,10 +65911,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1881 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65646,10 +65930,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1882 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [false true false true true true true false] @@ -65662,10 +65946,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1882 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65678,10 +65962,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1883 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65694,10 +65978,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1883 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65713,10 +65997,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1884 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65729,10 +66013,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1884 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65748,10 +66032,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1885 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65764,10 +66048,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1885 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65783,10 +66067,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1886 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65799,10 +66083,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1886 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65818,10 +66102,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1887 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65834,10 +66118,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1887 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65853,10 +66137,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1888 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65869,10 +66153,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1888 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65888,10 +66172,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1889 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65904,10 +66188,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1889 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65923,10 +66207,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1890 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65939,10 +66223,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1890 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65958,10 +66242,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1891 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65974,10 +66258,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1891 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -65990,10 +66274,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1892 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66006,10 +66290,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1892 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66025,10 +66309,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1893 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66041,10 +66325,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1893 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66060,10 +66344,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1894 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66076,10 +66360,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1894 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66095,10 +66379,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1895 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66111,10 +66395,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1895 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66130,10 +66414,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1896 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66146,10 +66430,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1896 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66165,10 +66449,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1897 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66181,10 +66465,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1897 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66200,10 +66484,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1898 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66216,10 +66500,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1898 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66235,10 +66519,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1899 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66251,10 +66535,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1899 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66270,10 +66554,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1900 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true true false] @@ -66286,10 +66570,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1900 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66302,10 +66586,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1901 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66318,10 +66602,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1901 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66337,10 +66621,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1902 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66353,10 +66637,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1902 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66372,10 +66656,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1903 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66388,10 +66672,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1903 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66407,10 +66691,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1904 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66423,10 +66707,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1904 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66442,10 +66726,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1905 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66458,10 +66742,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1905 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66477,10 +66761,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1906 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66493,10 +66777,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1906 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66512,10 +66796,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1907 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66528,10 +66812,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1907 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66547,10 +66831,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1908 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66563,10 +66847,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1908 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66582,10 +66866,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1909 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66598,10 +66882,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1909 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66614,10 +66898,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1910 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66630,10 +66914,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1910 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66649,10 +66933,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1911 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66665,10 +66949,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1911 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66684,10 +66968,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1912 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66700,10 +66984,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1912 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66719,10 +67003,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1913 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66735,10 +67019,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1913 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66754,10 +67038,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1914 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66770,10 +67054,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1914 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66789,10 +67073,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1915 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66805,10 +67089,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1915 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66824,10 +67108,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1916 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66840,10 +67124,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1916 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66859,10 +67143,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1917 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66875,10 +67159,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1917 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66894,10 +67178,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1918 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -66910,10 +67194,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1918 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -66926,10 +67210,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1919 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -66942,10 +67226,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1919 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -66961,10 +67245,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1920 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -66977,10 +67261,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1920 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -66996,10 +67280,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1921 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67012,10 +67296,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1921 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67031,10 +67315,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1922 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67047,10 +67331,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1922 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67066,10 +67350,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1923 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67082,10 +67366,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1923 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67101,10 +67385,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1924 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67117,10 +67401,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1924 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67136,10 +67420,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1925 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67152,10 +67436,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1925 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67171,10 +67455,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1926 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67187,10 +67471,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1926 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67206,10 +67490,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1927 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67222,10 +67506,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1927 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67238,10 +67522,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1928 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67254,10 +67538,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1928 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67273,10 +67557,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1929 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67289,10 +67573,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1929 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67308,10 +67592,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1930 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67324,10 +67608,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1930 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67343,10 +67627,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1931 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67359,10 +67643,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1931 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67378,10 +67662,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1932 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67394,10 +67678,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1932 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67413,10 +67697,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1933 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67429,10 +67713,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1933 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67448,10 +67732,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1934 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67464,10 +67748,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1934 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67483,10 +67767,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1935 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67499,10 +67783,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1935 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67518,10 +67802,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1936 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true true false] @@ -67534,10 +67818,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1936 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67550,10 +67834,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1937 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67566,10 +67850,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1937 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67585,10 +67869,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1938 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67601,10 +67885,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1938 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67620,10 +67904,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1939 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67636,10 +67920,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1939 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67655,10 +67939,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1940 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67671,10 +67955,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1940 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67690,10 +67974,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1941 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67706,10 +67990,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1941 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67725,10 +68009,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1942 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67741,10 +68025,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1942 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67760,10 +68044,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1943 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67776,10 +68060,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1943 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67795,10 +68079,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1944 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67811,10 +68095,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1944 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67830,10 +68114,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1945 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67846,10 +68130,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1945 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67862,10 +68146,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1946 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67878,10 +68162,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1946 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67897,10 +68181,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1947 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67913,10 +68197,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1947 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67932,10 +68216,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1948 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67948,10 +68232,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1948 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67967,10 +68251,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1949 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -67983,10 +68267,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1949 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68002,10 +68286,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1950 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68018,10 +68302,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1950 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68037,10 +68321,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1951 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68053,10 +68337,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1951 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68072,10 +68356,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1952 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68088,10 +68372,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1952 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68107,10 +68391,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1953 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68123,10 +68407,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1953 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68142,10 +68426,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1954 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68158,10 +68442,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1954 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68174,10 +68458,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1955 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68190,10 +68474,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1955 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68209,10 +68493,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1956 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68225,10 +68509,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1956 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68244,10 +68528,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1957 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68260,10 +68544,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1957 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68279,10 +68563,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1958 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68295,10 +68579,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1958 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68314,10 +68598,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1959 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68330,10 +68614,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1959 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68349,10 +68633,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1960 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68365,10 +68649,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1960 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68384,10 +68668,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1961 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68400,10 +68684,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1961 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68419,10 +68703,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1962 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68435,10 +68719,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1962 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68454,10 +68738,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1963 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68470,10 +68754,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1963 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68486,10 +68770,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1964 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68502,10 +68786,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1964 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68521,10 +68805,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1965 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68537,10 +68821,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1965 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68556,10 +68840,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1966 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68572,10 +68856,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1966 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68591,10 +68875,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1967 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68607,10 +68891,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1967 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68626,10 +68910,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1968 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68642,10 +68926,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1968 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68661,10 +68945,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1969 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68677,10 +68961,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1969 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68696,10 +68980,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1970 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68712,10 +68996,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1970 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68731,10 +69015,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1971 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68747,10 +69031,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1971 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68766,10 +69050,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1972 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -68782,10 +69066,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1972 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68798,10 +69082,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1973 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68814,10 +69098,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1973 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68833,10 +69117,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1974 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68849,10 +69133,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1974 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68868,10 +69152,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1975 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68884,10 +69168,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1975 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68903,10 +69187,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1976 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68919,10 +69203,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1976 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68938,10 +69222,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1977 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68954,10 +69238,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1977 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68973,10 +69257,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1978 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -68989,10 +69273,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1978 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69008,10 +69292,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1979 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69024,10 +69308,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1979 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69043,10 +69327,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1980 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69059,10 +69343,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1980 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69078,10 +69362,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 1981 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69094,10 +69378,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 1981 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69110,10 +69394,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1982 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69126,10 +69410,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1982 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69145,10 +69429,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1983 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69161,10 +69445,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1983 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69180,10 +69464,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1984 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69196,10 +69480,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1984 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69215,10 +69499,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1985 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69231,10 +69515,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1985 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69250,10 +69534,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1986 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69266,10 +69550,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1986 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69285,10 +69569,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1987 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69301,10 +69585,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1987 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69320,10 +69604,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1988 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69336,10 +69620,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1988 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69355,10 +69639,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1989 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69371,10 +69655,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1989 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69390,10 +69674,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1990 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69406,10 +69690,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1990 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69422,10 +69706,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1991 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69438,10 +69722,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1991 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69457,10 +69741,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1992 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69473,10 +69757,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1992 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69492,10 +69776,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1993 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69508,10 +69792,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1993 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69527,10 +69811,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1994 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69543,10 +69827,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1994 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69562,10 +69846,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1995 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69578,10 +69862,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1995 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69597,10 +69881,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1996 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69613,10 +69897,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1996 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69632,10 +69916,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1997 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69648,10 +69932,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1997 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69667,10 +69951,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 1998 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69683,10 +69967,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 1998 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69702,10 +69986,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 1999 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69718,10 +70002,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 1999 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69734,10 +70018,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2000 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69750,10 +70034,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2000 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69769,10 +70053,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2001 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69785,10 +70069,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2001 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69804,10 +70088,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2002 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69820,10 +70104,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2002 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69839,10 +70123,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2003 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69855,10 +70139,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2003 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69874,10 +70158,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2004 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69890,10 +70174,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2004 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69909,10 +70193,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2005 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69925,10 +70209,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2005 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69944,10 +70228,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2006 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69960,10 +70244,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2006 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69979,10 +70263,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2007 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -69995,10 +70279,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2007 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70014,10 +70298,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2008 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70030,10 +70314,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2008 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70046,10 +70330,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2009 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70062,10 +70346,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2009 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70081,10 +70365,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2010 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70097,10 +70381,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2010 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70116,10 +70400,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2011 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70132,10 +70416,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2011 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70151,10 +70435,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2012 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70167,10 +70451,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2012 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70186,10 +70470,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2013 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70202,10 +70486,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2013 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70221,10 +70505,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2014 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70237,10 +70521,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2014 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70256,10 +70540,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2015 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70272,10 +70556,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2015 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70291,10 +70575,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2016 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70307,10 +70591,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2016 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70326,10 +70610,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2017 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70342,10 +70626,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2017 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70358,10 +70642,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2018 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70374,10 +70658,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2018 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70393,10 +70677,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2019 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70409,10 +70693,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2019 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70428,10 +70712,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2020 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70444,10 +70728,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2020 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70463,10 +70747,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2021 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70479,10 +70763,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2021 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70498,10 +70782,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2022 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70514,10 +70798,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2022 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70533,10 +70817,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2023 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70549,10 +70833,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2023 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70568,10 +70852,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2024 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70584,10 +70868,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2024 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70603,10 +70887,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2025 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70619,10 +70903,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2025 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70638,10 +70922,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2026 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70654,10 +70938,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2026 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70670,10 +70954,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2027 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70686,10 +70970,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2027 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70705,10 +70989,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2028 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70721,10 +71005,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2028 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70740,10 +71024,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2029 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70756,10 +71040,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2029 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70775,10 +71059,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2030 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70791,10 +71075,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2030 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70810,10 +71094,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2031 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70826,10 +71110,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2031 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70845,10 +71129,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2032 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70861,10 +71145,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2032 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70880,10 +71164,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2033 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70896,10 +71180,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2033 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70915,10 +71199,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2034 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70931,10 +71215,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2034 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70950,10 +71234,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2035 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70966,10 +71250,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2035 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70982,10 +71266,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2036 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -70998,10 +71282,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2036 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71017,10 +71301,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2037 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71033,10 +71317,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2037 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71052,10 +71336,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2038 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71068,10 +71352,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2038 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71087,10 +71371,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2039 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71103,10 +71387,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2039 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71122,10 +71406,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2040 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71138,10 +71422,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2040 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71157,10 +71441,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2041 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71173,10 +71457,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2041 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71192,10 +71476,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2042 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71208,10 +71492,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2042 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71227,10 +71511,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2043 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71243,10 +71527,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2043 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71262,10 +71546,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2044 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true true false] @@ -71278,10 +71562,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2044 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71294,10 +71578,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2045 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71310,10 +71594,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2045 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71329,10 +71613,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2046 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71345,10 +71629,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2046 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71364,10 +71648,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2047 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71380,10 +71664,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2047 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71399,10 +71683,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2048 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71415,10 +71699,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2048 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71434,10 +71718,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2049 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71450,10 +71734,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2049 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71469,10 +71753,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2050 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71485,10 +71769,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2050 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71504,10 +71788,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2051 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71520,10 +71804,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2051 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71539,10 +71823,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2052 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71555,10 +71839,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2052 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71574,10 +71858,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2053 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71590,10 +71874,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2053 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71606,10 +71890,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2054 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71622,10 +71906,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2054 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71641,10 +71925,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2055 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71657,10 +71941,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2055 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71676,10 +71960,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2056 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71692,10 +71976,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2056 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71711,10 +71995,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2057 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71727,10 +72011,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2057 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71746,10 +72030,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2058 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71762,10 +72046,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2058 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71781,10 +72065,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2059 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71797,10 +72081,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2059 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71816,10 +72100,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2060 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71832,10 +72116,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2060 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71851,10 +72135,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2061 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71867,10 +72151,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2061 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71886,10 +72170,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2062 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71902,10 +72186,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2062 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71918,10 +72202,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2063 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71934,10 +72218,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2063 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71953,10 +72237,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2064 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71969,10 +72253,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2064 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -71988,10 +72272,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2065 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72004,10 +72288,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2065 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72023,10 +72307,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2066 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72039,10 +72323,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2066 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72058,10 +72342,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2067 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72074,10 +72358,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2067 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72093,10 +72377,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2068 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72109,10 +72393,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2068 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72128,10 +72412,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2069 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72144,10 +72428,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2069 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72163,10 +72447,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2070 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72179,10 +72463,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2070 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72198,10 +72482,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2071 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72214,10 +72498,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2071 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72230,10 +72514,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2072 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72246,10 +72530,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2072 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72265,10 +72549,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2073 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72281,10 +72565,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2073 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72300,10 +72584,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2074 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72316,10 +72600,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2074 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72335,10 +72619,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2075 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72351,10 +72635,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2075 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72370,10 +72654,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2076 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72386,10 +72670,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2076 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72405,10 +72689,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2077 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72421,10 +72705,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2077 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72440,10 +72724,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2078 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72456,10 +72740,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2078 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72475,10 +72759,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2079 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72491,10 +72775,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2079 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72510,10 +72794,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2080 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true true false] @@ -72526,10 +72810,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2080 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72542,10 +72826,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2081 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72558,10 +72842,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2081 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72577,10 +72861,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2082 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72593,10 +72877,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2082 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72612,10 +72896,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2083 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72628,10 +72912,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2083 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72647,10 +72931,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2084 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72663,10 +72947,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2084 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72682,10 +72966,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2085 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72698,10 +72982,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2085 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72717,10 +73001,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2086 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72733,10 +73017,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2086 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72752,10 +73036,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2087 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72768,10 +73052,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2087 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72787,10 +73071,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2088 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72803,10 +73087,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2088 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72822,10 +73106,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2089 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72838,10 +73122,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2089 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72854,10 +73138,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2090 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72870,10 +73154,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2090 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72889,10 +73173,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2091 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72905,10 +73189,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2091 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72924,10 +73208,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2092 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72940,10 +73224,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2092 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72959,10 +73243,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2093 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72975,10 +73259,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2093 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -72994,10 +73278,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2094 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73010,10 +73294,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2094 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73029,10 +73313,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2095 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73045,10 +73329,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2095 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73064,10 +73348,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2096 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73080,10 +73364,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2096 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73099,10 +73383,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2097 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73115,10 +73399,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2097 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73134,10 +73418,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2098 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73150,10 +73434,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2098 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73166,10 +73450,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2099 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73182,10 +73466,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2099 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73201,10 +73485,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2100 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73217,10 +73501,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2100 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73236,10 +73520,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2101 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73252,10 +73536,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2101 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73271,10 +73555,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2102 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73287,10 +73571,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2102 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73306,10 +73590,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2103 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73322,10 +73606,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2103 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73341,10 +73625,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2104 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73357,10 +73641,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2104 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73376,10 +73660,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2105 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73392,10 +73676,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2105 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73411,10 +73695,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2106 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73427,10 +73711,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2106 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73446,10 +73730,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2107 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73462,10 +73746,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2107 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73478,10 +73762,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2108 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73494,10 +73778,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2108 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73513,10 +73797,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2109 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73529,10 +73813,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2109 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73548,10 +73832,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2110 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73564,10 +73848,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2110 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73583,10 +73867,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2111 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73599,10 +73883,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2111 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73618,10 +73902,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2112 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73634,10 +73918,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2112 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73653,10 +73937,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2113 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73669,10 +73953,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2113 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73688,10 +73972,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2114 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73704,10 +73988,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2114 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73723,10 +74007,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2115 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73739,10 +74023,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2115 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73758,10 +74042,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2116 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true false] @@ -73774,10 +74058,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2116 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73790,10 +74074,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2117 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73806,10 +74090,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2117 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73825,10 +74109,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2118 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73841,10 +74125,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2118 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73860,10 +74144,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2119 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73876,10 +74160,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2119 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73895,10 +74179,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2120 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73911,10 +74195,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2120 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73930,10 +74214,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2121 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73946,10 +74230,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2121 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73965,10 +74249,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2122 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -73981,10 +74265,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2122 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74000,10 +74284,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2123 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74016,10 +74300,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2123 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74035,10 +74319,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2124 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74051,10 +74335,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2124 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74070,10 +74354,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2125 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74086,10 +74370,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2125 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74102,10 +74386,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2126 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74118,10 +74402,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2126 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74137,10 +74421,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2127 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74153,10 +74437,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2127 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74172,10 +74456,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2128 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74188,10 +74472,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2128 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74207,10 +74491,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2129 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74223,10 +74507,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2129 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74242,10 +74526,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2130 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74258,10 +74542,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2130 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74277,10 +74561,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2131 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74293,10 +74577,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2131 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74312,10 +74596,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2132 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74328,10 +74612,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2132 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74347,10 +74631,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2133 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74363,10 +74647,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2133 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74382,10 +74666,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2134 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false true true] @@ -74398,10 +74682,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2134 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74414,10 +74698,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2135 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74430,10 +74714,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2135 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74449,10 +74733,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2136 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74465,10 +74749,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2136 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74484,10 +74768,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2137 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74500,10 +74784,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2137 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74519,10 +74803,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2138 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74535,10 +74819,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2138 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74554,10 +74838,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2139 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74570,10 +74854,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2139 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74589,10 +74873,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2140 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74605,10 +74889,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2140 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74624,10 +74908,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2141 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74640,10 +74924,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2141 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74659,10 +74943,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2142 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74675,10 +74959,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2142 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74694,10 +74978,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2143 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74710,10 +74994,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2143 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74726,10 +75010,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2144 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74742,10 +75026,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2144 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74761,10 +75045,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2145 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74777,10 +75061,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2145 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74796,10 +75080,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2146 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74812,10 +75096,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2146 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74831,10 +75115,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2147 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74847,10 +75131,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2147 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74866,10 +75150,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2148 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74882,10 +75166,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2148 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74901,10 +75185,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2149 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74917,10 +75201,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2149 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74936,10 +75220,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2150 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74952,10 +75236,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2150 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74971,10 +75255,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2151 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -74987,10 +75271,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2151 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75006,10 +75290,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2152 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75022,10 +75306,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2152 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75038,10 +75322,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2153 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75054,10 +75338,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2153 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75073,10 +75357,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2154 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75089,10 +75373,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2154 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75108,10 +75392,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2155 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75124,10 +75408,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2155 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75143,10 +75427,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2156 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75159,10 +75443,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2156 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75178,10 +75462,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2157 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75194,10 +75478,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2157 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75213,10 +75497,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2158 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75229,10 +75513,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2158 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75248,10 +75532,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2159 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75264,10 +75548,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2159 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75283,10 +75567,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2160 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75299,10 +75583,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2160 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75318,10 +75602,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2161 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75334,10 +75618,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2161 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75350,10 +75634,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2162 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75366,10 +75650,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2162 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75385,10 +75669,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2163 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75401,10 +75685,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2163 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75420,10 +75704,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2164 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75436,10 +75720,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2164 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75455,10 +75739,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2165 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75471,10 +75755,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2165 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75490,10 +75774,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2166 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75506,10 +75790,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2166 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75525,10 +75809,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2167 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75541,10 +75825,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2167 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75560,10 +75844,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2168 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75576,10 +75860,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2168 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75595,10 +75879,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2169 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75611,10 +75895,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2169 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75630,10 +75914,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2170 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75646,10 +75930,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2170 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75662,10 +75946,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2171 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75678,10 +75962,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2171 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75697,10 +75981,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2172 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75713,10 +75997,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2172 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75732,10 +76016,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2173 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75748,10 +76032,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2173 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75767,10 +76051,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2174 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75783,10 +76067,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2174 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75802,10 +76086,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2175 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75818,10 +76102,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2175 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75837,10 +76121,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2176 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75853,10 +76137,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2176 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75872,10 +76156,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2177 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75888,10 +76172,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2177 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75907,10 +76191,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2178 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75923,10 +76207,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2178 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75942,10 +76226,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2179 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75958,10 +76242,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2179 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75974,10 +76258,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2180 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -75990,10 +76274,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2180 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76009,10 +76293,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2181 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76025,10 +76309,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2181 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76044,10 +76328,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2182 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76060,10 +76344,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2182 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76079,10 +76363,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2183 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76095,10 +76379,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2183 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76114,10 +76398,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2184 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76130,10 +76414,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2184 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76149,10 +76433,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2185 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76165,10 +76449,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2185 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76184,10 +76468,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2186 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76200,10 +76484,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2186 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76219,10 +76503,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2187 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76235,10 +76519,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2187 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76254,10 +76538,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2188 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76270,10 +76554,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2188 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76286,10 +76570,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2189 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76302,10 +76586,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2189 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76321,10 +76605,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2190 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76337,10 +76621,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2190 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76356,10 +76640,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2191 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76372,10 +76656,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2191 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76391,10 +76675,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2192 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76407,10 +76691,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2192 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76426,10 +76710,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2193 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76442,10 +76726,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2193 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76461,10 +76745,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2194 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76477,10 +76761,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2194 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76496,10 +76780,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2195 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76512,10 +76796,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2195 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76531,10 +76815,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2196 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76547,10 +76831,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2196 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76566,10 +76850,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2197 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76582,10 +76866,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2197 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76598,10 +76882,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2198 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76614,10 +76898,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2198 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76633,10 +76917,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2199 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76649,10 +76933,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2199 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76668,10 +76952,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2200 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76684,10 +76968,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2200 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76703,10 +76987,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2201 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76719,10 +77003,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2201 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76738,10 +77022,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2202 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76754,10 +77038,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2202 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76773,10 +77057,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2203 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76789,10 +77073,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2203 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76808,10 +77092,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2204 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76824,10 +77108,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2204 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76843,10 +77127,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2205 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76859,10 +77143,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2205 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76878,10 +77162,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2206 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76894,10 +77178,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2206 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76910,10 +77194,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2207 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76926,10 +77210,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2207 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76945,10 +77229,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2208 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76961,10 +77245,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2208 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76980,10 +77264,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2209 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -76996,10 +77280,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2209 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77015,10 +77299,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2210 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77031,10 +77315,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2210 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77050,10 +77334,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2211 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77066,10 +77350,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2211 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77085,10 +77369,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2212 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77101,10 +77385,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2212 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77120,10 +77404,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2213 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77136,10 +77420,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2213 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77155,10 +77439,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2214 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77171,10 +77455,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2214 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77190,10 +77474,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2215 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77206,10 +77490,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2215 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77222,10 +77506,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2216 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77238,10 +77522,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2216 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77257,10 +77541,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2217 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77273,10 +77557,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2217 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77292,10 +77576,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2218 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77308,10 +77592,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2218 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77327,10 +77611,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2219 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77343,10 +77627,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2219 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77362,10 +77646,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2220 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77378,10 +77662,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2220 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77397,10 +77681,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2221 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77413,10 +77697,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2221 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77432,10 +77716,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2222 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77448,10 +77732,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2222 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77467,10 +77751,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2223 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77483,10 +77767,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2223 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77502,10 +77786,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2224 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77518,10 +77802,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2224 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77534,10 +77818,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2225 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77550,10 +77834,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2225 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77569,10 +77853,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2226 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77585,10 +77869,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2226 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77604,10 +77888,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2227 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77620,10 +77904,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2227 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77639,10 +77923,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2228 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77655,10 +77939,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2228 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77674,10 +77958,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2229 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77690,10 +77974,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2229 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77709,10 +77993,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2230 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77725,10 +78009,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2230 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77744,10 +78028,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2231 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77760,10 +78044,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2231 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77779,10 +78063,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2232 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77795,10 +78079,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2232 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77814,10 +78098,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2233 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77830,10 +78114,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2233 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77846,10 +78130,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2234 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77862,10 +78146,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2234 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77881,10 +78165,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2235 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77897,10 +78181,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2235 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77916,10 +78200,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2236 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77932,10 +78216,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2236 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77951,10 +78235,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2237 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77967,10 +78251,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2237 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -77986,10 +78270,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2238 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78002,10 +78286,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2238 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78021,10 +78305,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2239 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78037,10 +78321,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2239 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78056,10 +78340,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2240 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78072,10 +78356,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2240 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78091,10 +78375,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2241 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78107,10 +78391,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2241 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78126,10 +78410,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2242 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false true true] @@ -78142,10 +78426,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2242 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78158,10 +78442,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2243 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78174,10 +78458,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2243 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78193,10 +78477,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2244 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78209,10 +78493,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2244 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78228,10 +78512,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2245 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78244,10 +78528,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2245 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78263,10 +78547,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2246 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78279,10 +78563,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2246 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78298,10 +78582,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2247 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78314,10 +78598,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2247 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78333,10 +78617,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2248 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78349,10 +78633,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2248 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78368,10 +78652,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2249 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78384,10 +78668,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2249 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78403,10 +78687,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2250 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78419,10 +78703,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2250 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78438,10 +78722,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2251 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78454,10 +78738,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2251 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78470,10 +78754,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2252 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78486,10 +78770,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2252 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78505,10 +78789,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2253 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78521,10 +78805,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2253 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78540,10 +78824,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2254 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78556,10 +78840,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2254 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78575,10 +78859,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2255 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78591,10 +78875,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2255 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78610,10 +78894,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2256 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78626,10 +78910,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2256 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78645,10 +78929,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2257 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78661,10 +78945,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2257 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78680,10 +78964,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2258 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78696,10 +78980,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2258 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78715,10 +78999,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2259 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78731,10 +79015,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2259 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78750,10 +79034,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2260 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true false false true] @@ -78766,10 +79050,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2260 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78782,10 +79066,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2261 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78798,10 +79082,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2261 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78817,10 +79101,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2262 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78833,10 +79117,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2262 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78852,10 +79136,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2263 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78868,10 +79152,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2263 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78887,10 +79171,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2264 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78903,10 +79187,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2264 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78922,10 +79206,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2265 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78938,10 +79222,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2265 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78957,10 +79241,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2266 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78973,10 +79257,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2266 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -78992,10 +79276,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2267 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79008,10 +79292,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2267 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79027,10 +79311,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2268 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79043,10 +79327,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2268 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79062,10 +79346,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2269 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79078,10 +79362,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2269 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79094,10 +79378,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2270 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79110,10 +79394,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2270 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79129,10 +79413,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2271 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79145,10 +79429,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2271 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79164,10 +79448,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2272 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79180,10 +79464,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2272 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79199,10 +79483,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2273 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79215,10 +79499,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2273 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79234,10 +79518,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2274 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79250,10 +79534,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2274 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79269,10 +79553,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2275 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79285,10 +79569,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2275 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79304,10 +79588,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2276 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79320,10 +79604,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2276 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79339,10 +79623,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2277 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79355,10 +79639,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2277 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79374,10 +79658,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2278 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79390,10 +79674,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2278 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79406,10 +79690,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2279 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79422,10 +79706,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2279 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79441,10 +79725,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2280 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79457,10 +79741,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2280 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79476,10 +79760,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2281 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79492,10 +79776,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2281 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79511,10 +79795,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2282 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79527,10 +79811,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2282 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79546,10 +79830,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2283 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79562,10 +79846,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2283 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79581,10 +79865,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2284 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79597,10 +79881,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2284 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79616,10 +79900,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2285 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79632,10 +79916,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2285 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79651,10 +79935,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2286 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79667,10 +79951,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2286 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79686,10 +79970,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2287 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79702,10 +79986,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2287 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79718,10 +80002,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2288 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79734,10 +80018,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2288 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79753,10 +80037,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2289 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79769,10 +80053,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2289 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79788,10 +80072,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2290 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79804,10 +80088,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2290 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79823,10 +80107,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2291 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79839,10 +80123,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2291 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79858,10 +80142,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2292 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79874,10 +80158,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2292 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79893,10 +80177,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2293 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79909,10 +80193,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2293 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79928,10 +80212,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2294 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79944,10 +80228,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2294 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79963,10 +80247,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2295 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79979,10 +80263,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2295 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -79998,10 +80282,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2296 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true false false true] @@ -80014,10 +80298,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2296 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80030,10 +80314,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2297 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80046,10 +80330,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2297 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80065,10 +80349,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2298 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80081,10 +80365,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2298 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80100,10 +80384,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2299 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80116,10 +80400,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2299 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80135,10 +80419,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2300 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80151,10 +80435,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2300 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80170,10 +80454,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2301 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80186,10 +80470,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2301 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80205,10 +80489,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2302 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80221,10 +80505,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2302 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80240,10 +80524,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2303 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80256,10 +80540,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2303 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80275,10 +80559,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2304 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80291,10 +80575,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2304 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80310,10 +80594,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2305 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80326,10 +80610,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2305 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80342,10 +80626,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2306 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80358,10 +80642,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2306 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80377,10 +80661,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2307 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80393,10 +80677,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2307 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80412,10 +80696,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2308 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80428,10 +80712,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2308 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80447,10 +80731,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2309 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80463,10 +80747,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2309 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80482,10 +80766,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2310 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80498,10 +80782,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2310 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80517,10 +80801,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2311 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80533,10 +80817,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2311 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80552,10 +80836,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2312 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80568,10 +80852,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2312 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80587,10 +80871,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2313 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80603,10 +80887,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2313 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80622,10 +80906,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2314 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80638,10 +80922,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2314 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80654,10 +80938,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2315 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80670,10 +80954,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2315 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80689,10 +80973,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2316 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80705,10 +80989,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2316 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80724,10 +81008,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2317 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80740,10 +81024,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2317 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80759,10 +81043,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2318 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80775,10 +81059,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2318 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80794,10 +81078,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2319 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80810,10 +81094,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2319 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80829,10 +81113,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2320 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80845,10 +81129,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2320 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80864,10 +81148,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2321 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80880,10 +81164,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2321 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80899,10 +81183,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2322 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80915,10 +81199,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2322 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80934,10 +81218,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2323 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80950,10 +81234,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2323 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80966,10 +81250,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2324 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -80982,10 +81266,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2324 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81001,10 +81285,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2325 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81017,10 +81301,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2325 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81036,10 +81320,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2326 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81052,10 +81336,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2326 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81071,10 +81355,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2327 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81087,10 +81371,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2327 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81106,10 +81390,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2328 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81122,10 +81406,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2328 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81141,10 +81425,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2329 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81157,10 +81441,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2329 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81176,10 +81460,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2330 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81192,10 +81476,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2330 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81211,10 +81495,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2331 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81227,10 +81511,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2331 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81246,10 +81530,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2332 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false false false true] @@ -81262,10 +81546,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2332 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81278,10 +81562,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2333 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81294,10 +81578,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2333 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81313,10 +81597,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2334 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81329,10 +81613,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2334 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81348,10 +81632,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2335 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81364,10 +81648,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2335 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81383,10 +81667,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2336 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81399,10 +81683,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2336 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81418,10 +81702,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2337 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81434,10 +81718,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2337 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81453,10 +81737,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2338 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81469,10 +81753,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2338 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81488,10 +81772,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2339 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81504,10 +81788,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2339 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81523,10 +81807,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2340 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81539,10 +81823,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2340 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81558,10 +81842,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2341 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81574,10 +81858,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2341 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81590,10 +81874,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2342 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81606,10 +81890,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2342 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81625,10 +81909,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2343 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81641,10 +81925,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2343 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81660,10 +81944,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2344 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81676,10 +81960,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2344 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81695,10 +81979,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2345 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81711,10 +81995,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2345 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81730,10 +82014,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2346 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81746,10 +82030,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2346 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81765,10 +82049,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2347 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81781,10 +82065,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2347 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81800,10 +82084,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2348 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81816,10 +82100,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2348 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81835,10 +82119,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2349 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81851,10 +82135,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2349 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81870,10 +82154,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2350 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false true] @@ -81886,10 +82170,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2350 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -81902,10 +82186,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2351 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -81918,10 +82202,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2351 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -81937,10 +82221,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2352 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -81953,10 +82237,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2352 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -81972,10 +82256,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2353 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -81988,10 +82272,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2353 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82007,10 +82291,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2354 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82023,10 +82307,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2354 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82042,10 +82326,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2355 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82058,10 +82342,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2355 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82077,10 +82361,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2356 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82093,10 +82377,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2356 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82112,10 +82396,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2357 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82128,10 +82412,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2357 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82147,10 +82431,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2358 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82163,10 +82447,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2358 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82182,10 +82466,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2359 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82198,10 +82482,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2359 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82214,10 +82498,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2360 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82230,10 +82514,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2360 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82249,10 +82533,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2361 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82265,10 +82549,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2361 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82284,10 +82568,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2362 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82300,10 +82584,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2362 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82319,10 +82603,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2363 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82335,10 +82619,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2363 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82354,10 +82638,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2364 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82370,10 +82654,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2364 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82389,10 +82673,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2365 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82405,10 +82689,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2365 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82424,10 +82708,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2366 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82440,10 +82724,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2366 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82459,10 +82743,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2367 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82475,10 +82759,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2367 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82494,10 +82778,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2368 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82510,10 +82794,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2368 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82526,10 +82810,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2369 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82542,10 +82826,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2369 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82561,10 +82845,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2370 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82577,10 +82861,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2370 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82596,10 +82880,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2371 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82612,10 +82896,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2371 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82631,10 +82915,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2372 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82647,10 +82931,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2372 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82666,10 +82950,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2373 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82682,10 +82966,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2373 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82701,10 +82985,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2374 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82717,10 +83001,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2374 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82736,10 +83020,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2375 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82752,10 +83036,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2375 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82771,10 +83055,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2376 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82787,10 +83071,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2376 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82806,10 +83090,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2377 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82822,10 +83106,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2377 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82838,10 +83122,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2378 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82854,10 +83138,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2378 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82873,10 +83157,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2379 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82889,10 +83173,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2379 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82908,10 +83192,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2380 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82924,10 +83208,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2380 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82943,10 +83227,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2381 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82959,10 +83243,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2381 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82978,10 +83262,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2382 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -82994,10 +83278,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2382 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83013,10 +83297,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2383 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83029,10 +83313,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2383 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83048,10 +83332,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2384 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83064,10 +83348,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2384 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83083,10 +83367,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2385 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83099,10 +83383,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2385 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83118,10 +83402,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2386 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83134,10 +83418,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2386 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83150,10 +83434,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2387 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83166,10 +83450,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2387 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83185,10 +83469,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2388 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83201,10 +83485,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2388 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83220,10 +83504,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2389 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83236,10 +83520,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2389 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83255,10 +83539,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2390 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83271,10 +83555,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2390 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83290,10 +83574,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2391 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83306,10 +83590,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2391 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83325,10 +83609,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2392 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83341,10 +83625,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2392 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83360,10 +83644,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2393 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83376,10 +83660,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2393 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83395,10 +83679,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2394 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83411,10 +83695,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2394 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83430,10 +83714,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2395 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83446,10 +83730,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2395 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83462,10 +83746,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2396 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83478,10 +83762,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2396 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83497,10 +83781,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2397 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83513,10 +83797,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2397 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83532,10 +83816,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2398 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83548,10 +83832,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2398 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83567,10 +83851,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2399 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83583,10 +83867,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2399 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83602,10 +83886,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2400 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83618,10 +83902,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2400 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83637,10 +83921,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2401 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83653,10 +83937,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2401 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83672,10 +83956,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2402 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83688,10 +83972,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2402 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83707,10 +83991,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2403 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83723,10 +84007,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2403 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83742,10 +84026,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2404 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true false true false false] @@ -83758,10 +84042,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2404 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83774,10 +84058,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2405 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83790,10 +84074,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2405 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83809,10 +84093,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2406 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83825,10 +84109,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2406 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83844,10 +84128,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2407 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83860,10 +84144,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2407 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83879,10 +84163,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2408 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83895,10 +84179,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2408 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83914,10 +84198,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2409 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83930,10 +84214,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2409 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83949,10 +84233,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2410 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83965,10 +84249,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2410 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -83984,10 +84268,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2411 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84000,10 +84284,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2411 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84019,10 +84303,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2412 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84035,10 +84319,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2412 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84054,10 +84338,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2413 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84070,10 +84354,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2413 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84086,10 +84370,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2414 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84102,10 +84386,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2414 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84121,10 +84405,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2415 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84137,10 +84421,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2415 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84156,10 +84440,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2416 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84172,10 +84456,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2416 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84191,10 +84475,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2417 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84207,10 +84491,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2417 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84226,10 +84510,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2418 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84242,10 +84526,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2418 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84261,10 +84545,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2419 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84277,10 +84561,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2419 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84296,10 +84580,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2420 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84312,10 +84596,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2420 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84331,10 +84615,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2421 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84347,10 +84631,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2421 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84366,10 +84650,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2422 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84382,10 +84666,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2422 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84398,10 +84682,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2423 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84414,10 +84698,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2423 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84433,10 +84717,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2424 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84449,10 +84733,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2424 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84468,10 +84752,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2425 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84484,10 +84768,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2425 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84503,10 +84787,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2426 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84519,10 +84803,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2426 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84538,10 +84822,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2427 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84554,10 +84838,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2427 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84573,10 +84857,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2428 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84589,10 +84873,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2428 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84608,10 +84892,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2429 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84624,10 +84908,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2429 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84643,10 +84927,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2430 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84659,10 +84943,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2430 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84678,10 +84962,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2431 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84694,10 +84978,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2431 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84710,10 +84994,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2432 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84726,10 +85010,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2432 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84745,10 +85029,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2433 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84761,10 +85045,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2433 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84780,10 +85064,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2434 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84796,10 +85080,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2434 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84815,10 +85099,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2435 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84831,10 +85115,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2435 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84850,10 +85134,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2436 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84866,10 +85150,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2436 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84885,10 +85169,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2437 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84901,10 +85185,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2437 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84920,10 +85204,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2438 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84936,10 +85220,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2438 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84955,10 +85239,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2439 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84971,10 +85255,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2439 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -84990,10 +85274,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2440 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false false] @@ -85006,10 +85290,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2440 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85022,10 +85306,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2441 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85038,10 +85322,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2441 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85057,10 +85341,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2442 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85073,10 +85357,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2442 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85092,10 +85376,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2443 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85108,10 +85392,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2443 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85127,10 +85411,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2444 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85143,10 +85427,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2444 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85162,10 +85446,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2445 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85178,10 +85462,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2445 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85197,10 +85481,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2446 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85213,10 +85497,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2446 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85232,10 +85516,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2447 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85248,10 +85532,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2447 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85267,10 +85551,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2448 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85283,10 +85567,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2448 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85302,10 +85586,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2449 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85318,10 +85602,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2449 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85334,10 +85618,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2450 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85350,10 +85634,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2450 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85369,10 +85653,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2451 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85385,10 +85669,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2451 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85404,10 +85688,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2452 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85420,10 +85704,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2452 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85439,10 +85723,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2453 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85455,10 +85739,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2453 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85474,10 +85758,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2454 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85490,10 +85774,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2454 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85509,10 +85793,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2455 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85525,10 +85809,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2455 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85544,10 +85828,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2456 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85560,10 +85844,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2456 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85579,10 +85863,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2457 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85595,10 +85879,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2457 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85614,10 +85898,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2458 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85630,10 +85914,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2458 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85646,10 +85930,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2459 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85662,10 +85946,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2459 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85681,10 +85965,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2460 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85697,10 +85981,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2460 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85716,10 +86000,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2461 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85732,10 +86016,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2461 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85751,10 +86035,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2462 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85767,10 +86051,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2462 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85786,10 +86070,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2463 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85802,10 +86086,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2463 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85821,10 +86105,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2464 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85837,10 +86121,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2464 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85856,10 +86140,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2465 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85872,10 +86156,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2465 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85891,10 +86175,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2466 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85907,10 +86191,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2466 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85926,10 +86210,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2467 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85942,10 +86226,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2467 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85958,10 +86242,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2468 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85974,10 +86258,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2468 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -85993,10 +86277,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2469 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86009,10 +86293,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2469 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86028,10 +86312,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2470 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86044,10 +86328,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2470 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86063,10 +86347,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2471 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86079,10 +86363,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2471 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86098,10 +86382,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2472 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86114,10 +86398,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2472 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86133,10 +86417,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2473 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86149,10 +86433,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2473 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86168,10 +86452,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2474 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86184,10 +86468,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2474 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86203,10 +86487,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2475 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86219,10 +86503,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2475 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86238,10 +86522,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2476 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true false true false true] @@ -86254,10 +86538,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2476 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86270,10 +86554,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2477 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86286,10 +86570,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2477 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86305,10 +86589,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2478 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86321,10 +86605,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2478 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86340,10 +86624,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2479 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86356,10 +86640,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2479 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86375,10 +86659,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2480 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86391,10 +86675,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2480 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86410,10 +86694,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2481 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86426,10 +86710,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2481 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86445,10 +86729,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2482 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86461,10 +86745,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2482 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86480,10 +86764,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2483 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86496,10 +86780,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2483 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86515,10 +86799,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2484 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86531,10 +86815,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2484 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86550,10 +86834,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2485 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86566,10 +86850,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2485 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86582,10 +86866,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2486 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86598,10 +86882,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2486 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86617,10 +86901,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2487 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86633,10 +86917,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2487 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86652,10 +86936,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2488 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86668,10 +86952,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2488 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86687,10 +86971,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2489 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86703,10 +86987,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2489 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86722,10 +87006,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2490 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86738,10 +87022,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2490 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86757,10 +87041,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2491 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86773,10 +87057,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2491 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86792,10 +87076,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2492 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86808,10 +87092,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2492 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86827,10 +87111,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2493 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86843,10 +87127,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2493 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86862,10 +87146,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2494 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -86878,10 +87162,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2494 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86894,10 +87178,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2495 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86910,10 +87194,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2495 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86929,10 +87213,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2496 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86945,10 +87229,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2496 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86964,10 +87248,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2497 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86980,10 +87264,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2497 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -86999,10 +87283,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2498 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87015,10 +87299,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2498 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87034,10 +87318,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2499 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87050,10 +87334,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2499 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87069,10 +87353,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2500 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87085,10 +87369,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2500 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87104,10 +87388,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2501 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87120,10 +87404,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2501 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87139,10 +87423,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2502 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87155,10 +87439,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2502 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87174,10 +87458,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2503 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87190,10 +87474,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2503 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87206,10 +87490,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2504 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87222,10 +87506,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2504 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87241,10 +87525,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2505 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87257,10 +87541,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2505 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87276,10 +87560,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2506 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87292,10 +87576,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2506 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87311,10 +87595,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2507 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87327,10 +87611,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2507 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87346,10 +87630,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2508 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87362,10 +87646,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2508 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87381,10 +87665,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2509 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87397,10 +87681,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2509 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87416,10 +87700,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2510 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87432,10 +87716,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2510 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87451,10 +87735,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2511 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87467,10 +87751,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2511 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87486,10 +87770,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2512 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true true true true false true] @@ -87502,10 +87786,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2512 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87518,10 +87802,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2513 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87534,10 +87818,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2513 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87553,10 +87837,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2514 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87569,10 +87853,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2514 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87588,10 +87872,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2515 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87604,10 +87888,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2515 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87623,10 +87907,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2516 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87639,10 +87923,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2516 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87658,10 +87942,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2517 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87674,10 +87958,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2517 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87693,10 +87977,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2518 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87709,10 +87993,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2518 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87728,10 +88012,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2519 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87744,10 +88028,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2519 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87763,10 +88047,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2520 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87779,10 +88063,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2520 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87798,10 +88082,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2521 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87814,10 +88098,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2521 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87830,10 +88114,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2522 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87846,10 +88130,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2522 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87865,10 +88149,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2523 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87881,10 +88165,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2523 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87900,10 +88184,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2524 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87916,10 +88200,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2524 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87935,10 +88219,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2525 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87951,10 +88235,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2525 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87970,10 +88254,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2526 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -87986,10 +88270,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2526 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88005,10 +88289,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2527 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88021,10 +88305,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2527 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88040,10 +88324,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2528 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88056,10 +88340,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2528 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88075,10 +88359,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2529 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88091,10 +88375,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2529 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88110,10 +88394,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2530 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88126,10 +88410,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2530 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88142,10 +88426,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2531 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88158,10 +88442,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2531 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88177,10 +88461,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2532 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88193,10 +88477,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2532 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88212,10 +88496,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2533 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88228,10 +88512,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2533 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88247,10 +88531,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2534 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88263,10 +88547,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2534 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88282,10 +88566,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2535 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88298,10 +88582,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2535 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88317,10 +88601,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2536 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88333,10 +88617,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2536 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88352,10 +88636,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2537 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88368,10 +88652,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2537 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88387,10 +88671,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2538 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88403,10 +88687,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2538 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88422,10 +88706,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2539 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88438,10 +88722,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2539 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88454,10 +88738,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2540 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88470,10 +88754,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2540 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88489,10 +88773,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2541 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88505,10 +88789,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2541 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88524,10 +88808,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2542 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88540,10 +88824,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2542 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88559,10 +88843,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2543 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88575,10 +88859,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2543 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88594,10 +88878,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2544 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88610,10 +88894,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2544 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88629,10 +88913,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2545 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88645,10 +88929,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2545 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88664,10 +88948,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2546 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88680,10 +88964,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2546 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88699,10 +88983,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2547 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88715,10 +88999,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2547 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88734,10 +89018,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2548 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88750,10 +89034,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2548 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88766,10 +89050,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2549 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88782,10 +89066,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2549 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88801,10 +89085,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2550 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88817,10 +89101,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2550 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88836,10 +89120,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2551 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88852,10 +89136,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2551 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88871,10 +89155,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2552 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88887,10 +89171,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2552 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88906,10 +89190,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2553 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88922,10 +89206,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2553 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88941,10 +89225,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2554 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88957,10 +89241,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2554 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88976,10 +89260,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2555 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -88992,10 +89276,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2555 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89011,10 +89295,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2556 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89027,10 +89311,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2556 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89046,10 +89330,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2557 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89062,10 +89346,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2557 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89078,10 +89362,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2558 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89094,10 +89378,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2558 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89113,10 +89397,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2559 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89129,10 +89413,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2559 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89148,10 +89432,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2560 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89164,10 +89448,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2560 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89183,10 +89467,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2561 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89199,10 +89483,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2561 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89218,10 +89502,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2562 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89234,10 +89518,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2562 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89253,10 +89537,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2563 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89269,10 +89553,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2563 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89288,10 +89572,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2564 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89304,10 +89588,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2564 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89323,10 +89607,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2565 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89339,10 +89623,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2565 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89358,10 +89642,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2566 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89374,10 +89658,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2566 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89390,10 +89674,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2567 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89406,10 +89690,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2567 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89425,10 +89709,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2568 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89441,10 +89725,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2568 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89460,10 +89744,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2569 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89476,10 +89760,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2569 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89495,10 +89779,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2570 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89511,10 +89795,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2570 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89530,10 +89814,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2571 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89546,10 +89830,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2571 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89565,10 +89849,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2572 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89581,10 +89865,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2572 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89600,10 +89884,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2573 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89616,10 +89900,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2573 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89635,10 +89919,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2574 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89651,10 +89935,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2574 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89670,10 +89954,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2575 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89686,10 +89970,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2575 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89702,10 +89986,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2576 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89718,10 +90002,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2576 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89737,10 +90021,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2577 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89753,10 +90037,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2577 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89772,10 +90056,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2578 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89788,10 +90072,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2578 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89807,10 +90091,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2579 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89823,10 +90107,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2579 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89842,10 +90126,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2580 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89858,10 +90142,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2580 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89877,10 +90161,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2581 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89893,10 +90177,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2581 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89912,10 +90196,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2582 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89928,10 +90212,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2582 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89947,10 +90231,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2583 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89963,10 +90247,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2583 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89982,10 +90266,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2584 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -89998,10 +90282,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2584 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90014,10 +90298,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2585 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90030,10 +90314,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2585 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90049,10 +90333,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2586 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90065,10 +90349,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2586 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90084,10 +90368,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2587 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90100,10 +90384,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2587 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90119,10 +90403,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2588 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90135,10 +90419,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2588 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90154,10 +90438,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2589 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90170,10 +90454,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2589 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90189,10 +90473,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2590 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90205,10 +90489,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2590 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90224,10 +90508,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2591 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90240,10 +90524,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2591 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90259,10 +90543,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2592 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90275,10 +90559,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2592 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90294,10 +90578,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2593 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90310,10 +90594,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2593 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90326,10 +90610,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2594 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90342,10 +90626,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2594 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90361,10 +90645,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2595 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90377,10 +90661,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2595 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90396,10 +90680,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2596 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90412,10 +90696,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2596 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90431,10 +90715,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2597 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90447,10 +90731,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2597 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90466,10 +90750,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2598 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90482,10 +90766,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2598 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90501,10 +90785,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2599 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90517,10 +90801,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2599 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90536,10 +90820,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2600 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90552,10 +90836,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2600 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90571,10 +90855,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2601 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90587,10 +90871,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2601 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90606,10 +90890,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2602 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90622,10 +90906,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2602 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90638,10 +90922,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2603 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90654,10 +90938,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2603 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90673,10 +90957,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2604 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90689,10 +90973,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2604 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90708,10 +90992,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2605 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90724,10 +91008,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2605 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90743,10 +91027,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2606 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90759,10 +91043,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2606 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90778,10 +91062,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2607 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90794,10 +91078,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2607 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90813,10 +91097,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2608 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90829,10 +91113,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2608 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90848,10 +91132,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2609 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90864,10 +91148,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2609 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90883,10 +91167,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2610 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90899,10 +91183,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2610 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90918,10 +91202,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2611 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90934,10 +91218,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2611 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90950,10 +91234,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2612 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90966,10 +91250,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2612 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -90985,10 +91269,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2613 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91001,10 +91285,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2613 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91020,10 +91304,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2614 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91036,10 +91320,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2614 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91055,10 +91339,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2615 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91071,10 +91355,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2615 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91090,10 +91374,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2616 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91106,10 +91390,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2616 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91125,10 +91409,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2617 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91141,10 +91425,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2617 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91160,10 +91444,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2618 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91176,10 +91460,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2618 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91195,10 +91479,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2619 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91211,10 +91495,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2619 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91230,10 +91514,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2620 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true true false true true false true] @@ -91246,10 +91530,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2620 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91262,10 +91546,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2621 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91278,10 +91562,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2621 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91297,10 +91581,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2622 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91313,10 +91597,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2622 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91332,10 +91616,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2623 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91348,10 +91632,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2623 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91367,10 +91651,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2624 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91383,10 +91667,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2624 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91402,10 +91686,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2625 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91418,10 +91702,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2625 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91437,10 +91721,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2626 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91453,10 +91737,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2626 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91472,10 +91756,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2627 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91488,10 +91772,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2627 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91507,10 +91791,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2628 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91523,10 +91807,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2628 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91542,10 +91826,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2629 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91558,10 +91842,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2629 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91574,10 +91858,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2630 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91590,10 +91874,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2630 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91609,10 +91893,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2631 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91625,10 +91909,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2631 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91644,10 +91928,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2632 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91660,10 +91944,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2632 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91679,10 +91963,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2633 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91695,10 +91979,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2633 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91714,10 +91998,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2634 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91730,10 +92014,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2634 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91749,10 +92033,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2635 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91765,10 +92049,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2635 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91784,10 +92068,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2636 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91800,10 +92084,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2636 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91819,10 +92103,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2637 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91835,10 +92119,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2637 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91854,10 +92138,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2638 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false false true true false true] @@ -91870,10 +92154,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2638 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91886,10 +92170,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2639 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91902,10 +92186,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2639 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91921,10 +92205,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2640 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91937,10 +92221,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2640 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91956,10 +92240,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2641 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91972,10 +92256,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2641 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -91991,10 +92275,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2642 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92007,10 +92291,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2642 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92026,10 +92310,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2643 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92042,10 +92326,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2643 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92061,10 +92345,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2644 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92077,10 +92361,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2644 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92096,10 +92380,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2645 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92112,10 +92396,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2645 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92131,10 +92415,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2646 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92147,10 +92431,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2646 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92166,10 +92450,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2647 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92182,10 +92466,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2647 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92198,10 +92482,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2648 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92214,10 +92498,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2648 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92233,10 +92517,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2649 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92249,10 +92533,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2649 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92268,10 +92552,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2650 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92284,10 +92568,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2650 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92303,10 +92587,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2651 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92319,10 +92603,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2651 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92338,10 +92622,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2652 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92354,10 +92638,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2652 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92373,10 +92657,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2653 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92389,10 +92673,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2653 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92408,10 +92692,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2654 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92424,10 +92708,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2654 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92443,10 +92727,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2655 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92459,10 +92743,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2655 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92478,10 +92762,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2656 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92494,10 +92778,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2656 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92510,10 +92794,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2657 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92526,10 +92810,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2657 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92545,10 +92829,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2658 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92561,10 +92845,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2658 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92580,10 +92864,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2659 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92596,10 +92880,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2659 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92615,10 +92899,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2660 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92631,10 +92915,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2660 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92650,10 +92934,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2661 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92666,10 +92950,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2661 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92685,10 +92969,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2662 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92701,10 +92985,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2662 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92720,10 +93004,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2663 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92736,10 +93020,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2663 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92755,10 +93039,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2664 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92771,10 +93055,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2664 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92790,10 +93074,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2665 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92806,10 +93090,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2665 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92822,10 +93106,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2666 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92838,10 +93122,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2666 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92857,10 +93141,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2667 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92873,10 +93157,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2667 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92892,10 +93176,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2668 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92908,10 +93192,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2668 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92927,10 +93211,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2669 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92943,10 +93227,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2669 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92962,10 +93246,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2670 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92978,10 +93262,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2670 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -92997,10 +93281,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2671 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93013,10 +93297,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2671 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93032,10 +93316,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2672 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93048,10 +93332,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2672 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93067,10 +93351,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2673 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93083,10 +93367,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2673 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93102,10 +93386,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2674 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93118,10 +93402,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2674 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93134,10 +93418,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2675 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93150,10 +93434,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2675 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93169,10 +93453,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2676 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93185,10 +93469,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2676 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93204,10 +93488,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2677 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93220,10 +93504,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2677 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93239,10 +93523,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2678 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93255,10 +93539,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2678 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93274,10 +93558,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2679 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93290,10 +93574,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2679 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93309,10 +93593,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2680 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93325,10 +93609,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2680 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93344,10 +93628,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2681 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93360,10 +93644,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2681 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93379,10 +93663,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2682 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93395,10 +93679,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2682 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93414,10 +93698,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2683 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93430,10 +93714,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2683 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93446,10 +93730,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2684 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93462,10 +93746,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2684 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93481,10 +93765,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2685 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93497,10 +93781,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2685 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93516,10 +93800,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2686 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93532,10 +93816,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2686 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93551,10 +93835,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2687 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93567,10 +93851,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2687 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93586,10 +93870,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2688 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93602,10 +93886,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2688 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93621,10 +93905,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2689 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93637,10 +93921,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2689 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93656,10 +93940,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2690 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93672,10 +93956,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2690 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93691,10 +93975,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2691 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93707,10 +93991,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2691 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93726,10 +94010,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2692 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93742,10 +94026,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2692 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93758,10 +94042,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2693 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93774,10 +94058,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2693 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93793,10 +94077,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2694 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93809,10 +94093,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2694 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93828,10 +94112,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2695 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93844,10 +94128,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2695 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93863,10 +94147,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2696 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93879,10 +94163,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2696 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93898,10 +94182,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2697 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93914,10 +94198,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2697 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93933,10 +94217,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2698 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93949,10 +94233,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2698 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93968,10 +94252,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2699 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -93984,10 +94268,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2699 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94003,10 +94287,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2700 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94019,10 +94303,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2700 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94038,10 +94322,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2701 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94054,10 +94338,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2701 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94070,10 +94354,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2702 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94086,10 +94370,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2702 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94105,10 +94389,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2703 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94121,10 +94405,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2703 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94140,10 +94424,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2704 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94156,10 +94440,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2704 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94175,10 +94459,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2705 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94191,10 +94475,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2705 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94210,10 +94494,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2706 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94226,10 +94510,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2706 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94245,10 +94529,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2707 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94261,10 +94545,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2707 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94280,10 +94564,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2708 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94296,10 +94580,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2708 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94315,10 +94599,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2709 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94331,10 +94615,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2709 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94350,10 +94634,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2710 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94366,10 +94650,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2710 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94382,10 +94666,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2711 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94398,10 +94682,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2711 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94417,10 +94701,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2712 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94433,10 +94717,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2712 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94452,10 +94736,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2713 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94468,10 +94752,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2713 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94487,10 +94771,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2714 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94503,10 +94787,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2714 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94522,10 +94806,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2715 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94538,10 +94822,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2715 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94557,10 +94841,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2716 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94573,10 +94857,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2716 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94592,10 +94876,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2717 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94608,10 +94892,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2717 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94627,10 +94911,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2718 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94643,10 +94927,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2718 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94662,10 +94946,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2719 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94678,10 +94962,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2719 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94694,10 +94978,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2720 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94710,10 +94994,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2720 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94729,10 +95013,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2721 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94745,10 +95029,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2721 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94764,10 +95048,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2722 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94780,10 +95064,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2722 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94799,10 +95083,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2723 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94815,10 +95099,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2723 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94834,10 +95118,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2724 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94850,10 +95134,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2724 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94869,10 +95153,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2725 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94885,10 +95169,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2725 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94904,10 +95188,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2726 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94920,10 +95204,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2726 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94939,10 +95223,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2727 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94955,10 +95239,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2727 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94974,10 +95258,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2728 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true true false true true true false true] @@ -94990,10 +95274,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2728 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95006,10 +95290,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2729 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95022,10 +95306,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2729 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95041,10 +95325,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2730 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95057,10 +95341,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2730 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95076,10 +95360,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2731 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95092,10 +95376,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2731 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95111,10 +95395,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2732 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95127,10 +95411,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2732 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95146,10 +95430,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2733 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95162,10 +95446,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2733 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95181,10 +95465,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2734 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95197,10 +95481,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2734 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95216,10 +95500,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2735 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95232,10 +95516,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2735 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95251,10 +95535,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2736 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95267,10 +95551,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2736 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95286,10 +95570,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2737 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95302,10 +95586,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2737 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95318,10 +95602,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2738 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95334,10 +95618,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2738 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95353,10 +95637,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2739 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95369,10 +95653,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2739 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95388,10 +95672,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2740 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95404,10 +95688,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2740 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95423,10 +95707,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2741 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95439,10 +95723,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2741 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95458,10 +95742,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2742 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95474,10 +95758,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2742 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95493,10 +95777,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2743 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95509,10 +95793,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2743 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95528,10 +95812,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2744 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95544,10 +95828,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2744 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95563,10 +95847,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2745 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95579,10 +95863,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2745 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95598,10 +95882,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2746 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95614,10 +95898,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2746 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95630,10 +95914,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2747 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95646,10 +95930,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2747 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95665,10 +95949,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2748 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95681,10 +95965,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2748 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95700,10 +95984,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2749 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95716,10 +96000,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2749 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95735,10 +96019,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2750 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95751,10 +96035,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2750 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95770,10 +96054,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2751 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95786,10 +96070,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2751 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95805,10 +96089,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2752 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95821,10 +96105,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2752 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95840,10 +96124,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2753 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95856,10 +96140,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2753 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95875,10 +96159,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2754 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95891,10 +96175,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2754 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95910,10 +96194,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2755 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95926,10 +96210,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2755 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95942,10 +96226,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2756 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95958,10 +96242,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2756 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95977,10 +96261,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2757 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -95993,10 +96277,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2757 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96012,10 +96296,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2758 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96028,10 +96312,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2758 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96047,10 +96331,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2759 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96063,10 +96347,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2759 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96082,10 +96366,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2760 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96098,10 +96382,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2760 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96117,10 +96401,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2761 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96133,10 +96417,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2761 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96152,10 +96436,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2762 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96168,10 +96452,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2762 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96187,10 +96471,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2763 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96203,10 +96487,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2763 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96222,10 +96506,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2764 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96238,10 +96522,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2764 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96254,10 +96538,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2765 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96270,10 +96554,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2765 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96289,10 +96573,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2766 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96305,10 +96589,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2766 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96324,10 +96608,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2767 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96340,10 +96624,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2767 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96359,10 +96643,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2768 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96375,10 +96659,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2768 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96394,10 +96678,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2769 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96410,10 +96694,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2769 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96429,10 +96713,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2770 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96445,10 +96729,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2770 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96464,10 +96748,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2771 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96480,10 +96764,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2771 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96499,10 +96783,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2772 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96515,10 +96799,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2772 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96534,10 +96818,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2773 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96550,10 +96834,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2773 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96566,10 +96850,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2774 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96582,10 +96866,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2774 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96601,10 +96885,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2775 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96617,10 +96901,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2775 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96636,10 +96920,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2776 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96652,10 +96936,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2776 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96671,10 +96955,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2777 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96687,10 +96971,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2777 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96706,10 +96990,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2778 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96722,10 +97006,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2778 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96741,10 +97025,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2779 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96757,10 +97041,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2779 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96776,10 +97060,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2780 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96792,10 +97076,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2780 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96811,10 +97095,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2781 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96827,10 +97111,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2781 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96846,10 +97130,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2782 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false true] @@ -96862,10 +97146,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2782 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96878,10 +97162,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2783 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96894,10 +97178,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2783 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96913,10 +97197,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2784 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96929,10 +97213,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2784 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96948,10 +97232,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2785 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96964,10 +97248,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2785 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96983,10 +97267,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2786 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -96999,10 +97283,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2786 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97018,10 +97302,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2787 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97034,10 +97318,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2787 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97053,10 +97337,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2788 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97069,10 +97353,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2788 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97088,10 +97372,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2789 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97104,10 +97388,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2789 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97123,10 +97407,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2790 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97139,10 +97423,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2790 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97158,10 +97442,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2791 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97174,10 +97458,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2791 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97190,10 +97474,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2792 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97206,10 +97490,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2792 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97225,10 +97509,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2793 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97241,10 +97525,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2793 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97260,10 +97544,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2794 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97276,10 +97560,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2794 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97295,10 +97579,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2795 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97311,10 +97595,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2795 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97330,10 +97614,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2796 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97346,10 +97630,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2796 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97365,10 +97649,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2797 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97381,10 +97665,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2797 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97400,10 +97684,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2798 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97416,10 +97700,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2798 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97435,10 +97719,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2799 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97451,10 +97735,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2799 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97470,10 +97754,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2800 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false false true true true false false] @@ -97486,10 +97770,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2800 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97502,10 +97786,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2801 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97518,10 +97802,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2801 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97537,10 +97821,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2802 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97553,10 +97837,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2802 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97572,10 +97856,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2803 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97588,10 +97872,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2803 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97607,10 +97891,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2804 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97623,10 +97907,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2804 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97642,10 +97926,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2805 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97658,10 +97942,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2805 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97677,10 +97961,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2806 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97693,10 +97977,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2806 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97712,10 +97996,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2807 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97728,10 +98012,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2807 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97747,10 +98031,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2808 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97763,10 +98047,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2808 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97782,10 +98066,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2809 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97798,10 +98082,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2809 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97814,10 +98098,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2810 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97830,10 +98114,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2810 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97849,10 +98133,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2811 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97865,10 +98149,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2811 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97884,10 +98168,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2812 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97900,10 +98184,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2812 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97919,10 +98203,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2813 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97935,10 +98219,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2813 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97954,10 +98238,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2814 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97970,10 +98254,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2814 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -97989,10 +98273,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2815 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98005,10 +98289,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2815 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98024,10 +98308,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2816 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98040,10 +98324,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2816 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98059,10 +98343,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2817 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98075,10 +98359,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2817 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98094,10 +98378,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2818 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98110,10 +98394,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2818 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98126,10 +98410,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2819 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98142,10 +98426,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2819 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98161,10 +98445,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2820 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98177,10 +98461,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2820 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98196,10 +98480,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2821 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98212,10 +98496,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2821 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98231,10 +98515,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2822 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98247,10 +98531,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2822 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98266,10 +98550,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2823 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98282,10 +98566,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2823 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98301,10 +98585,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2824 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98317,10 +98601,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2824 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98336,10 +98620,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2825 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98352,10 +98636,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2825 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98371,10 +98655,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2826 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98387,10 +98671,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2826 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98406,10 +98690,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2827 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98422,10 +98706,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2827 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98438,10 +98722,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2828 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98454,10 +98738,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2828 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98473,10 +98757,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2829 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98489,10 +98773,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2829 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98508,10 +98792,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2830 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98524,10 +98808,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2830 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98543,10 +98827,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2831 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98559,10 +98843,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2831 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98578,10 +98862,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2832 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98594,10 +98878,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2832 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98613,10 +98897,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2833 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98629,10 +98913,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2833 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98648,10 +98932,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2834 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98664,10 +98948,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2834 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98683,10 +98967,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2835 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98699,10 +98983,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2835 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98718,10 +99002,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2836 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true true true true false false] @@ -98734,10 +99018,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2836 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98750,10 +99034,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2837 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98766,10 +99050,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2837 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98785,10 +99069,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2838 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98801,10 +99085,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2838 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98820,10 +99104,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2839 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98836,10 +99120,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2839 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98855,10 +99139,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2840 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98871,10 +99155,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2840 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98890,10 +99174,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2841 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98906,10 +99190,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2841 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98925,10 +99209,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2842 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98941,10 +99225,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2842 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98960,10 +99244,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2843 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98976,10 +99260,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2843 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -98995,10 +99279,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2844 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99011,10 +99295,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2844 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99030,10 +99314,10 @@ six170.FixedSizeSet.remove(int):::ENTER this_invocation_nonce 2845 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99046,10 +99330,10 @@ six170.FixedSizeSet.remove(int):::EXIT42 this_invocation_nonce 2845 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99062,10 +99346,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2846 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99078,10 +99362,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2846 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99097,10 +99381,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2847 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99113,10 +99397,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2847 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99132,10 +99416,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2848 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99148,10 +99432,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2848 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99167,10 +99451,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2849 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99183,10 +99467,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2849 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99202,10 +99486,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2850 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99218,10 +99502,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2850 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99237,10 +99521,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2851 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99253,10 +99537,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2851 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99272,10 +99556,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2852 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99288,10 +99572,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2852 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99307,10 +99591,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2853 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99323,10 +99607,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2853 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99342,10 +99626,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2854 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99358,10 +99642,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2854 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99374,10 +99658,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2855 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99390,10 +99674,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2855 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99409,10 +99693,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2856 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99425,10 +99709,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2856 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99444,10 +99728,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2857 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99460,10 +99744,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2857 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99479,10 +99763,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2858 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99495,10 +99779,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2858 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99514,10 +99798,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2859 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99530,10 +99814,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2859 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99549,10 +99833,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2860 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99565,10 +99849,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2860 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99584,10 +99868,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2861 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99600,10 +99884,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2861 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99619,10 +99903,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2862 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99635,10 +99919,10 @@ six170.FixedSizeSet.contains(int):::EXIT49 this_invocation_nonce 2862 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99654,10 +99938,10 @@ six170.FixedSizeSet.add(int):::ENTER this_invocation_nonce 2863 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99670,10 +99954,10 @@ six170.FixedSizeSet.add(int):::EXIT34 this_invocation_nonce 2863 this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99686,26 +99970,10 @@ six170.FixedSizeSet.contains(int):::ENTER this_invocation_nonce 2864 this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -0 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2864 -this -2007563136 +1908923184 1 this.bits -438411598 +431687835 1 this.bits[..] [true false true false true true false false] @@ -99713,284 +99981,4 @@ this.bits[..] n 0 1 -return -true -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2865 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -1 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2865 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -1 -1 -return -false -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2866 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -2 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2866 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -2 -1 -return -true -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2867 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -3 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2867 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -3 -1 -return -false -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2868 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -4 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2868 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -4 -1 -return -true -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2869 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -5 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2869 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -5 -1 -return -true -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2870 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -6 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2870 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -6 -1 -return -false -1 - -six170.FixedSizeSet.contains(int):::ENTER -this_invocation_nonce -2871 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -7 -1 - -six170.FixedSizeSet.contains(int):::EXIT49 -this_invocation_nonce -2871 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -7 -1 -return -false -1 - -six170.FixedSizeSet.add(int):::ENTER -this_invocation_nonce -2872 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true false false] -1 -n -6 -1 - -six170.FixedSizeSet.add(int):::EXIT34 -this_invocation_nonce -2872 -this -2007563136 -1 -this.bits -438411598 -1 -this.bits[..] -[true false true false true true true false] -1 -n -6 -1 diff --git a/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-jaif.goal b/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-jaif.goal index 060cf8606e..de9397bcb2 100644 --- a/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-jaif.goal +++ b/tests/daikon-tests/FixedSizeSet/FixedSizeSet.txt-jaif.goal @@ -5,22 +5,39 @@ annotation @NonNull: package six170: class FixedSizeSet : // 23458/- obj/class samples field bits : // boolean[] + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 102 samples - return: + return: + method add(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n method add(I)V : // 1186 samples - return: + return: + parameter #0 : // n + method contains(I)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // n method contains(I)Z : // 10040 samples - return: + return: parameter #0 : // n + method intersect(Lsix170/FixedSizeSet;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // other method intersect(Lsix170/FixedSizeSet;)V : // 31 samples - return: + return: parameter #0 : // other + method remove(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n method remove(I)V : // 402 samples - return: + return: parameter #0 : // n + method union(Lsix170/FixedSizeSet;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // other method union(Lsix170/FixedSizeSet;)V : // 19 samples - return: + return: parameter #0 : // other diff --git a/tests/daikon-tests/GeoSegment/GeoSegment.txt-chicory.goal b/tests/daikon-tests/GeoSegment/GeoSegment.txt-chicory.goal index b45fa2fda0..020eb6b4c8 100644 --- a/tests/daikon-tests/GeoSegment/GeoSegment.txt-chicory.goal +++ b/tests/daikon-tests/GeoSegment/GeoSegment.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for MapQuick1.GeoPoint -// Declarations written Sat Mar 19 21:49:23 PDT 2016 +// Declarations written Mon Jul 31 13:07:14 PDT 2017 decl-version 2.0 var-comparability none @@ -7,13 +7,13 @@ var-comparability none ppt MapQuick1.GeoPoint.GeoPoint(int,\_int):::ENTER ppt-type enter variable latitude - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable longitude - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -23,14 +23,61 @@ ppt MapQuick1.GeoPoint.GeoPoint(int,\_int):::EXIT47 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.latitude + var-kind field latitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.longitude + var-kind field longitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable latitude + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable longitude + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 + +ppt MapQuick1.GeoPoint.GeoPoint(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoPoint:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -54,30 +101,43 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable latitude - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 variable longitude - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 ppt MapQuick1.GeoPoint.toString():::ENTER ppt-type enter parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -105,14 +165,14 @@ ppt MapQuick1.GeoPoint.toString():::EXIT51 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -136,7 +196,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode flags nomod @@ -150,18 +210,66 @@ variable return.toString flags nomod synthetic to_string comparability 22 +ppt MapQuick1.GeoPoint.toString():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoPoint:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.latitude + var-kind field latitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.longitude + var-kind field longitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER ppt-type enter parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -185,7 +293,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable o - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -196,21 +304,21 @@ variable o.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args o - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 ppt MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT66 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -234,7 +342,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable o - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -245,10 +353,10 @@ variable o.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args o - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean flags nomod @@ -258,14 +366,14 @@ ppt MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -289,7 +397,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable o - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod @@ -300,27 +408,89 @@ variable o.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args o - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean flags nomod comparability 22 +ppt MapQuick1.GeoPoint.equals(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoPoint:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.latitude + var-kind field latitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.longitude + var-kind field longitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt MapQuick1.GeoPoint.hashCode():::ENTER ppt-type enter parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -348,14 +518,14 @@ ppt MapQuick1.GeoPoint.hashCode():::EXIT77 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -379,24 +549,72 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable return - var-kind return + var-kind return dec-type int rep-type int flags nomod comparability 22 +ppt MapQuick1.GeoPoint.hashCode():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoPoint:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.latitude + var-kind field latitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.longitude + var-kind field longitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt MapQuick1.GeoPoint.distanceTo(MapQuick1.GeoPoint):::ENTER ppt-type enter parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -420,7 +638,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable gp - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -444,14 +662,14 @@ ppt MapQuick1.GeoPoint.distanceTo(MapQuick1.GeoPoint):::EXIT91 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -475,7 +693,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable gp - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -495,24 +713,92 @@ variable gp.longitude flags nomod comparability 22 variable return - var-kind return + var-kind return dec-type double rep-type double flags nomod comparability 22 +ppt MapQuick1.GeoPoint.distanceTo(MapQuick1.GeoPoint):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoPoint:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.latitude + var-kind field latitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.longitude + var-kind field longitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable gp + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod + comparability 22 +variable gp.latitude + var-kind field latitude + enclosing-var gp + dec-type int + rep-type int + flags nomod + comparability 22 +variable gp.longitude + var-kind field longitude + enclosing-var gp + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt MapQuick1.GeoPoint.headingTo(MapQuick1.GeoPoint):::ENTER ppt-type enter parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -536,7 +822,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable gp - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -560,14 +846,14 @@ ppt MapQuick1.GeoPoint.headingTo(MapQuick1.GeoPoint):::EXIT113 ppt-type subexit parent parent MapQuick1.GeoPoint:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -591,7 +877,7 @@ variable this.longitude comparability 22 parent MapQuick1.GeoPoint:::OBJECT 1 variable gp - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -611,16 +897,84 @@ variable gp.longitude flags nomod comparability 22 variable return - var-kind return + var-kind return dec-type double rep-type double flags nomod comparability 22 +ppt MapQuick1.GeoPoint.headingTo(MapQuick1.GeoPoint):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoPoint:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.latitude + var-kind field latitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable this.longitude + var-kind field longitude + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoPoint:::OBJECT 1 +variable gp + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod + comparability 22 +variable gp.latitude + var-kind field latitude + enclosing-var gp + dec-type int + rep-type int + flags nomod + comparability 22 +variable gp.longitude + var-kind field longitude + enclosing-var gp + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + ppt MapQuick1.GeoPoint:::CLASS ppt-type class variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -631,13 +985,13 @@ ppt MapQuick1.GeoPoint:::OBJECT ppt-type object parent parent MapQuick1.GeoPoint:::CLASS 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -673,7 +1027,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 0 this -488044861 +143110009 1 this.latitude 42361797 @@ -702,7 +1056,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -720,7 +1074,7 @@ longitude ppt MapQuick1.GeoSegment.GeoSegment(java.lang.String,\_MapQuick1.GeoPoint,\_MapQuick1.GeoPoint):::ENTER ppt-type enter variable name - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param nomod @@ -734,13 +1088,13 @@ variable name.toString flags nomod synthetic to_string comparability 22 variable p1 - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod comparability 22 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -761,7 +1115,7 @@ variable p1.longitude flags nomod comparability 22 variable p2 - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -785,11 +1139,149 @@ ppt MapQuick1.GeoSegment.GeoSegment(java.lang.String,\_MapQuick1.GeoPoint,\_MapQ ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable name + var-kind variable + dec-type java.lang.String + rep-type hashcode flags is_param nomod comparability 22 +variable name.toString + var-kind function toString() + enclosing-var name + dec-type java.lang.String + rep-type java.lang.String + function-args name + flags nomod synthetic to_string + comparability 22 +variable p1 + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod + comparability 22 +variable p1.latitude + var-kind field latitude + enclosing-var p1 + dec-type int + rep-type int + flags nomod + comparability 22 +variable p1.longitude + var-kind field longitude + enclosing-var p1 + dec-type int + rep-type int + flags nomod + comparability 22 +variable p2 + var-kind variable + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags is_param nomod + comparability 22 +variable p2.latitude + var-kind field latitude + enclosing-var p2 + dec-type int + rep-type int + flags nomod + comparability 22 +variable p2.longitude + var-kind field longitude + enclosing-var p2 + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt MapQuick1.GeoSegment.GeoSegment(java.lang.String,\_MapQuick1.GeoPoint,\_MapQuick1.GeoPoint):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name var-kind field name @@ -817,7 +1309,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -865,7 +1357,7 @@ variable this.p2.longitude comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable name - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param nomod @@ -879,7 +1371,7 @@ variable name.toString flags nomod synthetic to_string comparability 22 variable p1 - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -899,7 +1391,7 @@ variable p1.longitude flags nomod comparability 22 variable p2 - var-kind variable + var-kind variable dec-type MapQuick1.GeoPoint rep-type hashcode flags is_param nomod @@ -918,15 +1410,28 @@ variable p2.longitude rep-type int flags nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 ppt MapQuick1.GeoSegment.reverse():::ENTER ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -955,7 +1460,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1007,10 +1512,10 @@ ppt MapQuick1.GeoSegment.reverse():::EXIT80 ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1039,7 +1544,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1087,7 +1592,7 @@ variable this.p2.longitude comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable return - var-kind return + var-kind return dec-type MapQuick1.GeoSegment rep-type hashcode flags nomod @@ -1150,14 +1655,14 @@ variable return.p2.longitude flags nomod comparability 22 -ppt MapQuick1.GeoSegment.name():::ENTER -ppt-type enter +ppt MapQuick1.GeoSegment.reverse():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1186,7 +1691,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1233,15 +1738,28 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt MapQuick1.GeoSegment.name():::EXIT88 -ppt-type subexit +ppt MapQuick1.GeoSegment.name():::ENTER +ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1270,7 +1788,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1317,29 +1835,15 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.String - rep-type hashcode - flags nomod - comparability 22 -variable return.toString - var-kind function toString() - enclosing-var return - dec-type java.lang.String - rep-type java.lang.String - function-args return - flags nomod synthetic to_string - comparability 22 -ppt MapQuick1.GeoSegment.p1():::ENTER -ppt-type enter +ppt MapQuick1.GeoSegment.name():::EXIT88 +ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1368,7 +1872,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1415,15 +1919,29 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 +variable return.toString + var-kind function toString() + enclosing-var return + dec-type java.lang.String + rep-type java.lang.String + function-args return + flags nomod synthetic to_string + comparability 22 -ppt MapQuick1.GeoSegment.p1():::EXIT94 +ppt MapQuick1.GeoSegment.name():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1452,7 +1970,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1499,35 +2017,28 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable return - var-kind return - dec-type MapQuick1.GeoPoint +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable return.latitude - var-kind field latitude - enclosing-var return - dec-type int - rep-type int - flags nomod - comparability 22 -variable return.longitude - var-kind field longitude - enclosing-var return - dec-type int - rep-type int - flags nomod +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt MapQuick1.GeoSegment.p2():::ENTER +ppt MapQuick1.GeoSegment.p1():::ENTER ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1556,7 +2067,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1604,14 +2115,14 @@ variable this.p2.longitude comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -ppt MapQuick1.GeoSegment.p2():::EXIT100 +ppt MapQuick1.GeoSegment.p1():::EXIT94 ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1640,7 +2151,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1688,7 +2199,7 @@ variable this.p2.longitude comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable return - var-kind return + var-kind return dec-type MapQuick1.GeoPoint rep-type hashcode flags nomod @@ -1708,14 +2219,14 @@ variable return.longitude flags nomod comparability 22 -ppt MapQuick1.GeoSegment.length():::ENTER -ppt-type enter +ppt MapQuick1.GeoSegment.p1():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1744,7 +2255,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1791,15 +2302,28 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt MapQuick1.GeoSegment.length():::EXIT106 -ppt-type subexit +ppt MapQuick1.GeoSegment.p2():::ENTER +ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1828,7 +2352,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1875,21 +2399,15 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable return - var-kind return - dec-type double - rep-type double - flags nomod - comparability 22 -ppt MapQuick1.GeoSegment.heading():::ENTER -ppt-type enter +ppt MapQuick1.GeoSegment.p2():::EXIT100 +ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -1918,7 +2436,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -1965,15 +2483,35 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 +variable return + var-kind return + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 +variable return.latitude + var-kind field latitude + enclosing-var return + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.longitude + var-kind field longitude + enclosing-var return + dec-type int + rep-type int + flags nomod + comparability 22 -ppt MapQuick1.GeoSegment.heading():::EXIT116 +ppt MapQuick1.GeoSegment.p2():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2002,7 +2540,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2049,21 +2587,28 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable return - var-kind return - dec-type double - rep-type double +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode flags nomod comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt MapQuick1.GeoSegment.toString():::ENTER +ppt MapQuick1.GeoSegment.length():::ENTER ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2092,7 +2637,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2140,14 +2685,14 @@ variable this.p2.longitude comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -ppt MapQuick1.GeoSegment.toString():::EXIT121 +ppt MapQuick1.GeoSegment.length():::EXIT106 ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2176,7 +2721,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2224,28 +2769,117 @@ variable this.p2.longitude comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable return - var-kind return + var-kind return + dec-type double + rep-type double + flags nomod + comparability 22 + +ppt MapQuick1.GeoSegment.length():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this dec-type java.lang.String rep-type hashcode flags nomod comparability 22 -variable return.toString + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString var-kind function toString() - enclosing-var return + enclosing-var this.name dec-type java.lang.String rep-type java.lang.String - function-args return + function-args this.name flags nomod synthetic to_string comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt MapQuick1.GeoSegment.equals(java.lang.Object):::ENTER +ppt MapQuick1.GeoSegment.heading():::ENTER ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2274,7 +2908,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2321,29 +2955,105 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable o - var-kind variable - dec-type java.lang.Object + +ppt MapQuick1.GeoSegment.heading():::EXIT116 +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 -variable o.getClass().getName() - var-kind function getClass().getName() - enclosing-var o - dec-type java.lang.Class + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String rep-type java.lang.String - function-args o - flags nomod synthetic classname + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable return + var-kind return + dec-type double + rep-type double + flags nomod comparability 22 -ppt MapQuick1.GeoSegment.equals(java.lang.Object):::EXIT132 +ppt MapQuick1.GeoSegment.heading():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2372,7 +3082,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2419,35 +3129,210 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable o - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable o.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var o + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args o - flags nomod synthetic classname + flags nomod synthetic classname non_null + comparability 22 + +ppt MapQuick1.GeoSegment.toString():::ENTER +ppt-type enter +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 + +ppt MapQuick1.GeoSegment.toString():::EXIT121 +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable return - var-kind return - dec-type boolean - rep-type boolean + var-kind return + dec-type java.lang.String + rep-type hashcode flags nomod comparability 22 +variable return.toString + var-kind function toString() + enclosing-var return + dec-type java.lang.String + rep-type java.lang.String + function-args return + flags nomod synthetic to_string + comparability 22 -ppt MapQuick1.GeoSegment.equals(java.lang.Object):::EXIT135 +ppt MapQuick1.GeoSegment.toString():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2476,7 +3361,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2523,35 +3408,28 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 -variable o - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable o.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var o + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args o - flags nomod synthetic classname - comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean - flags nomod + flags nomod synthetic classname non_null comparability 22 -ppt MapQuick1.GeoSegment.hashCode():::ENTER +ppt MapQuick1.GeoSegment.equals(java.lang.Object):::ENTER ppt-type enter parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2580,7 +3458,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2627,15 +3505,29 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags nomod synthetic classname non_null + comparability 22 -ppt MapQuick1.GeoSegment.hashCode():::EXIT141 +ppt MapQuick1.GeoSegment.equals(java.lang.Object):::EXIT132 ppt-type subexit parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name @@ -2664,7 +3556,7 @@ variable this.p1 comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 @@ -2711,21 +3603,37 @@ variable this.p2.longitude flags nomod comparability 22 parent MapQuick1.GeoSegment:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags nomod synthetic classname non_null + comparability 22 variable return - var-kind return - dec-type int - rep-type int + var-kind return + dec-type boolean + rep-type boolean flags nomod comparability 22 -ppt MapQuick1.GeoSegment:::OBJECT -ppt-type object +ppt MapQuick1.GeoSegment.equals(java.lang.Object):::EXIT135 +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.GeoSegment rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name var-kind field name enclosing-var this @@ -2733,6 +3641,7 @@ variable this.name rep-type hashcode flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.name.toString var-kind function toString() enclosing-var this.name @@ -2741,6 +3650,7 @@ variable this.name.toString function-args this.name flags nomod synthetic to_string comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.p1 var-kind field p1 enclosing-var this @@ -2748,13 +3658,15 @@ variable this.p1 rep-type hashcode flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable MapQuick1.GeoPoint.REP_SCALE_FACTOR - var-kind variable + var-kind variable dec-type double rep-type double constant 1000000.0 flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.p1.latitude var-kind field latitude enclosing-var this.p1 @@ -2762,6 +3674,7 @@ variable this.p1.latitude rep-type int flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.p1.longitude var-kind field longitude enclosing-var this.p1 @@ -2769,6 +3682,7 @@ variable this.p1.longitude rep-type int flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.p2 var-kind field p2 enclosing-var this @@ -2776,6 +3690,7 @@ variable this.p2 rep-type hashcode flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.p2.latitude var-kind field latitude enclosing-var this.p2 @@ -2783,6 +3698,7 @@ variable this.p2.latitude rep-type int flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 variable this.p2.longitude var-kind field longitude enclosing-var this.p2 @@ -2790,70 +3706,546 @@ variable this.p2.longitude rep-type int flags nomod comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 -MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1.GeoPoint):::ENTER -this_invocation_nonce -2 -name -846238611 -1 -name.toString -"Memorial_Dr" -1 -p1 -488044861 -1 -p1.latitude -42361797 -1 -p1.longitude --71079295 -1 -p2 -1740189450 -1 -p2.latitude -42360097 -1 -p2.longitude --71083996 -1 - -MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER -this_invocation_nonce -3 -this -488044861 -1 -this.latitude -42361797 -1 -this.longitude --71079295 -1 -o -1740189450 -1 -o.getClass().getName() -"MapQuick1.GeoPoint" -1 - -MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 -this_invocation_nonce -3 -this -488044861 -1 -this.latitude -42361797 -1 -this.longitude --71079295 -1 -o -1740189450 -1 -o.getClass().getName() +ppt MapQuick1.GeoSegment.equals(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt MapQuick1.GeoSegment.hashCode():::ENTER +ppt-type enter +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 + +ppt MapQuick1.GeoSegment.hashCode():::EXIT141 +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable return + var-kind return + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt MapQuick1.GeoSegment.hashCode():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.GeoSegment:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + parent MapQuick1.GeoSegment:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt MapQuick1.GeoSegment:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type MapQuick1.GeoSegment + rep-type hashcode + flags is_param nomod non_null + comparability 22 +variable this.name + var-kind field name + enclosing-var this + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 +variable this.name.toString + var-kind function toString() + enclosing-var this.name + dec-type java.lang.String + rep-type java.lang.String + function-args this.name + flags nomod synthetic to_string + comparability 22 +variable this.p1 + var-kind field p1 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 +variable MapQuick1.GeoPoint.REP_SCALE_FACTOR + var-kind variable + dec-type double + rep-type double + constant 1000000.0 + flags nomod + comparability 22 +variable this.p1.latitude + var-kind field latitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.p1.longitude + var-kind field longitude + enclosing-var this.p1 + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.p2 + var-kind field p2 + enclosing-var this + dec-type MapQuick1.GeoPoint + rep-type hashcode + flags nomod + comparability 22 +variable this.p2.latitude + var-kind field latitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.p2.longitude + var-kind field longitude + enclosing-var this.p2 + dec-type int + rep-type int + flags nomod + comparability 22 + +MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1.GeoPoint):::ENTER +this_invocation_nonce +2 +name +2097514481 +1 +name.toString +"Memorial_Dr" +1 +p1 +143110009 +1 +p1.latitude +42361797 +1 +p1.longitude +-71079295 +1 +p2 +2142003995 +1 +p2.latitude +42360097 +1 +p2.longitude +-71083996 +1 + +MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER +this_invocation_nonce +3 +this +143110009 +1 +this.latitude +42361797 +1 +this.longitude +-71079295 +1 +o +2142003995 +1 +o.getClass().getName() +"MapQuick1.GeoPoint" +1 + +MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 +this_invocation_nonce +3 +this +143110009 +1 +this.latitude +42361797 +1 +this.longitude +-71079295 +1 +o +2142003995 +1 +o.getClass().getName() "MapQuick1.GeoPoint" 1 return @@ -2864,16 +4256,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 2 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -2882,7 +4274,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -2891,13 +4283,13 @@ this.p2.longitude -71083996 1 name -846238611 +2097514481 1 name.toString "Memorial_Dr" 1 p1 -488044861 +143110009 1 p1.latitude 42361797 @@ -2906,7 +4298,7 @@ p1.longitude -71079295 1 p2 -1740189450 +2142003995 1 p2.latitude 42360097 @@ -2919,16 +4311,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 4 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -2937,7 +4329,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -2950,7 +4342,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 5 this -488044861 +143110009 1 this.latitude 42361797 @@ -2963,7 +4355,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 5 this -488044861 +143110009 1 this.latitude 42361797 @@ -2979,7 +4371,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 6 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -2992,7 +4384,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 6 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3008,16 +4400,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 4 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3026,7 +4418,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3042,16 +4434,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 7 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3060,7 +4452,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3073,7 +4465,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 8 this -488044861 +143110009 1 this.latitude 42361797 @@ -3086,7 +4478,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 8 this -488044861 +143110009 1 this.latitude 42361797 @@ -3102,7 +4494,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 9 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3115,7 +4507,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 9 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3131,16 +4523,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 7 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3149,7 +4541,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3165,16 +4557,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 10 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3183,7 +4575,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3196,7 +4588,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 11 this -488044861 +143110009 1 this.latitude 42361797 @@ -3209,7 +4601,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 11 this -488044861 +143110009 1 this.latitude 42361797 @@ -3225,7 +4617,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 12 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3238,7 +4630,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 12 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3254,16 +4646,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 10 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3272,7 +4664,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3288,16 +4680,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 13 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3306,7 +4698,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3319,7 +4711,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 14 this -488044861 +143110009 1 this.latitude 42361797 @@ -3332,7 +4724,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 14 this -488044861 +143110009 1 this.latitude 42361797 @@ -3348,7 +4740,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 15 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3361,7 +4753,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 15 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3377,16 +4769,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 13 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3395,7 +4787,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3421,7 +4813,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 16 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3450,7 +4842,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 17 this -215145189 +1325808650 1 this.latitude 42361797 @@ -3469,13 +4861,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 18 name -982007015 +510464020 1 name.toString "Memorial_Dr" 1 p1 -1241276575 +706197430 1 p1.latitude 42360097 @@ -3484,7 +4876,7 @@ p1.longitude -71083996 1 p2 -215145189 +1325808650 1 p2.latitude 42361797 @@ -3497,7 +4889,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 19 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3506,7 +4898,7 @@ this.longitude -71083996 1 o -215145189 +1325808650 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -3516,7 +4908,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 19 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3525,7 +4917,7 @@ this.longitude -71083996 1 o -215145189 +1325808650 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -3538,16 +4930,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 18 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -3556,7 +4948,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -3565,13 +4957,13 @@ this.p2.longitude -71079295 1 name -982007015 +510464020 1 name.toString "Memorial_Dr" 1 p1 -1241276575 +706197430 1 p1.latitude 42360097 @@ -3580,7 +4972,7 @@ p1.longitude -71083996 1 p2 -215145189 +1325808650 1 p2.latitude 42361797 @@ -3593,16 +4985,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 20 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -3611,7 +5003,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -3624,7 +5016,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 21 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3637,7 +5029,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 21 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3653,7 +5045,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 22 this -215145189 +1325808650 1 this.latitude 42361797 @@ -3666,7 +5058,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 22 this -215145189 +1325808650 1 this.latitude 42361797 @@ -3682,16 +5074,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 20 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -3700,7 +5092,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -3716,16 +5108,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 23 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3734,7 +5126,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3747,7 +5139,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 24 this -488044861 +143110009 1 this.latitude 42361797 @@ -3760,7 +5152,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 24 this -488044861 +143110009 1 this.latitude 42361797 @@ -3776,7 +5168,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 25 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3789,7 +5181,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 25 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -3805,16 +5197,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 23 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -3823,7 +5215,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -3839,16 +5231,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 26 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -3857,7 +5249,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -3870,7 +5262,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 27 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3883,7 +5275,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 27 this -1241276575 +706197430 1 this.latitude 42360097 @@ -3899,7 +5291,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 28 this -215145189 +1325808650 1 this.latitude 42361797 @@ -3912,7 +5304,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 28 this -215145189 +1325808650 1 this.latitude 42361797 @@ -3928,16 +5320,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 26 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -3946,7 +5338,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -3962,16 +5354,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 29 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -3980,7 +5372,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -3993,7 +5385,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 30 this -1241276575 +706197430 1 this.latitude 42360097 @@ -4006,7 +5398,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 30 this -1241276575 +706197430 1 this.latitude 42360097 @@ -4022,7 +5414,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 31 this -215145189 +1325808650 1 this.latitude 42361797 @@ -4035,7 +5427,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 31 this -215145189 +1325808650 1 this.latitude 42361797 @@ -4051,16 +5443,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 29 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -4069,7 +5461,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -4085,16 +5477,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 32 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -4103,7 +5495,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -4116,7 +5508,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 33 this -488044861 +143110009 1 this.latitude 42361797 @@ -4129,7 +5521,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 33 this -488044861 +143110009 1 this.latitude 42361797 @@ -4145,7 +5537,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 34 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -4158,7 +5550,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 34 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -4174,16 +5566,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 32 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -4192,7 +5584,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -4208,16 +5600,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 35 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -4226,7 +5618,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -4239,7 +5631,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 36 this -1241276575 +706197430 1 this.latitude 42360097 @@ -4252,7 +5644,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 36 this -1241276575 +706197430 1 this.latitude 42360097 @@ -4268,7 +5660,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 37 this -215145189 +1325808650 1 this.latitude 42361797 @@ -4281,7 +5673,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 37 this -215145189 +1325808650 1 this.latitude 42361797 @@ -4297,16 +5689,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 35 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -4315,7 +5707,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -4341,7 +5733,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 38 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4370,7 +5762,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 39 this -2042495840 +525683462 1 this.latitude 42358941 @@ -4389,13 +5781,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 40 name -36333492 +1766724936 1 name.toString "Memorial_Dr" 1 p1 -1663166483 +1632492873 1 p1.latitude 42360097 @@ -4404,7 +5796,7 @@ p1.longitude -71083996 1 p2 -2042495840 +525683462 1 p2.latitude 42358941 @@ -4417,7 +5809,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 41 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4426,7 +5818,7 @@ this.longitude -71083996 1 o -2042495840 +525683462 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -4436,7 +5828,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 41 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4445,7 +5837,7 @@ this.longitude -71083996 1 o -2042495840 +525683462 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -4458,16 +5850,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 40 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -4476,7 +5868,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -4485,13 +5877,13 @@ this.p2.longitude -71087240 1 name -36333492 +1766724936 1 name.toString "Memorial_Dr" 1 p1 -1663166483 +1632492873 1 p1.latitude 42360097 @@ -4500,7 +5892,7 @@ p1.longitude -71083996 1 p2 -2042495840 +525683462 1 p2.latitude 42358941 @@ -4513,16 +5905,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 42 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -4531,7 +5923,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -4544,7 +5936,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 43 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4557,7 +5949,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 43 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4573,7 +5965,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 44 this -2042495840 +525683462 1 this.latitude 42358941 @@ -4586,7 +5978,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 44 this -2042495840 +525683462 1 this.latitude 42358941 @@ -4602,16 +5994,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 42 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -4620,7 +6012,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -4636,16 +6028,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 45 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -4654,7 +6046,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -4667,7 +6059,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 46 this -488044861 +143110009 1 this.latitude 42361797 @@ -4680,7 +6072,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 46 this -488044861 +143110009 1 this.latitude 42361797 @@ -4696,7 +6088,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 47 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -4709,7 +6101,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 47 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -4725,16 +6117,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 45 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -4743,7 +6135,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -4759,16 +6151,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 48 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -4777,7 +6169,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -4790,7 +6182,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 49 this -1241276575 +706197430 1 this.latitude 42360097 @@ -4803,7 +6195,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 49 this -1241276575 +706197430 1 this.latitude 42360097 @@ -4819,7 +6211,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 50 this -215145189 +1325808650 1 this.latitude 42361797 @@ -4832,7 +6224,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 50 this -215145189 +1325808650 1 this.latitude 42361797 @@ -4848,16 +6240,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 48 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -4866,7 +6258,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -4882,16 +6274,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 51 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -4900,7 +6292,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -4913,7 +6305,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 52 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4926,7 +6318,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 52 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -4942,7 +6334,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 53 this -2042495840 +525683462 1 this.latitude 42358941 @@ -4955,7 +6347,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 53 this -2042495840 +525683462 1 this.latitude 42358941 @@ -4971,16 +6363,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 51 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -4989,7 +6381,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -5005,16 +6397,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 54 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -5023,7 +6415,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -5036,7 +6428,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 55 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -5049,7 +6441,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 55 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -5065,7 +6457,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 56 this -2042495840 +525683462 1 this.latitude 42358941 @@ -5078,7 +6470,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 56 this -2042495840 +525683462 1 this.latitude 42358941 @@ -5094,16 +6486,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 54 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -5112,7 +6504,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -5128,16 +6520,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 57 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -5146,7 +6538,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -5159,7 +6551,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 58 this -488044861 +143110009 1 this.latitude 42361797 @@ -5172,7 +6564,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 58 this -488044861 +143110009 1 this.latitude 42361797 @@ -5188,7 +6580,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 59 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -5201,7 +6593,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 59 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -5217,16 +6609,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 57 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -5235,7 +6627,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -5251,16 +6643,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 60 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -5269,7 +6661,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -5282,7 +6674,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 61 this -1241276575 +706197430 1 this.latitude 42360097 @@ -5295,7 +6687,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 61 this -1241276575 +706197430 1 this.latitude 42360097 @@ -5311,7 +6703,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 62 this -215145189 +1325808650 1 this.latitude 42361797 @@ -5324,7 +6716,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 62 this -215145189 +1325808650 1 this.latitude 42361797 @@ -5340,16 +6732,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 60 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -5358,7 +6750,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -5374,16 +6766,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 63 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -5392,7 +6784,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -5405,7 +6797,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 64 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -5418,7 +6810,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 64 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -5434,7 +6826,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 65 this -2042495840 +525683462 1 this.latitude 42358941 @@ -5447,7 +6839,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 65 this -2042495840 +525683462 1 this.latitude 42358941 @@ -5463,16 +6855,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 63 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -5481,7 +6873,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -5507,7 +6899,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 66 this -990398217 +319977154 1 this.latitude 42358941 @@ -5536,7 +6928,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 67 this -841283083 +648680157 1 this.latitude 42360097 @@ -5555,13 +6947,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 68 name -1675763772 +1071097621 1 name.toString "Memorial_Dr" 1 p1 -990398217 +319977154 1 p1.latitude 42358941 @@ -5570,7 +6962,7 @@ p1.longitude -71087240 1 p2 -841283083 +648680157 1 p2.latitude 42360097 @@ -5583,7 +6975,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 69 this -990398217 +319977154 1 this.latitude 42358941 @@ -5592,7 +6984,7 @@ this.longitude -71087240 1 o -841283083 +648680157 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -5602,7 +6994,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 69 this -990398217 +319977154 1 this.latitude 42358941 @@ -5611,7 +7003,7 @@ this.longitude -71087240 1 o -841283083 +648680157 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -5624,16 +7016,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 68 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -5642,7 +7034,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -5651,13 +7043,13 @@ this.p2.longitude -71083996 1 name -1675763772 +1071097621 1 name.toString "Memorial_Dr" 1 p1 -990398217 +319977154 1 p1.latitude 42358941 @@ -5666,7 +7058,7 @@ p1.longitude -71087240 1 p2 -841283083 +648680157 1 p2.latitude 42360097 @@ -5679,16 +7071,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 70 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -5697,7 +7089,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -5710,7 +7102,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 71 this -990398217 +319977154 1 this.latitude 42358941 @@ -5723,7 +7115,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 71 this -990398217 +319977154 1 this.latitude 42358941 @@ -5739,7 +7131,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 72 this -841283083 +648680157 1 this.latitude 42360097 @@ -5752,7 +7144,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 72 this -841283083 +648680157 1 this.latitude 42360097 @@ -5768,16 +7160,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 70 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -5786,7 +7178,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -5802,16 +7194,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 73 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -5820,7 +7212,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -5833,7 +7225,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 74 this -488044861 +143110009 1 this.latitude 42361797 @@ -5846,7 +7238,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 74 this -488044861 +143110009 1 this.latitude 42361797 @@ -5862,7 +7254,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 75 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -5875,7 +7267,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 75 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -5891,16 +7283,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 73 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -5909,7 +7301,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -5925,16 +7317,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 76 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -5943,7 +7335,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -5956,7 +7348,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 77 this -1241276575 +706197430 1 this.latitude 42360097 @@ -5969,7 +7361,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 77 this -1241276575 +706197430 1 this.latitude 42360097 @@ -5985,7 +7377,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 78 this -215145189 +1325808650 1 this.latitude 42361797 @@ -5998,7 +7390,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 78 this -215145189 +1325808650 1 this.latitude 42361797 @@ -6014,16 +7406,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 76 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -6032,7 +7424,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -6048,16 +7440,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 79 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -6066,7 +7458,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -6079,7 +7471,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 80 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -6092,7 +7484,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 80 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -6108,7 +7500,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 81 this -2042495840 +525683462 1 this.latitude 42358941 @@ -6121,7 +7513,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 81 this -2042495840 +525683462 1 this.latitude 42358941 @@ -6137,16 +7529,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 79 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -6155,7 +7547,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -6171,16 +7563,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 82 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -6189,7 +7581,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -6202,7 +7594,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 83 this -990398217 +319977154 1 this.latitude 42358941 @@ -6215,7 +7607,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 83 this -990398217 +319977154 1 this.latitude 42358941 @@ -6231,7 +7623,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 84 this -841283083 +648680157 1 this.latitude 42360097 @@ -6244,7 +7636,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 84 this -841283083 +648680157 1 this.latitude 42360097 @@ -6260,16 +7652,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 82 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -6278,7 +7670,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -6294,16 +7686,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 85 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -6312,7 +7704,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -6325,7 +7717,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 86 this -990398217 +319977154 1 this.latitude 42358941 @@ -6338,7 +7730,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 86 this -990398217 +319977154 1 this.latitude 42358941 @@ -6354,7 +7746,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 87 this -841283083 +648680157 1 this.latitude 42360097 @@ -6367,7 +7759,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 87 this -841283083 +648680157 1 this.latitude 42360097 @@ -6383,16 +7775,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 85 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -6401,7 +7793,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -6417,16 +7809,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 88 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -6435,7 +7827,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -6448,7 +7840,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 89 this -488044861 +143110009 1 this.latitude 42361797 @@ -6461,7 +7853,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 89 this -488044861 +143110009 1 this.latitude 42361797 @@ -6477,7 +7869,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 90 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -6490,7 +7882,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 90 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -6506,16 +7898,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 88 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -6524,7 +7916,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -6540,16 +7932,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 91 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -6558,7 +7950,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -6571,7 +7963,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 92 this -1241276575 +706197430 1 this.latitude 42360097 @@ -6584,7 +7976,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 92 this -1241276575 +706197430 1 this.latitude 42360097 @@ -6600,7 +7992,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 93 this -215145189 +1325808650 1 this.latitude 42361797 @@ -6613,7 +8005,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 93 this -215145189 +1325808650 1 this.latitude 42361797 @@ -6629,16 +8021,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 91 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -6647,7 +8039,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -6663,16 +8055,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 94 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -6681,7 +8073,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -6694,7 +8086,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 95 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -6707,7 +8099,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 95 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -6723,7 +8115,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 96 this -2042495840 +525683462 1 this.latitude 42358941 @@ -6736,7 +8128,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 96 this -2042495840 +525683462 1 this.latitude 42358941 @@ -6752,16 +8144,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 94 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -6770,7 +8162,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -6786,16 +8178,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 97 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -6804,7 +8196,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -6817,7 +8209,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 98 this -990398217 +319977154 1 this.latitude 42358941 @@ -6830,7 +8222,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 98 this -990398217 +319977154 1 this.latitude 42358941 @@ -6846,7 +8238,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 99 this -841283083 +648680157 1 this.latitude 42360097 @@ -6859,7 +8251,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 99 this -841283083 +648680157 1 this.latitude 42360097 @@ -6875,16 +8267,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 97 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -6893,7 +8285,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -6919,7 +8311,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 100 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -6948,7 +8340,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 101 this -1924582348 +133250414 1 this.latitude 42357097 @@ -6967,13 +8359,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 102 name -11003494 +85777802 1 name.toString "Memorial_Dr" 1 p1 -1731722639 +1908143486 1 p1.latitude 42358941 @@ -6982,7 +8374,7 @@ p1.longitude -71087240 1 p2 -1924582348 +133250414 1 p2.latitude 42357097 @@ -6995,7 +8387,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 103 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7004,7 +8396,7 @@ this.longitude -71087240 1 o -1924582348 +133250414 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -7014,7 +8406,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 103 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7023,7 +8415,7 @@ this.longitude -71087240 1 o -1924582348 +133250414 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -7036,16 +8428,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 102 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7054,7 +8446,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7063,13 +8455,13 @@ this.p2.longitude -71092896 1 name -11003494 +85777802 1 name.toString "Memorial_Dr" 1 p1 -1731722639 +1908143486 1 p1.latitude 42358941 @@ -7078,7 +8470,7 @@ p1.longitude -71087240 1 p2 -1924582348 +133250414 1 p2.latitude 42357097 @@ -7091,16 +8483,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 104 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7109,7 +8501,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7122,7 +8514,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 105 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7135,7 +8527,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 105 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7151,7 +8543,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 106 this -1924582348 +133250414 1 this.latitude 42357097 @@ -7164,7 +8556,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 106 this -1924582348 +133250414 1 this.latitude 42357097 @@ -7180,16 +8572,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 104 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7198,7 +8590,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7214,16 +8606,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 107 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -7232,7 +8624,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -7245,7 +8637,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 108 this -488044861 +143110009 1 this.latitude 42361797 @@ -7258,7 +8650,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 108 this -488044861 +143110009 1 this.latitude 42361797 @@ -7274,7 +8666,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 109 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -7287,7 +8679,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 109 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -7303,16 +8695,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 107 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -7321,7 +8713,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -7337,16 +8729,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 110 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -7355,7 +8747,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -7368,7 +8760,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 111 this -1241276575 +706197430 1 this.latitude 42360097 @@ -7381,7 +8773,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 111 this -1241276575 +706197430 1 this.latitude 42360097 @@ -7397,7 +8789,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 112 this -215145189 +1325808650 1 this.latitude 42361797 @@ -7410,7 +8802,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 112 this -215145189 +1325808650 1 this.latitude 42361797 @@ -7426,16 +8818,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 110 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -7444,7 +8836,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -7460,16 +8852,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 113 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -7478,7 +8870,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -7491,7 +8883,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 114 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -7504,7 +8896,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 114 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -7520,7 +8912,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 115 this -2042495840 +525683462 1 this.latitude 42358941 @@ -7533,7 +8925,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 115 this -2042495840 +525683462 1 this.latitude 42358941 @@ -7549,16 +8941,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 113 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -7567,7 +8959,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -7583,16 +8975,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 116 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -7601,7 +8993,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -7614,7 +9006,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 117 this -990398217 +319977154 1 this.latitude 42358941 @@ -7627,7 +9019,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 117 this -990398217 +319977154 1 this.latitude 42358941 @@ -7643,7 +9035,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 118 this -841283083 +648680157 1 this.latitude 42360097 @@ -7656,7 +9048,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 118 this -841283083 +648680157 1 this.latitude 42360097 @@ -7672,16 +9064,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 116 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -7690,7 +9082,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -7706,16 +9098,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 119 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7724,7 +9116,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7737,7 +9129,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 120 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7750,7 +9142,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 120 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7766,7 +9158,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 121 this -1924582348 +133250414 1 this.latitude 42357097 @@ -7779,7 +9171,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 121 this -1924582348 +133250414 1 this.latitude 42357097 @@ -7795,16 +9187,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 119 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7813,7 +9205,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7829,16 +9221,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 122 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7847,7 +9239,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7860,7 +9252,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 123 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7873,7 +9265,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 123 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -7889,7 +9281,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 124 this -1924582348 +133250414 1 this.latitude 42357097 @@ -7902,7 +9294,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 124 this -1924582348 +133250414 1 this.latitude 42357097 @@ -7918,16 +9310,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 122 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -7936,7 +9328,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -7952,16 +9344,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 125 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -7970,7 +9362,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -7983,7 +9375,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 126 this -488044861 +143110009 1 this.latitude 42361797 @@ -7996,7 +9388,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 126 this -488044861 +143110009 1 this.latitude 42361797 @@ -8012,7 +9404,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 127 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -8025,7 +9417,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 127 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -8041,16 +9433,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 125 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -8059,7 +9451,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -8075,16 +9467,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 128 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -8093,7 +9485,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -8106,7 +9498,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 129 this -1241276575 +706197430 1 this.latitude 42360097 @@ -8119,7 +9511,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 129 this -1241276575 +706197430 1 this.latitude 42360097 @@ -8135,7 +9527,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 130 this -215145189 +1325808650 1 this.latitude 42361797 @@ -8148,7 +9540,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 130 this -215145189 +1325808650 1 this.latitude 42361797 @@ -8164,16 +9556,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 128 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -8182,7 +9574,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -8198,16 +9590,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 131 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -8216,7 +9608,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -8229,7 +9621,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 132 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -8242,7 +9634,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 132 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -8258,7 +9650,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 133 this -2042495840 +525683462 1 this.latitude 42358941 @@ -8271,7 +9663,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 133 this -2042495840 +525683462 1 this.latitude 42358941 @@ -8287,16 +9679,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 131 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -8305,7 +9697,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -8321,16 +9713,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 134 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -8339,7 +9731,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -8352,7 +9744,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 135 this -990398217 +319977154 1 this.latitude 42358941 @@ -8365,7 +9757,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 135 this -990398217 +319977154 1 this.latitude 42358941 @@ -8381,7 +9773,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 136 this -841283083 +648680157 1 this.latitude 42360097 @@ -8394,7 +9786,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 136 this -841283083 +648680157 1 this.latitude 42360097 @@ -8410,16 +9802,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 134 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -8428,7 +9820,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -8444,16 +9836,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 137 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -8462,7 +9854,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -8475,7 +9867,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 138 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -8488,7 +9880,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 138 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -8504,7 +9896,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 139 this -1924582348 +133250414 1 this.latitude 42357097 @@ -8517,7 +9909,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 139 this -1924582348 +133250414 1 this.latitude 42357097 @@ -8533,16 +9925,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 137 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -8551,7 +9943,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -8577,7 +9969,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 140 this -817406040 +603650290 1 this.latitude 42357097 @@ -8606,7 +9998,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 141 this -1955915048 +762227630 1 this.latitude 42358941 @@ -8625,13 +10017,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 142 name -1270855946 +1316864772 1 name.toString "Memorial_Dr" 1 p1 -817406040 +603650290 1 p1.latitude 42357097 @@ -8640,7 +10032,7 @@ p1.longitude -71092896 1 p2 -1955915048 +762227630 1 p2.latitude 42358941 @@ -8653,7 +10045,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 143 this -817406040 +603650290 1 this.latitude 42357097 @@ -8662,7 +10054,7 @@ this.longitude -71092896 1 o -1955915048 +762227630 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -8672,7 +10064,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 143 this -817406040 +603650290 1 this.latitude 42357097 @@ -8681,7 +10073,7 @@ this.longitude -71092896 1 o -1955915048 +762227630 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -8694,16 +10086,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 142 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -8712,7 +10104,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -8721,13 +10113,13 @@ this.p2.longitude -71087240 1 name -1270855946 +1316864772 1 name.toString "Memorial_Dr" 1 p1 -817406040 +603650290 1 p1.latitude 42357097 @@ -8736,7 +10128,7 @@ p1.longitude -71092896 1 p2 -1955915048 +762227630 1 p2.latitude 42358941 @@ -8749,16 +10141,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 144 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -8767,7 +10159,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -8780,7 +10172,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 145 this -817406040 +603650290 1 this.latitude 42357097 @@ -8793,7 +10185,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 145 this -817406040 +603650290 1 this.latitude 42357097 @@ -8809,7 +10201,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 146 this -1955915048 +762227630 1 this.latitude 42358941 @@ -8822,7 +10214,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 146 this -1955915048 +762227630 1 this.latitude 42358941 @@ -8838,16 +10230,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 144 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -8856,7 +10248,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -8872,16 +10264,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 147 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -8890,7 +10282,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -8903,7 +10295,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 148 this -488044861 +143110009 1 this.latitude 42361797 @@ -8916,7 +10308,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 148 this -488044861 +143110009 1 this.latitude 42361797 @@ -8932,7 +10324,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 149 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -8945,7 +10337,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 149 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -8961,16 +10353,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 147 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -8979,7 +10371,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -8995,16 +10387,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 150 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -9013,7 +10405,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -9026,7 +10418,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 151 this -1241276575 +706197430 1 this.latitude 42360097 @@ -9039,7 +10431,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 151 this -1241276575 +706197430 1 this.latitude 42360097 @@ -9055,7 +10447,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 152 this -215145189 +1325808650 1 this.latitude 42361797 @@ -9068,7 +10460,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 152 this -215145189 +1325808650 1 this.latitude 42361797 @@ -9084,16 +10476,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 150 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -9102,7 +10494,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -9118,16 +10510,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 153 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -9136,7 +10528,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -9149,7 +10541,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 154 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -9162,7 +10554,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 154 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -9178,7 +10570,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 155 this -2042495840 +525683462 1 this.latitude 42358941 @@ -9191,7 +10583,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 155 this -2042495840 +525683462 1 this.latitude 42358941 @@ -9207,16 +10599,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 153 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -9225,7 +10617,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -9241,16 +10633,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 156 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -9259,7 +10651,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -9272,7 +10664,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 157 this -990398217 +319977154 1 this.latitude 42358941 @@ -9285,7 +10677,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 157 this -990398217 +319977154 1 this.latitude 42358941 @@ -9301,7 +10693,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 158 this -841283083 +648680157 1 this.latitude 42360097 @@ -9314,7 +10706,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 158 this -841283083 +648680157 1 this.latitude 42360097 @@ -9330,16 +10722,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 156 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -9348,7 +10740,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -9364,16 +10756,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 159 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -9382,7 +10774,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -9395,7 +10787,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 160 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -9408,7 +10800,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 160 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -9424,7 +10816,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 161 this -1924582348 +133250414 1 this.latitude 42357097 @@ -9437,7 +10829,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 161 this -1924582348 +133250414 1 this.latitude 42357097 @@ -9453,16 +10845,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 159 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -9471,7 +10863,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -9487,16 +10879,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 162 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -9505,7 +10897,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -9518,7 +10910,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 163 this -817406040 +603650290 1 this.latitude 42357097 @@ -9531,7 +10923,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 163 this -817406040 +603650290 1 this.latitude 42357097 @@ -9547,7 +10939,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 164 this -1955915048 +762227630 1 this.latitude 42358941 @@ -9560,7 +10952,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 164 this -1955915048 +762227630 1 this.latitude 42358941 @@ -9576,16 +10968,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 162 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -9594,7 +10986,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -9610,16 +11002,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 165 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -9628,7 +11020,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -9641,7 +11033,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 166 this -817406040 +603650290 1 this.latitude 42357097 @@ -9654,7 +11046,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 166 this -817406040 +603650290 1 this.latitude 42357097 @@ -9670,7 +11062,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 167 this -1955915048 +762227630 1 this.latitude 42358941 @@ -9683,7 +11075,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 167 this -1955915048 +762227630 1 this.latitude 42358941 @@ -9699,16 +11091,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 165 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -9717,7 +11109,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -9733,16 +11125,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 168 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -9751,7 +11143,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -9764,7 +11156,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 169 this -488044861 +143110009 1 this.latitude 42361797 @@ -9777,7 +11169,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 169 this -488044861 +143110009 1 this.latitude 42361797 @@ -9793,7 +11185,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 170 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -9806,7 +11198,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 170 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -9822,16 +11214,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 168 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -9840,7 +11232,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -9856,16 +11248,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 171 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -9874,7 +11266,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -9887,7 +11279,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 172 this -1241276575 +706197430 1 this.latitude 42360097 @@ -9900,7 +11292,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 172 this -1241276575 +706197430 1 this.latitude 42360097 @@ -9916,7 +11308,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 173 this -215145189 +1325808650 1 this.latitude 42361797 @@ -9929,7 +11321,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 173 this -215145189 +1325808650 1 this.latitude 42361797 @@ -9945,16 +11337,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 171 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -9963,7 +11355,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -9979,16 +11371,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 174 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -9997,7 +11389,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -10010,7 +11402,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 175 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -10023,7 +11415,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 175 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -10039,7 +11431,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 176 this -2042495840 +525683462 1 this.latitude 42358941 @@ -10052,7 +11444,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 176 this -2042495840 +525683462 1 this.latitude 42358941 @@ -10068,16 +11460,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 174 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -10086,7 +11478,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -10102,16 +11494,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 177 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -10120,7 +11512,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -10133,7 +11525,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 178 this -990398217 +319977154 1 this.latitude 42358941 @@ -10146,7 +11538,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 178 this -990398217 +319977154 1 this.latitude 42358941 @@ -10162,7 +11554,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 179 this -841283083 +648680157 1 this.latitude 42360097 @@ -10175,7 +11567,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 179 this -841283083 +648680157 1 this.latitude 42360097 @@ -10191,16 +11583,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 177 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -10209,7 +11601,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -10225,16 +11617,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 180 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -10243,7 +11635,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -10256,7 +11648,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 181 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -10269,7 +11661,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 181 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -10285,7 +11677,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 182 this -1924582348 +133250414 1 this.latitude 42357097 @@ -10298,7 +11690,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 182 this -1924582348 +133250414 1 this.latitude 42357097 @@ -10314,16 +11706,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 180 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -10332,7 +11724,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -10348,16 +11740,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 183 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -10366,7 +11758,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -10379,7 +11771,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 184 this -817406040 +603650290 1 this.latitude 42357097 @@ -10392,7 +11784,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 184 this -817406040 +603650290 1 this.latitude 42357097 @@ -10408,7 +11800,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 185 this -1955915048 +762227630 1 this.latitude 42358941 @@ -10421,7 +11813,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 185 this -1955915048 +762227630 1 this.latitude 42358941 @@ -10437,16 +11829,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 183 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -10455,7 +11847,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -10481,7 +11873,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 186 this -157683534 +280744458 1 this.latitude 42357097 @@ -10510,7 +11902,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 187 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -10529,13 +11921,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 188 name -1816757085 +1754638213 1 name.toString "Memorial_Dr" 1 p1 -157683534 +280744458 1 p1.latitude 42357097 @@ -10544,7 +11936,7 @@ p1.longitude -71092896 1 p2 -1518864111 +1213216872 1 p2.latitude 42353497 @@ -10557,7 +11949,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 189 this -157683534 +280744458 1 this.latitude 42357097 @@ -10566,7 +11958,7 @@ this.longitude -71092896 1 o -1518864111 +1213216872 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -10576,7 +11968,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 189 this -157683534 +280744458 1 this.latitude 42357097 @@ -10585,7 +11977,7 @@ this.longitude -71092896 1 o -1518864111 +1213216872 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -10598,16 +11990,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 188 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -10616,7 +12008,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -10625,13 +12017,13 @@ this.p2.longitude -71107296 1 name -1816757085 +1754638213 1 name.toString "Memorial_Dr" 1 p1 -157683534 +280744458 1 p1.latitude 42357097 @@ -10640,7 +12032,7 @@ p1.longitude -71092896 1 p2 -1518864111 +1213216872 1 p2.latitude 42353497 @@ -10653,16 +12045,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 190 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -10671,7 +12063,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -10684,7 +12076,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 191 this -157683534 +280744458 1 this.latitude 42357097 @@ -10697,7 +12089,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 191 this -157683534 +280744458 1 this.latitude 42357097 @@ -10713,7 +12105,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 192 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -10726,7 +12118,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 192 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -10742,16 +12134,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 190 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -10760,7 +12152,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -10776,16 +12168,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 193 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -10794,7 +12186,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -10807,7 +12199,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 194 this -488044861 +143110009 1 this.latitude 42361797 @@ -10820,7 +12212,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 194 this -488044861 +143110009 1 this.latitude 42361797 @@ -10836,7 +12228,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 195 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -10849,7 +12241,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 195 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -10865,16 +12257,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 193 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -10883,7 +12275,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -10899,16 +12291,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 196 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -10917,7 +12309,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -10930,7 +12322,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 197 this -1241276575 +706197430 1 this.latitude 42360097 @@ -10943,7 +12335,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 197 this -1241276575 +706197430 1 this.latitude 42360097 @@ -10959,7 +12351,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 198 this -215145189 +1325808650 1 this.latitude 42361797 @@ -10972,7 +12364,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 198 this -215145189 +1325808650 1 this.latitude 42361797 @@ -10988,16 +12380,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 196 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -11006,7 +12398,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -11022,16 +12414,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 199 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -11040,7 +12432,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -11053,7 +12445,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 200 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -11066,7 +12458,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 200 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -11082,7 +12474,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 201 this -2042495840 +525683462 1 this.latitude 42358941 @@ -11095,7 +12487,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 201 this -2042495840 +525683462 1 this.latitude 42358941 @@ -11111,16 +12503,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 199 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -11129,7 +12521,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -11145,16 +12537,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 202 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -11163,7 +12555,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -11176,7 +12568,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 203 this -990398217 +319977154 1 this.latitude 42358941 @@ -11189,7 +12581,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 203 this -990398217 +319977154 1 this.latitude 42358941 @@ -11205,7 +12597,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 204 this -841283083 +648680157 1 this.latitude 42360097 @@ -11218,7 +12610,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 204 this -841283083 +648680157 1 this.latitude 42360097 @@ -11234,16 +12626,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 202 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -11252,7 +12644,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -11268,16 +12660,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 205 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -11286,7 +12678,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -11299,7 +12691,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 206 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -11312,7 +12704,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 206 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -11328,7 +12720,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 207 this -1924582348 +133250414 1 this.latitude 42357097 @@ -11341,7 +12733,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 207 this -1924582348 +133250414 1 this.latitude 42357097 @@ -11357,16 +12749,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 205 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -11375,7 +12767,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -11391,16 +12783,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 208 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -11409,7 +12801,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -11422,7 +12814,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 209 this -817406040 +603650290 1 this.latitude 42357097 @@ -11435,7 +12827,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 209 this -817406040 +603650290 1 this.latitude 42357097 @@ -11451,7 +12843,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 210 this -1955915048 +762227630 1 this.latitude 42358941 @@ -11464,7 +12856,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 210 this -1955915048 +762227630 1 this.latitude 42358941 @@ -11480,16 +12872,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 208 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -11498,7 +12890,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -11514,16 +12906,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 211 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -11532,7 +12924,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -11545,7 +12937,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 212 this -157683534 +280744458 1 this.latitude 42357097 @@ -11558,7 +12950,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 212 this -157683534 +280744458 1 this.latitude 42357097 @@ -11574,7 +12966,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 213 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -11587,7 +12979,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 213 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -11603,16 +12995,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 211 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -11621,7 +13013,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -11637,16 +13029,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 214 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -11655,7 +13047,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -11668,7 +13060,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 215 this -157683534 +280744458 1 this.latitude 42357097 @@ -11681,7 +13073,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 215 this -157683534 +280744458 1 this.latitude 42357097 @@ -11697,7 +13089,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 216 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -11710,7 +13102,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 216 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -11726,16 +13118,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 214 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -11744,7 +13136,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -11760,16 +13152,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 217 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -11778,7 +13170,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -11791,7 +13183,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 218 this -488044861 +143110009 1 this.latitude 42361797 @@ -11804,7 +13196,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 218 this -488044861 +143110009 1 this.latitude 42361797 @@ -11820,7 +13212,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 219 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -11833,7 +13225,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 219 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -11849,16 +13241,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 217 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -11867,7 +13259,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -11883,16 +13275,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 220 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -11901,7 +13293,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -11914,7 +13306,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 221 this -1241276575 +706197430 1 this.latitude 42360097 @@ -11927,7 +13319,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 221 this -1241276575 +706197430 1 this.latitude 42360097 @@ -11943,7 +13335,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 222 this -215145189 +1325808650 1 this.latitude 42361797 @@ -11956,7 +13348,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 222 this -215145189 +1325808650 1 this.latitude 42361797 @@ -11972,16 +13364,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 220 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -11990,7 +13382,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -12006,16 +13398,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 223 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -12024,7 +13416,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -12037,7 +13429,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 224 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -12050,7 +13442,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 224 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -12066,7 +13458,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 225 this -2042495840 +525683462 1 this.latitude 42358941 @@ -12079,7 +13471,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 225 this -2042495840 +525683462 1 this.latitude 42358941 @@ -12095,16 +13487,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 223 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -12113,7 +13505,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -12129,16 +13521,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 226 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -12147,7 +13539,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -12160,7 +13552,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 227 this -990398217 +319977154 1 this.latitude 42358941 @@ -12173,7 +13565,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 227 this -990398217 +319977154 1 this.latitude 42358941 @@ -12189,7 +13581,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 228 this -841283083 +648680157 1 this.latitude 42360097 @@ -12202,7 +13594,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 228 this -841283083 +648680157 1 this.latitude 42360097 @@ -12218,16 +13610,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 226 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -12236,7 +13628,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -12252,16 +13644,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 229 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -12270,7 +13662,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -12283,7 +13675,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 230 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -12296,7 +13688,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 230 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -12312,7 +13704,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 231 this -1924582348 +133250414 1 this.latitude 42357097 @@ -12325,7 +13717,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 231 this -1924582348 +133250414 1 this.latitude 42357097 @@ -12341,16 +13733,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 229 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -12359,7 +13751,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -12375,16 +13767,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 232 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -12393,7 +13785,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -12406,7 +13798,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 233 this -817406040 +603650290 1 this.latitude 42357097 @@ -12419,7 +13811,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 233 this -817406040 +603650290 1 this.latitude 42357097 @@ -12435,7 +13827,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 234 this -1955915048 +762227630 1 this.latitude 42358941 @@ -12448,7 +13840,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 234 this -1955915048 +762227630 1 this.latitude 42358941 @@ -12464,16 +13856,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 232 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -12482,7 +13874,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -12498,16 +13890,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 235 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -12516,7 +13908,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -12529,7 +13921,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 236 this -157683534 +280744458 1 this.latitude 42357097 @@ -12542,7 +13934,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 236 this -157683534 +280744458 1 this.latitude 42357097 @@ -12558,7 +13950,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 237 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -12571,7 +13963,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 237 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -12587,16 +13979,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 235 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -12605,7 +13997,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -12631,7 +14023,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 238 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -12660,7 +14052,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 239 this -2097514481 +527446182 1 this.latitude 42357097 @@ -12679,13 +14071,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 240 name -1568059495 +1511785794 1 name.toString "Memorial_Dr" 1 p1 -1730173572 +1454031203 1 p1.latitude 42353497 @@ -12694,7 +14086,7 @@ p1.longitude -71107296 1 p2 -2097514481 +527446182 1 p2.latitude 42357097 @@ -12707,7 +14099,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 241 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -12716,7 +14108,7 @@ this.longitude -71107296 1 o -2097514481 +527446182 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -12726,7 +14118,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 241 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -12735,7 +14127,7 @@ this.longitude -71107296 1 o -2097514481 +527446182 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -12748,16 +14140,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 240 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -12766,7 +14158,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -12775,13 +14167,13 @@ this.p2.longitude -71092896 1 name -1568059495 +1511785794 1 name.toString "Memorial_Dr" 1 p1 -1730173572 +1454031203 1 p1.latitude 42353497 @@ -12790,7 +14182,7 @@ p1.longitude -71107296 1 p2 -2097514481 +527446182 1 p2.latitude 42357097 @@ -12803,16 +14195,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 242 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -12821,7 +14213,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -12834,7 +14226,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 243 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -12847,7 +14239,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 243 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -12863,7 +14255,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 244 this -2097514481 +527446182 1 this.latitude 42357097 @@ -12876,7 +14268,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 244 this -2097514481 +527446182 1 this.latitude 42357097 @@ -12892,16 +14284,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 242 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -12910,7 +14302,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -12926,16 +14318,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 245 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -12944,7 +14336,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -12957,7 +14349,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 246 this -488044861 +143110009 1 this.latitude 42361797 @@ -12970,7 +14362,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 246 this -488044861 +143110009 1 this.latitude 42361797 @@ -12986,7 +14378,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 247 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -12999,7 +14391,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 247 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -13015,16 +14407,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 245 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -13033,7 +14425,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -13049,16 +14441,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 248 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -13067,7 +14459,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -13080,7 +14472,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 249 this -1241276575 +706197430 1 this.latitude 42360097 @@ -13093,7 +14485,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 249 this -1241276575 +706197430 1 this.latitude 42360097 @@ -13109,7 +14501,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 250 this -215145189 +1325808650 1 this.latitude 42361797 @@ -13122,7 +14514,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 250 this -215145189 +1325808650 1 this.latitude 42361797 @@ -13138,16 +14530,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 248 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -13156,7 +14548,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -13172,16 +14564,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 251 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -13190,7 +14582,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -13203,7 +14595,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 252 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -13216,7 +14608,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 252 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -13232,7 +14624,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 253 this -2042495840 +525683462 1 this.latitude 42358941 @@ -13245,7 +14637,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 253 this -2042495840 +525683462 1 this.latitude 42358941 @@ -13261,16 +14653,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 251 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -13279,7 +14671,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -13295,16 +14687,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 254 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -13313,7 +14705,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -13326,7 +14718,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 255 this -990398217 +319977154 1 this.latitude 42358941 @@ -13339,7 +14731,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 255 this -990398217 +319977154 1 this.latitude 42358941 @@ -13355,7 +14747,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 256 this -841283083 +648680157 1 this.latitude 42360097 @@ -13368,7 +14760,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 256 this -841283083 +648680157 1 this.latitude 42360097 @@ -13384,16 +14776,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 254 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -13402,7 +14794,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -13418,16 +14810,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 257 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -13436,7 +14828,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -13449,7 +14841,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 258 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -13462,7 +14854,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 258 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -13478,7 +14870,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 259 this -1924582348 +133250414 1 this.latitude 42357097 @@ -13491,7 +14883,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 259 this -1924582348 +133250414 1 this.latitude 42357097 @@ -13507,16 +14899,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 257 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -13525,7 +14917,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -13541,16 +14933,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 260 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -13559,7 +14951,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -13572,7 +14964,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 261 this -817406040 +603650290 1 this.latitude 42357097 @@ -13585,7 +14977,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 261 this -817406040 +603650290 1 this.latitude 42357097 @@ -13601,7 +14993,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 262 this -1955915048 +762227630 1 this.latitude 42358941 @@ -13614,7 +15006,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 262 this -1955915048 +762227630 1 this.latitude 42358941 @@ -13630,16 +15022,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 260 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -13648,7 +15040,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -13664,16 +15056,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 263 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -13682,7 +15074,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -13695,7 +15087,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 264 this -157683534 +280744458 1 this.latitude 42357097 @@ -13708,7 +15100,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 264 this -157683534 +280744458 1 this.latitude 42357097 @@ -13724,7 +15116,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 265 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -13737,7 +15129,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 265 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -13753,16 +15145,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 263 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -13771,7 +15163,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -13787,16 +15179,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 266 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -13805,7 +15197,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -13818,7 +15210,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 267 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -13831,7 +15223,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 267 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -13847,7 +15239,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 268 this -2097514481 +527446182 1 this.latitude 42357097 @@ -13860,7 +15252,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 268 this -2097514481 +527446182 1 this.latitude 42357097 @@ -13876,16 +15268,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 266 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -13894,7 +15286,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -13910,16 +15302,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 269 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -13928,7 +15320,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -13941,7 +15333,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 270 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -13954,7 +15346,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 270 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -13970,7 +15362,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 271 this -2097514481 +527446182 1 this.latitude 42357097 @@ -13983,7 +15375,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 271 this -2097514481 +527446182 1 this.latitude 42357097 @@ -13999,16 +15391,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 269 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -14017,7 +15409,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -14033,16 +15425,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 272 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -14051,7 +15443,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -14064,7 +15456,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 273 this -488044861 +143110009 1 this.latitude 42361797 @@ -14077,7 +15469,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 273 this -488044861 +143110009 1 this.latitude 42361797 @@ -14093,7 +15485,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 274 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -14106,7 +15498,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 274 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -14122,16 +15514,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 272 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -14140,7 +15532,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -14156,16 +15548,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 275 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -14174,7 +15566,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -14187,7 +15579,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 276 this -1241276575 +706197430 1 this.latitude 42360097 @@ -14200,7 +15592,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 276 this -1241276575 +706197430 1 this.latitude 42360097 @@ -14216,7 +15608,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 277 this -215145189 +1325808650 1 this.latitude 42361797 @@ -14229,7 +15621,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 277 this -215145189 +1325808650 1 this.latitude 42361797 @@ -14245,16 +15637,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 275 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -14263,7 +15655,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -14279,16 +15671,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 278 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -14297,7 +15689,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -14310,7 +15702,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 279 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -14323,7 +15715,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 279 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -14339,7 +15731,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 280 this -2042495840 +525683462 1 this.latitude 42358941 @@ -14352,7 +15744,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 280 this -2042495840 +525683462 1 this.latitude 42358941 @@ -14368,16 +15760,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 278 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -14386,7 +15778,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -14402,16 +15794,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 281 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -14420,7 +15812,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -14433,7 +15825,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 282 this -990398217 +319977154 1 this.latitude 42358941 @@ -14446,7 +15838,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 282 this -990398217 +319977154 1 this.latitude 42358941 @@ -14462,7 +15854,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 283 this -841283083 +648680157 1 this.latitude 42360097 @@ -14475,7 +15867,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 283 this -841283083 +648680157 1 this.latitude 42360097 @@ -14491,16 +15883,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 281 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -14509,7 +15901,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -14525,16 +15917,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 284 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -14543,7 +15935,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -14556,7 +15948,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 285 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -14569,7 +15961,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 285 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -14585,7 +15977,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 286 this -1924582348 +133250414 1 this.latitude 42357097 @@ -14598,7 +15990,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 286 this -1924582348 +133250414 1 this.latitude 42357097 @@ -14614,16 +16006,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 284 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -14632,7 +16024,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -14648,16 +16040,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 287 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -14666,7 +16058,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -14679,7 +16071,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 288 this -817406040 +603650290 1 this.latitude 42357097 @@ -14692,7 +16084,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 288 this -817406040 +603650290 1 this.latitude 42357097 @@ -14708,7 +16100,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 289 this -1955915048 +762227630 1 this.latitude 42358941 @@ -14721,7 +16113,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 289 this -1955915048 +762227630 1 this.latitude 42358941 @@ -14737,16 +16129,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 287 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -14755,7 +16147,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -14771,16 +16163,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 290 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -14789,7 +16181,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -14802,7 +16194,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 291 this -157683534 +280744458 1 this.latitude 42357097 @@ -14815,7 +16207,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 291 this -157683534 +280744458 1 this.latitude 42357097 @@ -14831,7 +16223,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 292 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -14844,7 +16236,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 292 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -14860,16 +16252,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 290 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -14878,7 +16270,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -14894,16 +16286,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 293 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -14912,7 +16304,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -14925,7 +16317,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 294 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -14938,7 +16330,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 294 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -14954,7 +16346,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 295 this -2097514481 +527446182 1 this.latitude 42357097 @@ -14967,7 +16359,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 295 this -2097514481 +527446182 1 this.latitude 42357097 @@ -14983,16 +16375,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 293 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -15001,7 +16393,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -15027,7 +16419,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 296 this -1325808650 +961419791 1 this.latitude 42361797 @@ -15056,7 +16448,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 297 this -510464020 +665188480 1 this.latitude 42362297 @@ -15075,13 +16467,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 298 name -1987083830 +489279267 1 name.toString "Main_St" 1 p1 -1325808650 +961419791 1 p1.latitude 42361797 @@ -15090,7 +16482,7 @@ p1.longitude -71079295 1 p2 -510464020 +665188480 1 p2.latitude 42362297 @@ -15103,7 +16495,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 299 this -1325808650 +961419791 1 this.latitude 42361797 @@ -15112,7 +16504,7 @@ this.longitude -71079295 1 o -510464020 +665188480 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -15122,7 +16514,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 299 this -1325808650 +961419791 1 this.latitude 42361797 @@ -15131,7 +16523,7 @@ this.longitude -71079295 1 o -510464020 +665188480 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -15144,16 +16536,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 298 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -15162,7 +16554,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -15171,13 +16563,13 @@ this.p2.longitude -71084396 1 name -1987083830 +489279267 1 name.toString "Main_St" 1 p1 -1325808650 +961419791 1 p1.latitude 42361797 @@ -15186,7 +16578,7 @@ p1.longitude -71079295 1 p2 -510464020 +665188480 1 p2.latitude 42362297 @@ -15199,16 +16591,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 300 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -15217,7 +16609,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -15230,7 +16622,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 301 this -1325808650 +961419791 1 this.latitude 42361797 @@ -15243,7 +16635,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 301 this -1325808650 +961419791 1 this.latitude 42361797 @@ -15259,7 +16651,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 302 this -510464020 +665188480 1 this.latitude 42362297 @@ -15272,7 +16664,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 302 this -510464020 +665188480 1 this.latitude 42362297 @@ -15288,16 +16680,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 300 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -15306,7 +16698,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -15322,16 +16714,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 303 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -15340,7 +16732,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -15353,7 +16745,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 304 this -488044861 +143110009 1 this.latitude 42361797 @@ -15366,7 +16758,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 304 this -488044861 +143110009 1 this.latitude 42361797 @@ -15382,7 +16774,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 305 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -15395,7 +16787,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 305 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -15411,16 +16803,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 303 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -15429,7 +16821,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -15445,16 +16837,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 306 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -15463,7 +16855,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -15476,7 +16868,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 307 this -1241276575 +706197430 1 this.latitude 42360097 @@ -15489,7 +16881,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 307 this -1241276575 +706197430 1 this.latitude 42360097 @@ -15505,7 +16897,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 308 this -215145189 +1325808650 1 this.latitude 42361797 @@ -15518,7 +16910,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 308 this -215145189 +1325808650 1 this.latitude 42361797 @@ -15534,16 +16926,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 306 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -15552,7 +16944,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -15568,16 +16960,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 309 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -15586,7 +16978,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -15599,7 +16991,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 310 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -15612,7 +17004,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 310 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -15628,7 +17020,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 311 this -2042495840 +525683462 1 this.latitude 42358941 @@ -15641,7 +17033,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 311 this -2042495840 +525683462 1 this.latitude 42358941 @@ -15657,16 +17049,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 309 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -15675,7 +17067,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -15691,16 +17083,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 312 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -15709,7 +17101,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -15722,7 +17114,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 313 this -990398217 +319977154 1 this.latitude 42358941 @@ -15735,7 +17127,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 313 this -990398217 +319977154 1 this.latitude 42358941 @@ -15751,7 +17143,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 314 this -841283083 +648680157 1 this.latitude 42360097 @@ -15764,7 +17156,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 314 this -841283083 +648680157 1 this.latitude 42360097 @@ -15780,16 +17172,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 312 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -15798,7 +17190,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -15814,16 +17206,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 315 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -15832,7 +17224,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -15845,7 +17237,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 316 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -15858,7 +17250,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 316 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -15874,7 +17266,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 317 this -1924582348 +133250414 1 this.latitude 42357097 @@ -15887,7 +17279,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 317 this -1924582348 +133250414 1 this.latitude 42357097 @@ -15903,16 +17295,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 315 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -15921,7 +17313,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -15937,16 +17329,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 318 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -15955,7 +17347,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -15968,7 +17360,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 319 this -817406040 +603650290 1 this.latitude 42357097 @@ -15981,7 +17373,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 319 this -817406040 +603650290 1 this.latitude 42357097 @@ -15997,7 +17389,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 320 this -1955915048 +762227630 1 this.latitude 42358941 @@ -16010,7 +17402,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 320 this -1955915048 +762227630 1 this.latitude 42358941 @@ -16026,16 +17418,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 318 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -16044,7 +17436,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -16060,16 +17452,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 321 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -16078,7 +17470,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -16091,7 +17483,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 322 this -157683534 +280744458 1 this.latitude 42357097 @@ -16104,7 +17496,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 322 this -157683534 +280744458 1 this.latitude 42357097 @@ -16120,7 +17512,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 323 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -16133,7 +17525,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 323 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -16149,16 +17541,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 321 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -16167,7 +17559,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -16183,16 +17575,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 324 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -16201,7 +17593,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -16214,7 +17606,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 325 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -16227,7 +17619,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 325 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -16243,7 +17635,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 326 this -2097514481 +527446182 1 this.latitude 42357097 @@ -16256,7 +17648,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 326 this -2097514481 +527446182 1 this.latitude 42357097 @@ -16272,16 +17664,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 324 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -16290,7 +17682,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -16306,16 +17698,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 327 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -16324,7 +17716,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -16337,7 +17729,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 328 this -1325808650 +961419791 1 this.latitude 42361797 @@ -16350,7 +17742,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 328 this -1325808650 +961419791 1 this.latitude 42361797 @@ -16366,7 +17758,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 329 this -510464020 +665188480 1 this.latitude 42362297 @@ -16379,7 +17771,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 329 this -510464020 +665188480 1 this.latitude 42362297 @@ -16395,16 +17787,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 327 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -16413,7 +17805,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -16429,16 +17821,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 330 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -16447,7 +17839,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -16460,7 +17852,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 331 this -1325808650 +961419791 1 this.latitude 42361797 @@ -16473,7 +17865,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 331 this -1325808650 +961419791 1 this.latitude 42361797 @@ -16489,7 +17881,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 332 this -510464020 +665188480 1 this.latitude 42362297 @@ -16502,7 +17894,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 332 this -510464020 +665188480 1 this.latitude 42362297 @@ -16518,16 +17910,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 330 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -16536,7 +17928,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -16552,16 +17944,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 333 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -16570,7 +17962,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -16583,7 +17975,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 334 this -488044861 +143110009 1 this.latitude 42361797 @@ -16596,7 +17988,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 334 this -488044861 +143110009 1 this.latitude 42361797 @@ -16612,7 +18004,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 335 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -16625,7 +18017,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 335 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -16641,16 +18033,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 333 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -16659,7 +18051,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -16675,16 +18067,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 336 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -16693,7 +18085,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -16706,7 +18098,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 337 this -1241276575 +706197430 1 this.latitude 42360097 @@ -16719,7 +18111,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 337 this -1241276575 +706197430 1 this.latitude 42360097 @@ -16735,7 +18127,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 338 this -215145189 +1325808650 1 this.latitude 42361797 @@ -16748,7 +18140,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 338 this -215145189 +1325808650 1 this.latitude 42361797 @@ -16764,16 +18156,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 336 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -16782,7 +18174,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -16798,16 +18190,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 339 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -16816,7 +18208,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -16829,7 +18221,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 340 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -16842,7 +18234,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 340 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -16858,7 +18250,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 341 this -2042495840 +525683462 1 this.latitude 42358941 @@ -16871,7 +18263,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 341 this -2042495840 +525683462 1 this.latitude 42358941 @@ -16887,16 +18279,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 339 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -16905,7 +18297,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -16921,16 +18313,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 342 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -16939,7 +18331,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -16952,7 +18344,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 343 this -990398217 +319977154 1 this.latitude 42358941 @@ -16965,7 +18357,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 343 this -990398217 +319977154 1 this.latitude 42358941 @@ -16981,7 +18373,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 344 this -841283083 +648680157 1 this.latitude 42360097 @@ -16994,7 +18386,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 344 this -841283083 +648680157 1 this.latitude 42360097 @@ -17010,16 +18402,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 342 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -17028,7 +18420,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -17044,16 +18436,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 345 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -17062,7 +18454,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -17075,7 +18467,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 346 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -17088,7 +18480,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 346 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -17104,7 +18496,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 347 this -1924582348 +133250414 1 this.latitude 42357097 @@ -17117,7 +18509,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 347 this -1924582348 +133250414 1 this.latitude 42357097 @@ -17133,16 +18525,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 345 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -17151,7 +18543,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -17167,16 +18559,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 348 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -17185,7 +18577,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -17198,7 +18590,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 349 this -817406040 +603650290 1 this.latitude 42357097 @@ -17211,7 +18603,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 349 this -817406040 +603650290 1 this.latitude 42357097 @@ -17227,7 +18619,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 350 this -1955915048 +762227630 1 this.latitude 42358941 @@ -17240,7 +18632,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 350 this -1955915048 +762227630 1 this.latitude 42358941 @@ -17256,16 +18648,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 348 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -17274,7 +18666,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -17290,16 +18682,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 351 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -17308,7 +18700,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -17321,7 +18713,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 352 this -157683534 +280744458 1 this.latitude 42357097 @@ -17334,7 +18726,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 352 this -157683534 +280744458 1 this.latitude 42357097 @@ -17350,7 +18742,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 353 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -17363,7 +18755,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 353 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -17379,16 +18771,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 351 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -17397,7 +18789,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -17413,16 +18805,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 354 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -17431,7 +18823,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -17444,7 +18836,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 355 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -17457,7 +18849,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 355 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -17473,7 +18865,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 356 this -2097514481 +527446182 1 this.latitude 42357097 @@ -17486,7 +18878,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 356 this -2097514481 +527446182 1 this.latitude 42357097 @@ -17502,16 +18894,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 354 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -17520,7 +18912,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -17536,16 +18928,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 357 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -17554,7 +18946,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -17567,7 +18959,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 358 this -1325808650 +961419791 1 this.latitude 42361797 @@ -17580,7 +18972,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 358 this -1325808650 +961419791 1 this.latitude 42361797 @@ -17596,7 +18988,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 359 this -510464020 +665188480 1 this.latitude 42362297 @@ -17609,7 +19001,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 359 this -510464020 +665188480 1 this.latitude 42362297 @@ -17625,16 +19017,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 357 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -17643,7 +19035,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -17669,7 +19061,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 360 this -525683462 +377478451 1 this.latitude 42362297 @@ -17698,7 +19090,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 361 this -1766724936 +513169028 1 this.latitude 42361797 @@ -17717,13 +19109,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 362 name -473581465 +1301664418 1 name.toString "Main_St" 1 p1 -525683462 +377478451 1 p1.latitude 42362297 @@ -17732,7 +19124,7 @@ p1.longitude -71084396 1 p2 -1766724936 +513169028 1 p2.latitude 42361797 @@ -17745,7 +19137,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 363 this -525683462 +377478451 1 this.latitude 42362297 @@ -17754,7 +19146,7 @@ this.longitude -71084396 1 o -1766724936 +513169028 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -17764,7 +19156,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 363 this -525683462 +377478451 1 this.latitude 42362297 @@ -17773,7 +19165,7 @@ this.longitude -71084396 1 o -1766724936 +513169028 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -17786,16 +19178,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 362 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -17804,7 +19196,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -17813,13 +19205,13 @@ this.p2.longitude -71079295 1 name -473581465 +1301664418 1 name.toString "Main_St" 1 p1 -525683462 +377478451 1 p1.latitude 42362297 @@ -17828,7 +19220,7 @@ p1.longitude -71084396 1 p2 -1766724936 +513169028 1 p2.latitude 42361797 @@ -17841,16 +19233,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 364 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -17859,7 +19251,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -17872,7 +19264,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 365 this -525683462 +377478451 1 this.latitude 42362297 @@ -17885,7 +19277,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 365 this -525683462 +377478451 1 this.latitude 42362297 @@ -17901,7 +19293,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 366 this -1766724936 +513169028 1 this.latitude 42361797 @@ -17914,7 +19306,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 366 this -1766724936 +513169028 1 this.latitude 42361797 @@ -17930,16 +19322,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 364 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -17948,7 +19340,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -17964,16 +19356,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 367 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -17982,7 +19374,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -17995,7 +19387,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 368 this -488044861 +143110009 1 this.latitude 42361797 @@ -18008,7 +19400,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 368 this -488044861 +143110009 1 this.latitude 42361797 @@ -18024,7 +19416,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 369 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -18037,7 +19429,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 369 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -18053,16 +19445,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 367 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -18071,7 +19463,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -18087,16 +19479,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 370 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -18105,7 +19497,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -18118,7 +19510,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 371 this -1241276575 +706197430 1 this.latitude 42360097 @@ -18131,7 +19523,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 371 this -1241276575 +706197430 1 this.latitude 42360097 @@ -18147,7 +19539,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 372 this -215145189 +1325808650 1 this.latitude 42361797 @@ -18160,7 +19552,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 372 this -215145189 +1325808650 1 this.latitude 42361797 @@ -18176,16 +19568,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 370 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -18194,7 +19586,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -18210,16 +19602,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 373 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -18228,7 +19620,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -18241,7 +19633,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 374 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -18254,7 +19646,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 374 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -18270,7 +19662,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 375 this -2042495840 +525683462 1 this.latitude 42358941 @@ -18283,7 +19675,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 375 this -2042495840 +525683462 1 this.latitude 42358941 @@ -18299,16 +19691,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 373 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -18317,7 +19709,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -18333,16 +19725,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 376 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -18351,7 +19743,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -18364,7 +19756,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 377 this -990398217 +319977154 1 this.latitude 42358941 @@ -18377,7 +19769,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 377 this -990398217 +319977154 1 this.latitude 42358941 @@ -18393,7 +19785,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 378 this -841283083 +648680157 1 this.latitude 42360097 @@ -18406,7 +19798,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 378 this -841283083 +648680157 1 this.latitude 42360097 @@ -18422,16 +19814,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 376 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -18440,7 +19832,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -18456,16 +19848,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 379 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -18474,7 +19866,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -18487,7 +19879,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 380 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -18500,7 +19892,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 380 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -18516,7 +19908,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 381 this -1924582348 +133250414 1 this.latitude 42357097 @@ -18529,7 +19921,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 381 this -1924582348 +133250414 1 this.latitude 42357097 @@ -18545,16 +19937,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 379 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -18563,7 +19955,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -18579,16 +19971,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 382 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -18597,7 +19989,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -18610,7 +20002,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 383 this -817406040 +603650290 1 this.latitude 42357097 @@ -18623,7 +20015,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 383 this -817406040 +603650290 1 this.latitude 42357097 @@ -18639,7 +20031,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 384 this -1955915048 +762227630 1 this.latitude 42358941 @@ -18652,7 +20044,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 384 this -1955915048 +762227630 1 this.latitude 42358941 @@ -18668,16 +20060,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 382 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -18686,7 +20078,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -18702,16 +20094,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 385 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -18720,7 +20112,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -18733,7 +20125,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 386 this -157683534 +280744458 1 this.latitude 42357097 @@ -18746,7 +20138,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 386 this -157683534 +280744458 1 this.latitude 42357097 @@ -18762,7 +20154,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 387 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -18775,7 +20167,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 387 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -18791,16 +20183,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 385 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -18809,7 +20201,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -18825,16 +20217,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 388 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -18843,7 +20235,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -18856,7 +20248,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 389 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -18869,7 +20261,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 389 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -18885,7 +20277,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 390 this -2097514481 +527446182 1 this.latitude 42357097 @@ -18898,7 +20290,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 390 this -2097514481 +527446182 1 this.latitude 42357097 @@ -18914,16 +20306,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 388 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -18932,7 +20324,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -18948,16 +20340,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 391 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -18966,7 +20358,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -18979,7 +20371,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 392 this -1325808650 +961419791 1 this.latitude 42361797 @@ -18992,7 +20384,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 392 this -1325808650 +961419791 1 this.latitude 42361797 @@ -19008,7 +20400,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 393 this -510464020 +665188480 1 this.latitude 42362297 @@ -19021,7 +20413,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 393 this -510464020 +665188480 1 this.latitude 42362297 @@ -19037,16 +20429,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 391 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -19055,7 +20447,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -19071,16 +20463,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 394 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -19089,7 +20481,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -19102,7 +20494,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 395 this -525683462 +377478451 1 this.latitude 42362297 @@ -19115,7 +20507,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 395 this -525683462 +377478451 1 this.latitude 42362297 @@ -19131,7 +20523,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 396 this -1766724936 +513169028 1 this.latitude 42361797 @@ -19144,7 +20536,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 396 this -1766724936 +513169028 1 this.latitude 42361797 @@ -19160,16 +20552,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 394 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -19178,7 +20570,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -19194,16 +20586,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 397 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -19212,7 +20604,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -19225,7 +20617,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 398 this -525683462 +377478451 1 this.latitude 42362297 @@ -19238,7 +20630,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 398 this -525683462 +377478451 1 this.latitude 42362297 @@ -19254,7 +20646,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 399 this -1766724936 +513169028 1 this.latitude 42361797 @@ -19267,7 +20659,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 399 this -1766724936 +513169028 1 this.latitude 42361797 @@ -19283,16 +20675,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 397 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -19301,7 +20693,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -19317,16 +20709,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 400 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -19335,7 +20727,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -19348,7 +20740,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 401 this -488044861 +143110009 1 this.latitude 42361797 @@ -19361,7 +20753,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 401 this -488044861 +143110009 1 this.latitude 42361797 @@ -19377,7 +20769,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 402 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -19390,7 +20782,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 402 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -19406,16 +20798,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 400 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -19424,7 +20816,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -19440,16 +20832,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 403 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -19458,7 +20850,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -19471,7 +20863,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 404 this -1241276575 +706197430 1 this.latitude 42360097 @@ -19484,7 +20876,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 404 this -1241276575 +706197430 1 this.latitude 42360097 @@ -19500,7 +20892,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 405 this -215145189 +1325808650 1 this.latitude 42361797 @@ -19513,7 +20905,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 405 this -215145189 +1325808650 1 this.latitude 42361797 @@ -19529,16 +20921,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 403 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -19547,7 +20939,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -19563,16 +20955,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 406 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -19581,7 +20973,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -19594,7 +20986,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 407 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -19607,7 +20999,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 407 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -19623,7 +21015,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 408 this -2042495840 +525683462 1 this.latitude 42358941 @@ -19636,7 +21028,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 408 this -2042495840 +525683462 1 this.latitude 42358941 @@ -19652,16 +21044,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 406 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -19670,7 +21062,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -19686,16 +21078,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 409 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -19704,7 +21096,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -19717,7 +21109,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 410 this -990398217 +319977154 1 this.latitude 42358941 @@ -19730,7 +21122,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 410 this -990398217 +319977154 1 this.latitude 42358941 @@ -19746,7 +21138,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 411 this -841283083 +648680157 1 this.latitude 42360097 @@ -19759,7 +21151,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 411 this -841283083 +648680157 1 this.latitude 42360097 @@ -19775,16 +21167,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 409 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -19793,7 +21185,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -19809,16 +21201,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 412 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -19827,7 +21219,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -19840,7 +21232,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 413 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -19853,7 +21245,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 413 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -19869,7 +21261,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 414 this -1924582348 +133250414 1 this.latitude 42357097 @@ -19882,7 +21274,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 414 this -1924582348 +133250414 1 this.latitude 42357097 @@ -19898,16 +21290,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 412 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -19916,7 +21308,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -19932,16 +21324,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 415 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -19950,7 +21342,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -19963,7 +21355,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 416 this -817406040 +603650290 1 this.latitude 42357097 @@ -19976,7 +21368,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 416 this -817406040 +603650290 1 this.latitude 42357097 @@ -19992,7 +21384,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 417 this -1955915048 +762227630 1 this.latitude 42358941 @@ -20005,7 +21397,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 417 this -1955915048 +762227630 1 this.latitude 42358941 @@ -20021,16 +21413,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 415 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -20039,7 +21431,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -20055,16 +21447,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 418 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -20073,7 +21465,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -20086,7 +21478,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 419 this -157683534 +280744458 1 this.latitude 42357097 @@ -20099,7 +21491,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 419 this -157683534 +280744458 1 this.latitude 42357097 @@ -20115,7 +21507,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 420 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -20128,7 +21520,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 420 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -20144,16 +21536,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 418 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -20162,7 +21554,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -20178,16 +21570,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 421 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -20196,7 +21588,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -20209,7 +21601,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 422 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -20222,7 +21614,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 422 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -20238,7 +21630,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 423 this -2097514481 +527446182 1 this.latitude 42357097 @@ -20251,7 +21643,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 423 this -2097514481 +527446182 1 this.latitude 42357097 @@ -20267,16 +21659,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 421 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -20285,7 +21677,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -20301,16 +21693,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 424 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -20319,7 +21711,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -20332,7 +21724,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 425 this -1325808650 +961419791 1 this.latitude 42361797 @@ -20345,7 +21737,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 425 this -1325808650 +961419791 1 this.latitude 42361797 @@ -20361,7 +21753,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 426 this -510464020 +665188480 1 this.latitude 42362297 @@ -20374,7 +21766,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 426 this -510464020 +665188480 1 this.latitude 42362297 @@ -20390,16 +21782,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 424 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -20408,7 +21800,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -20424,16 +21816,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 427 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -20442,7 +21834,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -20455,7 +21847,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 428 this -525683462 +377478451 1 this.latitude 42362297 @@ -20468,7 +21860,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 428 this -525683462 +377478451 1 this.latitude 42362297 @@ -20484,7 +21876,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 429 this -1766724936 +513169028 1 this.latitude 42361797 @@ -20497,7 +21889,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 429 this -1766724936 +513169028 1 this.latitude 42361797 @@ -20513,16 +21905,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 427 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -20531,7 +21923,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -20557,7 +21949,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 430 this -648680157 +990416209 1 this.latitude 42362297 @@ -20586,7 +21978,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 431 this -1071097621 +394714818 1 this.latitude 42362597 @@ -20605,13 +21997,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 432 name -1897871865 +1952779858 1 name.toString "Main_St" 1 p1 -648680157 +990416209 1 p1.latitude 42362297 @@ -20620,7 +22012,7 @@ p1.longitude -71084396 1 p2 -1071097621 +394714818 1 p2.latitude 42362597 @@ -20633,7 +22025,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 433 this -648680157 +990416209 1 this.latitude 42362297 @@ -20642,7 +22034,7 @@ this.longitude -71084396 1 o -1071097621 +394714818 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -20652,7 +22044,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 433 this -648680157 +990416209 1 this.latitude 42362297 @@ -20661,7 +22053,7 @@ this.longitude -71084396 1 o -1071097621 +394714818 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -20674,16 +22066,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 432 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -20692,7 +22084,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -20701,13 +22093,13 @@ this.p2.longitude -71088496 1 name -1897871865 +1952779858 1 name.toString "Main_St" 1 p1 -648680157 +990416209 1 p1.latitude 42362297 @@ -20716,7 +22108,7 @@ p1.longitude -71084396 1 p2 -1071097621 +394714818 1 p2.latitude 42362597 @@ -20729,16 +22121,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 434 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -20747,7 +22139,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -20760,7 +22152,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 435 this -648680157 +990416209 1 this.latitude 42362297 @@ -20773,7 +22165,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 435 this -648680157 +990416209 1 this.latitude 42362297 @@ -20789,7 +22181,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 436 this -1071097621 +394714818 1 this.latitude 42362597 @@ -20802,7 +22194,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 436 this -1071097621 +394714818 1 this.latitude 42362597 @@ -20818,16 +22210,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 434 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -20836,7 +22228,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -20852,16 +22244,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 437 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -20870,7 +22262,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -20883,7 +22275,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 438 this -488044861 +143110009 1 this.latitude 42361797 @@ -20896,7 +22288,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 438 this -488044861 +143110009 1 this.latitude 42361797 @@ -20912,7 +22304,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 439 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -20925,7 +22317,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 439 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -20941,16 +22333,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 437 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -20959,7 +22351,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -20975,16 +22367,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 440 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -20993,7 +22385,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -21006,7 +22398,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 441 this -1241276575 +706197430 1 this.latitude 42360097 @@ -21019,7 +22411,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 441 this -1241276575 +706197430 1 this.latitude 42360097 @@ -21035,7 +22427,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 442 this -215145189 +1325808650 1 this.latitude 42361797 @@ -21048,7 +22440,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 442 this -215145189 +1325808650 1 this.latitude 42361797 @@ -21064,16 +22456,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 440 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -21082,7 +22474,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -21098,16 +22490,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 443 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -21116,7 +22508,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -21129,7 +22521,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 444 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -21142,7 +22534,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 444 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -21158,7 +22550,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 445 this -2042495840 +525683462 1 this.latitude 42358941 @@ -21171,7 +22563,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 445 this -2042495840 +525683462 1 this.latitude 42358941 @@ -21187,16 +22579,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 443 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -21205,7 +22597,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -21221,16 +22613,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 446 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -21239,7 +22631,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -21252,7 +22644,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 447 this -990398217 +319977154 1 this.latitude 42358941 @@ -21265,7 +22657,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 447 this -990398217 +319977154 1 this.latitude 42358941 @@ -21281,7 +22673,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 448 this -841283083 +648680157 1 this.latitude 42360097 @@ -21294,7 +22686,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 448 this -841283083 +648680157 1 this.latitude 42360097 @@ -21310,16 +22702,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 446 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -21328,7 +22720,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -21344,16 +22736,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 449 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -21362,7 +22754,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -21375,7 +22767,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 450 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -21388,7 +22780,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 450 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -21404,7 +22796,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 451 this -1924582348 +133250414 1 this.latitude 42357097 @@ -21417,7 +22809,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 451 this -1924582348 +133250414 1 this.latitude 42357097 @@ -21433,16 +22825,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 449 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -21451,7 +22843,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -21467,16 +22859,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 452 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -21485,7 +22877,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -21498,7 +22890,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 453 this -817406040 +603650290 1 this.latitude 42357097 @@ -21511,7 +22903,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 453 this -817406040 +603650290 1 this.latitude 42357097 @@ -21527,7 +22919,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 454 this -1955915048 +762227630 1 this.latitude 42358941 @@ -21540,7 +22932,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 454 this -1955915048 +762227630 1 this.latitude 42358941 @@ -21556,16 +22948,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 452 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -21574,7 +22966,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -21590,16 +22982,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 455 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -21608,7 +23000,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -21621,7 +23013,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 456 this -157683534 +280744458 1 this.latitude 42357097 @@ -21634,7 +23026,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 456 this -157683534 +280744458 1 this.latitude 42357097 @@ -21650,7 +23042,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 457 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -21663,7 +23055,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 457 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -21679,16 +23071,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 455 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -21697,7 +23089,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -21713,16 +23105,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 458 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -21731,7 +23123,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -21744,7 +23136,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 459 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -21757,7 +23149,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 459 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -21773,7 +23165,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 460 this -2097514481 +527446182 1 this.latitude 42357097 @@ -21786,7 +23178,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 460 this -2097514481 +527446182 1 this.latitude 42357097 @@ -21802,16 +23194,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 458 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -21820,7 +23212,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -21836,16 +23228,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 461 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -21854,7 +23246,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -21867,7 +23259,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 462 this -1325808650 +961419791 1 this.latitude 42361797 @@ -21880,7 +23272,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 462 this -1325808650 +961419791 1 this.latitude 42361797 @@ -21896,7 +23288,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 463 this -510464020 +665188480 1 this.latitude 42362297 @@ -21909,7 +23301,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 463 this -510464020 +665188480 1 this.latitude 42362297 @@ -21925,16 +23317,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 461 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -21943,7 +23335,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -21959,16 +23351,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 464 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -21977,7 +23369,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -21990,7 +23382,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 465 this -525683462 +377478451 1 this.latitude 42362297 @@ -22003,7 +23395,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 465 this -525683462 +377478451 1 this.latitude 42362297 @@ -22019,7 +23411,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 466 this -1766724936 +513169028 1 this.latitude 42361797 @@ -22032,7 +23424,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 466 this -1766724936 +513169028 1 this.latitude 42361797 @@ -22048,16 +23440,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 464 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -22066,7 +23458,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -22082,16 +23474,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 467 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -22100,7 +23492,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -22113,7 +23505,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 468 this -648680157 +990416209 1 this.latitude 42362297 @@ -22126,7 +23518,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 468 this -648680157 +990416209 1 this.latitude 42362297 @@ -22142,7 +23534,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 469 this -1071097621 +394714818 1 this.latitude 42362597 @@ -22155,7 +23547,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 469 this -1071097621 +394714818 1 this.latitude 42362597 @@ -22171,16 +23563,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 467 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -22189,7 +23581,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -22205,16 +23597,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 470 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -22223,7 +23615,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -22236,7 +23628,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 471 this -648680157 +990416209 1 this.latitude 42362297 @@ -22249,7 +23641,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 471 this -648680157 +990416209 1 this.latitude 42362297 @@ -22265,7 +23657,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 472 this -1071097621 +394714818 1 this.latitude 42362597 @@ -22278,7 +23670,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 472 this -1071097621 +394714818 1 this.latitude 42362597 @@ -22294,16 +23686,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 470 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -22312,7 +23704,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -22328,16 +23720,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 473 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -22346,7 +23738,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -22359,7 +23751,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 474 this -488044861 +143110009 1 this.latitude 42361797 @@ -22372,7 +23764,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 474 this -488044861 +143110009 1 this.latitude 42361797 @@ -22388,7 +23780,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 475 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -22401,7 +23793,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 475 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -22417,16 +23809,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 473 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -22435,7 +23827,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -22451,16 +23843,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 476 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -22469,7 +23861,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -22482,7 +23874,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 477 this -1241276575 +706197430 1 this.latitude 42360097 @@ -22495,7 +23887,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 477 this -1241276575 +706197430 1 this.latitude 42360097 @@ -22511,7 +23903,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 478 this -215145189 +1325808650 1 this.latitude 42361797 @@ -22524,7 +23916,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 478 this -215145189 +1325808650 1 this.latitude 42361797 @@ -22540,16 +23932,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 476 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -22558,7 +23950,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -22574,16 +23966,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 479 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -22592,7 +23984,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -22605,7 +23997,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 480 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -22618,7 +24010,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 480 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -22634,7 +24026,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 481 this -2042495840 +525683462 1 this.latitude 42358941 @@ -22647,7 +24039,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 481 this -2042495840 +525683462 1 this.latitude 42358941 @@ -22663,16 +24055,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 479 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -22681,7 +24073,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -22697,16 +24089,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 482 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -22715,7 +24107,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -22728,7 +24120,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 483 this -990398217 +319977154 1 this.latitude 42358941 @@ -22741,7 +24133,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 483 this -990398217 +319977154 1 this.latitude 42358941 @@ -22757,7 +24149,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 484 this -841283083 +648680157 1 this.latitude 42360097 @@ -22770,7 +24162,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 484 this -841283083 +648680157 1 this.latitude 42360097 @@ -22786,16 +24178,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 482 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -22804,7 +24196,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -22820,16 +24212,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 485 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -22838,7 +24230,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -22851,7 +24243,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 486 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -22864,7 +24256,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 486 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -22880,7 +24272,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 487 this -1924582348 +133250414 1 this.latitude 42357097 @@ -22893,7 +24285,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 487 this -1924582348 +133250414 1 this.latitude 42357097 @@ -22909,16 +24301,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 485 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -22927,7 +24319,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -22943,16 +24335,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 488 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -22961,7 +24353,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -22974,7 +24366,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 489 this -817406040 +603650290 1 this.latitude 42357097 @@ -22987,7 +24379,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 489 this -817406040 +603650290 1 this.latitude 42357097 @@ -23003,7 +24395,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 490 this -1955915048 +762227630 1 this.latitude 42358941 @@ -23016,7 +24408,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 490 this -1955915048 +762227630 1 this.latitude 42358941 @@ -23032,16 +24424,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 488 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -23050,7 +24442,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -23066,16 +24458,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 491 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -23084,7 +24476,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -23097,7 +24489,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 492 this -157683534 +280744458 1 this.latitude 42357097 @@ -23110,7 +24502,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 492 this -157683534 +280744458 1 this.latitude 42357097 @@ -23126,7 +24518,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 493 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -23139,7 +24531,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 493 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -23155,16 +24547,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 491 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -23173,7 +24565,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -23189,16 +24581,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 494 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -23207,7 +24599,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -23220,7 +24612,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 495 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -23233,7 +24625,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 495 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -23249,7 +24641,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 496 this -2097514481 +527446182 1 this.latitude 42357097 @@ -23262,7 +24654,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 496 this -2097514481 +527446182 1 this.latitude 42357097 @@ -23278,16 +24670,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 494 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -23296,7 +24688,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -23312,16 +24704,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 497 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -23330,7 +24722,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -23343,7 +24735,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 498 this -1325808650 +961419791 1 this.latitude 42361797 @@ -23356,7 +24748,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 498 this -1325808650 +961419791 1 this.latitude 42361797 @@ -23372,7 +24764,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 499 this -510464020 +665188480 1 this.latitude 42362297 @@ -23385,7 +24777,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 499 this -510464020 +665188480 1 this.latitude 42362297 @@ -23401,16 +24793,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 497 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -23419,7 +24811,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -23435,16 +24827,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 500 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -23453,7 +24845,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -23466,7 +24858,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 501 this -525683462 +377478451 1 this.latitude 42362297 @@ -23479,7 +24871,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 501 this -525683462 +377478451 1 this.latitude 42362297 @@ -23495,7 +24887,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 502 this -1766724936 +513169028 1 this.latitude 42361797 @@ -23508,7 +24900,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 502 this -1766724936 +513169028 1 this.latitude 42361797 @@ -23524,16 +24916,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 500 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -23542,7 +24934,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -23558,16 +24950,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 503 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -23576,7 +24968,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -23589,7 +24981,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 504 this -648680157 +990416209 1 this.latitude 42362297 @@ -23602,7 +24994,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 504 this -648680157 +990416209 1 this.latitude 42362297 @@ -23618,7 +25010,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 505 this -1071097621 +394714818 1 this.latitude 42362597 @@ -23631,7 +25023,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 505 this -1071097621 +394714818 1 this.latitude 42362597 @@ -23647,16 +25039,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 503 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -23665,7 +25057,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -23691,7 +25083,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 506 this -133250414 +1791868405 1 this.latitude 42362597 @@ -23720,7 +25112,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 507 this -85777802 +1260134048 1 this.latitude 42362297 @@ -23739,13 +25131,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 508 name -222624801 +391618063 1 name.toString "Main_St" 1 p1 -133250414 +1791868405 1 p1.latitude 42362597 @@ -23754,7 +25146,7 @@ p1.longitude -71088496 1 p2 -85777802 +1260134048 1 p2.latitude 42362297 @@ -23767,7 +25159,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 509 this -133250414 +1791868405 1 this.latitude 42362597 @@ -23776,7 +25168,7 @@ this.longitude -71088496 1 o -85777802 +1260134048 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -23786,7 +25178,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 509 this -133250414 +1791868405 1 this.latitude 42362597 @@ -23795,7 +25187,7 @@ this.longitude -71088496 1 o -85777802 +1260134048 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -23808,16 +25200,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 508 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -23826,7 +25218,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -23835,13 +25227,13 @@ this.p2.longitude -71084396 1 name -222624801 +391618063 1 name.toString "Main_St" 1 p1 -133250414 +1791868405 1 p1.latitude 42362597 @@ -23850,7 +25242,7 @@ p1.longitude -71088496 1 p2 -85777802 +1260134048 1 p2.latitude 42362297 @@ -23863,16 +25255,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 510 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -23881,7 +25273,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -23894,7 +25286,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 511 this -133250414 +1791868405 1 this.latitude 42362597 @@ -23907,7 +25299,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 511 this -133250414 +1791868405 1 this.latitude 42362597 @@ -23923,7 +25315,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 512 this -85777802 +1260134048 1 this.latitude 42362297 @@ -23936,7 +25328,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 512 this -85777802 +1260134048 1 this.latitude 42362297 @@ -23952,16 +25344,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 510 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -23970,7 +25362,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -23986,16 +25378,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 513 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -24004,7 +25396,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -24017,7 +25409,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 514 this -488044861 +143110009 1 this.latitude 42361797 @@ -24030,7 +25422,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 514 this -488044861 +143110009 1 this.latitude 42361797 @@ -24046,7 +25438,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 515 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -24059,7 +25451,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 515 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -24075,16 +25467,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 513 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -24093,7 +25485,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -24109,16 +25501,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 516 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -24127,7 +25519,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -24140,7 +25532,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 517 this -1241276575 +706197430 1 this.latitude 42360097 @@ -24153,7 +25545,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 517 this -1241276575 +706197430 1 this.latitude 42360097 @@ -24169,7 +25561,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 518 this -215145189 +1325808650 1 this.latitude 42361797 @@ -24182,7 +25574,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 518 this -215145189 +1325808650 1 this.latitude 42361797 @@ -24198,16 +25590,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 516 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -24216,7 +25608,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -24232,16 +25624,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 519 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -24250,7 +25642,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -24263,7 +25655,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 520 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -24276,7 +25668,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 520 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -24292,7 +25684,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 521 this -2042495840 +525683462 1 this.latitude 42358941 @@ -24305,7 +25697,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 521 this -2042495840 +525683462 1 this.latitude 42358941 @@ -24321,16 +25713,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 519 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -24339,7 +25731,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -24355,16 +25747,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 522 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -24373,7 +25765,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -24386,7 +25778,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 523 this -990398217 +319977154 1 this.latitude 42358941 @@ -24399,7 +25791,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 523 this -990398217 +319977154 1 this.latitude 42358941 @@ -24415,7 +25807,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 524 this -841283083 +648680157 1 this.latitude 42360097 @@ -24428,7 +25820,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 524 this -841283083 +648680157 1 this.latitude 42360097 @@ -24444,16 +25836,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 522 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -24462,7 +25854,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -24478,16 +25870,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 525 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -24496,7 +25888,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -24509,7 +25901,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 526 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -24522,7 +25914,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 526 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -24538,7 +25930,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 527 this -1924582348 +133250414 1 this.latitude 42357097 @@ -24551,7 +25943,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 527 this -1924582348 +133250414 1 this.latitude 42357097 @@ -24567,16 +25959,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 525 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -24585,7 +25977,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -24601,16 +25993,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 528 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -24619,7 +26011,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -24632,7 +26024,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 529 this -817406040 +603650290 1 this.latitude 42357097 @@ -24645,7 +26037,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 529 this -817406040 +603650290 1 this.latitude 42357097 @@ -24661,7 +26053,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 530 this -1955915048 +762227630 1 this.latitude 42358941 @@ -24674,7 +26066,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 530 this -1955915048 +762227630 1 this.latitude 42358941 @@ -24690,16 +26082,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 528 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -24708,7 +26100,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -24724,16 +26116,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 531 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -24742,7 +26134,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -24755,7 +26147,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 532 this -157683534 +280744458 1 this.latitude 42357097 @@ -24768,7 +26160,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 532 this -157683534 +280744458 1 this.latitude 42357097 @@ -24784,7 +26176,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 533 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -24797,7 +26189,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 533 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -24813,16 +26205,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 531 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -24831,7 +26223,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -24847,16 +26239,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 534 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -24865,7 +26257,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -24878,7 +26270,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 535 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -24891,7 +26283,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 535 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -24907,7 +26299,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 536 this -2097514481 +527446182 1 this.latitude 42357097 @@ -24920,7 +26312,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 536 this -2097514481 +527446182 1 this.latitude 42357097 @@ -24936,16 +26328,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 534 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -24954,7 +26346,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -24970,16 +26362,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 537 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -24988,7 +26380,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -25001,7 +26393,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 538 this -1325808650 +961419791 1 this.latitude 42361797 @@ -25014,7 +26406,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 538 this -1325808650 +961419791 1 this.latitude 42361797 @@ -25030,7 +26422,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 539 this -510464020 +665188480 1 this.latitude 42362297 @@ -25043,7 +26435,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 539 this -510464020 +665188480 1 this.latitude 42362297 @@ -25059,16 +26451,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 537 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -25077,7 +26469,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -25093,16 +26485,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 540 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -25111,7 +26503,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -25124,7 +26516,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 541 this -525683462 +377478451 1 this.latitude 42362297 @@ -25137,7 +26529,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 541 this -525683462 +377478451 1 this.latitude 42362297 @@ -25153,7 +26545,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 542 this -1766724936 +513169028 1 this.latitude 42361797 @@ -25166,7 +26558,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 542 this -1766724936 +513169028 1 this.latitude 42361797 @@ -25182,16 +26574,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 540 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -25200,7 +26592,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -25216,16 +26608,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 543 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -25234,7 +26626,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -25247,7 +26639,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 544 this -648680157 +990416209 1 this.latitude 42362297 @@ -25260,7 +26652,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 544 this -648680157 +990416209 1 this.latitude 42362297 @@ -25276,7 +26668,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 545 this -1071097621 +394714818 1 this.latitude 42362597 @@ -25289,7 +26681,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 545 this -1071097621 +394714818 1 this.latitude 42362597 @@ -25305,16 +26697,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 543 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -25323,7 +26715,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -25339,16 +26731,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 546 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -25357,7 +26749,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -25370,7 +26762,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 547 this -133250414 +1791868405 1 this.latitude 42362597 @@ -25383,7 +26775,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 547 this -133250414 +1791868405 1 this.latitude 42362597 @@ -25399,7 +26791,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 548 this -85777802 +1260134048 1 this.latitude 42362297 @@ -25412,7 +26804,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 548 this -85777802 +1260134048 1 this.latitude 42362297 @@ -25428,16 +26820,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 546 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -25446,7 +26838,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -25462,16 +26854,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 549 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -25480,7 +26872,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -25493,7 +26885,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 550 this -133250414 +1791868405 1 this.latitude 42362597 @@ -25506,7 +26898,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 550 this -133250414 +1791868405 1 this.latitude 42362597 @@ -25522,7 +26914,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 551 this -85777802 +1260134048 1 this.latitude 42362297 @@ -25535,7 +26927,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 551 this -85777802 +1260134048 1 this.latitude 42362297 @@ -25551,16 +26943,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 549 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -25569,7 +26961,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -25585,16 +26977,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 552 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -25603,7 +26995,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -25616,7 +27008,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 553 this -488044861 +143110009 1 this.latitude 42361797 @@ -25629,7 +27021,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 553 this -488044861 +143110009 1 this.latitude 42361797 @@ -25645,7 +27037,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 554 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -25658,7 +27050,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 554 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -25674,16 +27066,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 552 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -25692,7 +27084,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -25708,16 +27100,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 555 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -25726,7 +27118,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -25739,7 +27131,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 556 this -1241276575 +706197430 1 this.latitude 42360097 @@ -25752,7 +27144,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 556 this -1241276575 +706197430 1 this.latitude 42360097 @@ -25768,7 +27160,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 557 this -215145189 +1325808650 1 this.latitude 42361797 @@ -25781,7 +27173,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 557 this -215145189 +1325808650 1 this.latitude 42361797 @@ -25797,16 +27189,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 555 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -25815,7 +27207,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -25831,16 +27223,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 558 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -25849,7 +27241,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -25862,7 +27254,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 559 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -25875,7 +27267,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 559 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -25891,7 +27283,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 560 this -2042495840 +525683462 1 this.latitude 42358941 @@ -25904,7 +27296,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 560 this -2042495840 +525683462 1 this.latitude 42358941 @@ -25920,16 +27312,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 558 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -25938,7 +27330,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -25954,16 +27346,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 561 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -25972,7 +27364,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -25985,7 +27377,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 562 this -990398217 +319977154 1 this.latitude 42358941 @@ -25998,7 +27390,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 562 this -990398217 +319977154 1 this.latitude 42358941 @@ -26014,7 +27406,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 563 this -841283083 +648680157 1 this.latitude 42360097 @@ -26027,7 +27419,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 563 this -841283083 +648680157 1 this.latitude 42360097 @@ -26043,16 +27435,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 561 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -26061,7 +27453,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -26077,16 +27469,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 564 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -26095,7 +27487,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -26108,7 +27500,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 565 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -26121,7 +27513,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 565 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -26137,7 +27529,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 566 this -1924582348 +133250414 1 this.latitude 42357097 @@ -26150,7 +27542,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 566 this -1924582348 +133250414 1 this.latitude 42357097 @@ -26166,16 +27558,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 564 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -26184,7 +27576,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -26200,16 +27592,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 567 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -26218,7 +27610,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -26231,7 +27623,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 568 this -817406040 +603650290 1 this.latitude 42357097 @@ -26244,7 +27636,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 568 this -817406040 +603650290 1 this.latitude 42357097 @@ -26260,7 +27652,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 569 this -1955915048 +762227630 1 this.latitude 42358941 @@ -26273,7 +27665,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 569 this -1955915048 +762227630 1 this.latitude 42358941 @@ -26289,16 +27681,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 567 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -26307,7 +27699,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -26323,16 +27715,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 570 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -26341,7 +27733,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -26354,7 +27746,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 571 this -157683534 +280744458 1 this.latitude 42357097 @@ -26367,7 +27759,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 571 this -157683534 +280744458 1 this.latitude 42357097 @@ -26383,7 +27775,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 572 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -26396,7 +27788,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 572 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -26412,16 +27804,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 570 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -26430,7 +27822,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -26446,16 +27838,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 573 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -26464,7 +27856,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -26477,7 +27869,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 574 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -26490,7 +27882,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 574 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -26506,7 +27898,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 575 this -2097514481 +527446182 1 this.latitude 42357097 @@ -26519,7 +27911,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 575 this -2097514481 +527446182 1 this.latitude 42357097 @@ -26535,16 +27927,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 573 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -26553,7 +27945,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -26569,16 +27961,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 576 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -26587,7 +27979,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -26600,7 +27992,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 577 this -1325808650 +961419791 1 this.latitude 42361797 @@ -26613,7 +28005,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 577 this -1325808650 +961419791 1 this.latitude 42361797 @@ -26629,7 +28021,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 578 this -510464020 +665188480 1 this.latitude 42362297 @@ -26642,7 +28034,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 578 this -510464020 +665188480 1 this.latitude 42362297 @@ -26658,16 +28050,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 576 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -26676,7 +28068,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -26692,16 +28084,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 579 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -26710,7 +28102,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -26723,7 +28115,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 580 this -525683462 +377478451 1 this.latitude 42362297 @@ -26736,7 +28128,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 580 this -525683462 +377478451 1 this.latitude 42362297 @@ -26752,7 +28144,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 581 this -1766724936 +513169028 1 this.latitude 42361797 @@ -26765,7 +28157,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 581 this -1766724936 +513169028 1 this.latitude 42361797 @@ -26781,16 +28173,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 579 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -26799,7 +28191,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -26815,16 +28207,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 582 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -26833,7 +28225,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -26846,7 +28238,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 583 this -648680157 +990416209 1 this.latitude 42362297 @@ -26859,7 +28251,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 583 this -648680157 +990416209 1 this.latitude 42362297 @@ -26875,7 +28267,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 584 this -1071097621 +394714818 1 this.latitude 42362597 @@ -26888,7 +28280,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 584 this -1071097621 +394714818 1 this.latitude 42362597 @@ -26904,16 +28296,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 582 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -26922,7 +28314,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -26938,16 +28330,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 585 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -26956,7 +28348,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -26969,7 +28361,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 586 this -133250414 +1791868405 1 this.latitude 42362597 @@ -26982,7 +28374,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 586 this -133250414 +1791868405 1 this.latitude 42362597 @@ -26998,7 +28390,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 587 this -85777802 +1260134048 1 this.latitude 42362297 @@ -27011,7 +28403,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 587 this -85777802 +1260134048 1 this.latitude 42362297 @@ -27027,16 +28419,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 585 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -27045,7 +28437,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -27071,7 +28463,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 588 this -762227630 +57748372 1 this.latitude 42362597 @@ -27100,7 +28492,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 589 this -1316864772 +674483268 1 this.latitude 42362697 @@ -27119,13 +28511,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 590 name -1685232414 +54495403 1 name.toString "Main_St" 1 p1 -762227630 +57748372 1 p1.latitude 42362597 @@ -27134,7 +28526,7 @@ p1.longitude -71088496 1 p2 -1316864772 +674483268 1 p2.latitude 42362697 @@ -27147,7 +28539,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 591 this -762227630 +57748372 1 this.latitude 42362597 @@ -27156,7 +28548,7 @@ this.longitude -71088496 1 o -1316864772 +674483268 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -27166,7 +28558,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 591 this -762227630 +57748372 1 this.latitude 42362597 @@ -27175,7 +28567,7 @@ this.longitude -71088496 1 o -1316864772 +674483268 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -27188,16 +28580,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 590 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -27206,7 +28598,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -27215,13 +28607,13 @@ this.p2.longitude -71090996 1 name -1685232414 +54495403 1 name.toString "Main_St" 1 p1 -762227630 +57748372 1 p1.latitude 42362597 @@ -27230,7 +28622,7 @@ p1.longitude -71088496 1 p2 -1316864772 +674483268 1 p2.latitude 42362697 @@ -27243,16 +28635,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 592 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -27261,7 +28653,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -27274,7 +28666,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 593 this -762227630 +57748372 1 this.latitude 42362597 @@ -27287,7 +28679,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 593 this -762227630 +57748372 1 this.latitude 42362597 @@ -27303,7 +28695,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 594 this -1316864772 +674483268 1 this.latitude 42362697 @@ -27316,7 +28708,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 594 this -1316864772 +674483268 1 this.latitude 42362697 @@ -27332,16 +28724,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 592 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -27350,7 +28742,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -27366,16 +28758,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 595 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -27384,7 +28776,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -27397,7 +28789,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 596 this -488044861 +143110009 1 this.latitude 42361797 @@ -27410,7 +28802,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 596 this -488044861 +143110009 1 this.latitude 42361797 @@ -27426,7 +28818,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 597 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -27439,7 +28831,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 597 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -27455,16 +28847,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 595 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -27473,7 +28865,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -27489,16 +28881,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 598 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -27507,7 +28899,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -27520,7 +28912,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 599 this -1241276575 +706197430 1 this.latitude 42360097 @@ -27533,7 +28925,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 599 this -1241276575 +706197430 1 this.latitude 42360097 @@ -27549,7 +28941,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 600 this -215145189 +1325808650 1 this.latitude 42361797 @@ -27562,7 +28954,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 600 this -215145189 +1325808650 1 this.latitude 42361797 @@ -27578,16 +28970,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 598 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -27596,7 +28988,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -27612,16 +29004,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 601 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -27630,7 +29022,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -27643,7 +29035,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 602 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -27656,7 +29048,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 602 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -27672,7 +29064,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 603 this -2042495840 +525683462 1 this.latitude 42358941 @@ -27685,7 +29077,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 603 this -2042495840 +525683462 1 this.latitude 42358941 @@ -27701,16 +29093,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 601 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -27719,7 +29111,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -27735,16 +29127,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 604 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -27753,7 +29145,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -27766,7 +29158,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 605 this -990398217 +319977154 1 this.latitude 42358941 @@ -27779,7 +29171,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 605 this -990398217 +319977154 1 this.latitude 42358941 @@ -27795,7 +29187,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 606 this -841283083 +648680157 1 this.latitude 42360097 @@ -27808,7 +29200,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 606 this -841283083 +648680157 1 this.latitude 42360097 @@ -27824,16 +29216,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 604 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -27842,7 +29234,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -27858,16 +29250,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 607 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -27876,7 +29268,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -27889,7 +29281,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 608 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -27902,7 +29294,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 608 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -27918,7 +29310,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 609 this -1924582348 +133250414 1 this.latitude 42357097 @@ -27931,7 +29323,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 609 this -1924582348 +133250414 1 this.latitude 42357097 @@ -27947,16 +29339,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 607 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -27965,7 +29357,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -27981,16 +29373,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 610 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -27999,7 +29391,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -28012,7 +29404,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 611 this -817406040 +603650290 1 this.latitude 42357097 @@ -28025,7 +29417,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 611 this -817406040 +603650290 1 this.latitude 42357097 @@ -28041,7 +29433,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 612 this -1955915048 +762227630 1 this.latitude 42358941 @@ -28054,7 +29446,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 612 this -1955915048 +762227630 1 this.latitude 42358941 @@ -28070,16 +29462,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 610 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -28088,7 +29480,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -28104,16 +29496,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 613 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -28122,7 +29514,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -28135,7 +29527,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 614 this -157683534 +280744458 1 this.latitude 42357097 @@ -28148,7 +29540,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 614 this -157683534 +280744458 1 this.latitude 42357097 @@ -28164,7 +29556,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 615 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -28177,7 +29569,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 615 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -28193,16 +29585,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 613 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -28211,7 +29603,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -28227,16 +29619,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 616 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -28245,7 +29637,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -28258,7 +29650,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 617 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -28271,7 +29663,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 617 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -28287,7 +29679,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 618 this -2097514481 +527446182 1 this.latitude 42357097 @@ -28300,7 +29692,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 618 this -2097514481 +527446182 1 this.latitude 42357097 @@ -28316,16 +29708,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 616 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -28334,7 +29726,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -28350,16 +29742,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 619 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -28368,7 +29760,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -28381,7 +29773,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 620 this -1325808650 +961419791 1 this.latitude 42361797 @@ -28394,7 +29786,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 620 this -1325808650 +961419791 1 this.latitude 42361797 @@ -28410,7 +29802,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 621 this -510464020 +665188480 1 this.latitude 42362297 @@ -28423,7 +29815,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 621 this -510464020 +665188480 1 this.latitude 42362297 @@ -28439,16 +29831,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 619 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -28457,7 +29849,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -28473,16 +29865,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 622 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -28491,7 +29883,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -28504,7 +29896,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 623 this -525683462 +377478451 1 this.latitude 42362297 @@ -28517,7 +29909,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 623 this -525683462 +377478451 1 this.latitude 42362297 @@ -28533,7 +29925,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 624 this -1766724936 +513169028 1 this.latitude 42361797 @@ -28546,7 +29938,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 624 this -1766724936 +513169028 1 this.latitude 42361797 @@ -28562,16 +29954,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 622 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -28580,7 +29972,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -28596,16 +29988,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 625 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -28614,7 +30006,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -28627,7 +30019,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 626 this -648680157 +990416209 1 this.latitude 42362297 @@ -28640,7 +30032,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 626 this -648680157 +990416209 1 this.latitude 42362297 @@ -28656,7 +30048,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 627 this -1071097621 +394714818 1 this.latitude 42362597 @@ -28669,7 +30061,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 627 this -1071097621 +394714818 1 this.latitude 42362597 @@ -28685,16 +30077,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 625 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -28703,7 +30095,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -28719,16 +30111,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 628 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -28737,7 +30129,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -28750,7 +30142,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 629 this -133250414 +1791868405 1 this.latitude 42362597 @@ -28763,7 +30155,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 629 this -133250414 +1791868405 1 this.latitude 42362597 @@ -28779,7 +30171,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 630 this -85777802 +1260134048 1 this.latitude 42362297 @@ -28792,7 +30184,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 630 this -85777802 +1260134048 1 this.latitude 42362297 @@ -28808,16 +30200,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 628 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -28826,7 +30218,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -28842,16 +30234,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 631 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -28860,7 +30252,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -28873,7 +30265,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 632 this -762227630 +57748372 1 this.latitude 42362597 @@ -28886,7 +30278,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 632 this -762227630 +57748372 1 this.latitude 42362597 @@ -28902,7 +30294,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 633 this -1316864772 +674483268 1 this.latitude 42362697 @@ -28915,7 +30307,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 633 this -1316864772 +674483268 1 this.latitude 42362697 @@ -28931,16 +30323,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 631 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -28949,7 +30341,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -28965,16 +30357,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 634 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -28983,7 +30375,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -28996,7 +30388,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 635 this -762227630 +57748372 1 this.latitude 42362597 @@ -29009,7 +30401,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 635 this -762227630 +57748372 1 this.latitude 42362597 @@ -29025,7 +30417,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 636 this -1316864772 +674483268 1 this.latitude 42362697 @@ -29038,7 +30430,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 636 this -1316864772 +674483268 1 this.latitude 42362697 @@ -29054,16 +30446,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 634 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -29072,7 +30464,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -29088,16 +30480,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 637 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -29106,7 +30498,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -29119,7 +30511,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 638 this -488044861 +143110009 1 this.latitude 42361797 @@ -29132,7 +30524,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 638 this -488044861 +143110009 1 this.latitude 42361797 @@ -29148,7 +30540,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 639 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -29161,7 +30553,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 639 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -29177,16 +30569,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 637 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -29195,7 +30587,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -29211,16 +30603,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 640 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -29229,7 +30621,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -29242,7 +30634,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 641 this -1241276575 +706197430 1 this.latitude 42360097 @@ -29255,7 +30647,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 641 this -1241276575 +706197430 1 this.latitude 42360097 @@ -29271,7 +30663,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 642 this -215145189 +1325808650 1 this.latitude 42361797 @@ -29284,7 +30676,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 642 this -215145189 +1325808650 1 this.latitude 42361797 @@ -29300,16 +30692,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 640 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -29318,7 +30710,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -29334,16 +30726,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 643 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -29352,7 +30744,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -29365,7 +30757,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 644 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -29378,7 +30770,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 644 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -29394,7 +30786,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 645 this -2042495840 +525683462 1 this.latitude 42358941 @@ -29407,7 +30799,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 645 this -2042495840 +525683462 1 this.latitude 42358941 @@ -29423,16 +30815,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 643 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -29441,7 +30833,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -29457,16 +30849,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 646 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -29475,7 +30867,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -29488,7 +30880,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 647 this -990398217 +319977154 1 this.latitude 42358941 @@ -29501,7 +30893,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 647 this -990398217 +319977154 1 this.latitude 42358941 @@ -29517,7 +30909,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 648 this -841283083 +648680157 1 this.latitude 42360097 @@ -29530,7 +30922,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 648 this -841283083 +648680157 1 this.latitude 42360097 @@ -29546,16 +30938,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 646 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -29564,7 +30956,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -29580,16 +30972,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 649 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -29598,7 +30990,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -29611,7 +31003,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 650 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -29624,7 +31016,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 650 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -29640,7 +31032,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 651 this -1924582348 +133250414 1 this.latitude 42357097 @@ -29653,7 +31045,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 651 this -1924582348 +133250414 1 this.latitude 42357097 @@ -29669,16 +31061,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 649 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -29687,7 +31079,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -29703,16 +31095,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 652 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -29721,7 +31113,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -29734,7 +31126,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 653 this -817406040 +603650290 1 this.latitude 42357097 @@ -29747,7 +31139,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 653 this -817406040 +603650290 1 this.latitude 42357097 @@ -29763,7 +31155,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 654 this -1955915048 +762227630 1 this.latitude 42358941 @@ -29776,7 +31168,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 654 this -1955915048 +762227630 1 this.latitude 42358941 @@ -29792,16 +31184,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 652 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -29810,7 +31202,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -29826,16 +31218,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 655 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -29844,7 +31236,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -29857,7 +31249,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 656 this -157683534 +280744458 1 this.latitude 42357097 @@ -29870,7 +31262,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 656 this -157683534 +280744458 1 this.latitude 42357097 @@ -29886,7 +31278,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 657 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -29899,7 +31291,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 657 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -29915,16 +31307,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 655 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -29933,7 +31325,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -29949,16 +31341,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 658 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -29967,7 +31359,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -29980,7 +31372,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 659 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -29993,7 +31385,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 659 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -30009,7 +31401,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 660 this -2097514481 +527446182 1 this.latitude 42357097 @@ -30022,7 +31414,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 660 this -2097514481 +527446182 1 this.latitude 42357097 @@ -30038,16 +31430,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 658 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -30056,7 +31448,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -30072,16 +31464,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 661 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -30090,7 +31482,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -30103,7 +31495,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 662 this -1325808650 +961419791 1 this.latitude 42361797 @@ -30116,7 +31508,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 662 this -1325808650 +961419791 1 this.latitude 42361797 @@ -30132,7 +31524,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 663 this -510464020 +665188480 1 this.latitude 42362297 @@ -30145,7 +31537,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 663 this -510464020 +665188480 1 this.latitude 42362297 @@ -30161,16 +31553,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 661 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -30179,7 +31571,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -30195,16 +31587,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 664 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -30213,7 +31605,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -30226,7 +31618,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 665 this -525683462 +377478451 1 this.latitude 42362297 @@ -30239,7 +31631,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 665 this -525683462 +377478451 1 this.latitude 42362297 @@ -30255,7 +31647,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 666 this -1766724936 +513169028 1 this.latitude 42361797 @@ -30268,7 +31660,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 666 this -1766724936 +513169028 1 this.latitude 42361797 @@ -30284,16 +31676,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 664 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -30302,7 +31694,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -30318,16 +31710,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 667 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -30336,7 +31728,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -30349,7 +31741,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 668 this -648680157 +990416209 1 this.latitude 42362297 @@ -30362,7 +31754,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 668 this -648680157 +990416209 1 this.latitude 42362297 @@ -30378,7 +31770,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 669 this -1071097621 +394714818 1 this.latitude 42362597 @@ -30391,7 +31783,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 669 this -1071097621 +394714818 1 this.latitude 42362597 @@ -30407,16 +31799,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 667 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -30425,7 +31817,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -30441,16 +31833,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 670 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -30459,7 +31851,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -30472,7 +31864,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 671 this -133250414 +1791868405 1 this.latitude 42362597 @@ -30485,7 +31877,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 671 this -133250414 +1791868405 1 this.latitude 42362597 @@ -30501,7 +31893,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 672 this -85777802 +1260134048 1 this.latitude 42362297 @@ -30514,7 +31906,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 672 this -85777802 +1260134048 1 this.latitude 42362297 @@ -30530,16 +31922,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 670 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -30548,7 +31940,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -30564,16 +31956,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 673 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -30582,7 +31974,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -30595,7 +31987,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 674 this -762227630 +57748372 1 this.latitude 42362597 @@ -30608,7 +32000,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 674 this -762227630 +57748372 1 this.latitude 42362597 @@ -30624,7 +32016,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 675 this -1316864772 +674483268 1 this.latitude 42362697 @@ -30637,7 +32029,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 675 this -1316864772 +674483268 1 this.latitude 42362697 @@ -30653,16 +32045,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 673 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -30671,7 +32063,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -30697,7 +32089,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 676 this -1213216872 +764372388 1 this.latitude 42362697 @@ -30726,7 +32118,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 677 this -1754638213 +459857341 1 this.latitude 42362597 @@ -30745,13 +32137,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 678 name -407858146 +1684890795 1 name.toString "Main_St" 1 p1 -1213216872 +764372388 1 p1.latitude 42362697 @@ -30760,7 +32152,7 @@ p1.longitude -71090996 1 p2 -1754638213 +459857341 1 p2.latitude 42362597 @@ -30773,7 +32165,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 679 this -1213216872 +764372388 1 this.latitude 42362697 @@ -30782,7 +32174,7 @@ this.longitude -71090996 1 o -1754638213 +459857341 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -30792,7 +32184,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 679 this -1213216872 +764372388 1 this.latitude 42362697 @@ -30801,7 +32193,7 @@ this.longitude -71090996 1 o -1754638213 +459857341 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -30814,16 +32206,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 678 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -30832,7 +32224,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -30841,13 +32233,13 @@ this.p2.longitude -71088496 1 name -407858146 +1684890795 1 name.toString "Main_St" 1 p1 -1213216872 +764372388 1 p1.latitude 42362697 @@ -30856,7 +32248,7 @@ p1.longitude -71090996 1 p2 -1754638213 +459857341 1 p2.latitude 42362597 @@ -30869,16 +32261,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 680 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -30887,7 +32279,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -30900,7 +32292,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 681 this -1213216872 +764372388 1 this.latitude 42362697 @@ -30913,7 +32305,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 681 this -1213216872 +764372388 1 this.latitude 42362697 @@ -30929,7 +32321,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 682 this -1754638213 +459857341 1 this.latitude 42362597 @@ -30942,7 +32334,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 682 this -1754638213 +459857341 1 this.latitude 42362597 @@ -30958,16 +32350,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 680 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -30976,7 +32368,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -30992,16 +32384,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 683 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -31010,7 +32402,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -31023,7 +32415,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 684 this -488044861 +143110009 1 this.latitude 42361797 @@ -31036,7 +32428,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 684 this -488044861 +143110009 1 this.latitude 42361797 @@ -31052,7 +32444,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 685 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -31065,7 +32457,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 685 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -31081,16 +32473,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 683 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -31099,7 +32491,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -31115,16 +32507,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 686 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -31133,7 +32525,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -31146,7 +32538,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 687 this -1241276575 +706197430 1 this.latitude 42360097 @@ -31159,7 +32551,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 687 this -1241276575 +706197430 1 this.latitude 42360097 @@ -31175,7 +32567,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 688 this -215145189 +1325808650 1 this.latitude 42361797 @@ -31188,7 +32580,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 688 this -215145189 +1325808650 1 this.latitude 42361797 @@ -31204,16 +32596,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 686 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -31222,7 +32614,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -31238,16 +32630,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 689 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -31256,7 +32648,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -31269,7 +32661,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 690 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -31282,7 +32674,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 690 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -31298,7 +32690,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 691 this -2042495840 +525683462 1 this.latitude 42358941 @@ -31311,7 +32703,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 691 this -2042495840 +525683462 1 this.latitude 42358941 @@ -31327,16 +32719,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 689 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -31345,7 +32737,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -31361,16 +32753,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 692 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -31379,7 +32771,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -31392,7 +32784,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 693 this -990398217 +319977154 1 this.latitude 42358941 @@ -31405,7 +32797,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 693 this -990398217 +319977154 1 this.latitude 42358941 @@ -31421,7 +32813,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 694 this -841283083 +648680157 1 this.latitude 42360097 @@ -31434,7 +32826,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 694 this -841283083 +648680157 1 this.latitude 42360097 @@ -31450,16 +32842,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 692 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -31468,7 +32860,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -31484,16 +32876,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 695 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -31502,7 +32894,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -31515,7 +32907,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 696 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -31528,7 +32920,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 696 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -31544,7 +32936,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 697 this -1924582348 +133250414 1 this.latitude 42357097 @@ -31557,7 +32949,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 697 this -1924582348 +133250414 1 this.latitude 42357097 @@ -31573,16 +32965,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 695 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -31591,7 +32983,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -31607,16 +32999,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 698 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -31625,7 +33017,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -31638,7 +33030,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 699 this -817406040 +603650290 1 this.latitude 42357097 @@ -31651,7 +33043,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 699 this -817406040 +603650290 1 this.latitude 42357097 @@ -31667,7 +33059,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 700 this -1955915048 +762227630 1 this.latitude 42358941 @@ -31680,7 +33072,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 700 this -1955915048 +762227630 1 this.latitude 42358941 @@ -31696,16 +33088,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 698 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -31714,7 +33106,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -31730,16 +33122,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 701 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -31748,7 +33140,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -31761,7 +33153,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 702 this -157683534 +280744458 1 this.latitude 42357097 @@ -31774,7 +33166,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 702 this -157683534 +280744458 1 this.latitude 42357097 @@ -31790,7 +33182,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 703 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -31803,7 +33195,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 703 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -31819,16 +33211,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 701 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -31837,7 +33229,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -31853,16 +33245,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 704 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -31871,7 +33263,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -31884,7 +33276,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 705 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -31897,7 +33289,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 705 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -31913,7 +33305,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 706 this -2097514481 +527446182 1 this.latitude 42357097 @@ -31926,7 +33318,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 706 this -2097514481 +527446182 1 this.latitude 42357097 @@ -31942,16 +33334,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 704 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -31960,7 +33352,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -31976,16 +33368,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 707 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -31994,7 +33386,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -32007,7 +33399,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 708 this -1325808650 +961419791 1 this.latitude 42361797 @@ -32020,7 +33412,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 708 this -1325808650 +961419791 1 this.latitude 42361797 @@ -32036,7 +33428,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 709 this -510464020 +665188480 1 this.latitude 42362297 @@ -32049,7 +33441,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 709 this -510464020 +665188480 1 this.latitude 42362297 @@ -32065,16 +33457,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 707 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -32083,7 +33475,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -32099,16 +33491,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 710 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -32117,7 +33509,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -32130,7 +33522,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 711 this -525683462 +377478451 1 this.latitude 42362297 @@ -32143,7 +33535,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 711 this -525683462 +377478451 1 this.latitude 42362297 @@ -32159,7 +33551,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 712 this -1766724936 +513169028 1 this.latitude 42361797 @@ -32172,7 +33564,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 712 this -1766724936 +513169028 1 this.latitude 42361797 @@ -32188,16 +33580,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 710 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -32206,7 +33598,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -32222,16 +33614,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 713 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -32240,7 +33632,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -32253,7 +33645,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 714 this -648680157 +990416209 1 this.latitude 42362297 @@ -32266,7 +33658,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 714 this -648680157 +990416209 1 this.latitude 42362297 @@ -32282,7 +33674,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 715 this -1071097621 +394714818 1 this.latitude 42362597 @@ -32295,7 +33687,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 715 this -1071097621 +394714818 1 this.latitude 42362597 @@ -32311,16 +33703,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 713 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -32329,7 +33721,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -32345,16 +33737,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 716 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -32363,7 +33755,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -32376,7 +33768,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 717 this -133250414 +1791868405 1 this.latitude 42362597 @@ -32389,7 +33781,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 717 this -133250414 +1791868405 1 this.latitude 42362597 @@ -32405,7 +33797,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 718 this -85777802 +1260134048 1 this.latitude 42362297 @@ -32418,7 +33810,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 718 this -85777802 +1260134048 1 this.latitude 42362297 @@ -32434,16 +33826,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 716 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -32452,7 +33844,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -32468,16 +33860,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 719 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -32486,7 +33878,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -32499,7 +33891,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 720 this -762227630 +57748372 1 this.latitude 42362597 @@ -32512,7 +33904,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 720 this -762227630 +57748372 1 this.latitude 42362597 @@ -32528,7 +33920,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 721 this -1316864772 +674483268 1 this.latitude 42362697 @@ -32541,7 +33933,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 721 this -1316864772 +674483268 1 this.latitude 42362697 @@ -32557,16 +33949,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 719 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -32575,7 +33967,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -32591,16 +33983,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 722 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -32609,7 +34001,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -32622,7 +34014,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 723 this -1213216872 +764372388 1 this.latitude 42362697 @@ -32635,7 +34027,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 723 this -1213216872 +764372388 1 this.latitude 42362697 @@ -32651,7 +34043,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 724 this -1754638213 +459857341 1 this.latitude 42362597 @@ -32664,7 +34056,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 724 this -1754638213 +459857341 1 this.latitude 42362597 @@ -32680,16 +34072,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 722 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -32698,7 +34090,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -32714,16 +34106,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 725 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -32732,7 +34124,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -32745,7 +34137,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 726 this -1213216872 +764372388 1 this.latitude 42362697 @@ -32758,7 +34150,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 726 this -1213216872 +764372388 1 this.latitude 42362697 @@ -32774,7 +34166,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 727 this -1754638213 +459857341 1 this.latitude 42362597 @@ -32787,7 +34179,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 727 this -1754638213 +459857341 1 this.latitude 42362597 @@ -32803,16 +34195,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 725 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -32821,7 +34213,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -32837,16 +34229,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 728 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -32855,7 +34247,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -32868,7 +34260,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 729 this -488044861 +143110009 1 this.latitude 42361797 @@ -32881,7 +34273,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 729 this -488044861 +143110009 1 this.latitude 42361797 @@ -32897,7 +34289,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 730 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -32910,7 +34302,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 730 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -32926,16 +34318,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 728 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -32944,7 +34336,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -32960,16 +34352,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 731 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -32978,7 +34370,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -32991,7 +34383,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 732 this -1241276575 +706197430 1 this.latitude 42360097 @@ -33004,7 +34396,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 732 this -1241276575 +706197430 1 this.latitude 42360097 @@ -33020,7 +34412,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 733 this -215145189 +1325808650 1 this.latitude 42361797 @@ -33033,7 +34425,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 733 this -215145189 +1325808650 1 this.latitude 42361797 @@ -33049,16 +34441,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 731 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -33067,7 +34459,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -33083,16 +34475,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 734 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -33101,7 +34493,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -33114,7 +34506,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 735 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -33127,7 +34519,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 735 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -33143,7 +34535,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 736 this -2042495840 +525683462 1 this.latitude 42358941 @@ -33156,7 +34548,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 736 this -2042495840 +525683462 1 this.latitude 42358941 @@ -33172,16 +34564,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 734 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -33190,7 +34582,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -33206,16 +34598,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 737 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -33224,7 +34616,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -33237,7 +34629,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 738 this -990398217 +319977154 1 this.latitude 42358941 @@ -33250,7 +34642,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 738 this -990398217 +319977154 1 this.latitude 42358941 @@ -33266,7 +34658,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 739 this -841283083 +648680157 1 this.latitude 42360097 @@ -33279,7 +34671,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 739 this -841283083 +648680157 1 this.latitude 42360097 @@ -33295,16 +34687,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 737 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -33313,7 +34705,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -33329,16 +34721,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 740 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -33347,7 +34739,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -33360,7 +34752,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 741 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -33373,7 +34765,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 741 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -33389,7 +34781,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 742 this -1924582348 +133250414 1 this.latitude 42357097 @@ -33402,7 +34794,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 742 this -1924582348 +133250414 1 this.latitude 42357097 @@ -33418,16 +34810,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 740 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -33436,7 +34828,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -33452,16 +34844,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 743 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -33470,7 +34862,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -33483,7 +34875,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 744 this -817406040 +603650290 1 this.latitude 42357097 @@ -33496,7 +34888,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 744 this -817406040 +603650290 1 this.latitude 42357097 @@ -33512,7 +34904,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 745 this -1955915048 +762227630 1 this.latitude 42358941 @@ -33525,7 +34917,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 745 this -1955915048 +762227630 1 this.latitude 42358941 @@ -33541,16 +34933,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 743 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -33559,7 +34951,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -33575,16 +34967,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 746 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -33593,7 +34985,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -33606,7 +34998,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 747 this -157683534 +280744458 1 this.latitude 42357097 @@ -33619,7 +35011,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 747 this -157683534 +280744458 1 this.latitude 42357097 @@ -33635,7 +35027,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 748 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -33648,7 +35040,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 748 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -33664,16 +35056,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 746 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -33682,7 +35074,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -33698,16 +35090,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 749 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -33716,7 +35108,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -33729,7 +35121,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 750 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -33742,7 +35134,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 750 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -33758,7 +35150,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 751 this -2097514481 +527446182 1 this.latitude 42357097 @@ -33771,7 +35163,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 751 this -2097514481 +527446182 1 this.latitude 42357097 @@ -33787,16 +35179,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 749 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -33805,7 +35197,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -33821,16 +35213,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 752 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -33839,7 +35231,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -33852,7 +35244,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 753 this -1325808650 +961419791 1 this.latitude 42361797 @@ -33865,7 +35257,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 753 this -1325808650 +961419791 1 this.latitude 42361797 @@ -33881,7 +35273,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 754 this -510464020 +665188480 1 this.latitude 42362297 @@ -33894,7 +35286,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 754 this -510464020 +665188480 1 this.latitude 42362297 @@ -33910,16 +35302,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 752 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -33928,7 +35320,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -33944,16 +35336,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 755 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -33962,7 +35354,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -33975,7 +35367,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 756 this -525683462 +377478451 1 this.latitude 42362297 @@ -33988,7 +35380,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 756 this -525683462 +377478451 1 this.latitude 42362297 @@ -34004,7 +35396,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 757 this -1766724936 +513169028 1 this.latitude 42361797 @@ -34017,7 +35409,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 757 this -1766724936 +513169028 1 this.latitude 42361797 @@ -34033,16 +35425,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 755 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -34051,7 +35443,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -34067,16 +35459,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 758 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -34085,7 +35477,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -34098,7 +35490,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 759 this -648680157 +990416209 1 this.latitude 42362297 @@ -34111,7 +35503,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 759 this -648680157 +990416209 1 this.latitude 42362297 @@ -34127,7 +35519,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 760 this -1071097621 +394714818 1 this.latitude 42362597 @@ -34140,7 +35532,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 760 this -1071097621 +394714818 1 this.latitude 42362597 @@ -34156,16 +35548,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 758 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -34174,7 +35566,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -34190,16 +35582,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 761 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -34208,7 +35600,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -34221,7 +35613,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 762 this -133250414 +1791868405 1 this.latitude 42362597 @@ -34234,7 +35626,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 762 this -133250414 +1791868405 1 this.latitude 42362597 @@ -34250,7 +35642,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 763 this -85777802 +1260134048 1 this.latitude 42362297 @@ -34263,7 +35655,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 763 this -85777802 +1260134048 1 this.latitude 42362297 @@ -34279,16 +35671,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 761 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -34297,7 +35689,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -34313,16 +35705,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 764 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -34331,7 +35723,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -34344,7 +35736,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 765 this -762227630 +57748372 1 this.latitude 42362597 @@ -34357,7 +35749,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 765 this -762227630 +57748372 1 this.latitude 42362597 @@ -34373,7 +35765,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 766 this -1316864772 +674483268 1 this.latitude 42362697 @@ -34386,7 +35778,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 766 this -1316864772 +674483268 1 this.latitude 42362697 @@ -34402,16 +35794,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 764 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -34420,7 +35812,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -34436,16 +35828,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 767 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -34454,7 +35846,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -34467,7 +35859,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 768 this -1213216872 +764372388 1 this.latitude 42362697 @@ -34480,7 +35872,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 768 this -1213216872 +764372388 1 this.latitude 42362697 @@ -34496,7 +35888,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 769 this -1754638213 +459857341 1 this.latitude 42362597 @@ -34509,7 +35901,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 769 this -1754638213 +459857341 1 this.latitude 42362597 @@ -34525,16 +35917,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 767 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -34543,7 +35935,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -34569,7 +35961,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 770 this -527446182 +1399499405 1 this.latitude 42362697 @@ -34598,7 +35990,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 771 this -1511785794 +238157928 1 this.latitude 42362997 @@ -34617,13 +36009,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 772 name -963601816 +32863545 1 name.toString "Main_St" 1 p1 -527446182 +1399499405 1 p1.latitude 42362697 @@ -34632,7 +36024,7 @@ p1.longitude -71090996 1 p2 -1511785794 +238157928 1 p2.latitude 42362997 @@ -34645,7 +36037,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 773 this -527446182 +1399499405 1 this.latitude 42362697 @@ -34654,7 +36046,7 @@ this.longitude -71090996 1 o -1511785794 +238157928 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -34664,7 +36056,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 773 this -527446182 +1399499405 1 this.latitude 42362697 @@ -34673,7 +36065,7 @@ this.longitude -71090996 1 o -1511785794 +238157928 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -34686,16 +36078,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 772 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -34704,7 +36096,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -34713,13 +36105,13 @@ this.p2.longitude -71099696 1 name -963601816 +32863545 1 name.toString "Main_St" 1 p1 -527446182 +1399499405 1 p1.latitude 42362697 @@ -34728,7 +36120,7 @@ p1.longitude -71090996 1 p2 -1511785794 +238157928 1 p2.latitude 42362997 @@ -34741,16 +36133,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 774 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -34759,7 +36151,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -34772,7 +36164,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 775 this -527446182 +1399499405 1 this.latitude 42362697 @@ -34785,7 +36177,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 775 this -527446182 +1399499405 1 this.latitude 42362697 @@ -34801,7 +36193,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 776 this -1511785794 +238157928 1 this.latitude 42362997 @@ -34814,7 +36206,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 776 this -1511785794 +238157928 1 this.latitude 42362997 @@ -34830,16 +36222,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 774 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -34848,7 +36240,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -34864,16 +36256,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 777 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -34882,7 +36274,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -34895,7 +36287,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 778 this -488044861 +143110009 1 this.latitude 42361797 @@ -34908,7 +36300,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 778 this -488044861 +143110009 1 this.latitude 42361797 @@ -34924,7 +36316,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 779 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -34937,7 +36329,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 779 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -34953,16 +36345,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 777 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -34971,7 +36363,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -34987,16 +36379,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 780 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -35005,7 +36397,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -35018,7 +36410,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 781 this -1241276575 +706197430 1 this.latitude 42360097 @@ -35031,7 +36423,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 781 this -1241276575 +706197430 1 this.latitude 42360097 @@ -35047,7 +36439,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 782 this -215145189 +1325808650 1 this.latitude 42361797 @@ -35060,7 +36452,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 782 this -215145189 +1325808650 1 this.latitude 42361797 @@ -35076,16 +36468,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 780 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -35094,7 +36486,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -35110,16 +36502,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 783 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -35128,7 +36520,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -35141,7 +36533,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 784 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -35154,7 +36546,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 784 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -35170,7 +36562,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 785 this -2042495840 +525683462 1 this.latitude 42358941 @@ -35183,7 +36575,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 785 this -2042495840 +525683462 1 this.latitude 42358941 @@ -35199,16 +36591,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 783 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -35217,7 +36609,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -35233,16 +36625,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 786 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -35251,7 +36643,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -35264,7 +36656,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 787 this -990398217 +319977154 1 this.latitude 42358941 @@ -35277,7 +36669,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 787 this -990398217 +319977154 1 this.latitude 42358941 @@ -35293,7 +36685,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 788 this -841283083 +648680157 1 this.latitude 42360097 @@ -35306,7 +36698,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 788 this -841283083 +648680157 1 this.latitude 42360097 @@ -35322,16 +36714,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 786 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -35340,7 +36732,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -35356,16 +36748,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 789 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -35374,7 +36766,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -35387,7 +36779,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 790 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -35400,7 +36792,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 790 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -35416,7 +36808,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 791 this -1924582348 +133250414 1 this.latitude 42357097 @@ -35429,7 +36821,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 791 this -1924582348 +133250414 1 this.latitude 42357097 @@ -35445,16 +36837,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 789 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -35463,7 +36855,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -35479,16 +36871,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 792 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -35497,7 +36889,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -35510,7 +36902,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 793 this -817406040 +603650290 1 this.latitude 42357097 @@ -35523,7 +36915,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 793 this -817406040 +603650290 1 this.latitude 42357097 @@ -35539,7 +36931,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 794 this -1955915048 +762227630 1 this.latitude 42358941 @@ -35552,7 +36944,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 794 this -1955915048 +762227630 1 this.latitude 42358941 @@ -35568,16 +36960,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 792 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -35586,7 +36978,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -35602,16 +36994,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 795 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -35620,7 +37012,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -35633,7 +37025,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 796 this -157683534 +280744458 1 this.latitude 42357097 @@ -35646,7 +37038,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 796 this -157683534 +280744458 1 this.latitude 42357097 @@ -35662,7 +37054,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 797 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -35675,7 +37067,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 797 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -35691,16 +37083,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 795 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -35709,7 +37101,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -35725,16 +37117,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 798 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -35743,7 +37135,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -35756,7 +37148,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 799 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -35769,7 +37161,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 799 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -35785,7 +37177,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 800 this -2097514481 +527446182 1 this.latitude 42357097 @@ -35798,7 +37190,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 800 this -2097514481 +527446182 1 this.latitude 42357097 @@ -35814,16 +37206,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 798 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -35832,7 +37224,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -35848,16 +37240,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 801 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -35866,7 +37258,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -35879,7 +37271,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 802 this -1325808650 +961419791 1 this.latitude 42361797 @@ -35892,7 +37284,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 802 this -1325808650 +961419791 1 this.latitude 42361797 @@ -35908,7 +37300,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 803 this -510464020 +665188480 1 this.latitude 42362297 @@ -35921,7 +37313,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 803 this -510464020 +665188480 1 this.latitude 42362297 @@ -35937,16 +37329,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 801 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -35955,7 +37347,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -35971,16 +37363,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 804 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -35989,7 +37381,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -36002,7 +37394,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 805 this -525683462 +377478451 1 this.latitude 42362297 @@ -36015,7 +37407,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 805 this -525683462 +377478451 1 this.latitude 42362297 @@ -36031,7 +37423,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 806 this -1766724936 +513169028 1 this.latitude 42361797 @@ -36044,7 +37436,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 806 this -1766724936 +513169028 1 this.latitude 42361797 @@ -36060,16 +37452,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 804 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -36078,7 +37470,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -36094,16 +37486,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 807 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -36112,7 +37504,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -36125,7 +37517,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 808 this -648680157 +990416209 1 this.latitude 42362297 @@ -36138,7 +37530,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 808 this -648680157 +990416209 1 this.latitude 42362297 @@ -36154,7 +37546,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 809 this -1071097621 +394714818 1 this.latitude 42362597 @@ -36167,7 +37559,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 809 this -1071097621 +394714818 1 this.latitude 42362597 @@ -36183,16 +37575,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 807 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -36201,7 +37593,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -36217,16 +37609,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 810 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -36235,7 +37627,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -36248,7 +37640,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 811 this -133250414 +1791868405 1 this.latitude 42362597 @@ -36261,7 +37653,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 811 this -133250414 +1791868405 1 this.latitude 42362597 @@ -36277,7 +37669,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 812 this -85777802 +1260134048 1 this.latitude 42362297 @@ -36290,7 +37682,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 812 this -85777802 +1260134048 1 this.latitude 42362297 @@ -36306,16 +37698,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 810 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -36324,7 +37716,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -36340,16 +37732,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 813 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -36358,7 +37750,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -36371,7 +37763,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 814 this -762227630 +57748372 1 this.latitude 42362597 @@ -36384,7 +37776,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 814 this -762227630 +57748372 1 this.latitude 42362597 @@ -36400,7 +37792,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 815 this -1316864772 +674483268 1 this.latitude 42362697 @@ -36413,7 +37805,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 815 this -1316864772 +674483268 1 this.latitude 42362697 @@ -36429,16 +37821,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 813 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -36447,7 +37839,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -36463,16 +37855,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 816 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -36481,7 +37873,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -36494,7 +37886,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 817 this -1213216872 +764372388 1 this.latitude 42362697 @@ -36507,7 +37899,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 817 this -1213216872 +764372388 1 this.latitude 42362697 @@ -36523,7 +37915,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 818 this -1754638213 +459857341 1 this.latitude 42362597 @@ -36536,7 +37928,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 818 this -1754638213 +459857341 1 this.latitude 42362597 @@ -36552,16 +37944,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 816 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -36570,7 +37962,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -36586,16 +37978,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 819 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -36604,7 +37996,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -36617,7 +38009,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 820 this -527446182 +1399499405 1 this.latitude 42362697 @@ -36630,7 +38022,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 820 this -527446182 +1399499405 1 this.latitude 42362697 @@ -36646,7 +38038,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 821 this -1511785794 +238157928 1 this.latitude 42362997 @@ -36659,7 +38051,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 821 this -1511785794 +238157928 1 this.latitude 42362997 @@ -36675,16 +38067,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 819 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -36693,7 +38085,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -36709,16 +38101,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 822 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -36727,7 +38119,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -36740,7 +38132,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 823 this -527446182 +1399499405 1 this.latitude 42362697 @@ -36753,7 +38145,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 823 this -527446182 +1399499405 1 this.latitude 42362697 @@ -36769,7 +38161,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 824 this -1511785794 +238157928 1 this.latitude 42362997 @@ -36782,7 +38174,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 824 this -1511785794 +238157928 1 this.latitude 42362997 @@ -36798,16 +38190,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 822 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -36816,7 +38208,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -36832,16 +38224,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 825 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -36850,7 +38242,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -36863,7 +38255,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 826 this -488044861 +143110009 1 this.latitude 42361797 @@ -36876,7 +38268,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 826 this -488044861 +143110009 1 this.latitude 42361797 @@ -36892,7 +38284,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 827 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -36905,7 +38297,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 827 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -36921,16 +38313,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 825 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -36939,7 +38331,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -36955,16 +38347,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 828 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -36973,7 +38365,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -36986,7 +38378,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 829 this -1241276575 +706197430 1 this.latitude 42360097 @@ -36999,7 +38391,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 829 this -1241276575 +706197430 1 this.latitude 42360097 @@ -37015,7 +38407,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 830 this -215145189 +1325808650 1 this.latitude 42361797 @@ -37028,7 +38420,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 830 this -215145189 +1325808650 1 this.latitude 42361797 @@ -37044,16 +38436,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 828 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -37062,7 +38454,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -37078,16 +38470,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 831 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -37096,7 +38488,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -37109,7 +38501,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 832 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -37122,7 +38514,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 832 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -37138,7 +38530,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 833 this -2042495840 +525683462 1 this.latitude 42358941 @@ -37151,7 +38543,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 833 this -2042495840 +525683462 1 this.latitude 42358941 @@ -37167,16 +38559,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 831 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -37185,7 +38577,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -37201,16 +38593,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 834 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -37219,7 +38611,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -37232,7 +38624,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 835 this -990398217 +319977154 1 this.latitude 42358941 @@ -37245,7 +38637,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 835 this -990398217 +319977154 1 this.latitude 42358941 @@ -37261,7 +38653,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 836 this -841283083 +648680157 1 this.latitude 42360097 @@ -37274,7 +38666,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 836 this -841283083 +648680157 1 this.latitude 42360097 @@ -37290,16 +38682,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 834 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -37308,7 +38700,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -37324,16 +38716,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 837 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -37342,7 +38734,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -37355,7 +38747,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 838 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -37368,7 +38760,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 838 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -37384,7 +38776,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 839 this -1924582348 +133250414 1 this.latitude 42357097 @@ -37397,7 +38789,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 839 this -1924582348 +133250414 1 this.latitude 42357097 @@ -37413,16 +38805,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 837 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -37431,7 +38823,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -37447,16 +38839,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 840 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -37465,7 +38857,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -37478,7 +38870,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 841 this -817406040 +603650290 1 this.latitude 42357097 @@ -37491,7 +38883,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 841 this -817406040 +603650290 1 this.latitude 42357097 @@ -37507,7 +38899,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 842 this -1955915048 +762227630 1 this.latitude 42358941 @@ -37520,7 +38912,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 842 this -1955915048 +762227630 1 this.latitude 42358941 @@ -37536,16 +38928,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 840 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -37554,7 +38946,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -37570,16 +38962,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 843 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -37588,7 +38980,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -37601,7 +38993,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 844 this -157683534 +280744458 1 this.latitude 42357097 @@ -37614,7 +39006,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 844 this -157683534 +280744458 1 this.latitude 42357097 @@ -37630,7 +39022,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 845 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -37643,7 +39035,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 845 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -37659,16 +39051,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 843 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -37677,7 +39069,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -37693,16 +39085,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 846 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -37711,7 +39103,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -37724,7 +39116,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 847 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -37737,7 +39129,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 847 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -37753,7 +39145,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 848 this -2097514481 +527446182 1 this.latitude 42357097 @@ -37766,7 +39158,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 848 this -2097514481 +527446182 1 this.latitude 42357097 @@ -37782,16 +39174,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 846 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -37800,7 +39192,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -37816,16 +39208,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 849 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -37834,7 +39226,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -37847,7 +39239,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 850 this -1325808650 +961419791 1 this.latitude 42361797 @@ -37860,7 +39252,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 850 this -1325808650 +961419791 1 this.latitude 42361797 @@ -37876,7 +39268,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 851 this -510464020 +665188480 1 this.latitude 42362297 @@ -37889,7 +39281,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 851 this -510464020 +665188480 1 this.latitude 42362297 @@ -37905,16 +39297,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 849 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -37923,7 +39315,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -37939,16 +39331,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 852 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -37957,7 +39349,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -37970,7 +39362,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 853 this -525683462 +377478451 1 this.latitude 42362297 @@ -37983,7 +39375,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 853 this -525683462 +377478451 1 this.latitude 42362297 @@ -37999,7 +39391,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 854 this -1766724936 +513169028 1 this.latitude 42361797 @@ -38012,7 +39404,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 854 this -1766724936 +513169028 1 this.latitude 42361797 @@ -38028,16 +39420,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 852 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -38046,7 +39438,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -38062,16 +39454,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 855 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -38080,7 +39472,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -38093,7 +39485,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 856 this -648680157 +990416209 1 this.latitude 42362297 @@ -38106,7 +39498,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 856 this -648680157 +990416209 1 this.latitude 42362297 @@ -38122,7 +39514,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 857 this -1071097621 +394714818 1 this.latitude 42362597 @@ -38135,7 +39527,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 857 this -1071097621 +394714818 1 this.latitude 42362597 @@ -38151,16 +39543,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 855 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -38169,7 +39561,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -38185,16 +39577,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 858 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -38203,7 +39595,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -38216,7 +39608,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 859 this -133250414 +1791868405 1 this.latitude 42362597 @@ -38229,7 +39621,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 859 this -133250414 +1791868405 1 this.latitude 42362597 @@ -38245,7 +39637,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 860 this -85777802 +1260134048 1 this.latitude 42362297 @@ -38258,7 +39650,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 860 this -85777802 +1260134048 1 this.latitude 42362297 @@ -38274,16 +39666,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 858 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -38292,7 +39684,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -38308,16 +39700,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 861 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -38326,7 +39718,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -38339,7 +39731,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 862 this -762227630 +57748372 1 this.latitude 42362597 @@ -38352,7 +39744,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 862 this -762227630 +57748372 1 this.latitude 42362597 @@ -38368,7 +39760,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 863 this -1316864772 +674483268 1 this.latitude 42362697 @@ -38381,7 +39773,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 863 this -1316864772 +674483268 1 this.latitude 42362697 @@ -38397,16 +39789,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 861 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -38415,7 +39807,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -38431,16 +39823,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 864 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -38449,7 +39841,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -38462,7 +39854,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 865 this -1213216872 +764372388 1 this.latitude 42362697 @@ -38475,7 +39867,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 865 this -1213216872 +764372388 1 this.latitude 42362697 @@ -38491,7 +39883,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 866 this -1754638213 +459857341 1 this.latitude 42362597 @@ -38504,7 +39896,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 866 this -1754638213 +459857341 1 this.latitude 42362597 @@ -38520,16 +39912,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 864 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -38538,7 +39930,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -38554,16 +39946,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 867 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -38572,7 +39964,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -38585,7 +39977,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 868 this -527446182 +1399499405 1 this.latitude 42362697 @@ -38598,7 +39990,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 868 this -527446182 +1399499405 1 this.latitude 42362697 @@ -38614,7 +40006,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 869 this -1511785794 +238157928 1 this.latitude 42362997 @@ -38627,7 +40019,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 869 this -1511785794 +238157928 1 this.latitude 42362997 @@ -38643,16 +40035,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 867 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -38661,7 +40053,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -38687,7 +40079,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 870 this -665188480 +1883919084 1 this.latitude 42362997 @@ -38716,7 +40108,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 871 this -489279267 +1860513229 1 this.latitude 42362697 @@ -38735,13 +40127,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 872 name -1596467899 +1150538133 1 name.toString "Main_St" 1 p1 -665188480 +1883919084 1 p1.latitude 42362997 @@ -38750,7 +40142,7 @@ p1.longitude -71099696 1 p2 -489279267 +1860513229 1 p2.latitude 42362697 @@ -38763,7 +40155,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 873 this -665188480 +1883919084 1 this.latitude 42362997 @@ -38772,7 +40164,7 @@ this.longitude -71099696 1 o -489279267 +1860513229 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -38782,7 +40174,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 873 this -665188480 +1883919084 1 this.latitude 42362997 @@ -38791,7 +40183,7 @@ this.longitude -71099696 1 o -489279267 +1860513229 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -38804,16 +40196,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 872 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -38822,7 +40214,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -38831,13 +40223,13 @@ this.p2.longitude -71090996 1 name -1596467899 +1150538133 1 name.toString "Main_St" 1 p1 -665188480 +1883919084 1 p1.latitude 42362997 @@ -38846,7 +40238,7 @@ p1.longitude -71099696 1 p2 -489279267 +1860513229 1 p2.latitude 42362697 @@ -38859,16 +40251,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 874 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -38877,7 +40269,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -38890,7 +40282,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 875 this -665188480 +1883919084 1 this.latitude 42362997 @@ -38903,7 +40295,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 875 this -665188480 +1883919084 1 this.latitude 42362997 @@ -38919,7 +40311,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 876 this -489279267 +1860513229 1 this.latitude 42362697 @@ -38932,7 +40324,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 876 this -489279267 +1860513229 1 this.latitude 42362697 @@ -38948,16 +40340,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 874 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -38966,7 +40358,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -38982,16 +40374,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 877 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -39000,7 +40392,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -39013,7 +40405,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 878 this -488044861 +143110009 1 this.latitude 42361797 @@ -39026,7 +40418,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 878 this -488044861 +143110009 1 this.latitude 42361797 @@ -39042,7 +40434,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 879 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -39055,7 +40447,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 879 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -39071,16 +40463,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 877 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -39089,7 +40481,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -39105,16 +40497,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 880 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -39123,7 +40515,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -39136,7 +40528,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 881 this -1241276575 +706197430 1 this.latitude 42360097 @@ -39149,7 +40541,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 881 this -1241276575 +706197430 1 this.latitude 42360097 @@ -39165,7 +40557,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 882 this -215145189 +1325808650 1 this.latitude 42361797 @@ -39178,7 +40570,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 882 this -215145189 +1325808650 1 this.latitude 42361797 @@ -39194,16 +40586,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 880 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -39212,7 +40604,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -39228,16 +40620,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 883 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -39246,7 +40638,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -39259,7 +40651,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 884 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -39272,7 +40664,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 884 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -39288,7 +40680,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 885 this -2042495840 +525683462 1 this.latitude 42358941 @@ -39301,7 +40693,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 885 this -2042495840 +525683462 1 this.latitude 42358941 @@ -39317,16 +40709,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 883 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -39335,7 +40727,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -39351,16 +40743,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 886 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -39369,7 +40761,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -39382,7 +40774,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 887 this -990398217 +319977154 1 this.latitude 42358941 @@ -39395,7 +40787,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 887 this -990398217 +319977154 1 this.latitude 42358941 @@ -39411,7 +40803,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 888 this -841283083 +648680157 1 this.latitude 42360097 @@ -39424,7 +40816,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 888 this -841283083 +648680157 1 this.latitude 42360097 @@ -39440,16 +40832,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 886 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -39458,7 +40850,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -39474,16 +40866,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 889 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -39492,7 +40884,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -39505,7 +40897,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 890 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -39518,7 +40910,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 890 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -39534,7 +40926,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 891 this -1924582348 +133250414 1 this.latitude 42357097 @@ -39547,7 +40939,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 891 this -1924582348 +133250414 1 this.latitude 42357097 @@ -39563,16 +40955,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 889 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -39581,7 +40973,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -39597,16 +40989,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 892 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -39615,7 +41007,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -39628,7 +41020,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 893 this -817406040 +603650290 1 this.latitude 42357097 @@ -39641,7 +41033,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 893 this -817406040 +603650290 1 this.latitude 42357097 @@ -39657,7 +41049,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 894 this -1955915048 +762227630 1 this.latitude 42358941 @@ -39670,7 +41062,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 894 this -1955915048 +762227630 1 this.latitude 42358941 @@ -39686,16 +41078,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 892 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -39704,7 +41096,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -39720,16 +41112,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 895 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -39738,7 +41130,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -39751,7 +41143,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 896 this -157683534 +280744458 1 this.latitude 42357097 @@ -39764,7 +41156,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 896 this -157683534 +280744458 1 this.latitude 42357097 @@ -39780,7 +41172,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 897 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -39793,7 +41185,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 897 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -39809,16 +41201,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 895 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -39827,7 +41219,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -39843,16 +41235,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 898 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -39861,7 +41253,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -39874,7 +41266,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 899 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -39887,7 +41279,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 899 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -39903,7 +41295,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 900 this -2097514481 +527446182 1 this.latitude 42357097 @@ -39916,7 +41308,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 900 this -2097514481 +527446182 1 this.latitude 42357097 @@ -39932,16 +41324,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 898 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -39950,7 +41342,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -39966,16 +41358,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 901 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -39984,7 +41376,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -39997,7 +41389,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 902 this -1325808650 +961419791 1 this.latitude 42361797 @@ -40010,7 +41402,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 902 this -1325808650 +961419791 1 this.latitude 42361797 @@ -40026,7 +41418,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 903 this -510464020 +665188480 1 this.latitude 42362297 @@ -40039,7 +41431,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 903 this -510464020 +665188480 1 this.latitude 42362297 @@ -40055,16 +41447,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 901 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -40073,7 +41465,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -40089,16 +41481,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 904 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -40107,7 +41499,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -40120,7 +41512,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 905 this -525683462 +377478451 1 this.latitude 42362297 @@ -40133,7 +41525,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 905 this -525683462 +377478451 1 this.latitude 42362297 @@ -40149,7 +41541,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 906 this -1766724936 +513169028 1 this.latitude 42361797 @@ -40162,7 +41554,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 906 this -1766724936 +513169028 1 this.latitude 42361797 @@ -40178,16 +41570,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 904 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -40196,7 +41588,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -40212,16 +41604,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 907 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -40230,7 +41622,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -40243,7 +41635,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 908 this -648680157 +990416209 1 this.latitude 42362297 @@ -40256,7 +41648,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 908 this -648680157 +990416209 1 this.latitude 42362297 @@ -40272,7 +41664,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 909 this -1071097621 +394714818 1 this.latitude 42362597 @@ -40285,7 +41677,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 909 this -1071097621 +394714818 1 this.latitude 42362597 @@ -40301,16 +41693,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 907 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -40319,7 +41711,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -40335,16 +41727,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 910 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -40353,7 +41745,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -40366,7 +41758,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 911 this -133250414 +1791868405 1 this.latitude 42362597 @@ -40379,7 +41771,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 911 this -133250414 +1791868405 1 this.latitude 42362597 @@ -40395,7 +41787,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 912 this -85777802 +1260134048 1 this.latitude 42362297 @@ -40408,7 +41800,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 912 this -85777802 +1260134048 1 this.latitude 42362297 @@ -40424,16 +41816,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 910 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -40442,7 +41834,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -40458,16 +41850,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 913 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -40476,7 +41868,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -40489,7 +41881,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 914 this -762227630 +57748372 1 this.latitude 42362597 @@ -40502,7 +41894,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 914 this -762227630 +57748372 1 this.latitude 42362597 @@ -40518,7 +41910,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 915 this -1316864772 +674483268 1 this.latitude 42362697 @@ -40531,7 +41923,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 915 this -1316864772 +674483268 1 this.latitude 42362697 @@ -40547,16 +41939,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 913 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -40565,7 +41957,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -40581,16 +41973,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 916 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -40599,7 +41991,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -40612,7 +42004,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 917 this -1213216872 +764372388 1 this.latitude 42362697 @@ -40625,7 +42017,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 917 this -1213216872 +764372388 1 this.latitude 42362697 @@ -40641,7 +42033,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 918 this -1754638213 +459857341 1 this.latitude 42362597 @@ -40654,7 +42046,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 918 this -1754638213 +459857341 1 this.latitude 42362597 @@ -40670,16 +42062,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 916 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -40688,7 +42080,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -40704,16 +42096,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 919 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -40722,7 +42114,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -40735,7 +42127,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 920 this -527446182 +1399499405 1 this.latitude 42362697 @@ -40748,7 +42140,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 920 this -527446182 +1399499405 1 this.latitude 42362697 @@ -40764,7 +42156,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 921 this -1511785794 +238157928 1 this.latitude 42362997 @@ -40777,7 +42169,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 921 this -1511785794 +238157928 1 this.latitude 42362997 @@ -40793,16 +42185,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 919 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -40811,7 +42203,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -40827,16 +42219,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 922 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -40845,7 +42237,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -40858,7 +42250,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 923 this -665188480 +1883919084 1 this.latitude 42362997 @@ -40871,7 +42263,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 923 this -665188480 +1883919084 1 this.latitude 42362997 @@ -40887,7 +42279,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 924 this -489279267 +1860513229 1 this.latitude 42362697 @@ -40900,7 +42292,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 924 this -489279267 +1860513229 1 this.latitude 42362697 @@ -40916,16 +42308,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 922 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -40934,7 +42326,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -40950,16 +42342,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 925 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -40968,7 +42360,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -40981,7 +42373,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 926 this -665188480 +1883919084 1 this.latitude 42362997 @@ -40994,7 +42386,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 926 this -665188480 +1883919084 1 this.latitude 42362997 @@ -41010,7 +42402,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 927 this -489279267 +1860513229 1 this.latitude 42362697 @@ -41023,7 +42415,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 927 this -489279267 +1860513229 1 this.latitude 42362697 @@ -41039,16 +42431,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 925 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -41057,7 +42449,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -41073,16 +42465,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 928 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -41091,7 +42483,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -41104,7 +42496,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 929 this -488044861 +143110009 1 this.latitude 42361797 @@ -41117,7 +42509,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 929 this -488044861 +143110009 1 this.latitude 42361797 @@ -41133,7 +42525,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 930 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -41146,7 +42538,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 930 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -41162,16 +42554,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 928 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -41180,7 +42572,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -41196,16 +42588,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 931 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -41214,7 +42606,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -41227,7 +42619,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 932 this -1241276575 +706197430 1 this.latitude 42360097 @@ -41240,7 +42632,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 932 this -1241276575 +706197430 1 this.latitude 42360097 @@ -41256,7 +42648,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 933 this -215145189 +1325808650 1 this.latitude 42361797 @@ -41269,7 +42661,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 933 this -215145189 +1325808650 1 this.latitude 42361797 @@ -41285,16 +42677,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 931 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -41303,7 +42695,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -41319,16 +42711,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 934 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -41337,7 +42729,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -41350,7 +42742,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 935 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -41363,7 +42755,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 935 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -41379,7 +42771,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 936 this -2042495840 +525683462 1 this.latitude 42358941 @@ -41392,7 +42784,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 936 this -2042495840 +525683462 1 this.latitude 42358941 @@ -41408,16 +42800,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 934 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -41426,7 +42818,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -41442,16 +42834,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 937 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -41460,7 +42852,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -41473,7 +42865,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 938 this -990398217 +319977154 1 this.latitude 42358941 @@ -41486,7 +42878,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 938 this -990398217 +319977154 1 this.latitude 42358941 @@ -41502,7 +42894,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 939 this -841283083 +648680157 1 this.latitude 42360097 @@ -41515,7 +42907,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 939 this -841283083 +648680157 1 this.latitude 42360097 @@ -41531,16 +42923,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 937 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -41549,7 +42941,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -41565,16 +42957,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 940 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -41583,7 +42975,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -41596,7 +42988,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 941 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -41609,7 +43001,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 941 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -41625,7 +43017,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 942 this -1924582348 +133250414 1 this.latitude 42357097 @@ -41638,7 +43030,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 942 this -1924582348 +133250414 1 this.latitude 42357097 @@ -41654,16 +43046,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 940 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -41672,7 +43064,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -41688,16 +43080,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 943 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -41706,7 +43098,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -41719,7 +43111,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 944 this -817406040 +603650290 1 this.latitude 42357097 @@ -41732,7 +43124,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 944 this -817406040 +603650290 1 this.latitude 42357097 @@ -41748,7 +43140,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 945 this -1955915048 +762227630 1 this.latitude 42358941 @@ -41761,7 +43153,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 945 this -1955915048 +762227630 1 this.latitude 42358941 @@ -41777,16 +43169,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 943 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -41795,7 +43187,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -41811,16 +43203,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 946 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -41829,7 +43221,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -41842,7 +43234,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 947 this -157683534 +280744458 1 this.latitude 42357097 @@ -41855,7 +43247,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 947 this -157683534 +280744458 1 this.latitude 42357097 @@ -41871,7 +43263,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 948 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -41884,7 +43276,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 948 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -41900,16 +43292,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 946 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -41918,7 +43310,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -41934,16 +43326,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 949 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -41952,7 +43344,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -41965,7 +43357,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 950 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -41978,7 +43370,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 950 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -41994,7 +43386,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 951 this -2097514481 +527446182 1 this.latitude 42357097 @@ -42007,7 +43399,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 951 this -2097514481 +527446182 1 this.latitude 42357097 @@ -42023,16 +43415,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 949 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -42041,7 +43433,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -42057,16 +43449,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 952 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -42075,7 +43467,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -42088,7 +43480,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 953 this -1325808650 +961419791 1 this.latitude 42361797 @@ -42101,7 +43493,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 953 this -1325808650 +961419791 1 this.latitude 42361797 @@ -42117,7 +43509,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 954 this -510464020 +665188480 1 this.latitude 42362297 @@ -42130,7 +43522,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 954 this -510464020 +665188480 1 this.latitude 42362297 @@ -42146,16 +43538,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 952 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -42164,7 +43556,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -42180,16 +43572,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 955 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -42198,7 +43590,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -42211,7 +43603,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 956 this -525683462 +377478451 1 this.latitude 42362297 @@ -42224,7 +43616,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 956 this -525683462 +377478451 1 this.latitude 42362297 @@ -42240,7 +43632,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 957 this -1766724936 +513169028 1 this.latitude 42361797 @@ -42253,7 +43645,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 957 this -1766724936 +513169028 1 this.latitude 42361797 @@ -42269,16 +43661,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 955 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -42287,7 +43679,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -42303,16 +43695,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 958 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -42321,7 +43713,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -42334,7 +43726,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 959 this -648680157 +990416209 1 this.latitude 42362297 @@ -42347,7 +43739,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 959 this -648680157 +990416209 1 this.latitude 42362297 @@ -42363,7 +43755,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 960 this -1071097621 +394714818 1 this.latitude 42362597 @@ -42376,7 +43768,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 960 this -1071097621 +394714818 1 this.latitude 42362597 @@ -42392,16 +43784,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 958 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -42410,7 +43802,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -42426,16 +43818,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 961 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -42444,7 +43836,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -42457,7 +43849,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 962 this -133250414 +1791868405 1 this.latitude 42362597 @@ -42470,7 +43862,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 962 this -133250414 +1791868405 1 this.latitude 42362597 @@ -42486,7 +43878,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 963 this -85777802 +1260134048 1 this.latitude 42362297 @@ -42499,7 +43891,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 963 this -85777802 +1260134048 1 this.latitude 42362297 @@ -42515,16 +43907,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 961 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -42533,7 +43925,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -42549,16 +43941,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 964 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -42567,7 +43959,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -42580,7 +43972,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 965 this -762227630 +57748372 1 this.latitude 42362597 @@ -42593,7 +43985,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 965 this -762227630 +57748372 1 this.latitude 42362597 @@ -42609,7 +44001,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 966 this -1316864772 +674483268 1 this.latitude 42362697 @@ -42622,7 +44014,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 966 this -1316864772 +674483268 1 this.latitude 42362697 @@ -42638,16 +44030,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 964 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -42656,7 +44048,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -42672,16 +44064,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 967 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -42690,7 +44082,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -42703,7 +44095,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 968 this -1213216872 +764372388 1 this.latitude 42362697 @@ -42716,7 +44108,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 968 this -1213216872 +764372388 1 this.latitude 42362697 @@ -42732,7 +44124,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 969 this -1754638213 +459857341 1 this.latitude 42362597 @@ -42745,7 +44137,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 969 this -1754638213 +459857341 1 this.latitude 42362597 @@ -42761,16 +44153,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 967 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -42779,7 +44171,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -42795,16 +44187,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 970 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -42813,7 +44205,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -42826,7 +44218,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 971 this -527446182 +1399499405 1 this.latitude 42362697 @@ -42839,7 +44231,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 971 this -527446182 +1399499405 1 this.latitude 42362697 @@ -42855,7 +44247,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 972 this -1511785794 +238157928 1 this.latitude 42362997 @@ -42868,7 +44260,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 972 this -1511785794 +238157928 1 this.latitude 42362997 @@ -42884,16 +44276,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 970 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -42902,7 +44294,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -42918,16 +44310,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 973 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -42936,7 +44328,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -42949,7 +44341,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 974 this -665188480 +1883919084 1 this.latitude 42362997 @@ -42962,7 +44354,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 974 this -665188480 +1883919084 1 this.latitude 42362997 @@ -42978,7 +44370,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 975 this -489279267 +1860513229 1 this.latitude 42362697 @@ -42991,7 +44383,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 975 this -489279267 +1860513229 1 this.latitude 42362697 @@ -43007,16 +44399,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 973 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -43025,7 +44417,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -43051,7 +44443,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 976 this -513169028 +92150540 1 this.latitude 42362997 @@ -43080,7 +44472,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 977 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -43099,13 +44491,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 978 name -1408652377 +410495873 1 name.toString "Massachusetts_Ave" 1 p1 -513169028 +92150540 1 p1.latitude 42362997 @@ -43114,7 +44506,7 @@ p1.longitude -71099696 1 p2 -1301664418 +1110623531 1 p2.latitude 42360297 @@ -43127,7 +44519,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 979 this -513169028 +92150540 1 this.latitude 42362997 @@ -43136,7 +44528,7 @@ this.longitude -71099696 1 o -1301664418 +1110623531 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -43146,7 +44538,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 979 this -513169028 +92150540 1 this.latitude 42362997 @@ -43155,7 +44547,7 @@ this.longitude -71099696 1 o -1301664418 +1110623531 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -43168,16 +44560,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 978 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -43186,7 +44578,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -43195,13 +44587,13 @@ this.p2.longitude -71095096 1 name -1408652377 +410495873 1 name.toString "Massachusetts_Ave" 1 p1 -513169028 +92150540 1 p1.latitude 42362997 @@ -43210,7 +44602,7 @@ p1.longitude -71099696 1 p2 -1301664418 +1110623531 1 p2.latitude 42360297 @@ -43223,16 +44615,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 980 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -43241,7 +44633,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -43254,7 +44646,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 981 this -513169028 +92150540 1 this.latitude 42362997 @@ -43267,7 +44659,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 981 this -513169028 +92150540 1 this.latitude 42362997 @@ -43283,7 +44675,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 982 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -43296,7 +44688,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 982 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -43312,16 +44704,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 980 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -43330,7 +44722,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -43346,16 +44738,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 983 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -43364,7 +44756,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -43377,7 +44769,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 984 this -488044861 +143110009 1 this.latitude 42361797 @@ -43390,7 +44782,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 984 this -488044861 +143110009 1 this.latitude 42361797 @@ -43406,7 +44798,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 985 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -43419,7 +44811,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 985 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -43435,16 +44827,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 983 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -43453,7 +44845,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -43469,16 +44861,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 986 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -43487,7 +44879,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -43500,7 +44892,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 987 this -1241276575 +706197430 1 this.latitude 42360097 @@ -43513,7 +44905,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 987 this -1241276575 +706197430 1 this.latitude 42360097 @@ -43529,7 +44921,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 988 this -215145189 +1325808650 1 this.latitude 42361797 @@ -43542,7 +44934,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 988 this -215145189 +1325808650 1 this.latitude 42361797 @@ -43558,16 +44950,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 986 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -43576,7 +44968,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -43592,16 +44984,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 989 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -43610,7 +45002,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -43623,7 +45015,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 990 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -43636,7 +45028,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 990 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -43652,7 +45044,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 991 this -2042495840 +525683462 1 this.latitude 42358941 @@ -43665,7 +45057,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 991 this -2042495840 +525683462 1 this.latitude 42358941 @@ -43681,16 +45073,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 989 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -43699,7 +45091,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -43715,16 +45107,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 992 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -43733,7 +45125,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -43746,7 +45138,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 993 this -990398217 +319977154 1 this.latitude 42358941 @@ -43759,7 +45151,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 993 this -990398217 +319977154 1 this.latitude 42358941 @@ -43775,7 +45167,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 994 this -841283083 +648680157 1 this.latitude 42360097 @@ -43788,7 +45180,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 994 this -841283083 +648680157 1 this.latitude 42360097 @@ -43804,16 +45196,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 992 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -43822,7 +45214,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -43838,16 +45230,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 995 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -43856,7 +45248,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -43869,7 +45261,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 996 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -43882,7 +45274,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 996 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -43898,7 +45290,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 997 this -1924582348 +133250414 1 this.latitude 42357097 @@ -43911,7 +45303,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 997 this -1924582348 +133250414 1 this.latitude 42357097 @@ -43927,16 +45319,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 995 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -43945,7 +45337,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -43961,16 +45353,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 998 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -43979,7 +45371,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -43992,7 +45384,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 999 this -817406040 +603650290 1 this.latitude 42357097 @@ -44005,7 +45397,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 999 this -817406040 +603650290 1 this.latitude 42357097 @@ -44021,7 +45413,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1000 this -1955915048 +762227630 1 this.latitude 42358941 @@ -44034,7 +45426,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1000 this -1955915048 +762227630 1 this.latitude 42358941 @@ -44050,16 +45442,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 998 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -44068,7 +45460,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -44084,16 +45476,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1001 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -44102,7 +45494,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -44115,7 +45507,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1002 this -157683534 +280744458 1 this.latitude 42357097 @@ -44128,7 +45520,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1002 this -157683534 +280744458 1 this.latitude 42357097 @@ -44144,7 +45536,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1003 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -44157,7 +45549,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1003 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -44173,16 +45565,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1001 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -44191,7 +45583,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -44207,16 +45599,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1004 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -44225,7 +45617,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -44238,7 +45630,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1005 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -44251,7 +45643,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1005 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -44267,7 +45659,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1006 this -2097514481 +527446182 1 this.latitude 42357097 @@ -44280,7 +45672,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1006 this -2097514481 +527446182 1 this.latitude 42357097 @@ -44296,16 +45688,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1004 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -44314,7 +45706,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -44330,16 +45722,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1007 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -44348,7 +45740,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -44361,7 +45753,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1008 this -1325808650 +961419791 1 this.latitude 42361797 @@ -44374,7 +45766,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1008 this -1325808650 +961419791 1 this.latitude 42361797 @@ -44390,7 +45782,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1009 this -510464020 +665188480 1 this.latitude 42362297 @@ -44403,7 +45795,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1009 this -510464020 +665188480 1 this.latitude 42362297 @@ -44419,16 +45811,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1007 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -44437,7 +45829,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -44453,16 +45845,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1010 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -44471,7 +45863,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -44484,7 +45876,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1011 this -525683462 +377478451 1 this.latitude 42362297 @@ -44497,7 +45889,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1011 this -525683462 +377478451 1 this.latitude 42362297 @@ -44513,7 +45905,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1012 this -1766724936 +513169028 1 this.latitude 42361797 @@ -44526,7 +45918,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1012 this -1766724936 +513169028 1 this.latitude 42361797 @@ -44542,16 +45934,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1010 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -44560,7 +45952,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -44576,16 +45968,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1013 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -44594,7 +45986,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -44607,7 +45999,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1014 this -648680157 +990416209 1 this.latitude 42362297 @@ -44620,7 +46012,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1014 this -648680157 +990416209 1 this.latitude 42362297 @@ -44636,7 +46028,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1015 this -1071097621 +394714818 1 this.latitude 42362597 @@ -44649,7 +46041,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1015 this -1071097621 +394714818 1 this.latitude 42362597 @@ -44665,16 +46057,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1013 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -44683,7 +46075,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -44699,16 +46091,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1016 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -44717,7 +46109,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -44730,7 +46122,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1017 this -133250414 +1791868405 1 this.latitude 42362597 @@ -44743,7 +46135,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1017 this -133250414 +1791868405 1 this.latitude 42362597 @@ -44759,7 +46151,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1018 this -85777802 +1260134048 1 this.latitude 42362297 @@ -44772,7 +46164,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1018 this -85777802 +1260134048 1 this.latitude 42362297 @@ -44788,16 +46180,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1016 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -44806,7 +46198,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -44822,16 +46214,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1019 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -44840,7 +46232,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -44853,7 +46245,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1020 this -762227630 +57748372 1 this.latitude 42362597 @@ -44866,7 +46258,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1020 this -762227630 +57748372 1 this.latitude 42362597 @@ -44882,7 +46274,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1021 this -1316864772 +674483268 1 this.latitude 42362697 @@ -44895,7 +46287,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1021 this -1316864772 +674483268 1 this.latitude 42362697 @@ -44911,16 +46303,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1019 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -44929,7 +46321,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -44945,16 +46337,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1022 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -44963,7 +46355,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -44976,7 +46368,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1023 this -1213216872 +764372388 1 this.latitude 42362697 @@ -44989,7 +46381,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1023 this -1213216872 +764372388 1 this.latitude 42362697 @@ -45005,7 +46397,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1024 this -1754638213 +459857341 1 this.latitude 42362597 @@ -45018,7 +46410,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1024 this -1754638213 +459857341 1 this.latitude 42362597 @@ -45034,16 +46426,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1022 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -45052,7 +46444,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -45068,16 +46460,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1025 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -45086,7 +46478,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -45099,7 +46491,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1026 this -527446182 +1399499405 1 this.latitude 42362697 @@ -45112,7 +46504,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1026 this -527446182 +1399499405 1 this.latitude 42362697 @@ -45128,7 +46520,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1027 this -1511785794 +238157928 1 this.latitude 42362997 @@ -45141,7 +46533,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1027 this -1511785794 +238157928 1 this.latitude 42362997 @@ -45157,16 +46549,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1025 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -45175,7 +46567,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -45191,16 +46583,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1028 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -45209,7 +46601,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -45222,7 +46614,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1029 this -665188480 +1883919084 1 this.latitude 42362997 @@ -45235,7 +46627,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1029 this -665188480 +1883919084 1 this.latitude 42362997 @@ -45251,7 +46643,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1030 this -489279267 +1860513229 1 this.latitude 42362697 @@ -45264,7 +46656,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1030 this -489279267 +1860513229 1 this.latitude 42362697 @@ -45280,16 +46672,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1028 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -45298,7 +46690,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -45314,16 +46706,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1031 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -45332,7 +46724,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -45345,7 +46737,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1032 this -513169028 +92150540 1 this.latitude 42362997 @@ -45358,7 +46750,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1032 this -513169028 +92150540 1 this.latitude 42362997 @@ -45374,7 +46766,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1033 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -45387,7 +46779,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1033 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -45403,16 +46795,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1031 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -45421,7 +46813,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -45437,16 +46829,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1034 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -45455,7 +46847,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -45468,7 +46860,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1035 this -513169028 +92150540 1 this.latitude 42362997 @@ -45481,7 +46873,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1035 this -513169028 +92150540 1 this.latitude 42362997 @@ -45497,7 +46889,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1036 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -45510,7 +46902,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1036 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -45526,16 +46918,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1034 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -45544,7 +46936,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -45560,16 +46952,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1037 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -45578,7 +46970,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -45591,7 +46983,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1038 this -488044861 +143110009 1 this.latitude 42361797 @@ -45604,7 +46996,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1038 this -488044861 +143110009 1 this.latitude 42361797 @@ -45620,7 +47012,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1039 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -45633,7 +47025,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1039 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -45649,16 +47041,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1037 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -45667,7 +47059,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -45683,16 +47075,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1040 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -45701,7 +47093,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -45714,7 +47106,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1041 this -1241276575 +706197430 1 this.latitude 42360097 @@ -45727,7 +47119,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1041 this -1241276575 +706197430 1 this.latitude 42360097 @@ -45743,7 +47135,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1042 this -215145189 +1325808650 1 this.latitude 42361797 @@ -45756,7 +47148,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1042 this -215145189 +1325808650 1 this.latitude 42361797 @@ -45772,16 +47164,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1040 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -45790,7 +47182,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -45806,16 +47198,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1043 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -45824,7 +47216,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -45837,7 +47229,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1044 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -45850,7 +47242,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1044 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -45866,7 +47258,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1045 this -2042495840 +525683462 1 this.latitude 42358941 @@ -45879,7 +47271,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1045 this -2042495840 +525683462 1 this.latitude 42358941 @@ -45895,16 +47287,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1043 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -45913,7 +47305,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -45929,16 +47321,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1046 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -45947,7 +47339,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -45960,7 +47352,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1047 this -990398217 +319977154 1 this.latitude 42358941 @@ -45973,7 +47365,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1047 this -990398217 +319977154 1 this.latitude 42358941 @@ -45989,7 +47381,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1048 this -841283083 +648680157 1 this.latitude 42360097 @@ -46002,7 +47394,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1048 this -841283083 +648680157 1 this.latitude 42360097 @@ -46018,16 +47410,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1046 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -46036,7 +47428,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -46052,16 +47444,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1049 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -46070,7 +47462,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -46083,7 +47475,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1050 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -46096,7 +47488,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1050 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -46112,7 +47504,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1051 this -1924582348 +133250414 1 this.latitude 42357097 @@ -46125,7 +47517,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1051 this -1924582348 +133250414 1 this.latitude 42357097 @@ -46141,16 +47533,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1049 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -46159,7 +47551,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -46175,16 +47567,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1052 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -46193,7 +47585,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -46206,7 +47598,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1053 this -817406040 +603650290 1 this.latitude 42357097 @@ -46219,7 +47611,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1053 this -817406040 +603650290 1 this.latitude 42357097 @@ -46235,7 +47627,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1054 this -1955915048 +762227630 1 this.latitude 42358941 @@ -46248,7 +47640,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1054 this -1955915048 +762227630 1 this.latitude 42358941 @@ -46264,16 +47656,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1052 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -46282,7 +47674,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -46298,16 +47690,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1055 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -46316,7 +47708,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -46329,7 +47721,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1056 this -157683534 +280744458 1 this.latitude 42357097 @@ -46342,7 +47734,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1056 this -157683534 +280744458 1 this.latitude 42357097 @@ -46358,7 +47750,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1057 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -46371,7 +47763,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1057 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -46387,16 +47779,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1055 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -46405,7 +47797,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -46421,16 +47813,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1058 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -46439,7 +47831,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -46452,7 +47844,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1059 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -46465,7 +47857,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1059 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -46481,7 +47873,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1060 this -2097514481 +527446182 1 this.latitude 42357097 @@ -46494,7 +47886,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1060 this -2097514481 +527446182 1 this.latitude 42357097 @@ -46510,16 +47902,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1058 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -46528,7 +47920,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -46544,16 +47936,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1061 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -46562,7 +47954,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -46575,7 +47967,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1062 this -1325808650 +961419791 1 this.latitude 42361797 @@ -46588,7 +47980,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1062 this -1325808650 +961419791 1 this.latitude 42361797 @@ -46604,7 +47996,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1063 this -510464020 +665188480 1 this.latitude 42362297 @@ -46617,7 +48009,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1063 this -510464020 +665188480 1 this.latitude 42362297 @@ -46633,16 +48025,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1061 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -46651,7 +48043,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -46667,16 +48059,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1064 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -46685,7 +48077,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -46698,7 +48090,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1065 this -525683462 +377478451 1 this.latitude 42362297 @@ -46711,7 +48103,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1065 this -525683462 +377478451 1 this.latitude 42362297 @@ -46727,7 +48119,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1066 this -1766724936 +513169028 1 this.latitude 42361797 @@ -46740,7 +48132,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1066 this -1766724936 +513169028 1 this.latitude 42361797 @@ -46756,16 +48148,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1064 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -46774,7 +48166,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -46790,16 +48182,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1067 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -46808,7 +48200,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -46821,7 +48213,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1068 this -648680157 +990416209 1 this.latitude 42362297 @@ -46834,7 +48226,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1068 this -648680157 +990416209 1 this.latitude 42362297 @@ -46850,7 +48242,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1069 this -1071097621 +394714818 1 this.latitude 42362597 @@ -46863,7 +48255,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1069 this -1071097621 +394714818 1 this.latitude 42362597 @@ -46879,16 +48271,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1067 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -46897,7 +48289,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -46913,16 +48305,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1070 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -46931,7 +48323,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -46944,7 +48336,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1071 this -133250414 +1791868405 1 this.latitude 42362597 @@ -46957,7 +48349,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1071 this -133250414 +1791868405 1 this.latitude 42362597 @@ -46973,7 +48365,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1072 this -85777802 +1260134048 1 this.latitude 42362297 @@ -46986,7 +48378,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1072 this -85777802 +1260134048 1 this.latitude 42362297 @@ -47002,16 +48394,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1070 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -47020,7 +48412,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -47036,16 +48428,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1073 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -47054,7 +48446,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -47067,7 +48459,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1074 this -762227630 +57748372 1 this.latitude 42362597 @@ -47080,7 +48472,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1074 this -762227630 +57748372 1 this.latitude 42362597 @@ -47096,7 +48488,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1075 this -1316864772 +674483268 1 this.latitude 42362697 @@ -47109,7 +48501,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1075 this -1316864772 +674483268 1 this.latitude 42362697 @@ -47125,16 +48517,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1073 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -47143,7 +48535,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -47159,16 +48551,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1076 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -47177,7 +48569,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -47190,7 +48582,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1077 this -1213216872 +764372388 1 this.latitude 42362697 @@ -47203,7 +48595,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1077 this -1213216872 +764372388 1 this.latitude 42362697 @@ -47219,7 +48611,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1078 this -1754638213 +459857341 1 this.latitude 42362597 @@ -47232,7 +48624,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1078 this -1754638213 +459857341 1 this.latitude 42362597 @@ -47248,16 +48640,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1076 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -47266,7 +48658,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -47282,16 +48674,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1079 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -47300,7 +48692,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -47313,7 +48705,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1080 this -527446182 +1399499405 1 this.latitude 42362697 @@ -47326,7 +48718,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1080 this -527446182 +1399499405 1 this.latitude 42362697 @@ -47342,7 +48734,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1081 this -1511785794 +238157928 1 this.latitude 42362997 @@ -47355,7 +48747,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1081 this -1511785794 +238157928 1 this.latitude 42362997 @@ -47371,16 +48763,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1079 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -47389,7 +48781,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -47405,16 +48797,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1082 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -47423,7 +48815,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -47436,7 +48828,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1083 this -665188480 +1883919084 1 this.latitude 42362997 @@ -47449,7 +48841,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1083 this -665188480 +1883919084 1 this.latitude 42362997 @@ -47465,7 +48857,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1084 this -489279267 +1860513229 1 this.latitude 42362697 @@ -47478,7 +48870,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1084 this -489279267 +1860513229 1 this.latitude 42362697 @@ -47494,16 +48886,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1082 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -47512,7 +48904,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -47528,16 +48920,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1085 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -47546,7 +48938,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -47559,7 +48951,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1086 this -513169028 +92150540 1 this.latitude 42362997 @@ -47572,7 +48964,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1086 this -513169028 +92150540 1 this.latitude 42362997 @@ -47588,7 +48980,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1087 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -47601,7 +48993,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1087 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -47617,16 +49009,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1085 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -47635,7 +49027,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -47661,7 +49053,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1088 this -394714818 +1166807841 1 this.latitude 42360297 @@ -47690,7 +49082,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1089 this -1952779858 +289639718 1 this.latitude 42362997 @@ -47709,13 +49101,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1090 name -366004251 +885851948 1 name.toString "Massachusetts_Ave" 1 p1 -394714818 +1166807841 1 p1.latitude 42360297 @@ -47724,7 +49116,7 @@ p1.longitude -71095096 1 p2 -1952779858 +289639718 1 p2.latitude 42362997 @@ -47737,7 +49129,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1091 this -394714818 +1166807841 1 this.latitude 42360297 @@ -47746,7 +49138,7 @@ this.longitude -71095096 1 o -1952779858 +289639718 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -47756,7 +49148,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1091 this -394714818 +1166807841 1 this.latitude 42360297 @@ -47765,7 +49157,7 @@ this.longitude -71095096 1 o -1952779858 +289639718 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -47778,16 +49170,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1090 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -47796,7 +49188,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -47805,13 +49197,13 @@ this.p2.longitude -71099696 1 name -366004251 +885851948 1 name.toString "Massachusetts_Ave" 1 p1 -394714818 +1166807841 1 p1.latitude 42360297 @@ -47820,7 +49212,7 @@ p1.longitude -71095096 1 p2 -1952779858 +289639718 1 p2.latitude 42362997 @@ -47833,16 +49225,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1092 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -47851,7 +49243,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -47864,7 +49256,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1093 this -394714818 +1166807841 1 this.latitude 42360297 @@ -47877,7 +49269,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1093 this -394714818 +1166807841 1 this.latitude 42360297 @@ -47893,7 +49285,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1094 this -1952779858 +289639718 1 this.latitude 42362997 @@ -47906,7 +49298,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1094 this -1952779858 +289639718 1 this.latitude 42362997 @@ -47922,16 +49314,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1092 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -47940,7 +49332,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -47956,16 +49348,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1095 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -47974,7 +49366,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -47987,7 +49379,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1096 this -488044861 +143110009 1 this.latitude 42361797 @@ -48000,7 +49392,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1096 this -488044861 +143110009 1 this.latitude 42361797 @@ -48016,7 +49408,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1097 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -48029,7 +49421,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1097 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -48045,16 +49437,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1095 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -48063,7 +49455,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -48079,16 +49471,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1098 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -48097,7 +49489,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -48110,7 +49502,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1099 this -1241276575 +706197430 1 this.latitude 42360097 @@ -48123,7 +49515,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1099 this -1241276575 +706197430 1 this.latitude 42360097 @@ -48139,7 +49531,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1100 this -215145189 +1325808650 1 this.latitude 42361797 @@ -48152,7 +49544,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1100 this -215145189 +1325808650 1 this.latitude 42361797 @@ -48168,16 +49560,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1098 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -48186,7 +49578,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -48202,16 +49594,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1101 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -48220,7 +49612,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -48233,7 +49625,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1102 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -48246,7 +49638,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1102 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -48262,7 +49654,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1103 this -2042495840 +525683462 1 this.latitude 42358941 @@ -48275,7 +49667,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1103 this -2042495840 +525683462 1 this.latitude 42358941 @@ -48291,16 +49683,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1101 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -48309,7 +49701,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -48325,16 +49717,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1104 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -48343,7 +49735,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -48356,7 +49748,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1105 this -990398217 +319977154 1 this.latitude 42358941 @@ -48369,7 +49761,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1105 this -990398217 +319977154 1 this.latitude 42358941 @@ -48385,7 +49777,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1106 this -841283083 +648680157 1 this.latitude 42360097 @@ -48398,7 +49790,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1106 this -841283083 +648680157 1 this.latitude 42360097 @@ -48414,16 +49806,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1104 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -48432,7 +49824,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -48448,16 +49840,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1107 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -48466,7 +49858,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -48479,7 +49871,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1108 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -48492,7 +49884,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1108 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -48508,7 +49900,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1109 this -1924582348 +133250414 1 this.latitude 42357097 @@ -48521,7 +49913,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1109 this -1924582348 +133250414 1 this.latitude 42357097 @@ -48537,16 +49929,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1107 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -48555,7 +49947,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -48571,16 +49963,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1110 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -48589,7 +49981,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -48602,7 +49994,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1111 this -817406040 +603650290 1 this.latitude 42357097 @@ -48615,7 +50007,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1111 this -817406040 +603650290 1 this.latitude 42357097 @@ -48631,7 +50023,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1112 this -1955915048 +762227630 1 this.latitude 42358941 @@ -48644,7 +50036,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1112 this -1955915048 +762227630 1 this.latitude 42358941 @@ -48660,16 +50052,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1110 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -48678,7 +50070,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -48694,16 +50086,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1113 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -48712,7 +50104,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -48725,7 +50117,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1114 this -157683534 +280744458 1 this.latitude 42357097 @@ -48738,7 +50130,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1114 this -157683534 +280744458 1 this.latitude 42357097 @@ -48754,7 +50146,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1115 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -48767,7 +50159,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1115 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -48783,16 +50175,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1113 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -48801,7 +50193,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -48817,16 +50209,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1116 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -48835,7 +50227,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -48848,7 +50240,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1117 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -48861,7 +50253,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1117 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -48877,7 +50269,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1118 this -2097514481 +527446182 1 this.latitude 42357097 @@ -48890,7 +50282,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1118 this -2097514481 +527446182 1 this.latitude 42357097 @@ -48906,16 +50298,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1116 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -48924,7 +50316,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -48940,16 +50332,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1119 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -48958,7 +50350,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -48971,7 +50363,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1120 this -1325808650 +961419791 1 this.latitude 42361797 @@ -48984,7 +50376,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1120 this -1325808650 +961419791 1 this.latitude 42361797 @@ -49000,7 +50392,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1121 this -510464020 +665188480 1 this.latitude 42362297 @@ -49013,7 +50405,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1121 this -510464020 +665188480 1 this.latitude 42362297 @@ -49029,16 +50421,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1119 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -49047,7 +50439,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -49063,16 +50455,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1122 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -49081,7 +50473,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -49094,7 +50486,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1123 this -525683462 +377478451 1 this.latitude 42362297 @@ -49107,7 +50499,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1123 this -525683462 +377478451 1 this.latitude 42362297 @@ -49123,7 +50515,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1124 this -1766724936 +513169028 1 this.latitude 42361797 @@ -49136,7 +50528,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1124 this -1766724936 +513169028 1 this.latitude 42361797 @@ -49152,16 +50544,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1122 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -49170,7 +50562,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -49186,16 +50578,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1125 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -49204,7 +50596,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -49217,7 +50609,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1126 this -648680157 +990416209 1 this.latitude 42362297 @@ -49230,7 +50622,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1126 this -648680157 +990416209 1 this.latitude 42362297 @@ -49246,7 +50638,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1127 this -1071097621 +394714818 1 this.latitude 42362597 @@ -49259,7 +50651,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1127 this -1071097621 +394714818 1 this.latitude 42362597 @@ -49275,16 +50667,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1125 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -49293,7 +50685,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -49309,16 +50701,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1128 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -49327,7 +50719,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -49340,7 +50732,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1129 this -133250414 +1791868405 1 this.latitude 42362597 @@ -49353,7 +50745,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1129 this -133250414 +1791868405 1 this.latitude 42362597 @@ -49369,7 +50761,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1130 this -85777802 +1260134048 1 this.latitude 42362297 @@ -49382,7 +50774,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1130 this -85777802 +1260134048 1 this.latitude 42362297 @@ -49398,16 +50790,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1128 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -49416,7 +50808,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -49432,16 +50824,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1131 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -49450,7 +50842,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -49463,7 +50855,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1132 this -762227630 +57748372 1 this.latitude 42362597 @@ -49476,7 +50868,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1132 this -762227630 +57748372 1 this.latitude 42362597 @@ -49492,7 +50884,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1133 this -1316864772 +674483268 1 this.latitude 42362697 @@ -49505,7 +50897,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1133 this -1316864772 +674483268 1 this.latitude 42362697 @@ -49521,16 +50913,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1131 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -49539,7 +50931,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -49555,16 +50947,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1134 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -49573,7 +50965,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -49586,7 +50978,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1135 this -1213216872 +764372388 1 this.latitude 42362697 @@ -49599,7 +50991,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1135 this -1213216872 +764372388 1 this.latitude 42362697 @@ -49615,7 +51007,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1136 this -1754638213 +459857341 1 this.latitude 42362597 @@ -49628,7 +51020,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1136 this -1754638213 +459857341 1 this.latitude 42362597 @@ -49644,16 +51036,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1134 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -49662,7 +51054,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -49678,16 +51070,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1137 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -49696,7 +51088,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -49709,7 +51101,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1138 this -527446182 +1399499405 1 this.latitude 42362697 @@ -49722,7 +51114,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1138 this -527446182 +1399499405 1 this.latitude 42362697 @@ -49738,7 +51130,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1139 this -1511785794 +238157928 1 this.latitude 42362997 @@ -49751,7 +51143,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1139 this -1511785794 +238157928 1 this.latitude 42362997 @@ -49767,16 +51159,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1137 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -49785,7 +51177,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -49801,16 +51193,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1140 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -49819,7 +51211,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -49832,7 +51224,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1141 this -665188480 +1883919084 1 this.latitude 42362997 @@ -49845,7 +51237,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1141 this -665188480 +1883919084 1 this.latitude 42362997 @@ -49861,7 +51253,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1142 this -489279267 +1860513229 1 this.latitude 42362697 @@ -49874,7 +51266,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1142 this -489279267 +1860513229 1 this.latitude 42362697 @@ -49890,16 +51282,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1140 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -49908,7 +51300,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -49924,16 +51316,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1143 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -49942,7 +51334,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -49955,7 +51347,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1144 this -513169028 +92150540 1 this.latitude 42362997 @@ -49968,7 +51360,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1144 this -513169028 +92150540 1 this.latitude 42362997 @@ -49984,7 +51376,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1145 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -49997,7 +51389,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1145 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -50013,16 +51405,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1143 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -50031,7 +51423,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -50047,16 +51439,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1146 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -50065,7 +51457,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -50078,7 +51470,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1147 this -394714818 +1166807841 1 this.latitude 42360297 @@ -50091,7 +51483,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1147 this -394714818 +1166807841 1 this.latitude 42360297 @@ -50107,7 +51499,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1148 this -1952779858 +289639718 1 this.latitude 42362997 @@ -50120,7 +51512,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1148 this -1952779858 +289639718 1 this.latitude 42362997 @@ -50136,16 +51528,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1146 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -50154,7 +51546,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -50170,16 +51562,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1149 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -50188,7 +51580,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -50201,7 +51593,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1150 this -394714818 +1166807841 1 this.latitude 42360297 @@ -50214,7 +51606,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1150 this -394714818 +1166807841 1 this.latitude 42360297 @@ -50230,7 +51622,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1151 this -1952779858 +289639718 1 this.latitude 42362997 @@ -50243,7 +51635,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1151 this -1952779858 +289639718 1 this.latitude 42362997 @@ -50259,16 +51651,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1149 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -50277,7 +51669,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -50293,16 +51685,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1152 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -50311,7 +51703,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -50324,7 +51716,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1153 this -488044861 +143110009 1 this.latitude 42361797 @@ -50337,7 +51729,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1153 this -488044861 +143110009 1 this.latitude 42361797 @@ -50353,7 +51745,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1154 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -50366,7 +51758,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1154 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -50382,16 +51774,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1152 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -50400,7 +51792,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -50416,16 +51808,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1155 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -50434,7 +51826,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -50447,7 +51839,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1156 this -1241276575 +706197430 1 this.latitude 42360097 @@ -50460,7 +51852,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1156 this -1241276575 +706197430 1 this.latitude 42360097 @@ -50476,7 +51868,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1157 this -215145189 +1325808650 1 this.latitude 42361797 @@ -50489,7 +51881,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1157 this -215145189 +1325808650 1 this.latitude 42361797 @@ -50505,16 +51897,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1155 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -50523,7 +51915,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -50539,16 +51931,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1158 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -50557,7 +51949,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -50570,7 +51962,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1159 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -50583,7 +51975,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1159 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -50599,7 +51991,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1160 this -2042495840 +525683462 1 this.latitude 42358941 @@ -50612,7 +52004,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1160 this -2042495840 +525683462 1 this.latitude 42358941 @@ -50628,16 +52020,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1158 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -50646,7 +52038,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -50662,16 +52054,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1161 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -50680,7 +52072,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -50693,7 +52085,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1162 this -990398217 +319977154 1 this.latitude 42358941 @@ -50706,7 +52098,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1162 this -990398217 +319977154 1 this.latitude 42358941 @@ -50722,7 +52114,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1163 this -841283083 +648680157 1 this.latitude 42360097 @@ -50735,7 +52127,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1163 this -841283083 +648680157 1 this.latitude 42360097 @@ -50751,16 +52143,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1161 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -50769,7 +52161,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -50785,16 +52177,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1164 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -50803,7 +52195,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -50816,7 +52208,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1165 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -50829,7 +52221,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1165 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -50845,7 +52237,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1166 this -1924582348 +133250414 1 this.latitude 42357097 @@ -50858,7 +52250,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1166 this -1924582348 +133250414 1 this.latitude 42357097 @@ -50874,16 +52266,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1164 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -50892,7 +52284,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -50908,16 +52300,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1167 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -50926,7 +52318,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -50939,7 +52331,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1168 this -817406040 +603650290 1 this.latitude 42357097 @@ -50952,7 +52344,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1168 this -817406040 +603650290 1 this.latitude 42357097 @@ -50968,7 +52360,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1169 this -1955915048 +762227630 1 this.latitude 42358941 @@ -50981,7 +52373,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1169 this -1955915048 +762227630 1 this.latitude 42358941 @@ -50997,16 +52389,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1167 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -51015,7 +52407,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -51031,16 +52423,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1170 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -51049,7 +52441,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -51062,7 +52454,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1171 this -157683534 +280744458 1 this.latitude 42357097 @@ -51075,7 +52467,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1171 this -157683534 +280744458 1 this.latitude 42357097 @@ -51091,7 +52483,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1172 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -51104,7 +52496,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1172 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -51120,16 +52512,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1170 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -51138,7 +52530,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -51154,16 +52546,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1173 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -51172,7 +52564,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -51185,7 +52577,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1174 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -51198,7 +52590,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1174 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -51214,7 +52606,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1175 this -2097514481 +527446182 1 this.latitude 42357097 @@ -51227,7 +52619,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1175 this -2097514481 +527446182 1 this.latitude 42357097 @@ -51243,16 +52635,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1173 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -51261,7 +52653,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -51277,16 +52669,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1176 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -51295,7 +52687,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -51308,7 +52700,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1177 this -1325808650 +961419791 1 this.latitude 42361797 @@ -51321,7 +52713,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1177 this -1325808650 +961419791 1 this.latitude 42361797 @@ -51337,7 +52729,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1178 this -510464020 +665188480 1 this.latitude 42362297 @@ -51350,7 +52742,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1178 this -510464020 +665188480 1 this.latitude 42362297 @@ -51366,16 +52758,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1176 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -51384,7 +52776,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -51400,16 +52792,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1179 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -51418,7 +52810,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -51431,7 +52823,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1180 this -525683462 +377478451 1 this.latitude 42362297 @@ -51444,7 +52836,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1180 this -525683462 +377478451 1 this.latitude 42362297 @@ -51460,7 +52852,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1181 this -1766724936 +513169028 1 this.latitude 42361797 @@ -51473,7 +52865,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1181 this -1766724936 +513169028 1 this.latitude 42361797 @@ -51489,16 +52881,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1179 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -51507,7 +52899,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -51523,16 +52915,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1182 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -51541,7 +52933,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -51554,7 +52946,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1183 this -648680157 +990416209 1 this.latitude 42362297 @@ -51567,7 +52959,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1183 this -648680157 +990416209 1 this.latitude 42362297 @@ -51583,7 +52975,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1184 this -1071097621 +394714818 1 this.latitude 42362597 @@ -51596,7 +52988,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1184 this -1071097621 +394714818 1 this.latitude 42362597 @@ -51612,16 +53004,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1182 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -51630,7 +53022,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -51646,16 +53038,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1185 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -51664,7 +53056,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -51677,7 +53069,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1186 this -133250414 +1791868405 1 this.latitude 42362597 @@ -51690,7 +53082,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1186 this -133250414 +1791868405 1 this.latitude 42362597 @@ -51706,7 +53098,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1187 this -85777802 +1260134048 1 this.latitude 42362297 @@ -51719,7 +53111,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1187 this -85777802 +1260134048 1 this.latitude 42362297 @@ -51735,16 +53127,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1185 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -51753,7 +53145,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -51769,16 +53161,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1188 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -51787,7 +53179,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -51800,7 +53192,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1189 this -762227630 +57748372 1 this.latitude 42362597 @@ -51813,7 +53205,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1189 this -762227630 +57748372 1 this.latitude 42362597 @@ -51829,7 +53221,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1190 this -1316864772 +674483268 1 this.latitude 42362697 @@ -51842,7 +53234,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1190 this -1316864772 +674483268 1 this.latitude 42362697 @@ -51858,16 +53250,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1188 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -51876,7 +53268,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -51892,16 +53284,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1191 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -51910,7 +53302,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -51923,7 +53315,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1192 this -1213216872 +764372388 1 this.latitude 42362697 @@ -51936,7 +53328,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1192 this -1213216872 +764372388 1 this.latitude 42362697 @@ -51952,7 +53344,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1193 this -1754638213 +459857341 1 this.latitude 42362597 @@ -51965,7 +53357,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1193 this -1754638213 +459857341 1 this.latitude 42362597 @@ -51981,16 +53373,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1191 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -51999,7 +53391,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -52015,16 +53407,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1194 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -52033,7 +53425,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -52046,7 +53438,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1195 this -527446182 +1399499405 1 this.latitude 42362697 @@ -52059,7 +53451,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1195 this -527446182 +1399499405 1 this.latitude 42362697 @@ -52075,7 +53467,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1196 this -1511785794 +238157928 1 this.latitude 42362997 @@ -52088,7 +53480,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1196 this -1511785794 +238157928 1 this.latitude 42362997 @@ -52104,16 +53496,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1194 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -52122,7 +53514,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -52138,16 +53530,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1197 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -52156,7 +53548,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -52169,7 +53561,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1198 this -665188480 +1883919084 1 this.latitude 42362997 @@ -52182,7 +53574,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1198 this -665188480 +1883919084 1 this.latitude 42362997 @@ -52198,7 +53590,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1199 this -489279267 +1860513229 1 this.latitude 42362697 @@ -52211,7 +53603,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1199 this -489279267 +1860513229 1 this.latitude 42362697 @@ -52227,16 +53619,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1197 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -52245,7 +53637,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -52261,16 +53653,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1200 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -52279,7 +53671,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -52292,7 +53684,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1201 this -513169028 +92150540 1 this.latitude 42362997 @@ -52305,7 +53697,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1201 this -513169028 +92150540 1 this.latitude 42362997 @@ -52321,7 +53713,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1202 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -52334,7 +53726,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1202 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -52350,16 +53742,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1200 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -52368,7 +53760,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -52384,16 +53776,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1203 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -52402,7 +53794,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -52415,7 +53807,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1204 this -394714818 +1166807841 1 this.latitude 42360297 @@ -52428,7 +53820,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1204 this -394714818 +1166807841 1 this.latitude 42360297 @@ -52444,7 +53836,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1205 this -1952779858 +289639718 1 this.latitude 42362997 @@ -52457,7 +53849,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1205 this -1952779858 +289639718 1 this.latitude 42362997 @@ -52473,16 +53865,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1203 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -52491,7 +53883,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -52517,7 +53909,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1206 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -52546,7 +53938,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1207 this -391618063 +1384722895 1 this.latitude 42358297 @@ -52565,13 +53957,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1208 name -81009902 +245475541 1 name.toString "Massachusetts_Ave" 1 p1 -1260134048 +1605283233 1 p1.latitude 42360297 @@ -52580,7 +53972,7 @@ p1.longitude -71095096 1 p2 -391618063 +1384722895 1 p2.latitude 42358297 @@ -52593,7 +53985,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1209 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -52602,7 +53994,7 @@ this.longitude -71095096 1 o -391618063 +1384722895 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -52612,7 +54004,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1209 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -52621,7 +54013,7 @@ this.longitude -71095096 1 o -391618063 +1384722895 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -52634,16 +54026,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1208 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -52652,7 +54044,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -52661,13 +54053,13 @@ this.p2.longitude -71093396 1 name -81009902 +245475541 1 name.toString "Massachusetts_Ave" 1 p1 -1260134048 +1605283233 1 p1.latitude 42360297 @@ -52676,7 +54068,7 @@ p1.longitude -71095096 1 p2 -391618063 +1384722895 1 p2.latitude 42358297 @@ -52689,16 +54081,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1210 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -52707,7 +54099,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -52720,7 +54112,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1211 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -52733,7 +54125,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1211 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -52749,7 +54141,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1212 this -391618063 +1384722895 1 this.latitude 42358297 @@ -52762,7 +54154,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1212 this -391618063 +1384722895 1 this.latitude 42358297 @@ -52778,16 +54170,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1210 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -52796,7 +54188,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -52812,16 +54204,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1213 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -52830,7 +54222,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -52843,7 +54235,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1214 this -488044861 +143110009 1 this.latitude 42361797 @@ -52856,7 +54248,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1214 this -488044861 +143110009 1 this.latitude 42361797 @@ -52872,7 +54264,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1215 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -52885,7 +54277,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1215 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -52901,16 +54293,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1213 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -52919,7 +54311,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -52935,16 +54327,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1216 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -52953,7 +54345,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -52966,7 +54358,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1217 this -1241276575 +706197430 1 this.latitude 42360097 @@ -52979,7 +54371,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1217 this -1241276575 +706197430 1 this.latitude 42360097 @@ -52995,7 +54387,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1218 this -215145189 +1325808650 1 this.latitude 42361797 @@ -53008,7 +54400,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1218 this -215145189 +1325808650 1 this.latitude 42361797 @@ -53024,16 +54416,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1216 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -53042,7 +54434,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -53058,16 +54450,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1219 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -53076,7 +54468,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -53089,7 +54481,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1220 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -53102,7 +54494,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1220 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -53118,7 +54510,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1221 this -2042495840 +525683462 1 this.latitude 42358941 @@ -53131,7 +54523,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1221 this -2042495840 +525683462 1 this.latitude 42358941 @@ -53147,16 +54539,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1219 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -53165,7 +54557,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -53181,16 +54573,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1222 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -53199,7 +54591,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -53212,7 +54604,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1223 this -990398217 +319977154 1 this.latitude 42358941 @@ -53225,7 +54617,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1223 this -990398217 +319977154 1 this.latitude 42358941 @@ -53241,7 +54633,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1224 this -841283083 +648680157 1 this.latitude 42360097 @@ -53254,7 +54646,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1224 this -841283083 +648680157 1 this.latitude 42360097 @@ -53270,16 +54662,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1222 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -53288,7 +54680,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -53304,16 +54696,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1225 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -53322,7 +54714,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -53335,7 +54727,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1226 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -53348,7 +54740,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1226 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -53364,7 +54756,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1227 this -1924582348 +133250414 1 this.latitude 42357097 @@ -53377,7 +54769,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1227 this -1924582348 +133250414 1 this.latitude 42357097 @@ -53393,16 +54785,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1225 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -53411,7 +54803,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -53427,16 +54819,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1228 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -53445,7 +54837,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -53458,7 +54850,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1229 this -817406040 +603650290 1 this.latitude 42357097 @@ -53471,7 +54863,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1229 this -817406040 +603650290 1 this.latitude 42357097 @@ -53487,7 +54879,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1230 this -1955915048 +762227630 1 this.latitude 42358941 @@ -53500,7 +54892,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1230 this -1955915048 +762227630 1 this.latitude 42358941 @@ -53516,16 +54908,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1228 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -53534,7 +54926,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -53550,16 +54942,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1231 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -53568,7 +54960,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -53581,7 +54973,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1232 this -157683534 +280744458 1 this.latitude 42357097 @@ -53594,7 +54986,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1232 this -157683534 +280744458 1 this.latitude 42357097 @@ -53610,7 +55002,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1233 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -53623,7 +55015,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1233 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -53639,16 +55031,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1231 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -53657,7 +55049,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -53673,16 +55065,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1234 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -53691,7 +55083,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -53704,7 +55096,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1235 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -53717,7 +55109,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1235 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -53733,7 +55125,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1236 this -2097514481 +527446182 1 this.latitude 42357097 @@ -53746,7 +55138,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1236 this -2097514481 +527446182 1 this.latitude 42357097 @@ -53762,16 +55154,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1234 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -53780,7 +55172,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -53796,16 +55188,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1237 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -53814,7 +55206,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -53827,7 +55219,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1238 this -1325808650 +961419791 1 this.latitude 42361797 @@ -53840,7 +55232,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1238 this -1325808650 +961419791 1 this.latitude 42361797 @@ -53856,7 +55248,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1239 this -510464020 +665188480 1 this.latitude 42362297 @@ -53869,7 +55261,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1239 this -510464020 +665188480 1 this.latitude 42362297 @@ -53885,16 +55277,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1237 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -53903,7 +55295,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -53919,16 +55311,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1240 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -53937,7 +55329,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -53950,7 +55342,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1241 this -525683462 +377478451 1 this.latitude 42362297 @@ -53963,7 +55355,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1241 this -525683462 +377478451 1 this.latitude 42362297 @@ -53979,7 +55371,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1242 this -1766724936 +513169028 1 this.latitude 42361797 @@ -53992,7 +55384,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1242 this -1766724936 +513169028 1 this.latitude 42361797 @@ -54008,16 +55400,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1240 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -54026,7 +55418,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -54042,16 +55434,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1243 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -54060,7 +55452,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -54073,7 +55465,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1244 this -648680157 +990416209 1 this.latitude 42362297 @@ -54086,7 +55478,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1244 this -648680157 +990416209 1 this.latitude 42362297 @@ -54102,7 +55494,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1245 this -1071097621 +394714818 1 this.latitude 42362597 @@ -54115,7 +55507,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1245 this -1071097621 +394714818 1 this.latitude 42362597 @@ -54131,16 +55523,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1243 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -54149,7 +55541,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -54165,16 +55557,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1246 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -54183,7 +55575,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -54196,7 +55588,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1247 this -133250414 +1791868405 1 this.latitude 42362597 @@ -54209,7 +55601,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1247 this -133250414 +1791868405 1 this.latitude 42362597 @@ -54225,7 +55617,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1248 this -85777802 +1260134048 1 this.latitude 42362297 @@ -54238,7 +55630,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1248 this -85777802 +1260134048 1 this.latitude 42362297 @@ -54254,16 +55646,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1246 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -54272,7 +55664,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -54288,16 +55680,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1249 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -54306,7 +55698,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -54319,7 +55711,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1250 this -762227630 +57748372 1 this.latitude 42362597 @@ -54332,7 +55724,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1250 this -762227630 +57748372 1 this.latitude 42362597 @@ -54348,7 +55740,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1251 this -1316864772 +674483268 1 this.latitude 42362697 @@ -54361,7 +55753,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1251 this -1316864772 +674483268 1 this.latitude 42362697 @@ -54377,16 +55769,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1249 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -54395,7 +55787,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -54411,16 +55803,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1252 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -54429,7 +55821,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -54442,7 +55834,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1253 this -1213216872 +764372388 1 this.latitude 42362697 @@ -54455,7 +55847,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1253 this -1213216872 +764372388 1 this.latitude 42362697 @@ -54471,7 +55863,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1254 this -1754638213 +459857341 1 this.latitude 42362597 @@ -54484,7 +55876,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1254 this -1754638213 +459857341 1 this.latitude 42362597 @@ -54500,16 +55892,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1252 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -54518,7 +55910,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -54534,16 +55926,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1255 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -54552,7 +55944,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -54565,7 +55957,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1256 this -527446182 +1399499405 1 this.latitude 42362697 @@ -54578,7 +55970,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1256 this -527446182 +1399499405 1 this.latitude 42362697 @@ -54594,7 +55986,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1257 this -1511785794 +238157928 1 this.latitude 42362997 @@ -54607,7 +55999,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1257 this -1511785794 +238157928 1 this.latitude 42362997 @@ -54623,16 +56015,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1255 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -54641,7 +56033,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -54657,16 +56049,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1258 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -54675,7 +56067,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -54688,7 +56080,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1259 this -665188480 +1883919084 1 this.latitude 42362997 @@ -54701,7 +56093,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1259 this -665188480 +1883919084 1 this.latitude 42362997 @@ -54717,7 +56109,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1260 this -489279267 +1860513229 1 this.latitude 42362697 @@ -54730,7 +56122,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1260 this -489279267 +1860513229 1 this.latitude 42362697 @@ -54746,16 +56138,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1258 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -54764,7 +56156,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -54780,16 +56172,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1261 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -54798,7 +56190,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -54811,7 +56203,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1262 this -513169028 +92150540 1 this.latitude 42362997 @@ -54824,7 +56216,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1262 this -513169028 +92150540 1 this.latitude 42362997 @@ -54840,7 +56232,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1263 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -54853,7 +56245,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1263 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -54869,16 +56261,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1261 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -54887,7 +56279,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -54903,16 +56295,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1264 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -54921,7 +56313,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -54934,7 +56326,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1265 this -394714818 +1166807841 1 this.latitude 42360297 @@ -54947,7 +56339,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1265 this -394714818 +1166807841 1 this.latitude 42360297 @@ -54963,7 +56355,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1266 this -1952779858 +289639718 1 this.latitude 42362997 @@ -54976,7 +56368,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1266 this -1952779858 +289639718 1 this.latitude 42362997 @@ -54992,16 +56384,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1264 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -55010,7 +56402,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -55026,16 +56418,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1267 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -55044,7 +56436,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -55057,7 +56449,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1268 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -55070,7 +56462,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1268 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -55086,7 +56478,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1269 this -391618063 +1384722895 1 this.latitude 42358297 @@ -55099,7 +56491,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1269 this -391618063 +1384722895 1 this.latitude 42358297 @@ -55115,16 +56507,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1267 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -55133,7 +56525,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -55149,16 +56541,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1270 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -55167,7 +56559,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -55180,7 +56572,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1271 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -55193,7 +56585,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1271 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -55209,7 +56601,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1272 this -391618063 +1384722895 1 this.latitude 42358297 @@ -55222,7 +56614,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1272 this -391618063 +1384722895 1 this.latitude 42358297 @@ -55238,16 +56630,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1270 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -55256,7 +56648,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -55272,16 +56664,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1273 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -55290,7 +56682,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -55303,7 +56695,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1274 this -488044861 +143110009 1 this.latitude 42361797 @@ -55316,7 +56708,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1274 this -488044861 +143110009 1 this.latitude 42361797 @@ -55332,7 +56724,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1275 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -55345,7 +56737,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1275 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -55361,16 +56753,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1273 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -55379,7 +56771,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -55395,16 +56787,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1276 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -55413,7 +56805,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -55426,7 +56818,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1277 this -1241276575 +706197430 1 this.latitude 42360097 @@ -55439,7 +56831,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1277 this -1241276575 +706197430 1 this.latitude 42360097 @@ -55455,7 +56847,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1278 this -215145189 +1325808650 1 this.latitude 42361797 @@ -55468,7 +56860,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1278 this -215145189 +1325808650 1 this.latitude 42361797 @@ -55484,16 +56876,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1276 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -55502,7 +56894,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -55518,16 +56910,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1279 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -55536,7 +56928,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -55549,7 +56941,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1280 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -55562,7 +56954,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1280 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -55578,7 +56970,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1281 this -2042495840 +525683462 1 this.latitude 42358941 @@ -55591,7 +56983,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1281 this -2042495840 +525683462 1 this.latitude 42358941 @@ -55607,16 +56999,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1279 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -55625,7 +57017,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -55641,16 +57033,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1282 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -55659,7 +57051,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -55672,7 +57064,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1283 this -990398217 +319977154 1 this.latitude 42358941 @@ -55685,7 +57077,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1283 this -990398217 +319977154 1 this.latitude 42358941 @@ -55701,7 +57093,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1284 this -841283083 +648680157 1 this.latitude 42360097 @@ -55714,7 +57106,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1284 this -841283083 +648680157 1 this.latitude 42360097 @@ -55730,16 +57122,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1282 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -55748,7 +57140,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -55764,16 +57156,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1285 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -55782,7 +57174,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -55795,7 +57187,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1286 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -55808,7 +57200,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1286 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -55824,7 +57216,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1287 this -1924582348 +133250414 1 this.latitude 42357097 @@ -55837,7 +57229,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1287 this -1924582348 +133250414 1 this.latitude 42357097 @@ -55853,16 +57245,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1285 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -55871,7 +57263,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -55887,16 +57279,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1288 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -55905,7 +57297,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -55918,7 +57310,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1289 this -817406040 +603650290 1 this.latitude 42357097 @@ -55931,7 +57323,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1289 this -817406040 +603650290 1 this.latitude 42357097 @@ -55947,7 +57339,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1290 this -1955915048 +762227630 1 this.latitude 42358941 @@ -55960,7 +57352,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1290 this -1955915048 +762227630 1 this.latitude 42358941 @@ -55976,16 +57368,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1288 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -55994,7 +57386,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -56010,16 +57402,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1291 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -56028,7 +57420,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -56041,7 +57433,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1292 this -157683534 +280744458 1 this.latitude 42357097 @@ -56054,7 +57446,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1292 this -157683534 +280744458 1 this.latitude 42357097 @@ -56070,7 +57462,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1293 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -56083,7 +57475,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1293 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -56099,16 +57491,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1291 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -56117,7 +57509,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -56133,16 +57525,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1294 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -56151,7 +57543,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -56164,7 +57556,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1295 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -56177,7 +57569,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1295 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -56193,7 +57585,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1296 this -2097514481 +527446182 1 this.latitude 42357097 @@ -56206,7 +57598,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1296 this -2097514481 +527446182 1 this.latitude 42357097 @@ -56222,16 +57614,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1294 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -56240,7 +57632,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -56256,16 +57648,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1297 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -56274,7 +57666,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -56287,7 +57679,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1298 this -1325808650 +961419791 1 this.latitude 42361797 @@ -56300,7 +57692,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1298 this -1325808650 +961419791 1 this.latitude 42361797 @@ -56316,7 +57708,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1299 this -510464020 +665188480 1 this.latitude 42362297 @@ -56329,7 +57721,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1299 this -510464020 +665188480 1 this.latitude 42362297 @@ -56345,16 +57737,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1297 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -56363,7 +57755,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -56379,16 +57771,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1300 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -56397,7 +57789,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -56410,7 +57802,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1301 this -525683462 +377478451 1 this.latitude 42362297 @@ -56423,7 +57815,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1301 this -525683462 +377478451 1 this.latitude 42362297 @@ -56439,7 +57831,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1302 this -1766724936 +513169028 1 this.latitude 42361797 @@ -56452,7 +57844,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1302 this -1766724936 +513169028 1 this.latitude 42361797 @@ -56468,16 +57860,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1300 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -56486,7 +57878,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -56502,16 +57894,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1303 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -56520,7 +57912,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -56533,7 +57925,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1304 this -648680157 +990416209 1 this.latitude 42362297 @@ -56546,7 +57938,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1304 this -648680157 +990416209 1 this.latitude 42362297 @@ -56562,7 +57954,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1305 this -1071097621 +394714818 1 this.latitude 42362597 @@ -56575,7 +57967,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1305 this -1071097621 +394714818 1 this.latitude 42362597 @@ -56591,16 +57983,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1303 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -56609,7 +58001,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -56625,16 +58017,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1306 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -56643,7 +58035,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -56656,7 +58048,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1307 this -133250414 +1791868405 1 this.latitude 42362597 @@ -56669,7 +58061,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1307 this -133250414 +1791868405 1 this.latitude 42362597 @@ -56685,7 +58077,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1308 this -85777802 +1260134048 1 this.latitude 42362297 @@ -56698,7 +58090,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1308 this -85777802 +1260134048 1 this.latitude 42362297 @@ -56714,16 +58106,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1306 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -56732,7 +58124,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -56748,16 +58140,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1309 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -56766,7 +58158,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -56779,7 +58171,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1310 this -762227630 +57748372 1 this.latitude 42362597 @@ -56792,7 +58184,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1310 this -762227630 +57748372 1 this.latitude 42362597 @@ -56808,7 +58200,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1311 this -1316864772 +674483268 1 this.latitude 42362697 @@ -56821,7 +58213,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1311 this -1316864772 +674483268 1 this.latitude 42362697 @@ -56837,16 +58229,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1309 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -56855,7 +58247,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -56871,16 +58263,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1312 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -56889,7 +58281,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -56902,7 +58294,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1313 this -1213216872 +764372388 1 this.latitude 42362697 @@ -56915,7 +58307,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1313 this -1213216872 +764372388 1 this.latitude 42362697 @@ -56931,7 +58323,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1314 this -1754638213 +459857341 1 this.latitude 42362597 @@ -56944,7 +58336,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1314 this -1754638213 +459857341 1 this.latitude 42362597 @@ -56960,16 +58352,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1312 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -56978,7 +58370,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -56994,16 +58386,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1315 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -57012,7 +58404,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -57025,7 +58417,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1316 this -527446182 +1399499405 1 this.latitude 42362697 @@ -57038,7 +58430,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1316 this -527446182 +1399499405 1 this.latitude 42362697 @@ -57054,7 +58446,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1317 this -1511785794 +238157928 1 this.latitude 42362997 @@ -57067,7 +58459,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1317 this -1511785794 +238157928 1 this.latitude 42362997 @@ -57083,16 +58475,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1315 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -57101,7 +58493,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -57117,16 +58509,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1318 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -57135,7 +58527,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -57148,7 +58540,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1319 this -665188480 +1883919084 1 this.latitude 42362997 @@ -57161,7 +58553,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1319 this -665188480 +1883919084 1 this.latitude 42362997 @@ -57177,7 +58569,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1320 this -489279267 +1860513229 1 this.latitude 42362697 @@ -57190,7 +58582,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1320 this -489279267 +1860513229 1 this.latitude 42362697 @@ -57206,16 +58598,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1318 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -57224,7 +58616,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -57240,16 +58632,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1321 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -57258,7 +58650,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -57271,7 +58663,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1322 this -513169028 +92150540 1 this.latitude 42362997 @@ -57284,7 +58676,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1322 this -513169028 +92150540 1 this.latitude 42362997 @@ -57300,7 +58692,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1323 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -57313,7 +58705,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1323 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -57329,16 +58721,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1321 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -57347,7 +58739,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -57363,16 +58755,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1324 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -57381,7 +58773,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -57394,7 +58786,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1325 this -394714818 +1166807841 1 this.latitude 42360297 @@ -57407,7 +58799,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1325 this -394714818 +1166807841 1 this.latitude 42360297 @@ -57423,7 +58815,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1326 this -1952779858 +289639718 1 this.latitude 42362997 @@ -57436,7 +58828,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1326 this -1952779858 +289639718 1 this.latitude 42362997 @@ -57452,16 +58844,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1324 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -57470,7 +58862,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -57486,16 +58878,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1327 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -57504,7 +58896,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -57517,7 +58909,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1328 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -57530,7 +58922,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1328 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -57546,7 +58938,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1329 this -391618063 +1384722895 1 this.latitude 42358297 @@ -57559,7 +58951,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1329 this -391618063 +1384722895 1 this.latitude 42358297 @@ -57575,16 +58967,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1327 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -57593,7 +58985,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -57619,7 +59011,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1330 this -674483268 +733957003 1 this.latitude 42358297 @@ -57648,7 +59040,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1331 this -54495403 +815992954 1 this.latitude 42360297 @@ -57667,13 +59059,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1332 name -665372494 +868737467 1 name.toString "Massachusetts_Ave" 1 p1 -674483268 +733957003 1 p1.latitude 42358297 @@ -57682,7 +59074,7 @@ p1.longitude -71093396 1 p2 -54495403 +815992954 1 p2.latitude 42360297 @@ -57695,7 +59087,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1333 this -674483268 +733957003 1 this.latitude 42358297 @@ -57704,7 +59096,7 @@ this.longitude -71093396 1 o -54495403 +815992954 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -57714,7 +59106,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1333 this -674483268 +733957003 1 this.latitude 42358297 @@ -57723,7 +59115,7 @@ this.longitude -71093396 1 o -54495403 +815992954 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -57736,16 +59128,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1332 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -57754,7 +59146,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -57763,13 +59155,13 @@ this.p2.longitude -71095096 1 name -665372494 +868737467 1 name.toString "Massachusetts_Ave" 1 p1 -674483268 +733957003 1 p1.latitude 42358297 @@ -57778,7 +59170,7 @@ p1.longitude -71093396 1 p2 -54495403 +815992954 1 p2.latitude 42360297 @@ -57791,16 +59183,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1334 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -57809,7 +59201,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -57822,7 +59214,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1335 this -674483268 +733957003 1 this.latitude 42358297 @@ -57835,7 +59227,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1335 this -674483268 +733957003 1 this.latitude 42358297 @@ -57851,7 +59243,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1336 this -54495403 +815992954 1 this.latitude 42360297 @@ -57864,7 +59256,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1336 this -54495403 +815992954 1 this.latitude 42360297 @@ -57880,16 +59272,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1334 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -57898,7 +59290,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -57914,16 +59306,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1337 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -57932,7 +59324,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -57945,7 +59337,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1338 this -488044861 +143110009 1 this.latitude 42361797 @@ -57958,7 +59350,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1338 this -488044861 +143110009 1 this.latitude 42361797 @@ -57974,7 +59366,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1339 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -57987,7 +59379,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1339 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -58003,16 +59395,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1337 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -58021,7 +59413,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -58037,16 +59429,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1340 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -58055,7 +59447,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -58068,7 +59460,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1341 this -1241276575 +706197430 1 this.latitude 42360097 @@ -58081,7 +59473,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1341 this -1241276575 +706197430 1 this.latitude 42360097 @@ -58097,7 +59489,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1342 this -215145189 +1325808650 1 this.latitude 42361797 @@ -58110,7 +59502,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1342 this -215145189 +1325808650 1 this.latitude 42361797 @@ -58126,16 +59518,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1340 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -58144,7 +59536,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -58160,16 +59552,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1343 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -58178,7 +59570,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -58191,7 +59583,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1344 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -58204,7 +59596,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1344 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -58220,7 +59612,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1345 this -2042495840 +525683462 1 this.latitude 42358941 @@ -58233,7 +59625,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1345 this -2042495840 +525683462 1 this.latitude 42358941 @@ -58249,16 +59641,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1343 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -58267,7 +59659,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -58283,16 +59675,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1346 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -58301,7 +59693,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -58314,7 +59706,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1347 this -990398217 +319977154 1 this.latitude 42358941 @@ -58327,7 +59719,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1347 this -990398217 +319977154 1 this.latitude 42358941 @@ -58343,7 +59735,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1348 this -841283083 +648680157 1 this.latitude 42360097 @@ -58356,7 +59748,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1348 this -841283083 +648680157 1 this.latitude 42360097 @@ -58372,16 +59764,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1346 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -58390,7 +59782,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -58406,16 +59798,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1349 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -58424,7 +59816,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -58437,7 +59829,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1350 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -58450,7 +59842,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1350 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -58466,7 +59858,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1351 this -1924582348 +133250414 1 this.latitude 42357097 @@ -58479,7 +59871,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1351 this -1924582348 +133250414 1 this.latitude 42357097 @@ -58495,16 +59887,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1349 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -58513,7 +59905,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -58529,16 +59921,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1352 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -58547,7 +59939,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -58560,7 +59952,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1353 this -817406040 +603650290 1 this.latitude 42357097 @@ -58573,7 +59965,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1353 this -817406040 +603650290 1 this.latitude 42357097 @@ -58589,7 +59981,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1354 this -1955915048 +762227630 1 this.latitude 42358941 @@ -58602,7 +59994,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1354 this -1955915048 +762227630 1 this.latitude 42358941 @@ -58618,16 +60010,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1352 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -58636,7 +60028,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -58652,16 +60044,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1355 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -58670,7 +60062,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -58683,7 +60075,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1356 this -157683534 +280744458 1 this.latitude 42357097 @@ -58696,7 +60088,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1356 this -157683534 +280744458 1 this.latitude 42357097 @@ -58712,7 +60104,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1357 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -58725,7 +60117,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1357 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -58741,16 +60133,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1355 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -58759,7 +60151,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -58775,16 +60167,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1358 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -58793,7 +60185,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -58806,7 +60198,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1359 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -58819,7 +60211,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1359 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -58835,7 +60227,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1360 this -2097514481 +527446182 1 this.latitude 42357097 @@ -58848,7 +60240,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1360 this -2097514481 +527446182 1 this.latitude 42357097 @@ -58864,16 +60256,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1358 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -58882,7 +60274,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -58898,16 +60290,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1361 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -58916,7 +60308,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -58929,7 +60321,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1362 this -1325808650 +961419791 1 this.latitude 42361797 @@ -58942,7 +60334,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1362 this -1325808650 +961419791 1 this.latitude 42361797 @@ -58958,7 +60350,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1363 this -510464020 +665188480 1 this.latitude 42362297 @@ -58971,7 +60363,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1363 this -510464020 +665188480 1 this.latitude 42362297 @@ -58987,16 +60379,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1361 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -59005,7 +60397,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -59021,16 +60413,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1364 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -59039,7 +60431,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -59052,7 +60444,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1365 this -525683462 +377478451 1 this.latitude 42362297 @@ -59065,7 +60457,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1365 this -525683462 +377478451 1 this.latitude 42362297 @@ -59081,7 +60473,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1366 this -1766724936 +513169028 1 this.latitude 42361797 @@ -59094,7 +60486,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1366 this -1766724936 +513169028 1 this.latitude 42361797 @@ -59110,16 +60502,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1364 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -59128,7 +60520,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -59144,16 +60536,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1367 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -59162,7 +60554,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -59175,7 +60567,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1368 this -648680157 +990416209 1 this.latitude 42362297 @@ -59188,7 +60580,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1368 this -648680157 +990416209 1 this.latitude 42362297 @@ -59204,7 +60596,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1369 this -1071097621 +394714818 1 this.latitude 42362597 @@ -59217,7 +60609,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1369 this -1071097621 +394714818 1 this.latitude 42362597 @@ -59233,16 +60625,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1367 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -59251,7 +60643,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -59267,16 +60659,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1370 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -59285,7 +60677,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -59298,7 +60690,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1371 this -133250414 +1791868405 1 this.latitude 42362597 @@ -59311,7 +60703,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1371 this -133250414 +1791868405 1 this.latitude 42362597 @@ -59327,7 +60719,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1372 this -85777802 +1260134048 1 this.latitude 42362297 @@ -59340,7 +60732,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1372 this -85777802 +1260134048 1 this.latitude 42362297 @@ -59356,16 +60748,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1370 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -59374,7 +60766,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -59390,16 +60782,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1373 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -59408,7 +60800,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -59421,7 +60813,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1374 this -762227630 +57748372 1 this.latitude 42362597 @@ -59434,7 +60826,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1374 this -762227630 +57748372 1 this.latitude 42362597 @@ -59450,7 +60842,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1375 this -1316864772 +674483268 1 this.latitude 42362697 @@ -59463,7 +60855,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1375 this -1316864772 +674483268 1 this.latitude 42362697 @@ -59479,16 +60871,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1373 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -59497,7 +60889,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -59513,16 +60905,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1376 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -59531,7 +60923,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -59544,7 +60936,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1377 this -1213216872 +764372388 1 this.latitude 42362697 @@ -59557,7 +60949,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1377 this -1213216872 +764372388 1 this.latitude 42362697 @@ -59573,7 +60965,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1378 this -1754638213 +459857341 1 this.latitude 42362597 @@ -59586,7 +60978,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1378 this -1754638213 +459857341 1 this.latitude 42362597 @@ -59602,16 +60994,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1376 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -59620,7 +61012,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -59636,16 +61028,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1379 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -59654,7 +61046,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -59667,7 +61059,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1380 this -527446182 +1399499405 1 this.latitude 42362697 @@ -59680,7 +61072,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1380 this -527446182 +1399499405 1 this.latitude 42362697 @@ -59696,7 +61088,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1381 this -1511785794 +238157928 1 this.latitude 42362997 @@ -59709,7 +61101,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1381 this -1511785794 +238157928 1 this.latitude 42362997 @@ -59725,16 +61117,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1379 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -59743,7 +61135,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -59759,16 +61151,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1382 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -59777,7 +61169,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -59790,7 +61182,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1383 this -665188480 +1883919084 1 this.latitude 42362997 @@ -59803,7 +61195,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1383 this -665188480 +1883919084 1 this.latitude 42362997 @@ -59819,7 +61211,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1384 this -489279267 +1860513229 1 this.latitude 42362697 @@ -59832,7 +61224,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1384 this -489279267 +1860513229 1 this.latitude 42362697 @@ -59848,16 +61240,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1382 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -59866,7 +61258,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -59882,16 +61274,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1385 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -59900,7 +61292,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -59913,7 +61305,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1386 this -513169028 +92150540 1 this.latitude 42362997 @@ -59926,7 +61318,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1386 this -513169028 +92150540 1 this.latitude 42362997 @@ -59942,7 +61334,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1387 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -59955,7 +61347,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1387 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -59971,16 +61363,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1385 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -59989,7 +61381,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -60005,16 +61397,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1388 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -60023,7 +61415,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -60036,7 +61428,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1389 this -394714818 +1166807841 1 this.latitude 42360297 @@ -60049,7 +61441,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1389 this -394714818 +1166807841 1 this.latitude 42360297 @@ -60065,7 +61457,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1390 this -1952779858 +289639718 1 this.latitude 42362997 @@ -60078,7 +61470,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1390 this -1952779858 +289639718 1 this.latitude 42362997 @@ -60094,16 +61486,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1388 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -60112,7 +61504,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -60128,16 +61520,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1391 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -60146,7 +61538,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -60159,7 +61551,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1392 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -60172,7 +61564,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1392 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -60188,7 +61580,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1393 this -391618063 +1384722895 1 this.latitude 42358297 @@ -60201,7 +61593,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1393 this -391618063 +1384722895 1 this.latitude 42358297 @@ -60217,16 +61609,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1391 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -60235,7 +61627,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -60251,16 +61643,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1394 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -60269,7 +61661,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -60282,7 +61674,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1395 this -674483268 +733957003 1 this.latitude 42358297 @@ -60295,7 +61687,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1395 this -674483268 +733957003 1 this.latitude 42358297 @@ -60311,7 +61703,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1396 this -54495403 +815992954 1 this.latitude 42360297 @@ -60324,7 +61716,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1396 this -54495403 +815992954 1 this.latitude 42360297 @@ -60340,16 +61732,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1394 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -60358,7 +61750,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -60374,16 +61766,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1397 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -60392,7 +61784,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -60405,7 +61797,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1398 this -674483268 +733957003 1 this.latitude 42358297 @@ -60418,7 +61810,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1398 this -674483268 +733957003 1 this.latitude 42358297 @@ -60434,7 +61826,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1399 this -54495403 +815992954 1 this.latitude 42360297 @@ -60447,7 +61839,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1399 this -54495403 +815992954 1 this.latitude 42360297 @@ -60463,16 +61855,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1397 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -60481,7 +61873,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -60497,16 +61889,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1400 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -60515,7 +61907,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -60528,7 +61920,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1401 this -488044861 +143110009 1 this.latitude 42361797 @@ -60541,7 +61933,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1401 this -488044861 +143110009 1 this.latitude 42361797 @@ -60557,7 +61949,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1402 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -60570,7 +61962,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1402 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -60586,16 +61978,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1400 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -60604,7 +61996,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -60620,16 +62012,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1403 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -60638,7 +62030,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -60651,7 +62043,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1404 this -1241276575 +706197430 1 this.latitude 42360097 @@ -60664,7 +62056,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1404 this -1241276575 +706197430 1 this.latitude 42360097 @@ -60680,7 +62072,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1405 this -215145189 +1325808650 1 this.latitude 42361797 @@ -60693,7 +62085,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1405 this -215145189 +1325808650 1 this.latitude 42361797 @@ -60709,16 +62101,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1403 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -60727,7 +62119,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -60743,16 +62135,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1406 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -60761,7 +62153,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -60774,7 +62166,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1407 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -60787,7 +62179,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1407 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -60803,7 +62195,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1408 this -2042495840 +525683462 1 this.latitude 42358941 @@ -60816,7 +62208,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1408 this -2042495840 +525683462 1 this.latitude 42358941 @@ -60832,16 +62224,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1406 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -60850,7 +62242,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -60866,16 +62258,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1409 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -60884,7 +62276,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -60897,7 +62289,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1410 this -990398217 +319977154 1 this.latitude 42358941 @@ -60910,7 +62302,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1410 this -990398217 +319977154 1 this.latitude 42358941 @@ -60926,7 +62318,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1411 this -841283083 +648680157 1 this.latitude 42360097 @@ -60939,7 +62331,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1411 this -841283083 +648680157 1 this.latitude 42360097 @@ -60955,16 +62347,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1409 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -60973,7 +62365,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -60989,16 +62381,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1412 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -61007,7 +62399,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -61020,7 +62412,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1413 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -61033,7 +62425,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1413 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -61049,7 +62441,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1414 this -1924582348 +133250414 1 this.latitude 42357097 @@ -61062,7 +62454,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1414 this -1924582348 +133250414 1 this.latitude 42357097 @@ -61078,16 +62470,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1412 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -61096,7 +62488,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -61112,16 +62504,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1415 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -61130,7 +62522,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -61143,7 +62535,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1416 this -817406040 +603650290 1 this.latitude 42357097 @@ -61156,7 +62548,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1416 this -817406040 +603650290 1 this.latitude 42357097 @@ -61172,7 +62564,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1417 this -1955915048 +762227630 1 this.latitude 42358941 @@ -61185,7 +62577,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1417 this -1955915048 +762227630 1 this.latitude 42358941 @@ -61201,16 +62593,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1415 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -61219,7 +62611,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -61235,16 +62627,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1418 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -61253,7 +62645,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -61266,7 +62658,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1419 this -157683534 +280744458 1 this.latitude 42357097 @@ -61279,7 +62671,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1419 this -157683534 +280744458 1 this.latitude 42357097 @@ -61295,7 +62687,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1420 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -61308,7 +62700,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1420 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -61324,16 +62716,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1418 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -61342,7 +62734,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -61358,16 +62750,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1421 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -61376,7 +62768,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -61389,7 +62781,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1422 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -61402,7 +62794,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1422 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -61418,7 +62810,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1423 this -2097514481 +527446182 1 this.latitude 42357097 @@ -61431,7 +62823,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1423 this -2097514481 +527446182 1 this.latitude 42357097 @@ -61447,16 +62839,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1421 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -61465,7 +62857,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -61481,16 +62873,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1424 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -61499,7 +62891,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -61512,7 +62904,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1425 this -1325808650 +961419791 1 this.latitude 42361797 @@ -61525,7 +62917,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1425 this -1325808650 +961419791 1 this.latitude 42361797 @@ -61541,7 +62933,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1426 this -510464020 +665188480 1 this.latitude 42362297 @@ -61554,7 +62946,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1426 this -510464020 +665188480 1 this.latitude 42362297 @@ -61570,16 +62962,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1424 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -61588,7 +62980,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -61604,16 +62996,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1427 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -61622,7 +63014,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -61635,7 +63027,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1428 this -525683462 +377478451 1 this.latitude 42362297 @@ -61648,7 +63040,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1428 this -525683462 +377478451 1 this.latitude 42362297 @@ -61664,7 +63056,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1429 this -1766724936 +513169028 1 this.latitude 42361797 @@ -61677,7 +63069,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1429 this -1766724936 +513169028 1 this.latitude 42361797 @@ -61693,16 +63085,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1427 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -61711,7 +63103,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -61727,16 +63119,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1430 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -61745,7 +63137,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -61758,7 +63150,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1431 this -648680157 +990416209 1 this.latitude 42362297 @@ -61771,7 +63163,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1431 this -648680157 +990416209 1 this.latitude 42362297 @@ -61787,7 +63179,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1432 this -1071097621 +394714818 1 this.latitude 42362597 @@ -61800,7 +63192,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1432 this -1071097621 +394714818 1 this.latitude 42362597 @@ -61816,16 +63208,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1430 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -61834,7 +63226,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -61850,16 +63242,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1433 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -61868,7 +63260,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -61881,7 +63273,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1434 this -133250414 +1791868405 1 this.latitude 42362597 @@ -61894,7 +63286,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1434 this -133250414 +1791868405 1 this.latitude 42362597 @@ -61910,7 +63302,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1435 this -85777802 +1260134048 1 this.latitude 42362297 @@ -61923,7 +63315,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1435 this -85777802 +1260134048 1 this.latitude 42362297 @@ -61939,16 +63331,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1433 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -61957,7 +63349,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -61973,16 +63365,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1436 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -61991,7 +63383,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -62004,7 +63396,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1437 this -762227630 +57748372 1 this.latitude 42362597 @@ -62017,7 +63409,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1437 this -762227630 +57748372 1 this.latitude 42362597 @@ -62033,7 +63425,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1438 this -1316864772 +674483268 1 this.latitude 42362697 @@ -62046,7 +63438,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1438 this -1316864772 +674483268 1 this.latitude 42362697 @@ -62062,16 +63454,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1436 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -62080,7 +63472,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -62096,16 +63488,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1439 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -62114,7 +63506,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -62127,7 +63519,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1440 this -1213216872 +764372388 1 this.latitude 42362697 @@ -62140,7 +63532,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1440 this -1213216872 +764372388 1 this.latitude 42362697 @@ -62156,7 +63548,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1441 this -1754638213 +459857341 1 this.latitude 42362597 @@ -62169,7 +63561,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1441 this -1754638213 +459857341 1 this.latitude 42362597 @@ -62185,16 +63577,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1439 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -62203,7 +63595,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -62219,16 +63611,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1442 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -62237,7 +63629,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -62250,7 +63642,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1443 this -527446182 +1399499405 1 this.latitude 42362697 @@ -62263,7 +63655,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1443 this -527446182 +1399499405 1 this.latitude 42362697 @@ -62279,7 +63671,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1444 this -1511785794 +238157928 1 this.latitude 42362997 @@ -62292,7 +63684,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1444 this -1511785794 +238157928 1 this.latitude 42362997 @@ -62308,16 +63700,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1442 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -62326,7 +63718,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -62342,16 +63734,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1445 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -62360,7 +63752,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -62373,7 +63765,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1446 this -665188480 +1883919084 1 this.latitude 42362997 @@ -62386,7 +63778,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1446 this -665188480 +1883919084 1 this.latitude 42362997 @@ -62402,7 +63794,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1447 this -489279267 +1860513229 1 this.latitude 42362697 @@ -62415,7 +63807,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1447 this -489279267 +1860513229 1 this.latitude 42362697 @@ -62431,16 +63823,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1445 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -62449,7 +63841,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -62465,16 +63857,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1448 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -62483,7 +63875,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -62496,7 +63888,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1449 this -513169028 +92150540 1 this.latitude 42362997 @@ -62509,7 +63901,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1449 this -513169028 +92150540 1 this.latitude 42362997 @@ -62525,7 +63917,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1450 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -62538,7 +63930,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1450 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -62554,16 +63946,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1448 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -62572,7 +63964,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -62588,16 +63980,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1451 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -62606,7 +63998,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -62619,7 +64011,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1452 this -394714818 +1166807841 1 this.latitude 42360297 @@ -62632,7 +64024,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1452 this -394714818 +1166807841 1 this.latitude 42360297 @@ -62648,7 +64040,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1453 this -1952779858 +289639718 1 this.latitude 42362997 @@ -62661,7 +64053,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1453 this -1952779858 +289639718 1 this.latitude 42362997 @@ -62677,16 +64069,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1451 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -62695,7 +64087,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -62711,16 +64103,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1454 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -62729,7 +64121,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -62742,7 +64134,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1455 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -62755,7 +64147,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1455 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -62771,7 +64163,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1456 this -391618063 +1384722895 1 this.latitude 42358297 @@ -62784,7 +64176,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1456 this -391618063 +1384722895 1 this.latitude 42358297 @@ -62800,16 +64192,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1454 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -62818,7 +64210,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -62834,16 +64226,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1457 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -62852,7 +64244,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -62865,7 +64257,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1458 this -674483268 +733957003 1 this.latitude 42358297 @@ -62878,7 +64270,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1458 this -674483268 +733957003 1 this.latitude 42358297 @@ -62894,7 +64286,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1459 this -54495403 +815992954 1 this.latitude 42360297 @@ -62907,7 +64299,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1459 this -54495403 +815992954 1 this.latitude 42360297 @@ -62923,16 +64315,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1457 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -62941,7 +64333,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -62967,7 +64359,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1460 this -459857341 +1392425346 1 this.latitude 42358297 @@ -62996,7 +64388,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1461 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -63015,13 +64407,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1462 name -94264799 +1991294891 1 name.toString "Massachusetts_Ave" 1 p1 -459857341 +1392425346 1 p1.latitude 42358297 @@ -63030,7 +64422,7 @@ p1.longitude -71093396 1 p2 -1684890795 +2054574951 1 p2.latitude 42357097 @@ -63043,7 +64435,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1463 this -459857341 +1392425346 1 this.latitude 42358297 @@ -63052,7 +64444,7 @@ this.longitude -71093396 1 o -1684890795 +2054574951 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -63062,7 +64454,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1463 this -459857341 +1392425346 1 this.latitude 42358297 @@ -63071,7 +64463,7 @@ this.longitude -71093396 1 o -1684890795 +2054574951 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -63084,16 +64476,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1462 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -63102,7 +64494,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -63111,13 +64503,13 @@ this.p2.longitude -71092896 1 name -94264799 +1991294891 1 name.toString "Massachusetts_Ave" 1 p1 -459857341 +1392425346 1 p1.latitude 42358297 @@ -63126,7 +64518,7 @@ p1.longitude -71093396 1 p2 -1684890795 +2054574951 1 p2.latitude 42357097 @@ -63139,16 +64531,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1464 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -63157,7 +64549,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -63170,7 +64562,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1465 this -459857341 +1392425346 1 this.latitude 42358297 @@ -63183,7 +64575,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1465 this -459857341 +1392425346 1 this.latitude 42358297 @@ -63199,7 +64591,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1466 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -63212,7 +64604,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1466 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -63228,16 +64620,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1464 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -63246,7 +64638,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -63262,16 +64654,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1467 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -63280,7 +64672,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -63293,7 +64685,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1468 this -488044861 +143110009 1 this.latitude 42361797 @@ -63306,7 +64698,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1468 this -488044861 +143110009 1 this.latitude 42361797 @@ -63322,7 +64714,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1469 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -63335,7 +64727,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1469 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -63351,16 +64743,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1467 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -63369,7 +64761,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -63385,16 +64777,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1470 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -63403,7 +64795,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -63416,7 +64808,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1471 this -1241276575 +706197430 1 this.latitude 42360097 @@ -63429,7 +64821,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1471 this -1241276575 +706197430 1 this.latitude 42360097 @@ -63445,7 +64837,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1472 this -215145189 +1325808650 1 this.latitude 42361797 @@ -63458,7 +64850,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1472 this -215145189 +1325808650 1 this.latitude 42361797 @@ -63474,16 +64866,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1470 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -63492,7 +64884,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -63508,16 +64900,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1473 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -63526,7 +64918,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -63539,7 +64931,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1474 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -63552,7 +64944,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1474 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -63568,7 +64960,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1475 this -2042495840 +525683462 1 this.latitude 42358941 @@ -63581,7 +64973,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1475 this -2042495840 +525683462 1 this.latitude 42358941 @@ -63597,16 +64989,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1473 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -63615,7 +65007,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -63631,16 +65023,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1476 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -63649,7 +65041,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -63662,7 +65054,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1477 this -990398217 +319977154 1 this.latitude 42358941 @@ -63675,7 +65067,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1477 this -990398217 +319977154 1 this.latitude 42358941 @@ -63691,7 +65083,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1478 this -841283083 +648680157 1 this.latitude 42360097 @@ -63704,7 +65096,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1478 this -841283083 +648680157 1 this.latitude 42360097 @@ -63720,16 +65112,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1476 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -63738,7 +65130,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -63754,16 +65146,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1479 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -63772,7 +65164,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -63785,7 +65177,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1480 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -63798,7 +65190,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1480 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -63814,7 +65206,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1481 this -1924582348 +133250414 1 this.latitude 42357097 @@ -63827,7 +65219,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1481 this -1924582348 +133250414 1 this.latitude 42357097 @@ -63843,16 +65235,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1479 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -63861,7 +65253,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -63877,16 +65269,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1482 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -63895,7 +65287,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -63908,7 +65300,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1483 this -817406040 +603650290 1 this.latitude 42357097 @@ -63921,7 +65313,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1483 this -817406040 +603650290 1 this.latitude 42357097 @@ -63937,7 +65329,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1484 this -1955915048 +762227630 1 this.latitude 42358941 @@ -63950,7 +65342,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1484 this -1955915048 +762227630 1 this.latitude 42358941 @@ -63966,16 +65358,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1482 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -63984,7 +65376,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -64000,16 +65392,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1485 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -64018,7 +65410,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -64031,7 +65423,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1486 this -157683534 +280744458 1 this.latitude 42357097 @@ -64044,7 +65436,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1486 this -157683534 +280744458 1 this.latitude 42357097 @@ -64060,7 +65452,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1487 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -64073,7 +65465,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1487 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -64089,16 +65481,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1485 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -64107,7 +65499,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -64123,16 +65515,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1488 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -64141,7 +65533,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -64154,7 +65546,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1489 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -64167,7 +65559,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1489 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -64183,7 +65575,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1490 this -2097514481 +527446182 1 this.latitude 42357097 @@ -64196,7 +65588,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1490 this -2097514481 +527446182 1 this.latitude 42357097 @@ -64212,16 +65604,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1488 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -64230,7 +65622,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -64246,16 +65638,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1491 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -64264,7 +65656,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -64277,7 +65669,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1492 this -1325808650 +961419791 1 this.latitude 42361797 @@ -64290,7 +65682,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1492 this -1325808650 +961419791 1 this.latitude 42361797 @@ -64306,7 +65698,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1493 this -510464020 +665188480 1 this.latitude 42362297 @@ -64319,7 +65711,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1493 this -510464020 +665188480 1 this.latitude 42362297 @@ -64335,16 +65727,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1491 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -64353,7 +65745,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -64369,16 +65761,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1494 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -64387,7 +65779,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -64400,7 +65792,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1495 this -525683462 +377478451 1 this.latitude 42362297 @@ -64413,7 +65805,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1495 this -525683462 +377478451 1 this.latitude 42362297 @@ -64429,7 +65821,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1496 this -1766724936 +513169028 1 this.latitude 42361797 @@ -64442,7 +65834,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1496 this -1766724936 +513169028 1 this.latitude 42361797 @@ -64458,16 +65850,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1494 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -64476,7 +65868,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -64492,16 +65884,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1497 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -64510,7 +65902,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -64523,7 +65915,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1498 this -648680157 +990416209 1 this.latitude 42362297 @@ -64536,7 +65928,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1498 this -648680157 +990416209 1 this.latitude 42362297 @@ -64552,7 +65944,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1499 this -1071097621 +394714818 1 this.latitude 42362597 @@ -64565,7 +65957,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1499 this -1071097621 +394714818 1 this.latitude 42362597 @@ -64581,16 +65973,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1497 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -64599,7 +65991,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -64615,16 +66007,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1500 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -64633,7 +66025,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -64646,7 +66038,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1501 this -133250414 +1791868405 1 this.latitude 42362597 @@ -64659,7 +66051,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1501 this -133250414 +1791868405 1 this.latitude 42362597 @@ -64675,7 +66067,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1502 this -85777802 +1260134048 1 this.latitude 42362297 @@ -64688,7 +66080,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1502 this -85777802 +1260134048 1 this.latitude 42362297 @@ -64704,16 +66096,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1500 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -64722,7 +66114,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -64738,16 +66130,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1503 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -64756,7 +66148,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -64769,7 +66161,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1504 this -762227630 +57748372 1 this.latitude 42362597 @@ -64782,7 +66174,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1504 this -762227630 +57748372 1 this.latitude 42362597 @@ -64798,7 +66190,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1505 this -1316864772 +674483268 1 this.latitude 42362697 @@ -64811,7 +66203,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1505 this -1316864772 +674483268 1 this.latitude 42362697 @@ -64827,16 +66219,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1503 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -64845,7 +66237,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -64861,16 +66253,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1506 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -64879,7 +66271,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -64892,7 +66284,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1507 this -1213216872 +764372388 1 this.latitude 42362697 @@ -64905,7 +66297,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1507 this -1213216872 +764372388 1 this.latitude 42362697 @@ -64921,7 +66313,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1508 this -1754638213 +459857341 1 this.latitude 42362597 @@ -64934,7 +66326,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1508 this -1754638213 +459857341 1 this.latitude 42362597 @@ -64950,16 +66342,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1506 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -64968,7 +66360,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -64984,16 +66376,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1509 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -65002,7 +66394,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -65015,7 +66407,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1510 this -527446182 +1399499405 1 this.latitude 42362697 @@ -65028,7 +66420,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1510 this -527446182 +1399499405 1 this.latitude 42362697 @@ -65044,7 +66436,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1511 this -1511785794 +238157928 1 this.latitude 42362997 @@ -65057,7 +66449,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1511 this -1511785794 +238157928 1 this.latitude 42362997 @@ -65073,16 +66465,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1509 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -65091,7 +66483,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -65107,16 +66499,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1512 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -65125,7 +66517,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -65138,7 +66530,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1513 this -665188480 +1883919084 1 this.latitude 42362997 @@ -65151,7 +66543,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1513 this -665188480 +1883919084 1 this.latitude 42362997 @@ -65167,7 +66559,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1514 this -489279267 +1860513229 1 this.latitude 42362697 @@ -65180,7 +66572,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1514 this -489279267 +1860513229 1 this.latitude 42362697 @@ -65196,16 +66588,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1512 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -65214,7 +66606,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -65230,16 +66622,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1515 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -65248,7 +66640,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -65261,7 +66653,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1516 this -513169028 +92150540 1 this.latitude 42362997 @@ -65274,7 +66666,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1516 this -513169028 +92150540 1 this.latitude 42362997 @@ -65290,7 +66682,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1517 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -65303,7 +66695,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1517 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -65319,16 +66711,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1515 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -65337,7 +66729,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -65353,16 +66745,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1518 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -65371,7 +66763,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -65384,7 +66776,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1519 this -394714818 +1166807841 1 this.latitude 42360297 @@ -65397,7 +66789,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1519 this -394714818 +1166807841 1 this.latitude 42360297 @@ -65413,7 +66805,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1520 this -1952779858 +289639718 1 this.latitude 42362997 @@ -65426,7 +66818,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1520 this -1952779858 +289639718 1 this.latitude 42362997 @@ -65442,16 +66834,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1518 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -65460,7 +66852,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -65476,16 +66868,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1521 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -65494,7 +66886,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -65507,7 +66899,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1522 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -65520,7 +66912,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1522 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -65536,7 +66928,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1523 this -391618063 +1384722895 1 this.latitude 42358297 @@ -65549,7 +66941,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1523 this -391618063 +1384722895 1 this.latitude 42358297 @@ -65565,16 +66957,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1521 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -65583,7 +66975,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -65599,16 +66991,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1524 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -65617,7 +67009,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -65630,7 +67022,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1525 this -674483268 +733957003 1 this.latitude 42358297 @@ -65643,7 +67035,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1525 this -674483268 +733957003 1 this.latitude 42358297 @@ -65659,7 +67051,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1526 this -54495403 +815992954 1 this.latitude 42360297 @@ -65672,7 +67064,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1526 this -54495403 +815992954 1 this.latitude 42360297 @@ -65688,16 +67080,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1524 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -65706,7 +67098,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -65722,16 +67114,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1527 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -65740,7 +67132,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -65753,7 +67145,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1528 this -459857341 +1392425346 1 this.latitude 42358297 @@ -65766,7 +67158,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1528 this -459857341 +1392425346 1 this.latitude 42358297 @@ -65782,7 +67174,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1529 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -65795,7 +67187,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1529 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -65811,16 +67203,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1527 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -65829,7 +67221,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -65845,16 +67237,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1530 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -65863,7 +67255,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -65876,7 +67268,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1531 this -459857341 +1392425346 1 this.latitude 42358297 @@ -65889,7 +67281,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1531 this -459857341 +1392425346 1 this.latitude 42358297 @@ -65905,7 +67297,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1532 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -65918,7 +67310,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1532 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -65934,16 +67326,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1530 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -65952,7 +67344,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -65968,16 +67360,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1533 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -65986,7 +67378,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -65999,7 +67391,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1534 this -488044861 +143110009 1 this.latitude 42361797 @@ -66012,7 +67404,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1534 this -488044861 +143110009 1 this.latitude 42361797 @@ -66028,7 +67420,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1535 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -66041,7 +67433,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1535 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -66057,16 +67449,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1533 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -66075,7 +67467,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -66091,16 +67483,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1536 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -66109,7 +67501,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -66122,7 +67514,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1537 this -1241276575 +706197430 1 this.latitude 42360097 @@ -66135,7 +67527,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1537 this -1241276575 +706197430 1 this.latitude 42360097 @@ -66151,7 +67543,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1538 this -215145189 +1325808650 1 this.latitude 42361797 @@ -66164,7 +67556,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1538 this -215145189 +1325808650 1 this.latitude 42361797 @@ -66180,16 +67572,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1536 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -66198,7 +67590,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -66214,16 +67606,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1539 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -66232,7 +67624,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -66245,7 +67637,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1540 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -66258,7 +67650,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1540 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -66274,7 +67666,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1541 this -2042495840 +525683462 1 this.latitude 42358941 @@ -66287,7 +67679,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1541 this -2042495840 +525683462 1 this.latitude 42358941 @@ -66303,16 +67695,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1539 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -66321,7 +67713,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -66337,16 +67729,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1542 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -66355,7 +67747,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -66368,7 +67760,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1543 this -990398217 +319977154 1 this.latitude 42358941 @@ -66381,7 +67773,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1543 this -990398217 +319977154 1 this.latitude 42358941 @@ -66397,7 +67789,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1544 this -841283083 +648680157 1 this.latitude 42360097 @@ -66410,7 +67802,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1544 this -841283083 +648680157 1 this.latitude 42360097 @@ -66426,16 +67818,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1542 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -66444,7 +67836,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -66460,16 +67852,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1545 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -66478,7 +67870,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -66491,7 +67883,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1546 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -66504,7 +67896,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1546 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -66520,7 +67912,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1547 this -1924582348 +133250414 1 this.latitude 42357097 @@ -66533,7 +67925,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1547 this -1924582348 +133250414 1 this.latitude 42357097 @@ -66549,16 +67941,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1545 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -66567,7 +67959,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -66583,16 +67975,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1548 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -66601,7 +67993,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -66614,7 +68006,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1549 this -817406040 +603650290 1 this.latitude 42357097 @@ -66627,7 +68019,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1549 this -817406040 +603650290 1 this.latitude 42357097 @@ -66643,7 +68035,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1550 this -1955915048 +762227630 1 this.latitude 42358941 @@ -66656,7 +68048,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1550 this -1955915048 +762227630 1 this.latitude 42358941 @@ -66672,16 +68064,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1548 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -66690,7 +68082,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -66706,16 +68098,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1551 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -66724,7 +68116,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -66737,7 +68129,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1552 this -157683534 +280744458 1 this.latitude 42357097 @@ -66750,7 +68142,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1552 this -157683534 +280744458 1 this.latitude 42357097 @@ -66766,7 +68158,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1553 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -66779,7 +68171,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1553 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -66795,16 +68187,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1551 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -66813,7 +68205,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -66829,16 +68221,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1554 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -66847,7 +68239,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -66860,7 +68252,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1555 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -66873,7 +68265,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1555 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -66889,7 +68281,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1556 this -2097514481 +527446182 1 this.latitude 42357097 @@ -66902,7 +68294,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1556 this -2097514481 +527446182 1 this.latitude 42357097 @@ -66918,16 +68310,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1554 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -66936,7 +68328,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -66952,16 +68344,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1557 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -66970,7 +68362,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -66983,7 +68375,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1558 this -1325808650 +961419791 1 this.latitude 42361797 @@ -66996,7 +68388,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1558 this -1325808650 +961419791 1 this.latitude 42361797 @@ -67012,7 +68404,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1559 this -510464020 +665188480 1 this.latitude 42362297 @@ -67025,7 +68417,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1559 this -510464020 +665188480 1 this.latitude 42362297 @@ -67041,16 +68433,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1557 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -67059,7 +68451,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -67075,16 +68467,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1560 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -67093,7 +68485,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -67106,7 +68498,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1561 this -525683462 +377478451 1 this.latitude 42362297 @@ -67119,7 +68511,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1561 this -525683462 +377478451 1 this.latitude 42362297 @@ -67135,7 +68527,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1562 this -1766724936 +513169028 1 this.latitude 42361797 @@ -67148,7 +68540,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1562 this -1766724936 +513169028 1 this.latitude 42361797 @@ -67164,16 +68556,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1560 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -67182,7 +68574,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -67198,16 +68590,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1563 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -67216,7 +68608,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -67229,7 +68621,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1564 this -648680157 +990416209 1 this.latitude 42362297 @@ -67242,7 +68634,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1564 this -648680157 +990416209 1 this.latitude 42362297 @@ -67258,7 +68650,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1565 this -1071097621 +394714818 1 this.latitude 42362597 @@ -67271,7 +68663,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1565 this -1071097621 +394714818 1 this.latitude 42362597 @@ -67287,16 +68679,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1563 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -67305,7 +68697,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -67321,16 +68713,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1566 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -67339,7 +68731,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -67352,7 +68744,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1567 this -133250414 +1791868405 1 this.latitude 42362597 @@ -67365,7 +68757,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1567 this -133250414 +1791868405 1 this.latitude 42362597 @@ -67381,7 +68773,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1568 this -85777802 +1260134048 1 this.latitude 42362297 @@ -67394,7 +68786,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1568 this -85777802 +1260134048 1 this.latitude 42362297 @@ -67410,16 +68802,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1566 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -67428,7 +68820,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -67444,16 +68836,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1569 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -67462,7 +68854,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -67475,7 +68867,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1570 this -762227630 +57748372 1 this.latitude 42362597 @@ -67488,7 +68880,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1570 this -762227630 +57748372 1 this.latitude 42362597 @@ -67504,7 +68896,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1571 this -1316864772 +674483268 1 this.latitude 42362697 @@ -67517,7 +68909,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1571 this -1316864772 +674483268 1 this.latitude 42362697 @@ -67533,16 +68925,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1569 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -67551,7 +68943,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -67567,16 +68959,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1572 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -67585,7 +68977,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -67598,7 +68990,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1573 this -1213216872 +764372388 1 this.latitude 42362697 @@ -67611,7 +69003,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1573 this -1213216872 +764372388 1 this.latitude 42362697 @@ -67627,7 +69019,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1574 this -1754638213 +459857341 1 this.latitude 42362597 @@ -67640,7 +69032,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1574 this -1754638213 +459857341 1 this.latitude 42362597 @@ -67656,16 +69048,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1572 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -67674,7 +69066,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -67690,16 +69082,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1575 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -67708,7 +69100,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -67721,7 +69113,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1576 this -527446182 +1399499405 1 this.latitude 42362697 @@ -67734,7 +69126,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1576 this -527446182 +1399499405 1 this.latitude 42362697 @@ -67750,7 +69142,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1577 this -1511785794 +238157928 1 this.latitude 42362997 @@ -67763,7 +69155,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1577 this -1511785794 +238157928 1 this.latitude 42362997 @@ -67779,16 +69171,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1575 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -67797,7 +69189,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -67813,16 +69205,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1578 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -67831,7 +69223,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -67844,7 +69236,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1579 this -665188480 +1883919084 1 this.latitude 42362997 @@ -67857,7 +69249,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1579 this -665188480 +1883919084 1 this.latitude 42362997 @@ -67873,7 +69265,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1580 this -489279267 +1860513229 1 this.latitude 42362697 @@ -67886,7 +69278,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1580 this -489279267 +1860513229 1 this.latitude 42362697 @@ -67902,16 +69294,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1578 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -67920,7 +69312,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -67936,16 +69328,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1581 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -67954,7 +69346,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -67967,7 +69359,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1582 this -513169028 +92150540 1 this.latitude 42362997 @@ -67980,7 +69372,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1582 this -513169028 +92150540 1 this.latitude 42362997 @@ -67996,7 +69388,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1583 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -68009,7 +69401,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1583 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -68025,16 +69417,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1581 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -68043,7 +69435,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -68059,16 +69451,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1584 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -68077,7 +69469,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -68090,7 +69482,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1585 this -394714818 +1166807841 1 this.latitude 42360297 @@ -68103,7 +69495,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1585 this -394714818 +1166807841 1 this.latitude 42360297 @@ -68119,7 +69511,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1586 this -1952779858 +289639718 1 this.latitude 42362997 @@ -68132,7 +69524,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1586 this -1952779858 +289639718 1 this.latitude 42362997 @@ -68148,16 +69540,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1584 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -68166,7 +69558,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -68182,16 +69574,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1587 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -68200,7 +69592,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -68213,7 +69605,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1588 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -68226,7 +69618,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1588 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -68242,7 +69634,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1589 this -391618063 +1384722895 1 this.latitude 42358297 @@ -68255,7 +69647,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1589 this -391618063 +1384722895 1 this.latitude 42358297 @@ -68271,16 +69663,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1587 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -68289,7 +69681,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -68305,16 +69697,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1590 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -68323,7 +69715,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -68336,7 +69728,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1591 this -674483268 +733957003 1 this.latitude 42358297 @@ -68349,7 +69741,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1591 this -674483268 +733957003 1 this.latitude 42358297 @@ -68365,7 +69757,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1592 this -54495403 +815992954 1 this.latitude 42360297 @@ -68378,7 +69770,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1592 this -54495403 +815992954 1 this.latitude 42360297 @@ -68394,16 +69786,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1590 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -68412,7 +69804,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -68428,16 +69820,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1593 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -68446,7 +69838,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -68459,7 +69851,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1594 this -459857341 +1392425346 1 this.latitude 42358297 @@ -68472,7 +69864,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1594 this -459857341 +1392425346 1 this.latitude 42358297 @@ -68488,7 +69880,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1595 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -68501,7 +69893,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1595 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -68517,16 +69909,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1593 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -68535,7 +69927,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -68561,7 +69953,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1596 this -238157928 +809762318 1 this.latitude 42357097 @@ -68590,7 +69982,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1597 this -32863545 +2028371466 1 this.latitude 42358297 @@ -68609,13 +70001,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1598 name -1995616381 +198761306 1 name.toString "Massachusetts_Ave" 1 p1 -238157928 +809762318 1 p1.latitude 42357097 @@ -68624,7 +70016,7 @@ p1.longitude -71092896 1 p2 -32863545 +2028371466 1 p2.latitude 42358297 @@ -68637,7 +70029,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1599 this -238157928 +809762318 1 this.latitude 42357097 @@ -68646,7 +70038,7 @@ this.longitude -71092896 1 o -32863545 +2028371466 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -68656,7 +70048,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1599 this -238157928 +809762318 1 this.latitude 42357097 @@ -68665,7 +70057,7 @@ this.longitude -71092896 1 o -32863545 +2028371466 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -68678,16 +70070,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1598 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -68696,7 +70088,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -68705,13 +70097,13 @@ this.p2.longitude -71093396 1 name -1995616381 +198761306 1 name.toString "Massachusetts_Ave" 1 p1 -238157928 +809762318 1 p1.latitude 42357097 @@ -68720,7 +70112,7 @@ p1.longitude -71092896 1 p2 -32863545 +2028371466 1 p2.latitude 42358297 @@ -68733,16 +70125,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1600 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -68751,7 +70143,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -68764,7 +70156,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1601 this -238157928 +809762318 1 this.latitude 42357097 @@ -68777,7 +70169,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1601 this -238157928 +809762318 1 this.latitude 42357097 @@ -68793,7 +70185,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1602 this -32863545 +2028371466 1 this.latitude 42358297 @@ -68806,7 +70198,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1602 this -32863545 +2028371466 1 this.latitude 42358297 @@ -68822,16 +70214,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1600 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -68840,7 +70232,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -68856,16 +70248,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1603 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -68874,7 +70266,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -68887,7 +70279,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1604 this -488044861 +143110009 1 this.latitude 42361797 @@ -68900,7 +70292,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1604 this -488044861 +143110009 1 this.latitude 42361797 @@ -68916,7 +70308,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1605 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -68929,7 +70321,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1605 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -68945,16 +70337,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1603 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -68963,7 +70355,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -68979,16 +70371,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1606 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -68997,7 +70389,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -69010,7 +70402,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1607 this -1241276575 +706197430 1 this.latitude 42360097 @@ -69023,7 +70415,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1607 this -1241276575 +706197430 1 this.latitude 42360097 @@ -69039,7 +70431,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1608 this -215145189 +1325808650 1 this.latitude 42361797 @@ -69052,7 +70444,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1608 this -215145189 +1325808650 1 this.latitude 42361797 @@ -69068,16 +70460,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1606 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -69086,7 +70478,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -69102,16 +70494,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1609 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -69120,7 +70512,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -69133,7 +70525,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1610 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -69146,7 +70538,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1610 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -69162,7 +70554,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1611 this -2042495840 +525683462 1 this.latitude 42358941 @@ -69175,7 +70567,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1611 this -2042495840 +525683462 1 this.latitude 42358941 @@ -69191,16 +70583,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1609 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -69209,7 +70601,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -69225,16 +70617,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1612 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -69243,7 +70635,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -69256,7 +70648,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1613 this -990398217 +319977154 1 this.latitude 42358941 @@ -69269,7 +70661,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1613 this -990398217 +319977154 1 this.latitude 42358941 @@ -69285,7 +70677,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1614 this -841283083 +648680157 1 this.latitude 42360097 @@ -69298,7 +70690,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1614 this -841283083 +648680157 1 this.latitude 42360097 @@ -69314,16 +70706,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1612 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -69332,7 +70724,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -69348,16 +70740,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1615 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -69366,7 +70758,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -69379,7 +70771,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1616 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -69392,7 +70784,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1616 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -69408,7 +70800,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1617 this -1924582348 +133250414 1 this.latitude 42357097 @@ -69421,7 +70813,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1617 this -1924582348 +133250414 1 this.latitude 42357097 @@ -69437,16 +70829,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1615 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -69455,7 +70847,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -69471,16 +70863,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1618 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -69489,7 +70881,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -69502,7 +70894,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1619 this -817406040 +603650290 1 this.latitude 42357097 @@ -69515,7 +70907,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1619 this -817406040 +603650290 1 this.latitude 42357097 @@ -69531,7 +70923,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1620 this -1955915048 +762227630 1 this.latitude 42358941 @@ -69544,7 +70936,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1620 this -1955915048 +762227630 1 this.latitude 42358941 @@ -69560,16 +70952,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1618 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -69578,7 +70970,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -69594,16 +70986,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1621 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -69612,7 +71004,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -69625,7 +71017,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1622 this -157683534 +280744458 1 this.latitude 42357097 @@ -69638,7 +71030,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1622 this -157683534 +280744458 1 this.latitude 42357097 @@ -69654,7 +71046,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1623 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -69667,7 +71059,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1623 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -69683,16 +71075,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1621 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -69701,7 +71093,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -69717,16 +71109,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1624 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -69735,7 +71127,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -69748,7 +71140,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1625 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -69761,7 +71153,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1625 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -69777,7 +71169,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1626 this -2097514481 +527446182 1 this.latitude 42357097 @@ -69790,7 +71182,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1626 this -2097514481 +527446182 1 this.latitude 42357097 @@ -69806,16 +71198,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1624 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -69824,7 +71216,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -69840,16 +71232,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1627 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -69858,7 +71250,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -69871,7 +71263,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1628 this -1325808650 +961419791 1 this.latitude 42361797 @@ -69884,7 +71276,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1628 this -1325808650 +961419791 1 this.latitude 42361797 @@ -69900,7 +71292,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1629 this -510464020 +665188480 1 this.latitude 42362297 @@ -69913,7 +71305,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1629 this -510464020 +665188480 1 this.latitude 42362297 @@ -69929,16 +71321,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1627 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -69947,7 +71339,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -69963,16 +71355,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1630 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -69981,7 +71373,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -69994,7 +71386,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1631 this -525683462 +377478451 1 this.latitude 42362297 @@ -70007,7 +71399,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1631 this -525683462 +377478451 1 this.latitude 42362297 @@ -70023,7 +71415,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1632 this -1766724936 +513169028 1 this.latitude 42361797 @@ -70036,7 +71428,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1632 this -1766724936 +513169028 1 this.latitude 42361797 @@ -70052,16 +71444,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1630 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -70070,7 +71462,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -70086,16 +71478,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1633 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -70104,7 +71496,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -70117,7 +71509,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1634 this -648680157 +990416209 1 this.latitude 42362297 @@ -70130,7 +71522,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1634 this -648680157 +990416209 1 this.latitude 42362297 @@ -70146,7 +71538,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1635 this -1071097621 +394714818 1 this.latitude 42362597 @@ -70159,7 +71551,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1635 this -1071097621 +394714818 1 this.latitude 42362597 @@ -70175,16 +71567,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1633 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -70193,7 +71585,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -70209,16 +71601,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1636 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -70227,7 +71619,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -70240,7 +71632,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1637 this -133250414 +1791868405 1 this.latitude 42362597 @@ -70253,7 +71645,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1637 this -133250414 +1791868405 1 this.latitude 42362597 @@ -70269,7 +71661,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1638 this -85777802 +1260134048 1 this.latitude 42362297 @@ -70282,7 +71674,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1638 this -85777802 +1260134048 1 this.latitude 42362297 @@ -70298,16 +71690,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1636 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -70316,7 +71708,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -70332,16 +71724,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1639 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -70350,7 +71742,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -70363,7 +71755,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1640 this -762227630 +57748372 1 this.latitude 42362597 @@ -70376,7 +71768,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1640 this -762227630 +57748372 1 this.latitude 42362597 @@ -70392,7 +71784,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1641 this -1316864772 +674483268 1 this.latitude 42362697 @@ -70405,7 +71797,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1641 this -1316864772 +674483268 1 this.latitude 42362697 @@ -70421,16 +71813,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1639 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -70439,7 +71831,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -70455,16 +71847,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1642 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -70473,7 +71865,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -70486,7 +71878,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1643 this -1213216872 +764372388 1 this.latitude 42362697 @@ -70499,7 +71891,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1643 this -1213216872 +764372388 1 this.latitude 42362697 @@ -70515,7 +71907,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1644 this -1754638213 +459857341 1 this.latitude 42362597 @@ -70528,7 +71920,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1644 this -1754638213 +459857341 1 this.latitude 42362597 @@ -70544,16 +71936,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1642 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -70562,7 +71954,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -70578,16 +71970,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1645 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -70596,7 +71988,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -70609,7 +72001,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1646 this -527446182 +1399499405 1 this.latitude 42362697 @@ -70622,7 +72014,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1646 this -527446182 +1399499405 1 this.latitude 42362697 @@ -70638,7 +72030,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1647 this -1511785794 +238157928 1 this.latitude 42362997 @@ -70651,7 +72043,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1647 this -1511785794 +238157928 1 this.latitude 42362997 @@ -70667,16 +72059,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1645 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -70685,7 +72077,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -70701,16 +72093,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1648 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -70719,7 +72111,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -70732,7 +72124,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1649 this -665188480 +1883919084 1 this.latitude 42362997 @@ -70745,7 +72137,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1649 this -665188480 +1883919084 1 this.latitude 42362997 @@ -70761,7 +72153,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1650 this -489279267 +1860513229 1 this.latitude 42362697 @@ -70774,7 +72166,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1650 this -489279267 +1860513229 1 this.latitude 42362697 @@ -70790,16 +72182,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1648 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -70808,7 +72200,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -70824,16 +72216,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1651 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -70842,7 +72234,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -70855,7 +72247,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1652 this -513169028 +92150540 1 this.latitude 42362997 @@ -70868,7 +72260,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1652 this -513169028 +92150540 1 this.latitude 42362997 @@ -70884,7 +72276,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1653 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -70897,7 +72289,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1653 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -70913,16 +72305,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1651 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -70931,7 +72323,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -70947,16 +72339,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1654 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -70965,7 +72357,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -70978,7 +72370,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1655 this -394714818 +1166807841 1 this.latitude 42360297 @@ -70991,7 +72383,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1655 this -394714818 +1166807841 1 this.latitude 42360297 @@ -71007,7 +72399,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1656 this -1952779858 +289639718 1 this.latitude 42362997 @@ -71020,7 +72412,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1656 this -1952779858 +289639718 1 this.latitude 42362997 @@ -71036,16 +72428,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1654 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -71054,7 +72446,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -71070,16 +72462,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1657 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -71088,7 +72480,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -71101,7 +72493,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1658 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -71114,7 +72506,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1658 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -71130,7 +72522,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1659 this -391618063 +1384722895 1 this.latitude 42358297 @@ -71143,7 +72535,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1659 this -391618063 +1384722895 1 this.latitude 42358297 @@ -71159,16 +72551,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1657 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -71177,7 +72569,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -71193,16 +72585,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1660 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -71211,7 +72603,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -71224,7 +72616,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1661 this -674483268 +733957003 1 this.latitude 42358297 @@ -71237,7 +72629,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1661 this -674483268 +733957003 1 this.latitude 42358297 @@ -71253,7 +72645,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1662 this -54495403 +815992954 1 this.latitude 42360297 @@ -71266,7 +72658,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1662 this -54495403 +815992954 1 this.latitude 42360297 @@ -71282,16 +72674,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1660 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -71300,7 +72692,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -71316,16 +72708,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1663 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -71334,7 +72726,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -71347,7 +72739,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1664 this -459857341 +1392425346 1 this.latitude 42358297 @@ -71360,7 +72752,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1664 this -459857341 +1392425346 1 this.latitude 42358297 @@ -71376,7 +72768,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1665 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -71389,7 +72781,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1665 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -71405,16 +72797,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1663 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -71423,7 +72815,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -71439,16 +72831,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1666 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -71457,7 +72849,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -71470,7 +72862,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1667 this -238157928 +809762318 1 this.latitude 42357097 @@ -71483,7 +72875,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1667 this -238157928 +809762318 1 this.latitude 42357097 @@ -71499,7 +72891,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1668 this -32863545 +2028371466 1 this.latitude 42358297 @@ -71512,7 +72904,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1668 this -32863545 +2028371466 1 this.latitude 42358297 @@ -71528,16 +72920,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1666 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -71546,7 +72938,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -71562,16 +72954,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1669 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -71580,7 +72972,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -71593,7 +72985,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1670 this -238157928 +809762318 1 this.latitude 42357097 @@ -71606,7 +72998,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1670 this -238157928 +809762318 1 this.latitude 42357097 @@ -71622,7 +73014,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1671 this -32863545 +2028371466 1 this.latitude 42358297 @@ -71635,7 +73027,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1671 this -32863545 +2028371466 1 this.latitude 42358297 @@ -71651,16 +73043,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1669 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -71669,7 +73061,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -71685,16 +73077,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1672 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -71703,7 +73095,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -71716,7 +73108,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1673 this -488044861 +143110009 1 this.latitude 42361797 @@ -71729,7 +73121,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1673 this -488044861 +143110009 1 this.latitude 42361797 @@ -71745,7 +73137,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1674 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -71758,7 +73150,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1674 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -71774,16 +73166,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1672 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -71792,7 +73184,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -71808,16 +73200,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1675 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -71826,7 +73218,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -71839,7 +73231,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1676 this -1241276575 +706197430 1 this.latitude 42360097 @@ -71852,7 +73244,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1676 this -1241276575 +706197430 1 this.latitude 42360097 @@ -71868,7 +73260,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1677 this -215145189 +1325808650 1 this.latitude 42361797 @@ -71881,7 +73273,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1677 this -215145189 +1325808650 1 this.latitude 42361797 @@ -71897,16 +73289,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1675 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -71915,7 +73307,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -71931,16 +73323,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1678 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -71949,7 +73341,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -71962,7 +73354,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1679 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -71975,7 +73367,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1679 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -71991,7 +73383,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1680 this -2042495840 +525683462 1 this.latitude 42358941 @@ -72004,7 +73396,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1680 this -2042495840 +525683462 1 this.latitude 42358941 @@ -72020,16 +73412,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1678 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -72038,7 +73430,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -72054,16 +73446,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1681 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -72072,7 +73464,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -72085,7 +73477,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1682 this -990398217 +319977154 1 this.latitude 42358941 @@ -72098,7 +73490,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1682 this -990398217 +319977154 1 this.latitude 42358941 @@ -72114,7 +73506,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1683 this -841283083 +648680157 1 this.latitude 42360097 @@ -72127,7 +73519,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1683 this -841283083 +648680157 1 this.latitude 42360097 @@ -72143,16 +73535,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1681 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -72161,7 +73553,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -72177,16 +73569,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1684 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -72195,7 +73587,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -72208,7 +73600,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1685 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -72221,7 +73613,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1685 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -72237,7 +73629,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1686 this -1924582348 +133250414 1 this.latitude 42357097 @@ -72250,7 +73642,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1686 this -1924582348 +133250414 1 this.latitude 42357097 @@ -72266,16 +73658,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1684 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -72284,7 +73676,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -72300,16 +73692,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1687 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -72318,7 +73710,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -72331,7 +73723,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1688 this -817406040 +603650290 1 this.latitude 42357097 @@ -72344,7 +73736,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1688 this -817406040 +603650290 1 this.latitude 42357097 @@ -72360,7 +73752,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1689 this -1955915048 +762227630 1 this.latitude 42358941 @@ -72373,7 +73765,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1689 this -1955915048 +762227630 1 this.latitude 42358941 @@ -72389,16 +73781,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1687 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -72407,7 +73799,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -72423,16 +73815,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1690 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -72441,7 +73833,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -72454,7 +73846,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1691 this -157683534 +280744458 1 this.latitude 42357097 @@ -72467,7 +73859,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1691 this -157683534 +280744458 1 this.latitude 42357097 @@ -72483,7 +73875,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1692 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -72496,7 +73888,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1692 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -72512,16 +73904,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1690 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -72530,7 +73922,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -72546,16 +73938,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1693 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -72564,7 +73956,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -72577,7 +73969,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1694 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -72590,7 +73982,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1694 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -72606,7 +73998,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1695 this -2097514481 +527446182 1 this.latitude 42357097 @@ -72619,7 +74011,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1695 this -2097514481 +527446182 1 this.latitude 42357097 @@ -72635,16 +74027,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1693 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -72653,7 +74045,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -72669,16 +74061,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1696 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -72687,7 +74079,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -72700,7 +74092,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1697 this -1325808650 +961419791 1 this.latitude 42361797 @@ -72713,7 +74105,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1697 this -1325808650 +961419791 1 this.latitude 42361797 @@ -72729,7 +74121,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1698 this -510464020 +665188480 1 this.latitude 42362297 @@ -72742,7 +74134,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1698 this -510464020 +665188480 1 this.latitude 42362297 @@ -72758,16 +74150,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1696 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -72776,7 +74168,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -72792,16 +74184,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1699 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -72810,7 +74202,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -72823,7 +74215,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1700 this -525683462 +377478451 1 this.latitude 42362297 @@ -72836,7 +74228,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1700 this -525683462 +377478451 1 this.latitude 42362297 @@ -72852,7 +74244,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1701 this -1766724936 +513169028 1 this.latitude 42361797 @@ -72865,7 +74257,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1701 this -1766724936 +513169028 1 this.latitude 42361797 @@ -72881,16 +74273,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1699 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -72899,7 +74291,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -72915,16 +74307,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1702 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -72933,7 +74325,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -72946,7 +74338,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1703 this -648680157 +990416209 1 this.latitude 42362297 @@ -72959,7 +74351,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1703 this -648680157 +990416209 1 this.latitude 42362297 @@ -72975,7 +74367,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1704 this -1071097621 +394714818 1 this.latitude 42362597 @@ -72988,7 +74380,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1704 this -1071097621 +394714818 1 this.latitude 42362597 @@ -73004,16 +74396,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1702 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -73022,7 +74414,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -73038,16 +74430,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1705 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -73056,7 +74448,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -73069,7 +74461,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1706 this -133250414 +1791868405 1 this.latitude 42362597 @@ -73082,7 +74474,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1706 this -133250414 +1791868405 1 this.latitude 42362597 @@ -73098,7 +74490,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1707 this -85777802 +1260134048 1 this.latitude 42362297 @@ -73111,7 +74503,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1707 this -85777802 +1260134048 1 this.latitude 42362297 @@ -73127,16 +74519,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1705 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -73145,7 +74537,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -73161,16 +74553,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1708 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -73179,7 +74571,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -73192,7 +74584,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1709 this -762227630 +57748372 1 this.latitude 42362597 @@ -73205,7 +74597,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1709 this -762227630 +57748372 1 this.latitude 42362597 @@ -73221,7 +74613,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1710 this -1316864772 +674483268 1 this.latitude 42362697 @@ -73234,7 +74626,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1710 this -1316864772 +674483268 1 this.latitude 42362697 @@ -73250,16 +74642,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1708 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -73268,7 +74660,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -73284,16 +74676,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1711 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -73302,7 +74694,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -73315,7 +74707,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1712 this -1213216872 +764372388 1 this.latitude 42362697 @@ -73328,7 +74720,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1712 this -1213216872 +764372388 1 this.latitude 42362697 @@ -73344,7 +74736,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1713 this -1754638213 +459857341 1 this.latitude 42362597 @@ -73357,7 +74749,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1713 this -1754638213 +459857341 1 this.latitude 42362597 @@ -73373,16 +74765,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1711 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -73391,7 +74783,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -73407,16 +74799,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1714 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -73425,7 +74817,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -73438,7 +74830,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1715 this -527446182 +1399499405 1 this.latitude 42362697 @@ -73451,7 +74843,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1715 this -527446182 +1399499405 1 this.latitude 42362697 @@ -73467,7 +74859,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1716 this -1511785794 +238157928 1 this.latitude 42362997 @@ -73480,7 +74872,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1716 this -1511785794 +238157928 1 this.latitude 42362997 @@ -73496,16 +74888,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1714 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -73514,7 +74906,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -73530,16 +74922,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1717 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -73548,7 +74940,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -73561,7 +74953,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1718 this -665188480 +1883919084 1 this.latitude 42362997 @@ -73574,7 +74966,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1718 this -665188480 +1883919084 1 this.latitude 42362997 @@ -73590,7 +74982,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1719 this -489279267 +1860513229 1 this.latitude 42362697 @@ -73603,7 +74995,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1719 this -489279267 +1860513229 1 this.latitude 42362697 @@ -73619,16 +75011,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1717 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -73637,7 +75029,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -73653,16 +75045,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1720 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -73671,7 +75063,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -73684,7 +75076,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1721 this -513169028 +92150540 1 this.latitude 42362997 @@ -73697,7 +75089,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1721 this -513169028 +92150540 1 this.latitude 42362997 @@ -73713,7 +75105,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1722 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -73726,7 +75118,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1722 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -73742,16 +75134,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1720 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -73760,7 +75152,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -73776,16 +75168,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1723 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -73794,7 +75186,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -73807,7 +75199,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1724 this -394714818 +1166807841 1 this.latitude 42360297 @@ -73820,7 +75212,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1724 this -394714818 +1166807841 1 this.latitude 42360297 @@ -73836,7 +75228,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1725 this -1952779858 +289639718 1 this.latitude 42362997 @@ -73849,7 +75241,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1725 this -1952779858 +289639718 1 this.latitude 42362997 @@ -73865,16 +75257,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1723 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -73883,7 +75275,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -73899,16 +75291,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1726 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -73917,7 +75309,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -73930,7 +75322,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1727 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -73943,7 +75335,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1727 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -73959,7 +75351,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1728 this -391618063 +1384722895 1 this.latitude 42358297 @@ -73972,7 +75364,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1728 this -391618063 +1384722895 1 this.latitude 42358297 @@ -73988,16 +75380,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1726 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -74006,7 +75398,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -74022,16 +75414,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1729 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -74040,7 +75432,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -74053,7 +75445,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1730 this -674483268 +733957003 1 this.latitude 42358297 @@ -74066,7 +75458,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1730 this -674483268 +733957003 1 this.latitude 42358297 @@ -74082,7 +75474,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1731 this -54495403 +815992954 1 this.latitude 42360297 @@ -74095,7 +75487,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1731 this -54495403 +815992954 1 this.latitude 42360297 @@ -74111,16 +75503,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1729 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -74129,7 +75521,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -74145,16 +75537,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1732 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -74163,7 +75555,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -74176,7 +75568,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1733 this -459857341 +1392425346 1 this.latitude 42358297 @@ -74189,7 +75581,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1733 this -459857341 +1392425346 1 this.latitude 42358297 @@ -74205,7 +75597,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1734 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -74218,7 +75610,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1734 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -74234,16 +75626,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1732 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -74252,7 +75644,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -74268,16 +75660,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1735 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -74286,7 +75678,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -74299,7 +75691,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1736 this -238157928 +809762318 1 this.latitude 42357097 @@ -74312,7 +75704,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1736 this -238157928 +809762318 1 this.latitude 42357097 @@ -74328,7 +75720,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1737 this -32863545 +2028371466 1 this.latitude 42358297 @@ -74341,7 +75733,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1737 this -32863545 +2028371466 1 this.latitude 42358297 @@ -74357,16 +75749,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1735 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -74375,7 +75767,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -74401,7 +75793,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1738 this -1860513229 +525571 1 this.latitude 42362697 @@ -74430,7 +75822,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1739 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -74449,13 +75841,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1740 name -662822946 +110771485 1 name.toString "Vassar_St" 1 p1 -1860513229 +525571 1 p1.latitude 42362697 @@ -74464,7 +75856,7 @@ p1.longitude -71090996 1 p2 -1150538133 +1263877414 1 p2.latitude 42360297 @@ -74477,7 +75869,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1741 this -1860513229 +525571 1 this.latitude 42362697 @@ -74486,7 +75878,7 @@ this.longitude -71090996 1 o -1150538133 +1263877414 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -74496,7 +75888,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1741 this -1860513229 +525571 1 this.latitude 42362697 @@ -74505,7 +75897,7 @@ this.longitude -71090996 1 o -1150538133 +1263877414 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -74518,16 +75910,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1740 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -74536,7 +75928,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -74545,13 +75937,13 @@ this.p2.longitude -71095096 1 name -662822946 +110771485 1 name.toString "Vassar_St" 1 p1 -1860513229 +525571 1 p1.latitude 42362697 @@ -74560,7 +75952,7 @@ p1.longitude -71090996 1 p2 -1150538133 +1263877414 1 p2.latitude 42360297 @@ -74573,16 +75965,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1742 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -74591,7 +75983,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -74604,7 +75996,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1743 this -1860513229 +525571 1 this.latitude 42362697 @@ -74617,7 +76009,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1743 this -1860513229 +525571 1 this.latitude 42362697 @@ -74633,7 +76025,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1744 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -74646,7 +76038,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1744 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -74662,16 +76054,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1742 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -74680,7 +76072,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -74696,16 +76088,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1745 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -74714,7 +76106,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -74727,7 +76119,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1746 this -488044861 +143110009 1 this.latitude 42361797 @@ -74740,7 +76132,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1746 this -488044861 +143110009 1 this.latitude 42361797 @@ -74756,7 +76148,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1747 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -74769,7 +76161,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1747 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -74785,16 +76177,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1745 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -74803,7 +76195,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -74819,16 +76211,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1748 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -74837,7 +76229,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -74850,7 +76242,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1749 this -1241276575 +706197430 1 this.latitude 42360097 @@ -74863,7 +76255,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1749 this -1241276575 +706197430 1 this.latitude 42360097 @@ -74879,7 +76271,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1750 this -215145189 +1325808650 1 this.latitude 42361797 @@ -74892,7 +76284,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1750 this -215145189 +1325808650 1 this.latitude 42361797 @@ -74908,16 +76300,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1748 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -74926,7 +76318,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -74942,16 +76334,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1751 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -74960,7 +76352,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -74973,7 +76365,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1752 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -74986,7 +76378,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1752 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -75002,7 +76394,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1753 this -2042495840 +525683462 1 this.latitude 42358941 @@ -75015,7 +76407,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1753 this -2042495840 +525683462 1 this.latitude 42358941 @@ -75031,16 +76423,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1751 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -75049,7 +76441,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -75065,16 +76457,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1754 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -75083,7 +76475,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -75096,7 +76488,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1755 this -990398217 +319977154 1 this.latitude 42358941 @@ -75109,7 +76501,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1755 this -990398217 +319977154 1 this.latitude 42358941 @@ -75125,7 +76517,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1756 this -841283083 +648680157 1 this.latitude 42360097 @@ -75138,7 +76530,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1756 this -841283083 +648680157 1 this.latitude 42360097 @@ -75154,16 +76546,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1754 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -75172,7 +76564,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -75188,16 +76580,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1757 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -75206,7 +76598,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -75219,7 +76611,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1758 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -75232,7 +76624,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1758 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -75248,7 +76640,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1759 this -1924582348 +133250414 1 this.latitude 42357097 @@ -75261,7 +76653,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1759 this -1924582348 +133250414 1 this.latitude 42357097 @@ -75277,16 +76669,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1757 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -75295,7 +76687,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -75311,16 +76703,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1760 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -75329,7 +76721,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -75342,7 +76734,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1761 this -817406040 +603650290 1 this.latitude 42357097 @@ -75355,7 +76747,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1761 this -817406040 +603650290 1 this.latitude 42357097 @@ -75371,7 +76763,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1762 this -1955915048 +762227630 1 this.latitude 42358941 @@ -75384,7 +76776,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1762 this -1955915048 +762227630 1 this.latitude 42358941 @@ -75400,16 +76792,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1760 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -75418,7 +76810,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -75434,16 +76826,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1763 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -75452,7 +76844,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -75465,7 +76857,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1764 this -157683534 +280744458 1 this.latitude 42357097 @@ -75478,7 +76870,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1764 this -157683534 +280744458 1 this.latitude 42357097 @@ -75494,7 +76886,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1765 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -75507,7 +76899,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1765 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -75523,16 +76915,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1763 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -75541,7 +76933,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -75557,16 +76949,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1766 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -75575,7 +76967,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -75588,7 +76980,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1767 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -75601,7 +76993,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1767 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -75617,7 +77009,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1768 this -2097514481 +527446182 1 this.latitude 42357097 @@ -75630,7 +77022,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1768 this -2097514481 +527446182 1 this.latitude 42357097 @@ -75646,16 +77038,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1766 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -75664,7 +77056,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -75680,16 +77072,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1769 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -75698,7 +77090,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -75711,7 +77103,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1770 this -1325808650 +961419791 1 this.latitude 42361797 @@ -75724,7 +77116,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1770 this -1325808650 +961419791 1 this.latitude 42361797 @@ -75740,7 +77132,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1771 this -510464020 +665188480 1 this.latitude 42362297 @@ -75753,7 +77145,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1771 this -510464020 +665188480 1 this.latitude 42362297 @@ -75769,16 +77161,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1769 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -75787,7 +77179,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -75803,16 +77195,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1772 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -75821,7 +77213,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -75834,7 +77226,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1773 this -525683462 +377478451 1 this.latitude 42362297 @@ -75847,7 +77239,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1773 this -525683462 +377478451 1 this.latitude 42362297 @@ -75863,7 +77255,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1774 this -1766724936 +513169028 1 this.latitude 42361797 @@ -75876,7 +77268,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1774 this -1766724936 +513169028 1 this.latitude 42361797 @@ -75892,16 +77284,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1772 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -75910,7 +77302,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -75926,16 +77318,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1775 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -75944,7 +77336,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -75957,7 +77349,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1776 this -648680157 +990416209 1 this.latitude 42362297 @@ -75970,7 +77362,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1776 this -648680157 +990416209 1 this.latitude 42362297 @@ -75986,7 +77378,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1777 this -1071097621 +394714818 1 this.latitude 42362597 @@ -75999,7 +77391,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1777 this -1071097621 +394714818 1 this.latitude 42362597 @@ -76015,16 +77407,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1775 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -76033,7 +77425,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -76049,16 +77441,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1778 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -76067,7 +77459,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -76080,7 +77472,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1779 this -133250414 +1791868405 1 this.latitude 42362597 @@ -76093,7 +77485,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1779 this -133250414 +1791868405 1 this.latitude 42362597 @@ -76109,7 +77501,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1780 this -85777802 +1260134048 1 this.latitude 42362297 @@ -76122,7 +77514,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1780 this -85777802 +1260134048 1 this.latitude 42362297 @@ -76138,16 +77530,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1778 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -76156,7 +77548,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -76172,16 +77564,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1781 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -76190,7 +77582,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -76203,7 +77595,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1782 this -762227630 +57748372 1 this.latitude 42362597 @@ -76216,7 +77608,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1782 this -762227630 +57748372 1 this.latitude 42362597 @@ -76232,7 +77624,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1783 this -1316864772 +674483268 1 this.latitude 42362697 @@ -76245,7 +77637,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1783 this -1316864772 +674483268 1 this.latitude 42362697 @@ -76261,16 +77653,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1781 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -76279,7 +77671,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -76295,16 +77687,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1784 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -76313,7 +77705,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -76326,7 +77718,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1785 this -1213216872 +764372388 1 this.latitude 42362697 @@ -76339,7 +77731,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1785 this -1213216872 +764372388 1 this.latitude 42362697 @@ -76355,7 +77747,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1786 this -1754638213 +459857341 1 this.latitude 42362597 @@ -76368,7 +77760,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1786 this -1754638213 +459857341 1 this.latitude 42362597 @@ -76384,16 +77776,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1784 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -76402,7 +77794,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -76418,16 +77810,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1787 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -76436,7 +77828,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -76449,7 +77841,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1788 this -527446182 +1399499405 1 this.latitude 42362697 @@ -76462,7 +77854,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1788 this -527446182 +1399499405 1 this.latitude 42362697 @@ -76478,7 +77870,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1789 this -1511785794 +238157928 1 this.latitude 42362997 @@ -76491,7 +77883,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1789 this -1511785794 +238157928 1 this.latitude 42362997 @@ -76507,16 +77899,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1787 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -76525,7 +77917,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -76541,16 +77933,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1790 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -76559,7 +77951,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -76572,7 +77964,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1791 this -665188480 +1883919084 1 this.latitude 42362997 @@ -76585,7 +77977,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1791 this -665188480 +1883919084 1 this.latitude 42362997 @@ -76601,7 +77993,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1792 this -489279267 +1860513229 1 this.latitude 42362697 @@ -76614,7 +78006,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1792 this -489279267 +1860513229 1 this.latitude 42362697 @@ -76630,16 +78022,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1790 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -76648,7 +78040,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -76664,16 +78056,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1793 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -76682,7 +78074,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -76695,7 +78087,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1794 this -513169028 +92150540 1 this.latitude 42362997 @@ -76708,7 +78100,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1794 this -513169028 +92150540 1 this.latitude 42362997 @@ -76724,7 +78116,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1795 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -76737,7 +78129,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1795 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -76753,16 +78145,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1793 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -76771,7 +78163,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -76787,16 +78179,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1796 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -76805,7 +78197,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -76818,7 +78210,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1797 this -394714818 +1166807841 1 this.latitude 42360297 @@ -76831,7 +78223,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1797 this -394714818 +1166807841 1 this.latitude 42360297 @@ -76847,7 +78239,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1798 this -1952779858 +289639718 1 this.latitude 42362997 @@ -76860,7 +78252,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1798 this -1952779858 +289639718 1 this.latitude 42362997 @@ -76876,16 +78268,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1796 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -76894,7 +78286,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -76910,16 +78302,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1799 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -76928,7 +78320,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -76941,7 +78333,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1800 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -76954,7 +78346,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1800 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -76970,7 +78362,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1801 this -391618063 +1384722895 1 this.latitude 42358297 @@ -76983,7 +78375,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1801 this -391618063 +1384722895 1 this.latitude 42358297 @@ -76999,16 +78391,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1799 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -77017,7 +78409,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -77033,16 +78425,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1802 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -77051,7 +78443,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -77064,7 +78456,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1803 this -674483268 +733957003 1 this.latitude 42358297 @@ -77077,7 +78469,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1803 this -674483268 +733957003 1 this.latitude 42358297 @@ -77093,7 +78485,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1804 this -54495403 +815992954 1 this.latitude 42360297 @@ -77106,7 +78498,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1804 this -54495403 +815992954 1 this.latitude 42360297 @@ -77122,16 +78514,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1802 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -77140,7 +78532,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -77156,16 +78548,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1805 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -77174,7 +78566,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -77187,7 +78579,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1806 this -459857341 +1392425346 1 this.latitude 42358297 @@ -77200,7 +78592,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1806 this -459857341 +1392425346 1 this.latitude 42358297 @@ -77216,7 +78608,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1807 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -77229,7 +78621,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1807 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -77245,16 +78637,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1805 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -77263,7 +78655,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -77279,16 +78671,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1808 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -77297,7 +78689,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -77310,7 +78702,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1809 this -238157928 +809762318 1 this.latitude 42357097 @@ -77323,7 +78715,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1809 this -238157928 +809762318 1 this.latitude 42357097 @@ -77339,7 +78731,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1810 this -32863545 +2028371466 1 this.latitude 42358297 @@ -77352,7 +78744,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1810 this -32863545 +2028371466 1 this.latitude 42358297 @@ -77368,16 +78760,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1808 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -77386,7 +78778,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -77402,16 +78794,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1811 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -77420,7 +78812,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -77433,7 +78825,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1812 this -1860513229 +525571 1 this.latitude 42362697 @@ -77446,7 +78838,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1812 this -1860513229 +525571 1 this.latitude 42362697 @@ -77462,7 +78854,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1813 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -77475,7 +78867,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1813 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -77491,16 +78883,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1811 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -77509,7 +78901,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -77525,16 +78917,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1814 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -77543,7 +78935,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -77556,7 +78948,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1815 this -1860513229 +525571 1 this.latitude 42362697 @@ -77569,7 +78961,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1815 this -1860513229 +525571 1 this.latitude 42362697 @@ -77585,7 +78977,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1816 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -77598,7 +78990,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1816 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -77614,16 +79006,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1814 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -77632,7 +79024,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -77648,16 +79040,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1817 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -77666,7 +79058,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -77679,7 +79071,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1818 this -488044861 +143110009 1 this.latitude 42361797 @@ -77692,7 +79084,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1818 this -488044861 +143110009 1 this.latitude 42361797 @@ -77708,7 +79100,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1819 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -77721,7 +79113,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1819 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -77737,16 +79129,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1817 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -77755,7 +79147,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -77771,16 +79163,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1820 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -77789,7 +79181,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -77802,7 +79194,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1821 this -1241276575 +706197430 1 this.latitude 42360097 @@ -77815,7 +79207,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1821 this -1241276575 +706197430 1 this.latitude 42360097 @@ -77831,7 +79223,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1822 this -215145189 +1325808650 1 this.latitude 42361797 @@ -77844,7 +79236,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1822 this -215145189 +1325808650 1 this.latitude 42361797 @@ -77860,16 +79252,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1820 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -77878,7 +79270,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -77894,16 +79286,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1823 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -77912,7 +79304,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -77925,7 +79317,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1824 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -77938,7 +79330,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1824 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -77954,7 +79346,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1825 this -2042495840 +525683462 1 this.latitude 42358941 @@ -77967,7 +79359,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1825 this -2042495840 +525683462 1 this.latitude 42358941 @@ -77983,16 +79375,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1823 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -78001,7 +79393,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -78017,16 +79409,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1826 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -78035,7 +79427,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -78048,7 +79440,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1827 this -990398217 +319977154 1 this.latitude 42358941 @@ -78061,7 +79453,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1827 this -990398217 +319977154 1 this.latitude 42358941 @@ -78077,7 +79469,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1828 this -841283083 +648680157 1 this.latitude 42360097 @@ -78090,7 +79482,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1828 this -841283083 +648680157 1 this.latitude 42360097 @@ -78106,16 +79498,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1826 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -78124,7 +79516,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -78140,16 +79532,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1829 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -78158,7 +79550,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -78171,7 +79563,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1830 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -78184,7 +79576,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1830 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -78200,7 +79592,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1831 this -1924582348 +133250414 1 this.latitude 42357097 @@ -78213,7 +79605,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1831 this -1924582348 +133250414 1 this.latitude 42357097 @@ -78229,16 +79621,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1829 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -78247,7 +79639,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -78263,16 +79655,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1832 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -78281,7 +79673,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -78294,7 +79686,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1833 this -817406040 +603650290 1 this.latitude 42357097 @@ -78307,7 +79699,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1833 this -817406040 +603650290 1 this.latitude 42357097 @@ -78323,7 +79715,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1834 this -1955915048 +762227630 1 this.latitude 42358941 @@ -78336,7 +79728,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1834 this -1955915048 +762227630 1 this.latitude 42358941 @@ -78352,16 +79744,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1832 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -78370,7 +79762,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -78386,16 +79778,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1835 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -78404,7 +79796,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -78417,7 +79809,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1836 this -157683534 +280744458 1 this.latitude 42357097 @@ -78430,7 +79822,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1836 this -157683534 +280744458 1 this.latitude 42357097 @@ -78446,7 +79838,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1837 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -78459,7 +79851,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1837 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -78475,16 +79867,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1835 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -78493,7 +79885,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -78509,16 +79901,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1838 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -78527,7 +79919,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -78540,7 +79932,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1839 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -78553,7 +79945,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1839 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -78569,7 +79961,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1840 this -2097514481 +527446182 1 this.latitude 42357097 @@ -78582,7 +79974,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1840 this -2097514481 +527446182 1 this.latitude 42357097 @@ -78598,16 +79990,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1838 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -78616,7 +80008,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -78632,16 +80024,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1841 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -78650,7 +80042,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -78663,7 +80055,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1842 this -1325808650 +961419791 1 this.latitude 42361797 @@ -78676,7 +80068,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1842 this -1325808650 +961419791 1 this.latitude 42361797 @@ -78692,7 +80084,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1843 this -510464020 +665188480 1 this.latitude 42362297 @@ -78705,7 +80097,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1843 this -510464020 +665188480 1 this.latitude 42362297 @@ -78721,16 +80113,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1841 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -78739,7 +80131,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -78755,16 +80147,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1844 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -78773,7 +80165,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -78786,7 +80178,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1845 this -525683462 +377478451 1 this.latitude 42362297 @@ -78799,7 +80191,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1845 this -525683462 +377478451 1 this.latitude 42362297 @@ -78815,7 +80207,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1846 this -1766724936 +513169028 1 this.latitude 42361797 @@ -78828,7 +80220,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1846 this -1766724936 +513169028 1 this.latitude 42361797 @@ -78844,16 +80236,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1844 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -78862,7 +80254,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -78878,16 +80270,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1847 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -78896,7 +80288,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -78909,7 +80301,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1848 this -648680157 +990416209 1 this.latitude 42362297 @@ -78922,7 +80314,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1848 this -648680157 +990416209 1 this.latitude 42362297 @@ -78938,7 +80330,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1849 this -1071097621 +394714818 1 this.latitude 42362597 @@ -78951,7 +80343,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1849 this -1071097621 +394714818 1 this.latitude 42362597 @@ -78967,16 +80359,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1847 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -78985,7 +80377,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -79001,16 +80393,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1850 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -79019,7 +80411,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -79032,7 +80424,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1851 this -133250414 +1791868405 1 this.latitude 42362597 @@ -79045,7 +80437,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1851 this -133250414 +1791868405 1 this.latitude 42362597 @@ -79061,7 +80453,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1852 this -85777802 +1260134048 1 this.latitude 42362297 @@ -79074,7 +80466,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1852 this -85777802 +1260134048 1 this.latitude 42362297 @@ -79090,16 +80482,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1850 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -79108,7 +80500,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -79124,16 +80516,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1853 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -79142,7 +80534,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -79155,7 +80547,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1854 this -762227630 +57748372 1 this.latitude 42362597 @@ -79168,7 +80560,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1854 this -762227630 +57748372 1 this.latitude 42362597 @@ -79184,7 +80576,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1855 this -1316864772 +674483268 1 this.latitude 42362697 @@ -79197,7 +80589,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1855 this -1316864772 +674483268 1 this.latitude 42362697 @@ -79213,16 +80605,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1853 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -79231,7 +80623,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -79247,16 +80639,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1856 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -79265,7 +80657,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -79278,7 +80670,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1857 this -1213216872 +764372388 1 this.latitude 42362697 @@ -79291,7 +80683,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1857 this -1213216872 +764372388 1 this.latitude 42362697 @@ -79307,7 +80699,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1858 this -1754638213 +459857341 1 this.latitude 42362597 @@ -79320,7 +80712,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1858 this -1754638213 +459857341 1 this.latitude 42362597 @@ -79336,16 +80728,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1856 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -79354,7 +80746,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -79370,16 +80762,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1859 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -79388,7 +80780,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -79401,7 +80793,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1860 this -527446182 +1399499405 1 this.latitude 42362697 @@ -79414,7 +80806,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1860 this -527446182 +1399499405 1 this.latitude 42362697 @@ -79430,7 +80822,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1861 this -1511785794 +238157928 1 this.latitude 42362997 @@ -79443,7 +80835,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1861 this -1511785794 +238157928 1 this.latitude 42362997 @@ -79459,16 +80851,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1859 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -79477,7 +80869,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -79493,16 +80885,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1862 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -79511,7 +80903,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -79524,7 +80916,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1863 this -665188480 +1883919084 1 this.latitude 42362997 @@ -79537,7 +80929,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1863 this -665188480 +1883919084 1 this.latitude 42362997 @@ -79553,7 +80945,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1864 this -489279267 +1860513229 1 this.latitude 42362697 @@ -79566,7 +80958,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1864 this -489279267 +1860513229 1 this.latitude 42362697 @@ -79582,16 +80974,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1862 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -79600,7 +80992,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -79616,16 +81008,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1865 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -79634,7 +81026,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -79647,7 +81039,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1866 this -513169028 +92150540 1 this.latitude 42362997 @@ -79660,7 +81052,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1866 this -513169028 +92150540 1 this.latitude 42362997 @@ -79676,7 +81068,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1867 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -79689,7 +81081,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1867 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -79705,16 +81097,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1865 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -79723,7 +81115,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -79739,16 +81131,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1868 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -79757,7 +81149,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -79770,7 +81162,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1869 this -394714818 +1166807841 1 this.latitude 42360297 @@ -79783,7 +81175,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1869 this -394714818 +1166807841 1 this.latitude 42360297 @@ -79799,7 +81191,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1870 this -1952779858 +289639718 1 this.latitude 42362997 @@ -79812,7 +81204,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1870 this -1952779858 +289639718 1 this.latitude 42362997 @@ -79828,16 +81220,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1868 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -79846,7 +81238,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -79862,16 +81254,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1871 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -79880,7 +81272,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -79893,7 +81285,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1872 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -79906,7 +81298,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1872 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -79922,7 +81314,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1873 this -391618063 +1384722895 1 this.latitude 42358297 @@ -79935,7 +81327,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1873 this -391618063 +1384722895 1 this.latitude 42358297 @@ -79951,16 +81343,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1871 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -79969,7 +81361,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -79985,16 +81377,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1874 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -80003,7 +81395,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -80016,7 +81408,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1875 this -674483268 +733957003 1 this.latitude 42358297 @@ -80029,7 +81421,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1875 this -674483268 +733957003 1 this.latitude 42358297 @@ -80045,7 +81437,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1876 this -54495403 +815992954 1 this.latitude 42360297 @@ -80058,7 +81450,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1876 this -54495403 +815992954 1 this.latitude 42360297 @@ -80074,16 +81466,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1874 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -80092,7 +81484,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -80108,16 +81500,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1877 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -80126,7 +81518,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -80139,7 +81531,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1878 this -459857341 +1392425346 1 this.latitude 42358297 @@ -80152,7 +81544,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1878 this -459857341 +1392425346 1 this.latitude 42358297 @@ -80168,7 +81560,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1879 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -80181,7 +81573,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1879 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -80197,16 +81589,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1877 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -80215,7 +81607,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -80231,16 +81623,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1880 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -80249,7 +81641,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -80262,7 +81654,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1881 this -238157928 +809762318 1 this.latitude 42357097 @@ -80275,7 +81667,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1881 this -238157928 +809762318 1 this.latitude 42357097 @@ -80291,7 +81683,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1882 this -32863545 +2028371466 1 this.latitude 42358297 @@ -80304,7 +81696,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1882 this -32863545 +2028371466 1 this.latitude 42358297 @@ -80320,16 +81712,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1880 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -80338,7 +81730,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -80354,16 +81746,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1883 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -80372,7 +81764,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -80385,7 +81777,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1884 this -1860513229 +525571 1 this.latitude 42362697 @@ -80398,7 +81790,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1884 this -1860513229 +525571 1 this.latitude 42362697 @@ -80414,7 +81806,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1885 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -80427,7 +81819,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1885 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -80443,16 +81835,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1883 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -80461,7 +81853,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -80487,7 +81879,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1886 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -80516,7 +81908,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 1887 this -410495873 +710239027 1 this.latitude 42362697 @@ -80535,13 +81927,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1888 name -811587677 +2104545713 1 name.toString "Vassar_St" 1 p1 -1110623531 +1208736537 1 p1.latitude 42360297 @@ -80550,7 +81942,7 @@ p1.longitude -71095096 1 p2 -410495873 +710239027 1 p2.latitude 42362697 @@ -80563,7 +81955,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 1889 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -80572,7 +81964,7 @@ this.longitude -71095096 1 o -410495873 +710239027 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -80582,7 +81974,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 1889 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -80591,7 +81983,7 @@ this.longitude -71095096 1 o -410495873 +710239027 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -80604,16 +81996,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 1888 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -80622,7 +82014,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -80631,13 +82023,13 @@ this.p2.longitude -71090996 1 name -811587677 +2104545713 1 name.toString "Vassar_St" 1 p1 -1110623531 +1208736537 1 p1.latitude 42360297 @@ -80646,7 +82038,7 @@ p1.longitude -71095096 1 p2 -410495873 +710239027 1 p2.latitude 42362697 @@ -80659,16 +82051,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1890 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -80677,7 +82069,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -80690,7 +82082,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1891 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -80703,7 +82095,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1891 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -80719,7 +82111,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1892 this -410495873 +710239027 1 this.latitude 42362697 @@ -80732,7 +82124,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1892 this -410495873 +710239027 1 this.latitude 42362697 @@ -80748,16 +82140,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1890 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -80766,7 +82158,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -80782,16 +82174,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1893 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -80800,7 +82192,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -80813,7 +82205,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1894 this -488044861 +143110009 1 this.latitude 42361797 @@ -80826,7 +82218,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1894 this -488044861 +143110009 1 this.latitude 42361797 @@ -80842,7 +82234,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1895 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -80855,7 +82247,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1895 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -80871,16 +82263,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1893 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -80889,7 +82281,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -80905,16 +82297,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1896 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -80923,7 +82315,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -80936,7 +82328,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1897 this -1241276575 +706197430 1 this.latitude 42360097 @@ -80949,7 +82341,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1897 this -1241276575 +706197430 1 this.latitude 42360097 @@ -80965,7 +82357,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1898 this -215145189 +1325808650 1 this.latitude 42361797 @@ -80978,7 +82370,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1898 this -215145189 +1325808650 1 this.latitude 42361797 @@ -80994,16 +82386,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1896 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -81012,7 +82404,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -81028,16 +82420,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1899 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -81046,7 +82438,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -81059,7 +82451,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1900 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -81072,7 +82464,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1900 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -81088,7 +82480,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1901 this -2042495840 +525683462 1 this.latitude 42358941 @@ -81101,7 +82493,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1901 this -2042495840 +525683462 1 this.latitude 42358941 @@ -81117,16 +82509,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1899 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -81135,7 +82527,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -81151,16 +82543,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1902 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -81169,7 +82561,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -81182,7 +82574,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1903 this -990398217 +319977154 1 this.latitude 42358941 @@ -81195,7 +82587,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1903 this -990398217 +319977154 1 this.latitude 42358941 @@ -81211,7 +82603,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1904 this -841283083 +648680157 1 this.latitude 42360097 @@ -81224,7 +82616,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1904 this -841283083 +648680157 1 this.latitude 42360097 @@ -81240,16 +82632,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1902 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -81258,7 +82650,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -81274,16 +82666,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1905 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -81292,7 +82684,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -81305,7 +82697,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1906 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -81318,7 +82710,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1906 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -81334,7 +82726,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1907 this -1924582348 +133250414 1 this.latitude 42357097 @@ -81347,7 +82739,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1907 this -1924582348 +133250414 1 this.latitude 42357097 @@ -81363,16 +82755,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1905 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -81381,7 +82773,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -81397,16 +82789,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1908 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -81415,7 +82807,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -81428,7 +82820,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1909 this -817406040 +603650290 1 this.latitude 42357097 @@ -81441,7 +82833,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1909 this -817406040 +603650290 1 this.latitude 42357097 @@ -81457,7 +82849,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1910 this -1955915048 +762227630 1 this.latitude 42358941 @@ -81470,7 +82862,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1910 this -1955915048 +762227630 1 this.latitude 42358941 @@ -81486,16 +82878,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1908 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -81504,7 +82896,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -81520,16 +82912,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1911 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -81538,7 +82930,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -81551,7 +82943,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1912 this -157683534 +280744458 1 this.latitude 42357097 @@ -81564,7 +82956,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1912 this -157683534 +280744458 1 this.latitude 42357097 @@ -81580,7 +82972,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1913 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -81593,7 +82985,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1913 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -81609,16 +83001,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1911 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -81627,7 +83019,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -81643,16 +83035,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1914 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -81661,7 +83053,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -81674,7 +83066,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1915 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -81687,7 +83079,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1915 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -81703,7 +83095,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1916 this -2097514481 +527446182 1 this.latitude 42357097 @@ -81716,7 +83108,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1916 this -2097514481 +527446182 1 this.latitude 42357097 @@ -81732,16 +83124,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1914 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -81750,7 +83142,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -81766,16 +83158,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1917 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -81784,7 +83176,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -81797,7 +83189,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1918 this -1325808650 +961419791 1 this.latitude 42361797 @@ -81810,7 +83202,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1918 this -1325808650 +961419791 1 this.latitude 42361797 @@ -81826,7 +83218,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1919 this -510464020 +665188480 1 this.latitude 42362297 @@ -81839,7 +83231,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1919 this -510464020 +665188480 1 this.latitude 42362297 @@ -81855,16 +83247,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1917 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -81873,7 +83265,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -81889,16 +83281,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1920 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -81907,7 +83299,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -81920,7 +83312,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1921 this -525683462 +377478451 1 this.latitude 42362297 @@ -81933,7 +83325,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1921 this -525683462 +377478451 1 this.latitude 42362297 @@ -81949,7 +83341,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1922 this -1766724936 +513169028 1 this.latitude 42361797 @@ -81962,7 +83354,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1922 this -1766724936 +513169028 1 this.latitude 42361797 @@ -81978,16 +83370,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1920 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -81996,7 +83388,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -82012,16 +83404,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1923 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -82030,7 +83422,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -82043,7 +83435,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1924 this -648680157 +990416209 1 this.latitude 42362297 @@ -82056,7 +83448,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1924 this -648680157 +990416209 1 this.latitude 42362297 @@ -82072,7 +83464,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1925 this -1071097621 +394714818 1 this.latitude 42362597 @@ -82085,7 +83477,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1925 this -1071097621 +394714818 1 this.latitude 42362597 @@ -82101,16 +83493,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1923 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -82119,7 +83511,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -82135,16 +83527,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1926 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -82153,7 +83545,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -82166,7 +83558,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1927 this -133250414 +1791868405 1 this.latitude 42362597 @@ -82179,7 +83571,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1927 this -133250414 +1791868405 1 this.latitude 42362597 @@ -82195,7 +83587,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1928 this -85777802 +1260134048 1 this.latitude 42362297 @@ -82208,7 +83600,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1928 this -85777802 +1260134048 1 this.latitude 42362297 @@ -82224,16 +83616,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1926 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -82242,7 +83634,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -82258,16 +83650,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1929 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -82276,7 +83668,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -82289,7 +83681,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1930 this -762227630 +57748372 1 this.latitude 42362597 @@ -82302,7 +83694,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1930 this -762227630 +57748372 1 this.latitude 42362597 @@ -82318,7 +83710,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1931 this -1316864772 +674483268 1 this.latitude 42362697 @@ -82331,7 +83723,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1931 this -1316864772 +674483268 1 this.latitude 42362697 @@ -82347,16 +83739,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1929 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -82365,7 +83757,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -82381,16 +83773,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1932 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -82399,7 +83791,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -82412,7 +83804,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1933 this -1213216872 +764372388 1 this.latitude 42362697 @@ -82425,7 +83817,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1933 this -1213216872 +764372388 1 this.latitude 42362697 @@ -82441,7 +83833,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1934 this -1754638213 +459857341 1 this.latitude 42362597 @@ -82454,7 +83846,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1934 this -1754638213 +459857341 1 this.latitude 42362597 @@ -82470,16 +83862,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1932 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -82488,7 +83880,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -82504,16 +83896,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1935 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -82522,7 +83914,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -82535,7 +83927,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1936 this -527446182 +1399499405 1 this.latitude 42362697 @@ -82548,7 +83940,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1936 this -527446182 +1399499405 1 this.latitude 42362697 @@ -82564,7 +83956,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1937 this -1511785794 +238157928 1 this.latitude 42362997 @@ -82577,7 +83969,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1937 this -1511785794 +238157928 1 this.latitude 42362997 @@ -82593,16 +83985,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1935 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -82611,7 +84003,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -82627,16 +84019,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1938 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -82645,7 +84037,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -82658,7 +84050,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1939 this -665188480 +1883919084 1 this.latitude 42362997 @@ -82671,7 +84063,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1939 this -665188480 +1883919084 1 this.latitude 42362997 @@ -82687,7 +84079,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1940 this -489279267 +1860513229 1 this.latitude 42362697 @@ -82700,7 +84092,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1940 this -489279267 +1860513229 1 this.latitude 42362697 @@ -82716,16 +84108,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1938 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -82734,7 +84126,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -82750,16 +84142,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1941 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -82768,7 +84160,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -82781,7 +84173,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1942 this -513169028 +92150540 1 this.latitude 42362997 @@ -82794,7 +84186,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1942 this -513169028 +92150540 1 this.latitude 42362997 @@ -82810,7 +84202,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1943 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -82823,7 +84215,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1943 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -82839,16 +84231,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1941 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -82857,7 +84249,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -82873,16 +84265,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1944 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -82891,7 +84283,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -82904,7 +84296,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1945 this -394714818 +1166807841 1 this.latitude 42360297 @@ -82917,7 +84309,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1945 this -394714818 +1166807841 1 this.latitude 42360297 @@ -82933,7 +84325,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1946 this -1952779858 +289639718 1 this.latitude 42362997 @@ -82946,7 +84338,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1946 this -1952779858 +289639718 1 this.latitude 42362997 @@ -82962,16 +84354,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1944 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -82980,7 +84372,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -82996,16 +84388,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1947 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -83014,7 +84406,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -83027,7 +84419,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1948 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -83040,7 +84432,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1948 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -83056,7 +84448,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1949 this -391618063 +1384722895 1 this.latitude 42358297 @@ -83069,7 +84461,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1949 this -391618063 +1384722895 1 this.latitude 42358297 @@ -83085,16 +84477,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1947 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -83103,7 +84495,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -83119,16 +84511,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1950 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -83137,7 +84529,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -83150,7 +84542,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1951 this -674483268 +733957003 1 this.latitude 42358297 @@ -83163,7 +84555,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1951 this -674483268 +733957003 1 this.latitude 42358297 @@ -83179,7 +84571,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1952 this -54495403 +815992954 1 this.latitude 42360297 @@ -83192,7 +84584,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1952 this -54495403 +815992954 1 this.latitude 42360297 @@ -83208,16 +84600,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1950 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -83226,7 +84618,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -83242,16 +84634,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1953 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -83260,7 +84652,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -83273,7 +84665,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1954 this -459857341 +1392425346 1 this.latitude 42358297 @@ -83286,7 +84678,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1954 this -459857341 +1392425346 1 this.latitude 42358297 @@ -83302,7 +84694,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1955 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -83315,7 +84707,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1955 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -83331,16 +84723,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1953 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -83349,7 +84741,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -83365,16 +84757,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1956 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -83383,7 +84775,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -83396,7 +84788,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1957 this -238157928 +809762318 1 this.latitude 42357097 @@ -83409,7 +84801,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1957 this -238157928 +809762318 1 this.latitude 42357097 @@ -83425,7 +84817,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1958 this -32863545 +2028371466 1 this.latitude 42358297 @@ -83438,7 +84830,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1958 this -32863545 +2028371466 1 this.latitude 42358297 @@ -83454,16 +84846,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1956 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -83472,7 +84864,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -83488,16 +84880,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1959 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -83506,7 +84898,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -83519,7 +84911,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1960 this -1860513229 +525571 1 this.latitude 42362697 @@ -83532,7 +84924,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1960 this -1860513229 +525571 1 this.latitude 42362697 @@ -83548,7 +84940,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1961 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -83561,7 +84953,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1961 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -83577,16 +84969,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1959 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -83595,7 +84987,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -83611,16 +85003,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1962 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -83629,7 +85021,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -83642,7 +85034,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1963 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -83655,7 +85047,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1963 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -83671,7 +85063,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1964 this -410495873 +710239027 1 this.latitude 42362697 @@ -83684,7 +85076,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1964 this -410495873 +710239027 1 this.latitude 42362697 @@ -83700,16 +85092,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1962 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -83718,7 +85110,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -83734,16 +85126,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1965 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -83752,7 +85144,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -83765,7 +85157,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1966 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -83778,7 +85170,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1966 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -83794,7 +85186,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1967 this -410495873 +710239027 1 this.latitude 42362697 @@ -83807,7 +85199,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1967 this -410495873 +710239027 1 this.latitude 42362697 @@ -83823,16 +85215,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1965 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -83841,7 +85233,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -83857,16 +85249,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1968 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -83875,7 +85267,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -83888,7 +85280,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1969 this -488044861 +143110009 1 this.latitude 42361797 @@ -83901,7 +85293,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1969 this -488044861 +143110009 1 this.latitude 42361797 @@ -83917,7 +85309,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1970 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -83930,7 +85322,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1970 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -83946,16 +85338,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1968 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -83964,7 +85356,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -83980,16 +85372,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1971 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -83998,7 +85390,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -84011,7 +85403,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1972 this -1241276575 +706197430 1 this.latitude 42360097 @@ -84024,7 +85416,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1972 this -1241276575 +706197430 1 this.latitude 42360097 @@ -84040,7 +85432,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1973 this -215145189 +1325808650 1 this.latitude 42361797 @@ -84053,7 +85445,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1973 this -215145189 +1325808650 1 this.latitude 42361797 @@ -84069,16 +85461,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1971 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -84087,7 +85479,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -84103,16 +85495,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1974 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -84121,7 +85513,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -84134,7 +85526,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1975 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -84147,7 +85539,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1975 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -84163,7 +85555,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1976 this -2042495840 +525683462 1 this.latitude 42358941 @@ -84176,7 +85568,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1976 this -2042495840 +525683462 1 this.latitude 42358941 @@ -84192,16 +85584,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1974 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -84210,7 +85602,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -84226,16 +85618,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1977 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -84244,7 +85636,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -84257,7 +85649,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1978 this -990398217 +319977154 1 this.latitude 42358941 @@ -84270,7 +85662,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1978 this -990398217 +319977154 1 this.latitude 42358941 @@ -84286,7 +85678,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1979 this -841283083 +648680157 1 this.latitude 42360097 @@ -84299,7 +85691,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1979 this -841283083 +648680157 1 this.latitude 42360097 @@ -84315,16 +85707,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1977 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -84333,7 +85725,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -84349,16 +85741,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1980 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -84367,7 +85759,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -84380,7 +85772,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1981 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -84393,7 +85785,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1981 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -84409,7 +85801,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1982 this -1924582348 +133250414 1 this.latitude 42357097 @@ -84422,7 +85814,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1982 this -1924582348 +133250414 1 this.latitude 42357097 @@ -84438,16 +85830,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1980 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -84456,7 +85848,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -84472,16 +85864,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1983 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -84490,7 +85882,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -84503,7 +85895,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1984 this -817406040 +603650290 1 this.latitude 42357097 @@ -84516,7 +85908,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1984 this -817406040 +603650290 1 this.latitude 42357097 @@ -84532,7 +85924,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1985 this -1955915048 +762227630 1 this.latitude 42358941 @@ -84545,7 +85937,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1985 this -1955915048 +762227630 1 this.latitude 42358941 @@ -84561,16 +85953,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1983 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -84579,7 +85971,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -84595,16 +85987,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1986 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -84613,7 +86005,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -84626,7 +86018,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1987 this -157683534 +280744458 1 this.latitude 42357097 @@ -84639,7 +86031,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1987 this -157683534 +280744458 1 this.latitude 42357097 @@ -84655,7 +86047,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1988 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -84668,7 +86060,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1988 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -84684,16 +86076,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1986 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -84702,7 +86094,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -84718,16 +86110,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1989 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -84736,7 +86128,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -84749,7 +86141,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1990 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -84762,7 +86154,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1990 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -84778,7 +86170,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1991 this -2097514481 +527446182 1 this.latitude 42357097 @@ -84791,7 +86183,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1991 this -2097514481 +527446182 1 this.latitude 42357097 @@ -84807,16 +86199,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1989 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -84825,7 +86217,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -84841,16 +86233,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1992 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -84859,7 +86251,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -84872,7 +86264,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1993 this -1325808650 +961419791 1 this.latitude 42361797 @@ -84885,7 +86277,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1993 this -1325808650 +961419791 1 this.latitude 42361797 @@ -84901,7 +86293,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1994 this -510464020 +665188480 1 this.latitude 42362297 @@ -84914,7 +86306,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1994 this -510464020 +665188480 1 this.latitude 42362297 @@ -84930,16 +86322,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1992 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -84948,7 +86340,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -84964,16 +86356,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1995 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -84982,7 +86374,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -84995,7 +86387,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1996 this -525683462 +377478451 1 this.latitude 42362297 @@ -85008,7 +86400,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1996 this -525683462 +377478451 1 this.latitude 42362297 @@ -85024,7 +86416,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1997 this -1766724936 +513169028 1 this.latitude 42361797 @@ -85037,7 +86429,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1997 this -1766724936 +513169028 1 this.latitude 42361797 @@ -85053,16 +86445,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1995 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -85071,7 +86463,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -85087,16 +86479,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 1998 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -85105,7 +86497,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -85118,7 +86510,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 1999 this -648680157 +990416209 1 this.latitude 42362297 @@ -85131,7 +86523,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 1999 this -648680157 +990416209 1 this.latitude 42362297 @@ -85147,7 +86539,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2000 this -1071097621 +394714818 1 this.latitude 42362597 @@ -85160,7 +86552,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2000 this -1071097621 +394714818 1 this.latitude 42362597 @@ -85176,16 +86568,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 1998 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -85194,7 +86586,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -85210,16 +86602,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2001 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -85228,7 +86620,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -85241,7 +86633,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2002 this -133250414 +1791868405 1 this.latitude 42362597 @@ -85254,7 +86646,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2002 this -133250414 +1791868405 1 this.latitude 42362597 @@ -85270,7 +86662,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2003 this -85777802 +1260134048 1 this.latitude 42362297 @@ -85283,7 +86675,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2003 this -85777802 +1260134048 1 this.latitude 42362297 @@ -85299,16 +86691,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2001 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -85317,7 +86709,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -85333,16 +86725,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2004 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -85351,7 +86743,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -85364,7 +86756,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2005 this -762227630 +57748372 1 this.latitude 42362597 @@ -85377,7 +86769,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2005 this -762227630 +57748372 1 this.latitude 42362597 @@ -85393,7 +86785,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2006 this -1316864772 +674483268 1 this.latitude 42362697 @@ -85406,7 +86798,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2006 this -1316864772 +674483268 1 this.latitude 42362697 @@ -85422,16 +86814,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2004 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -85440,7 +86832,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -85456,16 +86848,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2007 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -85474,7 +86866,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -85487,7 +86879,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2008 this -1213216872 +764372388 1 this.latitude 42362697 @@ -85500,7 +86892,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2008 this -1213216872 +764372388 1 this.latitude 42362697 @@ -85516,7 +86908,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2009 this -1754638213 +459857341 1 this.latitude 42362597 @@ -85529,7 +86921,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2009 this -1754638213 +459857341 1 this.latitude 42362597 @@ -85545,16 +86937,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2007 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -85563,7 +86955,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -85579,16 +86971,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2010 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -85597,7 +86989,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -85610,7 +87002,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2011 this -527446182 +1399499405 1 this.latitude 42362697 @@ -85623,7 +87015,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2011 this -527446182 +1399499405 1 this.latitude 42362697 @@ -85639,7 +87031,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2012 this -1511785794 +238157928 1 this.latitude 42362997 @@ -85652,7 +87044,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2012 this -1511785794 +238157928 1 this.latitude 42362997 @@ -85668,16 +87060,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2010 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -85686,7 +87078,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -85702,16 +87094,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2013 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -85720,7 +87112,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -85733,7 +87125,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2014 this -665188480 +1883919084 1 this.latitude 42362997 @@ -85746,7 +87138,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2014 this -665188480 +1883919084 1 this.latitude 42362997 @@ -85762,7 +87154,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2015 this -489279267 +1860513229 1 this.latitude 42362697 @@ -85775,7 +87167,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2015 this -489279267 +1860513229 1 this.latitude 42362697 @@ -85791,16 +87183,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2013 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -85809,7 +87201,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -85825,16 +87217,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2016 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -85843,7 +87235,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -85856,7 +87248,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2017 this -513169028 +92150540 1 this.latitude 42362997 @@ -85869,7 +87261,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2017 this -513169028 +92150540 1 this.latitude 42362997 @@ -85885,7 +87277,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2018 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -85898,7 +87290,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2018 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -85914,16 +87306,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2016 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -85932,7 +87324,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -85948,16 +87340,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2019 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -85966,7 +87358,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -85979,7 +87371,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2020 this -394714818 +1166807841 1 this.latitude 42360297 @@ -85992,7 +87384,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2020 this -394714818 +1166807841 1 this.latitude 42360297 @@ -86008,7 +87400,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2021 this -1952779858 +289639718 1 this.latitude 42362997 @@ -86021,7 +87413,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2021 this -1952779858 +289639718 1 this.latitude 42362997 @@ -86037,16 +87429,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2019 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -86055,7 +87447,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -86071,16 +87463,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2022 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -86089,7 +87481,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -86102,7 +87494,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2023 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -86115,7 +87507,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2023 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -86131,7 +87523,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2024 this -391618063 +1384722895 1 this.latitude 42358297 @@ -86144,7 +87536,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2024 this -391618063 +1384722895 1 this.latitude 42358297 @@ -86160,16 +87552,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2022 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -86178,7 +87570,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -86194,16 +87586,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2025 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -86212,7 +87604,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -86225,7 +87617,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2026 this -674483268 +733957003 1 this.latitude 42358297 @@ -86238,7 +87630,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2026 this -674483268 +733957003 1 this.latitude 42358297 @@ -86254,7 +87646,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2027 this -54495403 +815992954 1 this.latitude 42360297 @@ -86267,7 +87659,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2027 this -54495403 +815992954 1 this.latitude 42360297 @@ -86283,16 +87675,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2025 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -86301,7 +87693,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -86317,16 +87709,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2028 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -86335,7 +87727,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -86348,7 +87740,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2029 this -459857341 +1392425346 1 this.latitude 42358297 @@ -86361,7 +87753,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2029 this -459857341 +1392425346 1 this.latitude 42358297 @@ -86377,7 +87769,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2030 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -86390,7 +87782,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2030 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -86406,16 +87798,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2028 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -86424,7 +87816,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -86440,16 +87832,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2031 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -86458,7 +87850,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -86471,7 +87863,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2032 this -238157928 +809762318 1 this.latitude 42357097 @@ -86484,7 +87876,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2032 this -238157928 +809762318 1 this.latitude 42357097 @@ -86500,7 +87892,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2033 this -32863545 +2028371466 1 this.latitude 42358297 @@ -86513,7 +87905,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2033 this -32863545 +2028371466 1 this.latitude 42358297 @@ -86529,16 +87921,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2031 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -86547,7 +87939,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -86563,16 +87955,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2034 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -86581,7 +87973,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -86594,7 +87986,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2035 this -1860513229 +525571 1 this.latitude 42362697 @@ -86607,7 +87999,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2035 this -1860513229 +525571 1 this.latitude 42362697 @@ -86623,7 +88015,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2036 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -86636,7 +88028,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2036 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -86652,16 +88044,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2034 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -86670,7 +88062,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -86686,16 +88078,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2037 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -86704,7 +88096,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -86717,7 +88109,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2038 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -86730,7 +88122,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2038 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -86746,7 +88138,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2039 this -410495873 +710239027 1 this.latitude 42362697 @@ -86759,7 +88151,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2039 this -410495873 +710239027 1 this.latitude 42362697 @@ -86775,16 +88167,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2037 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -86793,7 +88185,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -86819,7 +88211,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 2040 this -289639718 +1018298342 1 this.latitude 42360297 @@ -86848,7 +88240,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 2041 this -885851948 +1039949752 1 this.latitude 42355397 @@ -86867,13 +88259,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 2042 name -2048834776 +1182461167 1 name.toString "Vassar_St" 1 p1 -289639718 +1018298342 1 p1.latitude 42360297 @@ -86882,7 +88274,7 @@ p1.longitude -71095096 1 p2 -885851948 +1039949752 1 p2.latitude 42355397 @@ -86895,7 +88287,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 2043 this -289639718 +1018298342 1 this.latitude 42360297 @@ -86904,7 +88296,7 @@ this.longitude -71095096 1 o -885851948 +1039949752 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -86914,7 +88306,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 2043 this -289639718 +1018298342 1 this.latitude 42360297 @@ -86923,7 +88315,7 @@ this.longitude -71095096 1 o -885851948 +1039949752 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -86936,16 +88328,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 2042 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -86954,7 +88346,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -86963,13 +88355,13 @@ this.p2.longitude -71104696 1 name -2048834776 +1182461167 1 name.toString "Vassar_St" 1 p1 -289639718 +1018298342 1 p1.latitude 42360297 @@ -86978,7 +88370,7 @@ p1.longitude -71095096 1 p2 -885851948 +1039949752 1 p2.latitude 42355397 @@ -86991,16 +88383,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2044 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -87009,7 +88401,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -87022,7 +88414,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2045 this -289639718 +1018298342 1 this.latitude 42360297 @@ -87035,7 +88427,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2045 this -289639718 +1018298342 1 this.latitude 42360297 @@ -87051,7 +88443,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2046 this -885851948 +1039949752 1 this.latitude 42355397 @@ -87064,7 +88456,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2046 this -885851948 +1039949752 1 this.latitude 42355397 @@ -87080,16 +88472,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2044 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -87098,7 +88490,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -87114,16 +88506,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2047 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -87132,7 +88524,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -87145,7 +88537,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2048 this -488044861 +143110009 1 this.latitude 42361797 @@ -87158,7 +88550,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2048 this -488044861 +143110009 1 this.latitude 42361797 @@ -87174,7 +88566,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2049 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -87187,7 +88579,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2049 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -87203,16 +88595,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2047 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -87221,7 +88613,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -87237,16 +88629,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2050 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -87255,7 +88647,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -87268,7 +88660,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2051 this -1241276575 +706197430 1 this.latitude 42360097 @@ -87281,7 +88673,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2051 this -1241276575 +706197430 1 this.latitude 42360097 @@ -87297,7 +88689,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2052 this -215145189 +1325808650 1 this.latitude 42361797 @@ -87310,7 +88702,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2052 this -215145189 +1325808650 1 this.latitude 42361797 @@ -87326,16 +88718,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2050 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -87344,7 +88736,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -87360,16 +88752,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2053 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -87378,7 +88770,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -87391,7 +88783,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2054 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -87404,7 +88796,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2054 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -87420,7 +88812,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2055 this -2042495840 +525683462 1 this.latitude 42358941 @@ -87433,7 +88825,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2055 this -2042495840 +525683462 1 this.latitude 42358941 @@ -87449,16 +88841,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2053 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -87467,7 +88859,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -87483,16 +88875,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2056 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -87501,7 +88893,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -87514,7 +88906,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2057 this -990398217 +319977154 1 this.latitude 42358941 @@ -87527,7 +88919,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2057 this -990398217 +319977154 1 this.latitude 42358941 @@ -87543,7 +88935,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2058 this -841283083 +648680157 1 this.latitude 42360097 @@ -87556,7 +88948,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2058 this -841283083 +648680157 1 this.latitude 42360097 @@ -87572,16 +88964,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2056 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -87590,7 +88982,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -87606,16 +88998,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2059 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -87624,7 +89016,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -87637,7 +89029,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2060 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -87650,7 +89042,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2060 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -87666,7 +89058,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2061 this -1924582348 +133250414 1 this.latitude 42357097 @@ -87679,7 +89071,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2061 this -1924582348 +133250414 1 this.latitude 42357097 @@ -87695,16 +89087,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2059 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -87713,7 +89105,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -87729,16 +89121,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2062 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -87747,7 +89139,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -87760,7 +89152,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2063 this -817406040 +603650290 1 this.latitude 42357097 @@ -87773,7 +89165,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2063 this -817406040 +603650290 1 this.latitude 42357097 @@ -87789,7 +89181,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2064 this -1955915048 +762227630 1 this.latitude 42358941 @@ -87802,7 +89194,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2064 this -1955915048 +762227630 1 this.latitude 42358941 @@ -87818,16 +89210,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2062 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -87836,7 +89228,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -87852,16 +89244,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2065 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -87870,7 +89262,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -87883,7 +89275,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2066 this -157683534 +280744458 1 this.latitude 42357097 @@ -87896,7 +89288,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2066 this -157683534 +280744458 1 this.latitude 42357097 @@ -87912,7 +89304,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2067 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -87925,7 +89317,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2067 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -87941,16 +89333,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2065 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -87959,7 +89351,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -87975,16 +89367,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2068 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -87993,7 +89385,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -88006,7 +89398,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2069 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -88019,7 +89411,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2069 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -88035,7 +89427,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2070 this -2097514481 +527446182 1 this.latitude 42357097 @@ -88048,7 +89440,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2070 this -2097514481 +527446182 1 this.latitude 42357097 @@ -88064,16 +89456,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2068 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -88082,7 +89474,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -88098,16 +89490,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2071 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -88116,7 +89508,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -88129,7 +89521,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2072 this -1325808650 +961419791 1 this.latitude 42361797 @@ -88142,7 +89534,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2072 this -1325808650 +961419791 1 this.latitude 42361797 @@ -88158,7 +89550,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2073 this -510464020 +665188480 1 this.latitude 42362297 @@ -88171,7 +89563,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2073 this -510464020 +665188480 1 this.latitude 42362297 @@ -88187,16 +89579,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2071 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -88205,7 +89597,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -88221,16 +89613,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2074 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -88239,7 +89631,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -88252,7 +89644,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2075 this -525683462 +377478451 1 this.latitude 42362297 @@ -88265,7 +89657,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2075 this -525683462 +377478451 1 this.latitude 42362297 @@ -88281,7 +89673,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2076 this -1766724936 +513169028 1 this.latitude 42361797 @@ -88294,7 +89686,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2076 this -1766724936 +513169028 1 this.latitude 42361797 @@ -88310,16 +89702,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2074 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -88328,7 +89720,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -88344,16 +89736,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2077 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -88362,7 +89754,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -88375,7 +89767,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2078 this -648680157 +990416209 1 this.latitude 42362297 @@ -88388,7 +89780,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2078 this -648680157 +990416209 1 this.latitude 42362297 @@ -88404,7 +89796,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2079 this -1071097621 +394714818 1 this.latitude 42362597 @@ -88417,7 +89809,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2079 this -1071097621 +394714818 1 this.latitude 42362597 @@ -88433,16 +89825,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2077 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -88451,7 +89843,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -88467,16 +89859,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2080 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -88485,7 +89877,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -88498,7 +89890,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2081 this -133250414 +1791868405 1 this.latitude 42362597 @@ -88511,7 +89903,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2081 this -133250414 +1791868405 1 this.latitude 42362597 @@ -88527,7 +89919,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2082 this -85777802 +1260134048 1 this.latitude 42362297 @@ -88540,7 +89932,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2082 this -85777802 +1260134048 1 this.latitude 42362297 @@ -88556,16 +89948,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2080 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -88574,7 +89966,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -88590,16 +89982,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2083 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -88608,7 +90000,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -88621,7 +90013,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2084 this -762227630 +57748372 1 this.latitude 42362597 @@ -88634,7 +90026,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2084 this -762227630 +57748372 1 this.latitude 42362597 @@ -88650,7 +90042,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2085 this -1316864772 +674483268 1 this.latitude 42362697 @@ -88663,7 +90055,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2085 this -1316864772 +674483268 1 this.latitude 42362697 @@ -88679,16 +90071,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2083 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -88697,7 +90089,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -88713,16 +90105,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2086 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -88731,7 +90123,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -88744,7 +90136,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2087 this -1213216872 +764372388 1 this.latitude 42362697 @@ -88757,7 +90149,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2087 this -1213216872 +764372388 1 this.latitude 42362697 @@ -88773,7 +90165,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2088 this -1754638213 +459857341 1 this.latitude 42362597 @@ -88786,7 +90178,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2088 this -1754638213 +459857341 1 this.latitude 42362597 @@ -88802,16 +90194,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2086 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -88820,7 +90212,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -88836,16 +90228,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2089 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -88854,7 +90246,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -88867,7 +90259,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2090 this -527446182 +1399499405 1 this.latitude 42362697 @@ -88880,7 +90272,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2090 this -527446182 +1399499405 1 this.latitude 42362697 @@ -88896,7 +90288,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2091 this -1511785794 +238157928 1 this.latitude 42362997 @@ -88909,7 +90301,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2091 this -1511785794 +238157928 1 this.latitude 42362997 @@ -88925,16 +90317,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2089 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -88943,7 +90335,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -88959,16 +90351,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2092 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -88977,7 +90369,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -88990,7 +90382,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2093 this -665188480 +1883919084 1 this.latitude 42362997 @@ -89003,7 +90395,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2093 this -665188480 +1883919084 1 this.latitude 42362997 @@ -89019,7 +90411,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2094 this -489279267 +1860513229 1 this.latitude 42362697 @@ -89032,7 +90424,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2094 this -489279267 +1860513229 1 this.latitude 42362697 @@ -89048,16 +90440,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2092 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -89066,7 +90458,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -89082,16 +90474,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2095 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -89100,7 +90492,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -89113,7 +90505,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2096 this -513169028 +92150540 1 this.latitude 42362997 @@ -89126,7 +90518,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2096 this -513169028 +92150540 1 this.latitude 42362997 @@ -89142,7 +90534,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2097 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -89155,7 +90547,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2097 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -89171,16 +90563,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2095 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -89189,7 +90581,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -89205,16 +90597,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2098 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -89223,7 +90615,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -89236,7 +90628,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2099 this -394714818 +1166807841 1 this.latitude 42360297 @@ -89249,7 +90641,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2099 this -394714818 +1166807841 1 this.latitude 42360297 @@ -89265,7 +90657,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2100 this -1952779858 +289639718 1 this.latitude 42362997 @@ -89278,7 +90670,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2100 this -1952779858 +289639718 1 this.latitude 42362997 @@ -89294,16 +90686,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2098 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -89312,7 +90704,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -89328,16 +90720,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2101 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -89346,7 +90738,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -89359,7 +90751,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2102 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -89372,7 +90764,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2102 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -89388,7 +90780,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2103 this -391618063 +1384722895 1 this.latitude 42358297 @@ -89401,7 +90793,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2103 this -391618063 +1384722895 1 this.latitude 42358297 @@ -89417,16 +90809,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2101 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -89435,7 +90827,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -89451,16 +90843,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2104 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -89469,7 +90861,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -89482,7 +90874,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2105 this -674483268 +733957003 1 this.latitude 42358297 @@ -89495,7 +90887,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2105 this -674483268 +733957003 1 this.latitude 42358297 @@ -89511,7 +90903,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2106 this -54495403 +815992954 1 this.latitude 42360297 @@ -89524,7 +90916,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2106 this -54495403 +815992954 1 this.latitude 42360297 @@ -89540,16 +90932,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2104 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -89558,7 +90950,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -89574,16 +90966,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2107 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -89592,7 +90984,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -89605,7 +90997,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2108 this -459857341 +1392425346 1 this.latitude 42358297 @@ -89618,7 +91010,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2108 this -459857341 +1392425346 1 this.latitude 42358297 @@ -89634,7 +91026,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2109 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -89647,7 +91039,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2109 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -89663,16 +91055,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2107 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -89681,7 +91073,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -89697,16 +91089,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2110 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -89715,7 +91107,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -89728,7 +91120,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2111 this -238157928 +809762318 1 this.latitude 42357097 @@ -89741,7 +91133,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2111 this -238157928 +809762318 1 this.latitude 42357097 @@ -89757,7 +91149,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2112 this -32863545 +2028371466 1 this.latitude 42358297 @@ -89770,7 +91162,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2112 this -32863545 +2028371466 1 this.latitude 42358297 @@ -89786,16 +91178,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2110 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -89804,7 +91196,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -89820,16 +91212,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2113 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -89838,7 +91230,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -89851,7 +91243,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2114 this -1860513229 +525571 1 this.latitude 42362697 @@ -89864,7 +91256,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2114 this -1860513229 +525571 1 this.latitude 42362697 @@ -89880,7 +91272,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2115 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -89893,7 +91285,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2115 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -89909,16 +91301,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2113 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -89927,7 +91319,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -89943,16 +91335,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2116 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -89961,7 +91353,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -89974,7 +91366,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2117 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -89987,7 +91379,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2117 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -90003,7 +91395,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2118 this -410495873 +710239027 1 this.latitude 42362697 @@ -90016,7 +91408,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2118 this -410495873 +710239027 1 this.latitude 42362697 @@ -90032,16 +91424,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2116 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -90050,7 +91442,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -90066,16 +91458,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2119 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -90084,7 +91476,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -90097,7 +91489,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2120 this -289639718 +1018298342 1 this.latitude 42360297 @@ -90110,7 +91502,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2120 this -289639718 +1018298342 1 this.latitude 42360297 @@ -90126,7 +91518,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2121 this -885851948 +1039949752 1 this.latitude 42355397 @@ -90139,7 +91531,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2121 this -885851948 +1039949752 1 this.latitude 42355397 @@ -90155,16 +91547,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2119 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -90173,7 +91565,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -90189,16 +91581,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2122 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -90207,7 +91599,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -90220,7 +91612,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2123 this -289639718 +1018298342 1 this.latitude 42360297 @@ -90233,7 +91625,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2123 this -289639718 +1018298342 1 this.latitude 42360297 @@ -90249,7 +91641,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2124 this -885851948 +1039949752 1 this.latitude 42355397 @@ -90262,7 +91654,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2124 this -885851948 +1039949752 1 this.latitude 42355397 @@ -90278,16 +91670,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2122 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -90296,7 +91688,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -90312,16 +91704,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2125 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -90330,7 +91722,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -90343,7 +91735,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2126 this -488044861 +143110009 1 this.latitude 42361797 @@ -90356,7 +91748,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2126 this -488044861 +143110009 1 this.latitude 42361797 @@ -90372,7 +91764,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2127 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -90385,7 +91777,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2127 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -90401,16 +91793,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2125 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -90419,7 +91811,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -90435,16 +91827,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2128 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -90453,7 +91845,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -90466,7 +91858,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2129 this -1241276575 +706197430 1 this.latitude 42360097 @@ -90479,7 +91871,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2129 this -1241276575 +706197430 1 this.latitude 42360097 @@ -90495,7 +91887,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2130 this -215145189 +1325808650 1 this.latitude 42361797 @@ -90508,7 +91900,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2130 this -215145189 +1325808650 1 this.latitude 42361797 @@ -90524,16 +91916,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2128 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -90542,7 +91934,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -90558,16 +91950,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2131 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -90576,7 +91968,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -90589,7 +91981,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2132 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -90602,7 +91994,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2132 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -90618,7 +92010,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2133 this -2042495840 +525683462 1 this.latitude 42358941 @@ -90631,7 +92023,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2133 this -2042495840 +525683462 1 this.latitude 42358941 @@ -90647,16 +92039,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2131 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -90665,7 +92057,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -90681,16 +92073,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2134 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -90699,7 +92091,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -90712,7 +92104,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2135 this -990398217 +319977154 1 this.latitude 42358941 @@ -90725,7 +92117,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2135 this -990398217 +319977154 1 this.latitude 42358941 @@ -90741,7 +92133,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2136 this -841283083 +648680157 1 this.latitude 42360097 @@ -90754,7 +92146,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2136 this -841283083 +648680157 1 this.latitude 42360097 @@ -90770,16 +92162,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2134 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -90788,7 +92180,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -90804,16 +92196,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2137 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -90822,7 +92214,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -90835,7 +92227,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2138 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -90848,7 +92240,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2138 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -90864,7 +92256,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2139 this -1924582348 +133250414 1 this.latitude 42357097 @@ -90877,7 +92269,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2139 this -1924582348 +133250414 1 this.latitude 42357097 @@ -90893,16 +92285,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2137 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -90911,7 +92303,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -90927,16 +92319,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2140 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -90945,7 +92337,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -90958,7 +92350,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2141 this -817406040 +603650290 1 this.latitude 42357097 @@ -90971,7 +92363,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2141 this -817406040 +603650290 1 this.latitude 42357097 @@ -90987,7 +92379,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2142 this -1955915048 +762227630 1 this.latitude 42358941 @@ -91000,7 +92392,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2142 this -1955915048 +762227630 1 this.latitude 42358941 @@ -91016,16 +92408,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2140 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -91034,7 +92426,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -91050,16 +92442,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2143 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -91068,7 +92460,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -91081,7 +92473,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2144 this -157683534 +280744458 1 this.latitude 42357097 @@ -91094,7 +92486,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2144 this -157683534 +280744458 1 this.latitude 42357097 @@ -91110,7 +92502,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2145 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -91123,7 +92515,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2145 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -91139,16 +92531,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2143 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -91157,7 +92549,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -91173,16 +92565,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2146 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -91191,7 +92583,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -91204,7 +92596,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2147 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -91217,7 +92609,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2147 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -91233,7 +92625,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2148 this -2097514481 +527446182 1 this.latitude 42357097 @@ -91246,7 +92638,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2148 this -2097514481 +527446182 1 this.latitude 42357097 @@ -91262,16 +92654,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2146 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -91280,7 +92672,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -91296,16 +92688,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2149 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -91314,7 +92706,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -91327,7 +92719,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2150 this -1325808650 +961419791 1 this.latitude 42361797 @@ -91340,7 +92732,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2150 this -1325808650 +961419791 1 this.latitude 42361797 @@ -91356,7 +92748,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2151 this -510464020 +665188480 1 this.latitude 42362297 @@ -91369,7 +92761,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2151 this -510464020 +665188480 1 this.latitude 42362297 @@ -91385,16 +92777,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2149 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -91403,7 +92795,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -91419,16 +92811,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2152 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -91437,7 +92829,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -91450,7 +92842,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2153 this -525683462 +377478451 1 this.latitude 42362297 @@ -91463,7 +92855,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2153 this -525683462 +377478451 1 this.latitude 42362297 @@ -91479,7 +92871,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2154 this -1766724936 +513169028 1 this.latitude 42361797 @@ -91492,7 +92884,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2154 this -1766724936 +513169028 1 this.latitude 42361797 @@ -91508,16 +92900,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2152 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -91526,7 +92918,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -91542,16 +92934,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2155 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -91560,7 +92952,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -91573,7 +92965,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2156 this -648680157 +990416209 1 this.latitude 42362297 @@ -91586,7 +92978,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2156 this -648680157 +990416209 1 this.latitude 42362297 @@ -91602,7 +92994,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2157 this -1071097621 +394714818 1 this.latitude 42362597 @@ -91615,7 +93007,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2157 this -1071097621 +394714818 1 this.latitude 42362597 @@ -91631,16 +93023,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2155 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -91649,7 +93041,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -91665,16 +93057,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2158 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -91683,7 +93075,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -91696,7 +93088,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2159 this -133250414 +1791868405 1 this.latitude 42362597 @@ -91709,7 +93101,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2159 this -133250414 +1791868405 1 this.latitude 42362597 @@ -91725,7 +93117,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2160 this -85777802 +1260134048 1 this.latitude 42362297 @@ -91738,7 +93130,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2160 this -85777802 +1260134048 1 this.latitude 42362297 @@ -91754,16 +93146,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2158 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -91772,7 +93164,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -91788,16 +93180,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2161 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -91806,7 +93198,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -91819,7 +93211,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2162 this -762227630 +57748372 1 this.latitude 42362597 @@ -91832,7 +93224,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2162 this -762227630 +57748372 1 this.latitude 42362597 @@ -91848,7 +93240,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2163 this -1316864772 +674483268 1 this.latitude 42362697 @@ -91861,7 +93253,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2163 this -1316864772 +674483268 1 this.latitude 42362697 @@ -91877,16 +93269,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2161 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -91895,7 +93287,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -91911,16 +93303,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2164 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -91929,7 +93321,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -91942,7 +93334,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2165 this -1213216872 +764372388 1 this.latitude 42362697 @@ -91955,7 +93347,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2165 this -1213216872 +764372388 1 this.latitude 42362697 @@ -91971,7 +93363,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2166 this -1754638213 +459857341 1 this.latitude 42362597 @@ -91984,7 +93376,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2166 this -1754638213 +459857341 1 this.latitude 42362597 @@ -92000,16 +93392,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2164 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -92018,7 +93410,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -92034,16 +93426,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2167 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -92052,7 +93444,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -92065,7 +93457,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2168 this -527446182 +1399499405 1 this.latitude 42362697 @@ -92078,7 +93470,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2168 this -527446182 +1399499405 1 this.latitude 42362697 @@ -92094,7 +93486,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2169 this -1511785794 +238157928 1 this.latitude 42362997 @@ -92107,7 +93499,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2169 this -1511785794 +238157928 1 this.latitude 42362997 @@ -92123,16 +93515,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2167 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -92141,7 +93533,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -92157,16 +93549,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2170 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -92175,7 +93567,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -92188,7 +93580,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2171 this -665188480 +1883919084 1 this.latitude 42362997 @@ -92201,7 +93593,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2171 this -665188480 +1883919084 1 this.latitude 42362997 @@ -92217,7 +93609,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2172 this -489279267 +1860513229 1 this.latitude 42362697 @@ -92230,7 +93622,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2172 this -489279267 +1860513229 1 this.latitude 42362697 @@ -92246,16 +93638,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2170 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -92264,7 +93656,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -92280,16 +93672,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2173 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -92298,7 +93690,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -92311,7 +93703,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2174 this -513169028 +92150540 1 this.latitude 42362997 @@ -92324,7 +93716,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2174 this -513169028 +92150540 1 this.latitude 42362997 @@ -92340,7 +93732,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2175 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -92353,7 +93745,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2175 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -92369,16 +93761,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2173 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -92387,7 +93779,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -92403,16 +93795,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2176 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -92421,7 +93813,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -92434,7 +93826,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2177 this -394714818 +1166807841 1 this.latitude 42360297 @@ -92447,7 +93839,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2177 this -394714818 +1166807841 1 this.latitude 42360297 @@ -92463,7 +93855,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2178 this -1952779858 +289639718 1 this.latitude 42362997 @@ -92476,7 +93868,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2178 this -1952779858 +289639718 1 this.latitude 42362997 @@ -92492,16 +93884,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2176 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -92510,7 +93902,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -92526,16 +93918,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2179 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -92544,7 +93936,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -92557,7 +93949,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2180 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -92570,7 +93962,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2180 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -92586,7 +93978,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2181 this -391618063 +1384722895 1 this.latitude 42358297 @@ -92599,7 +93991,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2181 this -391618063 +1384722895 1 this.latitude 42358297 @@ -92615,16 +94007,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2179 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -92633,7 +94025,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -92649,16 +94041,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2182 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -92667,7 +94059,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -92680,7 +94072,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2183 this -674483268 +733957003 1 this.latitude 42358297 @@ -92693,7 +94085,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2183 this -674483268 +733957003 1 this.latitude 42358297 @@ -92709,7 +94101,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2184 this -54495403 +815992954 1 this.latitude 42360297 @@ -92722,7 +94114,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2184 this -54495403 +815992954 1 this.latitude 42360297 @@ -92738,16 +94130,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2182 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -92756,7 +94148,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -92772,16 +94164,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2185 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -92790,7 +94182,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -92803,7 +94195,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2186 this -459857341 +1392425346 1 this.latitude 42358297 @@ -92816,7 +94208,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2186 this -459857341 +1392425346 1 this.latitude 42358297 @@ -92832,7 +94224,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2187 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -92845,7 +94237,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2187 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -92861,16 +94253,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2185 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -92879,7 +94271,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -92895,16 +94287,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2188 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -92913,7 +94305,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -92926,7 +94318,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2189 this -238157928 +809762318 1 this.latitude 42357097 @@ -92939,7 +94331,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2189 this -238157928 +809762318 1 this.latitude 42357097 @@ -92955,7 +94347,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2190 this -32863545 +2028371466 1 this.latitude 42358297 @@ -92968,7 +94360,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2190 this -32863545 +2028371466 1 this.latitude 42358297 @@ -92984,16 +94376,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2188 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -93002,7 +94394,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -93018,16 +94410,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2191 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -93036,7 +94428,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -93049,7 +94441,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2192 this -1860513229 +525571 1 this.latitude 42362697 @@ -93062,7 +94454,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2192 this -1860513229 +525571 1 this.latitude 42362697 @@ -93078,7 +94470,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2193 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -93091,7 +94483,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2193 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -93107,16 +94499,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2191 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -93125,7 +94517,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -93141,16 +94533,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2194 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -93159,7 +94551,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -93172,7 +94564,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2195 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -93185,7 +94577,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2195 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -93201,7 +94593,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2196 this -410495873 +710239027 1 this.latitude 42362697 @@ -93214,7 +94606,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2196 this -410495873 +710239027 1 this.latitude 42362697 @@ -93230,16 +94622,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2194 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -93248,7 +94640,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -93264,16 +94656,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2197 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -93282,7 +94674,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -93295,7 +94687,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2198 this -289639718 +1018298342 1 this.latitude 42360297 @@ -93308,7 +94700,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2198 this -289639718 +1018298342 1 this.latitude 42360297 @@ -93324,7 +94716,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2199 this -885851948 +1039949752 1 this.latitude 42355397 @@ -93337,7 +94729,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2199 this -885851948 +1039949752 1 this.latitude 42355397 @@ -93353,16 +94745,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2197 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -93371,7 +94763,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -93397,7 +94789,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 2200 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -93426,7 +94818,7 @@ MapQuick1.GeoPoint.GeoPoint(int, int):::EXIT47 this_invocation_nonce 2201 this -245475541 +561247961 1 this.latitude 42360297 @@ -93445,13 +94837,13 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 2202 name -22429093 +813656972 1 name.toString "Vassar_St" 1 p1 -1384722895 +2116908859 1 p1.latitude 42355397 @@ -93460,7 +94852,7 @@ p1.longitude -71104696 1 p2 -245475541 +561247961 1 p2.latitude 42360297 @@ -93473,7 +94865,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::ENTER this_invocation_nonce 2203 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -93482,7 +94874,7 @@ this.longitude -71104696 1 o -245475541 +561247961 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -93492,7 +94884,7 @@ MapQuick1.GeoPoint.equals(java.lang.Object):::EXIT69 this_invocation_nonce 2203 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -93501,7 +94893,7 @@ this.longitude -71104696 1 o -245475541 +561247961 1 o.getClass().getName() "MapQuick1.GeoPoint" @@ -93514,16 +94906,16 @@ MapQuick1.GeoSegment.GeoSegment(java.lang.String, MapQuick1.GeoPoint, MapQuick1. this_invocation_nonce 2202 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -93532,7 +94924,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -93541,13 +94933,13 @@ this.p2.longitude -71095096 1 name -22429093 +813656972 1 name.toString "Vassar_St" 1 p1 -1384722895 +2116908859 1 p1.latitude 42355397 @@ -93556,7 +94948,7 @@ p1.longitude -71104696 1 p2 -245475541 +561247961 1 p2.latitude 42360297 @@ -93569,16 +94961,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2204 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -93587,7 +94979,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -93600,7 +94992,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2205 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -93613,7 +95005,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2205 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -93629,7 +95021,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2206 this -245475541 +561247961 1 this.latitude 42360297 @@ -93642,7 +95034,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2206 this -245475541 +561247961 1 this.latitude 42360297 @@ -93658,16 +95050,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2204 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -93676,7 +95068,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -93692,16 +95084,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2207 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -93710,7 +95102,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -93723,7 +95115,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2208 this -488044861 +143110009 1 this.latitude 42361797 @@ -93736,7 +95128,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2208 this -488044861 +143110009 1 this.latitude 42361797 @@ -93752,7 +95144,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2209 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -93765,7 +95157,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2209 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -93781,16 +95173,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2207 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -93799,7 +95191,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -93815,16 +95207,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2210 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -93833,7 +95225,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -93846,7 +95238,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2211 this -1241276575 +706197430 1 this.latitude 42360097 @@ -93859,7 +95251,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2211 this -1241276575 +706197430 1 this.latitude 42360097 @@ -93875,7 +95267,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2212 this -215145189 +1325808650 1 this.latitude 42361797 @@ -93888,7 +95280,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2212 this -215145189 +1325808650 1 this.latitude 42361797 @@ -93904,16 +95296,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2210 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -93922,7 +95314,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -93938,16 +95330,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2213 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -93956,7 +95348,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -93969,7 +95361,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2214 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -93982,7 +95374,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2214 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -93998,7 +95390,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2215 this -2042495840 +525683462 1 this.latitude 42358941 @@ -94011,7 +95403,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2215 this -2042495840 +525683462 1 this.latitude 42358941 @@ -94027,16 +95419,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2213 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -94045,7 +95437,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -94061,16 +95453,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2216 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -94079,7 +95471,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -94092,7 +95484,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2217 this -990398217 +319977154 1 this.latitude 42358941 @@ -94105,7 +95497,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2217 this -990398217 +319977154 1 this.latitude 42358941 @@ -94121,7 +95513,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2218 this -841283083 +648680157 1 this.latitude 42360097 @@ -94134,7 +95526,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2218 this -841283083 +648680157 1 this.latitude 42360097 @@ -94150,16 +95542,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2216 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -94168,7 +95560,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -94184,16 +95576,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2219 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -94202,7 +95594,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -94215,7 +95607,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2220 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -94228,7 +95620,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2220 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -94244,7 +95636,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2221 this -1924582348 +133250414 1 this.latitude 42357097 @@ -94257,7 +95649,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2221 this -1924582348 +133250414 1 this.latitude 42357097 @@ -94273,16 +95665,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2219 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -94291,7 +95683,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -94307,16 +95699,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2222 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -94325,7 +95717,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -94338,7 +95730,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2223 this -817406040 +603650290 1 this.latitude 42357097 @@ -94351,7 +95743,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2223 this -817406040 +603650290 1 this.latitude 42357097 @@ -94367,7 +95759,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2224 this -1955915048 +762227630 1 this.latitude 42358941 @@ -94380,7 +95772,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2224 this -1955915048 +762227630 1 this.latitude 42358941 @@ -94396,16 +95788,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2222 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -94414,7 +95806,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -94430,16 +95822,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2225 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -94448,7 +95840,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -94461,7 +95853,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2226 this -157683534 +280744458 1 this.latitude 42357097 @@ -94474,7 +95866,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2226 this -157683534 +280744458 1 this.latitude 42357097 @@ -94490,7 +95882,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2227 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -94503,7 +95895,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2227 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -94519,16 +95911,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2225 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -94537,7 +95929,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -94553,16 +95945,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2228 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -94571,7 +95963,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -94584,7 +95976,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2229 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -94597,7 +95989,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2229 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -94613,7 +96005,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2230 this -2097514481 +527446182 1 this.latitude 42357097 @@ -94626,7 +96018,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2230 this -2097514481 +527446182 1 this.latitude 42357097 @@ -94642,16 +96034,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2228 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -94660,7 +96052,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -94676,16 +96068,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2231 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -94694,7 +96086,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -94707,7 +96099,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2232 this -1325808650 +961419791 1 this.latitude 42361797 @@ -94720,7 +96112,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2232 this -1325808650 +961419791 1 this.latitude 42361797 @@ -94736,7 +96128,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2233 this -510464020 +665188480 1 this.latitude 42362297 @@ -94749,7 +96141,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2233 this -510464020 +665188480 1 this.latitude 42362297 @@ -94765,16 +96157,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2231 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -94783,7 +96175,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -94799,16 +96191,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2234 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -94817,7 +96209,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -94830,7 +96222,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2235 this -525683462 +377478451 1 this.latitude 42362297 @@ -94843,7 +96235,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2235 this -525683462 +377478451 1 this.latitude 42362297 @@ -94859,7 +96251,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2236 this -1766724936 +513169028 1 this.latitude 42361797 @@ -94872,7 +96264,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2236 this -1766724936 +513169028 1 this.latitude 42361797 @@ -94888,16 +96280,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2234 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -94906,7 +96298,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -94922,16 +96314,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2237 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -94940,7 +96332,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -94953,7 +96345,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2238 this -648680157 +990416209 1 this.latitude 42362297 @@ -94966,7 +96358,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2238 this -648680157 +990416209 1 this.latitude 42362297 @@ -94982,7 +96374,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2239 this -1071097621 +394714818 1 this.latitude 42362597 @@ -94995,7 +96387,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2239 this -1071097621 +394714818 1 this.latitude 42362597 @@ -95011,16 +96403,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2237 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -95029,7 +96421,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -95045,16 +96437,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2240 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -95063,7 +96455,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -95076,7 +96468,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2241 this -133250414 +1791868405 1 this.latitude 42362597 @@ -95089,7 +96481,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2241 this -133250414 +1791868405 1 this.latitude 42362597 @@ -95105,7 +96497,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2242 this -85777802 +1260134048 1 this.latitude 42362297 @@ -95118,7 +96510,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2242 this -85777802 +1260134048 1 this.latitude 42362297 @@ -95134,16 +96526,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2240 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -95152,7 +96544,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -95168,16 +96560,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2243 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -95186,7 +96578,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -95199,7 +96591,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2244 this -762227630 +57748372 1 this.latitude 42362597 @@ -95212,7 +96604,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2244 this -762227630 +57748372 1 this.latitude 42362597 @@ -95228,7 +96620,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2245 this -1316864772 +674483268 1 this.latitude 42362697 @@ -95241,7 +96633,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2245 this -1316864772 +674483268 1 this.latitude 42362697 @@ -95257,16 +96649,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2243 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -95275,7 +96667,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -95291,16 +96683,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2246 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -95309,7 +96701,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -95322,7 +96714,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2247 this -1213216872 +764372388 1 this.latitude 42362697 @@ -95335,7 +96727,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2247 this -1213216872 +764372388 1 this.latitude 42362697 @@ -95351,7 +96743,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2248 this -1754638213 +459857341 1 this.latitude 42362597 @@ -95364,7 +96756,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2248 this -1754638213 +459857341 1 this.latitude 42362597 @@ -95380,16 +96772,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2246 this -1454031203 +94264799 1 this.name -407858146 +1684890795 1 this.name.toString "Main_St" 1 this.p1 -1213216872 +764372388 1 this.p1.latitude 42362697 @@ -95398,7 +96790,7 @@ this.p1.longitude -71090996 1 this.p2 -1754638213 +459857341 1 this.p2.latitude 42362597 @@ -95414,16 +96806,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2249 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -95432,7 +96824,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -95445,7 +96837,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2250 this -527446182 +1399499405 1 this.latitude 42362697 @@ -95458,7 +96850,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2250 this -527446182 +1399499405 1 this.latitude 42362697 @@ -95474,7 +96866,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2251 this -1511785794 +238157928 1 this.latitude 42362997 @@ -95487,7 +96879,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2251 this -1511785794 +238157928 1 this.latitude 42362997 @@ -95503,16 +96895,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2249 this -961419791 +1995616381 1 this.name -963601816 +32863545 1 this.name.toString "Main_St" 1 this.p1 -527446182 +1399499405 1 this.p1.latitude 42362697 @@ -95521,7 +96913,7 @@ this.p1.longitude -71090996 1 this.p2 -1511785794 +238157928 1 this.p2.latitude 42362997 @@ -95537,16 +96929,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2252 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -95555,7 +96947,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -95568,7 +96960,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2253 this -665188480 +1883919084 1 this.latitude 42362997 @@ -95581,7 +96973,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2253 this -665188480 +1883919084 1 this.latitude 42362997 @@ -95597,7 +96989,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2254 this -489279267 +1860513229 1 this.latitude 42362697 @@ -95610,7 +97002,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2254 this -489279267 +1860513229 1 this.latitude 42362697 @@ -95626,16 +97018,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2252 this -377478451 +662822946 1 this.name -1596467899 +1150538133 1 this.name.toString "Main_St" 1 this.p1 -665188480 +1883919084 1 this.p1.latitude 42362997 @@ -95644,7 +97036,7 @@ this.p1.longitude -71099696 1 this.p2 -489279267 +1860513229 1 this.p2.latitude 42362697 @@ -95660,16 +97052,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2255 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -95678,7 +97070,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -95691,7 +97083,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2256 this -513169028 +92150540 1 this.latitude 42362997 @@ -95704,7 +97096,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2256 this -513169028 +92150540 1 this.latitude 42362997 @@ -95720,7 +97112,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2257 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -95733,7 +97125,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2257 this -1301664418 +1110623531 1 this.latitude 42360297 @@ -95749,16 +97141,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2255 this -990416209 +811587677 1 this.name -1408652377 +410495873 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -513169028 +92150540 1 this.p1.latitude 42362997 @@ -95767,7 +97159,7 @@ this.p1.longitude -71099696 1 this.p2 -1301664418 +1110623531 1 this.p2.latitude 42360297 @@ -95783,16 +97175,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2258 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -95801,7 +97193,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -95814,7 +97206,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2259 this -394714818 +1166807841 1 this.latitude 42360297 @@ -95827,7 +97219,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2259 this -394714818 +1166807841 1 this.latitude 42360297 @@ -95843,7 +97235,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2260 this -1952779858 +289639718 1 this.latitude 42362997 @@ -95856,7 +97248,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2260 this -1952779858 +289639718 1 this.latitude 42362997 @@ -95872,16 +97264,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2258 this -1791868405 +2048834776 1 this.name -366004251 +885851948 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -394714818 +1166807841 1 this.p1.latitude 42360297 @@ -95890,7 +97282,7 @@ this.p1.longitude -71095096 1 this.p2 -1952779858 +289639718 1 this.p2.latitude 42362997 @@ -95906,16 +97298,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2261 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -95924,7 +97316,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -95937,7 +97329,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2262 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -95950,7 +97342,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2262 this -1260134048 +1605283233 1 this.latitude 42360297 @@ -95966,7 +97358,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2263 this -391618063 +1384722895 1 this.latitude 42358297 @@ -95979,7 +97371,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2263 this -391618063 +1384722895 1 this.latitude 42358297 @@ -95995,16 +97387,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2261 this -57748372 +22429093 1 this.name -81009902 +245475541 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -1260134048 +1605283233 1 this.p1.latitude 42360297 @@ -96013,7 +97405,7 @@ this.p1.longitude -71095096 1 this.p2 -391618063 +1384722895 1 this.p2.latitude 42358297 @@ -96029,16 +97421,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2264 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -96047,7 +97439,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -96060,7 +97452,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2265 this -674483268 +733957003 1 this.latitude 42358297 @@ -96073,7 +97465,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2265 this -674483268 +733957003 1 this.latitude 42358297 @@ -96089,7 +97481,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2266 this -54495403 +815992954 1 this.latitude 42360297 @@ -96102,7 +97494,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2266 this -54495403 +815992954 1 this.latitude 42360297 @@ -96118,16 +97510,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2264 this -764372388 +55331187 1 this.name -665372494 +868737467 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -674483268 +733957003 1 this.p1.latitude 42358297 @@ -96136,7 +97528,7 @@ this.p1.longitude -71093396 1 this.p2 -54495403 +815992954 1 this.p2.latitude 42360297 @@ -96152,16 +97544,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2267 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -96170,7 +97562,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -96183,7 +97575,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2268 this -459857341 +1392425346 1 this.latitude 42358297 @@ -96196,7 +97588,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2268 this -459857341 +1392425346 1 this.latitude 42358297 @@ -96212,7 +97604,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2269 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -96225,7 +97617,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2269 this -1684890795 +2054574951 1 this.latitude 42357097 @@ -96241,16 +97633,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2267 this -1399499405 +399931359 1 this.name -94264799 +1991294891 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -459857341 +1392425346 1 this.p1.latitude 42358297 @@ -96259,7 +97651,7 @@ this.p1.longitude -71093396 1 this.p2 -1684890795 +2054574951 1 this.p2.latitude 42357097 @@ -96275,16 +97667,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2270 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -96293,7 +97685,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -96306,7 +97698,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2271 this -238157928 +809762318 1 this.latitude 42357097 @@ -96319,7 +97711,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2271 this -238157928 +809762318 1 this.latitude 42357097 @@ -96335,7 +97727,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2272 this -32863545 +2028371466 1 this.latitude 42358297 @@ -96348,7 +97740,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2272 this -32863545 +2028371466 1 this.latitude 42358297 @@ -96364,16 +97756,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2270 this -1883919084 +798244209 1 this.name -1995616381 +198761306 1 this.name.toString "Massachusetts_Ave" 1 this.p1 -238157928 +809762318 1 this.p1.latitude 42357097 @@ -96382,7 +97774,7 @@ this.p1.longitude -71092896 1 this.p2 -32863545 +2028371466 1 this.p2.latitude 42358297 @@ -96398,16 +97790,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2273 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -96416,7 +97808,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -96429,7 +97821,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2274 this -1860513229 +525571 1 this.latitude 42362697 @@ -96442,7 +97834,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2274 this -1860513229 +525571 1 this.latitude 42362697 @@ -96458,7 +97850,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2275 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -96471,7 +97863,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2275 this -1150538133 +1263877414 1 this.latitude 42360297 @@ -96487,16 +97879,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2273 this -92150540 +141289226 1 this.name -662822946 +110771485 1 this.name.toString "Vassar_St" 1 this.p1 -1860513229 +525571 1 this.p1.latitude 42362697 @@ -96505,7 +97897,7 @@ this.p1.longitude -71090996 1 this.p2 -1150538133 +1263877414 1 this.p2.latitude 42360297 @@ -96521,16 +97913,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2276 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -96539,7 +97931,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -96552,7 +97944,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2277 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -96565,7 +97957,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2277 this -1110623531 +1208736537 1 this.latitude 42360297 @@ -96581,7 +97973,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2278 this -410495873 +710239027 1 this.latitude 42362697 @@ -96594,7 +97986,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2278 this -410495873 +710239027 1 this.latitude 42362697 @@ -96610,16 +98002,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2276 this -1166807841 +712256162 1 this.name -811587677 +2104545713 1 this.name.toString "Vassar_St" 1 this.p1 -1110623531 +1208736537 1 this.p1.latitude 42360297 @@ -96628,7 +98020,7 @@ this.p1.longitude -71095096 1 this.p2 -410495873 +710239027 1 this.p2.latitude 42362697 @@ -96644,16 +98036,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2279 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -96662,7 +98054,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -96675,7 +98067,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2280 this -289639718 +1018298342 1 this.latitude 42360297 @@ -96688,7 +98080,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2280 this -289639718 +1018298342 1 this.latitude 42360297 @@ -96704,7 +98096,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2281 this -885851948 +1039949752 1 this.latitude 42355397 @@ -96717,7 +98109,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2281 this -885851948 +1039949752 1 this.latitude 42355397 @@ -96733,16 +98125,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2279 this -1605283233 +1297149880 1 this.name -2048834776 +1182461167 1 this.name.toString "Vassar_St" 1 this.p1 -289639718 +1018298342 1 this.p1.latitude 42360297 @@ -96751,7 +98143,7 @@ this.p1.longitude -71095096 1 this.p2 -885851948 +1039949752 1 this.p2.latitude 42355397 @@ -96767,16 +98159,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2282 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -96785,7 +98177,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -96798,7 +98190,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2283 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -96811,7 +98203,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2283 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -96827,7 +98219,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2284 this -245475541 +561247961 1 this.latitude 42360297 @@ -96840,7 +98232,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2284 this -245475541 +561247961 1 this.latitude 42360297 @@ -96856,16 +98248,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2282 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -96874,7 +98266,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -96890,16 +98282,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2285 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -96908,7 +98300,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -96921,7 +98313,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2286 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -96934,7 +98326,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2286 this -1384722895 +2116908859 1 this.latitude 42355397 @@ -96950,7 +98342,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2287 this -245475541 +561247961 1 this.latitude 42360297 @@ -96963,7 +98355,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2287 this -245475541 +561247961 1 this.latitude 42360297 @@ -96979,16 +98371,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2285 this -733957003 +2048425748 1 this.name -22429093 +813656972 1 this.name.toString "Vassar_St" 1 this.p1 -1384722895 +2116908859 1 this.p1.latitude 42355397 @@ -96997,7 +98389,7 @@ this.p1.longitude -71104696 1 this.p2 -245475541 +561247961 1 this.p2.latitude 42360297 @@ -97013,16 +98405,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2288 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -97031,7 +98423,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -97044,7 +98436,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2289 this -488044861 +143110009 1 this.latitude 42361797 @@ -97057,7 +98449,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2289 this -488044861 +143110009 1 this.latitude 42361797 @@ -97073,7 +98465,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2290 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -97086,7 +98478,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2290 this -1740189450 +2142003995 1 this.latitude 42360097 @@ -97102,16 +98494,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2288 this -1033490990 +1568059495 1 this.name -846238611 +2097514481 1 this.name.toString "Memorial_Dr" 1 this.p1 -488044861 +143110009 1 this.p1.latitude 42361797 @@ -97120,7 +98512,7 @@ this.p1.longitude -71079295 1 this.p2 -1740189450 +2142003995 1 this.p2.latitude 42360097 @@ -97136,16 +98528,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2291 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -97154,7 +98546,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -97167,7 +98559,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2292 this -1241276575 +706197430 1 this.latitude 42360097 @@ -97180,7 +98572,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2292 this -1241276575 +706197430 1 this.latitude 42360097 @@ -97196,7 +98588,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2293 this -215145189 +1325808650 1 this.latitude 42361797 @@ -97209,7 +98601,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2293 this -215145189 +1325808650 1 this.latitude 42361797 @@ -97225,16 +98617,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2291 this -1232306490 +1987083830 1 this.name -982007015 +510464020 1 this.name.toString "Memorial_Dr" 1 this.p1 -1241276575 +706197430 1 this.p1.latitude 42360097 @@ -97243,7 +98635,7 @@ this.p1.longitude -71083996 1 this.p2 -215145189 +1325808650 1 this.p2.latitude 42361797 @@ -97259,16 +98651,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2294 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -97277,7 +98669,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -97290,7 +98682,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2295 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -97303,7 +98695,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2295 this -1663166483 +1632492873 1 this.latitude 42360097 @@ -97319,7 +98711,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2296 this -2042495840 +525683462 1 this.latitude 42358941 @@ -97332,7 +98724,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2296 this -2042495840 +525683462 1 this.latitude 42358941 @@ -97348,16 +98740,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2294 this -1468357786 +473581465 1 this.name -36333492 +1766724936 1 this.name.toString "Memorial_Dr" 1 this.p1 -1663166483 +1632492873 1 this.p1.latitude 42360097 @@ -97366,7 +98758,7 @@ this.p1.longitude -71083996 1 this.p2 -2042495840 +525683462 1 this.p2.latitude 42358941 @@ -97382,16 +98774,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2297 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -97400,7 +98792,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -97413,7 +98805,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2298 this -990398217 +319977154 1 this.latitude 42358941 @@ -97426,7 +98818,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2298 this -990398217 +319977154 1 this.latitude 42358941 @@ -97442,7 +98834,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2299 this -841283083 +648680157 1 this.latitude 42360097 @@ -97455,7 +98847,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2299 this -841283083 +648680157 1 this.latitude 42360097 @@ -97471,16 +98863,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2297 this -520016214 +1897871865 1 this.name -1675763772 +1071097621 1 this.name.toString "Memorial_Dr" 1 this.p1 -990398217 +319977154 1 this.p1.latitude 42358941 @@ -97489,7 +98881,7 @@ this.p1.longitude -71087240 1 this.p2 -841283083 +648680157 1 this.p2.latitude 42360097 @@ -97505,16 +98897,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2300 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -97523,7 +98915,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -97536,7 +98928,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2301 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -97549,7 +98941,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2301 this -1731722639 +1908143486 1 this.latitude 42358941 @@ -97565,7 +98957,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2302 this -1924582348 +133250414 1 this.latitude 42357097 @@ -97578,7 +98970,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2302 this -1924582348 +133250414 1 this.latitude 42357097 @@ -97594,16 +98986,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2300 this -1757143877 +222624801 1 this.name -11003494 +85777802 1 this.name.toString "Memorial_Dr" 1 this.p1 -1731722639 +1908143486 1 this.p1.latitude 42358941 @@ -97612,7 +99004,7 @@ this.p1.longitude -71087240 1 this.p2 -1924582348 +133250414 1 this.p2.latitude 42357097 @@ -97628,16 +99020,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2303 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -97646,7 +99038,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -97659,7 +99051,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2304 this -817406040 +603650290 1 this.latitude 42357097 @@ -97672,7 +99064,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2304 this -817406040 +603650290 1 this.latitude 42357097 @@ -97688,7 +99080,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2305 this -1955915048 +762227630 1 this.latitude 42358941 @@ -97701,7 +99093,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2305 this -1955915048 +762227630 1 this.latitude 42358941 @@ -97717,16 +99109,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2303 this -2083117811 +1685232414 1 this.name -1270855946 +1316864772 1 this.name.toString "Memorial_Dr" 1 this.p1 -817406040 +603650290 1 this.p1.latitude 42357097 @@ -97735,7 +99127,7 @@ this.p1.longitude -71092896 1 this.p2 -1955915048 +762227630 1 this.p2.latitude 42358941 @@ -97751,16 +99143,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2306 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -97769,7 +99161,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -97782,7 +99174,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2307 this -157683534 +280744458 1 this.latitude 42357097 @@ -97795,7 +99187,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2307 this -157683534 +280744458 1 this.latitude 42357097 @@ -97811,7 +99203,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2308 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -97824,7 +99216,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2308 this -1518864111 +1213216872 1 this.latitude 42353497 @@ -97840,16 +99232,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2306 this -1585787493 +407858146 1 this.name -1816757085 +1754638213 1 this.name.toString "Memorial_Dr" 1 this.p1 -157683534 +280744458 1 this.p1.latitude 42357097 @@ -97858,7 +99250,7 @@ this.p1.longitude -71092896 1 this.p2 -1518864111 +1213216872 1 this.p2.latitude 42353497 @@ -97874,16 +99266,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2309 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -97892,7 +99284,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -97905,7 +99297,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2310 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -97918,7 +99310,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2310 this -1730173572 +1454031203 1 this.latitude 42353497 @@ -97934,7 +99326,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2311 this -2097514481 +527446182 1 this.latitude 42357097 @@ -97947,7 +99339,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2311 this -2097514481 +527446182 1 this.latitude 42357097 @@ -97963,16 +99355,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2309 this -706197430 +963601816 1 this.name -1568059495 +1511785794 1 this.name.toString "Memorial_Dr" 1 this.p1 -1730173572 +1454031203 1 this.p1.latitude 42353497 @@ -97981,7 +99373,7 @@ this.p1.longitude -71107296 1 this.p2 -2097514481 +527446182 1 this.p2.latitude 42357097 @@ -97997,16 +99389,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2312 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -98015,7 +99407,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -98028,7 +99420,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2313 this -1325808650 +961419791 1 this.latitude 42361797 @@ -98041,7 +99433,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2313 this -1325808650 +961419791 1 this.latitude 42361797 @@ -98057,7 +99449,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2314 this -510464020 +665188480 1 this.latitude 42362297 @@ -98070,7 +99462,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2314 this -510464020 +665188480 1 this.latitude 42362297 @@ -98086,16 +99478,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2312 this -1632492873 +1596467899 1 this.name -1987083830 +489279267 1 this.name.toString "Main_St" 1 this.p1 -1325808650 +961419791 1 this.p1.latitude 42361797 @@ -98104,7 +99496,7 @@ this.p1.longitude -71079295 1 this.p2 -510464020 +665188480 1 this.p2.latitude 42362297 @@ -98120,16 +99512,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2315 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -98138,7 +99530,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -98151,7 +99543,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2316 this -525683462 +377478451 1 this.latitude 42362297 @@ -98164,7 +99556,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2316 this -525683462 +377478451 1 this.latitude 42362297 @@ -98180,7 +99572,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2317 this -1766724936 +513169028 1 this.latitude 42361797 @@ -98193,7 +99585,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2317 this -1766724936 +513169028 1 this.latitude 42361797 @@ -98209,16 +99601,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2315 this -319977154 +1408652377 1 this.name -473581465 +1301664418 1 this.name.toString "Main_St" 1 this.p1 -525683462 +377478451 1 this.p1.latitude 42362297 @@ -98227,7 +99619,7 @@ this.p1.longitude -71084396 1 this.p2 -1766724936 +513169028 1 this.p2.latitude 42361797 @@ -98243,16 +99635,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2318 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -98261,7 +99653,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -98274,7 +99666,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2319 this -648680157 +990416209 1 this.latitude 42362297 @@ -98287,7 +99679,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2319 this -648680157 +990416209 1 this.latitude 42362297 @@ -98303,7 +99695,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2320 this -1071097621 +394714818 1 this.latitude 42362597 @@ -98316,7 +99708,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2320 this -1071097621 +394714818 1 this.latitude 42362597 @@ -98332,16 +99724,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2318 this -1908143486 +366004251 1 this.name -1897871865 +1952779858 1 this.name.toString "Main_St" 1 this.p1 -648680157 +990416209 1 this.p1.latitude 42362297 @@ -98350,7 +99742,7 @@ this.p1.longitude -71084396 1 this.p2 -1071097621 +394714818 1 this.p2.latitude 42362597 @@ -98366,16 +99758,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2321 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -98384,7 +99776,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -98397,7 +99789,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2322 this -133250414 +1791868405 1 this.latitude 42362597 @@ -98410,7 +99802,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2322 this -133250414 +1791868405 1 this.latitude 42362597 @@ -98426,7 +99818,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2323 this -85777802 +1260134048 1 this.latitude 42362297 @@ -98439,7 +99831,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2323 this -85777802 +1260134048 1 this.latitude 42362297 @@ -98455,16 +99847,16 @@ MapQuick1.GeoSegment.hashCode():::EXIT141 this_invocation_nonce 2321 this -603650290 +81009902 1 this.name -222624801 +391618063 1 this.name.toString "Main_St" 1 this.p1 -133250414 +1791868405 1 this.p1.latitude 42362597 @@ -98473,7 +99865,7 @@ this.p1.longitude -71088496 1 this.p2 -85777802 +1260134048 1 this.p2.latitude 42362297 @@ -98489,16 +99881,16 @@ MapQuick1.GeoSegment.hashCode():::ENTER this_invocation_nonce 2324 this -280744458 +665372494 1 this.name -1685232414 +54495403 1 this.name.toString "Main_St" 1 this.p1 -762227630 +57748372 1 this.p1.latitude 42362597 @@ -98507,7 +99899,7 @@ this.p1.longitude -71088496 1 this.p2 -1316864772 +674483268 1 this.p2.latitude 42362697 @@ -98520,7 +99912,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2325 this -762227630 +57748372 1 this.latitude 42362597 @@ -98533,7 +99925,7 @@ MapQuick1.GeoPoint.hashCode():::EXIT77 this_invocation_nonce 2325 this -762227630 +57748372 1 this.latitude 42362597 @@ -98549,7 +99941,7 @@ MapQuick1.GeoPoint.hashCode():::ENTER this_invocation_nonce 2326 this -1316864772 +674483268 1 this.latitude 42362697 @@ -98574,1421 +99966,3 @@ return 1676775339 1 -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2324 -this -280744458 -1 -this.name -1685232414 -1 -this.name.toString -"Main_St" -1 -this.p1 -762227630 -1 -this.p1.latitude -42362597 -1 -this.p1.longitude --71088496 -1 -this.p2 -1316864772 -1 -this.p2.latitude -42362697 -1 -this.p2.longitude --71090996 -1 -return --210677177 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2327 -this -1454031203 -1 -this.name -407858146 -1 -this.name.toString -"Main_St" -1 -this.p1 -1213216872 -1 -this.p1.latitude -42362697 -1 -this.p1.longitude --71090996 -1 -this.p2 -1754638213 -1 -this.p2.latitude -42362597 -1 -this.p2.longitude --71088496 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2328 -this -1213216872 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2328 -this -1213216872 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 -return -1676775339 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2329 -this -1754638213 -1 -this.latitude -42362597 -1 -this.longitude --71088496 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2329 -this -1754638213 -1 -this.latitude -42362597 -1 -this.longitude --71088496 -1 -return -1676877139 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2327 -this -1454031203 -1 -this.name -407858146 -1 -this.name.toString -"Main_St" -1 -this.p1 -1213216872 -1 -this.p1.latitude -42362697 -1 -this.p1.longitude --71090996 -1 -this.p2 -1754638213 -1 -this.p2.latitude -42362597 -1 -this.p2.longitude --71088496 -1 -return --209659177 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2330 -this -961419791 -1 -this.name -963601816 -1 -this.name.toString -"Main_St" -1 -this.p1 -527446182 -1 -this.p1.latitude -42362697 -1 -this.p1.longitude --71090996 -1 -this.p2 -1511785794 -1 -this.p2.latitude -42362997 -1 -this.p2.longitude --71099696 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2331 -this -527446182 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2331 -this -527446182 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 -return -1676775339 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2332 -this -1511785794 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2332 -this -1511785794 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 -return -1676420739 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2330 -this -961419791 -1 -this.name -963601816 -1 -this.name.toString -"Main_St" -1 -this.p1 -527446182 -1 -this.p1.latitude -42362697 -1 -this.p1.longitude --71090996 -1 -this.p2 -1511785794 -1 -this.p2.latitude -42362997 -1 -this.p2.longitude --71099696 -1 -return --217417977 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2333 -this -377478451 -1 -this.name -1596467899 -1 -this.name.toString -"Main_St" -1 -this.p1 -665188480 -1 -this.p1.latitude -42362997 -1 -this.p1.longitude --71099696 -1 -this.p2 -489279267 -1 -this.p2.latitude -42362697 -1 -this.p2.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2334 -this -665188480 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2334 -this -665188480 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 -return -1676420739 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2335 -this -489279267 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2335 -this -489279267 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 -return -1676775339 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2333 -this -377478451 -1 -this.name -1596467899 -1 -this.name.toString -"Main_St" -1 -this.p1 -665188480 -1 -this.p1.latitude -42362997 -1 -this.p1.longitude --71099696 -1 -this.p2 -489279267 -1 -this.p2.latitude -42362697 -1 -this.p2.longitude --71090996 -1 -return --213871977 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2336 -this -990416209 -1 -this.name -1408652377 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -513169028 -1 -this.p1.latitude -42362997 -1 -this.p1.longitude --71099696 -1 -this.p2 -1301664418 -1 -this.p2.latitude -42360297 -1 -this.p2.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2337 -this -513169028 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2337 -this -513169028 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 -return -1676420739 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2338 -this -1301664418 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2338 -this -1301664418 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 -return -1676590439 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2336 -this -990416209 -1 -this.name -1408652377 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -513169028 -1 -this.p1.latitude -42362997 -1 -this.p1.longitude --71099696 -1 -this.p2 -1301664418 -1 -this.p2.latitude -42360297 -1 -this.p2.longitude --71095096 -1 -return --989145381 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2339 -this -1791868405 -1 -this.name -366004251 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -394714818 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -1952779858 -1 -this.p2.latitude -42362997 -1 -this.p2.longitude --71099696 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2340 -this -394714818 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2340 -this -394714818 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 -return -1676590439 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2341 -this -1952779858 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2341 -this -1952779858 -1 -this.latitude -42362997 -1 -this.longitude --71099696 -1 -return -1676420739 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2339 -this -1791868405 -1 -this.name -366004251 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -394714818 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -1952779858 -1 -this.p2.latitude -42362997 -1 -this.p2.longitude --71099696 -1 -return --990842381 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2342 -this -57748372 -1 -this.name -81009902 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -1260134048 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -391618063 -1 -this.p2.latitude -42358297 -1 -this.p2.longitude --71093396 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2343 -this -1260134048 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2343 -this -1260134048 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 -return -1676590439 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2344 -this -391618063 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2344 -this -391618063 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 -return -1676646139 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2342 -this -57748372 -1 -this.name -81009902 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -1260134048 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -391618063 -1 -this.p2.latitude -42358297 -1 -this.p2.longitude --71093396 -1 -return --987010581 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2345 -this -764372388 -1 -this.name -665372494 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -674483268 -1 -this.p1.latitude -42358297 -1 -this.p1.longitude --71093396 -1 -this.p2 -54495403 -1 -this.p2.latitude -42360297 -1 -this.p2.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2346 -this -674483268 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2346 -this -674483268 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 -return -1676646139 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2347 -this -54495403 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2347 -this -54495403 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 -return -1676590439 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2345 -this -764372388 -1 -this.name -665372494 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -674483268 -1 -this.p1.latitude -42358297 -1 -this.p1.longitude --71093396 -1 -this.p2 -54495403 -1 -this.p2.latitude -42360297 -1 -this.p2.longitude --71095096 -1 -return --987567581 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2348 -this -1399499405 -1 -this.name -94264799 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -459857341 -1 -this.p1.latitude -42358297 -1 -this.p1.longitude --71093396 -1 -this.p2 -1684890795 -1 -this.p2.latitude -42357097 -1 -this.p2.longitude --71092896 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2349 -this -459857341 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2349 -this -459857341 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 -return -1676646139 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2350 -this -1684890795 -1 -this.latitude -42357097 -1 -this.longitude --71092896 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2350 -this -1684890795 -1 -this.latitude -42357097 -1 -this.longitude --71092896 -1 -return -1676658239 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2348 -this -1399499405 -1 -this.name -94264799 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -459857341 -1 -this.p1.latitude -42358297 -1 -this.p1.longitude --71093396 -1 -this.p2 -1684890795 -1 -this.p2.latitude -42357097 -1 -this.p2.longitude --71092896 -1 -return --986414981 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2351 -this -1883919084 -1 -this.name -1995616381 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -238157928 -1 -this.p1.latitude -42357097 -1 -this.p1.longitude --71092896 -1 -this.p2 -32863545 -1 -this.p2.latitude -42358297 -1 -this.p2.longitude --71093396 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2352 -this -238157928 -1 -this.latitude -42357097 -1 -this.longitude --71092896 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2352 -this -238157928 -1 -this.latitude -42357097 -1 -this.longitude --71092896 -1 -return -1676658239 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2353 -this -32863545 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2353 -this -32863545 -1 -this.latitude -42358297 -1 -this.longitude --71093396 -1 -return -1676646139 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2351 -this -1883919084 -1 -this.name -1995616381 -1 -this.name.toString -"Massachusetts_Ave" -1 -this.p1 -238157928 -1 -this.p1.latitude -42357097 -1 -this.p1.longitude --71092896 -1 -this.p2 -32863545 -1 -this.p2.latitude -42358297 -1 -this.p2.longitude --71093396 -1 -return --986535981 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2354 -this -92150540 -1 -this.name -662822946 -1 -this.name.toString -"Vassar_St" -1 -this.p1 -1860513229 -1 -this.p1.latitude -42362697 -1 -this.p1.longitude --71090996 -1 -this.p2 -1150538133 -1 -this.p2.latitude -42360297 -1 -this.p2.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2355 -this -1860513229 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2355 -this -1860513229 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 -return -1676775339 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2356 -this -1150538133 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2356 -this -1150538133 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 -return -1676590439 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2354 -this -92150540 -1 -this.name -662822946 -1 -this.name.toString -"Vassar_St" -1 -this.p1 -1860513229 -1 -this.p1.latitude -42362697 -1 -this.p1.longitude --71090996 -1 -this.p2 -1150538133 -1 -this.p2.latitude -42360297 -1 -this.p2.longitude --71095096 -1 -return -385540936 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2357 -this -1166807841 -1 -this.name -811587677 -1 -this.name.toString -"Vassar_St" -1 -this.p1 -1110623531 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -410495873 -1 -this.p2.latitude -42362697 -1 -this.p2.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2358 -this -1110623531 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2358 -this -1110623531 -1 -this.latitude -42360297 -1 -this.longitude --71095096 -1 -return -1676590439 -1 - -MapQuick1.GeoPoint.hashCode():::ENTER -this_invocation_nonce -2359 -this -410495873 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 - -MapQuick1.GeoPoint.hashCode():::EXIT77 -this_invocation_nonce -2359 -this -410495873 -1 -this.latitude -42362697 -1 -this.longitude --71090996 -1 -return -1676775339 -1 - -MapQuick1.GeoSegment.hashCode():::EXIT141 -this_invocation_nonce -2357 -this -1166807841 -1 -this.name -811587677 -1 -this.name.toString -"Vassar_St" -1 -this.p1 -1110623531 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -410495873 -1 -this.p2.latitude -42362697 -1 -this.p2.longitude --71090996 -1 -return -387389936 -1 - -MapQuick1.GeoSegment.hashCode():::ENTER -this_invocation_nonce -2360 -this -1605283233 -1 -this.name -2048834776 -1 -this.name.toString -"Vassar_St" -1 -this.p1 -289639718 -1 -this.p1.latitude -42360297 -1 -this.p1.longitude --71095096 -1 -this.p2 -885851948 -1 -this.p2.latitude -42355397 -1 -this.p2.longitude --71104696 -1 - diff --git a/tests/daikon-tests/GeoSegment/GeoSegment.txt-jaif.goal b/tests/daikon-tests/GeoSegment/GeoSegment.txt-jaif.goal index d7fd21e427..c3e633c87a 100644 --- a/tests/daikon-tests/GeoSegment/GeoSegment.txt-jaif.goal +++ b/tests/daikon-tests/GeoSegment/GeoSegment.txt-jaif.goal @@ -7,23 +7,40 @@ class GeoPoint : // 475142/475142 obj/class samples field REP_SCALE_FACTOR : // double field latitude : // int field longitude : // int + method (II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // latitude + parameter #1 : // longitude method (II)V : // 164 samples - return: + return: parameter #0 : // latitude parameter #1 : // longitude + method distanceTo(LMapQuick1/GeoPoint;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // gp method distanceTo(LMapQuick1/GeoPoint;)D : // 3132 samples - return: + return: parameter #0 : // gp + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // o method equals(Ljava/lang/Object;)Z : // 5871 samples - return: + return: parameter #0 : // o + method hashCode()V throws Ljava/lang/Throwable; : // 0 samples + return: method hashCode()I : // 228190 samples - return: + return: + method headingTo(LMapQuick1/GeoPoint;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // gp method headingTo(LMapQuick1/GeoPoint;)D : // 296 samples - return: + return: parameter #0 : // gp + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 0 samples - return: + return: package MapQuick1: @@ -32,29 +49,53 @@ class GeoSegment : // 260252/- obj/class samples field p1 : // MapQuick1.GeoPoint field REP_SCALE_FACTOR : // double field p2 : // MapQuick1.GeoPoint + method (Ljava/lang/String;LMapQuick1/GeoPoint;LMapQuick1/GeoPoint;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // name + parameter #1 : // p1 + parameter #2 : // p2 method (Ljava/lang/String;LMapQuick1/GeoPoint;LMapQuick1/GeoPoint;)V : // 82 samples - return: + return: parameter #0 : // name parameter #1 : // p1 parameter #2 : // p2 + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // o method equals(Ljava/lang/Object;)Z : // 611 samples - return: + return: parameter #0 : // o + method hashCode()V throws Ljava/lang/Throwable; : // 0 samples + return: method hashCode()I : // 114095 samples - return: + return: + method heading()V throws Ljava/lang/Throwable; : // 0 samples + return: method heading()D : // 296 samples - return: + return: + method length()V throws Ljava/lang/Throwable; : // 0 samples + return: method length()D : // 1553 samples - return: + return: + method name()V throws Ljava/lang/Throwable; : // 0 samples + return: method name()Ljava/lang/String; : // 608 samples - return: + return: + method p1()V throws Ljava/lang/Throwable; : // 0 samples + return: method p1()LMapQuick1/GeoPoint; : // 4882 samples - return: + return: + method p2()V throws Ljava/lang/Throwable; : // 0 samples + return: method p2()LMapQuick1/GeoPoint; : // 8040 samples - return: + return: + method reverse()V throws Ljava/lang/Throwable; : // 0 samples + return: method reverse()LMapQuick1/GeoSegment; : // 0 samples - return: + return: + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 0 samples - return: + return: diff --git a/tests/daikon-tests/Graph/Graph.txt-chicory.goal b/tests/daikon-tests/Graph/Graph.txt-chicory.goal index ee30754da5..00bad3fdb3 100644 --- a/tests/daikon-tests/Graph/Graph.txt-chicory.goal +++ b/tests/daikon-tests/Graph/Graph.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for MapQuick1.Graph -// Declarations written Sun Jul 26 18:05:39 EDT 2015 +// Declarations written Mon Jul 10 09:52:51 PDT 2017 decl-version 2.0 var-comparability none @@ -14,7 +14,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -32,7 +32,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -50,7 +50,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -68,7 +68,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -90,7 +90,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 @@ -100,8 +100,40 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable this.adjMap + var-kind field adjMap + enclosing-var this + dec-type java.util.LinkedHashMap + rep-type hashcode + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable node + var-kind variable + dec-type java.lang.Object + rep-type hashcode flags is_param comparability 22 +variable node.getClass().getName() + var-kind function getClass().getName() + enclosing-var node + dec-type java.lang.Class + rep-type java.lang.String + function-args node + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.Graph.addNode(java.lang.Object):::THROW63 +ppt-type subexit +parent parent MapQuick1.Graph:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.Graph + rep-type hashcode + flags is_param non_null + comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap var-kind field adjMap @@ -122,7 +154,19 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.containsNode(java.lang.Object):::ENTER @@ -132,7 +176,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -154,7 +198,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 @@ -164,7 +208,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -186,7 +230,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return var-kind return @@ -201,7 +245,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -219,7 +263,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -240,7 +284,7 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.adjTo(java.lang.Object):::ENTER @@ -250,7 +294,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -272,7 +316,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 @@ -282,7 +326,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -304,7 +348,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return var-kind return @@ -317,7 +361,51 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.Graph.adjTo(java.lang.Object):::THROW101 +ppt-type subexit +parent parent MapQuick1.Graph:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.Graph + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable this.adjMap + var-kind field adjMap + enclosing-var this + dec-type java.util.LinkedHashMap + rep-type hashcode + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable node + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable node.getClass().getName() + var-kind function getClass().getName() + enclosing-var node + dec-type java.lang.Class + rep-type java.lang.String + function-args node + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.addEdge(java.lang.Object,\_java.lang.Object):::ENTER @@ -327,7 +415,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -349,7 +437,7 @@ variable from.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args from - flags synthetic classname + flags synthetic classname non_null comparability 22 variable to var-kind variable @@ -363,7 +451,7 @@ variable to.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args to - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.addEdge(java.lang.Object,\_java.lang.Object):::EXIT128 @@ -373,8 +461,112 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable this.adjMap + var-kind field adjMap + enclosing-var this + dec-type java.util.LinkedHashMap + rep-type hashcode + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable from + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable from.getClass().getName() + var-kind function getClass().getName() + enclosing-var from + dec-type java.lang.Class + rep-type java.lang.String + function-args from + flags synthetic classname non_null + comparability 22 +variable to + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable to.getClass().getName() + var-kind function getClass().getName() + enclosing-var to + dec-type java.lang.Class + rep-type java.lang.String + function-args to + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.Graph.addEdge(java.lang.Object,\_java.lang.Object):::THROW120 +ppt-type subexit +parent parent MapQuick1.Graph:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.Graph + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable this.adjMap + var-kind field adjMap + enclosing-var this + dec-type java.util.LinkedHashMap + rep-type hashcode + comparability 22 + parent MapQuick1.Graph:::OBJECT 1 +variable from + var-kind variable + dec-type java.lang.Object + rep-type hashcode flags is_param comparability 22 +variable from.getClass().getName() + var-kind function getClass().getName() + enclosing-var from + dec-type java.lang.Class + rep-type java.lang.String + function-args from + flags synthetic classname non_null + comparability 22 +variable to + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable to.getClass().getName() + var-kind function getClass().getName() + enclosing-var to + dec-type java.lang.Class + rep-type java.lang.String + function-args to + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.Graph.addEdge(java.lang.Object,\_java.lang.Object):::THROW123 +ppt-type subexit +parent parent MapQuick1.Graph:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.Graph + rep-type hashcode + flags is_param non_null + comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap var-kind field adjMap @@ -395,7 +587,7 @@ variable from.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args from - flags synthetic classname + flags synthetic classname non_null comparability 22 variable to var-kind variable @@ -409,7 +601,19 @@ variable to.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args to - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER @@ -419,7 +623,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -441,7 +645,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 @@ -451,7 +655,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph:::OBJECT 1 variable this.adjMap @@ -473,7 +677,7 @@ variable node.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args node - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return var-kind return @@ -486,7 +690,7 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt MapQuick1.Graph:::OBJECT @@ -495,7 +699,7 @@ variable this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.adjMap var-kind field adjMap @@ -504,7 +708,7 @@ variable this.adjMap rep-type hashcode comparability 22 -ppt MapQuick1.Graph$DuplicateNodeException.Graph$DuplicateNodeException(MapQuick1.Graph):::ENTER +ppt MapQuick1.Graph$NoNodeException.NoNodeException(MapQuick1.Graph):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable @@ -519,50 +723,53 @@ variable MapQuick1.Graph.this.adjMap rep-type hashcode comparability 22 -ppt MapQuick1.Graph$DuplicateNodeException.Graph$DuplicateNodeException(MapQuick1.Graph):::EXIT163 +ppt MapQuick1.Graph$NoNodeException.NoNodeException(MapQuick1.Graph):::EXIT170 ppt-type subexit -parent parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 +parent parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable this var-kind variable - dec-type MapQuick1.Graph$DuplicateNodeException + dec-type MapQuick1.Graph$NoNodeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 - parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 + parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable MapQuick1.Graph.this var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 + parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 + parent MapQuick1.Graph$NoNodeException:::OBJECT 1 -ppt MapQuick1.Graph$DuplicateNodeException.Graph$DuplicateNodeException(MapQuick1.Graph,\_java.lang.String):::ENTER +ppt MapQuick1.Graph$NoNodeException.NoNodeException(MapQuick1.Graph,\_java.lang.String):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -570,38 +777,40 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 -ppt MapQuick1.Graph$DuplicateNodeException.Graph$DuplicateNodeException(MapQuick1.Graph,\_java.lang.String):::EXIT164 +ppt MapQuick1.Graph$NoNodeException.NoNodeException(MapQuick1.Graph,\_java.lang.String):::EXIT171 ppt-type subexit -parent parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 +parent parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable this var-kind variable - dec-type MapQuick1.Graph$DuplicateNodeException + dec-type MapQuick1.Graph$NoNodeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 - parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 + parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable MapQuick1.Graph.this var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 + parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 + parent MapQuick1.Graph$NoNodeException:::OBJECT 1 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -609,53 +818,56 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 -ppt MapQuick1.Graph$DuplicateNodeException:::OBJECT +ppt MapQuick1.Graph$NoNodeException:::OBJECT ppt-type object variable this var-kind variable - dec-type MapQuick1.Graph$DuplicateNodeException + dec-type MapQuick1.Graph$NoNodeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 -ppt MapQuick1.Graph$GraphException.Graph$GraphException(MapQuick1.Graph):::ENTER +ppt MapQuick1.Graph$GraphException.GraphException(MapQuick1.Graph):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 -ppt MapQuick1.Graph$GraphException.Graph$GraphException(MapQuick1.Graph):::EXIT154 +ppt MapQuick1.Graph$GraphException.GraphException(MapQuick1.Graph):::EXIT154 ppt-type subexit parent parent MapQuick1.Graph$GraphException:::OBJECT 1 variable this var-kind variable dec-type MapQuick1.Graph$GraphException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable this.getClass().getName() @@ -664,14 +876,15 @@ variable this.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this - flags synthetic classname + flags synthetic classname non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap @@ -679,28 +892,30 @@ variable MapQuick1.Graph.this.adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 -ppt MapQuick1.Graph$GraphException.Graph$GraphException(MapQuick1.Graph,\_java.lang.String):::ENTER +ppt MapQuick1.Graph$GraphException.GraphException(MapQuick1.Graph,\_java.lang.String):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -708,17 +923,17 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 -ppt MapQuick1.Graph$GraphException.Graph$GraphException(MapQuick1.Graph,\_java.lang.String):::EXIT155 +ppt MapQuick1.Graph$GraphException.GraphException(MapQuick1.Graph,\_java.lang.String):::EXIT155 ppt-type subexit parent parent MapQuick1.Graph$GraphException:::OBJECT 1 variable this var-kind variable dec-type MapQuick1.Graph$GraphException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable this.getClass().getName() @@ -727,14 +942,15 @@ variable this.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this - flags synthetic classname + flags synthetic classname non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap @@ -742,13 +958,14 @@ variable MapQuick1.Graph.this.adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -756,7 +973,7 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 ppt MapQuick1.Graph$GraphException.getGraph():::ENTER @@ -766,7 +983,7 @@ variable this var-kind variable dec-type MapQuick1.Graph$GraphException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable this.getClass().getName() @@ -775,14 +992,15 @@ variable this.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this - flags synthetic classname + flags synthetic classname non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap @@ -790,6 +1008,7 @@ variable MapQuick1.Graph.this.adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 @@ -800,7 +1019,7 @@ variable this var-kind variable dec-type MapQuick1.Graph$GraphException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable this.getClass().getName() @@ -809,14 +1028,15 @@ variable this.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this - flags synthetic classname + flags synthetic classname non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap @@ -824,18 +1044,21 @@ variable MapQuick1.Graph.this.adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$GraphException:::OBJECT 1 variable return var-kind return dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 variable return.adjMap var-kind field adjMap enclosing-var return dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 ppt MapQuick1.Graph$GraphException:::OBJECT @@ -844,7 +1067,7 @@ variable this var-kind variable dec-type MapQuick1.Graph$GraphException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.getClass().getName() var-kind function getClass().getName() @@ -852,80 +1075,86 @@ variable this.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this - flags synthetic classname + flags synthetic classname non_null comparability 22 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 -ppt MapQuick1.Graph$NoNodeException.Graph$NoNodeException(MapQuick1.Graph):::ENTER +ppt MapQuick1.Graph$DuplicateNodeException.DuplicateNodeException(MapQuick1.Graph):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 -ppt MapQuick1.Graph$NoNodeException.Graph$NoNodeException(MapQuick1.Graph):::EXIT170 +ppt MapQuick1.Graph$DuplicateNodeException.DuplicateNodeException(MapQuick1.Graph):::EXIT163 ppt-type subexit -parent parent MapQuick1.Graph$NoNodeException:::OBJECT 1 +parent parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable this var-kind variable - dec-type MapQuick1.Graph$NoNodeException + dec-type MapQuick1.Graph$DuplicateNodeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 - parent MapQuick1.Graph$NoNodeException:::OBJECT 1 + parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$NoNodeException:::OBJECT 1 + parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$NoNodeException:::OBJECT 1 + parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 -ppt MapQuick1.Graph$NoNodeException.Graph$NoNodeException(MapQuick1.Graph,\_java.lang.String):::ENTER +ppt MapQuick1.Graph$DuplicateNodeException.DuplicateNodeException(MapQuick1.Graph,\_java.lang.String):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -933,38 +1162,40 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 -ppt MapQuick1.Graph$NoNodeException.Graph$NoNodeException(MapQuick1.Graph,\_java.lang.String):::EXIT171 +ppt MapQuick1.Graph$DuplicateNodeException.DuplicateNodeException(MapQuick1.Graph,\_java.lang.String):::EXIT164 ppt-type subexit -parent parent MapQuick1.Graph$NoNodeException:::OBJECT 1 +parent parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable this var-kind variable - dec-type MapQuick1.Graph$NoNodeException + dec-type MapQuick1.Graph$DuplicateNodeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 - parent MapQuick1.Graph$NoNodeException:::OBJECT 1 + parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$NoNodeException:::OBJECT 1 + parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 - parent MapQuick1.Graph$NoNodeException:::OBJECT 1 + parent MapQuick1.Graph$DuplicateNodeException:::OBJECT 1 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -972,60 +1203,64 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 -ppt MapQuick1.Graph$NoNodeException:::OBJECT +ppt MapQuick1.Graph$DuplicateNodeException:::OBJECT ppt-type object variable this var-kind variable - dec-type MapQuick1.Graph$NoNodeException + dec-type MapQuick1.Graph$DuplicateNodeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 -ppt MapQuick1.Graph$DuplicateEdgeException.Graph$DuplicateEdgeException(MapQuick1.Graph):::ENTER +ppt MapQuick1.Graph$DuplicateEdgeException.DuplicateEdgeException(MapQuick1.Graph):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 -ppt MapQuick1.Graph$DuplicateEdgeException.Graph$DuplicateEdgeException(MapQuick1.Graph):::EXIT177 +ppt MapQuick1.Graph$DuplicateEdgeException.DuplicateEdgeException(MapQuick1.Graph):::EXIT177 ppt-type subexit parent parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable this var-kind variable dec-type MapQuick1.Graph$DuplicateEdgeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap @@ -1033,28 +1268,30 @@ variable MapQuick1.Graph.this.adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 -ppt MapQuick1.Graph$DuplicateEdgeException.Graph$DuplicateEdgeException(MapQuick1.Graph,\_java.lang.String):::ENTER +ppt MapQuick1.Graph$DuplicateEdgeException.DuplicateEdgeException(MapQuick1.Graph,\_java.lang.String):::ENTER ppt-type enter variable MapQuick1.Graph.this var-kind variable dec-type MapQuick1.Graph rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -1062,24 +1299,25 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 -ppt MapQuick1.Graph$DuplicateEdgeException.Graph$DuplicateEdgeException(MapQuick1.Graph,\_java.lang.String):::EXIT178 +ppt MapQuick1.Graph$DuplicateEdgeException.DuplicateEdgeException(MapQuick1.Graph,\_java.lang.String):::EXIT178 ppt-type subexit parent parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable this var-kind variable dec-type MapQuick1.Graph$DuplicateEdgeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable MapQuick1.Graph.this.adjMap @@ -1087,13 +1325,14 @@ variable MapQuick1.Graph.this.adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 parent MapQuick1.Graph$DuplicateEdgeException:::OBJECT 1 variable s var-kind variable dec-type java.lang.String rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable s.toString var-kind function toString() @@ -1101,7 +1340,7 @@ variable s.toString dec-type java.lang.String rep-type java.lang.String function-args s - flags synthetic to_string + flags synthetic to_string non_null comparability 22 ppt MapQuick1.Graph$DuplicateEdgeException:::OBJECT @@ -1110,19 +1349,21 @@ variable this var-kind variable dec-type MapQuick1.Graph$DuplicateEdgeException rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable MapQuick1.Graph.this - var-kind variable + var-kind variable enclosing-var this dec-type MapQuick1.Graph rep-type hashcode + flags non_null comparability 22 variable MapQuick1.Graph.this.adjMap var-kind field adjMap enclosing-var MapQuick1.Graph.this dec-type java.util.LinkedHashMap rep-type hashcode + flags non_null comparability 22 MapQuick1.Graph.Graph():::ENTER @@ -1133,43 +1374,43 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.Graph():::EXIT29 this_invocation_nonce 0 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1179,13 +1420,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1198,13 +1439,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 3 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1214,53 +1455,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 4 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 4 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 5 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 5 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 3 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1270,13 +1511,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 6 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1286,13 +1527,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 6 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1305,13 +1546,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 7 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1321,53 +1562,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 8 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 8 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 9 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 9 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 7 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1377,13 +1618,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 10 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1393,13 +1634,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 10 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1412,13 +1653,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 11 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1428,53 +1669,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 12 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 12 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 13 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 13 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 11 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1484,13 +1725,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 14 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1500,13 +1741,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 14 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1519,13 +1760,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 15 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1535,53 +1776,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 16 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 16 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 17 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 17 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 15 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1591,13 +1832,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 18 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1607,13 +1848,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 18 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1626,13 +1867,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 19 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1642,53 +1883,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 20 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 20 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 21 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 21 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 19 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1698,13 +1939,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 22 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1714,13 +1955,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 22 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1733,13 +1974,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 23 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1749,53 +1990,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 24 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 24 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 25 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 25 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 23 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1805,13 +2046,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 26 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1821,13 +2062,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 26 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1840,13 +2081,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 27 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1856,53 +2097,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 28 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 28 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 29 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 29 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 27 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1912,13 +2153,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 30 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1928,13 +2169,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 30 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1947,13 +2188,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 31 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -1963,53 +2204,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 32 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 32 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 33 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 33 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 31 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2019,13 +2260,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 34 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2035,13 +2276,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 34 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2054,13 +2295,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 35 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2070,53 +2311,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 36 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 36 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 37 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 37 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 35 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2126,13 +2367,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 38 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2142,13 +2383,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 38 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2161,13 +2402,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 39 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2177,53 +2418,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 40 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 40 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 41 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 41 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 39 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2233,13 +2474,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 42 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2249,13 +2490,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 42 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2268,13 +2509,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 43 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2284,53 +2525,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 44 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 44 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 45 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 45 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 43 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2340,13 +2581,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 46 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2356,13 +2597,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 46 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2375,13 +2616,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 47 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2391,53 +2632,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 48 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 48 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 49 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 49 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 47 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2447,13 +2688,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 50 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2463,13 +2704,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 50 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2482,13 +2723,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 51 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2498,53 +2739,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 52 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 52 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 53 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 53 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 51 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2554,13 +2795,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 54 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2570,13 +2811,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 54 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2589,13 +2830,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 55 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2605,53 +2846,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 56 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 56 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 57 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 57 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 55 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2661,13 +2902,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 58 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2677,13 +2918,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 58 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2696,13 +2937,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 59 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2712,53 +2953,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 60 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 60 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 61 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 61 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 59 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2768,13 +3009,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 62 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2784,13 +3025,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 62 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2803,13 +3044,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 63 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2819,53 +3060,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 64 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 64 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 65 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 65 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 63 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2875,13 +3116,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 66 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2891,13 +3132,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 66 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2910,13 +3151,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 67 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2926,53 +3167,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 68 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 68 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 69 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 69 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 67 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2982,13 +3223,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 70 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -2998,13 +3239,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 70 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3017,13 +3258,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 71 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3033,53 +3274,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 72 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 72 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 73 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 73 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 71 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3089,13 +3330,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 74 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3105,13 +3346,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 74 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3124,13 +3365,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 75 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3140,53 +3381,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 76 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 76 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 77 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 77 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 75 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3196,13 +3437,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 78 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3212,13 +3453,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 78 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3231,13 +3472,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 79 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3247,53 +3488,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 80 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 80 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 81 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 81 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 79 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3303,13 +3544,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 82 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3319,13 +3560,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 82 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3338,13 +3579,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 83 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3354,53 +3595,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 84 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 84 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 85 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 85 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 83 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3410,13 +3651,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 86 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3426,13 +3667,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 86 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3445,13 +3686,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 87 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3461,53 +3702,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 88 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 88 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 89 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 89 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 87 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3517,13 +3758,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 90 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3533,13 +3774,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 90 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3552,13 +3793,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 91 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3568,53 +3809,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 92 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 92 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 93 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 93 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 91 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3624,13 +3865,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 94 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3640,13 +3881,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 94 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3659,13 +3900,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 95 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3675,53 +3916,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 96 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 96 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 97 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 97 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 95 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3731,13 +3972,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 98 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3747,13 +3988,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 98 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3766,13 +4007,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 99 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3782,53 +4023,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 100 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 100 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 101 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 101 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 99 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3838,13 +4079,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 102 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3854,13 +4095,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 102 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3873,13 +4114,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 103 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3889,53 +4130,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 104 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 104 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 105 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 105 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 103 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3945,13 +4186,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 106 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3961,13 +4202,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 106 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3980,13 +4221,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 107 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -3996,53 +4237,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 108 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 108 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 109 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 109 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 107 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4052,13 +4293,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 110 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4068,13 +4309,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 110 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4087,13 +4328,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 111 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4103,53 +4344,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 112 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 112 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 113 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 113 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 111 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4159,13 +4400,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 114 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4175,13 +4416,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 114 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4194,13 +4435,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 115 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4210,53 +4451,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 116 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 116 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 117 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 117 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 115 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4266,13 +4507,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 118 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4282,13 +4523,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 118 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4301,13 +4542,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 119 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4317,53 +4558,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 120 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 120 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 121 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 121 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 119 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4373,13 +4614,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 122 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4389,13 +4630,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 122 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4408,13 +4649,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 123 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4424,53 +4665,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 124 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 124 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 125 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 125 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 123 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4480,13 +4721,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 126 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4496,13 +4737,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 126 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4515,13 +4756,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 127 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4531,53 +4772,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 128 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 128 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 129 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 129 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 127 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4587,13 +4828,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 130 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4603,13 +4844,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 130 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4622,13 +4863,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 131 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4638,53 +4879,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 132 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 132 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 133 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 133 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 131 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4694,13 +4935,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 134 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4710,13 +4951,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 134 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4729,13 +4970,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 135 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4745,53 +4986,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 136 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 136 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 137 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 137 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 135 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4801,13 +5042,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 138 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4817,13 +5058,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 138 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4836,13 +5077,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 139 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4852,53 +5093,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 140 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 140 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 141 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 141 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 139 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4908,13 +5149,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 142 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4924,13 +5165,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 142 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4943,13 +5184,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 143 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -4959,53 +5200,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 144 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 144 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 145 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 145 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 143 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5015,13 +5256,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 146 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5031,13 +5272,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 146 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5050,13 +5291,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 147 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5066,53 +5307,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 148 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 148 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 149 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 149 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 147 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5122,13 +5363,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 150 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5138,13 +5379,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 150 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5157,13 +5398,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 151 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5173,53 +5414,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 152 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 152 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 153 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 153 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 151 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5229,13 +5470,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 154 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5245,13 +5486,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 154 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5264,13 +5505,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 155 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5280,53 +5521,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 156 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 156 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 157 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 157 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 155 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5336,19 +5577,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 158 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1419725804 +1468303011 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1202639361 +902919927 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5358,33 +5599,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 159 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 159 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 160 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5394,19 +5635,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 160 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -5416,13 +5657,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 161 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5432,13 +5673,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 161 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5451,39 +5692,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 162 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 162 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 158 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1419725804 +1468303011 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1202639361 +902919927 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5493,19 +5734,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 163 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -59997172 +1427810650 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1998651247 +846238611 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5515,33 +5756,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 164 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 164 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 165 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5551,19 +5792,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 165 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -5573,13 +5814,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 166 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5589,13 +5830,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 166 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5608,39 +5849,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 167 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 167 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 163 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -59997172 +1427810650 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1998651247 +846238611 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5650,19 +5891,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 168 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1202639361 +902919927 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1030471802 +1857815974 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5672,33 +5913,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 169 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 169 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 170 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5708,19 +5949,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 170 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -5730,13 +5971,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 171 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5746,13 +5987,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 171 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5765,39 +6006,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 172 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 172 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 168 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1202639361 +902919927 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1030471802 +1857815974 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5807,19 +6048,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 173 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -643654763 +503195940 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1273059732 +2097514481 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5829,33 +6070,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 174 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 174 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 175 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5865,19 +6106,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 175 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1095338126 +525683462 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -5887,13 +6128,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 176 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5903,13 +6144,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 176 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -5922,39 +6163,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 177 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 177 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 173 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -643654763 +503195940 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1273059732 +2097514481 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5964,19 +6205,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 178 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -643654763 +503195940 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -59997172 +1427810650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -5986,33 +6227,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 179 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 179 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 180 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6022,19 +6263,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 180 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1095338126 +525683462 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6044,13 +6285,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 181 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6060,13 +6301,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 181 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6079,39 +6320,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 182 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 182 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 178 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -643654763 +503195940 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -59997172 +1427810650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6121,19 +6362,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 183 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1831446806 +1852584274 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -643654763 +503195940 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6143,33 +6384,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 184 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 184 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 185 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6179,19 +6420,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 185 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1118061598 +1766724936 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6201,13 +6442,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 186 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6217,13 +6458,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 186 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -643654763 +503195940 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6236,39 +6477,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 187 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 187 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 183 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1831446806 +1852584274 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -643654763 +503195940 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6278,19 +6519,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 188 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1030471802 +1857815974 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1243355991 +1354011814 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6300,33 +6541,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 189 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 189 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 190 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6336,19 +6577,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 190 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6358,13 +6599,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 191 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6374,13 +6615,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 191 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6393,39 +6634,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 192 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 192 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 188 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1030471802 +1857815974 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1243355991 +1354011814 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6435,19 +6676,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 193 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1030471802 +1857815974 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -475165049 +520016214 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6457,33 +6698,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 194 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 194 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 195 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6493,19 +6734,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 195 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6515,13 +6756,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 196 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6531,13 +6772,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 196 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6550,39 +6791,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 197 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 197 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 193 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1030471802 +1857815974 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -475165049 +520016214 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6592,19 +6833,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 198 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1243355991 +1354011814 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1075002784 +1955915048 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6614,33 +6855,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 199 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 199 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 200 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6650,19 +6891,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 200 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1307246099 +319977154 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6672,13 +6913,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 201 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6688,13 +6929,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 201 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6707,39 +6948,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 202 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 202 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 198 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1243355991 +1354011814 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1075002784 +1955915048 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6749,19 +6990,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 203 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -392301955 +1033490990 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1419725804 +1468303011 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6771,33 +7012,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 204 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 204 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 205 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6807,19 +7048,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 205 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2127477083 +648680157 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6829,13 +7070,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 206 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6845,13 +7086,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 206 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6864,39 +7105,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 207 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 207 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 203 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -392301955 +1033490990 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1419725804 +1468303011 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6906,19 +7147,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 208 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1998651247 +846238611 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -644161395 +1241276575 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -6928,33 +7169,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 209 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 209 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 210 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -6964,19 +7205,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 210 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -6986,13 +7227,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 211 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7002,13 +7243,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 211 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7021,39 +7262,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 212 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 212 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 208 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1998651247 +846238611 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -644161395 +1241276575 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7063,19 +7304,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 213 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1998651247 +846238611 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -949339959 +1816757085 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7085,33 +7326,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 214 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 214 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 215 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7121,19 +7362,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 215 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -7143,13 +7384,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 216 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7159,13 +7400,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 216 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7178,39 +7419,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 217 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 217 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 213 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1998651247 +846238611 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -949339959 +1816757085 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7220,19 +7461,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 218 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -955501238 +215145189 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -392301955 +1033490990 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7242,33 +7483,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 219 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 219 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 220 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7278,19 +7519,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 220 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1767583704 +1897871865 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -7300,13 +7541,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 221 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7316,13 +7557,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 221 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7335,39 +7576,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 222 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 222 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 218 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -955501238 +215145189 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -392301955 +1033490990 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7377,19 +7618,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 223 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -644161395 +1241276575 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -226594800 +982007015 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7399,33 +7640,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 224 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 224 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 225 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7435,19 +7676,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 225 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -7457,13 +7698,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 226 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7473,13 +7714,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 226 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7492,39 +7733,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 227 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 227 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 223 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -644161395 +1241276575 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -226594800 +982007015 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7534,19 +7775,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 228 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -955501238 +215145189 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -949339959 +1816757085 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7556,33 +7797,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 229 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 229 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 230 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7592,19 +7833,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 230 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1767583704 +1897871865 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -7614,13 +7855,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 231 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7630,13 +7871,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 231 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7649,39 +7890,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 232 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 232 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 228 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -955501238 +215145189 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -949339959 +1816757085 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7691,19 +7932,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 233 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -644161395 +1241276575 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -935340663 +1568059495 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7713,33 +7954,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 234 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 234 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 235 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7749,19 +7990,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 235 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -7771,13 +8012,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 236 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7787,13 +8028,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 236 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7806,39 +8047,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 237 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 237 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 233 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -644161395 +1241276575 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -935340663 +1568059495 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7848,19 +8089,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 238 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -890297469 +1232306490 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -935340663 +1568059495 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -7870,33 +8111,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 239 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 239 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 240 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7906,19 +8147,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 240 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1679471946 +133250414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -7928,13 +8169,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 241 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7944,13 +8185,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 241 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -7963,39 +8204,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 242 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 242 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 238 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -890297469 +1232306490 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -935340663 +1568059495 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8005,19 +8246,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 243 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -890297469 +1232306490 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -955501238 +215145189 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8027,33 +8268,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 244 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 244 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 245 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8063,19 +8304,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 245 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1679471946 +133250414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -8085,13 +8326,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 246 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8101,13 +8342,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 246 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8120,39 +8361,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 247 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 247 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 243 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -890297469 +1232306490 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -955501238 +215145189 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8162,19 +8403,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 248 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -226594800 +982007015 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1710992834 +1663166483 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8184,33 +8425,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 249 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 249 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 250 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8220,19 +8461,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 250 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -8242,13 +8483,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 251 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8258,13 +8499,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 251 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8277,39 +8518,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 252 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 252 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 248 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -226594800 +982007015 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1710992834 +1663166483 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8319,19 +8560,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 253 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -226594800 +982007015 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1754778997 +1731722639 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8341,33 +8582,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 254 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 254 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 255 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8377,19 +8618,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 255 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -8399,13 +8640,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 256 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8415,13 +8656,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 256 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8434,39 +8675,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 257 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 257 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 253 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -226594800 +982007015 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1754778997 +1731722639 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8476,19 +8717,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 258 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1850527708 +2042495840 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -890297469 +1232306490 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8498,33 +8739,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 259 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 259 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 260 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8534,19 +8775,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 260 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -54415379 +222624801 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -8556,13 +8797,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 261 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8572,13 +8813,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 261 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8591,39 +8832,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 262 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 262 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 258 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1850527708 +2042495840 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -890297469 +1232306490 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8633,19 +8874,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 263 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1710992834 +1663166483 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1961012502 +36333492 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8655,33 +8896,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 264 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 264 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 265 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8691,19 +8932,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 265 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1878724878 +603650290 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -8713,13 +8954,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 266 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8729,13 +8970,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 266 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8748,39 +8989,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 267 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 267 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 263 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1710992834 +1663166483 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1961012502 +36333492 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8790,19 +9031,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 268 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1850527708 +2042495840 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1754778997 +1731722639 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8812,33 +9053,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 269 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 269 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 270 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8848,19 +9089,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 270 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -54415379 +222624801 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -8870,13 +9111,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 271 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8886,13 +9127,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 271 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -8905,39 +9146,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 272 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 272 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 268 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1850527708 +2042495840 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1754778997 +1731722639 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8947,19 +9188,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 273 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1961012502 +36333492 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -73393189 +990398217 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -8969,33 +9210,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 274 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 274 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 275 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9005,19 +9246,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 275 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1276962705 +762227630 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9027,13 +9268,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 276 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9043,13 +9284,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 276 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9062,39 +9303,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 277 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 277 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 273 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1961012502 +36333492 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -73393189 +990398217 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9104,19 +9345,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 278 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1305590605 +1468357786 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1850527708 +2042495840 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9126,33 +9367,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 279 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 279 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 280 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9162,19 +9403,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 280 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2108098464 +1316864772 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9184,13 +9425,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 281 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9200,13 +9441,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 281 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9219,39 +9460,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 282 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 282 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 278 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1305590605 +1468357786 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1850527708 +2042495840 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9261,19 +9502,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 283 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1961012502 +36333492 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1177678328 +1924582348 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9283,33 +9524,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 284 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 284 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 285 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9319,19 +9560,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 285 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1276962705 +762227630 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9341,13 +9582,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 286 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9357,13 +9598,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 286 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9376,39 +9617,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 287 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 287 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 283 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1961012502 +36333492 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1177678328 +1924582348 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9418,19 +9659,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 288 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1961012502 +36333492 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2030367944 +11003494 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9440,33 +9681,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 289 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 289 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 290 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9476,19 +9717,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 290 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1276962705 +762227630 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9498,13 +9739,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 291 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9514,13 +9755,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 291 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9533,39 +9774,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 292 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 292 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 288 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1961012502 +36333492 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2030367944 +11003494 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9575,19 +9816,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 293 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -863714145 +841283083 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1305590605 +1468357786 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9597,33 +9838,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 294 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 294 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 295 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9633,19 +9874,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 295 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9655,13 +9896,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 296 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9671,13 +9912,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 296 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9690,39 +9931,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 297 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 297 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 293 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -863714145 +841283083 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1305590605 +1468357786 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9732,19 +9973,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 298 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -73393189 +990398217 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1601664942 +1675763772 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9754,33 +9995,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 299 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 299 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 300 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9790,19 +10031,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 300 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9812,13 +10053,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 301 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9828,13 +10069,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 301 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9847,39 +10088,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 302 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 302 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 298 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -73393189 +990398217 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1601664942 +1675763772 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9889,19 +10130,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 303 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -863714145 +841283083 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1177678328 +1924582348 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -9911,33 +10152,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 304 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 304 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 305 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9947,19 +10188,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 305 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -9969,13 +10210,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 306 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -9985,13 +10226,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 306 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10004,39 +10245,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 307 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 307 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 303 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -863714145 +841283083 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1177678328 +1924582348 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10046,19 +10287,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 308 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -863714145 +841283083 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2030367944 +11003494 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10068,33 +10309,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 309 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 309 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 310 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10104,19 +10345,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 310 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -10126,13 +10367,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 311 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10142,13 +10383,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 311 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10161,39 +10402,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 312 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 312 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 308 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -863714145 +841283083 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2030367944 +11003494 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10203,19 +10444,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 313 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -73393189 +990398217 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -791868477 +1270855946 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10225,33 +10466,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 314 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 314 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 315 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10261,19 +10502,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 315 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -10283,13 +10524,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 316 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10299,13 +10540,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 316 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10318,39 +10559,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 317 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 317 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 313 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -73393189 +990398217 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -791868477 +1270855946 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10360,19 +10601,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 318 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1601664942 +1675763772 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1243355991 +1354011814 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10382,33 +10623,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 319 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 319 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 320 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10418,19 +10659,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 320 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -10440,13 +10681,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 321 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10456,13 +10697,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 321 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10475,39 +10716,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 322 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 322 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 318 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1601664942 +1675763772 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1243355991 +1354011814 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10517,19 +10758,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 323 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -475165049 +520016214 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -791868477 +1270855946 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10539,33 +10780,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 324 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 324 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 325 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10575,19 +10816,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 325 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -10597,13 +10838,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 326 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10613,13 +10854,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 326 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10632,39 +10873,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 327 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 327 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 323 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -475165049 +520016214 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -791868477 +1270855946 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10674,19 +10915,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 328 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -475165049 +520016214 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -863714145 +841283083 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10696,33 +10937,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 329 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 329 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 330 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10732,19 +10973,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 330 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -10754,13 +10995,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 331 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10770,13 +11011,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 331 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10789,39 +11030,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 332 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 332 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 328 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -475165049 +520016214 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -863714145 +841283083 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10831,19 +11072,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 333 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1754778997 +1731722639 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2030367944 +11003494 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10853,33 +11094,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 334 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 334 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 335 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10889,19 +11130,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 335 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -10911,13 +11152,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 336 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10927,13 +11168,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 336 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -10946,39 +11187,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 337 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 337 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 333 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1754778997 +1731722639 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2030367944 +11003494 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -10988,19 +11229,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 338 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1177678328 +1924582348 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -890297469 +1232306490 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11010,33 +11251,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 339 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 339 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 340 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11046,19 +11287,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 340 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809466180 +1454031203 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -11068,13 +11309,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 341 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11084,13 +11325,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 341 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -890297469 +1232306490 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11103,39 +11344,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 342 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 342 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 338 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1177678328 +1924582348 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -890297469 +1232306490 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11145,19 +11386,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 343 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1177678328 +1924582348 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1710992834 +1663166483 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11167,33 +11408,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 344 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 344 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 345 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11203,19 +11444,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 345 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809466180 +1454031203 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -11225,13 +11466,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 346 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11241,13 +11482,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 346 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11260,39 +11501,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 347 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 347 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 343 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1177678328 +1924582348 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1710992834 +1663166483 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11302,19 +11543,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 348 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1754778997 +1731722639 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -73393189 +990398217 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11324,33 +11565,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 349 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 349 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 350 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11360,19 +11601,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 350 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -11382,13 +11623,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 351 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11398,13 +11639,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 351 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11417,39 +11658,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 352 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 352 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 348 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1754778997 +1731722639 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -73393189 +990398217 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11459,19 +11700,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 353 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1754778997 +1731722639 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1305590605 +1468357786 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11481,33 +11722,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 354 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 354 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 355 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11517,19 +11758,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 355 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -11539,13 +11780,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 356 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11555,13 +11796,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 356 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11574,39 +11815,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 357 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 357 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 353 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1754778997 +1731722639 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1305590605 +1468357786 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11616,19 +11857,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 358 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -878883978 +1757143877 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1177678328 +1924582348 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11638,33 +11879,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 359 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 359 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 360 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11674,19 +11915,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 360 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -389183515 +527446182 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -11696,13 +11937,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 361 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11712,13 +11953,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 361 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11731,39 +11972,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 362 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 362 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 358 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -878883978 +1757143877 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1177678328 +1924582348 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11773,19 +12014,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 363 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2030367944 +11003494 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1010494180 +817406040 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11795,33 +12036,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 364 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 364 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 365 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11831,19 +12072,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 365 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1919631490 +1511785794 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -11853,13 +12094,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 366 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11869,13 +12110,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 366 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11888,39 +12129,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 367 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 367 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 363 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2030367944 +11003494 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1010494180 +817406040 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11930,19 +12171,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 368 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -878883978 +1757143877 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -73393189 +990398217 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -11952,33 +12193,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 369 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 369 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 370 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -11988,19 +12229,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 370 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -389183515 +527446182 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12010,13 +12251,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 371 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12026,13 +12267,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 371 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12045,39 +12286,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 372 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 372 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 368 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -878883978 +1757143877 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -73393189 +990398217 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12087,19 +12328,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 373 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -878883978 +1757143877 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1305590605 +1468357786 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12109,33 +12350,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 374 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 374 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 375 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12145,19 +12386,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 375 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -389183515 +527446182 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12167,13 +12408,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 376 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12183,13 +12424,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 376 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1305590605 +1468357786 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12202,39 +12443,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 377 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 377 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 373 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -878883978 +1757143877 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1305590605 +1468357786 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12244,19 +12485,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 378 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2030367944 +11003494 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -977332480 +2083117811 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12266,33 +12507,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 379 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 379 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 380 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12302,19 +12543,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 380 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1919631490 +1511785794 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12324,13 +12565,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 381 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12340,13 +12581,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 381 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12359,39 +12600,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 382 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 382 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 378 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2030367944 +11003494 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -977332480 +2083117811 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12401,19 +12642,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 383 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1075002784 +1955915048 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -878883978 +1757143877 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12423,33 +12664,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 384 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 384 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 385 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12459,19 +12700,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 385 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1599623549 +963601816 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12481,13 +12722,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 386 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12497,13 +12738,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 386 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12516,39 +12757,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 387 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 387 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 383 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1075002784 +1955915048 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -878883978 +1757143877 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12558,19 +12799,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 388 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1075002784 +1955915048 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -977332480 +2083117811 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12580,33 +12821,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 389 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 389 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 390 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12616,19 +12857,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 390 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1075002784 +1955915048 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1599623549 +963601816 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12638,13 +12879,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 391 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12654,13 +12895,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 391 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12673,39 +12914,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 392 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 392 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 388 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1075002784 +1955915048 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -977332480 +2083117811 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12715,19 +12956,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 393 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1010494180 +817406040 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2068255427 +1022308509 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12737,33 +12978,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 394 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 394 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 395 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12773,19 +13014,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 395 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -525211250 +961419791 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12795,13 +13036,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 396 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12811,13 +13052,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 396 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12830,39 +13071,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 397 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 397 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 393 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1010494180 +817406040 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2068255427 +1022308509 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12872,19 +13113,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 398 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -977332480 +2083117811 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1601664942 +1675763772 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -12894,33 +13135,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 399 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 399 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 400 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12930,19 +13171,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 400 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1067689580 +665188480 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -12952,13 +13193,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 401 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12968,13 +13209,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 401 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -12987,39 +13228,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 402 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 402 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 398 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -977332480 +2083117811 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1601664942 +1675763772 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13029,19 +13270,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 403 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -977332480 +2083117811 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -863714145 +841283083 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13051,33 +13292,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 404 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 404 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 405 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13087,19 +13328,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 405 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1067689580 +665188480 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -13109,13 +13350,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 406 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13125,13 +13366,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 406 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13144,39 +13385,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 407 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 407 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 403 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -977332480 +2083117811 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -863714145 +841283083 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13186,19 +13427,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 408 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -791868477 +1270855946 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -878883978 +1757143877 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13208,33 +13449,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 409 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 409 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 410 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13244,19 +13485,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 410 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -285416728 +489279267 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -13266,13 +13507,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 411 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13282,13 +13523,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 411 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13301,39 +13542,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 412 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 412 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 408 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -791868477 +1270855946 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -878883978 +1757143877 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13343,19 +13584,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 413 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -791868477 +1270855946 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1010494180 +817406040 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13365,33 +13606,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 414 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 414 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 415 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13401,19 +13642,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 415 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -285416728 +489279267 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -13423,13 +13664,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 416 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13439,13 +13680,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 416 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1010494180 +817406040 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13458,39 +13699,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 417 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 417 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 413 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -791868477 +1270855946 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1010494180 +817406040 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13500,19 +13741,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 418 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2072059104 +157683534 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2086028360 +1325808650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13522,33 +13763,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 419 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 419 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 420 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13558,19 +13799,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 420 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -13580,13 +13821,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 421 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13596,13 +13837,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 421 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13615,39 +13856,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 422 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 422 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 418 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2072059104 +157683534 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2086028360 +1325808650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13657,19 +13898,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 423 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2072059104 +157683534 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -690227001 +706197430 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13679,33 +13920,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 424 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 424 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 425 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13715,19 +13956,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 425 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -13737,13 +13978,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 426 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13753,13 +13994,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 426 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13772,39 +14013,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 427 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 427 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 423 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2072059104 +157683534 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -690227001 +706197430 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13814,19 +14055,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 428 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1502541176 +1518864111 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1900677350 +1585787493 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13836,33 +14077,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 429 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 429 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 430 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13872,19 +14113,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 430 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -215134277 +377478451 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -13894,13 +14135,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 431 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13910,13 +14151,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 431 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -13929,39 +14170,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 432 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 432 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 428 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1502541176 +1518864111 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1900677350 +1585787493 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13971,19 +14212,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 433 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1502541176 +1518864111 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -864972325 +1730173572 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -13993,33 +14234,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 434 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 434 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 435 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14029,19 +14270,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 435 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -215134277 +377478451 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14051,13 +14292,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 436 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14067,13 +14308,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 436 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14086,39 +14327,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 437 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 437 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 433 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1502541176 +1518864111 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -864972325 +1730173572 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14128,19 +14369,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 438 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -935340663 +1568059495 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2086028360 +1325808650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14150,33 +14391,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 439 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 439 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 440 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14186,19 +14427,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 440 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14208,13 +14449,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 441 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14224,13 +14465,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 441 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14243,39 +14484,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 442 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 442 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 438 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -935340663 +1568059495 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2086028360 +1325808650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14285,19 +14526,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 443 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -690227001 +706197430 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -955501238 +215145189 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14307,33 +14548,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 444 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 444 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 445 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14343,19 +14584,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 445 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14365,13 +14606,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 446 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14381,13 +14622,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 446 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -955501238 +215145189 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14400,39 +14641,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 447 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 447 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 443 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -690227001 +706197430 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -955501238 +215145189 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14442,19 +14683,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 448 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -690227001 +706197430 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -226594800 +982007015 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14464,33 +14705,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 449 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 449 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 450 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14500,19 +14741,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 450 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14522,13 +14763,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 451 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14538,13 +14779,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 451 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14557,39 +14798,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 452 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 452 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 448 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -690227001 +706197430 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -226594800 +982007015 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14599,19 +14840,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 453 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -935340663 +1568059495 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1502541176 +1518864111 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14621,33 +14862,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 454 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 454 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 455 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14657,19 +14898,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 455 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14679,13 +14920,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 456 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14695,13 +14936,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 456 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14714,39 +14955,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 457 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 457 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 453 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -935340663 +1568059495 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1502541176 +1518864111 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14756,19 +14997,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 458 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2086028360 +1325808650 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1030471802 +1857815974 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14778,33 +15019,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 459 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 459 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 460 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14814,19 +15055,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 460 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14836,13 +15077,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 461 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14852,13 +15093,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 461 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14871,39 +15112,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 462 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 462 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 458 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -2086028360 +1325808650 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1030471802 +1857815974 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14913,19 +15154,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 463 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -949339959 +1816757085 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -864972325 +1730173572 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -14935,33 +15176,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 464 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 464 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 465 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -14971,19 +15212,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 465 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -14993,13 +15234,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 466 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15009,13 +15250,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 466 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15028,39 +15269,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 467 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 467 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 463 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -949339959 +1816757085 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -864972325 +1730173572 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15070,19 +15311,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 468 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -949339959 +1816757085 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2072059104 +157683534 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15092,33 +15333,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 469 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 469 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 470 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15128,19 +15369,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 470 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -15150,13 +15391,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 471 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15166,13 +15407,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 471 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15185,39 +15426,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 472 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 472 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 468 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -949339959 +1816757085 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2072059104 +157683534 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15227,19 +15468,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 473 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1900677350 +1585787493 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -644161395 +1241276575 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15249,33 +15490,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 474 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 474 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 475 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15285,19 +15526,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 475 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -923319992 +394714818 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -15307,13 +15548,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 476 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15323,13 +15564,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 476 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15342,39 +15583,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 477 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 477 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 473 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1900677350 +1585787493 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -644161395 +1241276575 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15384,19 +15625,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 478 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1900677350 +1585787493 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -392301955 +1033490990 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15406,33 +15647,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 479 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 479 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 480 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15442,19 +15683,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 480 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -923319992 +394714818 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -15464,13 +15705,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 481 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15480,13 +15721,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 481 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15499,39 +15740,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 482 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 482 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 478 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1900677350 +1585787493 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -392301955 +1033490990 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15541,19 +15782,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 483 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -864972325 +1730173572 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -59997172 +1427810650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15563,33 +15804,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 484 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 484 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 485 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15599,19 +15840,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 485 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -15621,13 +15862,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 486 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15637,13 +15878,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 486 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15656,39 +15897,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 487 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 487 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 483 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -864972325 +1730173572 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -59997172 +1427810650 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15698,19 +15939,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 488 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -864972325 +1730173572 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1202639361 +902919927 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15720,33 +15961,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 489 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 489 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 490 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15756,19 +15997,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 490 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -15778,13 +16019,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 491 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15794,13 +16035,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 491 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15813,39 +16054,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 492 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 492 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 488 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -864972325 +1730173572 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1202639361 +902919927 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15855,19 +16096,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 493 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1273059732 +2097514481 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2072059104 +157683534 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -15877,33 +16118,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 494 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 494 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 495 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15913,19 +16154,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 495 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1065250565 +366004251 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -15935,13 +16176,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 496 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15951,13 +16192,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 496 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -15970,39 +16211,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 497 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 497 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 493 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1273059732 +2097514481 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2072059104 +157683534 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -16012,19 +16253,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 498 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1273059732 +2097514481 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1900677350 +1585787493 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -16034,33 +16275,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 499 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 499 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 500 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16070,19 +16311,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 500 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1273059732 +2097514481 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1065250565 +366004251 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16092,13 +16333,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 501 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16108,13 +16349,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 501 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16127,39 +16368,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 502 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 502 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 498 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 from -1273059732 +2097514481 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1900677350 +1585787493 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -16169,13 +16410,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 503 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16185,13 +16426,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 503 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16204,13 +16445,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 504 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16220,13 +16461,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 504 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16239,13 +16480,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 505 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16255,13 +16496,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 505 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16274,13 +16515,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 506 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16290,13 +16531,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 506 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16309,13 +16550,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 507 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16325,33 +16566,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 508 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 508 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 509 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16361,19 +16602,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 509 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16383,39 +16624,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 510 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 510 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 507 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16425,13 +16666,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 511 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16441,33 +16682,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 512 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 512 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 513 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16477,19 +16718,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 513 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16499,39 +16740,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 514 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 514 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 511 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16541,13 +16782,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 515 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16557,33 +16798,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 516 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 516 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 517 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16593,19 +16834,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 517 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16615,39 +16856,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 518 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 518 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 515 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16657,13 +16898,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 519 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16673,33 +16914,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 520 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 520 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 521 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16709,19 +16950,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 521 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16731,39 +16972,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 522 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 522 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 519 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16773,13 +17014,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 523 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16789,33 +17030,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 524 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 524 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 525 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16825,19 +17066,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 525 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16847,39 +17088,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 526 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 526 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 523 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16889,13 +17130,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 527 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16905,33 +17146,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 528 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 528 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 529 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -16941,19 +17182,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 529 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -16963,39 +17204,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 530 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 530 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 527 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17005,13 +17246,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 531 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17021,33 +17262,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 532 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 532 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 533 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17057,19 +17298,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 533 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17079,39 +17320,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 534 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 534 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 531 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17121,13 +17362,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 535 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17137,33 +17378,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 536 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 536 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 537 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17173,19 +17414,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 537 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17195,39 +17436,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 538 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 538 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 535 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17237,13 +17478,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 539 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17253,33 +17494,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 540 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 540 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 541 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17289,19 +17530,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 541 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17311,39 +17552,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 542 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 542 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 539 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17353,13 +17594,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 543 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17369,33 +17610,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 544 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 544 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 545 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17405,19 +17646,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 545 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17427,39 +17668,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 546 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 546 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 543 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17469,13 +17710,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 547 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17485,33 +17726,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 548 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 548 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 549 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17521,19 +17762,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 549 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17543,39 +17784,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 550 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 550 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 547 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17585,13 +17826,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 551 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17601,33 +17842,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 552 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 552 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 553 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17637,19 +17878,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 553 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17659,39 +17900,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 554 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 554 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 551 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17701,13 +17942,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 555 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17717,13 +17958,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 555 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -791868477 +1270855946 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17736,13 +17977,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 556 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17752,13 +17993,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 556 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17771,13 +18012,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 557 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17787,13 +18028,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 557 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17806,13 +18047,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 558 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17822,13 +18063,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 558 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17841,13 +18082,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 559 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17857,33 +18098,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 560 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 560 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 561 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17893,19 +18134,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 561 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1067689580 +665188480 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17915,39 +18156,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 562 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 562 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 559 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -977332480 +2083117811 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1067689580 +665188480 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -17957,13 +18198,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 563 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17973,13 +18214,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 563 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -17992,13 +18233,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 564 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18008,13 +18249,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 564 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18027,13 +18268,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 565 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18043,13 +18284,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 565 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18062,13 +18303,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 566 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18078,13 +18319,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 566 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18097,13 +18338,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 567 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18113,33 +18354,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 568 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 568 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 569 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18149,19 +18390,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 569 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18171,39 +18412,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 570 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 570 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 567 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18213,13 +18454,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 571 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18229,33 +18470,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 572 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 572 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 573 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18265,19 +18506,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 573 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18287,39 +18528,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 574 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 574 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 571 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18329,13 +18570,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 575 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18345,33 +18586,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 576 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 576 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 577 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18381,19 +18622,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 577 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18403,39 +18644,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 578 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 578 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 575 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18445,13 +18686,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 579 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18461,33 +18702,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 580 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 580 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 581 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18497,19 +18738,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 581 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18519,39 +18760,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 582 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 582 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 579 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18561,13 +18802,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 583 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18577,33 +18818,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 584 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 584 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 585 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18613,19 +18854,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 585 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18635,39 +18876,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 586 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 586 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 583 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18677,13 +18918,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 587 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18693,33 +18934,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 588 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 588 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 589 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18729,19 +18970,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 589 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18751,39 +18992,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 590 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 590 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 587 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18793,13 +19034,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 591 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18809,33 +19050,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 592 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 592 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 593 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18845,19 +19086,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 593 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18867,39 +19108,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 594 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 594 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 591 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18909,13 +19150,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 595 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18925,33 +19166,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 596 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 596 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 597 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -18961,19 +19202,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 597 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -18983,39 +19224,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 598 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 598 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 595 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19025,13 +19266,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 599 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19041,33 +19282,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 600 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 600 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 601 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19077,19 +19318,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 601 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19099,39 +19340,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 602 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 602 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 599 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19141,13 +19382,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 603 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19157,33 +19398,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 604 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 604 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 605 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19193,19 +19434,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 605 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19215,39 +19456,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 606 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 606 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 603 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19257,13 +19498,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 607 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19273,33 +19514,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 608 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 608 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 609 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19309,19 +19550,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 609 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19331,39 +19572,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 610 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 610 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 607 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19373,13 +19614,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 611 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19389,33 +19630,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 612 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 612 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 613 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19425,19 +19666,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 613 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19447,39 +19688,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 614 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 614 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 611 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19489,13 +19730,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 615 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19505,33 +19746,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 616 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 616 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 617 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19541,19 +19782,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 617 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19563,39 +19804,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 618 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 618 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 615 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19605,13 +19846,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 619 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19621,33 +19862,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 620 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 620 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 621 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19657,19 +19898,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 621 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19679,39 +19920,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 622 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 622 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 619 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19721,13 +19962,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 623 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19737,33 +19978,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 624 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 624 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 625 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19773,19 +20014,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 625 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19795,39 +20036,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 626 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 626 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 623 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19837,13 +20078,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 627 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19853,33 +20094,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 628 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 628 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 629 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19889,19 +20130,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 629 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19911,39 +20152,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 630 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 630 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 627 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -19953,13 +20194,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 631 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -19969,33 +20210,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 632 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 632 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 633 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20005,19 +20246,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 633 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20027,39 +20268,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 634 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 634 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 631 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20069,13 +20310,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 635 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20085,33 +20326,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 636 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 636 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 637 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20121,19 +20362,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 637 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20143,39 +20384,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 638 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 638 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 635 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20185,13 +20426,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 639 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20201,13 +20442,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 639 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20220,13 +20461,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 640 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20236,13 +20477,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 640 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20255,13 +20496,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 641 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20271,13 +20512,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 641 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20290,13 +20531,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 642 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20306,33 +20547,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 643 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 643 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 644 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20342,19 +20583,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 644 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20364,39 +20605,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 645 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 645 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 642 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20406,13 +20647,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 646 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20422,33 +20663,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 647 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 647 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 648 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20458,19 +20699,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 648 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20480,39 +20721,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 649 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 649 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 646 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20522,13 +20763,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 650 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20538,13 +20779,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 650 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20557,13 +20798,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 651 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20573,13 +20814,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 651 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20592,13 +20833,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 652 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20608,13 +20849,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 652 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20627,13 +20868,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 653 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20643,13 +20884,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 653 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1831446806 +1852584274 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20662,13 +20903,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 654 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20678,33 +20919,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 655 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 655 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 656 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20714,19 +20955,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 656 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20736,39 +20977,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 657 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 657 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 654 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20778,13 +21019,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 658 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20794,33 +21035,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 659 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 659 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 660 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20830,19 +21071,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 660 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20852,39 +21093,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 661 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 661 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 658 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20894,13 +21135,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 662 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20910,33 +21151,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 663 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 663 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 664 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -20946,19 +21187,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 664 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -20968,39 +21209,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 665 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 665 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 662 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21010,13 +21251,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 666 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21026,33 +21267,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 667 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 667 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 668 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21062,19 +21303,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 668 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21084,39 +21325,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 669 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 669 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 666 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21126,13 +21367,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 670 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21142,33 +21383,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 671 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 671 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 672 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21178,19 +21419,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 672 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21200,39 +21441,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 673 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 673 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 670 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21242,13 +21483,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 674 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21258,33 +21499,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 675 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 675 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 676 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21294,19 +21535,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 676 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21316,39 +21557,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 677 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 677 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 674 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21358,13 +21599,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 678 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21374,33 +21615,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 679 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 679 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 680 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21410,19 +21651,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 680 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2127477083 +648680157 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21432,39 +21673,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 681 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 681 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 678 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2127477083 +648680157 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21474,13 +21715,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 682 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21490,33 +21731,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 683 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 683 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 684 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21526,19 +21767,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 684 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21548,39 +21789,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 685 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 685 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 682 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21590,13 +21831,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 686 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21606,33 +21847,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 687 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 687 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 688 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21642,19 +21883,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 688 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21664,39 +21905,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 689 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 689 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 686 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21706,13 +21947,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 690 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21722,33 +21963,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 691 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 691 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 692 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21758,19 +21999,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 692 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21780,39 +22021,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 693 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 693 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 690 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -21822,13 +22063,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 694 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21838,13 +22079,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 694 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21857,13 +22098,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 695 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21873,13 +22114,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 695 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21892,13 +22133,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 696 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21908,13 +22149,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 696 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2030367944 +11003494 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21927,13 +22168,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 697 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21943,13 +22184,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 697 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -878883978 +1757143877 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21962,13 +22203,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 698 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -21978,33 +22219,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 699 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 699 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 700 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22014,19 +22255,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 700 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22036,39 +22277,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 701 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 701 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 698 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22078,13 +22319,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 702 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22094,33 +22335,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 703 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 703 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 704 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22130,19 +22371,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 704 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -923319992 +394714818 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22152,39 +22393,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 705 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 705 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 702 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1900677350 +1585787493 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -923319992 +394714818 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22194,13 +22435,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 706 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22210,33 +22451,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 707 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 707 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 708 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22246,19 +22487,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 708 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22268,39 +22509,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 709 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 709 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 706 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22310,13 +22551,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 710 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22326,33 +22567,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 711 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 711 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 712 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22362,19 +22603,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 712 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22384,39 +22625,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 713 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 713 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 710 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22426,13 +22667,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 714 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22442,33 +22683,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 715 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 715 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 716 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22478,19 +22719,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 716 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22500,39 +22741,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 717 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 717 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 714 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22542,13 +22783,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 718 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22558,33 +22799,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 719 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 719 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 720 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22594,19 +22835,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 720 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22616,39 +22857,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 721 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 721 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 718 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22658,13 +22899,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 722 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22674,33 +22915,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 723 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 723 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 724 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22710,19 +22951,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 724 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22732,39 +22973,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 725 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 725 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 722 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22774,13 +23015,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 726 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22790,33 +23031,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 727 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 727 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 728 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22826,19 +23067,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 728 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22848,39 +23089,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 729 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 729 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 726 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22890,13 +23131,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 730 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22906,33 +23147,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 731 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 731 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 732 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -22942,19 +23183,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 732 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -22964,39 +23205,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 733 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 733 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 730 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23006,13 +23247,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 734 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23022,33 +23263,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 735 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 735 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 736 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23058,19 +23299,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 736 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23080,39 +23321,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 737 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 737 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 734 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23122,13 +23363,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 738 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23138,33 +23379,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 739 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 739 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 740 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23174,19 +23415,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 740 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23196,39 +23437,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 741 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 741 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 738 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23238,13 +23479,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 742 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23254,33 +23495,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 743 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 743 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 744 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23290,19 +23531,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 744 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23312,39 +23553,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 745 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 745 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 742 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23354,13 +23595,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 746 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23370,33 +23611,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 747 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 747 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 748 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23406,19 +23647,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 748 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23428,39 +23669,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 749 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 749 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 746 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23470,13 +23711,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 750 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23486,33 +23727,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 751 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 751 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 752 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23522,19 +23763,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 752 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23544,39 +23785,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 753 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 753 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 750 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23586,13 +23827,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 754 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23602,33 +23843,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 755 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 755 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 756 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23638,19 +23879,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 756 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23660,39 +23901,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 757 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 757 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 754 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23702,13 +23943,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 758 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23718,33 +23959,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 759 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 759 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 760 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23754,19 +23995,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 760 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2127477083 +648680157 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23776,39 +24017,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 761 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 761 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 758 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -392301955 +1033490990 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2127477083 +648680157 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23818,13 +24059,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 762 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23834,33 +24075,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 763 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 763 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 764 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23870,19 +24111,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 764 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1878724878 +603650290 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23892,39 +24133,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 765 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 765 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 762 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1878724878 +603650290 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -23934,13 +24175,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 766 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23950,33 +24191,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 767 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 767 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 768 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -23986,19 +24227,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 768 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1276962705 +762227630 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24008,39 +24249,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 769 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 769 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 766 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1961012502 +36333492 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1276962705 +762227630 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24050,13 +24291,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 770 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24066,33 +24307,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 771 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 771 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 772 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24102,19 +24343,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 772 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24124,39 +24365,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 773 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 773 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 770 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24166,13 +24407,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 774 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24182,33 +24423,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 775 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 775 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 776 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24218,19 +24459,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 776 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24240,39 +24481,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 777 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 777 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 774 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24282,13 +24523,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 778 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24298,33 +24539,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 779 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 779 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 780 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24334,19 +24575,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 780 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24356,39 +24597,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 781 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 781 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 778 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24398,13 +24639,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 782 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24414,33 +24655,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 783 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 783 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 784 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24450,19 +24691,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 784 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -215134277 +377478451 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24472,39 +24713,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 785 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 785 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 782 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1502541176 +1518864111 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -215134277 +377478451 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24514,13 +24755,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 786 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24530,33 +24771,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 787 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 787 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 788 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24566,19 +24807,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 788 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24588,39 +24829,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 789 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 789 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 786 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24630,13 +24871,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 790 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24646,13 +24887,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 790 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24665,13 +24906,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 791 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24681,13 +24922,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 791 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24700,13 +24941,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 792 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24716,13 +24957,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 792 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1243355991 +1354011814 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24735,13 +24976,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 793 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24751,13 +24992,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 793 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2068255427 +1022308509 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24770,13 +25011,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 794 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24786,33 +25027,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 795 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 795 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 796 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24822,19 +25063,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 796 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24844,39 +25085,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 797 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 797 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 794 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24886,13 +25127,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 798 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24902,33 +25143,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 799 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 799 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 800 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -24938,19 +25179,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 800 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -24960,39 +25201,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 801 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 801 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 798 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25002,13 +25243,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 802 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25018,33 +25259,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 803 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 803 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 804 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25054,19 +25295,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 804 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25076,39 +25317,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 805 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 805 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 802 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25118,13 +25359,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 806 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25134,33 +25375,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 807 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 807 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 808 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25170,19 +25411,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 808 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25192,39 +25433,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 809 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 809 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 806 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25234,13 +25475,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 810 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25250,33 +25491,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 811 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 811 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 812 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25286,19 +25527,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 812 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25308,39 +25549,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 813 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 813 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 810 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25350,13 +25591,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 814 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25366,33 +25607,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 815 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 815 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 816 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25402,19 +25643,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 816 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25424,39 +25665,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 817 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 817 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 814 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25466,13 +25707,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 818 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25482,33 +25723,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 819 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 819 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 820 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25518,19 +25759,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 820 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25540,39 +25781,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 821 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 821 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 818 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25582,13 +25823,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 822 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25598,33 +25839,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 823 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 823 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 824 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25634,19 +25875,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 824 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25656,39 +25897,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 825 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 825 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 822 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25698,13 +25939,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 826 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25714,33 +25955,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 827 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 827 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 828 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25750,19 +25991,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 828 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25772,39 +26013,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 829 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 829 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 826 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25814,13 +26055,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 830 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25830,33 +26071,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 831 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 831 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 832 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25866,19 +26107,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 832 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25888,39 +26129,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 833 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 833 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 830 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -25930,13 +26171,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 834 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25946,33 +26187,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 835 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 835 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 836 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -25982,19 +26223,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 836 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26004,39 +26245,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 837 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 837 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 834 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26046,13 +26287,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 838 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26062,33 +26303,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 839 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 839 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 840 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26098,19 +26339,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 840 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26120,39 +26361,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 841 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 841 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 838 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26162,13 +26403,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 842 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26178,33 +26419,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 843 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 843 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 844 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26214,19 +26455,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 844 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26236,39 +26477,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 845 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 845 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 842 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26278,13 +26519,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 846 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26294,33 +26535,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 847 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 847 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 848 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26330,19 +26571,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 848 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26352,39 +26593,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 849 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 849 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 846 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26394,13 +26635,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 850 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26410,33 +26651,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 851 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 851 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 852 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26446,19 +26687,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 852 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26468,39 +26709,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 853 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 853 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 850 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1754778997 +1731722639 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1842792802 +407858146 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26510,13 +26751,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 854 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26526,33 +26767,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 855 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 855 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 856 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26562,19 +26803,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 856 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26584,39 +26825,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 857 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 857 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 854 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -73393189 +990398217 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -306158513 +280744458 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26626,13 +26867,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 858 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26642,33 +26883,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 859 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 859 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 860 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26678,19 +26919,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 860 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26700,39 +26941,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 861 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 861 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 858 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1601664942 +1675763772 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -235309779 +1213216872 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26742,13 +26983,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 862 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26758,33 +26999,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 863 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 863 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 864 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26794,19 +27035,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 864 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26816,39 +27057,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 865 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 865 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 862 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -26858,13 +27099,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 866 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26874,13 +27115,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 866 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26893,13 +27134,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 867 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26909,13 +27150,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 867 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26928,13 +27169,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 868 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26944,13 +27185,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 868 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1710992834 +1663166483 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26963,13 +27204,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 869 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26979,13 +27220,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 869 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1850527708 +2042495840 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -26998,13 +27239,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 870 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27014,33 +27255,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 871 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 871 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 872 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27050,19 +27291,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 872 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27072,39 +27313,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 873 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 873 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 870 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1419725804 +1468303011 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -60625598 +510464020 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27114,13 +27355,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 874 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27130,33 +27371,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 875 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 875 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 876 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27166,19 +27407,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 876 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27188,39 +27429,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 877 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 877 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 874 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1202639361 +902919927 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -141254523 +1632492873 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27230,13 +27471,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 878 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27246,33 +27487,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 879 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 879 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 880 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27282,19 +27523,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 880 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27304,39 +27545,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 881 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 881 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 878 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -59997172 +1427810650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1027176908 +1987083830 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27346,13 +27587,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 882 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27362,33 +27603,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 883 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 883 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 884 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27398,19 +27639,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 884 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27420,39 +27661,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 885 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 885 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 882 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1998651247 +846238611 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -904611431 +1071097621 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27462,13 +27703,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 886 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27478,33 +27719,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 887 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 887 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 888 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27514,19 +27755,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 888 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27536,39 +27777,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 889 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 889 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 886 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -644161395 +1241276575 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1638024177 +1908143486 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27578,13 +27819,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 890 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27594,33 +27835,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 891 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 891 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 892 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27630,19 +27871,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 892 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27652,39 +27893,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 893 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 893 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 890 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -226594800 +982007015 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -359940254 +85777802 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27694,13 +27935,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 894 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27710,33 +27951,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 895 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 895 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 896 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27746,19 +27987,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 896 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27768,39 +28009,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 897 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 897 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 894 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -949339959 +1816757085 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1132380758 +990416209 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27810,13 +28051,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 898 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27826,33 +28067,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 899 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 899 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 900 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27862,19 +28103,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 900 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27884,39 +28125,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 901 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 901 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 898 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -864972325 +1730173572 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -522272322 +1952779858 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -27926,13 +28167,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 902 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27942,33 +28183,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 903 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 903 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 904 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -27978,19 +28219,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 904 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28000,39 +28241,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 905 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 905 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 902 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2072059104 +157683534 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1667963745 +1596467899 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28042,13 +28283,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 906 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28058,33 +28299,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 907 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 907 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 908 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28094,19 +28335,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 908 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28116,39 +28357,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 909 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 909 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 906 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -2086028360 +1325808650 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1476997433 +1408652377 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28158,13 +28399,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 910 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28174,33 +28415,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 911 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 911 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 912 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28210,19 +28451,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 912 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28232,39 +28473,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 913 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 913 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 910 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1030471802 +1857815974 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -779366336 +473581465 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28274,13 +28515,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 914 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28290,33 +28531,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 915 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 915 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 916 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28326,19 +28567,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 916 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28348,39 +28589,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 917 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 917 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 914 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -690227001 +706197430 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2040880931 +1301664418 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28390,13 +28631,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 918 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28406,33 +28647,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 919 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 919 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 920 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28442,19 +28683,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 920 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28464,39 +28705,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 921 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 921 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 918 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -475165049 +520016214 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1334061526 +1754638213 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28506,13 +28747,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 922 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28522,33 +28763,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 923 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 923 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 924 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28558,19 +28799,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 924 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28580,39 +28821,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 925 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 925 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 922 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -935340663 +1568059495 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1546815638 +513169028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28622,13 +28863,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 926 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28638,33 +28879,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 927 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 927 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 928 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28674,19 +28915,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 928 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28696,39 +28937,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 929 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 929 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 926 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -863714145 +841283083 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1625676242 +1685232414 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28738,13 +28979,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 930 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28754,33 +28995,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 931 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 931 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 932 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28790,19 +29031,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 932 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809466180 +1454031203 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28812,39 +29053,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 933 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 933 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 930 this -1998389332 +1006485584 1 this.adjMap -217875110 +466505482 1 node -1177678328 +1924582348 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809466180 +1454031203 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -28858,43 +29099,43 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 935 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 935 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.Graph():::EXIT29 this_invocation_nonce 934 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 936 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28904,13 +29145,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 936 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28923,13 +29164,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 937 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28939,53 +29180,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 938 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 938 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 939 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 939 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 937 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -28995,13 +29236,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 940 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29011,13 +29252,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 940 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29030,13 +29271,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 941 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29046,53 +29287,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 942 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 942 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 943 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 943 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 941 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29102,13 +29343,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 944 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29118,13 +29359,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 944 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29137,13 +29378,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 945 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29153,53 +29394,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 946 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 946 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 947 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 947 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 945 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29209,13 +29450,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 948 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29225,13 +29466,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 948 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29244,13 +29485,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 949 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29260,53 +29501,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 950 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 950 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 951 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 951 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 949 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29316,13 +29557,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 952 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29332,13 +29573,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 952 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29351,13 +29592,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 953 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29367,53 +29608,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 954 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 954 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 955 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 955 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 953 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29423,13 +29664,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 956 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29439,13 +29680,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 956 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29458,13 +29699,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 957 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29474,53 +29715,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 958 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 958 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 959 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 959 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 957 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29530,13 +29771,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 960 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29546,13 +29787,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 960 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29565,13 +29806,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 961 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29581,53 +29822,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 962 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 962 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 963 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 963 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 961 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29637,13 +29878,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 964 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29653,13 +29894,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 964 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29672,13 +29913,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 965 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29688,53 +29929,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 966 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 966 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 967 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 967 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 965 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29744,13 +29985,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 968 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29760,13 +30001,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 968 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29779,13 +30020,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 969 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29795,53 +30036,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 970 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 970 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 971 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 971 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 969 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29851,13 +30092,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 972 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29867,13 +30108,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 972 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29886,13 +30127,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 973 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29902,53 +30143,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 974 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 974 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 975 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 975 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 973 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29958,13 +30199,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 976 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29974,13 +30215,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 976 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -29993,13 +30234,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 977 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30009,53 +30250,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 978 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 978 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 979 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 979 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 977 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30065,13 +30306,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 980 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30081,13 +30322,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 980 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30100,13 +30341,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 981 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30116,53 +30357,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 982 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 982 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 983 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 983 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 981 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30172,13 +30413,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 984 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30188,13 +30429,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 984 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30207,13 +30448,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 985 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30223,53 +30464,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 986 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 986 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 987 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 987 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 985 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30279,13 +30520,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 988 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30295,13 +30536,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 988 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30314,13 +30555,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 989 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30330,53 +30571,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 990 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 990 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 991 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 991 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 989 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30386,13 +30627,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 992 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30402,13 +30643,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 992 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30421,13 +30662,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 993 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30437,53 +30678,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 994 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 994 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 995 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 995 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 993 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30493,13 +30734,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 996 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30509,13 +30750,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 996 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30528,13 +30769,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 997 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30544,53 +30785,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 998 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 998 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 999 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 999 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 997 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30600,13 +30841,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1000 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30616,13 +30857,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1000 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30635,13 +30876,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1001 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30651,53 +30892,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1002 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1002 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1003 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1003 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1001 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30707,13 +30948,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1004 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30723,13 +30964,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1004 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30742,13 +30983,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1005 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30758,53 +30999,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1006 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1006 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1007 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1007 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1005 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30814,13 +31055,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1008 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30830,13 +31071,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1008 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30849,13 +31090,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1009 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30865,53 +31106,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1010 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1010 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1011 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1011 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1009 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30921,13 +31162,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1012 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30937,13 +31178,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1012 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30956,13 +31197,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1013 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -30972,53 +31213,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1014 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1014 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1015 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1015 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1013 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31028,13 +31269,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1016 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31044,13 +31285,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1016 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31063,13 +31304,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1017 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31079,53 +31320,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1018 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1018 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1019 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1019 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1017 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31135,13 +31376,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1020 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31151,13 +31392,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1020 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31170,13 +31411,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1021 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31186,53 +31427,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1022 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1022 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1023 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1023 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1021 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31242,13 +31483,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1024 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31258,13 +31499,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1024 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31277,13 +31518,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1025 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31293,53 +31534,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1026 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1026 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1027 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1027 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1025 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31349,13 +31590,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1028 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31365,13 +31606,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1028 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31384,13 +31625,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1029 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31400,53 +31641,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1030 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1030 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1031 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1031 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1029 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31456,13 +31697,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1032 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31472,13 +31713,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1032 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31491,13 +31732,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1033 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31507,53 +31748,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1034 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1034 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1035 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1035 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1033 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31563,13 +31804,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1036 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31579,13 +31820,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1036 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31598,13 +31839,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1037 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31614,53 +31855,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1038 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1038 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1039 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1039 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1037 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31670,13 +31911,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1040 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31686,13 +31927,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1040 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31705,13 +31946,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1041 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31721,53 +31962,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1042 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1042 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1043 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1043 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1041 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31777,13 +32018,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1044 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31793,13 +32034,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1044 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31812,13 +32053,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1045 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31828,53 +32069,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1046 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1046 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1047 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1047 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1045 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31884,13 +32125,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1048 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31900,13 +32141,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1048 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31919,13 +32160,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1049 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31935,53 +32176,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1050 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1050 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1051 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1051 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1049 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -31991,13 +32232,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1052 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32007,13 +32248,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1052 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32026,13 +32267,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1053 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32042,53 +32283,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1054 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1054 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1055 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1055 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1053 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32098,13 +32339,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1056 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32114,13 +32355,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1056 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32133,13 +32374,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1057 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32149,53 +32390,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1058 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1058 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1059 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1059 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1057 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32205,13 +32446,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1060 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32221,13 +32462,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1060 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32240,13 +32481,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1061 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32256,53 +32497,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1062 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1062 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1063 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1063 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1061 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32312,13 +32553,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1064 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32328,13 +32569,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1064 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32347,13 +32588,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1065 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32363,53 +32604,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1066 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1066 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1067 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1067 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1065 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32419,13 +32660,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1068 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32435,13 +32676,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1068 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32454,13 +32695,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1069 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32470,53 +32711,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1070 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1070 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1071 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1071 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1069 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32526,13 +32767,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1072 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32542,13 +32783,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1072 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32561,13 +32802,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1073 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32577,53 +32818,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1074 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1074 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1075 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1075 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1073 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32633,13 +32874,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1076 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32649,13 +32890,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1076 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32668,13 +32909,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1077 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32684,53 +32925,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1078 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1078 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1079 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1079 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1077 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32740,13 +32981,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1080 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32756,13 +32997,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1080 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32775,13 +33016,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1081 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32791,53 +33032,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1082 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1082 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1083 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1083 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1081 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32847,13 +33088,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1084 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32863,13 +33104,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1084 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32882,13 +33123,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1085 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32898,53 +33139,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1086 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1086 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1087 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1087 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1085 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32954,13 +33195,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1088 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32970,13 +33211,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1088 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -32989,13 +33230,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 1089 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33005,53 +33246,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1090 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1090 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1091 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1091 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 1089 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33061,19 +33302,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1092 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1771186985 +2074185499 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -847962619 +275310919 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33083,33 +33324,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1093 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1093 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1094 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33119,19 +33360,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1094 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -33141,13 +33382,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1095 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33157,13 +33398,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1095 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33176,39 +33417,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1096 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1096 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1092 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1771186985 +2074185499 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -847962619 +275310919 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33218,19 +33459,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1097 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -2068825828 +797925218 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -199450733 +194706439 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33240,33 +33481,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1098 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1098 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1099 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33276,19 +33517,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1099 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -33298,13 +33539,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1100 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33314,13 +33555,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1100 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33333,39 +33574,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1101 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1101 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1097 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -2068825828 +797925218 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -199450733 +194706439 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33375,19 +33616,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1102 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -847962619 +275310919 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -711560962 +183284570 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33397,33 +33638,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1103 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1103 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1104 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33433,19 +33674,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1104 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -33455,13 +33696,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1105 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33471,13 +33712,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1105 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33490,39 +33731,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1106 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1106 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1102 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -847962619 +275310919 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -711560962 +183284570 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33532,19 +33773,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1107 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1006256041 +2109874862 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1872305359 +480971771 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33554,33 +33795,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1108 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1108 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1109 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33590,19 +33831,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1109 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -33612,13 +33853,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1110 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33628,13 +33869,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1110 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33647,39 +33888,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1111 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1111 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1107 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1006256041 +2109874862 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1872305359 +480971771 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33689,19 +33930,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1112 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1006256041 +2109874862 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2068825828 +797925218 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33711,33 +33952,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1113 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1113 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1114 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33747,19 +33988,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1114 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -33769,13 +34010,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1115 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33785,13 +34026,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1115 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33804,39 +34045,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1116 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1116 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1112 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1006256041 +2109874862 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2068825828 +797925218 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33846,19 +34087,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1117 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -2016141838 +1607305514 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1006256041 +2109874862 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -33868,33 +34109,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1118 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1118 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1119 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33904,19 +34145,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1119 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -33926,13 +34167,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1120 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33942,13 +34183,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1120 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -33961,39 +34202,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1121 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1121 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1117 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -2016141838 +1607305514 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1006256041 +2109874862 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34003,19 +34244,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1122 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -711560962 +183284570 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -151405253 +146305349 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34025,33 +34266,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1123 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1123 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1124 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34061,19 +34302,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1124 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -34083,13 +34324,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1125 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34099,13 +34340,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1125 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34118,39 +34359,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1126 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1126 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1122 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -711560962 +183284570 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -151405253 +146305349 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34160,19 +34401,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1127 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -711560962 +183284570 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -815421027 +398110318 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34182,33 +34423,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1128 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1128 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1129 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34218,19 +34459,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1129 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -34240,13 +34481,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1130 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34256,13 +34497,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1130 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34275,39 +34516,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1131 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1131 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1127 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -711560962 +183284570 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -815421027 +398110318 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34317,19 +34558,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1132 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -151405253 +146305349 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1260005516 +508198356 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34339,33 +34580,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1133 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1133 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1134 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34375,19 +34616,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1134 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -34397,13 +34638,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1135 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34413,13 +34654,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1135 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34432,39 +34673,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1136 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1136 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1132 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -151405253 +146305349 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1260005516 +508198356 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34474,19 +34715,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1137 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -2093980211 +942518407 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1771186985 +2074185499 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34496,33 +34737,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1138 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1138 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1139 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34532,19 +34773,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1139 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1872384842 +233021551 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -34554,13 +34795,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1140 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34570,13 +34811,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1140 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34589,39 +34830,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1141 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1141 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1137 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -2093980211 +942518407 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1771186985 +2074185499 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34631,19 +34872,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1142 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -199450733 +194706439 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -563399241 +1943325854 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34653,33 +34894,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1143 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1143 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1144 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34689,19 +34930,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1144 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -34711,13 +34952,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1145 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34727,13 +34968,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1145 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34746,39 +34987,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1146 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1146 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1142 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -199450733 +194706439 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -563399241 +1943325854 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34788,19 +35029,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1147 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -199450733 +194706439 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1897118801 +1370651081 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34810,33 +35051,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1148 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1148 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1149 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34846,19 +35087,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1149 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -34868,13 +35109,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1150 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34884,13 +35125,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1150 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -34903,39 +35144,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1151 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1151 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1147 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -199450733 +194706439 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1897118801 +1370651081 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34945,19 +35186,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1152 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -795643864 +134310351 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2093980211 +942518407 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -34967,33 +35208,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1153 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1153 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1154 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35003,19 +35244,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1154 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35025,13 +35266,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1155 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35041,13 +35282,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1155 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35060,39 +35301,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1156 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1156 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1152 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -795643864 +134310351 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2093980211 +942518407 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35102,19 +35343,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1157 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -563399241 +1943325854 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -5752379 +1411892748 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35124,33 +35365,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1158 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1158 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1159 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35160,19 +35401,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1159 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35182,13 +35423,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1160 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35198,13 +35439,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1160 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35217,39 +35458,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1161 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1161 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1157 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -563399241 +1943325854 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -5752379 +1411892748 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35259,19 +35500,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1162 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -795643864 +134310351 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1897118801 +1370651081 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35281,33 +35522,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1163 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1163 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1164 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35317,19 +35558,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1164 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35339,13 +35580,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1165 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35355,13 +35596,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1165 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35374,39 +35615,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1166 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1166 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1162 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -795643864 +134310351 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1897118801 +1370651081 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35416,19 +35657,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1167 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -563399241 +1943325854 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -758289222 +1586845078 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35438,33 +35679,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1168 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1168 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1169 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35474,19 +35715,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1169 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35496,13 +35737,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1170 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35512,13 +35753,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1170 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35531,39 +35772,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1171 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1171 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1167 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -563399241 +1943325854 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -758289222 +1586845078 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35573,19 +35814,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1172 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -43469738 +22805895 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -758289222 +1586845078 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35595,33 +35836,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1173 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1173 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1174 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35631,19 +35872,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1174 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35653,13 +35894,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1175 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35669,13 +35910,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1175 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35688,39 +35929,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1176 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1176 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1172 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -43469738 +22805895 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -758289222 +1586845078 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35730,19 +35971,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1177 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -43469738 +22805895 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -795643864 +134310351 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35752,33 +35993,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1178 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1178 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1179 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35788,19 +36029,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1179 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35810,13 +36051,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1180 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35826,13 +36067,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1180 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35845,39 +36086,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1181 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1181 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1177 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -43469738 +22805895 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -795643864 +134310351 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35887,19 +36128,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1182 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -5752379 +1411892748 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -451446586 +1413378318 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -35909,33 +36150,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1183 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1183 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1184 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35945,19 +36186,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1184 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -35967,13 +36208,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1185 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -35983,13 +36224,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1185 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36002,39 +36243,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1186 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1186 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1182 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -5752379 +1411892748 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -451446586 +1413378318 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36044,19 +36285,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1187 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -5752379 +1411892748 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1688049282 +1765250898 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36066,33 +36307,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1188 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1188 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1189 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36102,19 +36343,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1189 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -36124,13 +36365,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1190 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36140,13 +36381,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1190 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36159,39 +36400,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1191 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1191 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1187 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -5752379 +1411892748 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1688049282 +1765250898 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36201,19 +36442,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1192 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -403046051 +1475491159 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -43469738 +22805895 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36223,33 +36464,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1193 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1193 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1194 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36259,19 +36500,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1194 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -36281,13 +36522,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1195 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36297,13 +36538,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1195 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36316,39 +36557,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1196 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1196 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1192 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -403046051 +1475491159 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -43469738 +22805895 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36358,19 +36599,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1197 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -451446586 +1413378318 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -831556519 +1024429571 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36380,33 +36621,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1198 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1198 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1199 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36416,19 +36657,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1199 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -36438,13 +36679,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1200 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36454,13 +36695,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1200 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36473,39 +36714,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1201 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1201 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1197 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -451446586 +1413378318 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -831556519 +1024429571 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36515,19 +36756,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1202 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -403046051 +1475491159 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1688049282 +1765250898 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36537,33 +36778,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1203 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1203 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1204 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36573,19 +36814,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1204 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -36595,13 +36836,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1205 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36611,13 +36852,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1205 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36630,39 +36871,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1206 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1206 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1202 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -403046051 +1475491159 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1688049282 +1765250898 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36672,19 +36913,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1207 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -831556519 +1024429571 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -483808296 +1157058691 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36694,33 +36935,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1208 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1208 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1209 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36730,19 +36971,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1209 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -36752,13 +36993,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1210 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36768,13 +37009,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1210 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36787,39 +37028,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1211 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1211 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1207 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -831556519 +1024429571 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -483808296 +1157058691 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36829,19 +37070,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1212 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -146840157 +1667689440 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -403046051 +1475491159 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36851,33 +37092,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1213 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1213 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1214 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36887,19 +37128,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1214 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1102846595 +1487470647 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -36909,13 +37150,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1215 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36925,13 +37166,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1215 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -36944,39 +37185,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1216 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1216 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1212 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -146840157 +1667689440 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -403046051 +1475491159 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -36986,19 +37227,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1217 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -831556519 +1024429571 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -637822057 +670971910 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37008,33 +37249,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1218 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1218 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1219 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37044,19 +37285,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1219 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -37066,13 +37307,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1220 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37082,13 +37323,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1220 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37101,39 +37342,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1221 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1221 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1217 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -831556519 +1024429571 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -637822057 +670971910 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37143,19 +37384,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1222 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -831556519 +1024429571 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1784429822 +1601292138 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37165,33 +37406,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1223 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1223 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1224 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37201,19 +37442,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1224 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -37223,13 +37464,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1225 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37239,13 +37480,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1225 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37258,39 +37499,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1226 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1226 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1222 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -831556519 +1024429571 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1784429822 +1601292138 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37300,19 +37541,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1227 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -992943330 +40472007 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -146840157 +1667689440 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37322,33 +37563,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1228 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1228 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1229 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37358,19 +37599,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1229 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -37380,13 +37621,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1230 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37396,13 +37637,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1230 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37415,39 +37656,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1231 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1231 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1227 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -992943330 +40472007 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -146840157 +1667689440 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37457,19 +37698,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1232 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -483808296 +1157058691 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -303126473 +1138193439 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37479,33 +37720,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1233 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1233 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1234 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37515,19 +37756,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1234 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -37537,13 +37778,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1235 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37553,13 +37794,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1235 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37572,39 +37813,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1236 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1236 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1232 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -483808296 +1157058691 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -303126473 +1138193439 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37614,19 +37855,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1237 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -992943330 +40472007 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -637822057 +670971910 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37636,33 +37877,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1238 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1238 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1239 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37672,19 +37913,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1239 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -37694,13 +37935,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1240 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37710,13 +37951,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1240 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37729,39 +37970,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1241 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1241 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1237 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -992943330 +40472007 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -637822057 +670971910 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37771,19 +38012,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1242 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -992943330 +40472007 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1784429822 +1601292138 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37793,33 +38034,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1243 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1243 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1244 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37829,19 +38070,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1244 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -37851,13 +38092,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1245 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37867,13 +38108,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1245 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37886,39 +38127,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1246 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1246 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1242 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -992943330 +40472007 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1784429822 +1601292138 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37928,19 +38169,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1247 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -483808296 +1157058691 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -576464345 +1330754528 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -37950,33 +38191,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1248 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1248 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1249 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -37986,19 +38227,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1249 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38008,13 +38249,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1250 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38024,13 +38265,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1250 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38043,39 +38284,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1251 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1251 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1247 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -483808296 +1157058691 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -576464345 +1330754528 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38085,19 +38326,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1252 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -303126473 +1138193439 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -151405253 +146305349 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38107,33 +38348,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1253 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1253 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1254 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38143,19 +38384,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1254 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38165,13 +38406,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1255 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38181,13 +38422,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1255 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38200,39 +38441,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1256 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1256 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1252 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -303126473 +1138193439 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -151405253 +146305349 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38242,19 +38483,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1257 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -815421027 +398110318 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -576464345 +1330754528 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38264,33 +38505,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1258 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1258 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1259 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38300,19 +38541,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1259 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38322,13 +38563,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1260 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38338,13 +38579,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1260 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38357,39 +38598,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1261 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1261 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1257 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -815421027 +398110318 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -576464345 +1330754528 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38399,19 +38640,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1262 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -815421027 +398110318 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -992943330 +40472007 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38421,33 +38662,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1263 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1263 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1264 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38457,19 +38698,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1264 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38479,13 +38720,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1265 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38495,13 +38736,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1265 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38514,39 +38755,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1266 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1266 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1262 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -815421027 +398110318 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -992943330 +40472007 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38556,19 +38797,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1267 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1688049282 +1765250898 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1784429822 +1601292138 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38578,33 +38819,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1268 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1268 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1269 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38614,19 +38855,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1269 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38636,13 +38877,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1270 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38652,13 +38893,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1270 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38671,39 +38912,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1271 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1271 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1267 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1688049282 +1765250898 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1784429822 +1601292138 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38713,19 +38954,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1272 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -637822057 +670971910 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -43469738 +22805895 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38735,33 +38976,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1273 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1273 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1274 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38771,19 +39012,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1274 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38793,13 +39034,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1275 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38809,13 +39050,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1275 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38828,39 +39069,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1276 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1276 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1272 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -637822057 +670971910 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -43469738 +22805895 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38870,19 +39111,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1277 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -637822057 +670971910 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -451446586 +1413378318 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -38892,33 +39133,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1278 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1278 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1279 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38928,19 +39169,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1279 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -38950,13 +39191,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1280 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38966,13 +39207,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1280 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -38985,39 +39226,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1281 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1281 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1277 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -637822057 +670971910 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -451446586 +1413378318 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39027,19 +39268,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1282 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1688049282 +1765250898 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -483808296 +1157058691 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39049,33 +39290,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1283 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1283 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1284 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39085,19 +39326,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1284 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -39107,13 +39348,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1285 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39123,13 +39364,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1285 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39142,39 +39383,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1286 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1286 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1282 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1688049282 +1765250898 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -483808296 +1157058691 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39184,19 +39425,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1287 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1688049282 +1765250898 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -146840157 +1667689440 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39206,33 +39447,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1288 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1288 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1289 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39242,19 +39483,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1289 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -39264,13 +39505,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1290 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39280,13 +39521,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1290 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39299,39 +39540,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1291 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1291 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1287 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1688049282 +1765250898 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -146840157 +1667689440 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39341,19 +39582,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1292 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1302887999 +494586676 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -637822057 +670971910 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39363,33 +39604,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1293 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1293 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1294 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39399,19 +39640,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1294 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -39421,13 +39662,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1295 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39437,13 +39678,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1295 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39456,39 +39697,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1296 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1296 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1292 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1302887999 +494586676 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -637822057 +670971910 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39498,19 +39739,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1297 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1784429822 +1601292138 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1895334381 +1218593486 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39520,33 +39761,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1298 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1298 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1299 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39556,19 +39797,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1299 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -39578,13 +39819,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1300 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39594,13 +39835,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1300 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39613,39 +39854,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1301 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1301 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1297 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1784429822 +1601292138 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1895334381 +1218593486 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39655,19 +39896,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1302 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1302887999 +494586676 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -483808296 +1157058691 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39677,33 +39918,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1303 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1303 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1304 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39713,19 +39954,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1304 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -39735,13 +39976,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1305 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39751,13 +39992,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1305 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39770,39 +40011,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1306 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1306 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1302 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1302887999 +494586676 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -483808296 +1157058691 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39812,19 +40053,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1307 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1302887999 +494586676 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -146840157 +1667689440 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39834,33 +40075,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1308 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1308 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1309 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39870,19 +40111,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1309 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -39892,13 +40133,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1310 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39908,13 +40149,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1310 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -39927,39 +40168,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1311 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1311 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1307 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1302887999 +494586676 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -146840157 +1667689440 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39969,19 +40210,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1312 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1784429822 +1601292138 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1337514798 +79290965 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -39991,33 +40232,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1313 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1313 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1314 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40027,19 +40268,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1314 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40049,13 +40290,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1315 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40065,13 +40306,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1315 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40084,39 +40325,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1316 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1316 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1312 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1784429822 +1601292138 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1337514798 +79290965 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40126,19 +40367,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1317 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1260005516 +508198356 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1302887999 +494586676 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40148,33 +40389,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1318 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1318 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1319 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40184,19 +40425,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1319 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40206,13 +40447,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1320 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40222,13 +40463,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1320 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40241,39 +40482,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1321 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1321 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1317 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1260005516 +508198356 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1302887999 +494586676 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40283,19 +40524,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1322 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1260005516 +508198356 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1337514798 +79290965 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40305,33 +40546,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1323 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1323 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1324 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40341,19 +40582,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1324 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40363,13 +40604,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1325 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40379,13 +40620,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1325 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40398,39 +40639,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1326 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1326 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1322 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1260005516 +508198356 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1337514798 +79290965 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40440,19 +40681,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1327 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1895334381 +1218593486 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2047449123 +1686369710 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40462,33 +40703,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1328 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1328 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1329 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40498,19 +40739,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1329 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1415258436 +1485697819 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40520,13 +40761,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1330 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40536,13 +40777,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1330 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40555,39 +40796,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1331 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1331 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1327 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1895334381 +1218593486 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2047449123 +1686369710 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40597,19 +40838,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1332 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1337514798 +79290965 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -303126473 +1138193439 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40619,33 +40860,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1333 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1333 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1334 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40655,19 +40896,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1334 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40677,13 +40918,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1335 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40693,13 +40934,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1335 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40712,39 +40953,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1336 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1336 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1332 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1337514798 +79290965 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -303126473 +1138193439 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40754,19 +40995,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1337 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1337514798 +79290965 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -992943330 +40472007 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40776,33 +41017,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1338 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1338 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1339 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40812,19 +41053,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1339 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40834,13 +41075,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1340 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40850,13 +41091,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1340 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40869,39 +41110,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1341 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1341 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1337 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1337514798 +79290965 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -992943330 +40472007 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40911,19 +41152,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1342 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -576464345 +1330754528 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1302887999 +494586676 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -40933,33 +41174,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1343 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1343 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1344 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -40969,19 +41210,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1344 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -692341856 +2007331442 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -40991,13 +41232,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1345 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41007,13 +41248,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1345 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41026,39 +41267,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1346 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1346 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1342 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -576464345 +1330754528 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1302887999 +494586676 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41068,19 +41309,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1347 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -576464345 +1330754528 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1895334381 +1218593486 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41090,33 +41331,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1348 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1348 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1349 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41126,19 +41367,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1349 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -692341856 +2007331442 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -41148,13 +41389,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1350 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41164,13 +41405,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1350 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41183,39 +41424,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1351 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1351 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1347 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -576464345 +1330754528 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1895334381 +1218593486 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41225,19 +41466,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1352 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1899876837 +1582785598 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -74479789 +611563982 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41247,33 +41488,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1353 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1353 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1354 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41283,19 +41524,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1354 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -41305,13 +41546,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1355 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41321,13 +41562,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1355 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41340,39 +41581,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1356 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1356 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1352 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1899876837 +1582785598 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -74479789 +611563982 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41382,19 +41623,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1357 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1899876837 +1582785598 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1398992856 +1356728614 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41404,33 +41645,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1358 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1358 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1359 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41440,19 +41681,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1359 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -41462,13 +41703,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1360 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41478,13 +41719,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1360 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41497,39 +41738,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1361 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1361 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1357 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1899876837 +1582785598 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1398992856 +1356728614 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41539,19 +41780,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1362 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -295652216 +322836221 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1185981398 +450003680 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41561,33 +41802,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1363 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1363 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1364 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41597,19 +41838,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1364 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809976092 +1176735295 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -41619,13 +41860,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1365 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41635,13 +41876,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1365 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41654,39 +41895,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1366 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1366 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1362 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -295652216 +322836221 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1185981398 +450003680 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41696,19 +41937,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1367 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -295652216 +322836221 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1993628379 +2134991632 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41718,33 +41959,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1368 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1368 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1369 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41754,19 +41995,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1369 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809976092 +1176735295 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -41776,13 +42017,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1370 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41792,13 +42033,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1370 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41811,39 +42052,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1371 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1371 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1367 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -295652216 +322836221 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1993628379 +2134991632 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41853,19 +42094,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1372 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -758289222 +1586845078 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -74479789 +611563982 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -41875,33 +42116,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1373 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1373 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1374 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41911,19 +42152,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1374 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -41933,13 +42174,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1375 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41949,13 +42190,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1375 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -41968,39 +42209,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1376 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1376 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1372 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -758289222 +1586845078 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -74479789 +611563982 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42010,19 +42251,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1377 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1398992856 +1356728614 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -795643864 +134310351 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42032,33 +42273,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1378 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1378 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1379 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42068,19 +42309,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1379 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -42090,13 +42331,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1380 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42106,13 +42347,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1380 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42125,39 +42366,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1381 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1381 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1377 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1398992856 +1356728614 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -795643864 +134310351 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42167,19 +42408,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1382 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1398992856 +1356728614 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -5752379 +1411892748 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42189,33 +42430,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1383 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1383 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1384 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42225,19 +42466,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1384 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -42247,13 +42488,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1385 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42263,13 +42504,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1385 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42282,39 +42523,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1386 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1386 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1382 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1398992856 +1356728614 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -5752379 +1411892748 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42324,19 +42565,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1387 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -758289222 +1586845078 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -295652216 +322836221 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42346,33 +42587,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1388 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1388 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1389 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42382,19 +42623,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1389 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -42404,13 +42645,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1390 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42420,13 +42661,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1390 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42439,39 +42680,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1391 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1391 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1387 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -758289222 +1586845078 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -295652216 +322836221 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42481,19 +42722,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1392 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -74479789 +611563982 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -711560962 +183284570 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42503,33 +42744,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1393 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1393 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1394 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42539,19 +42780,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1394 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -42561,13 +42802,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1395 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42577,13 +42818,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1395 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42596,39 +42837,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1396 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1396 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1392 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -74479789 +611563982 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -711560962 +183284570 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42638,19 +42879,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1397 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1897118801 +1370651081 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1993628379 +2134991632 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42660,33 +42901,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1398 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1398 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1399 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42696,19 +42937,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1399 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -42718,13 +42959,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1400 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42734,13 +42975,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1400 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42753,39 +42994,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1401 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1401 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1397 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1897118801 +1370651081 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1993628379 +2134991632 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42795,19 +43036,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1402 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1897118801 +1370651081 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1899876837 +1582785598 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42817,33 +43058,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1403 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1403 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1404 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42853,19 +43094,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1404 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -42875,13 +43116,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1405 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42891,13 +43132,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1405 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -42910,39 +43151,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1406 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1406 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1402 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1897118801 +1370651081 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1899876837 +1582785598 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42952,19 +43193,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1407 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1185981398 +450003680 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -563399241 +1943325854 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -42974,33 +43215,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1408 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1408 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1409 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43010,19 +43251,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1409 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -43032,13 +43273,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1410 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43048,13 +43289,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1410 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43067,39 +43308,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1411 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1411 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1407 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1185981398 +450003680 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -563399241 +1943325854 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43109,19 +43350,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1412 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1185981398 +450003680 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2093980211 +942518407 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43131,33 +43372,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1413 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1413 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1414 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43167,19 +43408,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1414 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -43189,13 +43430,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1415 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43205,13 +43446,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1415 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43224,39 +43465,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1416 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1416 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1412 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1185981398 +450003680 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2093980211 +942518407 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43266,19 +43507,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1417 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1993628379 +2134991632 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2068825828 +797925218 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43288,33 +43529,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1418 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1418 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1419 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43324,19 +43565,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1419 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -43346,13 +43587,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1420 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43362,13 +43603,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1420 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43381,39 +43622,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1421 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1421 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1417 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1993628379 +2134991632 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2068825828 +797925218 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43423,19 +43664,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1422 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1993628379 +2134991632 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -847962619 +275310919 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43445,33 +43686,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1423 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1423 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1424 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43481,19 +43722,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1424 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -43503,13 +43744,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1425 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43519,13 +43760,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1425 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43538,39 +43779,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1426 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1426 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1422 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1993628379 +2134991632 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -847962619 +275310919 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43580,19 +43821,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1427 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1872305359 +480971771 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1899876837 +1582785598 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43602,33 +43843,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1428 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1428 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1429 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43638,19 +43879,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1429 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -43660,13 +43901,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1430 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43676,13 +43917,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1430 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43695,39 +43936,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1431 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1431 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1427 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1872305359 +480971771 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1899876837 +1582785598 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43737,19 +43978,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 1432 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1872305359 +480971771 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1185981398 +450003680 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43759,33 +44000,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1433 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1433 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1434 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43795,19 +44036,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1434 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -43817,13 +44058,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1435 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43833,13 +44074,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1435 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43852,39 +44093,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1436 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1436 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 1432 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 from -1872305359 +480971771 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1185981398 +450003680 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -43894,13 +44135,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1437 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43910,13 +44151,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1437 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43929,13 +44170,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1438 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43945,13 +44186,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1438 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43964,13 +44205,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1439 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43980,13 +44221,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1439 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -43999,13 +44240,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1440 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44015,13 +44256,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1440 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44034,13 +44275,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1441 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44050,33 +44291,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1442 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1442 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1443 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44086,19 +44327,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1443 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44108,39 +44349,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1444 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1444 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1441 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44150,13 +44391,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1445 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44166,13 +44407,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1445 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44185,13 +44426,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1446 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44201,13 +44442,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1446 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44220,13 +44461,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1447 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44236,13 +44477,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1447 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44255,13 +44496,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1448 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44271,13 +44512,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1448 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44290,13 +44531,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1449 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44306,33 +44547,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1450 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1450 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1451 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44342,19 +44583,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1451 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44364,39 +44605,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1452 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1452 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1449 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44406,13 +44647,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1453 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44422,33 +44663,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1454 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1454 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1455 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44458,19 +44699,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1455 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44480,39 +44721,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1456 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1456 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1453 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44522,13 +44763,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1457 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44538,33 +44779,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1458 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1458 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1459 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44574,19 +44815,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1459 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44596,39 +44837,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1460 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1460 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1457 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44638,13 +44879,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1461 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44654,33 +44895,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1462 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1462 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1463 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44690,19 +44931,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1463 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44712,39 +44953,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1464 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1464 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1461 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44754,13 +44995,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1465 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44770,33 +45011,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1466 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1466 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1467 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44806,19 +45047,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1467 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44828,39 +45069,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1468 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1468 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1465 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44870,13 +45111,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1469 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44886,33 +45127,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1470 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1470 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1471 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -44922,19 +45163,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1471 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44944,39 +45185,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1472 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1472 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1469 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -44986,13 +45227,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1473 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45002,33 +45243,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1474 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1474 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1475 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45038,19 +45279,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1475 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45060,39 +45301,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1476 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1476 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1473 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45102,13 +45343,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1477 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45118,33 +45359,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1478 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1478 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1479 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45154,19 +45395,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1479 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45176,39 +45417,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1480 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1480 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1477 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45218,13 +45459,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1481 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45234,33 +45475,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1482 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1482 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1483 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45270,19 +45511,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1483 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45292,39 +45533,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1484 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1484 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1481 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45334,13 +45575,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1485 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45350,33 +45591,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1486 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1486 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1487 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45386,19 +45627,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1487 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45408,39 +45649,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1488 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1488 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1485 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45450,13 +45691,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1489 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45466,33 +45707,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1490 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1490 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1491 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45502,19 +45743,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1491 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45524,39 +45765,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1492 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1492 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1489 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45566,13 +45807,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1493 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45582,33 +45823,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1494 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1494 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1495 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45618,19 +45859,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1495 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45640,39 +45881,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1496 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1496 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1493 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45682,13 +45923,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1497 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45698,33 +45939,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1498 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1498 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1499 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45734,19 +45975,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1499 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45756,39 +45997,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1500 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1500 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1497 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45798,13 +46039,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1501 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45814,33 +46055,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1502 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1502 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1503 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45850,19 +46091,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1503 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45872,39 +46113,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1504 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1504 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1501 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45914,13 +46155,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1505 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45930,33 +46171,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1506 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1506 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1507 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -45966,19 +46207,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1507 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -45988,39 +46229,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1508 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1508 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1505 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46030,13 +46271,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1509 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46046,33 +46287,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1510 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1510 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1511 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46082,19 +46323,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1511 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46104,39 +46345,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1512 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1512 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1509 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46146,13 +46387,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1513 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46162,13 +46403,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1513 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46181,13 +46422,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1514 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46197,13 +46438,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1514 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46216,13 +46457,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1515 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46232,13 +46473,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1515 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46251,13 +46492,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1516 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46267,13 +46508,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1516 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46286,13 +46527,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1517 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46302,33 +46543,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1518 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1518 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1519 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46338,19 +46579,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1519 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46360,39 +46601,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1520 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1520 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1517 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46402,13 +46643,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1521 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46418,33 +46659,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1522 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1522 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1523 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46454,19 +46695,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1523 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46476,39 +46717,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1524 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1524 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1521 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46518,13 +46759,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1525 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46534,33 +46775,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1526 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1526 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1527 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46570,19 +46811,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1527 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46592,39 +46833,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1528 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1528 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1525 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46634,13 +46875,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1529 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46650,33 +46891,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1530 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1530 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1531 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46686,19 +46927,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1531 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46708,39 +46949,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1532 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1532 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1529 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46750,13 +46991,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1533 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46766,33 +47007,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1534 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1534 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1535 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46802,19 +47043,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1535 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46824,39 +47065,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1536 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1536 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1533 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46866,13 +47107,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1537 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46882,33 +47123,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1538 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1538 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1539 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46918,19 +47159,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1539 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46940,39 +47181,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1540 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1540 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1537 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -46982,13 +47223,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1541 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -46998,33 +47239,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1542 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1542 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1543 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47034,19 +47275,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1543 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47056,39 +47297,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1544 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1544 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1541 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47098,13 +47339,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1545 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47114,33 +47355,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1546 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1546 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1547 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47150,19 +47391,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1547 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47172,39 +47413,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1548 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1548 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1545 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47214,13 +47455,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1549 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47230,33 +47471,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1550 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1550 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1551 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47266,19 +47507,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1551 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47288,39 +47529,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1552 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1552 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1549 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47330,13 +47571,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1553 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47346,33 +47587,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1554 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1554 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1555 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47382,19 +47623,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1555 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47404,39 +47645,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1556 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1556 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1553 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47446,13 +47687,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1557 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47462,33 +47703,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1558 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1558 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1559 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47498,19 +47739,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1559 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47520,39 +47761,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1560 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1560 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1557 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47562,13 +47803,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1561 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47578,33 +47819,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1562 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1562 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1563 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47614,19 +47855,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1563 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47636,39 +47877,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1564 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1564 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1561 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47678,13 +47919,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1565 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47694,33 +47935,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1566 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1566 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1567 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47730,19 +47971,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1567 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47752,39 +47993,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1568 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1568 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1565 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47794,13 +48035,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1569 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47810,33 +48051,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1570 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1570 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1571 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47846,19 +48087,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1571 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47868,39 +48109,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1572 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1572 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1569 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47910,13 +48151,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1573 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47926,33 +48167,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1574 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1574 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1575 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -47962,19 +48203,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1575 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -47984,39 +48225,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1576 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1576 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1573 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48026,13 +48267,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1577 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48042,13 +48283,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1577 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48061,13 +48302,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1578 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48077,13 +48318,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1578 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48096,13 +48337,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1579 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48112,13 +48353,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1579 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48131,13 +48372,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1580 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48147,13 +48388,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1580 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48166,13 +48407,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1581 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48182,33 +48423,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1582 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1582 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1583 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48218,19 +48459,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1583 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48240,39 +48481,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1584 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1584 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1581 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48282,13 +48523,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1585 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48298,33 +48539,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1586 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1586 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1587 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48334,19 +48575,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1587 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48356,39 +48597,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1588 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1588 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1585 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48398,13 +48639,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1589 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48414,33 +48655,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1590 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1590 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1591 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48450,19 +48691,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1591 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48472,39 +48713,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1592 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1592 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1589 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48514,13 +48755,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1593 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48530,33 +48771,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1594 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1594 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1595 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48566,19 +48807,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1595 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48588,39 +48829,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1596 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1596 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1593 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48630,13 +48871,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1597 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48646,13 +48887,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1597 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48665,13 +48906,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1598 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48681,13 +48922,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1598 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48700,13 +48941,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1599 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48716,13 +48957,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1599 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48735,13 +48976,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1600 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48751,13 +48992,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1600 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48770,13 +49011,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1601 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48786,33 +49027,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1602 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1602 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1603 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48822,19 +49063,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1603 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48844,39 +49085,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1604 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1604 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1601 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48886,13 +49127,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1605 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48902,33 +49143,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1606 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1606 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1607 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -48938,19 +49179,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1607 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -48960,39 +49201,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1608 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1608 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1605 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49002,13 +49243,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1609 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49018,33 +49259,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1610 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1610 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1611 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49054,19 +49295,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1611 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49076,39 +49317,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1612 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1612 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1609 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49118,13 +49359,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1613 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49134,13 +49375,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1613 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49153,13 +49394,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1614 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49169,13 +49410,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1614 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49188,13 +49429,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1615 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49204,13 +49445,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1615 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49223,13 +49464,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1616 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49239,13 +49480,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1616 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49258,13 +49499,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1617 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49274,33 +49515,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1618 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1618 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1619 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49310,19 +49551,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1619 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49332,39 +49573,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1620 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1620 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1617 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49374,13 +49615,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1621 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49390,33 +49631,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1622 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1622 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1623 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49426,19 +49667,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1623 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49448,39 +49689,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1624 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1624 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1621 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49490,13 +49731,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1625 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49506,33 +49747,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1626 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1626 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1627 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49542,19 +49783,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1627 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49564,39 +49805,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1628 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1628 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1625 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49606,13 +49847,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1629 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49622,33 +49863,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1630 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1630 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1631 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49658,19 +49899,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1631 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49680,39 +49921,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1632 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1632 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1629 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49722,13 +49963,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1633 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49738,33 +49979,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1634 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1634 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1635 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49774,19 +50015,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1635 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49796,39 +50037,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1636 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1636 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1633 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -49838,13 +50079,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1637 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49854,13 +50095,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1637 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49873,13 +50114,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1638 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49889,13 +50130,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1638 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49908,13 +50149,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1639 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49924,13 +50165,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1639 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49943,13 +50184,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1640 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49959,13 +50200,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1640 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49978,13 +50219,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1641 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -49994,33 +50235,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1642 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1642 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1643 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50030,19 +50271,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1643 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50052,39 +50293,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1644 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1644 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1641 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1771186985 +2074185499 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1946331169 +1615039080 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50094,13 +50335,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1645 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50110,33 +50351,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1646 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1646 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1647 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50146,19 +50387,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1647 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50168,39 +50409,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1648 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1648 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1645 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50210,13 +50451,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1649 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50226,33 +50467,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1650 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1650 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1651 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50262,19 +50503,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1651 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50284,39 +50525,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1652 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1652 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1649 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50326,13 +50567,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1653 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50342,33 +50583,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1654 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1654 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1655 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50378,19 +50619,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1655 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50400,39 +50641,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1656 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1656 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1653 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50442,13 +50683,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1657 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50458,33 +50699,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1658 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1658 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1659 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50494,19 +50735,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1659 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50516,39 +50757,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1660 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1660 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1657 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50558,13 +50799,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1661 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50574,33 +50815,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1662 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1662 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1663 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50610,19 +50851,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1663 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50632,39 +50873,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1664 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1664 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1661 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50674,13 +50915,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1665 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50690,33 +50931,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1666 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1666 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1667 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50726,19 +50967,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1667 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50748,39 +50989,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1668 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1668 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1665 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50790,13 +51031,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1669 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50806,33 +51047,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1670 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1670 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1671 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50842,19 +51083,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1671 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50864,39 +51105,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1672 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1672 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1669 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50906,13 +51147,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1673 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50922,33 +51163,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1674 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1674 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1675 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -50958,19 +51199,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1675 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -50980,39 +51221,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1676 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1676 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1673 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51022,13 +51263,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1677 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51038,13 +51279,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1677 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51057,13 +51298,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1678 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51073,13 +51314,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1678 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51092,13 +51333,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1679 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51108,13 +51349,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1679 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51127,13 +51368,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1680 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51143,13 +51384,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1680 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51162,13 +51403,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1681 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51178,33 +51419,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1682 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1682 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1683 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51214,19 +51455,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1683 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51236,39 +51477,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1684 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1684 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1681 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51278,13 +51519,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1685 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51294,33 +51535,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1686 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1686 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1687 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51330,19 +51571,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1687 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51352,39 +51593,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1688 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1688 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1685 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51394,13 +51635,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1689 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51410,33 +51651,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1690 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1690 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1691 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51446,19 +51687,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1691 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51468,39 +51709,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1692 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1692 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1689 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51510,13 +51751,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1693 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51526,33 +51767,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1694 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1694 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1695 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51562,19 +51803,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1695 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51584,39 +51825,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1696 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1696 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1693 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51626,13 +51867,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1697 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51642,33 +51883,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1698 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1698 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1699 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51678,19 +51919,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1699 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51700,39 +51941,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1700 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1700 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1697 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51742,13 +51983,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1701 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51758,13 +51999,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1701 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51777,13 +52018,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1702 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51793,13 +52034,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1702 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51812,13 +52053,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1703 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51828,13 +52069,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1703 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51847,13 +52088,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1704 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51863,13 +52104,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1704 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51882,13 +52123,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1705 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51898,33 +52139,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1706 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1706 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1707 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -51934,19 +52175,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1707 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51956,39 +52197,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1708 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1708 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1705 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -51998,13 +52239,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1709 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52014,33 +52255,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1710 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1710 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1711 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52050,19 +52291,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1711 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52072,39 +52313,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1712 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1712 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1709 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52114,13 +52355,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1713 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52130,33 +52371,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1714 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1714 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1715 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52166,19 +52407,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1715 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52188,39 +52429,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1716 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1716 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1713 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52230,13 +52471,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1717 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52246,33 +52487,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1718 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1718 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1719 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52282,19 +52523,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1719 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52304,39 +52545,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1720 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1720 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1717 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52346,13 +52587,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1721 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52362,33 +52603,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1722 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1722 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1723 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52398,19 +52639,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1723 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52420,39 +52661,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1724 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1724 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1721 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52462,13 +52703,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1725 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52478,33 +52719,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1726 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1726 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1727 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52514,19 +52755,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1727 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52536,39 +52777,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1728 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1728 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1725 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52578,13 +52819,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1729 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52594,33 +52835,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1730 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1730 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1731 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52630,19 +52871,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1731 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52652,39 +52893,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1732 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1732 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1729 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52694,13 +52935,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1733 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52710,33 +52951,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1734 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1734 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1735 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52746,19 +52987,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1735 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52768,39 +53009,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1736 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1736 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1733 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52810,13 +53051,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1737 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52826,33 +53067,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1738 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1738 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1739 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52862,19 +53103,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1739 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52884,39 +53125,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1740 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1740 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1737 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -52926,13 +53167,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1741 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52942,33 +53183,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1742 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1742 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1743 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -52978,19 +53219,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1743 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53000,39 +53241,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1744 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1744 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1741 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53042,13 +53283,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1745 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53058,33 +53299,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1746 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1746 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1747 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53094,19 +53335,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1747 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53116,39 +53357,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1748 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1748 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1745 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53158,13 +53399,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1749 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53174,33 +53415,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1750 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1750 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1751 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53210,19 +53451,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1751 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53232,39 +53473,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1752 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1752 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1749 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53274,13 +53515,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1753 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53290,33 +53531,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1754 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1754 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1755 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53326,19 +53567,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1755 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53348,39 +53589,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1756 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1756 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1753 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53390,13 +53631,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1757 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53406,33 +53647,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1758 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1758 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1759 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53442,19 +53683,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1759 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1102846595 +1487470647 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53464,39 +53705,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1760 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1760 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1757 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1102846595 +1487470647 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53506,13 +53747,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1761 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53522,33 +53763,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1762 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1762 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1763 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53558,19 +53799,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1763 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53580,39 +53821,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1764 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1764 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1761 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2068825828 +797925218 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1517046279 +336484883 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53622,13 +53863,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1765 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53638,33 +53879,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1766 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1766 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1767 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53674,19 +53915,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1767 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53696,39 +53937,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1768 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1768 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1765 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53738,13 +53979,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1769 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53754,33 +53995,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1770 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1770 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1771 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53790,19 +54031,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1771 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53812,39 +54053,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1772 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1772 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1769 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -53854,13 +54095,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1773 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53870,13 +54111,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1773 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53889,13 +54130,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1774 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53905,13 +54146,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1774 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53924,13 +54165,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1775 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53940,13 +54181,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1775 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53959,13 +54200,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1776 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53975,13 +54216,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1776 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -53994,13 +54235,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1777 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54010,33 +54251,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1778 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1778 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1779 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54046,19 +54287,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1779 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54068,39 +54309,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1780 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1780 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1777 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54110,13 +54351,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1781 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54126,33 +54367,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1782 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1782 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1783 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54162,19 +54403,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1783 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54184,39 +54425,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1784 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1784 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1781 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54226,13 +54467,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1785 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54242,33 +54483,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1786 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1786 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1787 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54278,19 +54519,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1787 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54300,39 +54541,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1788 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1788 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1785 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54342,13 +54583,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1789 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54358,33 +54599,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1790 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1790 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1791 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54394,19 +54635,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1791 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54416,39 +54657,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1792 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1792 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1789 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54458,13 +54699,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1793 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54474,33 +54715,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1794 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1794 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1795 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54510,19 +54751,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1795 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54532,39 +54773,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1796 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1796 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1793 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54574,13 +54815,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1797 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54590,33 +54831,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1798 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1798 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1799 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54626,19 +54867,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1799 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54648,39 +54889,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1800 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1800 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1797 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54690,13 +54931,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1801 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54706,33 +54947,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1802 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1802 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1803 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54742,19 +54983,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1803 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54764,39 +55005,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1804 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1804 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1801 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54806,13 +55047,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1805 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54822,33 +55063,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1806 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1806 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1807 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54858,19 +55099,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1807 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54880,39 +55121,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1808 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1808 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1805 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54922,13 +55163,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1809 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54938,33 +55179,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1810 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1810 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1811 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -54974,19 +55215,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1811 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -54996,39 +55237,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1812 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1812 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1809 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55038,13 +55279,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1813 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55054,33 +55295,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1814 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1814 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1815 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55090,19 +55331,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1815 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55112,39 +55353,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1816 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1816 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1813 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55154,13 +55395,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1817 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55170,33 +55411,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1818 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1818 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1819 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55206,19 +55447,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1819 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55228,39 +55469,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1820 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1820 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1817 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55270,13 +55511,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1821 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55286,33 +55527,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1822 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1822 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1823 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55322,19 +55563,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1823 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55344,39 +55585,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1824 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1824 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1821 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55386,13 +55627,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1825 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55402,13 +55643,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1825 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55421,13 +55662,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1826 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55437,13 +55678,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1826 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55456,13 +55697,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1827 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55472,13 +55713,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1827 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55491,13 +55732,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1828 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55507,13 +55748,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1828 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55526,13 +55767,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1829 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55542,33 +55783,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1830 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1830 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1831 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55578,19 +55819,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1831 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55600,39 +55841,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1832 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1832 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1829 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55642,13 +55883,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1833 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55658,33 +55899,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1834 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1834 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1835 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55694,19 +55935,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1835 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55716,39 +55957,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1836 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1836 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1833 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55758,13 +55999,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1837 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55774,33 +56015,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1838 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1838 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1839 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55810,19 +56051,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1839 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55832,39 +56073,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1840 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1840 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1837 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55874,13 +56115,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1841 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55890,33 +56131,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1842 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1842 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1843 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -55926,19 +56167,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1843 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55948,39 +56189,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1844 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1844 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1841 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -55990,13 +56231,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1845 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56006,13 +56247,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1845 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56025,13 +56266,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1846 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56041,13 +56282,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1846 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56060,13 +56301,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1847 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56076,13 +56317,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1847 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56095,13 +56336,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1848 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56111,13 +56352,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1848 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56130,13 +56371,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1849 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56146,33 +56387,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1850 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1850 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1851 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56182,19 +56423,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1851 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56204,39 +56445,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1852 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1852 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1849 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56246,13 +56487,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1853 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56262,33 +56503,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1854 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1854 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1855 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56298,19 +56539,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1855 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56320,39 +56561,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1856 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1856 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1853 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56362,13 +56603,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1857 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56378,33 +56619,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1858 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1858 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1859 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56414,19 +56655,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1859 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56436,39 +56677,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1860 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1860 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1857 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56478,13 +56719,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1861 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56494,33 +56735,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1862 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1862 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1863 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56530,19 +56771,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1863 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56552,39 +56793,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1864 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1864 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1861 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56594,13 +56835,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1865 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56610,33 +56851,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1866 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1866 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1867 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56646,19 +56887,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1867 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56668,39 +56909,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1868 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1868 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1865 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56710,13 +56951,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1869 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56726,33 +56967,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1870 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1870 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1871 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56762,19 +57003,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1871 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56784,39 +57025,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1872 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1872 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1869 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56826,13 +57067,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1873 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56842,33 +57083,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1874 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1874 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1875 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56878,19 +57119,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1875 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56900,39 +57141,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1876 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1876 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1873 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -56942,13 +57183,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1877 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56958,13 +57199,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1877 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56977,13 +57218,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1878 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -56993,13 +57234,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1878 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57012,13 +57253,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1879 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57028,13 +57269,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1879 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57047,13 +57288,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1880 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57063,33 +57304,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1881 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1881 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1882 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57099,19 +57340,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1882 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57121,39 +57362,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1883 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1883 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1880 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57163,13 +57404,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1884 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57179,33 +57420,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1885 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1885 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1886 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57215,19 +57456,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1886 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57237,39 +57478,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1887 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1887 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1884 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57279,13 +57520,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1888 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57295,33 +57536,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1889 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1889 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1890 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57331,19 +57572,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1890 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57353,39 +57594,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1891 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1891 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1888 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57395,13 +57636,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1892 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57411,33 +57652,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1893 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1893 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1894 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57447,19 +57688,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1894 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57469,39 +57710,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1895 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1895 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1892 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57511,13 +57752,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1896 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57527,13 +57768,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1896 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57546,13 +57787,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1897 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57562,13 +57803,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1897 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57581,13 +57822,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1898 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57597,13 +57838,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1898 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57616,13 +57857,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1899 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57632,13 +57873,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1899 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57651,13 +57892,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1900 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57667,33 +57908,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1901 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1901 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1902 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57703,19 +57944,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1902 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57725,39 +57966,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1903 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1903 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1900 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57767,13 +58008,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1904 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57783,33 +58024,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1905 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1905 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1906 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57819,19 +58060,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1906 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57841,39 +58082,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1907 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1907 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1904 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57883,13 +58124,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1908 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57899,33 +58140,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1909 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1909 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1910 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -57935,19 +58176,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1910 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57957,39 +58198,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1911 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1911 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1908 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -57999,13 +58240,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1912 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58015,33 +58256,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1913 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1913 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1914 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58051,19 +58292,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1914 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58073,39 +58314,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1915 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1915 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1912 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58115,13 +58356,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1916 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58131,33 +58372,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1917 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1917 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1918 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58167,19 +58408,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1918 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58189,39 +58430,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1919 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1919 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1916 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58231,13 +58472,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1920 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58247,33 +58488,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1921 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1921 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1922 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58283,19 +58524,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1922 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58305,39 +58546,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1923 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1923 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1920 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58347,13 +58588,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1924 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58363,13 +58604,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1924 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58382,13 +58623,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1925 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58398,13 +58639,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1925 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58417,13 +58658,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1926 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58433,13 +58674,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1926 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58452,13 +58693,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1927 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58468,13 +58709,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1927 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58487,13 +58728,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1928 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58503,33 +58744,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1929 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1929 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1930 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58539,19 +58780,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1930 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58561,39 +58802,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1931 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1931 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1928 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58603,13 +58844,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1932 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58619,33 +58860,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1933 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1933 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1934 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58655,19 +58896,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1934 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58677,39 +58918,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1935 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1935 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1932 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58719,13 +58960,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1936 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58735,33 +58976,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1937 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1937 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1938 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58771,19 +59012,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1938 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58793,39 +59034,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1939 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1939 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1936 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58835,13 +59076,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1940 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58851,33 +59092,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1941 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1941 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1942 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58887,19 +59128,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1942 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58909,39 +59150,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1943 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1943 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1940 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -58951,13 +59192,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1944 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -58967,33 +59208,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1945 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1945 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1946 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59003,19 +59244,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1946 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59025,39 +59266,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1947 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1947 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1944 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59067,13 +59308,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1948 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59083,33 +59324,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1949 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1949 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1950 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59119,19 +59360,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1950 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59141,39 +59382,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1951 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1951 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1948 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59183,13 +59424,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1952 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59199,13 +59440,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1952 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59218,13 +59459,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1953 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59234,13 +59475,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1953 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59253,13 +59494,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1954 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59269,13 +59510,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1954 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59288,13 +59529,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1955 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59304,13 +59545,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1955 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59323,13 +59564,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1956 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59339,33 +59580,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1957 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1957 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1958 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59375,19 +59616,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1958 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59397,39 +59638,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1959 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1959 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1956 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59439,13 +59680,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1960 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59455,33 +59696,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1961 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1961 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1962 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59491,19 +59732,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1962 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59513,39 +59754,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1963 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1963 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1960 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59555,13 +59796,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1964 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59571,33 +59812,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1965 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1965 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1966 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59607,19 +59848,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1966 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59629,39 +59870,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1967 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1967 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1964 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59671,13 +59912,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1968 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59687,13 +59928,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1968 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59706,13 +59947,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1969 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59722,13 +59963,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1969 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59741,13 +59982,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1970 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59757,13 +59998,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1970 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59776,13 +60017,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1971 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59792,13 +60033,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1971 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59811,13 +60052,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1972 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59827,33 +60068,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1973 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1973 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1974 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59863,19 +60104,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1974 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59885,39 +60126,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1975 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1975 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1972 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2016141838 +1607305514 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -920349793 +1909546776 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -59927,13 +60168,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1976 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59943,33 +60184,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1977 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1977 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1978 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -59979,19 +60220,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1978 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60001,39 +60242,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1979 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1979 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1976 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1006256041 +2109874862 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -108406407 +230528013 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60043,13 +60284,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1980 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60059,13 +60300,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1980 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60078,13 +60319,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1981 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60094,13 +60335,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1981 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60113,13 +60354,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1982 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60129,13 +60370,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1982 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60148,13 +60389,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 1983 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60164,13 +60405,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 1983 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60183,13 +60424,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1984 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60199,33 +60440,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1985 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1985 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1986 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60235,19 +60476,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1986 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60257,39 +60498,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1987 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1987 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1984 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60299,13 +60540,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1988 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60315,33 +60556,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1989 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1989 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1990 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60351,19 +60592,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1990 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60373,39 +60614,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1991 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1991 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1988 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60415,13 +60656,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1992 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60431,33 +60672,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1993 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1993 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1994 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60467,19 +60708,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1994 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60489,39 +60730,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1995 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1995 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1992 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60531,13 +60772,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 1996 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60547,33 +60788,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1997 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1997 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 1998 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60583,19 +60824,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 1998 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60605,39 +60846,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 1999 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 1999 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 1996 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60647,13 +60888,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2000 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60663,33 +60904,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2001 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2001 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2002 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60699,19 +60940,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2002 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60721,39 +60962,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2003 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2003 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2000 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60763,13 +61004,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2004 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60779,33 +61020,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2005 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2005 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2006 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60815,19 +61056,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2006 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60837,39 +61078,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2007 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2007 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2004 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -60879,13 +61120,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2008 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60895,13 +61136,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2008 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60914,13 +61155,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2009 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60930,13 +61171,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2009 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60949,13 +61190,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2010 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60965,13 +61206,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2010 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -60984,13 +61225,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2011 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61000,13 +61241,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2011 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61019,13 +61260,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2012 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61035,33 +61276,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2013 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2013 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2014 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61071,19 +61312,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2014 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61093,39 +61334,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2015 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2015 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2012 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61135,13 +61376,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2016 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61151,33 +61392,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2017 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2017 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2018 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61187,19 +61428,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2018 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61209,39 +61450,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2019 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2019 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2016 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61251,13 +61492,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2020 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61267,33 +61508,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2021 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2021 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2022 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61303,19 +61544,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2022 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61325,39 +61566,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2023 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2023 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2020 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61367,13 +61608,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2024 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61383,13 +61624,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2024 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61402,13 +61643,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2025 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61418,13 +61659,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2025 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61437,13 +61678,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2026 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61453,13 +61694,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2026 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61472,13 +61713,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2027 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61488,33 +61729,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2028 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2028 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2029 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61524,19 +61765,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2029 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61546,39 +61787,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2030 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2030 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2027 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61588,13 +61829,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2031 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61604,33 +61845,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2032 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2032 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2033 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61640,19 +61881,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2033 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61662,39 +61903,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2034 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2034 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2031 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -151405253 +146305349 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -191643385 +1822383117 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61704,13 +61945,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2035 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61720,33 +61961,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2036 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2036 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2037 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61756,19 +61997,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2037 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61778,39 +62019,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2038 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2038 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2035 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61820,13 +62061,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2039 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61836,33 +62077,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2040 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2040 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2041 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61872,19 +62113,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2041 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61894,39 +62135,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2042 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2042 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2039 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -61936,13 +62177,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2043 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61952,33 +62193,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2044 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2044 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2045 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -61988,19 +62229,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2045 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62010,39 +62251,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2046 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2046 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2043 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62052,13 +62293,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2047 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62068,33 +62309,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2048 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2048 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2049 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62104,19 +62345,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2049 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62126,39 +62367,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2050 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2050 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2047 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62168,13 +62409,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2051 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62184,33 +62425,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2052 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2052 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2053 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62220,19 +62461,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2053 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62242,39 +62483,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2054 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2054 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2051 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62284,13 +62525,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2055 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62300,33 +62541,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2056 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2056 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2057 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62336,19 +62577,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2057 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62358,39 +62599,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2058 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2058 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2055 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62400,13 +62641,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2059 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62416,33 +62657,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2060 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2060 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2061 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62452,19 +62693,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2061 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62474,39 +62715,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2062 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2062 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2059 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62516,13 +62757,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2063 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62532,33 +62773,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2064 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2064 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2065 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62568,19 +62809,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2065 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62590,39 +62831,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2066 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2066 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2063 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62632,13 +62873,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2067 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62648,33 +62889,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2068 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2068 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2069 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62684,19 +62925,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2069 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62706,39 +62947,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2070 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2070 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2067 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62748,13 +62989,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2071 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62764,13 +63005,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2071 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62783,13 +63024,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2072 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62799,13 +63040,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2072 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62818,13 +63059,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2073 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62834,13 +63075,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2073 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62853,13 +63094,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2074 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62869,13 +63110,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2074 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62888,13 +63129,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2075 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62904,33 +63145,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2076 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2076 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2077 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -62940,19 +63181,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2077 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -62962,39 +63203,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2078 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2078 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2075 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63004,13 +63245,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2079 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63020,33 +63261,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2080 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2080 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2081 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63056,19 +63297,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2081 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63078,39 +63319,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2082 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2082 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2079 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63120,13 +63361,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2083 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63136,13 +63377,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2083 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63155,13 +63396,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2084 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63171,13 +63412,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2084 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63190,13 +63431,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2085 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63206,13 +63447,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2085 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63225,13 +63466,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2086 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63241,13 +63482,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2086 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63260,13 +63501,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2087 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63276,33 +63517,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2088 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2088 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2089 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63312,19 +63553,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2089 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63334,39 +63575,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2090 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2090 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2087 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63376,13 +63617,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2091 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63392,33 +63633,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2092 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2092 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2093 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63428,19 +63669,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2093 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63450,39 +63691,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2094 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2094 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2091 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63492,13 +63733,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2095 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63508,33 +63749,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2096 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2096 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2097 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63544,19 +63785,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2097 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63566,39 +63807,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2098 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2098 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2095 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63608,13 +63849,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2099 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63624,13 +63865,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2099 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63643,13 +63884,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2100 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63659,13 +63900,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2100 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2093980211 +942518407 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63678,13 +63919,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2101 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63694,13 +63935,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2101 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63713,13 +63954,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2102 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63729,13 +63970,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2102 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63748,13 +63989,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2103 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63764,33 +64005,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2104 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2104 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2105 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63800,19 +64041,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2105 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63822,39 +64063,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2106 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2106 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2103 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -199450733 +194706439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2094160003 +1991313236 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -63864,13 +64105,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2107 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63880,13 +64121,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2107 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63899,13 +64140,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2108 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63915,13 +64156,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2108 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63934,13 +64175,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2109 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63950,13 +64191,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2109 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63969,13 +64210,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2110 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -63985,13 +64226,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2110 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64004,13 +64245,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2111 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64020,33 +64261,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2112 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2112 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2113 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64056,19 +64297,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2113 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64078,39 +64319,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2114 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2114 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2111 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64120,13 +64361,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2115 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64136,33 +64377,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2116 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2116 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2117 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64172,19 +64413,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2117 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64194,39 +64435,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2118 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2118 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2115 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64236,13 +64477,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2119 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64252,33 +64493,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2120 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2120 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2121 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64288,19 +64529,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2121 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64310,39 +64551,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2122 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2122 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2119 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64352,13 +64593,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2123 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64368,33 +64609,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2124 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2124 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2125 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64404,19 +64645,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2125 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64426,39 +64667,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2126 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2126 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2123 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64468,13 +64709,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2127 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64484,33 +64725,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2128 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2128 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2129 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64520,19 +64761,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2129 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64542,39 +64783,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2130 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2130 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2127 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64584,13 +64825,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2131 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64600,13 +64841,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2131 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64619,13 +64860,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2132 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64635,13 +64876,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2132 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64654,13 +64895,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2133 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64670,13 +64911,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2133 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64689,13 +64930,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2134 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64705,13 +64946,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2134 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64724,13 +64965,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2135 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64740,33 +64981,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2136 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2136 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2137 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64776,19 +65017,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2137 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64798,39 +65039,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2138 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2138 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2135 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -64840,13 +65081,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2139 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64856,13 +65097,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2139 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64875,13 +65116,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2140 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64891,13 +65132,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2140 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64910,13 +65151,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2141 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64926,13 +65167,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2141 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64945,13 +65186,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2142 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64961,13 +65202,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2142 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64980,13 +65221,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2143 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -64996,33 +65237,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2144 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2144 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2145 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65032,19 +65273,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2145 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65054,39 +65295,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2146 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2146 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2143 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65096,13 +65337,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2147 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65112,33 +65353,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2148 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2148 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2149 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65148,19 +65389,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2149 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65170,39 +65411,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2150 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2150 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2147 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65212,13 +65453,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2151 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65228,33 +65469,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2152 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2152 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2153 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65264,19 +65505,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2153 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65286,39 +65527,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2154 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2154 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2151 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65328,13 +65569,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2155 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65344,33 +65585,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2156 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2156 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2157 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65380,19 +65621,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2157 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65402,39 +65643,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2158 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2158 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2155 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65444,13 +65685,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2159 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65460,33 +65701,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2160 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2160 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2161 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65496,19 +65737,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2161 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65518,39 +65759,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2162 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2162 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2159 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65560,13 +65801,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2163 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65576,33 +65817,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2164 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2164 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2165 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65612,19 +65853,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2165 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65634,39 +65875,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2166 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2166 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2163 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1384613607 +1392906938 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65676,13 +65917,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2167 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65692,13 +65933,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2167 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -5752379 +1411892748 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65711,13 +65952,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2168 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65727,13 +65968,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2168 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65746,13 +65987,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2169 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65762,13 +66003,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2169 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65781,13 +66022,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2170 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65797,13 +66038,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2170 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65816,13 +66057,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2171 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65832,33 +66073,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2172 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2172 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2173 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65868,19 +66109,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2173 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65890,39 +66131,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2174 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2174 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2171 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -65932,13 +66173,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2175 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65948,33 +66189,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2176 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2176 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2177 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -65984,19 +66225,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2177 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66006,39 +66247,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2178 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2178 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2175 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66048,13 +66289,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2179 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66064,13 +66305,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2179 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66083,13 +66324,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2180 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66099,13 +66340,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2180 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66118,13 +66359,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2181 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66134,13 +66375,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2181 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66153,13 +66394,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2182 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66169,13 +66410,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2182 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66188,13 +66429,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2183 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66204,33 +66445,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2184 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2184 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2185 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66240,19 +66481,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2185 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66262,39 +66503,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2186 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2186 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2183 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66304,13 +66545,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2187 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66320,33 +66561,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2188 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2188 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2189 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66356,19 +66597,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2189 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66378,39 +66619,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2190 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2190 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2187 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66420,13 +66661,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2191 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66436,33 +66677,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2192 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2192 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2193 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66472,19 +66713,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2193 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66494,39 +66735,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2194 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2194 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2191 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66536,13 +66777,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2195 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66552,33 +66793,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2196 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2196 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2197 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66588,19 +66829,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2197 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66610,39 +66851,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2198 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2198 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2195 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66652,13 +66893,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2199 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66668,33 +66909,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2200 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2200 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2201 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66704,19 +66945,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2201 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66726,39 +66967,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2202 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2202 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2199 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66768,13 +67009,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2203 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66784,33 +67025,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2204 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2204 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2205 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66820,19 +67061,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2205 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66842,39 +67083,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2206 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2206 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2203 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66884,13 +67125,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2207 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66900,33 +67141,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2208 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2208 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2209 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -66936,19 +67177,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2209 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -692341856 +2007331442 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -66958,39 +67199,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2210 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2210 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2207 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -692341856 +2007331442 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67000,13 +67241,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2211 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67016,13 +67257,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2211 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67035,13 +67276,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2212 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67051,13 +67292,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2212 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67070,13 +67311,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2213 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67086,13 +67327,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2213 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67105,13 +67346,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2214 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67121,13 +67362,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2214 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67140,13 +67381,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2215 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67156,33 +67397,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2216 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2216 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2217 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67192,19 +67433,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2217 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67214,39 +67455,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2218 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2218 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2215 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67256,13 +67497,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2219 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67272,33 +67513,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2220 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2220 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2221 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67308,19 +67549,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2221 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67330,39 +67571,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2222 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2222 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2219 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67372,13 +67613,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2223 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67388,33 +67629,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2224 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2224 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2225 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67424,19 +67665,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2225 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67446,39 +67687,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2226 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2226 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2223 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67488,13 +67729,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2227 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67504,33 +67745,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2228 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2228 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2229 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67540,19 +67781,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2229 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67562,39 +67803,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2230 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2230 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2227 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -639330026 +255944888 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67604,13 +67845,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2231 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67620,33 +67861,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2232 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2232 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2233 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67656,19 +67897,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2233 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67678,39 +67919,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2234 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2234 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2231 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67720,13 +67961,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2235 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67736,33 +67977,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2236 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2236 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2237 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67772,19 +68013,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2237 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67794,39 +68035,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2238 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2238 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2235 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67836,13 +68077,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2239 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67852,33 +68093,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2240 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2240 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2241 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67888,19 +68129,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2241 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67910,39 +68151,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2242 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2242 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2239 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -67952,13 +68193,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2243 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -67968,33 +68209,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2244 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2244 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2245 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68004,19 +68245,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2245 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68026,39 +68267,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2246 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2246 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2243 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68068,13 +68309,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2247 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68084,33 +68325,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2248 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2248 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2249 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68120,19 +68361,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2249 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68142,39 +68383,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2250 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2250 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2247 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68184,13 +68425,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2251 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68200,33 +68441,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2252 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2252 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2253 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68236,19 +68477,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2253 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68258,39 +68499,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2254 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2254 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2251 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -711560962 +183284570 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2141745257 +392781299 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68300,13 +68541,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2255 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68316,33 +68557,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2256 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2256 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2257 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68352,19 +68593,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2257 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68374,39 +68615,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2258 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2258 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2255 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68416,13 +68657,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2259 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68432,33 +68673,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2260 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2260 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2261 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68468,19 +68709,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2261 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68490,39 +68731,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2262 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2262 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2259 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68532,13 +68773,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2263 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68548,33 +68789,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2264 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2264 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2265 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68584,19 +68825,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2265 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68606,39 +68847,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2266 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2266 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2263 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68648,13 +68889,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2267 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68664,33 +68905,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2268 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2268 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2269 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68700,19 +68941,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2269 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68722,39 +68963,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2270 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2270 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2267 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68764,13 +69005,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2271 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68780,33 +69021,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2272 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2272 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2273 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68816,19 +69057,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2273 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68838,39 +69079,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2274 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2274 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2271 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68880,13 +69121,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2275 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68896,33 +69137,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2276 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2276 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2277 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -68932,19 +69173,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2277 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68954,39 +69195,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2278 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2278 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2275 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -68996,13 +69237,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2279 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69012,33 +69253,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2280 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2280 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2281 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69048,19 +69289,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2281 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69070,39 +69311,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2282 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2282 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2279 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69112,13 +69353,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2283 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69128,33 +69369,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2284 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2284 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2285 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69164,19 +69405,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2285 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69186,39 +69427,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2286 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2286 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2283 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69228,13 +69469,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2287 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69244,33 +69485,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2288 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2288 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2289 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69280,19 +69521,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2289 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1102846595 +1487470647 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69302,39 +69543,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2290 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2290 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2287 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1102846595 +1487470647 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69344,13 +69585,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2291 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69360,13 +69601,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2291 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -451446586 +1413378318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69379,13 +69620,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2292 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69395,13 +69636,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2292 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69414,13 +69655,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2293 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69430,13 +69671,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2293 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69449,13 +69690,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2294 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69465,33 +69706,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2295 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2295 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2296 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69501,19 +69742,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2296 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69523,39 +69764,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2297 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2297 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2294 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -403046051 +1475491159 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1068093957 +708890004 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69565,13 +69806,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2298 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69581,33 +69822,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2299 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2299 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2300 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69617,19 +69858,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2300 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69639,39 +69880,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2301 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2301 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2298 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69681,13 +69922,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2302 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69697,33 +69938,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2303 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2303 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2304 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69733,19 +69974,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2304 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69755,39 +69996,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2305 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2305 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2302 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -69797,13 +70038,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2306 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69813,13 +70054,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2306 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69832,13 +70073,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2307 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69848,13 +70089,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2307 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -146840157 +1667689440 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69867,13 +70108,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2308 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69883,13 +70124,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2308 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69902,13 +70143,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2309 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69918,13 +70159,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2309 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69937,13 +70178,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2310 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69953,33 +70194,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2311 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2311 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2312 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -69989,19 +70230,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2312 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70011,39 +70252,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2313 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2313 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2310 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -831556519 +1024429571 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1359061041 +1004095028 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70053,13 +70294,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2314 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70069,13 +70310,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2314 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70088,13 +70329,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2315 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70104,13 +70345,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2315 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70123,13 +70364,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2316 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70139,13 +70380,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2316 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70158,13 +70399,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2317 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70174,13 +70415,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2317 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70193,13 +70434,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2318 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70209,33 +70450,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2319 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2319 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2320 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70245,19 +70486,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2320 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70267,39 +70508,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2321 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2321 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2318 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70309,13 +70550,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2322 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70325,33 +70566,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2323 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2323 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2324 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70361,19 +70602,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2324 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70383,39 +70624,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2325 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2325 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2322 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70425,13 +70666,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2326 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70441,33 +70682,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2327 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2327 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2328 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70477,19 +70718,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2328 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70499,39 +70740,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2329 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2329 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2326 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70541,13 +70782,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2330 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70557,33 +70798,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2331 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2331 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2332 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70593,19 +70834,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2332 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70615,39 +70856,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2333 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2333 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2330 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70657,13 +70898,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2334 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70673,13 +70914,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2334 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70692,13 +70933,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2335 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70708,13 +70949,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2335 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70727,13 +70968,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2336 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70743,13 +70984,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2336 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70762,13 +71003,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2337 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70778,13 +71019,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2337 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70797,13 +71038,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2338 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70813,33 +71054,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2339 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2339 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2340 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70849,19 +71090,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2340 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70871,39 +71112,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2341 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2341 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2338 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70913,13 +71154,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2342 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70929,33 +71170,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2343 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2343 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2344 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -70965,19 +71206,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2344 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -70987,39 +71228,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2345 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2345 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2342 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1784429822 +1601292138 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -996141683 +1089504328 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71029,13 +71270,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2346 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71045,33 +71286,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2347 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2347 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2348 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71081,19 +71322,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2348 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71103,39 +71344,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2349 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2349 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2346 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71145,13 +71386,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2350 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71161,33 +71402,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2351 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2351 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2352 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71197,19 +71438,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2352 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -692341856 +2007331442 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71219,39 +71460,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2353 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2353 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2350 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -692341856 +2007331442 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71261,13 +71502,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2354 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71277,33 +71518,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2355 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2355 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2356 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71313,19 +71554,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2356 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71335,39 +71576,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2357 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2357 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2354 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71377,13 +71618,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2358 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71393,13 +71634,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2358 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71412,13 +71653,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2359 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71428,13 +71669,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2359 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71447,13 +71688,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2360 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71463,13 +71704,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2360 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -576464345 +1330754528 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71482,13 +71723,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2361 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71498,13 +71739,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2361 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71517,13 +71758,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2362 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71533,33 +71774,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2363 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2363 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2364 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71569,19 +71810,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2364 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71591,39 +71832,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2365 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2365 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2362 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71633,13 +71874,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2366 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71649,33 +71890,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2367 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2367 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2368 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71685,19 +71926,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2368 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71707,39 +71948,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2369 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2369 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2366 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71749,13 +71990,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2370 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71765,33 +72006,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2371 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2371 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2372 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71801,19 +72042,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2372 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71823,39 +72064,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2373 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2373 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2370 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -71865,13 +72106,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2374 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71881,13 +72122,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2374 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71900,13 +72141,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2375 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71916,13 +72157,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2375 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71935,13 +72176,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2376 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71951,13 +72192,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2376 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71970,13 +72211,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2377 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -71986,13 +72227,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2377 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72005,13 +72246,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2378 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72021,33 +72262,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2379 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2379 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2380 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72057,19 +72298,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2380 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72079,39 +72320,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2381 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2381 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2378 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72121,13 +72362,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2382 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72137,33 +72378,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2383 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2383 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2384 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72173,19 +72414,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2384 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72195,39 +72436,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2385 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2385 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2382 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72237,13 +72478,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2386 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72253,33 +72494,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2387 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2387 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2388 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72289,19 +72530,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2388 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72311,39 +72552,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2389 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2389 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2386 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72353,13 +72594,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2390 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72369,33 +72610,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2391 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2391 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2392 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72405,19 +72646,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2392 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72427,39 +72668,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2393 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2393 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2390 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72469,13 +72710,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2394 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72485,33 +72726,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2395 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2395 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2396 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72521,19 +72762,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2396 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72543,39 +72784,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2397 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2397 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2394 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72585,13 +72826,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2398 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72601,33 +72842,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2399 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2399 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2400 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72637,19 +72878,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2400 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72659,39 +72900,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2401 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2401 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2398 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72701,13 +72942,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2402 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72717,33 +72958,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2403 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2403 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2404 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72753,19 +72994,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2404 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72775,39 +73016,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2405 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2405 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2402 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72817,13 +73058,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2406 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72833,33 +73074,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2407 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2407 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2408 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72869,19 +73110,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2408 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72891,39 +73132,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2409 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2409 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2406 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -72933,13 +73174,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2410 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72949,33 +73190,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2411 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2411 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2412 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -72985,19 +73226,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2412 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73007,39 +73248,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2413 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2413 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2410 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73049,13 +73290,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2414 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73065,13 +73306,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2414 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73084,13 +73325,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2415 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73100,13 +73341,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2415 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73119,13 +73360,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2416 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73135,13 +73376,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2416 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73154,13 +73395,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2417 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73170,13 +73411,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2417 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73189,13 +73430,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2418 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73205,33 +73446,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2419 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2419 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2420 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73241,19 +73482,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2420 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73263,39 +73504,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2421 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2421 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2418 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73305,13 +73546,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2422 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73321,33 +73562,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2423 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2423 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2424 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73357,19 +73598,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2424 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73379,39 +73620,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2425 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2425 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2422 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73421,13 +73662,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2426 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73437,33 +73678,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2427 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2427 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2428 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73473,19 +73714,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2428 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73495,39 +73736,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2429 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2429 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2426 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73537,13 +73778,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2430 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73553,33 +73794,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2431 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2431 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2432 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73589,19 +73830,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2432 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73611,39 +73852,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2433 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2433 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2430 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73653,13 +73894,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2434 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73669,33 +73910,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2435 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2435 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2436 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73705,19 +73946,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2436 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73727,39 +73968,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2437 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2437 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2434 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73769,13 +74010,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2438 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73785,33 +74026,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2439 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2439 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2440 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73821,19 +74062,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2440 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73843,39 +74084,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2441 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2441 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2438 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -73885,13 +74126,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2442 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73901,13 +74142,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2442 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73920,13 +74161,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2443 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73936,13 +74177,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2443 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73955,13 +74196,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2444 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73971,13 +74212,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2444 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -73990,13 +74231,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2445 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74006,13 +74247,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2445 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74025,13 +74266,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2446 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74041,33 +74282,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2447 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2447 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2448 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74077,19 +74318,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2448 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74099,39 +74340,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2449 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2449 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2446 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -815421027 +398110318 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -618640318 +294184992 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74141,13 +74382,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2450 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74157,33 +74398,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2451 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2451 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2452 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74193,19 +74434,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2452 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74215,39 +74456,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2453 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2453 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2450 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74257,13 +74498,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2454 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74273,33 +74514,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2455 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2455 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2456 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74309,19 +74550,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2456 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74331,39 +74572,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2457 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2457 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2454 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74373,13 +74614,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2458 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74389,33 +74630,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2459 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2459 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2460 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74425,19 +74666,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2460 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74447,39 +74688,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2461 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2461 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2458 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74489,13 +74730,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2462 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74505,33 +74746,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2463 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2463 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2464 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74541,19 +74782,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2464 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74563,39 +74804,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2465 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2465 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2462 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74605,13 +74846,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2466 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74621,33 +74862,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2467 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2467 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2468 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74657,19 +74898,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2468 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74679,39 +74920,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2469 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2469 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2466 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74721,13 +74962,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2470 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74737,33 +74978,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2471 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2471 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2472 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74773,19 +75014,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2472 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74795,39 +75036,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2473 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2473 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2470 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -74837,13 +75078,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2474 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74853,13 +75094,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2474 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74872,13 +75113,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2475 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74888,13 +75129,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2475 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74907,13 +75148,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2476 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74923,13 +75164,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2476 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74942,13 +75183,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2477 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74958,13 +75199,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2477 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74977,13 +75218,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2478 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -74993,33 +75234,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2479 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2479 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2480 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75029,19 +75270,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2480 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75051,39 +75292,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2481 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2481 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2478 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75093,13 +75334,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2482 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75109,33 +75350,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2483 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2483 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2484 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75145,19 +75386,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2484 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75167,39 +75408,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2485 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2485 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2482 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75209,13 +75450,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2486 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75225,33 +75466,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2487 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2487 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2488 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75261,19 +75502,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2488 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75283,39 +75524,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2489 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2489 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2486 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75325,13 +75566,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2490 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75341,33 +75582,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2491 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2491 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2492 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75377,19 +75618,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2492 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75399,39 +75640,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2493 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2493 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2490 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1519489499 +793315160 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75441,13 +75682,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2494 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75457,33 +75698,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2495 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2495 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2496 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75493,19 +75734,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2496 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75515,39 +75756,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2497 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2497 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2494 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75557,13 +75798,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2498 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75573,33 +75814,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2499 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2499 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2500 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75609,19 +75850,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2500 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75631,39 +75872,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2501 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2501 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2498 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75673,13 +75914,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2502 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75689,33 +75930,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2503 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2503 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2504 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75725,19 +75966,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2504 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75747,39 +75988,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2505 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2505 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2502 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75789,13 +76030,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2506 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75805,33 +76046,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2507 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2507 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2508 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75841,19 +76082,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2508 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75863,39 +76104,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2509 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2509 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2506 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -75905,13 +76146,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2510 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75921,13 +76162,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2510 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1688049282 +1765250898 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75940,13 +76181,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2511 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75956,13 +76197,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2511 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75975,13 +76216,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2512 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -75991,13 +76232,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2512 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76010,13 +76251,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2513 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76026,13 +76267,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2513 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76045,13 +76286,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2514 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76061,33 +76302,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2515 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2515 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2516 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76097,19 +76338,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2516 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76119,39 +76360,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2517 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2517 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2514 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76161,13 +76402,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2518 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76177,33 +76418,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2519 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2519 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2520 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76213,19 +76454,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2520 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76235,39 +76476,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2521 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2521 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2518 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76277,13 +76518,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2522 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76293,33 +76534,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2523 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2523 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2524 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76329,19 +76570,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2524 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76351,39 +76592,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2525 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2525 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2522 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76393,13 +76634,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2526 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76409,13 +76650,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2526 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76428,13 +76669,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2527 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76444,13 +76685,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2527 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76463,13 +76704,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2528 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76479,13 +76720,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2528 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76498,13 +76739,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2529 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76514,13 +76755,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2529 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76533,13 +76774,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2530 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76549,33 +76790,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2531 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2531 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2532 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76585,19 +76826,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2532 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76607,39 +76848,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2533 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2533 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2530 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76649,13 +76890,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2534 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76665,33 +76906,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2535 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2535 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2536 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76701,19 +76942,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2536 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76723,39 +76964,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2537 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2537 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2534 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76765,13 +77006,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2538 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76781,33 +77022,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2539 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2539 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2540 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76817,19 +77058,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2540 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76839,39 +77080,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2541 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2541 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2538 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76881,13 +77122,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2542 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76897,33 +77138,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2543 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2543 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2544 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -76933,19 +77174,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2544 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76955,39 +77196,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2545 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2545 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2542 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -76997,13 +77238,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2546 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77013,33 +77254,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2547 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2547 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2548 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77049,19 +77290,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2548 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77071,39 +77312,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2549 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2549 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2546 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77113,13 +77354,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2550 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77129,33 +77370,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2551 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2551 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2552 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77165,19 +77406,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2552 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77187,39 +77428,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2553 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2553 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2550 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77229,13 +77470,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2554 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77245,33 +77486,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2555 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2555 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2556 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77281,19 +77522,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2556 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77303,39 +77544,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2557 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2557 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2554 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77345,13 +77586,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2558 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77361,33 +77602,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2559 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2559 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2560 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77397,19 +77638,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2560 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1415258436 +1485697819 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77419,39 +77660,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2561 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2561 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2558 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1415258436 +1485697819 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77461,13 +77702,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2562 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77477,33 +77718,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2563 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2563 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2564 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77513,19 +77754,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2564 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77535,39 +77776,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2565 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2565 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2562 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77577,13 +77818,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2566 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77593,33 +77834,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2567 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2567 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2568 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77629,19 +77870,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2568 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77651,39 +77892,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2569 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2569 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2566 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -795643864 +134310351 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1437679738 +736778932 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77693,13 +77934,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2570 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77709,33 +77950,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2571 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2571 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2572 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77745,19 +77986,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2572 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77767,39 +78008,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2573 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2573 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2570 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77809,13 +78050,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2574 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77825,33 +78066,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2575 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2575 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2576 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77861,19 +78102,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2576 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77883,39 +78124,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2577 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2577 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2574 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -77925,13 +78166,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2578 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77941,13 +78182,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2578 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77960,13 +78201,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2579 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77976,13 +78217,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2579 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -77995,13 +78236,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2580 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78011,13 +78252,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2580 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78030,13 +78271,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2581 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78046,13 +78287,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2581 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78065,13 +78306,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2582 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78081,33 +78322,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2583 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2583 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2584 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78117,19 +78358,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2584 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78139,39 +78380,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2585 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2585 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2582 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1260005516 +508198356 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -370754169 +660879561 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78181,13 +78422,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2586 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78197,33 +78438,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2587 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2587 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2588 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78233,19 +78474,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2588 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78255,39 +78496,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2589 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2589 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2586 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1337514798 +79290965 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -719659680 +867398280 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78297,13 +78538,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2590 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78313,33 +78554,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2591 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2591 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2592 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78349,19 +78590,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2592 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78371,39 +78612,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2593 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2593 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2590 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1302887999 +494586676 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1729213562 +376416077 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78413,13 +78654,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2594 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78429,33 +78670,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2595 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2595 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2596 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78465,19 +78706,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2596 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78487,39 +78728,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2597 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2597 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2594 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -637822057 +670971910 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -184479569 +270397815 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78529,13 +78770,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2598 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78545,33 +78786,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2599 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2599 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2600 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78581,19 +78822,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2600 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78603,39 +78844,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2601 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2601 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2598 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -43469738 +22805895 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1706748598 +770911223 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78645,13 +78886,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2602 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78661,33 +78902,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2603 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2603 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2604 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78697,19 +78938,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2604 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78719,39 +78960,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2605 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2605 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2602 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -303126473 +1138193439 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1603462303 +19986569 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78761,13 +79002,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2606 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78777,33 +79018,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2607 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2607 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2608 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78813,19 +79054,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2608 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78835,39 +79076,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2609 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2609 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2606 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -483808296 +1157058691 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1648241508 +1890187342 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78877,13 +79118,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2610 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78893,33 +79134,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2611 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2611 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2612 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -78929,19 +79170,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2612 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1415258436 +1485697819 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78951,39 +79192,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2613 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2613 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2610 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1895334381 +1218593486 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1415258436 +1485697819 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -78993,13 +79234,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2614 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79009,33 +79250,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2615 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2615 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2616 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79045,19 +79286,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2616 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79067,39 +79308,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2617 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2617 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2614 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -2047449123 +1686369710 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -785307846 +85445963 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79109,13 +79350,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2618 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79125,33 +79366,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2619 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2619 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2620 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79161,19 +79402,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2620 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79183,39 +79424,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2621 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2621 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2618 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -992943330 +40472007 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -611364908 +1948863195 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79225,13 +79466,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2622 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79241,13 +79482,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2622 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79260,13 +79501,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2623 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79276,13 +79517,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2623 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79295,13 +79536,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2624 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79311,13 +79552,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2624 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79330,13 +79571,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2625 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79346,13 +79587,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2625 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79365,13 +79606,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2626 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79381,33 +79622,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2627 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2627 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2628 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79417,19 +79658,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2628 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79439,39 +79680,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2629 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2629 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2626 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79481,13 +79722,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2630 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79497,33 +79738,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2631 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2631 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2632 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79533,19 +79774,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2632 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79555,39 +79796,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2633 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2633 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2630 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79597,13 +79838,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2634 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79613,33 +79854,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2635 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2635 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2636 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79649,19 +79890,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2636 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809976092 +1176735295 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79671,39 +79912,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2637 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2637 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2634 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809976092 +1176735295 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79713,13 +79954,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2638 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79729,13 +79970,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2638 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79748,13 +79989,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2639 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79764,13 +80005,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2639 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79783,13 +80024,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2640 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79799,13 +80040,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2640 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79818,13 +80059,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2641 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79834,33 +80075,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2642 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2642 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2643 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79870,19 +80111,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2643 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79892,39 +80133,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2644 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2644 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2641 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -79934,13 +80175,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2645 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79950,13 +80191,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2645 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79969,13 +80210,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2646 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -79985,13 +80226,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2646 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80004,13 +80245,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2647 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80020,13 +80261,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2647 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80039,13 +80280,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2648 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80055,13 +80296,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2648 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80074,13 +80315,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2649 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80090,33 +80331,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2650 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2650 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2651 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80126,19 +80367,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2651 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80148,39 +80389,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2652 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2652 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2649 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80190,13 +80431,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2653 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80206,33 +80447,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2654 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2654 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2655 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80242,19 +80483,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2655 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80264,39 +80505,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2656 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2656 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2653 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80306,13 +80547,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2657 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80322,13 +80563,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2657 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80341,13 +80582,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2658 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80357,13 +80598,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2658 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80376,13 +80617,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2659 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80392,13 +80633,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2659 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80411,13 +80652,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2660 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80427,13 +80668,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2660 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80446,13 +80687,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2661 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80462,33 +80703,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2662 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2662 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2663 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80498,19 +80739,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2663 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80520,39 +80761,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2664 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2664 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2661 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80562,13 +80803,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2665 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80578,33 +80819,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2666 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2666 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2667 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80614,19 +80855,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2667 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80636,39 +80877,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2668 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2668 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2665 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80678,13 +80919,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2669 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80694,33 +80935,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2670 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2670 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2671 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80730,19 +80971,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2671 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80752,39 +80993,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2672 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2672 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2669 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80794,13 +81035,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2673 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80810,33 +81051,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2674 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2674 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2675 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80846,19 +81087,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2675 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80868,39 +81109,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2676 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2676 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2673 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80910,13 +81151,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2677 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80926,33 +81167,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2678 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2678 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2679 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -80962,19 +81203,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2679 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -80984,39 +81225,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2680 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2680 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2677 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81026,13 +81267,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2681 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81042,33 +81283,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2682 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2682 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2683 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81078,19 +81319,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2683 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81100,39 +81341,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2684 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2684 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2681 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81142,13 +81383,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2685 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81158,33 +81399,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2686 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2686 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2687 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81194,19 +81435,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2687 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81216,39 +81457,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2688 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2688 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2685 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81258,13 +81499,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2689 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81274,13 +81515,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2689 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81293,13 +81534,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2690 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81309,13 +81550,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2690 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81328,13 +81569,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2691 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81344,13 +81585,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2691 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81363,13 +81604,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2692 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81379,33 +81620,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2693 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2693 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2694 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81415,19 +81656,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2694 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81437,39 +81678,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2695 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2695 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2692 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1897118801 +1370651081 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -967741809 +339924917 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81479,13 +81720,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2696 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81495,33 +81736,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2697 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2697 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2698 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81531,19 +81772,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2698 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81553,39 +81794,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2699 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2699 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2696 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81595,13 +81836,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2700 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81611,13 +81852,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2700 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81630,13 +81871,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2701 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81646,13 +81887,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2701 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81665,13 +81906,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2702 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81681,13 +81922,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2702 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81700,13 +81941,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2703 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81716,13 +81957,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2703 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81735,13 +81976,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2704 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81751,33 +81992,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2705 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2705 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2706 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81787,19 +82028,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2706 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81809,39 +82050,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2707 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2707 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2704 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81851,13 +82092,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2708 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81867,33 +82108,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2709 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2709 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2710 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81903,19 +82144,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2710 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81925,39 +82166,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2711 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2711 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2708 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -81967,13 +82208,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2712 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -81983,33 +82224,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2713 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2713 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2714 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82019,19 +82260,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2714 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82041,39 +82282,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2715 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2715 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2712 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82083,13 +82324,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2716 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82099,33 +82340,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2717 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2717 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2718 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82135,19 +82376,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2718 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82157,39 +82398,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2719 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2719 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2716 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82199,13 +82440,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2720 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82215,33 +82456,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2721 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2721 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2722 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82251,19 +82492,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2722 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82273,39 +82514,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2723 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2723 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2720 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82315,13 +82556,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2724 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82331,33 +82572,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2725 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2725 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2726 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82367,19 +82608,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2726 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82389,39 +82630,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2727 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2727 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2724 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1185981398 +450003680 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1942925132 +520022247 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82431,13 +82672,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2728 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82447,33 +82688,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2729 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2729 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2730 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82483,19 +82724,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2730 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82505,39 +82746,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2731 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2731 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2728 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -563399241 +1943325854 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1744844169 +1032000752 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82547,13 +82788,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2732 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82563,13 +82804,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2732 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82582,13 +82823,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2733 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82598,13 +82839,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2733 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82617,13 +82858,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2734 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82633,13 +82874,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2734 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82652,13 +82893,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2735 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82668,33 +82909,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2736 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2736 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2737 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82704,19 +82945,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2737 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82726,39 +82967,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2738 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2738 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2735 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -106357242 +518522822 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82768,13 +83009,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2739 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82784,33 +83025,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2740 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2740 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2741 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82820,19 +83061,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2741 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82842,39 +83083,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2742 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2742 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2739 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -847962619 +275310919 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2070953969 +876213901 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82884,13 +83125,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2743 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82900,33 +83141,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2744 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2744 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2745 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -82936,19 +83177,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2745 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -82958,39 +83199,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2746 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2746 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2743 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -839771990 +124407148 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83000,13 +83241,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2747 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83016,33 +83257,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2748 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2748 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2749 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83052,19 +83293,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2749 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83074,39 +83315,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2750 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2750 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2747 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1899876837 +1582785598 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1123174346 +1904324159 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83116,13 +83357,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2751 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83132,13 +83373,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2751 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83151,13 +83392,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2752 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83167,13 +83408,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2752 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83186,13 +83427,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2753 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83202,13 +83443,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2753 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1993628379 +2134991632 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83221,13 +83462,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2754 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83237,13 +83478,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2754 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1872305359 +480971771 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83256,13 +83497,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2755 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83272,33 +83513,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2756 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2756 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2757 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83308,19 +83549,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2757 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83330,39 +83571,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2758 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2758 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2755 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83372,13 +83613,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2759 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83388,33 +83629,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2760 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2760 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2761 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83424,19 +83665,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2761 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809976092 +1176735295 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83446,39 +83687,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2762 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2762 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2759 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -295652216 +322836221 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -809976092 +1176735295 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83488,13 +83729,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2763 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83504,33 +83745,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2764 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2764 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2765 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83540,19 +83781,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2765 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83562,39 +83803,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2766 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2766 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2763 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -2074327201 +1313532469 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83604,13 +83845,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2767 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83620,33 +83861,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2768 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2768 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2769 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83656,19 +83897,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2769 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83678,39 +83919,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2770 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2770 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2767 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1268144347 +843467284 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83720,13 +83961,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2771 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83736,13 +83977,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2771 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83755,13 +83996,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2772 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83771,13 +84012,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2772 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -1398992856 +1356728614 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83790,13 +84031,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2773 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83806,13 +84047,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2773 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -74479789 +611563982 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83825,13 +84066,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2774 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83841,33 +84082,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2775 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2775 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2776 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83877,19 +84118,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2776 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83899,39 +84140,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2777 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2777 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2774 this -1436117039 +323326911 1 this.adjMap -1250365840 +1270144618 1 node -758289222 +1586845078 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -369339911 +1848415041 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -83945,43 +84186,43 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2779 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2779 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.Graph():::EXIT29 this_invocation_nonce 2778 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2780 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2145588569 +1738236591 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -83991,13 +84232,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2780 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2145588569 +1738236591 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84010,13 +84251,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 2781 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2145588569 +1738236591 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84026,53 +84267,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2782 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2782 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2783 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2783 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 2781 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2145588569 +1738236591 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84082,13 +84323,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2784 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84098,13 +84339,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2784 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84117,13 +84358,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 2785 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84133,53 +84374,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2786 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2786 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2787 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2787 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 2785 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84189,13 +84430,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2788 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84205,13 +84446,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2788 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84224,13 +84465,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 2789 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84240,53 +84481,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2790 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2790 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2791 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2791 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 2789 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84296,13 +84537,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2792 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2098575310 +1169146729 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84312,13 +84553,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2792 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2098575310 +1169146729 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84331,13 +84572,13 @@ MapQuick1.Graph.addNode(java.lang.Object):::ENTER this_invocation_nonce 2793 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2098575310 +1169146729 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84347,53 +84588,53 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2794 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2794 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2795 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2795 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.addNode(java.lang.Object):::EXIT68 this_invocation_nonce 2793 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2098575310 +1169146729 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84403,19 +84644,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 2796 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 from -2098575310 +1169146729 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2145588569 +1738236591 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -84425,33 +84666,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2797 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2797 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2798 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2098575310 +1169146729 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84461,19 +84702,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2798 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2098575310 +1169146729 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -483816842 +2040352617 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -84483,13 +84724,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2799 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2145588569 +1738236591 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84499,13 +84740,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2799 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -2145588569 +1738236591 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84518,39 +84759,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2800 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2800 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 2796 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 from -2098575310 +1169146729 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -2145588569 +1738236591 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -84560,19 +84801,19 @@ MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::ENTER this_invocation_nonce 2801 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 from -361678759 +1558021762 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1356181503 +225290371 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -84582,33 +84823,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2802 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2802 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2803 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84618,19 +84859,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2803 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -1136575952 +1237598030 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -84640,13 +84881,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2804 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84656,13 +84897,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2804 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84675,39 +84916,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2805 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2805 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.addEdge(java.lang.Object, java.lang.Object):::EXIT128 this_invocation_nonce 2801 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 from -361678759 +1558021762 1 from.getClass().getName() "MapQuick1.GeoSegment" 1 to -1356181503 +225290371 1 to.getClass().getName() "MapQuick1.GeoSegment" @@ -84717,13 +84958,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2806 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84733,13 +84974,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2806 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84752,13 +84993,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::ENTER this_invocation_nonce 2807 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84768,13 +85009,13 @@ MapQuick1.Graph.containsNode(java.lang.Object):::EXIT76 this_invocation_nonce 2807 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -361678759 +1558021762 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84787,13 +85028,13 @@ MapQuick1.Graph.childrenOf(java.lang.Object):::ENTER this_invocation_nonce 2808 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84803,33 +85044,33 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2809 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2809 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.adjTo(java.lang.Object):::ENTER this_invocation_nonce 2810 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" @@ -84839,19 +85080,19 @@ MapQuick1.Graph.adjTo(java.lang.Object):::EXIT102 this_invocation_nonce 2810 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -564985199 +688766789 1 return.getClass().getName() "java.util.LinkedHashSet" @@ -84861,39 +85102,39 @@ MapQuick1.Graph.checkRep():::ENTER this_invocation_nonce 2811 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.checkRep():::EXIT49 this_invocation_nonce 2811 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 MapQuick1.Graph.childrenOf(java.lang.Object):::EXIT146 this_invocation_nonce 2808 this -234473260 +1825027294 1 this.adjMap -159588575 +852445367 1 node -1356181503 +225290371 1 node.getClass().getName() "MapQuick1.GeoSegment" 1 return -564985199 +688766789 1 return.getClass().getName() "java.util.LinkedHashSet" diff --git a/tests/daikon-tests/Graph/Graph.txt-jaif.goal b/tests/daikon-tests/Graph/Graph.txt-jaif.goal index e81def7594..2910221853 100644 --- a/tests/daikon-tests/Graph/Graph.txt-jaif.goal +++ b/tests/daikon-tests/Graph/Graph.txt-jaif.goal @@ -4,66 +4,110 @@ annotation @NonNull: package MapQuick1: class Graph$DuplicateEdgeException : // 0/- obj/class samples + method DuplicateEdgeException(LMapQuick1/Graph;)V throws Ljava/lang/Throwable; : // 0 samples + return: method DuplicateEdgeException(LMapQuick1/Graph;)V : // 0 samples - return: + return: + method DuplicateEdgeException(LMapQuick1/Graph;Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // s method DuplicateEdgeException(LMapQuick1/Graph;Ljava/lang/String;)V : // 0 samples - return: + return: parameter #0 : // s package MapQuick1: class Graph$DuplicateNodeException : // 0/- obj/class samples + method DuplicateNodeException(LMapQuick1/Graph;)V throws Ljava/lang/Throwable; : // 0 samples + return: method DuplicateNodeException(LMapQuick1/Graph;)V : // 0 samples - return: + return: + method DuplicateNodeException(LMapQuick1/Graph;Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // s method DuplicateNodeException(LMapQuick1/Graph;Ljava/lang/String;)V : // 0 samples - return: + return: parameter #0 : // s package MapQuick1: class Graph$GraphException : // 0/- obj/class samples + method GraphException(LMapQuick1/Graph;)V throws Ljava/lang/Throwable; : // 0 samples + return: method GraphException(LMapQuick1/Graph;)V : // 0 samples - return: + return: + method GraphException(LMapQuick1/Graph;Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // s method GraphException(LMapQuick1/Graph;Ljava/lang/String;)V : // 0 samples - return: + return: parameter #0 : // s + method getGraph()V throws Ljava/lang/Throwable; : // 0 samples + return: method getGraph()LMapQuick1/Graph; : // 0 samples - return: + return: package MapQuick1: class Graph$NoNodeException : // 0/- obj/class samples + method NoNodeException(LMapQuick1/Graph;)V throws Ljava/lang/Throwable; : // 0 samples + return: method NoNodeException(LMapQuick1/Graph;)V : // 0 samples - return: + return: + method NoNodeException(LMapQuick1/Graph;Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // s method NoNodeException(LMapQuick1/Graph;Ljava/lang/String;)V : // 0 samples - return: + return: parameter #0 : // s package MapQuick1: class Graph : // 5621/- obj/class samples field adjMap : // java.util.LinkedHashMap + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 3 samples - return: + return: + method addEdge(Ljava/lang/Object;Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // from + parameter #1 : // to method addEdge(Ljava/lang/Object;Ljava/lang/Object;)V : // 140 samples - return: + return: parameter #0 : // from parameter #1 : // to + method addNode(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // node method addNode(Ljava/lang/Object;)V : // 82 samples - return: + return: + parameter #0 : // node + method adjTo(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // node method adjTo(Ljava/lang/Object;)Ljava/util/Set; : // 528 samples - return: + return: parameter #0 : // node + method checkRep()V throws Ljava/lang/Throwable; : // 0 samples + return: method checkRep()V : // 1223 samples - return: + return: + method childrenOf(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // node method childrenOf(Ljava/lang/Object;)Ljava/util/Collection; : // 388 samples - return: + return: + parameter #0 : // node + method containsNode(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // node method containsNode(Ljava/lang/Object;)Z : // 448 samples - return: + return: parameter #0 : // node + method nodeSet()V throws Ljava/lang/Throwable; : // 0 samples + return: method nodeSet()Ljava/util/Set; : // 0 samples - return: + return: diff --git a/tests/daikon-tests/Huffman/Huffman.txt-chicory.goal b/tests/daikon-tests/Huffman/Huffman.txt-chicory.goal index 70fd4c709e..ac861c1b82 100644 --- a/tests/daikon-tests/Huffman/Huffman.txt-chicory.goal +++ b/tests/daikon-tests/Huffman/Huffman.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for six170.HuffmanSymbol -// Declarations written Thu Jun 04 13:24:06 PDT 2015 +// Declarations written Mon Jul 31 13:16:24 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object,\_int):::ENTER ppt-type enter variable symbol - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -18,10 +18,10 @@ variable symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable frequency - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -31,11 +31,65 @@ ppt six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object,\_int):::EXIT26 ppt-type subexit parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable symbol + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args symbol + flags synthetic classname non_null + comparability 22 +variable frequency + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol var-kind field symbol @@ -50,7 +104,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -61,7 +115,7 @@ variable this.frequency comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable symbol - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -72,23 +126,35 @@ variable symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable frequency - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.HuffmanSymbol.symbol():::ENTER ppt-type enter parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -104,7 +170,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -119,10 +185,10 @@ ppt six170.HuffmanSymbol.symbol():::EXIT32 ppt-type subexit parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -138,7 +204,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -149,7 +215,7 @@ variable this.frequency comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode comparability 22 @@ -159,17 +225,63 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanSymbol.symbol():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt six170.HuffmanSymbol.frequency():::ENTER ppt-type enter parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -185,7 +297,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -200,10 +312,10 @@ ppt six170.HuffmanSymbol.frequency():::EXIT39 ppt-type subexit parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -219,7 +331,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -230,19 +342,65 @@ variable this.frequency comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt six170.HuffmanSymbol.frequency():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt six170.HuffmanSymbol.toString():::ENTER ppt-type enter parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -258,7 +416,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -273,10 +431,10 @@ ppt six170.HuffmanSymbol.toString():::EXIT43 ppt-type subexit parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -292,7 +450,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -303,7 +461,7 @@ variable this.frequency comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -316,14 +474,60 @@ variable return.toString flags synthetic to_string comparability 22 +ppt six170.HuffmanSymbol.toString():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt six170.HuffmanSymbol.checkRep():::ENTER ppt-type enter parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -339,7 +543,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -354,10 +558,90 @@ ppt six170.HuffmanSymbol.checkRep():::EXIT53 ppt-type subexit parent parent six170.HuffmanSymbol:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 + +ppt six170.HuffmanSymbol.checkRep():::EXCEPTION48 +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanSymbol.checkRep():::EXCEPTION51 +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.symbol @@ -373,7 +657,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 variable this.frequency @@ -383,14 +667,72 @@ variable this.frequency rep-type int comparability 22 parent six170.HuffmanSymbol:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanSymbol.checkRep():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanSymbol:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable this.frequency + var-kind field frequency + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanSymbol:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.HuffmanSymbol:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.symbol var-kind field symbol @@ -404,7 +746,7 @@ variable this.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.frequency var-kind field frequency @@ -417,7 +759,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 0 symbol -1297548602 +2109957412 1 symbol.getClass().getName() "java.lang.Character" @@ -430,10 +772,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 0 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -442,7 +784,7 @@ this.frequency 1 1 symbol -1297548602 +2109957412 1 symbol.getClass().getName() "java.lang.Character" @@ -455,7 +797,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 1 symbol -247113402 +747464370 1 symbol.getClass().getName() "java.lang.Character" @@ -468,10 +810,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 1 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -480,7 +822,7 @@ this.frequency 2 1 symbol -247113402 +747464370 1 symbol.getClass().getName() "java.lang.Character" @@ -493,7 +835,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 2 symbol -686363848 +1018547642 1 symbol.getClass().getName() "java.lang.Character" @@ -506,10 +848,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 2 this -1582525299 +1456208737 1 this.symbol -686363848 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" @@ -518,7 +860,7 @@ this.frequency 5 1 symbol -686363848 +1018547642 1 symbol.getClass().getName() "java.lang.Character" @@ -531,7 +873,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 3 symbol -917732198 +288665596 1 symbol.getClass().getName() "java.lang.Character" @@ -544,10 +886,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 3 this -1097499032 +13648335 1 this.symbol -917732198 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -556,7 +898,7 @@ this.frequency 2 1 symbol -917732198 +288665596 1 symbol.getClass().getName() "java.lang.Character" @@ -569,7 +911,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 4 symbol -929186741 +312116338 1 symbol.getClass().getName() "java.lang.Character" @@ -582,10 +924,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 4 this -340475003 +453211571 1 this.symbol -929186741 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -594,7 +936,7 @@ this.frequency 2 1 symbol -929186741 +312116338 1 symbol.getClass().getName() "java.lang.Character" @@ -607,7 +949,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 5 symbol -1466939813 +796684896 1 symbol.getClass().getName() "java.lang.Character" @@ -620,10 +962,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 5 this -1745169531 +757108857 1 this.symbol -1466939813 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -632,7 +974,7 @@ this.frequency 2 1 symbol -1466939813 +796684896 1 symbol.getClass().getName() "java.lang.Character" @@ -645,7 +987,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 6 symbol -732656791 +1809787067 1 symbol.getClass().getName() "java.lang.Character" @@ -658,10 +1000,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 6 this -91454439 +1802598046 1 this.symbol -732656791 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" @@ -670,7 +1012,7 @@ this.frequency 3 1 symbol -732656791 +1809787067 1 symbol.getClass().getName() "java.lang.Character" @@ -683,7 +1025,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 7 symbol -1623948668 +659748578 1 symbol.getClass().getName() "java.lang.Character" @@ -696,10 +1038,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 7 this -1335593353 +240650537 1 this.symbol -1623948668 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" @@ -708,7 +1050,7 @@ this.frequency 6 1 symbol -1623948668 +659748578 1 symbol.getClass().getName() "java.lang.Character" @@ -721,7 +1063,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 8 symbol -1818405427 +483422889 1 symbol.getClass().getName() "java.lang.Character" @@ -734,10 +1076,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 8 this -1100231132 +2088051243 1 this.symbol -1818405427 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" @@ -746,7 +1088,7 @@ this.frequency 3 1 symbol -1818405427 +483422889 1 symbol.getClass().getName() "java.lang.Character" @@ -759,7 +1101,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 9 symbol -1750434854 +1277181601 1 symbol.getClass().getName() "java.lang.Character" @@ -772,10 +1114,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 9 this -1180110925 +41903949 1 this.symbol -1750434854 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -784,7 +1126,7 @@ this.frequency 2 1 symbol -1750434854 +1277181601 1 symbol.getClass().getName() "java.lang.Character" @@ -797,7 +1139,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 10 symbol -2112836430 +488970385 1 symbol.getClass().getName() "java.lang.Character" @@ -810,10 +1152,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 10 this -1799775865 +1209271652 1 this.symbol -2112836430 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -822,7 +1164,7 @@ this.frequency 2 1 symbol -2112836430 +488970385 1 symbol.getClass().getName() "java.lang.Character" @@ -835,7 +1177,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 11 symbol -1525795060 +93122545 1 symbol.getClass().getName() "java.lang.Character" @@ -848,10 +1190,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 11 this -935344593 +2083562754 1 this.symbol -1525795060 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" @@ -860,7 +1202,7 @@ this.frequency 3 1 symbol -1525795060 +93122545 1 symbol.getClass().getName() "java.lang.Character" @@ -873,7 +1215,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 12 symbol -756278511 +1239731077 1 symbol.getClass().getName() "java.lang.Character" @@ -886,10 +1228,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 12 this -1964711431 +557041912 1 this.symbol -756278511 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -898,7 +1240,7 @@ this.frequency 1 1 symbol -756278511 +1239731077 1 symbol.getClass().getName() "java.lang.Character" @@ -911,7 +1253,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 13 symbol -1196464545 +1134712904 1 symbol.getClass().getName() "java.lang.Character" @@ -924,10 +1266,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 13 this -2090220954 +985922955 1 this.symbol -1196464545 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" @@ -936,7 +1278,7 @@ this.frequency 1 1 symbol -1196464545 +1134712904 1 symbol.getClass().getName() "java.lang.Character" @@ -949,7 +1291,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 14 symbol -1806076252 +1435804085 1 symbol.getClass().getName() "java.lang.Character" @@ -962,10 +1304,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 14 this -42217019 +1784662007 1 this.symbol -1806076252 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" @@ -974,7 +1316,7 @@ this.frequency 1 1 symbol -1806076252 +1435804085 1 symbol.getClass().getName() "java.lang.Character" @@ -987,7 +1329,7 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::ENTER this_invocation_nonce 15 symbol -871834823 +997110508 1 symbol.getClass().getName() "java.lang.Character" @@ -1000,10 +1342,10 @@ six170.HuffmanSymbol.HuffmanSymbol(java.lang.Object, int):::EXIT26 this_invocation_nonce 15 this -646946680 +509886383 1 this.symbol -871834823 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" @@ -1012,7 +1354,7 @@ this.frequency 1 1 symbol -871834823 +997110508 1 symbol.getClass().getName() "java.lang.Character" @@ -1024,13 +1366,13 @@ frequency ppt six170.HuffmanCodec.HuffmanCodec(java.util.List):::ENTER ppt-type enter variable huffmanSymbols - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable huffmanSymbols[..] - var-kind array + var-kind array enclosing-var huffmanSymbols array 1 dec-type java.util.List @@ -1043,7 +1385,7 @@ variable huffmanSymbols[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args huffmanSymbols[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable huffmanSymbols.getClass().getName() var-kind function getClass().getName() @@ -1051,18 +1393,168 @@ variable huffmanSymbols.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args huffmanSymbols - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.HuffmanCodec(java.util.List):::EXIT24 ppt-type subexit parent parent six170.HuffmanCodec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanCodec rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap + var-kind field encodingMap + enclosing-var this + dec-type java.util.Map + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.encodingMap + dec-type java.lang.Class + rep-type java.lang.String + function-args this.encodingMap + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree + var-kind field decodingTree + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol + var-kind field symbol + enclosing-var this.decodingTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol + var-kind field symbol + enclosing-var this.decodingTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.decodingTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.decodingTree.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.frequency + var-kind field frequency + enclosing-var this.decodingTree.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left + var-kind field left + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.symbol + var-kind field symbol + enclosing-var this.decodingTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.left + var-kind field left + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.right + var-kind field right + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right + var-kind field right + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.symbol + var-kind field symbol + enclosing-var this.decodingTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.left + var-kind field left + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.right + var-kind field right + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable huffmanSymbols + var-kind variable + dec-type java.util.List + rep-type hashcode flags is_param comparability 22 +variable huffmanSymbols[..] + var-kind array + enclosing-var huffmanSymbols + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable huffmanSymbols[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var huffmanSymbols[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args huffmanSymbols[] + flags synthetic classname non_null + comparability 22 +variable huffmanSymbols.getClass().getName() + var-kind function getClass().getName() + enclosing-var huffmanSymbols + dec-type java.lang.Class + rep-type java.lang.String + function-args huffmanSymbols + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanCodec.HuffmanCodec(java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanCodec:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanCodec + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.encodingMap var-kind field encodingMap @@ -1077,7 +1569,7 @@ variable this.encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree @@ -1107,7 +1599,7 @@ variable this.decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree.symbol.frequency @@ -1174,13 +1666,13 @@ variable this.decodingTree.right.right comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable huffmanSymbols - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable huffmanSymbols[..] - var-kind array + var-kind array enclosing-var huffmanSymbols array 1 dec-type java.util.List @@ -1193,7 +1685,7 @@ variable huffmanSymbols[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args huffmanSymbols[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable huffmanSymbols.getClass().getName() var-kind function getClass().getName() @@ -1201,19 +1693,31 @@ variable huffmanSymbols.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args huffmanSymbols - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.buildDecodingTree(java.util.List):::ENTER ppt-type enter variable huffmanSymbols - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable huffmanSymbols[..] - var-kind array + var-kind array enclosing-var huffmanSymbols array 1 dec-type java.util.List @@ -1226,7 +1730,7 @@ variable huffmanSymbols[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args huffmanSymbols[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable huffmanSymbols.getClass().getName() var-kind function getClass().getName() @@ -1234,19 +1738,19 @@ variable huffmanSymbols.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args huffmanSymbols - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.buildDecodingTree(java.util.List):::EXIT54 ppt-type subexit variable huffmanSymbols - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable huffmanSymbols[..] - var-kind array + var-kind array enclosing-var huffmanSymbols array 1 dec-type java.util.List @@ -1259,7 +1763,7 @@ variable huffmanSymbols[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args huffmanSymbols[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable huffmanSymbols.getClass().getName() var-kind function getClass().getName() @@ -1267,10 +1771,10 @@ variable huffmanSymbols.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args huffmanSymbols - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type six170.HuffmanTree rep-type hashcode comparability 22 @@ -1292,7 +1796,7 @@ variable return.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.symbol.frequency var-kind field frequency @@ -1349,16 +1853,61 @@ variable return.right.right rep-type hashcode comparability 22 +ppt six170.HuffmanCodec.buildDecodingTree(java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable huffmanSymbols + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable huffmanSymbols[..] + var-kind array + enclosing-var huffmanSymbols + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable huffmanSymbols[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var huffmanSymbols[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args huffmanSymbols[] + flags synthetic classname non_null + comparability 22 +variable huffmanSymbols.getClass().getName() + var-kind function getClass().getName() + enclosing-var huffmanSymbols + dec-type java.lang.Class + rep-type java.lang.String + function-args huffmanSymbols + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER ppt-type enter variable nodeList - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable nodeList[..] - var-kind array + var-kind array enclosing-var nodeList array 1 dec-type java.util.List @@ -1371,7 +1920,7 @@ variable nodeList[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args nodeList[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable nodeList.getClass().getName() var-kind function getClass().getName() @@ -1379,19 +1928,19 @@ variable nodeList.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args nodeList - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 ppt-type subexit variable nodeList - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable nodeList[..] - var-kind array + var-kind array enclosing-var nodeList array 1 dec-type java.util.List @@ -1404,7 +1953,7 @@ variable nodeList[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args nodeList[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable nodeList.getClass().getName() var-kind function getClass().getName() @@ -1412,10 +1961,10 @@ variable nodeList.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args nodeList - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type six170.HuffmanTree rep-type hashcode comparability 22 @@ -1437,7 +1986,7 @@ variable return.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.symbol.frequency var-kind field frequency @@ -1494,93 +2043,55 @@ variable return.right.right rep-type hashcode comparability 22 -ppt six170.HuffmanCodec.buildEncodingMap(six170.HuffmanTree):::ENTER -ppt-type enter -variable decodingTree - var-kind variable - dec-type six170.HuffmanTree +ppt six170.HuffmanCodec.extractSmallest(java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable nodeList + var-kind variable + dec-type java.util.List rep-type hashcode flags is_param comparability 22 -variable decodingTree.symbol - var-kind field symbol - enclosing-var decodingTree - dec-type six170.HuffmanSymbol - rep-type hashcode +variable nodeList[..] + var-kind array + enclosing-var nodeList + array 1 + dec-type java.util.List + rep-type hashcode[] comparability 22 -variable decodingTree.symbol.symbol - var-kind field symbol - enclosing-var decodingTree.symbol - dec-type java.lang.Object - rep-type hashcode +variable nodeList[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var nodeList[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args nodeList[] + flags synthetic classname non_null comparability 22 -variable decodingTree.symbol.symbol.getClass().getName() +variable nodeList.getClass().getName() var-kind function getClass().getName() - enclosing-var decodingTree.symbol.symbol + enclosing-var nodeList dec-type java.lang.Class rep-type java.lang.String - function-args decodingTree.symbol.symbol - flags synthetic classname - comparability 22 -variable decodingTree.symbol.frequency - var-kind field frequency - enclosing-var decodingTree.symbol - dec-type int - rep-type int - comparability 22 -variable decodingTree.left - var-kind field left - enclosing-var decodingTree - dec-type six170.HuffmanTree - rep-type hashcode - comparability 22 -variable decodingTree.left.symbol - var-kind field symbol - enclosing-var decodingTree.left - dec-type six170.HuffmanSymbol - rep-type hashcode - comparability 22 -variable decodingTree.left.left - var-kind field left - enclosing-var decodingTree.left - dec-type six170.HuffmanTree - rep-type hashcode - comparability 22 -variable decodingTree.left.right - var-kind field right - enclosing-var decodingTree.left - dec-type six170.HuffmanTree - rep-type hashcode - comparability 22 -variable decodingTree.right - var-kind field right - enclosing-var decodingTree - dec-type six170.HuffmanTree - rep-type hashcode - comparability 22 -variable decodingTree.right.symbol - var-kind field symbol - enclosing-var decodingTree.right - dec-type six170.HuffmanSymbol - rep-type hashcode + function-args nodeList + flags synthetic classname non_null comparability 22 -variable decodingTree.right.left - var-kind field left - enclosing-var decodingTree.right - dec-type six170.HuffmanTree +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable decodingTree.right.right - var-kind field right - enclosing-var decodingTree.right - dec-type six170.HuffmanTree - rep-type hashcode +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt six170.HuffmanCodec.buildEncodingMap(six170.HuffmanTree):::EXIT94 -ppt-type subexit +ppt six170.HuffmanCodec.buildEncodingMap(six170.HuffmanTree):::ENTER +ppt-type enter variable decodingTree - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode flags is_param @@ -1603,7 +2114,90 @@ variable decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable decodingTree.symbol.frequency + var-kind field frequency + enclosing-var decodingTree.symbol + dec-type int + rep-type int + comparability 22 +variable decodingTree.left + var-kind field left + enclosing-var decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.left.symbol + var-kind field symbol + enclosing-var decodingTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable decodingTree.left.left + var-kind field left + enclosing-var decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.left.right + var-kind field right + enclosing-var decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.right + var-kind field right + enclosing-var decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.right.symbol + var-kind field symbol + enclosing-var decodingTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable decodingTree.right.left + var-kind field left + enclosing-var decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.right.right + var-kind field right + enclosing-var decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + +ppt six170.HuffmanCodec.buildEncodingMap(six170.HuffmanTree):::EXIT94 +ppt-type subexit +variable decodingTree + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable decodingTree.symbol + var-kind field symbol + enclosing-var decodingTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable decodingTree.symbol.symbol + var-kind field symbol + enclosing-var decodingTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable decodingTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var decodingTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args decodingTree.symbol.symbol + flags synthetic classname non_null comparability 22 variable decodingTree.symbol.frequency var-kind field frequency @@ -1660,7 +2254,7 @@ variable decodingTree.right.right rep-type hashcode comparability 22 variable return - var-kind return + var-kind return dec-type java.util.Map rep-type hashcode comparability 22 @@ -1670,13 +2264,108 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanCodec.buildEncodingMap(six170.HuffmanTree):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable decodingTree + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable decodingTree.symbol + var-kind field symbol + enclosing-var decodingTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable decodingTree.symbol.symbol + var-kind field symbol + enclosing-var decodingTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable decodingTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var decodingTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args decodingTree.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable decodingTree.symbol.frequency + var-kind field frequency + enclosing-var decodingTree.symbol + dec-type int + rep-type int + comparability 22 +variable decodingTree.left + var-kind field left + enclosing-var decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.left.symbol + var-kind field symbol + enclosing-var decodingTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable decodingTree.left.left + var-kind field left + enclosing-var decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.left.right + var-kind field right + enclosing-var decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.right + var-kind field right + enclosing-var decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.right.symbol + var-kind field symbol + enclosing-var decodingTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable decodingTree.right.left + var-kind field left + enclosing-var decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable decodingTree.right.right + var-kind field right + enclosing-var decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.addToMap(java.util.Map,\_six170.HuffmanTree,\_java.util.List):::ENTER ppt-type enter variable encodingMap - var-kind variable + var-kind variable dec-type java.util.Map rep-type hashcode flags is_param @@ -1687,10 +2376,10 @@ variable encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 variable subTree - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode flags is_param @@ -1713,7 +2402,7 @@ variable subTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args subTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable subTree.symbol.frequency var-kind field frequency @@ -1770,13 +2459,13 @@ variable subTree.right.right rep-type hashcode comparability 22 variable bitStack - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable bitStack[..] - var-kind array + var-kind array enclosing-var bitStack array 1 dec-type java.util.List @@ -1789,7 +2478,7 @@ variable bitStack[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args bitStack[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable bitStack.getClass().getName() var-kind function getClass().getName() @@ -1797,13 +2486,140 @@ variable bitStack.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args bitStack - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.addToMap(java.util.Map,\_six170.HuffmanTree,\_java.util.List):::EXIT123 ppt-type subexit variable encodingMap - var-kind variable + var-kind variable + dec-type java.util.Map + rep-type hashcode + flags is_param + comparability 22 +variable encodingMap.getClass().getName() + var-kind function getClass().getName() + enclosing-var encodingMap + dec-type java.lang.Class + rep-type java.lang.String + function-args encodingMap + flags synthetic classname non_null + comparability 22 +variable subTree + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable subTree.symbol + var-kind field symbol + enclosing-var subTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable subTree.symbol.symbol + var-kind field symbol + enclosing-var subTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable subTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var subTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args subTree.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable subTree.symbol.frequency + var-kind field frequency + enclosing-var subTree.symbol + dec-type int + rep-type int + comparability 22 +variable subTree.left + var-kind field left + enclosing-var subTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable subTree.left.symbol + var-kind field symbol + enclosing-var subTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable subTree.left.left + var-kind field left + enclosing-var subTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable subTree.left.right + var-kind field right + enclosing-var subTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable subTree.right + var-kind field right + enclosing-var subTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable subTree.right.symbol + var-kind field symbol + enclosing-var subTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable subTree.right.left + var-kind field left + enclosing-var subTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable subTree.right.right + var-kind field right + enclosing-var subTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable bitStack + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable bitStack[..] + var-kind array + enclosing-var bitStack + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable bitStack[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var bitStack[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args bitStack[] + flags synthetic classname non_null + comparability 22 +variable bitStack.getClass().getName() + var-kind function getClass().getName() + enclosing-var bitStack + dec-type java.lang.Class + rep-type java.lang.String + function-args bitStack + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanCodec.addToMap(java.util.Map,\_six170.HuffmanTree,\_java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable encodingMap + var-kind variable dec-type java.util.Map rep-type hashcode flags is_param @@ -1814,10 +2630,10 @@ variable encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 variable subTree - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode flags is_param @@ -1840,7 +2656,7 @@ variable subTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args subTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable subTree.symbol.frequency var-kind field frequency @@ -1897,13 +2713,13 @@ variable subTree.right.right rep-type hashcode comparability 22 variable bitStack - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable bitStack[..] - var-kind array + var-kind array enclosing-var bitStack array 1 dec-type java.util.List @@ -1916,7 +2732,7 @@ variable bitStack[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args bitStack[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable bitStack.getClass().getName() var-kind function getClass().getName() @@ -1924,17 +2740,29 @@ variable bitStack.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args bitStack - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.encode(java.util.List):::ENTER ppt-type enter parent parent six170.HuffmanCodec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanCodec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.encodingMap @@ -1950,7 +2778,7 @@ variable this.encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree @@ -1980,7 +2808,7 @@ variable this.decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree.symbol.frequency @@ -2047,13 +2875,13 @@ variable this.decodingTree.right.right comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable inputStream - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable inputStream[..] - var-kind array + var-kind array enclosing-var inputStream array 1 dec-type java.util.List @@ -2066,7 +2894,7 @@ variable inputStream[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args inputStream[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable inputStream.getClass().getName() var-kind function getClass().getName() @@ -2074,17 +2902,17 @@ variable inputStream.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args inputStream - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.encode(java.util.List):::EXIT142 ppt-type subexit parent parent six170.HuffmanCodec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanCodec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.encodingMap @@ -2100,7 +2928,7 @@ variable this.encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree @@ -2130,7 +2958,7 @@ variable this.decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree.symbol.frequency @@ -2197,13 +3025,13 @@ variable this.decodingTree.right.right comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable inputStream - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable inputStream[..] - var-kind array + var-kind array enclosing-var inputStream array 1 dec-type java.util.List @@ -2216,7 +3044,7 @@ variable inputStream[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args inputStream[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable inputStream.getClass().getName() var-kind function getClass().getName() @@ -2224,15 +3052,15 @@ variable inputStream.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args inputStream - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type java.util.List rep-type hashcode comparability 22 variable return[..] - var-kind array + var-kind array enclosing-var return array 1 dec-type java.util.List @@ -2245,7 +3073,7 @@ variable return[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args return[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.getClass().getName() var-kind function getClass().getName() @@ -2253,17 +3081,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt six170.HuffmanCodec.decode(java.util.List):::ENTER -ppt-type enter +ppt six170.HuffmanCodec.encode(java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent six170.HuffmanCodec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanCodec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.encodingMap @@ -2279,7 +3107,7 @@ variable this.encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree @@ -2309,7 +3137,169 @@ variable this.decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.frequency + var-kind field frequency + enclosing-var this.decodingTree.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left + var-kind field left + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.symbol + var-kind field symbol + enclosing-var this.decodingTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.left + var-kind field left + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.right + var-kind field right + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right + var-kind field right + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.symbol + var-kind field symbol + enclosing-var this.decodingTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.left + var-kind field left + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.right + var-kind field right + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable inputStream + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable inputStream[..] + var-kind array + enclosing-var inputStream + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable inputStream[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var inputStream[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args inputStream[] + flags synthetic classname non_null + comparability 22 +variable inputStream.getClass().getName() + var-kind function getClass().getName() + enclosing-var inputStream + dec-type java.lang.Class + rep-type java.lang.String + function-args inputStream + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanCodec.decode(java.util.List):::ENTER +ppt-type enter +parent parent six170.HuffmanCodec:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanCodec + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap + var-kind field encodingMap + enclosing-var this + dec-type java.util.Map + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.encodingMap + dec-type java.lang.Class + rep-type java.lang.String + function-args this.encodingMap + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree + var-kind field decodingTree + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol + var-kind field symbol + enclosing-var this.decodingTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol + var-kind field symbol + enclosing-var this.decodingTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.decodingTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.decodingTree.symbol.symbol + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree.symbol.frequency @@ -2376,13 +3366,13 @@ variable this.decodingTree.right.right comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable inputBitStream - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable inputBitStream[..] - var-kind array + var-kind array enclosing-var inputBitStream array 1 dec-type java.util.List @@ -2395,7 +3385,7 @@ variable inputBitStream[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args inputBitStream[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable inputBitStream.getClass().getName() var-kind function getClass().getName() @@ -2403,17 +3393,17 @@ variable inputBitStream.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args inputBitStream - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec.decode(java.util.List):::EXIT174 ppt-type subexit parent parent six170.HuffmanCodec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanCodec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.encodingMap @@ -2429,7 +3419,7 @@ variable this.encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree @@ -2459,7 +3449,7 @@ variable this.decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable this.decodingTree.symbol.frequency @@ -2526,13 +3516,13 @@ variable this.decodingTree.right.right comparability 22 parent six170.HuffmanCodec:::OBJECT 1 variable inputBitStream - var-kind variable + var-kind variable dec-type java.util.List rep-type hashcode flags is_param comparability 22 variable inputBitStream[..] - var-kind array + var-kind array enclosing-var inputBitStream array 1 dec-type java.util.List @@ -2545,7 +3535,7 @@ variable inputBitStream[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args inputBitStream[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable inputBitStream.getClass().getName() var-kind function getClass().getName() @@ -2553,15 +3543,15 @@ variable inputBitStream.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args inputBitStream - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type java.util.List rep-type hashcode comparability 22 variable return[..] - var-kind array + var-kind array enclosing-var return array 1 dec-type java.util.List @@ -2574,7 +3564,7 @@ variable return[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args return[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.getClass().getName() var-kind function getClass().getName() @@ -2582,16 +3572,340 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanCodec.decode(java.util.List):::EXCEPTION164 +ppt-type subexit +parent parent six170.HuffmanCodec:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanCodec + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap + var-kind field encodingMap + enclosing-var this + dec-type java.util.Map + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.encodingMap + dec-type java.lang.Class + rep-type java.lang.String + function-args this.encodingMap + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree + var-kind field decodingTree + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol + var-kind field symbol + enclosing-var this.decodingTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol + var-kind field symbol + enclosing-var this.decodingTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.decodingTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.decodingTree.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.frequency + var-kind field frequency + enclosing-var this.decodingTree.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left + var-kind field left + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.symbol + var-kind field symbol + enclosing-var this.decodingTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.left + var-kind field left + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.right + var-kind field right + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right + var-kind field right + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.symbol + var-kind field symbol + enclosing-var this.decodingTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.left + var-kind field left + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.right + var-kind field right + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable inputBitStream + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable inputBitStream[..] + var-kind array + enclosing-var inputBitStream + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable inputBitStream[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var inputBitStream[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args inputBitStream[] + flags synthetic classname non_null + comparability 22 +variable inputBitStream.getClass().getName() + var-kind function getClass().getName() + enclosing-var inputBitStream + dec-type java.lang.Class + rep-type java.lang.String + function-args inputBitStream + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanCodec.decode(java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanCodec:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanCodec + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap + var-kind field encodingMap + enclosing-var this + dec-type java.util.Map + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.encodingMap.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.encodingMap + dec-type java.lang.Class + rep-type java.lang.String + function-args this.encodingMap + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree + var-kind field decodingTree + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol + var-kind field symbol + enclosing-var this.decodingTree + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol + var-kind field symbol + enclosing-var this.decodingTree.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.decodingTree.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.decodingTree.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.symbol.frequency + var-kind field frequency + enclosing-var this.decodingTree.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left + var-kind field left + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.symbol + var-kind field symbol + enclosing-var this.decodingTree.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.left + var-kind field left + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.left.right + var-kind field right + enclosing-var this.decodingTree.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right + var-kind field right + enclosing-var this.decodingTree + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.symbol + var-kind field symbol + enclosing-var this.decodingTree.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.left + var-kind field left + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable this.decodingTree.right.right + var-kind field right + enclosing-var this.decodingTree.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanCodec:::OBJECT 1 +variable inputBitStream + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable inputBitStream[..] + var-kind array + enclosing-var inputBitStream + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable inputBitStream[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var inputBitStream[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args inputBitStream[] + flags synthetic classname non_null + comparability 22 +variable inputBitStream.getClass().getName() + var-kind function getClass().getName() + enclosing-var inputBitStream + dec-type java.lang.Class + rep-type java.lang.String + function-args inputBitStream + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt six170.HuffmanCodec:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type six170.HuffmanCodec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.encodingMap var-kind field encodingMap @@ -2605,7 +3919,7 @@ variable this.encodingMap.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.encodingMap - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.decodingTree var-kind field decodingTree @@ -2631,7 +3945,7 @@ variable this.decodingTree.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.decodingTree.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.decodingTree.symbol.frequency var-kind field frequency @@ -2691,7 +4005,7 @@ variable this.decodingTree.right.right ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER ppt-type enter variable symbol - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode flags is_param @@ -2708,7 +4022,7 @@ variable symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable symbol.frequency var-kind field frequency @@ -2721,10 +4035,10 @@ ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -2747,7 +4061,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -2784,7 +4098,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -2877,7 +4191,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -2944,7 +4258,7 @@ variable this.right.right.right comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable symbol - var-kind variable + var-kind variable dec-type six170.HuffmanSymbol rep-type hashcode flags is_param @@ -2961,7 +4275,7 @@ variable symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable symbol.frequency var-kind field frequency @@ -2970,177 +4284,279 @@ variable symbol.frequency rep-type int comparability 22 -ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanTree,\_six170.HuffmanTree):::ENTER -ppt-type enter -variable left - var-kind variable +ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXCEPTION26 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 -variable left.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol var-kind field symbol - enclosing-var left + enclosing-var this dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable left.symbol.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol var-kind field symbol - enclosing-var left.symbol + enclosing-var this.symbol dec-type java.lang.Object rep-type hashcode comparability 22 -variable left.symbol.symbol.getClass().getName() + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() var-kind function getClass().getName() - enclosing-var left.symbol.symbol + enclosing-var this.symbol.symbol dec-type java.lang.Class rep-type java.lang.String - function-args left.symbol.symbol - flags synthetic classname + function-args this.symbol.symbol + flags synthetic classname non_null comparability 22 -variable left.symbol.frequency + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency var-kind field frequency - enclosing-var left.symbol + enclosing-var this.symbol dec-type int rep-type int comparability 22 -variable left.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.left var-kind field left - enclosing-var left + enclosing-var this dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable left.left.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol var-kind field symbol - enclosing-var left.left + enclosing-var this.left dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable left.left.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left var-kind field left - enclosing-var left.left + enclosing-var this.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable left.left.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right var-kind field right - enclosing-var left.left + enclosing-var this.left.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable left.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right var-kind field right - enclosing-var left + enclosing-var this.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable left.right.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol var-kind field symbol - enclosing-var left.right + enclosing-var this.left.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable left.right.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left var-kind field left - enclosing-var left.right + enclosing-var this.left.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable left.right.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right var-kind field right - enclosing-var left.right + enclosing-var this.left.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable right - var-kind variable + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this dec-type six170.HuffmanTree rep-type hashcode - flags is_param comparability 22 -variable right.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol var-kind field symbol - enclosing-var right + enclosing-var this.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable right.symbol.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol var-kind field symbol - enclosing-var right.symbol + enclosing-var this.right.symbol dec-type java.lang.Object rep-type hashcode comparability 22 -variable right.symbol.symbol.getClass().getName() + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() var-kind function getClass().getName() - enclosing-var right.symbol.symbol + enclosing-var this.right.symbol.symbol dec-type java.lang.Class rep-type java.lang.String - function-args right.symbol.symbol - flags synthetic classname + function-args this.right.symbol.symbol + flags synthetic classname non_null comparability 22 -variable right.symbol.frequency + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency var-kind field frequency - enclosing-var right.symbol + enclosing-var this.right.symbol dec-type int rep-type int comparability 22 -variable right.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left var-kind field left - enclosing-var right + enclosing-var this.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable right.left.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol var-kind field symbol - enclosing-var right.left + enclosing-var this.right.left dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable right.left.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left var-kind field left - enclosing-var right.left + enclosing-var this.right.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable right.left.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right var-kind field right - enclosing-var right.left + enclosing-var this.right.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable right.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right var-kind field right - enclosing-var right + enclosing-var this.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable right.right.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol var-kind field symbol - enclosing-var right.right + enclosing-var this.right.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable right.right.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left var-kind field left - enclosing-var right.right + enclosing-var this.right.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable right.right.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right var-kind field right - enclosing-var right.right + enclosing-var this.right.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable symbol + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param + comparability 22 +variable symbol.symbol + var-kind field symbol + enclosing-var symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args symbol.symbol + flags synthetic classname non_null + comparability 22 +variable symbol.frequency + var-kind field frequency + enclosing-var symbol + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanTree,\_six170.HuffmanTree):::EXIT43 +ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -3163,7 +4579,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -3200,7 +4616,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -3293,7 +4709,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -3359,8 +4775,49 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 +variable symbol + var-kind variable + dec-type six170.HuffmanSymbol + rep-type hashcode + flags is_param + comparability 22 +variable symbol.symbol + var-kind field symbol + enclosing-var symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args symbol.symbol + flags synthetic classname non_null + comparability 22 +variable symbol.frequency + var-kind field frequency + enclosing-var symbol + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanTree,\_six170.HuffmanTree):::ENTER +ppt-type enter variable left - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode flags is_param @@ -3383,7 +4840,7 @@ variable left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable left.symbol.frequency var-kind field frequency @@ -3440,7 +4897,7 @@ variable left.right.right rep-type hashcode comparability 22 variable right - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode flags is_param @@ -3463,7 +4920,7 @@ variable right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable right.symbol.frequency var-kind field frequency @@ -3520,14 +4977,14 @@ variable right.right.right rep-type hashcode comparability 22 -ppt six170.HuffmanTree.frequency():::ENTER -ppt-type enter +ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanTree,\_six170.HuffmanTree):::EXIT43 +ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -3550,7 +5007,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -3587,7 +5044,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -3680,7 +5137,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -3746,15 +5203,175 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 +variable left + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable left.symbol + var-kind field symbol + enclosing-var left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.symbol.symbol + var-kind field symbol + enclosing-var left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args left.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable left.symbol.frequency + var-kind field frequency + enclosing-var left.symbol + dec-type int + rep-type int + comparability 22 +variable left.left + var-kind field left + enclosing-var left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.left.symbol + var-kind field symbol + enclosing-var left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.left.left + var-kind field left + enclosing-var left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.left.right + var-kind field right + enclosing-var left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right + var-kind field right + enclosing-var left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right.symbol + var-kind field symbol + enclosing-var left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.right.left + var-kind field left + enclosing-var left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right.right + var-kind field right + enclosing-var left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable right.symbol + var-kind field symbol + enclosing-var right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.symbol.symbol + var-kind field symbol + enclosing-var right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args right.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable right.symbol.frequency + var-kind field frequency + enclosing-var right.symbol + dec-type int + rep-type int + comparability 22 +variable right.left + var-kind field left + enclosing-var right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.left.symbol + var-kind field symbol + enclosing-var right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.left.left + var-kind field left + enclosing-var right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.left.right + var-kind field right + enclosing-var right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right + var-kind field right + enclosing-var right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right.symbol + var-kind field symbol + enclosing-var right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.right.left + var-kind field left + enclosing-var right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right.right + var-kind field right + enclosing-var right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 -ppt six170.HuffmanTree.frequency():::EXIT51 +ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanTree,\_six170.HuffmanTree):::EXCEPTION39 ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -3777,7 +5394,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -3814,7 +5431,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -3907,7 +5524,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -3973,20 +5590,187 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 -variable return - var-kind return +variable left + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable left.symbol + var-kind field symbol + enclosing-var left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.symbol.symbol + var-kind field symbol + enclosing-var left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args left.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable left.symbol.frequency + var-kind field frequency + enclosing-var left.symbol + dec-type int + rep-type int + comparability 22 +variable left.left + var-kind field left + enclosing-var left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.left.symbol + var-kind field symbol + enclosing-var left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.left.left + var-kind field left + enclosing-var left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.left.right + var-kind field right + enclosing-var left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right + var-kind field right + enclosing-var left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right.symbol + var-kind field symbol + enclosing-var left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.right.left + var-kind field left + enclosing-var left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right.right + var-kind field right + enclosing-var left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable right.symbol + var-kind field symbol + enclosing-var right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.symbol.symbol + var-kind field symbol + enclosing-var right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args right.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable right.symbol.frequency + var-kind field frequency + enclosing-var right.symbol dec-type int rep-type int comparability 22 +variable right.left + var-kind field left + enclosing-var right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.left.symbol + var-kind field symbol + enclosing-var right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.left.left + var-kind field left + enclosing-var right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.left.right + var-kind field right + enclosing-var right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right + var-kind field right + enclosing-var right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right.symbol + var-kind field symbol + enclosing-var right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.right.left + var-kind field left + enclosing-var right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right.right + var-kind field right + enclosing-var right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.frequency():::EXIT53 +ppt six170.HuffmanTree.HuffmanTree(six170.HuffmanTree,\_six170.HuffmanTree):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -4009,7 +5793,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -4046,7 +5830,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -4139,7 +5923,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -4205,20 +5989,187 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 -variable return - var-kind return +variable left + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable left.symbol + var-kind field symbol + enclosing-var left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.symbol.symbol + var-kind field symbol + enclosing-var left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args left.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable left.symbol.frequency + var-kind field frequency + enclosing-var left.symbol + dec-type int + rep-type int + comparability 22 +variable left.left + var-kind field left + enclosing-var left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.left.symbol + var-kind field symbol + enclosing-var left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.left.left + var-kind field left + enclosing-var left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.left.right + var-kind field right + enclosing-var left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right + var-kind field right + enclosing-var left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right.symbol + var-kind field symbol + enclosing-var left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable left.right.left + var-kind field left + enclosing-var left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable left.right.right + var-kind field right + enclosing-var left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param + comparability 22 +variable right.symbol + var-kind field symbol + enclosing-var right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.symbol.symbol + var-kind field symbol + enclosing-var right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args right.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable right.symbol.frequency + var-kind field frequency + enclosing-var right.symbol dec-type int rep-type int comparability 22 +variable right.left + var-kind field left + enclosing-var right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.left.symbol + var-kind field symbol + enclosing-var right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.left.left + var-kind field left + enclosing-var right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.left.right + var-kind field right + enclosing-var right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right + var-kind field right + enclosing-var right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right.symbol + var-kind field symbol + enclosing-var right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable right.right.left + var-kind field left + enclosing-var right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable right.right.right + var-kind field right + enclosing-var right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.symbol():::ENTER +ppt six170.HuffmanTree.frequency():::ENTER ppt-type enter parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -4241,7 +6192,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -4278,7 +6229,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -4371,7 +6322,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -4438,14 +6389,14 @@ variable this.right.right.right comparability 22 parent six170.HuffmanTree:::OBJECT 1 -ppt six170.HuffmanTree.symbol():::EXIT65 +ppt six170.HuffmanTree.frequency():::EXIT51 ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -4468,7 +6419,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -4505,7 +6456,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -4598,7 +6549,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -4665,27 +6616,19 @@ variable this.right.right.right comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable return - var-kind return - dec-type java.lang.Object - rep-type hashcode - comparability 22 -variable return.getClass().getName() - var-kind function getClass().getName() - enclosing-var return - dec-type java.lang.Class - rep-type java.lang.String - function-args return - flags synthetic classname + var-kind return + dec-type int + rep-type int comparability 22 -ppt six170.HuffmanTree.symbol():::EXIT63 +ppt six170.HuffmanTree.frequency():::EXIT53 ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -4708,7 +6651,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -4745,7 +6688,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -4838,7 +6781,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -4905,27 +6848,19 @@ variable this.right.right.right comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable return - var-kind return - dec-type java.lang.Object - rep-type hashcode - comparability 22 -variable return.getClass().getName() - var-kind function getClass().getName() - enclosing-var return - dec-type java.lang.Class - rep-type java.lang.String - function-args return - flags synthetic classname + var-kind return + dec-type int + rep-type int comparability 22 -ppt six170.HuffmanTree.left():::ENTER -ppt-type enter +ppt six170.HuffmanTree.frequency():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -4948,7 +6883,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -4985,7 +6920,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -5078,7 +7013,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -5144,15 +7079,27 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.left():::EXIT74 -ppt-type subexit +ppt six170.HuffmanTree.symbol():::ENTER +ppt-type enter parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -5175,7 +7122,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -5212,7 +7159,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -5305,7 +7252,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -5371,94 +7318,255 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 -variable return - var-kind return + +ppt six170.HuffmanTree.symbol():::EXIT65 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable dec-type six170.HuffmanTree rep-type hashcode + flags is_param non_null comparability 22 -variable return.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol var-kind field symbol - enclosing-var return + enclosing-var this dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable return.symbol.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol var-kind field symbol - enclosing-var return.symbol + enclosing-var this.symbol dec-type java.lang.Object rep-type hashcode comparability 22 -variable return.symbol.symbol.getClass().getName() + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() var-kind function getClass().getName() - enclosing-var return.symbol.symbol + enclosing-var this.symbol.symbol dec-type java.lang.Class rep-type java.lang.String - function-args return.symbol.symbol - flags synthetic classname + function-args this.symbol.symbol + flags synthetic classname non_null comparability 22 -variable return.symbol.frequency + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency var-kind field frequency - enclosing-var return.symbol + enclosing-var this.symbol dec-type int rep-type int comparability 22 -variable return.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.left var-kind field left - enclosing-var return + enclosing-var this dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable return.left.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol var-kind field symbol - enclosing-var return.left + enclosing-var this.left dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable return.left.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left var-kind field left - enclosing-var return.left + enclosing-var this.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable return.left.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right var-kind field right - enclosing-var return.left + enclosing-var this.left.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable return.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right var-kind field right - enclosing-var return + enclosing-var this.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable return.right.symbol + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol var-kind field symbol - enclosing-var return.right + enclosing-var this.left.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 -variable return.right.left + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left var-kind field left - enclosing-var return.right + enclosing-var this.left.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 -variable return.right.right + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right var-kind field right - enclosing-var return.right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.right():::ENTER -ppt-type enter +ppt six170.HuffmanTree.symbol():::EXIT63 +ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -5481,7 +7589,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -5518,7 +7626,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -5611,7 +7719,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -5677,15 +7785,28 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.right():::EXIT82 +ppt six170.HuffmanTree.symbol():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -5708,7 +7829,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -5745,7 +7866,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -5838,7 +7959,473 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanTree.left():::ENTER +ppt-type enter +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 + +ppt six170.HuffmanTree.left():::EXIT74 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -5905,7 +8492,7 @@ variable this.right.right.right comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable return - var-kind return + var-kind return dec-type six170.HuffmanTree rep-type hashcode comparability 22 @@ -5927,7 +8514,7 @@ variable return.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.symbol.frequency var-kind field frequency @@ -5984,14 +8571,14 @@ variable return.right.right rep-type hashcode comparability 22 -ppt six170.HuffmanTree.checkRep():::ENTER -ppt-type enter +ppt six170.HuffmanTree.left():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -6014,7 +8601,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -6051,7 +8638,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -6144,7 +8731,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -6210,15 +8797,27 @@ variable this.right.right.right rep-type hashcode comparability 22 parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt six170.HuffmanTree.checkRep():::EXIT97 -ppt-type subexit +ppt six170.HuffmanTree.right():::ENTER +ppt-type enter parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol @@ -6241,7 +8840,7 @@ variable this.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency @@ -6278,7 +8877,7 @@ variable this.left.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency @@ -6371,7 +8970,7 @@ variable this.right.symbol.symbol.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency @@ -6438,4812 +9037,1976 @@ variable this.right.right.right comparability 22 parent six170.HuffmanTree:::OBJECT 1 -ppt six170.HuffmanTree:::OBJECT -ppt-type object +ppt six170.HuffmanTree.right():::EXIT82 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.HuffmanTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.symbol var-kind field symbol enclosing-var this dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.symbol var-kind field symbol enclosing-var this.symbol dec-type java.lang.Object rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.symbol.getClass().getName() var-kind function getClass().getName() enclosing-var this.symbol.symbol dec-type java.lang.Class rep-type java.lang.String function-args this.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.symbol.frequency var-kind field frequency enclosing-var this.symbol dec-type int rep-type int comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left var-kind field left enclosing-var this dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol var-kind field symbol enclosing-var this.left dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.symbol var-kind field symbol enclosing-var this.left.symbol dec-type java.lang.Object rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.symbol.getClass().getName() var-kind function getClass().getName() enclosing-var this.left.symbol.symbol dec-type java.lang.Class rep-type java.lang.String function-args this.left.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.symbol.frequency var-kind field frequency enclosing-var this.left.symbol dec-type int rep-type int comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.left var-kind field left enclosing-var this.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.left.symbol var-kind field symbol enclosing-var this.left.left dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.left.left var-kind field left enclosing-var this.left.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.left.right var-kind field right enclosing-var this.left.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.right var-kind field right enclosing-var this.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.right.symbol var-kind field symbol enclosing-var this.left.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.right.left var-kind field left enclosing-var this.left.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.left.right.right var-kind field right enclosing-var this.left.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right var-kind field right enclosing-var this dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol var-kind field symbol enclosing-var this.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.symbol var-kind field symbol enclosing-var this.right.symbol dec-type java.lang.Object rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.symbol.getClass().getName() var-kind function getClass().getName() enclosing-var this.right.symbol.symbol dec-type java.lang.Class rep-type java.lang.String function-args this.right.symbol.symbol - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.symbol.frequency var-kind field frequency enclosing-var this.right.symbol dec-type int rep-type int comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.left var-kind field left enclosing-var this.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.left.symbol var-kind field symbol enclosing-var this.right.left dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.left.left var-kind field left enclosing-var this.right.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.left.right var-kind field right enclosing-var this.right.left dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.right var-kind field right enclosing-var this.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.right.symbol var-kind field symbol enclosing-var this.right.right dec-type six170.HuffmanSymbol rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.right.left var-kind field left enclosing-var this.right.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 variable this.right.right.right var-kind field right enclosing-var this.right.right dec-type six170.HuffmanTree rep-type hashcode comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable return + var-kind return + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable return.symbol + var-kind field symbol + enclosing-var return + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable return.symbol.symbol + var-kind field symbol + enclosing-var return.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args return.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable return.symbol.frequency + var-kind field frequency + enclosing-var return.symbol + dec-type int + rep-type int + comparability 22 +variable return.left + var-kind field left + enclosing-var return + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable return.left.symbol + var-kind field symbol + enclosing-var return.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable return.left.left + var-kind field left + enclosing-var return.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable return.left.right + var-kind field right + enclosing-var return.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable return.right + var-kind field right + enclosing-var return + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable return.right.symbol + var-kind field symbol + enclosing-var return.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable return.right.left + var-kind field left + enclosing-var return.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable return.right.right + var-kind field right + enclosing-var return.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 -six170.HuffmanCodec.HuffmanCodec(java.util.List):::ENTER -this_invocation_nonce -16 -huffmanSymbols -1326231868 -1 -huffmanSymbols[..] -[202918529 1574116 1582525299 1097499032 340475003 1745169531 91454439 1335593353 1100231132 1180110925 1799775865 935344593 1964711431 2090220954 42217019 646946680] -1 -huffmanSymbols[..].getClass().getName() -["six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol"] -1 -huffmanSymbols.getClass().getName() -"java.util.ArrayList" -1 - -six170.HuffmanCodec.buildDecodingTree(java.util.List):::ENTER -this_invocation_nonce -17 -huffmanSymbols -1326231868 -1 -huffmanSymbols[..] -[202918529 1574116 1582525299 1097499032 340475003 1745169531 91454439 1335593353 1100231132 1180110925 1799775865 935344593 1964711431 2090220954 42217019 646946680] -1 -huffmanSymbols[..].getClass().getName() -["six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol"] -1 -huffmanSymbols.getClass().getName() -"java.util.ArrayList" -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -18 -symbol -202918529 -1 -symbol.symbol -1297548602 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -18 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -202918529 -1 -symbol.symbol -1297548602 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -19 -symbol -1574116 -1 -symbol.symbol -247113402 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 +ppt six170.HuffmanTree.right():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -19 -this -470905757 -1 -this.symbol -1574116 -1 -this.symbol.symbol -247113402 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1574116 -1 -symbol.symbol -247113402 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 +ppt six170.HuffmanTree.checkRep():::ENTER +ppt-type enter +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -20 -symbol -1582525299 -1 -symbol.symbol -686363848 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -5 -1 +ppt six170.HuffmanTree.checkRep():::EXIT97 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -20 -this -1035818704 -1 -this.symbol -1582525299 -1 -this.symbol.symbol -686363848 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -5 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1582525299 -1 -symbol.symbol -686363848 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -5 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -21 -symbol -1097499032 -1 -symbol.symbol -917732198 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -21 -this -1502515546 -1 -this.symbol -1097499032 -1 -this.symbol.symbol -917732198 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1097499032 -1 -symbol.symbol -917732198 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -22 -symbol -340475003 -1 -symbol.symbol -929186741 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -22 -this -518576549 -1 -this.symbol -340475003 -1 -this.symbol.symbol -929186741 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -340475003 -1 -symbol.symbol -929186741 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -23 -symbol -1745169531 -1 -symbol.symbol -1466939813 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -23 -this -1227419517 -1 -this.symbol -1745169531 -1 -this.symbol.symbol -1466939813 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1745169531 -1 -symbol.symbol -1466939813 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -24 -symbol -91454439 -1 -symbol.symbol -732656791 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -3 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -24 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -91454439 -1 -symbol.symbol -732656791 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -3 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -25 -symbol -1335593353 -1 -symbol.symbol -1623948668 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -6 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -25 -this -837375677 -1 -this.symbol -1335593353 -1 -this.symbol.symbol -1623948668 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -6 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1335593353 -1 -symbol.symbol -1623948668 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -6 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -26 -symbol -1100231132 -1 -symbol.symbol -1818405427 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -3 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -26 -this -1312664548 -1 -this.symbol -1100231132 -1 -this.symbol.symbol -1818405427 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1100231132 -1 -symbol.symbol -1818405427 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -3 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -27 -symbol -1180110925 -1 -symbol.symbol -1750434854 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -27 -this -853552605 -1 -this.symbol -1180110925 -1 -this.symbol.symbol -1750434854 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1180110925 -1 -symbol.symbol -1750434854 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -28 -symbol -1799775865 -1 -symbol.symbol -2112836430 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -28 -this -467870275 -1 -this.symbol -1799775865 -1 -this.symbol.symbol -2112836430 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1799775865 -1 -symbol.symbol -2112836430 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -2 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -29 -symbol -935344593 -1 -symbol.symbol -1525795060 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -3 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -29 -this -1558080258 -1 -this.symbol -935344593 -1 -this.symbol.symbol -1525795060 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -935344593 -1 -symbol.symbol -1525795060 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -3 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -30 -symbol -1964711431 -1 -symbol.symbol -756278511 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -30 -this -239304688 -1 -this.symbol -1964711431 -1 -this.symbol.symbol -756278511 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -1964711431 -1 -symbol.symbol -756278511 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -31 -symbol -2090220954 -1 -symbol.symbol -1196464545 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -31 -this -1904504032 -1 -this.symbol -2090220954 -1 -this.symbol.symbol -1196464545 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -2090220954 -1 -symbol.symbol -1196464545 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -32 -symbol -42217019 -1 -symbol.symbol -1806076252 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -32 -this -755507289 -1 -this.symbol -42217019 -1 -this.symbol.symbol -1806076252 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -42217019 -1 -symbol.symbol -1806076252 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER -this_invocation_nonce -33 -symbol -646946680 -1 -symbol.symbol -871834823 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 -this_invocation_nonce -33 -this -1887685159 -1 -this.symbol -646946680 -1 -this.symbol.symbol -871834823 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -symbol -646946680 -1 -symbol.symbol -871834823 -1 -symbol.symbol.getClass().getName() -"java.lang.Character" -1 -symbol.frequency -1 -1 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -34 -nodeList -1548550182 -1 -nodeList[..] -[1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -35 -this -470905757 -1 -this.symbol -1574116 -1 -this.symbol.symbol -247113402 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -36 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -36 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -35 -this -470905757 -1 -this.symbol -1574116 -1 -this.symbol.symbol -247113402 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -37 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -38 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -38 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -37 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -1 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -39 -this -1035818704 -1 -this.symbol -1582525299 -1 -this.symbol.symbol -686363848 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -5 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -40 -this -1582525299 -1 -this.symbol -686363848 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -5 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -40 -this -1582525299 -1 -this.symbol -686363848 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -5 -1 -return -5 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -39 -this -1035818704 -1 -this.symbol -1582525299 -1 -this.symbol.symbol -686363848 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -5 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -5 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -41 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -42 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -42 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -41 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -1 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -43 -this -1502515546 -1 -this.symbol -1097499032 -1 -this.symbol.symbol -917732198 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -44 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -44 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -43 -this -1502515546 -1 -this.symbol -1097499032 -1 -this.symbol.symbol -917732198 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -45 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -46 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -46 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -45 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -1 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -47 -this -518576549 -1 -this.symbol -340475003 -1 -this.symbol.symbol -929186741 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -48 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -48 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -47 -this -518576549 -1 -this.symbol -340475003 -1 -this.symbol.symbol -929186741 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -49 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -50 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -50 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -49 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -1 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -51 -this -1227419517 -1 -this.symbol -1745169531 -1 -this.symbol.symbol -1466939813 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -52 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -52 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -51 -this -1227419517 -1 -this.symbol -1745169531 -1 -this.symbol.symbol -1466939813 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -53 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -54 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -54 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -53 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -1 -1 +ppt six170.HuffmanTree.checkRep():::EXCEPTION89 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -55 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 +ppt six170.HuffmanTree.checkRep():::EXCEPTION94 +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt six170.HuffmanTree.checkRep():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.HuffmanTree:::OBJECT 1 +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + parent six170.HuffmanTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -six170.HuffmanSymbol.frequency():::ENTER +ppt six170.HuffmanTree:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type six170.HuffmanTree + rep-type hashcode + flags is_param non_null + comparability 22 +variable this.symbol + var-kind field symbol + enclosing-var this + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.symbol.symbol + var-kind field symbol + enclosing-var this.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable this.symbol.frequency + var-kind field frequency + enclosing-var this.symbol + dec-type int + rep-type int + comparability 22 +variable this.left + var-kind field left + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.left.symbol + var-kind field symbol + enclosing-var this.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.left.symbol.symbol + var-kind field symbol + enclosing-var this.left.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.left.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable this.left.symbol.frequency + var-kind field frequency + enclosing-var this.left.symbol + dec-type int + rep-type int + comparability 22 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.left.left.symbol + var-kind field symbol + enclosing-var this.left.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.left.right.symbol + var-kind field symbol + enclosing-var this.left.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right + var-kind field right + enclosing-var this + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right.symbol + var-kind field symbol + enclosing-var this.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.right.symbol.symbol + var-kind field symbol + enclosing-var this.right.symbol + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.right.symbol.symbol.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.symbol.symbol + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.symbol.symbol + flags synthetic classname non_null + comparability 22 +variable this.right.symbol.frequency + var-kind field frequency + enclosing-var this.right.symbol + dec-type int + rep-type int + comparability 22 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right.left.symbol + var-kind field symbol + enclosing-var this.right.left + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right.right.symbol + var-kind field symbol + enclosing-var this.right.right + dec-type six170.HuffmanSymbol + rep-type hashcode + comparability 22 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type six170.HuffmanTree + rep-type hashcode + comparability 22 + +six170.HuffmanCodec.HuffmanCodec(java.util.List):::ENTER this_invocation_nonce -56 -this -91454439 +16 +huffmanSymbols +519821334 1 -this.symbol -732656791 +huffmanSymbols[..] +[901506536 1513712028 1456208737 13648335 453211571 757108857 1802598046 240650537 2088051243 41903949 1209271652 2083562754 557041912 985922955 1784662007 509886383] 1 -this.symbol.getClass().getName() -"java.lang.Character" +huffmanSymbols[..].getClass().getName() +["six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol"] 1 -this.frequency -3 +huffmanSymbols.getClass().getName() +"java.util.ArrayList" 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanCodec.buildDecodingTree(java.util.List):::ENTER this_invocation_nonce -56 -this -91454439 -1 -this.symbol -732656791 +17 +huffmanSymbols +519821334 1 -this.symbol.getClass().getName() -"java.lang.Character" +huffmanSymbols[..] +[901506536 1513712028 1456208737 13648335 453211571 757108857 1802598046 240650537 2088051243 41903949 1209271652 2083562754 557041912 985922955 1784662007 509886383] 1 -this.frequency -3 +huffmanSymbols[..].getClass().getName() +["six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol" "six170.HuffmanSymbol"] 1 -return -3 +huffmanSymbols.getClass().getName() +"java.util.ArrayList" 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -55 -this -511909137 -1 -this.symbol -91454439 +18 +symbol +901506536 1 -this.symbol.symbol -732656791 +symbol.symbol +2109957412 1 -this.symbol.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null +symbol.frequency 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -57 +18 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -11329,159 +11092,52 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -58 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -58 -this -202918529 +symbol +901506536 1 -this.symbol -1297548602 +symbol.symbol +2109957412 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 -1 -return +symbol.frequency 1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -57 -this -1987411885 -1 -this.symbol -202918529 +19 +symbol +1513712028 1 -this.symbol.symbol -1297548602 +symbol.symbol +747464370 1 -this.symbol.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical +symbol.frequency 2 -return -1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -59 +19 this -837375677 +1014328909 1 this.symbol -1335593353 +1513712028 1 this.symbol.symbol -1623948668 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -11561,59 +11217,52 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -60 -this -1335593353 +symbol +1513712028 1 -this.symbol -1623948668 +symbol.symbol +747464370 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -6 +symbol.frequency +2 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -60 -this -1335593353 +20 +symbol +1456208737 1 -this.symbol -1623948668 +symbol.symbol +1018547642 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -6 -1 -return -6 +symbol.frequency +5 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -59 +20 this -837375677 +2081303229 1 this.symbol -1335593353 +1456208737 1 this.symbol.symbol -1623948668 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +5 1 this.left null @@ -11693,27 +11342,52 @@ nonsensical this.right.right.right nonsensical 2 -return -6 +symbol +1456208737 +1 +symbol.symbol +1018547642 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +5 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -61 +21 +symbol +13648335 +1 +symbol.symbol +288665596 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +2 +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 +this_invocation_nonce +21 this -1987411885 +1223685984 1 this.symbol -202918529 +13648335 1 this.symbol.symbol -1297548602 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -11793,59 +11467,52 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -62 -this -202918529 +symbol +13648335 1 -this.symbol -1297548602 +symbol.symbol +288665596 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 +symbol.frequency +2 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -62 -this -202918529 +22 +symbol +453211571 1 -this.symbol -1297548602 +symbol.symbol +312116338 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 -1 -return -1 +symbol.frequency +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -61 +22 this -1987411885 +1076835071 1 this.symbol -202918529 +453211571 1 this.symbol.symbol -1297548602 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -11925,27 +11592,52 @@ nonsensical this.right.right.right nonsensical 2 -return +symbol +453211571 1 +symbol.symbol +312116338 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -63 +23 +symbol +757108857 +1 +symbol.symbol +796684896 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +2 +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 +this_invocation_nonce +23 this -1312664548 +1463757745 1 this.symbol -1100231132 +757108857 1 this.symbol.symbol -1818405427 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -12025,53 +11717,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -64 -this -1100231132 +symbol +757108857 1 -this.symbol -1818405427 +symbol.symbol +796684896 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -3 +symbol.frequency +2 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -64 -this -1100231132 +24 +symbol +1802598046 1 -this.symbol -1818405427 +symbol.symbol +1809787067 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -3 -1 -return +symbol.frequency 3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -63 +24 this -1312664548 +1525262377 1 this.symbol -1100231132 +1802598046 1 this.symbol.symbol -1818405427 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -12157,159 +11842,177 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -65 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 +symbol +1802598046 +1 +symbol.symbol +1809787067 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +3 +1 -six170.HuffmanSymbol.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -66 -this -202918529 +25 +symbol +240650537 1 -this.symbol -1297548602 +symbol.symbol +659748578 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 +symbol.frequency +6 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -66 +25 this -202918529 +1837760739 1 this.symbol -1297548602 +240650537 1 -this.symbol.getClass().getName() +this.symbol.symbol +659748578 +1 +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +this.symbol.frequency +6 1 +this.left +null 1 -return +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null 1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +symbol +240650537 +1 +symbol.symbol +659748578 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +6 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -65 +26 +symbol +2088051243 +1 +symbol.symbol +483422889 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +3 +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 +this_invocation_nonce +26 this -1987411885 +1418428263 1 this.symbol -202918529 +2088051243 1 this.symbol.symbol -1297548602 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -12389,21 +12092,46 @@ nonsensical this.right.right.right nonsensical 2 -return +symbol +2088051243 +1 +symbol.symbol +483422889 1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -67 +27 +symbol +41903949 +1 +symbol.symbol +1277181601 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +2 +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 +this_invocation_nonce +27 this -853552605 +2059904228 1 this.symbol -1180110925 +41903949 1 this.symbol.symbol -1750434854 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -12489,53 +12217,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -68 -this -1180110925 +symbol +41903949 1 -this.symbol -1750434854 +symbol.symbol +1277181601 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +symbol.frequency 2 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -68 -this -1180110925 +28 +symbol +1209271652 1 -this.symbol -1750434854 +symbol.symbol +488970385 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -2 -1 -return +symbol.frequency 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -67 +28 this -853552605 +1836643189 1 this.symbol -1180110925 +1209271652 1 this.symbol.symbol -1750434854 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -12621,27 +12342,52 @@ nonsensical this.right.right.right nonsensical 2 -return +symbol +1209271652 +1 +symbol.symbol +488970385 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -69 +29 +symbol +2083562754 +1 +symbol.symbol +93122545 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +3 +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 +this_invocation_nonce +29 this -1987411885 +1355316001 1 this.symbol -202918529 +2083562754 1 this.symbol.symbol -1297548602 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -12721,53 +12467,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -70 -this -202918529 +symbol +2083562754 1 -this.symbol -1297548602 +symbol.symbol +93122545 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 +symbol.frequency +3 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -70 -this -202918529 +30 +symbol +557041912 1 -this.symbol -1297548602 +symbol.symbol +1239731077 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 -1 -return +symbol.frequency 1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -69 +30 this -1987411885 +1597462040 1 this.symbol -202918529 +557041912 1 this.symbol.symbol -1297548602 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -12853,27 +12592,52 @@ nonsensical this.right.right.right nonsensical 2 -return +symbol +557041912 +1 +symbol.symbol +1239731077 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency 1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -71 +31 +symbol +985922955 +1 +symbol.symbol +1134712904 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +1 +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 +this_invocation_nonce +31 this -467870275 +403716510 1 this.symbol -1799775865 +985922955 1 this.symbol.symbol -2112836430 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -12953,153 +12717,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -72 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -72 -this -1799775865 +symbol +985922955 1 -this.symbol -2112836430 +symbol.symbol +1134712904 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -2 +symbol.frequency 1 -return -2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -71 -this -467870275 -1 -this.symbol -1799775865 +32 +symbol +1784662007 1 -this.symbol.symbol -2112836430 +symbol.symbol +1435804085 1 -this.symbol.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -2 -1 -this.left -null +symbol.frequency 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -73 +32 this -1987411885 +853119666 1 this.symbol -202918529 +1784662007 1 this.symbol.symbol -1297548602 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -13185,53 +12842,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -74 -this -202918529 +symbol +1784662007 1 -this.symbol -1297548602 +symbol.symbol +1435804085 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +symbol.frequency 1 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::ENTER this_invocation_nonce -74 -this -202918529 +33 +symbol +509886383 1 -this.symbol -1297548602 +symbol.symbol +997110508 1 -this.symbol.getClass().getName() +symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -1 -1 -return +symbol.frequency 1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.HuffmanTree(six170.HuffmanSymbol):::EXIT29 this_invocation_nonce -73 +33 this -1987411885 +559670971 1 this.symbol -202918529 +509886383 1 this.symbol.symbol -1297548602 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -13317,27 +12967,52 @@ nonsensical this.right.right.right nonsensical 2 -return +symbol +509886383 +1 +symbol.symbol +997110508 +1 +symbol.symbol.getClass().getName() +"java.lang.Character" +1 +symbol.frequency +1 +1 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +34 +nodeList +1144648478 +1 +nodeList[..] +[1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -75 +35 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -13420,56 +13095,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -76 +36 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -76 +36 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -75 +35 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -13550,20 +13225,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -77 +37 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -13652,12 +13327,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -78 +38 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -13668,12 +13343,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -78 +38 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -13687,15 +13362,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -77 +37 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -13787,21 +13462,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -79 +39 this -239304688 +2081303229 1 this.symbol -1964711431 +1456208737 1 this.symbol.symbol -756278511 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +5 1 this.left null @@ -13884,56 +13559,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -80 +40 this -1964711431 +1456208737 1 this.symbol -756278511 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -80 +40 this -1964711431 +1456208737 1 this.symbol -756278511 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +5 1 return -1 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -79 +39 this -239304688 +2081303229 1 this.symbol -1964711431 +1456208737 1 this.symbol.symbol -756278511 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +5 1 this.left null @@ -14014,20 +13689,20 @@ this.right.right.right nonsensical 2 return -1 +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -81 +41 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -14116,12 +13791,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -82 +42 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -14132,12 +13807,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -82 +42 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -14151,15 +13826,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -81 +41 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -14251,15 +13926,247 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -83 +43 +this +1223685984 +1 +this.symbol +13648335 +1 +this.symbol.symbol +288665596 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +44 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +44 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +43 this -1904504032 +1223685984 1 this.symbol -2090220954 +13648335 1 this.symbol.symbol -1196464545 +288665596 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +45 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -14348,12 +14255,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -84 +46 this -2090220954 +901506536 1 this.symbol -1196464545 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -14364,12 +14271,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -84 +46 this -2090220954 +901506536 1 this.symbol -1196464545 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -14383,15 +14290,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -83 +45 this -1904504032 +1307096070 1 this.symbol -2090220954 +901506536 1 this.symbol.symbol -1196464545 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -14483,21 +14390,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -85 +47 this -1987411885 +1076835071 1 this.symbol -202918529 +453211571 1 this.symbol.symbol -1297548602 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -14580,56 +14487,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -86 +48 this -202918529 +453211571 1 this.symbol -1297548602 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -86 +48 this -202918529 +453211571 1 this.symbol -1297548602 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -85 +47 this -1987411885 +1076835071 1 this.symbol -202918529 +453211571 1 this.symbol.symbol -1297548602 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -14710,20 +14617,20 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -87 +49 this -755507289 +1307096070 1 this.symbol -42217019 +901506536 1 this.symbol.symbol -1806076252 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -14812,12 +14719,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -88 +50 this -42217019 +901506536 1 this.symbol -1806076252 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -14828,12 +14735,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -88 +50 this -42217019 +901506536 1 this.symbol -1806076252 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -14847,15 +14754,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -87 +49 this -755507289 +1307096070 1 this.symbol -42217019 +901506536 1 this.symbol.symbol -1806076252 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -14947,15 +14854,247 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -89 +51 +this +1463757745 +1 +this.symbol +757108857 +1 +this.symbol.symbol +796684896 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +52 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +52 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +51 this -1987411885 +1463757745 1 this.symbol -202918529 +757108857 1 this.symbol.symbol -1297548602 +796684896 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +53 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -15044,12 +15183,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -90 +54 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -15060,12 +15199,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -90 +54 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -15079,15 +15218,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -89 +53 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -15179,21 +15318,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -91 +55 this -1887685159 +1525262377 1 this.symbol -646946680 +1802598046 1 this.symbol.symbol -871834823 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -15276,56 +15415,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -92 +56 this -646946680 +1802598046 1 this.symbol -871834823 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -92 +56 this -646946680 +1802598046 1 this.symbol -871834823 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -91 +55 this -1887685159 +1525262377 1 this.symbol -646946680 +1802598046 1 this.symbol.symbol -871834823 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -15406,20 +15545,20 @@ this.right.right.right nonsensical 2 return -1 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -93 +57 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -15508,12 +15647,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -94 +58 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -15524,12 +15663,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -94 +58 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -15543,15 +15682,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -93 +57 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -15641,94 +15780,23 @@ return 1 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 -this_invocation_nonce -34 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -1987411885 -1 -return.symbol -202918529 -1 -return.symbol.symbol -1297548602 -1 -return.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -return.symbol.frequency -1 -1 -return.left -null -1 -return.left.symbol -nonsensical -2 -return.left.left -nonsensical -2 -return.left.right -nonsensical -2 -return.right -null -1 -return.right.symbol -nonsensical -2 -return.right.left -nonsensical -2 -return.right.right -nonsensical -2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -95 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 - six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -96 +59 this -1035818704 +1837760739 1 this.symbol -1582525299 +240650537 1 this.symbol.symbol -686363848 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +6 1 this.left null @@ -15811,56 +15879,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -97 +60 this -1582525299 +240650537 1 this.symbol -686363848 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -97 +60 this -1582525299 +240650537 1 this.symbol -686363848 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +6 1 return -5 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -96 +59 this -1035818704 +1837760739 1 this.symbol -1582525299 +240650537 1 this.symbol.symbol -686363848 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +6 1 this.left null @@ -15941,26 +16009,26 @@ this.right.right.right nonsensical 2 return -5 +6 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -98 +61 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -16043,56 +16111,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -99 +62 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -99 +62 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -98 +61 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -16173,26 +16241,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -100 +63 this -1502515546 +1418428263 1 this.symbol -1097499032 +2088051243 1 this.symbol.symbol -917732198 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -16275,56 +16343,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -101 +64 this -1097499032 +2088051243 1 this.symbol -917732198 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -101 +64 this -1097499032 +2088051243 1 this.symbol -917732198 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -100 +63 this -1502515546 +1418428263 1 this.symbol -1097499032 +2088051243 1 this.symbol.symbol -917732198 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -16405,26 +16473,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -102 +65 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -16507,56 +16575,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -103 +66 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -103 +66 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -102 +65 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -16637,20 +16705,20 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -104 +67 this -518576549 +2059904228 1 this.symbol -340475003 +41903949 1 this.symbol.symbol -929186741 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -16739,12 +16807,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -105 +68 this -340475003 +41903949 1 this.symbol -929186741 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -16755,12 +16823,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -105 +68 this -340475003 +41903949 1 this.symbol -929186741 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -16774,15 +16842,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -104 +67 this -518576549 +2059904228 1 this.symbol -340475003 +41903949 1 this.symbol.symbol -929186741 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -16874,15 +16942,247 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -106 +69 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +1 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +70 +this +901506536 +1 +this.symbol +2109957412 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +70 +this +901506536 +1 +this.symbol +2109957412 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 +return +1 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +69 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +1 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +1 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +71 this -470905757 +1836643189 1 this.symbol -1574116 +1209271652 1 this.symbol.symbol -247113402 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -16971,12 +17271,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -107 +72 this -1574116 +1209271652 1 this.symbol -247113402 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -16987,12 +17287,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -107 +72 this -1574116 +1209271652 1 this.symbol -247113402 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -17006,15 +17306,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -106 +71 this -470905757 +1836643189 1 this.symbol -1574116 +1209271652 1 this.symbol.symbol -247113402 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -17106,21 +17406,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -108 +73 this -1227419517 +1307096070 1 this.symbol -1745169531 +901506536 1 this.symbol.symbol -1466939813 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -17203,56 +17503,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -109 +74 this -1745169531 +901506536 1 this.symbol -1466939813 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -109 +74 this -1745169531 +901506536 1 this.symbol -1466939813 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -108 +73 this -1227419517 +1307096070 1 this.symbol -1745169531 +901506536 1 this.symbol.symbol -1466939813 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -17333,26 +17633,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -110 +75 this -470905757 +1355316001 1 this.symbol -1574116 +2083562754 1 this.symbol.symbol -247113402 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -17435,56 +17735,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -111 +76 this -1574116 +2083562754 1 this.symbol -247113402 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -111 +76 this -1574116 +2083562754 1 this.symbol -247113402 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -110 +75 this -470905757 +1355316001 1 this.symbol -1574116 +2083562754 1 this.symbol.symbol -247113402 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -17565,26 +17865,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -112 +77 this -511909137 +1307096070 1 this.symbol -91454439 +901506536 1 this.symbol.symbol -732656791 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -17667,56 +17967,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -113 +78 this -91454439 +901506536 1 this.symbol -732656791 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -113 +78 this -91454439 +901506536 1 this.symbol -732656791 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -112 +77 this -511909137 +1307096070 1 this.symbol -91454439 +901506536 1 this.symbol.symbol -732656791 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -17797,26 +18097,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -114 +79 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -17899,56 +18199,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -115 +80 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -115 +80 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -114 +79 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -18029,26 +18329,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -116 +81 this -837375677 +1307096070 1 this.symbol -1335593353 +901506536 1 this.symbol.symbol -1623948668 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -18131,56 +18431,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -117 +82 this -1335593353 +901506536 1 this.symbol -1623948668 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -117 +82 this -1335593353 +901506536 1 this.symbol -1623948668 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -116 +81 this -837375677 +1307096070 1 this.symbol -1335593353 +901506536 1 this.symbol.symbol -1623948668 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -18261,26 +18561,26 @@ this.right.right.right nonsensical 2 return -6 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -118 +83 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -18363,56 +18663,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -119 +84 this -1574116 +985922955 1 this.symbol -247113402 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -119 +84 this -1574116 +985922955 1 this.symbol -247113402 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -118 +83 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -18493,26 +18793,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -120 +85 this -1312664548 +1307096070 1 this.symbol -1100231132 +901506536 1 this.symbol.symbol -1818405427 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -18595,56 +18895,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -121 +86 this -1100231132 +901506536 1 this.symbol -1818405427 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -121 +86 this -1100231132 +901506536 1 this.symbol -1818405427 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -120 +85 this -1312664548 +1307096070 1 this.symbol -1100231132 +901506536 1 this.symbol.symbol -1818405427 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -18725,26 +19025,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -122 +87 this -470905757 +853119666 1 this.symbol -1574116 +1784662007 1 this.symbol.symbol -247113402 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -18827,56 +19127,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -123 +88 this -1574116 +1784662007 1 this.symbol -247113402 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -123 +88 this -1574116 +1784662007 1 this.symbol -247113402 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -122 +87 this -470905757 +853119666 1 this.symbol -1574116 +1784662007 1 this.symbol.symbol -247113402 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -18957,26 +19257,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -124 +89 this -853552605 +1307096070 1 this.symbol -1180110925 +901506536 1 this.symbol.symbol -1750434854 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -19059,56 +19359,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -125 +90 this -1180110925 +901506536 1 this.symbol -1750434854 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -125 +90 this -1180110925 +901506536 1 this.symbol -1750434854 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -124 +89 this -853552605 +1307096070 1 this.symbol -1180110925 +901506536 1 this.symbol.symbol -1750434854 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -19189,26 +19489,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -126 +91 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -19291,56 +19591,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -127 +92 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -127 +92 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -126 +91 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -19421,26 +19721,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -128 +93 this -467870275 +1307096070 1 this.symbol -1799775865 +901506536 1 this.symbol.symbol -2112836430 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -19523,56 +19823,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -129 +94 this -1799775865 +901506536 1 this.symbol -2112836430 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -129 +94 this -1799775865 +901506536 1 this.symbol -2112836430 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -128 +93 this -467870275 +1307096070 1 this.symbol -1799775865 +901506536 1 this.symbol.symbol -2112836430 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -19653,26 +19953,97 @@ this.right.right.right nonsensical 2 return +1 +1 + +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +this_invocation_nonce +34 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +1307096070 +1 +return.symbol +901506536 +1 +return.symbol.symbol +2109957412 +1 +return.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +return.symbol.frequency +1 +1 +return.left +null +1 +return.left.symbol +nonsensical +2 +return.left.left +nonsensical +2 +return.left.right +nonsensical +2 +return.right +null +1 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical 2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +95 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -130 +96 this -470905757 +2081303229 1 this.symbol -1574116 +1456208737 1 this.symbol.symbol -247113402 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -19755,56 +20126,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -131 +97 this -1574116 +1456208737 1 this.symbol -247113402 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -131 +97 this -1574116 +1456208737 1 this.symbol -247113402 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 return -2 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -130 +96 this -470905757 +2081303229 1 this.symbol -1574116 +1456208737 1 this.symbol.symbol -247113402 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -19885,26 +20256,26 @@ this.right.right.right nonsensical 2 return -2 +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -132 +98 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -19987,56 +20358,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -133 +99 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -133 +99 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -132 +98 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -20117,20 +20488,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -134 +100 this -470905757 +1223685984 1 this.symbol -1574116 +13648335 1 this.symbol.symbol -247113402 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -20219,12 +20590,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -135 +101 this -1574116 +13648335 1 this.symbol -247113402 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -20235,12 +20606,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -135 +101 this -1574116 +13648335 1 this.symbol -247113402 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -20254,15 +20625,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -134 +100 this -470905757 +1223685984 1 this.symbol -1574116 +13648335 1 this.symbol.symbol -247113402 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -20354,21 +20725,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -136 +102 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -20451,56 +20822,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -137 +103 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -137 +103 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -136 +102 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -20581,20 +20952,20 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -138 +104 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -20683,12 +21054,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -139 +105 this -1574116 +453211571 1 this.symbol -247113402 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -20699,12 +21070,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -139 +105 this -1574116 +453211571 1 this.symbol -247113402 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -20718,15 +21089,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -138 +104 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -20818,21 +21189,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -140 +106 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -20915,56 +21286,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -141 +107 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -141 +107 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -140 +106 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -21045,26 +21416,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -142 +108 this -239304688 +1463757745 1 this.symbol -1964711431 +757108857 1 this.symbol.symbol -756278511 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -21147,56 +21518,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -143 +109 this -1964711431 +757108857 1 this.symbol -756278511 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -143 +109 this -1964711431 +757108857 1 this.symbol -756278511 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -142 +108 this -239304688 +1463757745 1 this.symbol -1964711431 +757108857 1 this.symbol.symbol -756278511 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -21277,26 +21648,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -144 +110 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -21379,56 +21750,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -145 +111 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -145 +111 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -144 +110 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -21509,26 +21880,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -146 +112 this -239304688 +1525262377 1 this.symbol -1964711431 +1802598046 1 this.symbol.symbol -756278511 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -21611,56 +21982,156 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -147 +113 this -1964711431 +1802598046 1 this.symbol -756278511 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -147 +113 this -1964711431 +1802598046 1 this.symbol -756278511 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -146 +112 this -239304688 +1525262377 1 this.symbol -1964711431 +1802598046 1 this.symbol.symbol -756278511 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +3 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +114 +this +1014328909 +1 +this.symbol +1513712028 +1 +this.symbol.symbol +747464370 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" 1 +this.symbol.frequency +2 1 this.left null @@ -21740,27 +22211,159 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +115 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +115 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +114 +this +1014328909 +1 +this.symbol +1513712028 +1 +this.symbol.symbol +747464370 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null 1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -148 +116 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -21843,56 +22446,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -149 +117 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -149 +117 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 return -1 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -148 +116 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -21973,26 +22576,26 @@ this.right.right.right nonsensical 2 return -1 +6 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -150 +118 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -22075,56 +22678,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -151 +119 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -151 +119 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -150 +118 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -22205,354 +22808,258 @@ this.right.right.right nonsensical 2 return -1 +2 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -95 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1904504032 755507289 1887685159] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -239304688 +120 +this +1418428263 1 -return.symbol -1964711431 +this.symbol +2088051243 1 -return.symbol.symbol -756278511 +this.symbol.symbol +483422889 1 -return.symbol.symbol.getClass().getName() +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency -1 +this.symbol.frequency +3 1 -return.left +this.left null 1 -return.left.symbol +this.left.symbol nonsensical 2 -return.left.left +this.left.symbol.symbol nonsensical 2 -return.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -return.right -null -1 -return.right.symbol +this.left.symbol.frequency nonsensical 2 -return.right.left +this.left.left nonsensical 2 -return.right.right +this.left.left.symbol nonsensical 2 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER -this_invocation_nonce -152 -left -1987411885 -1 -left.symbol -202918529 -1 -left.symbol.symbol -1297548602 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -1 -1 -left.left -null -1 -left.left.symbol +this.left.left.left nonsensical 2 -left.left.left +this.left.left.right nonsensical 2 -left.left.right +this.left.right nonsensical 2 -left.right -null -1 -left.right.symbol +this.left.right.symbol nonsensical 2 -left.right.left +this.left.right.left nonsensical 2 -left.right.right +this.left.right.right nonsensical 2 -right -239304688 -1 -right.symbol -1964711431 -1 -right.symbol.symbol -756278511 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency -1 -1 -right.left +this.right null 1 -right.left.symbol +this.right.symbol nonsensical 2 -right.left.left +this.right.symbol.symbol nonsensical 2 -right.left.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.symbol.frequency nonsensical 2 -right.right.left +this.right.left nonsensical 2 -right.right.right +this.right.left.symbol nonsensical 2 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 -this_invocation_nonce -152 -this -1128590881 -1 -this.symbol -null -1 -this.symbol.symbol +this.right.left.left nonsensical 2 -this.symbol.symbol.getClass().getName() +this.right.left.right nonsensical 2 -this.symbol.frequency +this.right.right nonsensical 2 -this.left -1987411885 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +121 +this +2088051243 1 -this.left.symbol -202918529 +this.symbol +483422889 1 -this.left.symbol.symbol -1297548602 +this.symbol.getClass().getName() +"java.lang.Character" 1 -this.left.symbol.symbol.getClass().getName() +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +121 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency +this.frequency +3 1 +return +3 1 -this.left.left + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +120 +this +1418428263 +1 +this.symbol +2088051243 +1 +this.symbol.symbol +483422889 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left null 1 -this.left.left.symbol +this.left.symbol nonsensical 2 -this.left.left.left +this.left.symbol.symbol nonsensical 2 -this.left.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left.right -null -1 -this.left.right.symbol +this.left.symbol.frequency nonsensical 2 -this.left.right.left +this.left.left nonsensical 2 -this.left.right.right +this.left.left.symbol nonsensical 2 -this.right -239304688 -1 -this.right.symbol -1964711431 -1 -this.right.symbol.symbol -756278511 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol +this.left.left.left nonsensical 2 -this.right.left.left +this.left.left.right nonsensical 2 -this.right.left.right +this.left.right nonsensical 2 -this.right.right -null -1 -this.right.right.symbol +this.left.right.symbol nonsensical 2 -this.right.right.left +this.left.right.left nonsensical 2 -this.right.right.right +this.left.right.right nonsensical 2 -left -1987411885 -1 -left.symbol -202918529 -1 -left.symbol.symbol -1297548602 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -1 -1 -left.left +this.right null 1 -left.left.symbol +this.right.symbol nonsensical 2 -left.left.left +this.right.symbol.symbol nonsensical 2 -left.left.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -left.right -null -1 -left.right.symbol +this.right.symbol.frequency nonsensical 2 -left.right.left +this.right.left nonsensical 2 -left.right.right +this.right.left.symbol nonsensical 2 -right -239304688 -1 -right.symbol -1964711431 -1 -right.symbol.symbol -756278511 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency -1 -1 -right.left -null -1 -right.left.symbol +this.right.left.left nonsensical 2 -right.left.left +this.right.left.right nonsensical 2 -right.left.right +this.right.right nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.right.symbol nonsensical 2 -right.right.left +this.right.right.left nonsensical 2 -right.right.right +this.right.right.right nonsensical 2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -153 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1904504032 755507289 1887685159 1128590881] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" +return +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -154 +122 this -1035818704 +1014328909 1 this.symbol -1582525299 +1513712028 1 this.symbol.symbol -686363848 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -22635,56 +23142,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -155 +123 this -1582525299 +1513712028 1 this.symbol -686363848 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -155 +123 this -1582525299 +1513712028 1 this.symbol -686363848 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 return -5 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -154 +122 this -1035818704 +1014328909 1 this.symbol -1582525299 +1513712028 1 this.symbol.symbol -686363848 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -22765,20 +23272,20 @@ this.right.right.right nonsensical 2 return -5 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -156 +124 this -470905757 +2059904228 1 this.symbol -1574116 +41903949 1 this.symbol.symbol -247113402 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -22867,12 +23374,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -157 +125 this -1574116 +41903949 1 this.symbol -247113402 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -22883,12 +23390,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -157 +125 this -1574116 +41903949 1 this.symbol -247113402 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -22902,15 +23409,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -156 +124 this -470905757 +2059904228 1 this.symbol -1574116 +41903949 1 this.symbol.symbol -247113402 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23002,15 +23509,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -158 +126 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23099,12 +23606,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -159 +127 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23115,12 +23622,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -159 +127 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23134,15 +23641,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -158 +126 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23234,15 +23741,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -160 +128 this -470905757 +1836643189 1 this.symbol -1574116 +1209271652 1 this.symbol.symbol -247113402 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23331,12 +23838,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -161 +129 this -1574116 +1209271652 1 this.symbol -247113402 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23347,12 +23854,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -161 +129 this -1574116 +1209271652 1 this.symbol -247113402 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23366,15 +23873,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -160 +128 this -470905757 +1836643189 1 this.symbol -1574116 +1209271652 1 this.symbol.symbol -247113402 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23466,15 +23973,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -162 +130 this -518576549 +1014328909 1 this.symbol -340475003 +1513712028 1 this.symbol.symbol -929186741 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23563,12 +24070,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -163 +131 this -340475003 +1513712028 1 this.symbol -929186741 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23579,12 +24086,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -163 +131 this -340475003 +1513712028 1 this.symbol -929186741 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23598,15 +24105,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -162 +130 this -518576549 +1014328909 1 this.symbol -340475003 +1513712028 1 this.symbol.symbol -929186741 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23698,15 +24205,247 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -164 +132 +this +1355316001 +1 +this.symbol +2083562754 +1 +this.symbol.symbol +93122545 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +133 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +133 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +132 +this +1355316001 +1 +this.symbol +2083562754 +1 +this.symbol.symbol +93122545 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +3 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +134 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23795,12 +24534,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -165 +135 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23811,12 +24550,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -165 +135 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -23830,15 +24569,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -164 +134 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -23930,21 +24669,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -166 +136 this -1227419517 +1597462040 1 this.symbol -1745169531 +557041912 1 this.symbol.symbol -1466939813 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -24027,56 +24766,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -167 +137 this -1745169531 +557041912 1 this.symbol -1466939813 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -167 +137 this -1745169531 +557041912 1 this.symbol -1466939813 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -166 +136 this -1227419517 +1597462040 1 this.symbol -1745169531 +557041912 1 this.symbol.symbol -1466939813 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -24157,20 +24896,20 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -168 +138 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -24259,12 +24998,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -169 +139 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -24275,12 +25014,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -169 +139 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -24294,15 +25033,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -168 +138 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -24394,21 +25133,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -170 +140 this -511909137 +403716510 1 this.symbol -91454439 +985922955 1 this.symbol.symbol -732656791 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -24491,56 +25230,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -171 +141 this -91454439 +985922955 1 this.symbol -732656791 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -171 +141 this -91454439 +985922955 1 this.symbol -732656791 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -170 +140 this -511909137 +403716510 1 this.symbol -91454439 +985922955 1 this.symbol.symbol -732656791 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -24621,26 +25360,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -172 +142 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -24723,56 +25462,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -173 +143 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -173 +143 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -172 +142 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -24853,26 +25592,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -174 +144 this -837375677 +853119666 1 this.symbol -1335593353 +1784662007 1 this.symbol.symbol -1623948668 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -24955,56 +25694,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -175 +145 this -1335593353 +1784662007 1 this.symbol -1623948668 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -175 +145 this -1335593353 +1784662007 1 this.symbol -1623948668 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -174 +144 this -837375677 +853119666 1 this.symbol -1335593353 +1784662007 1 this.symbol.symbol -1623948668 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -25085,26 +25824,26 @@ this.right.right.right nonsensical 2 return -6 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -176 +146 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -25187,56 +25926,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -177 +147 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -177 +147 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -176 +146 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -25317,26 +26056,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -178 +148 this -1312664548 +559670971 1 this.symbol -1100231132 +509886383 1 this.symbol.symbol -1818405427 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -25419,56 +26158,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -179 +149 this -1100231132 +509886383 1 this.symbol -1818405427 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -179 +149 this -1100231132 +509886383 1 this.symbol -1818405427 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -178 +148 this -1312664548 +559670971 1 this.symbol -1100231132 +509886383 1 this.symbol.symbol -1818405427 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -25549,26 +26288,158 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -180 +150 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency +1 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical 2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +151 +this +557041912 +1 +this.symbol +1239731077 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +151 +this +557041912 +1 +this.symbol +1239731077 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 +return +1 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +150 +this +1597462040 +1 +this.symbol +557041912 +1 +this.symbol.symbol +1239731077 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +1 1 this.left null @@ -25648,78 +26519,183 @@ nonsensical this.right.right.right nonsensical 2 +return +1 +1 -six170.HuffmanSymbol.frequency():::ENTER +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -181 -this -1574116 +95 +nodeList +1144648478 1 -this.symbol -247113402 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 403716510 853119666 559670971] 1 -this.symbol.getClass().getName() +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +1597462040 +1 +return.symbol +557041912 +1 +return.symbol.symbol +1239731077 +1 +return.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +return.symbol.frequency +1 +1 +return.left +null +1 +return.left.symbol +nonsensical 2 +return.left.left +nonsensical +2 +return.left.right +nonsensical +2 +return.right +null 1 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical +2 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER this_invocation_nonce -181 -this -1574116 +152 +left +1307096070 1 -this.symbol -247113402 +left.symbol +901506536 1 -this.symbol.getClass().getName() +left.symbol.symbol +2109957412 +1 +left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -2 +left.symbol.frequency 1 -return +1 +left.left +null +1 +left.left.symbol +nonsensical 2 +left.left.left +nonsensical +2 +left.left.right +nonsensical +2 +left.right +null 1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -180 -this -470905757 +left.right.symbol +nonsensical +2 +left.right.left +nonsensical +2 +left.right.right +nonsensical +2 +right +1597462040 1 -this.symbol -1574116 +right.symbol +557041912 1 -this.symbol.symbol -247113402 +right.symbol.symbol +1239731077 1 -this.symbol.symbol.getClass().getName() +right.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -2 +right.symbol.frequency 1 -this.left +1 +right.left null 1 -this.left.symbol +right.left.symbol nonsensical 2 -this.left.symbol.symbol +right.left.left nonsensical 2 -this.left.symbol.symbol.getClass().getName() +right.left.right nonsensical 2 -this.left.symbol.frequency +right.right +null +1 +right.right.symbol nonsensical 2 -this.left.left +right.right.left +nonsensical +2 +right.right.right +nonsensical +2 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 +this_invocation_nonce +152 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() nonsensical 2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 this.left.left.symbol nonsensical 2 @@ -25730,8 +26706,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -25742,65 +26718,156 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol nonsensical 2 -this.right.symbol.symbol +this.right.left.left nonsensical 2 -this.right.symbol.symbol.getClass().getName() +this.right.left.right nonsensical 2 -this.right.symbol.frequency +this.right.right +null +1 +this.right.right.symbol nonsensical 2 -this.right.left +this.right.right.left nonsensical 2 -this.right.left.symbol +this.right.right.right nonsensical 2 -this.right.left.left +left +1307096070 +1 +left.symbol +901506536 +1 +left.symbol.symbol +2109957412 +1 +left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +left.symbol.frequency +1 +1 +left.left +null +1 +left.left.symbol nonsensical 2 -this.right.left.right +left.left.left nonsensical 2 -this.right.right +left.left.right nonsensical 2 -this.right.right.symbol +left.right +null +1 +left.right.symbol nonsensical 2 -this.right.right.left +left.right.left nonsensical 2 -this.right.right.right +left.right.right nonsensical 2 -return +right +1597462040 +1 +right.symbol +557041912 +1 +right.symbol.symbol +1239731077 +1 +right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +right.symbol.frequency +1 +1 +right.left +null +1 +right.left.symbol +nonsensical +2 +right.left.left +nonsensical +2 +right.left.right +nonsensical +2 +right.right +null +1 +right.right.symbol +nonsensical 2 +right.right.left +nonsensical +2 +right.right.right +nonsensical +2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +153 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 403716510 853119666 559670971 1576861390] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -182 +154 this -853552605 +2081303229 1 this.symbol -1180110925 +1456208737 1 this.symbol.symbol -1750434854 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -25883,56 +26950,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -183 +155 this -1180110925 +1456208737 1 this.symbol -1750434854 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -183 +155 this -1180110925 +1456208737 1 this.symbol -1750434854 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 return -2 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -182 +154 this -853552605 +2081303229 1 this.symbol -1180110925 +1456208737 1 this.symbol.symbol -1750434854 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -26013,20 +27080,20 @@ this.right.right.right nonsensical 2 return -2 +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -184 +156 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -26115,12 +27182,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -185 +157 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -26131,12 +27198,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -185 +157 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -26150,15 +27217,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -184 +156 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -26250,15 +27317,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -186 +158 this -467870275 +1223685984 1 this.symbol -1799775865 +13648335 1 this.symbol.symbol -2112836430 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -26347,12 +27414,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -187 +159 this -1799775865 +13648335 1 this.symbol -2112836430 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -26363,12 +27430,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -187 +159 this -1799775865 +13648335 1 this.symbol -2112836430 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -26382,15 +27449,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -186 +158 this -467870275 +1223685984 1 this.symbol -1799775865 +13648335 1 this.symbol.symbol -2112836430 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -26482,15 +27549,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -188 +160 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -26579,12 +27646,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -189 +161 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -26595,12 +27662,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -189 +161 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -26614,15 +27681,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -188 +160 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -26714,247 +27781,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -190 -this -1558080258 -1 -this.symbol -935344593 -1 -this.symbol.symbol -1525795060 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -191 -this -935344593 -1 -this.symbol -1525795060 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -191 -this -935344593 -1 -this.symbol -1525795060 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -190 -this -1558080258 -1 -this.symbol -935344593 -1 -this.symbol.symbol -1525795060 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -3 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -192 +162 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -27043,12 +27878,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -193 +163 this -1574116 +453211571 1 this.symbol -247113402 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -27059,12 +27894,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -193 +163 this -1574116 +453211571 1 this.symbol -247113402 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -27078,15 +27913,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -192 +162 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -27178,21 +28013,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -194 +164 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -27275,56 +28110,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -195 +165 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -195 +165 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -194 +164 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -27405,20 +28240,20 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -196 +166 this -470905757 +1463757745 1 this.symbol -1574116 +757108857 1 this.symbol.symbol -247113402 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -27507,12 +28342,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -197 +167 this -1574116 +757108857 1 this.symbol -247113402 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -27523,12 +28358,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -197 +167 this -1574116 +757108857 1 this.symbol -247113402 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -27542,15 +28377,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -196 +166 this -470905757 +1463757745 1 this.symbol -1574116 +757108857 1 this.symbol.symbol -247113402 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -27642,21 +28477,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -198 +168 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -27739,56 +28574,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -199 +169 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -199 +169 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -198 +168 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -27869,26 +28704,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -200 +170 this -1904504032 +1525262377 1 this.symbol -2090220954 +1802598046 1 this.symbol.symbol -1196464545 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -27971,56 +28806,288 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -201 +171 this -2090220954 +1802598046 1 this.symbol -1196464545 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -201 +171 this -2090220954 +1802598046 1 this.symbol -1196464545 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency +3 1 +return +3 1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +170 +this +1525262377 +1 +this.symbol +1802598046 +1 +this.symbol.symbol +1809787067 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 return +3 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +172 +this +1014328909 1 +this.symbol +1513712028 +1 +this.symbol.symbol +747464370 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +173 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +173 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -200 +172 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -28101,26 +29168,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -202 +174 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -28203,56 +29270,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -203 +175 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -203 +175 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 return -1 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -202 +174 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -28333,26 +29400,26 @@ this.right.right.right nonsensical 2 return -1 +6 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -204 +176 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -28435,56 +29502,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -205 +177 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -205 +177 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -204 +176 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -28565,255 +29632,26 @@ this.right.right.right nonsensical 2 return -1 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -206 -this -1128590881 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 -1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical 2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -239304688 -1 -this.right.symbol -1964711431 1 -this.right.symbol.symbol -756278511 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -207 -this -1987411885 -1 -this.symbol -202918529 -1 -this.symbol.symbol -1297548602 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -208 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -208 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -207 +178 this -1987411885 +1418428263 1 this.symbol -202918529 +2088051243 1 this.symbol.symbol -1297548602 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -28893,27 +29731,59 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +179 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" 1 +this.frequency +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -209 +179 this -239304688 +2088051243 1 this.symbol -1964711431 +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +178 +this +1418428263 +1 +this.symbol +2088051243 1 this.symbol.symbol -756278511 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -28993,59 +29863,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -210 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -210 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -209 +180 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -29125,127 +29963,59 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -206 +181 this -1128590881 +1513712028 1 this.symbol -null +747464370 1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 -1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical +this.frequency 2 -this.right -239304688 1 -this.right.symbol -1964711431 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +181 +this +1513712028 1 -this.right.symbol.symbol -756278511 +this.symbol +747464370 1 -this.right.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical +this.frequency 2 -this.right.right -null 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -211 +180 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -29325,59 +30095,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -212 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -212 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -211 +182 this -1904504032 +2059904228 1 this.symbol -2090220954 +41903949 1 this.symbol.symbol -1196464545 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -29457,98 +30195,59 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -153 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 755507289 1887685159 1128590881] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -1904504032 -1 -return.symbol -2090220954 +183 +this +41903949 1 -return.symbol.symbol -1196464545 +this.symbol +1277181601 1 -return.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency -1 -1 -return.left -null -1 -return.left.symbol -nonsensical -2 -return.left.left -nonsensical -2 -return.left.right -nonsensical +this.frequency 2 -return.right -null 1 -return.right.symbol -nonsensical -2 -return.right.left -nonsensical -2 -return.right.right -nonsensical -2 -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -213 -nodeList -1548550182 +183 +this +41903949 1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 755507289 1887685159 1128590881] +this.symbol +1277181601 1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +this.symbol.getClass().getName() +"java.lang.Character" 1 -nodeList.getClass().getName() -"java.util.ArrayList" +this.frequency +2 +1 +return +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -214 +182 this -1035818704 +2059904228 1 this.symbol -1582525299 +41903949 1 this.symbol.symbol -686363848 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -29628,153 +30327,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -215 -this -1582525299 -1 -this.symbol -686363848 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -5 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -215 -this -1582525299 -1 -this.symbol -686363848 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -5 -1 return -5 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -214 -this -1035818704 -1 -this.symbol -1582525299 -1 -this.symbol.symbol -686363848 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -5 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical 2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -216 +184 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -29863,12 +30430,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -217 +185 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -29879,12 +30446,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -217 +185 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -29898,15 +30465,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -216 +184 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -29998,15 +30565,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -218 +186 this -1502515546 +1836643189 1 this.symbol -1097499032 +1209271652 1 this.symbol.symbol -917732198 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -30095,12 +30662,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -219 +187 this -1097499032 +1209271652 1 this.symbol -917732198 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -30111,12 +30678,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -219 +187 this -1097499032 +1209271652 1 this.symbol -917732198 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -30130,15 +30697,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -218 +186 this -1502515546 +1836643189 1 this.symbol -1097499032 +1209271652 1 this.symbol.symbol -917732198 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -30230,15 +30797,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -220 +188 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -30327,12 +30894,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -221 +189 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -30343,12 +30910,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -221 +189 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -30362,15 +30929,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -220 +188 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -30462,21 +31029,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -222 +190 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -30559,56 +31126,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -223 +191 this -340475003 +2083562754 1 this.symbol -929186741 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -223 +191 this -340475003 +2083562754 1 this.symbol -929186741 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -222 +190 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -30689,20 +31256,20 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -224 +192 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -30791,12 +31358,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -225 +193 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -30807,12 +31374,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -225 +193 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -30826,15 +31393,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -224 +192 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -30926,21 +31493,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -226 +194 this -1227419517 +403716510 1 this.symbol -1745169531 +985922955 1 this.symbol.symbol -1466939813 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -31023,56 +31590,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -227 +195 this -1745169531 +985922955 1 this.symbol -1466939813 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -227 +195 this -1745169531 +985922955 1 this.symbol -1466939813 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -226 +194 this -1227419517 +403716510 1 this.symbol -1745169531 +985922955 1 this.symbol.symbol -1466939813 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -31153,20 +31720,20 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -228 +196 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -31255,12 +31822,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -229 +197 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -31271,12 +31838,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -229 +197 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -31290,15 +31857,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -228 +196 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -31390,21 +31957,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -230 +198 this -511909137 +853119666 1 this.symbol -91454439 +1784662007 1 this.symbol.symbol -732656791 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -31487,56 +32054,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -231 +199 this -91454439 +1784662007 1 this.symbol -732656791 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -231 +199 this -91454439 +1784662007 1 this.symbol -732656791 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -230 +198 this -511909137 +853119666 1 this.symbol -91454439 +1784662007 1 this.symbol.symbol -732656791 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -31617,26 +32184,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -232 +200 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -31719,56 +32286,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -233 +201 this -1574116 +985922955 1 this.symbol -247113402 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -233 +201 this -1574116 +985922955 1 this.symbol -247113402 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -232 +200 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -31849,26 +32416,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -234 +202 this -837375677 +559670971 1 this.symbol -1335593353 +509886383 1 this.symbol.symbol -1623948668 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -31951,56 +32518,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -235 +203 this -1335593353 +509886383 1 this.symbol -1623948668 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -235 +203 this -1335593353 +509886383 1 this.symbol -1623948668 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -234 +202 this -837375677 +559670971 1 this.symbol -1335593353 +509886383 1 this.symbol.symbol -1623948668 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -32081,26 +32648,26 @@ this.right.right.right nonsensical 2 return -6 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -236 +204 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -32183,56 +32750,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -237 +205 this -1574116 +985922955 1 this.symbol -247113402 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -237 +205 this -1574116 +985922955 1 this.symbol -247113402 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -236 +204 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -32313,26 +32880,123 @@ this.right.right.right nonsensical 2 return +1 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +206 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical 2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -238 +207 this -1312664548 +1307096070 1 this.symbol -1100231132 +901506536 1 this.symbol.symbol -1818405427 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -32415,56 +33079,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -239 +208 this -1100231132 +901506536 1 this.symbol -1818405427 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -239 +208 this -1100231132 +901506536 1 this.symbol -1818405427 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -238 +207 this -1312664548 +1307096070 1 this.symbol -1100231132 +901506536 1 this.symbol.symbol -1818405427 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -32545,26 +33209,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -240 +209 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -32647,56 +33311,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -241 +210 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -241 +210 this -1574116 +557041912 1 this.symbol -247113402 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -240 +209 this -470905757 +1597462040 1 this.symbol -1574116 +557041912 1 this.symbol.symbol -247113402 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -32777,26 +33441,126 @@ this.right.right.right nonsensical 2 return +1 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +206 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return 2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -242 +211 this -853552605 +403716510 1 this.symbol -1180110925 +985922955 1 this.symbol.symbol -1750434854 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -32879,56 +33643,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -243 +212 this -1180110925 +985922955 1 this.symbol -1750434854 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -243 +212 this -1180110925 +985922955 1 this.symbol -1750434854 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -242 +211 this -853552605 +403716510 1 this.symbol -1180110925 +985922955 1 this.symbol.symbol -1750434854 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -33009,258 +33773,97 @@ this.right.right.right nonsensical 2 return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -244 -this -470905757 -1 -this.symbol -1574116 -1 -this.symbol.symbol -247113402 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -245 -this -1574116 -1 -this.symbol -247113402 1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -245 -this -1574116 +153 +nodeList +1144648478 1 -this.symbol -247113402 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 853119666 559670971 1576861390] 1 -this.symbol.getClass().getName() -"java.lang.Character" +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 -this.frequency -2 +nodeList.getClass().getName() +"java.util.ArrayList" 1 return -2 +403716510 1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -244 -this -470905757 -1 -this.symbol -1574116 +return.symbol +985922955 1 -this.symbol.symbol -247113402 +return.symbol.symbol +1134712904 1 -this.symbol.symbol.getClass().getName() +return.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -2 +return.symbol.frequency 1 -this.left +1 +return.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol +return.left.symbol nonsensical 2 -this.left.right.left +return.left.left nonsensical 2 -this.left.right.right +return.left.right nonsensical 2 -this.right +return.right null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol +return.right.symbol nonsensical 2 -this.right.right.left +return.right.left nonsensical 2 -this.right.right.right +return.right.right nonsensical 2 -return -2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +213 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 853119666 559670971 1576861390] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -246 +214 this -467870275 +2081303229 1 this.symbol -1799775865 +1456208737 1 this.symbol.symbol -2112836430 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -33343,56 +33946,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -247 +215 this -1799775865 +1456208737 1 this.symbol -2112836430 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -247 +215 this -1799775865 +1456208737 1 this.symbol -2112836430 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 return -2 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -246 +214 this -467870275 +2081303229 1 this.symbol -1799775865 +1456208737 1 this.symbol.symbol -2112836430 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -33473,20 +34076,20 @@ this.right.right.right nonsensical 2 return -2 +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -248 +216 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -33575,12 +34178,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -249 +217 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -33591,12 +34194,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -249 +217 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -33610,15 +34213,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -248 +216 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -33710,21 +34313,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -250 +218 this -1558080258 +1223685984 1 this.symbol -935344593 +13648335 1 this.symbol.symbol -1525795060 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -33807,56 +34410,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -251 +219 this -935344593 +13648335 1 this.symbol -1525795060 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -251 +219 this -935344593 +13648335 1 this.symbol -1525795060 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -250 +218 this -1558080258 +1223685984 1 this.symbol -935344593 +13648335 1 this.symbol.symbol -1525795060 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -33937,20 +34540,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -252 +220 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -34039,12 +34642,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -253 +221 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -34055,12 +34658,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -253 +221 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -34074,15 +34677,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -252 +220 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -34174,21 +34777,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -254 +222 this -755507289 +1076835071 1 this.symbol -42217019 +453211571 1 this.symbol.symbol -1806076252 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -34271,56 +34874,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -255 +223 this -42217019 +453211571 1 this.symbol -1806076252 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -255 +223 this -42217019 +453211571 1 this.symbol -1806076252 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -254 +222 this -755507289 +1076835071 1 this.symbol -42217019 +453211571 1 this.symbol.symbol -1806076252 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -34401,20 +35004,20 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -256 +224 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -34503,12 +35106,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -257 +225 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -34519,12 +35122,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -257 +225 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -34538,15 +35141,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -256 +224 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -34638,21 +35241,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -258 +226 this -1887685159 +1463757745 1 this.symbol -646946680 +757108857 1 this.symbol.symbol -871834823 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -34735,56 +35338,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -259 +227 this -646946680 +757108857 1 this.symbol -871834823 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -259 +227 this -646946680 +757108857 1 this.symbol -871834823 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -258 +226 this -1887685159 +1463757745 1 this.symbol -646946680 +757108857 1 this.symbol.symbol -871834823 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -34865,26 +35468,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -260 +228 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -34967,56 +35570,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -261 +229 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -261 +229 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -260 +228 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -35097,45 +35700,177 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -262 +230 this -1128590881 +1525262377 1 this.symbol -null +1802598046 1 this.symbol.symbol +1809787067 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol nonsensical 2 -this.symbol.symbol.getClass().getName() +this.left.symbol.symbol nonsensical 2 -this.symbol.frequency +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left -1987411885 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null 1 -this.left.symbol -202918529 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +231 +this +1802598046 1 -this.left.symbol.symbol -1297548602 +this.symbol +1809787067 1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +231 +this +1802598046 +1 +this.symbol +1809787067 1 +this.symbol.getClass().getName() +"java.lang.Character" 1 -this.left.left +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +230 +this +1525262377 +1 +this.symbol +1802598046 +1 +this.symbol.symbol +1809787067 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left null 1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -35146,8 +35881,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -35158,23 +35893,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -35185,8 +35920,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -35196,24 +35931,27 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -263 +232 this -1987411885 +1014328909 1 this.symbol -202918529 +1513712028 1 this.symbol.symbol -1297548602 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -35296,56 +36034,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -264 +233 this -202918529 +1513712028 1 this.symbol -1297548602 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -264 +233 this -202918529 +1513712028 1 this.symbol -1297548602 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -263 +232 this -1987411885 +1014328909 1 this.symbol -202918529 +1513712028 1 this.symbol.symbol -1297548602 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -35426,26 +36164,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -265 +234 this -239304688 +1837760739 1 this.symbol -1964711431 +240650537 1 this.symbol.symbol -756278511 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -35528,56 +36266,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -266 +235 this -1964711431 +240650537 1 this.symbol -756278511 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -266 +235 this -1964711431 +240650537 1 this.symbol -756278511 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 return -1 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -265 +234 this -239304688 +1837760739 1 this.symbol -1964711431 +240650537 1 this.symbol.symbol -756278511 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -35658,45 +36396,45 @@ this.right.right.right nonsensical 2 return -1 +6 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -262 +236 this -1128590881 +1014328909 1 this.symbol -null +1513712028 1 this.symbol.symbol -nonsensical -2 +747464370 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -35707,8 +36445,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -35719,23 +36457,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -35746,8 +36484,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -35757,27 +36495,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +237 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +237 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -267 +236 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -35857,59 +36627,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -268 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -268 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -267 +238 this -755507289 +1418428263 1 this.symbol -42217019 +2088051243 1 this.symbol.symbol -1806076252 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -35989,183 +36727,78 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -213 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1887685159 1128590881] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -755507289 -1 -return.symbol -42217019 +239 +this +2088051243 1 -return.symbol.symbol -1806076252 +this.symbol +483422889 1 -return.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency -1 -1 -return.left -null -1 -return.left.symbol -nonsensical -2 -return.left.left -nonsensical -2 -return.left.right -nonsensical -2 -return.right -null +this.frequency +3 1 -return.right.symbol -nonsensical -2 -return.right.left -nonsensical -2 -return.right.right -nonsensical -2 -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -269 -left -1904504032 -1 -left.symbol -2090220954 +239 +this +2088051243 1 -left.symbol.symbol -1196464545 +this.symbol +483422889 1 -left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -left.symbol.frequency -1 -1 -left.left -null +this.frequency +3 1 -left.left.symbol -nonsensical -2 -left.left.left -nonsensical -2 -left.left.right -nonsensical -2 -left.right -null +return +3 1 -left.right.symbol -nonsensical -2 -left.right.left -nonsensical -2 -left.right.right -nonsensical -2 -right -755507289 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +238 +this +1418428263 1 -right.symbol -42217019 +this.symbol +2088051243 1 -right.symbol.symbol -1806076252 +this.symbol.symbol +483422889 1 -right.symbol.symbol.getClass().getName() +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -right.symbol.frequency -1 -1 -right.left -null +this.symbol.frequency +3 1 -right.left.symbol -nonsensical -2 -right.left.left -nonsensical -2 -right.left.right -nonsensical -2 -right.right +this.left null 1 -right.right.symbol -nonsensical -2 -right.right.left +this.left.symbol nonsensical 2 -right.right.right +this.left.symbol.symbol nonsensical 2 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 -this_invocation_nonce -269 -this -1651366663 -1 -this.symbol -null -1 -this.symbol.symbol +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.symbol.symbol.getClass().getName() +this.left.symbol.frequency nonsensical 2 -this.symbol.frequency +this.left.left nonsensical 2 -this.left -1904504032 -1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 this.left.left.symbol nonsensical 2 @@ -36176,8 +36809,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -36188,156 +36821,65 @@ this.left.right.right nonsensical 2 this.right -755507289 -1 -this.right.symbol -42217019 -1 -this.right.symbol.symbol -1806076252 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right null 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -left -1904504032 -1 -left.symbol -2090220954 -1 -left.symbol.symbol -1196464545 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -1 -1 -left.left -null -1 -left.left.symbol +this.right.symbol nonsensical 2 -left.left.left +this.right.symbol.symbol nonsensical 2 -left.left.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -left.right -null -1 -left.right.symbol +this.right.symbol.frequency nonsensical 2 -left.right.left +this.right.left nonsensical 2 -left.right.right +this.right.left.symbol nonsensical 2 -right -755507289 -1 -right.symbol -42217019 -1 -right.symbol.symbol -1806076252 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency -1 -1 -right.left -null -1 -right.left.symbol +this.right.left.left nonsensical 2 -right.left.left +this.right.left.right nonsensical 2 -right.left.right +this.right.right nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.right.symbol nonsensical 2 -right.right.left +this.right.right.left nonsensical 2 -right.right.right +this.right.right.right nonsensical 2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -270 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1887685159 1128590881 1651366663] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" +return +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -271 +240 this -1035818704 +1014328909 1 this.symbol -1582525299 +1513712028 1 this.symbol.symbol -686363848 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -36420,56 +36962,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -272 +241 this -1582525299 +1513712028 1 this.symbol -686363848 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -272 +241 this -1582525299 +1513712028 1 this.symbol -686363848 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 return -5 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -271 +240 this -1035818704 +1014328909 1 this.symbol -1582525299 +1513712028 1 this.symbol.symbol -686363848 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -36550,20 +37092,20 @@ this.right.right.right nonsensical 2 return -5 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -273 +242 this -470905757 +2059904228 1 this.symbol -1574116 +41903949 1 this.symbol.symbol -247113402 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -36652,12 +37194,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -274 +243 this -1574116 +41903949 1 this.symbol -247113402 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -36668,12 +37210,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -274 +243 this -1574116 +41903949 1 this.symbol -247113402 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -36687,15 +37229,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -273 +242 this -470905757 +2059904228 1 this.symbol -1574116 +41903949 1 this.symbol.symbol -247113402 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -36787,15 +37329,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -275 +244 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -36884,12 +37426,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -276 +245 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -36900,12 +37442,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -276 +245 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -36919,15 +37461,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -275 +244 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -37019,15 +37561,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -277 +246 this -470905757 +1836643189 1 this.symbol -1574116 +1209271652 1 this.symbol.symbol -247113402 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -37116,12 +37658,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -278 +247 this -1574116 +1209271652 1 this.symbol -247113402 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -37132,12 +37674,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -278 +247 this -1574116 +1209271652 1 this.symbol -247113402 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -37151,15 +37693,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -277 +246 this -470905757 +1836643189 1 this.symbol -1574116 +1209271652 1 this.symbol.symbol -247113402 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -37251,15 +37793,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -279 +248 this -518576549 +1014328909 1 this.symbol -340475003 +1513712028 1 this.symbol.symbol -929186741 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -37348,12 +37890,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -280 +249 this -340475003 +1513712028 1 this.symbol -929186741 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -37364,12 +37906,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -280 +249 this -340475003 +1513712028 1 this.symbol -929186741 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -37383,21 +37925,253 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -279 +248 +this +1014328909 +1 +this.symbol +1513712028 +1 +this.symbol.symbol +747464370 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +250 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical 2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +251 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +251 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +250 +this +1355316001 +1 +this.symbol +2083562754 +1 +this.symbol.symbol +93122545 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 1 this.left null @@ -37478,20 +38252,20 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -281 +252 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -37580,12 +38354,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -282 +253 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -37596,12 +38370,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -282 +253 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -37615,15 +38389,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -281 +252 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -37715,21 +38489,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -283 +254 this -1227419517 +853119666 1 this.symbol -1745169531 +1784662007 1 this.symbol.symbol -1466939813 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -37812,56 +38586,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -284 +255 this -1745169531 +1784662007 1 this.symbol -1466939813 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -284 +255 this -1745169531 +1784662007 1 this.symbol -1466939813 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -283 +254 this -1227419517 +853119666 1 this.symbol -1745169531 +1784662007 1 this.symbol.symbol -1466939813 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -37942,20 +38716,20 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -285 +256 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -38044,12 +38818,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -286 +257 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -38060,12 +38834,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -286 +257 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -38079,15 +38853,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -285 +256 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -38179,21 +38953,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -287 +258 this -511909137 +559670971 1 this.symbol -91454439 +509886383 1 this.symbol.symbol -732656791 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -38276,56 +39050,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -288 +259 this -91454439 +509886383 1 this.symbol -732656791 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -288 +259 this -91454439 +509886383 1 this.symbol -732656791 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -287 +258 this -511909137 +559670971 1 this.symbol -91454439 +509886383 1 this.symbol.symbol -732656791 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -38406,26 +39180,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -289 +260 this -470905757 +853119666 1 this.symbol -1574116 +1784662007 1 this.symbol.symbol -247113402 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -38508,56 +39282,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -290 +261 this -1574116 +1784662007 1 this.symbol -247113402 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -290 +261 this -1574116 +1784662007 1 this.symbol -247113402 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -289 +260 this -470905757 +853119666 1 this.symbol -1574116 +1784662007 1 this.symbol.symbol -247113402 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -38638,177 +39412,45 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -291 +262 this -837375677 +1576861390 1 this.symbol -1335593353 -1 -this.symbol.symbol -1623948668 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -6 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol +this.symbol.symbol nonsensical 2 -this.right.right.left +this.symbol.symbol.getClass().getName() nonsensical 2 -this.right.right.right +this.symbol.frequency nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -292 -this -1335593353 -1 -this.symbol -1623948668 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -6 +this.left +1307096070 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -292 -this -1335593353 +this.left.symbol +901506536 1 -this.symbol -1623948668 +this.left.symbol.symbol +2109957412 1 -this.symbol.getClass().getName() +this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -6 -1 -return -6 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -291 -this -837375677 -1 -this.symbol -1335593353 -1 -this.symbol.symbol -1623948668 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" +this.left.symbol.frequency 1 -this.symbol.frequency -6 1 -this.left +this.left.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 this.left.left.symbol nonsensical 2 @@ -38819,8 +39461,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -38831,23 +39473,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -38858,8 +39500,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -38869,27 +39511,24 @@ nonsensical this.right.right.right nonsensical 2 -return -6 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -293 +263 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -38972,56 +39611,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -294 +264 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -294 +264 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -293 +263 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -39102,26 +39741,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -295 +265 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -39204,56 +39843,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -296 +266 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -296 +266 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -295 +265 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -39334,45 +39973,45 @@ this.right.right.right nonsensical 2 return -3 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -297 +262 this -470905757 +1576861390 1 this.symbol -1574116 +null 1 this.symbol.symbol -247113402 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -39383,8 +40022,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -39395,23 +40034,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -39422,8 +40061,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -39433,59 +40072,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -298 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -298 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -297 +267 this -470905757 +853119666 1 this.symbol -1574116 +1784662007 1 this.symbol.symbol -247113402 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -39565,27 +40172,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +268 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +268 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -299 +267 this -853552605 +853119666 1 this.symbol -1180110925 +1784662007 1 this.symbol.symbol -1750434854 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -39665,178 +40304,183 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -300 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" +return 1 -this.frequency -2 1 -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -300 -this -1180110925 +213 +nodeList +1144648478 1 -this.symbol -1750434854 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 559670971 1576861390] 1 -this.symbol.getClass().getName() -"java.lang.Character" +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 -this.frequency -2 +nodeList.getClass().getName() +"java.util.ArrayList" 1 return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -299 -this -853552605 +853119666 1 -this.symbol -1180110925 +return.symbol +1784662007 1 -this.symbol.symbol -1750434854 +return.symbol.symbol +1435804085 1 -this.symbol.symbol.getClass().getName() +return.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -2 +return.symbol.frequency 1 -this.left +1 +return.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left +return.left.symbol nonsensical 2 -this.left.left.right +return.left.left nonsensical 2 -this.left.right +return.left.right nonsensical 2 -this.left.right.symbol +return.right +null +1 +return.right.symbol nonsensical 2 -this.left.right.left +return.right.left nonsensical 2 -this.left.right.right +return.right.right nonsensical 2 -this.right + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER +this_invocation_nonce +269 +left +403716510 +1 +left.symbol +985922955 +1 +left.symbol.symbol +1134712904 +1 +left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +left.symbol.frequency +1 +1 +left.left null 1 -this.right.symbol +left.left.symbol nonsensical 2 -this.right.symbol.symbol +left.left.left nonsensical 2 -this.right.symbol.symbol.getClass().getName() +left.left.right nonsensical 2 -this.right.symbol.frequency +left.right +null +1 +left.right.symbol nonsensical 2 -this.right.left +left.right.left nonsensical 2 -this.right.left.symbol +left.right.right nonsensical 2 -this.right.left.left +right +853119666 +1 +right.symbol +1784662007 +1 +right.symbol.symbol +1435804085 +1 +right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +right.symbol.frequency +1 +1 +right.left +null +1 +right.left.symbol nonsensical 2 -this.right.left.right +right.left.left nonsensical 2 -this.right.right +right.left.right nonsensical 2 -this.right.right.symbol +right.right +null +1 +right.right.symbol nonsensical 2 -this.right.right.left +right.right.left nonsensical 2 -this.right.right.right +right.right.right nonsensical 2 -return -2 -1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 this_invocation_nonce -301 +269 this -470905757 +600746945 1 this.symbol -1574116 +null 1 this.symbol.symbol -247113402 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -39847,8 +40491,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -39859,23 +40503,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -39886,8 +40530,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -39897,59 +40541,118 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -302 -this -1574116 +left +403716510 1 -this.symbol -247113402 +left.symbol +985922955 1 -this.symbol.getClass().getName() +left.symbol.symbol +1134712904 +1 +left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +left.symbol.frequency +1 +1 +left.left +null +1 +left.left.symbol +nonsensical 2 +left.left.left +nonsensical +2 +left.left.right +nonsensical +2 +left.right +null 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -302 -this -1574116 +left.right.symbol +nonsensical +2 +left.right.left +nonsensical +2 +left.right.right +nonsensical +2 +right +853119666 1 -this.symbol -247113402 +right.symbol +1784662007 1 -this.symbol.getClass().getName() +right.symbol.symbol +1435804085 +1 +right.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +right.symbol.frequency +1 +1 +right.left +null +1 +right.left.symbol +nonsensical 2 +right.left.left +nonsensical +2 +right.left.right +nonsensical +2 +right.right +null 1 -return +right.right.symbol +nonsensical 2 +right.right.left +nonsensical +2 +right.right.right +nonsensical +2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +270 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 559670971 1576861390 600746945] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -301 +271 this -470905757 +2081303229 1 this.symbol -1574116 +1456208737 1 this.symbol.symbol -247113402 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -40029,21 +40732,153 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +272 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +272 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 return +5 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +271 +this +2081303229 +1 +this.symbol +1456208737 +1 +this.symbol.symbol +1018547642 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +5 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical 2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -303 +273 this -467870275 +1014328909 1 this.symbol -1799775865 +1513712028 1 this.symbol.symbol -2112836430 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -40132,12 +40967,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -304 +274 this -1799775865 +1513712028 1 this.symbol -2112836430 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -40148,12 +40983,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -304 +274 this -1799775865 +1513712028 1 this.symbol -2112836430 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -40167,15 +41002,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -303 +273 this -467870275 +1014328909 1 this.symbol -1799775865 +1513712028 1 this.symbol.symbol -2112836430 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -40267,15 +41102,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -305 +275 this -470905757 +1223685984 1 this.symbol -1574116 +13648335 1 this.symbol.symbol -247113402 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -40364,12 +41199,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -306 +276 this -1574116 +13648335 1 this.symbol -247113402 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -40380,12 +41215,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -306 +276 this -1574116 +13648335 1 this.symbol -247113402 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -40399,15 +41234,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -305 +275 this -470905757 +1223685984 1 this.symbol -1574116 +13648335 1 this.symbol.symbol -247113402 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -40499,21 +41334,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -307 +277 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -40596,56 +41431,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -308 +278 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -308 +278 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -307 +277 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -40726,20 +41561,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -309 +279 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -40828,12 +41663,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -310 +280 this -1574116 +453211571 1 this.symbol -247113402 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -40844,12 +41679,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -310 +280 this -1574116 +453211571 1 this.symbol -247113402 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -40863,15 +41698,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -309 +279 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -40963,21 +41798,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -311 +281 this -1887685159 +1014328909 1 this.symbol -646946680 +1513712028 1 this.symbol.symbol -871834823 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -41060,150 +41895,50 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -312 +282 this -646946680 +1513712028 1 this.symbol -871834823 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -312 +282 this -646946680 +1513712028 1 this.symbol -871834823 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -311 -this -1887685159 -1 -this.symbol -646946680 -1 -this.symbol.symbol -871834823 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -1 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical 2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return -1 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -313 +281 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -41289,53 +42024,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -314 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -314 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -313 +283 this -470905757 +1463757745 1 this.symbol -1574116 +757108857 1 this.symbol.symbol -247113402 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -41421,46 +42124,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +284 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +284 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -315 +283 this -1128590881 +1463757745 1 this.symbol -null +757108857 1 this.symbol.symbol -nonsensical -2 +796684896 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -41471,8 +42206,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -41483,23 +42218,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -41510,8 +42245,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -41521,24 +42256,27 @@ nonsensical this.right.right.right nonsensical 2 +return +2 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -316 +285 this -1987411885 +1014328909 1 this.symbol -202918529 +1513712028 1 this.symbol.symbol -1297548602 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -41621,56 +42359,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -317 +286 this -202918529 +1513712028 1 this.symbol -1297548602 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -317 +286 this -202918529 +1513712028 1 this.symbol -1297548602 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -316 +285 this -1987411885 +1014328909 1 this.symbol -202918529 +1513712028 1 this.symbol.symbol -1297548602 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -41751,26 +42489,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -318 +287 this -239304688 +1525262377 1 this.symbol -1964711431 +1802598046 1 this.symbol.symbol -756278511 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -41853,56 +42591,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -319 +288 this -1964711431 +1802598046 1 this.symbol -756278511 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -319 +288 this -1964711431 +1802598046 1 this.symbol -756278511 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -318 +287 this -239304688 +1525262377 1 this.symbol -1964711431 +1802598046 1 this.symbol.symbol -756278511 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -41983,45 +42721,45 @@ this.right.right.right nonsensical 2 return -1 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -315 +289 this -1128590881 +1014328909 1 this.symbol -null +1513712028 1 this.symbol.symbol -nonsensical -2 +747464370 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -42032,8 +42770,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -42044,23 +42782,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -42071,8 +42809,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -42082,27 +42820,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +290 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +290 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -320 +289 this -1887685159 +1014328909 1 this.symbol -646946680 +1513712028 1 this.symbol.symbol -871834823 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -42182,59 +42952,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -321 -this -646946680 -1 -this.symbol -871834823 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -321 -this -646946680 -1 -this.symbol -871834823 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -320 +291 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -42314,46 +43052,78 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +292 +this +240650537 1 +this.symbol +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -322 +292 this -1651366663 +240650537 1 this.symbol -null +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 +1 +return +6 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +291 +this +1837760739 +1 +this.symbol +240650537 1 this.symbol.symbol -nonsensical -2 +659748578 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +6 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -42364,8 +43134,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -42376,23 +43146,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -42403,8 +43173,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -42414,24 +43184,27 @@ nonsensical this.right.right.right nonsensical 2 +return +6 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -323 +293 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -42514,56 +43287,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -324 +294 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -324 +294 this -2090220954 +1513712028 1 this.symbol -1196464545 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -323 +293 this -1904504032 +1014328909 1 this.symbol -2090220954 +1513712028 1 this.symbol.symbol -1196464545 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -42644,26 +43417,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -325 +295 this -755507289 +1418428263 1 this.symbol -42217019 +2088051243 1 this.symbol.symbol -1806076252 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -42746,56 +43519,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -326 +296 this -42217019 +2088051243 1 this.symbol -1806076252 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -326 +296 this -42217019 +2088051243 1 this.symbol -1806076252 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -325 +295 this -755507289 +1418428263 1 this.symbol -42217019 +2088051243 1 this.symbol.symbol -1806076252 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -42876,126 +43649,26 @@ this.right.right.right nonsensical 2 return -1 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -322 -this -1651366663 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 -1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 -1 -this.right.symbol -42217019 -1 -this.right.symbol.symbol -1806076252 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -327 +297 this -1887685159 +1014328909 1 this.symbol -646946680 +1513712028 1 this.symbol.symbol -871834823 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -43078,56 +43751,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -328 +298 this -646946680 +1513712028 1 this.symbol -871834823 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -328 +298 this -646946680 +1513712028 1 this.symbol -871834823 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -327 +297 this -1887685159 +1014328909 1 this.symbol -646946680 +1513712028 1 this.symbol.symbol -871834823 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -43208,97 +43881,26 @@ this.right.right.right nonsensical 2 return -1 -1 - -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 -this_invocation_nonce -270 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -1887685159 -1 -return.symbol -646946680 -1 -return.symbol.symbol -871834823 -1 -return.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -return.symbol.frequency -1 -1 -return.left -null -1 -return.left.symbol -nonsensical -2 -return.left.left -nonsensical -2 -return.left.right -nonsensical 2 -return.right -null -1 -return.right.symbol -nonsensical -2 -return.right.left -nonsensical -2 -return.right.right -nonsensical -2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -329 -nodeList -1548550182 -1 -nodeList[..] -[470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -330 +299 this -1035818704 +2059904228 1 this.symbol -1582525299 +41903949 1 this.symbol.symbol -686363848 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -43381,56 +43983,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -331 +300 this -1582525299 +41903949 1 this.symbol -686363848 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -331 +300 this -1582525299 +41903949 1 this.symbol -686363848 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 return -5 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -330 +299 this -1035818704 +2059904228 1 this.symbol -1582525299 +41903949 1 this.symbol.symbol -686363848 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -43511,20 +44113,20 @@ this.right.right.right nonsensical 2 return -5 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -332 +301 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -43613,12 +44215,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -333 +302 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -43629,12 +44231,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -333 +302 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -43648,15 +44250,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -332 +301 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -43748,15 +44350,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -334 +303 this -1502515546 +1836643189 1 this.symbol -1097499032 +1209271652 1 this.symbol.symbol -917732198 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -43845,12 +44447,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -335 +304 this -1097499032 +1209271652 1 this.symbol -917732198 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -43861,12 +44463,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -335 +304 this -1097499032 +1209271652 1 this.symbol -917732198 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -43880,15 +44482,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -334 +303 this -1502515546 +1836643189 1 this.symbol -1097499032 +1209271652 1 this.symbol.symbol -917732198 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -43980,15 +44582,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -336 +305 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -44077,12 +44679,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -337 +306 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -44093,12 +44695,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -337 +306 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -44112,15 +44714,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -336 +305 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -44212,21 +44814,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -338 +307 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -44309,56 +44911,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -339 +308 this -340475003 +2083562754 1 this.symbol -929186741 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -339 +308 this -340475003 +2083562754 1 this.symbol -929186741 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -338 +307 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -44439,252 +45041,20 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -340 -this -470905757 -1 -this.symbol -1574116 -1 -this.symbol.symbol -247113402 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -341 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -341 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -340 +309 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -342 -this -1227419517 -1 -this.symbol -1745169531 -1 -this.symbol.symbol -1466939813 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -44773,12 +45143,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -343 +310 this -1745169531 +1513712028 1 this.symbol -1466939813 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -44789,12 +45159,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -343 +310 this -1745169531 +1513712028 1 this.symbol -1466939813 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -44808,15 +45178,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -342 +309 this -1227419517 +1014328909 1 this.symbol -1745169531 +1513712028 1 this.symbol.symbol -1466939813 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -44908,21 +45278,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -344 +311 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -45005,56 +45375,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -345 +312 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -345 +312 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -344 +311 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -45135,26 +45505,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -346 +313 this -511909137 +1014328909 1 this.symbol -91454439 +1513712028 1 this.symbol.symbol -732656791 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -45237,56 +45607,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -347 +314 this -91454439 +1513712028 1 this.symbol -732656791 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -347 +314 this -91454439 +1513712028 1 this.symbol -732656791 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -346 +313 this -511909137 +1014328909 1 this.symbol -91454439 +1513712028 1 this.symbol.symbol -732656791 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -45367,26 +45737,123 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -348 +315 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +316 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -45469,56 +45936,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -349 +317 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -349 +317 this -1574116 +901506536 1 this.symbol -247113402 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -348 +316 this -470905757 +1307096070 1 this.symbol -1574116 +901506536 1 this.symbol.symbol -247113402 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -45599,26 +46066,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -350 +318 this -837375677 +1597462040 1 this.symbol -1335593353 +557041912 1 this.symbol.symbol -1623948668 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -45701,56 +46168,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -351 +319 this -1335593353 +557041912 1 this.symbol -1623948668 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -351 +319 this -1335593353 +557041912 1 this.symbol -1623948668 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -350 +318 this -837375677 +1597462040 1 this.symbol -1335593353 +557041912 1 this.symbol.symbol -1623948668 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -45831,26 +46298,126 @@ this.right.right.right nonsensical 2 return -6 +1 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +315 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -352 +320 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -45933,56 +46500,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -353 +321 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -353 +321 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -352 +320 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -46063,45 +46630,45 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -354 +322 this -1312664548 +600746945 1 this.symbol -1100231132 +null 1 this.symbol.symbol -1818405427 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -46112,8 +46679,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -46124,23 +46691,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -46151,8 +46718,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -46163,58 +46730,23 @@ this.right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -355 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -355 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -354 +323 this -1312664548 +403716510 1 this.symbol -1100231132 +985922955 1 this.symbol.symbol -1818405427 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -46294,27 +46826,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +324 +this +985922955 +1 +this.symbol +1134712904 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +324 +this +985922955 +1 +this.symbol +1134712904 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -3 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -356 +323 this -470905757 +403716510 1 this.symbol -1574116 +985922955 1 this.symbol.symbol -247113402 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -46394,59 +46958,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -357 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -357 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -356 +325 this -470905757 +853119666 1 this.symbol -1574116 +1784662007 1 this.symbol.symbol -247113402 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -46526,27 +47058,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +326 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +326 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -358 +325 this -853552605 +853119666 1 this.symbol -1180110925 +1784662007 1 this.symbol.symbol -1750434854 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -46626,78 +47190,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -359 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -359 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -358 +322 this -853552605 +600746945 1 this.symbol -1180110925 +null 1 this.symbol.symbol -1750434854 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -46708,8 +47240,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -46720,23 +47252,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -46747,8 +47279,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -46764,21 +47296,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -360 +327 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -46861,56 +47393,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -361 +328 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -361 +328 this -1574116 +509886383 1 this.symbol -247113402 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -360 +327 this -470905757 +559670971 1 this.symbol -1574116 +509886383 1 this.symbol.symbol -247113402 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -46991,26 +47523,97 @@ this.right.right.right nonsensical 2 return +1 +1 + +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +this_invocation_nonce +270 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +559670971 +1 +return.symbol +509886383 +1 +return.symbol.symbol +997110508 +1 +return.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +return.symbol.frequency +1 +1 +return.left +null +1 +return.left.symbol +nonsensical 2 +return.left.left +nonsensical +2 +return.left.right +nonsensical +2 +return.right +null +1 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical +2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +329 +nodeList +1144648478 +1 +nodeList[..] +[1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -362 +330 this -467870275 +2081303229 1 this.symbol -1799775865 +1456208737 1 this.symbol.symbol -2112836430 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -47093,56 +47696,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -363 +331 this -1799775865 +1456208737 1 this.symbol -2112836430 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -363 +331 this -1799775865 +1456208737 1 this.symbol -2112836430 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 return -2 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -362 +330 this -467870275 +2081303229 1 this.symbol -1799775865 +1456208737 1 this.symbol.symbol -2112836430 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -47223,20 +47826,20 @@ this.right.right.right nonsensical 2 return -2 +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -364 +332 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -47325,12 +47928,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -365 +333 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -47341,12 +47944,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -365 +333 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -47360,15 +47963,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -364 +332 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -47460,21 +48063,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -366 +334 this -1558080258 +1223685984 1 this.symbol -935344593 +13648335 1 this.symbol.symbol -1525795060 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -47557,56 +48160,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -367 +335 this -935344593 +13648335 1 this.symbol -1525795060 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -367 +335 this -935344593 +13648335 1 this.symbol -1525795060 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -366 +334 this -1558080258 +1223685984 1 this.symbol -935344593 +13648335 1 this.symbol.symbol -1525795060 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -47687,20 +48290,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -368 +336 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -47789,12 +48392,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -369 +337 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -47805,12 +48408,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -369 +337 this -1574116 +1513712028 1 this.symbol -247113402 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -47824,15 +48427,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -368 +336 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -47924,118 +48527,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -370 -this -1128590881 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 -1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -239304688 -1 -this.right.symbol -1964711431 -1 -this.right.symbol.symbol -756278511 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -371 +338 this -1987411885 +1076835071 1 this.symbol -202918529 +453211571 1 this.symbol.symbol -1297548602 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -48118,56 +48624,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -372 +339 this -202918529 +453211571 1 this.symbol -1297548602 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -372 +339 this -202918529 +453211571 1 this.symbol -1297548602 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -371 +338 this -1987411885 +1076835071 1 this.symbol -202918529 +453211571 1 this.symbol.symbol -1297548602 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -48248,26 +48754,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -373 +340 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -48350,56 +48856,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -374 +341 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -374 +341 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -373 +340 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -48480,45 +48986,45 @@ this.right.right.right nonsensical 2 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -370 +342 this -1128590881 +1463757745 1 this.symbol -null +757108857 1 this.symbol.symbol -nonsensical -2 +796684896 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -48529,8 +49035,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -48541,23 +49047,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -48568,8 +49074,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -48579,21 +49085,53 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +343 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +343 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -375 +342 this -470905757 +1463757745 1 this.symbol -1574116 +757108857 1 this.symbol.symbol -247113402 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -48679,53 +49217,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -376 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -376 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -375 +344 this -470905757 +1014328909 1 this.symbol -1574116 +1513712028 1 this.symbol.symbol -247113402 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -48811,46 +49317,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +345 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +345 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -377 +344 this -1651366663 +1014328909 1 this.symbol -null +1513712028 1 this.symbol.symbol -nonsensical -2 +747464370 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -48861,8 +49399,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -48873,23 +49411,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -48900,8 +49438,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -48911,24 +49449,27 @@ nonsensical this.right.right.right nonsensical 2 +return +2 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -378 +346 this -1904504032 +1525262377 1 this.symbol -2090220954 +1802598046 1 this.symbol.symbol -1196464545 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -49011,56 +49552,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -379 +347 this -2090220954 +1802598046 1 this.symbol -1196464545 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -379 +347 this -2090220954 +1802598046 1 this.symbol -1196464545 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -378 +346 this -1904504032 +1525262377 1 this.symbol -2090220954 +1802598046 1 this.symbol.symbol -1196464545 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -49141,26 +49682,26 @@ this.right.right.right nonsensical 2 return -1 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -380 +348 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -49243,56 +49784,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -381 +349 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -381 +349 this -42217019 +1513712028 1 this.symbol -1806076252 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -380 +348 this -755507289 +1014328909 1 this.symbol -42217019 +1513712028 1 this.symbol.symbol -1806076252 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -49373,126 +49914,26 @@ this.right.right.right nonsensical 2 return -1 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -377 -this -1651366663 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 -1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 -1 -this.right.symbol -42217019 -1 -this.right.symbol.symbol -1806076252 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return 2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -382 +350 this -470905757 +1837760739 1 this.symbol -1574116 +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -49575,56 +50016,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -383 +351 this -1574116 +240650537 1 this.symbol -247113402 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -383 +351 this -1574116 +240650537 1 this.symbol -247113402 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +6 1 return -2 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -382 +350 this -470905757 +1837760739 1 this.symbol -1574116 +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -49705,354 +50146,258 @@ this.right.right.right nonsensical 2 return -2 +6 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -329 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -470905757 +352 +this +1014328909 1 -return.symbol -1574116 +this.symbol +1513712028 1 -return.symbol.symbol -247113402 +this.symbol.symbol +747464370 1 -return.symbol.symbol.getClass().getName() +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency +this.symbol.frequency 2 1 -return.left +this.left null 1 -return.left.symbol +this.left.symbol nonsensical 2 -return.left.left +this.left.symbol.symbol nonsensical 2 -return.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -return.right -null -1 -return.right.symbol +this.left.symbol.frequency nonsensical 2 -return.right.left +this.left.left nonsensical 2 -return.right.right +this.left.left.symbol nonsensical 2 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER -this_invocation_nonce -384 -left -1887685159 -1 -left.symbol -646946680 -1 -left.symbol.symbol -871834823 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -1 -1 -left.left -null -1 -left.left.symbol +this.left.left.left nonsensical 2 -left.left.left +this.left.left.right nonsensical 2 -left.left.right +this.left.right nonsensical 2 -left.right +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right null 1 -left.right.symbol +this.right.symbol nonsensical 2 -left.right.left +this.right.symbol.symbol nonsensical 2 -left.right.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -right -470905757 -1 -right.symbol -1574116 -1 -right.symbol.symbol -247113402 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency +this.right.symbol.frequency +nonsensical 2 -1 -right.left -null -1 -right.left.symbol +this.right.left nonsensical 2 -right.left.left +this.right.left.symbol nonsensical 2 -right.left.right +this.right.left.left nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.left.right nonsensical 2 -right.right.left +this.right.right nonsensical 2 -right.right.right +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right nonsensical 2 -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -384 +353 this -440851213 +1513712028 1 this.symbol -null +747464370 1 -this.symbol.symbol -nonsensical +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.symbol.getClass().getName() -nonsensical +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +353 +this +1513712028 +1 +this.symbol +747464370 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.frequency -nonsensical +1 +return 2 -this.left -1887685159 1 -this.left.symbol -646946680 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +352 +this +1014328909 1 -this.left.symbol.symbol -871834823 +this.symbol +1513712028 1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" +this.symbol.symbol +747464370 1 -this.left.symbol.frequency +this.symbol.symbol.getClass().getName() +"java.lang.Character" 1 +this.symbol.frequency +2 1 -this.left.left +this.left null 1 -this.left.left.symbol +this.left.symbol nonsensical 2 -this.left.left.left +this.left.symbol.symbol nonsensical 2 -this.left.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left.right -null -1 -this.left.right.symbol +this.left.symbol.frequency nonsensical 2 -this.left.right.left +this.left.left nonsensical 2 -this.left.right.right +this.left.left.symbol nonsensical 2 -this.right -470905757 -1 -this.right.symbol -1574116 -1 -this.right.symbol.symbol -247113402 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol +this.left.left.left nonsensical 2 -this.right.left.left +this.left.left.right nonsensical 2 -this.right.left.right +this.left.right nonsensical 2 -this.right.right -null -1 -this.right.right.symbol +this.left.right.symbol nonsensical 2 -this.right.right.left +this.left.right.left nonsensical 2 -this.right.right.right +this.left.right.right nonsensical 2 -left -1887685159 -1 -left.symbol -646946680 -1 -left.symbol.symbol -871834823 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -1 -1 -left.left +this.right null 1 -left.left.symbol +this.right.symbol nonsensical 2 -left.left.left +this.right.symbol.symbol nonsensical 2 -left.left.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -left.right -null -1 -left.right.symbol +this.right.symbol.frequency nonsensical 2 -left.right.left +this.right.left nonsensical 2 -left.right.right +this.right.left.symbol nonsensical 2 -right -470905757 -1 -right.symbol -1574116 -1 -right.symbol.symbol -247113402 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency -2 -1 -right.left -null -1 -right.left.symbol +this.right.left.left nonsensical 2 -right.left.left +this.right.left.right nonsensical 2 -right.left.right +this.right.right nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.right.symbol nonsensical 2 -right.right.left +this.right.right.left nonsensical 2 -right.right.right +this.right.right.right nonsensical 2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -385 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -386 +354 this -1502515546 +1418428263 1 this.symbol -1097499032 +2088051243 1 this.symbol.symbol -917732198 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -50135,56 +50480,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -387 +355 this -1097499032 +2088051243 1 this.symbol -917732198 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -387 +355 this -1097499032 +2088051243 1 this.symbol -917732198 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -386 +354 this -1502515546 +1418428263 1 this.symbol -1097499032 +2088051243 1 this.symbol.symbol -917732198 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -50265,26 +50610,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -388 +356 this -1035818704 +1014328909 1 this.symbol -1582525299 +1513712028 1 this.symbol.symbol -686363848 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -50367,56 +50712,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -389 +357 this -1582525299 +1513712028 1 this.symbol -686363848 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -389 +357 this -1582525299 +1513712028 1 this.symbol -686363848 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 return -5 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -388 +356 this -1035818704 +1014328909 1 this.symbol -1582525299 +1513712028 1 this.symbol.symbol -686363848 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -50497,20 +50842,20 @@ this.right.right.right nonsensical 2 return -5 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -390 +358 this -518576549 +2059904228 1 this.symbol -340475003 +41903949 1 this.symbol.symbol -929186741 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -50599,12 +50944,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -391 +359 this -340475003 +41903949 1 this.symbol -929186741 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -50615,12 +50960,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -391 +359 this -340475003 +41903949 1 this.symbol -929186741 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -50634,15 +50979,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -390 +358 this -518576549 +2059904228 1 this.symbol -340475003 +41903949 1 this.symbol.symbol -929186741 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -50734,15 +51079,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -392 +360 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -50831,12 +51176,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -393 +361 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -50847,12 +51192,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -393 +361 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -50866,15 +51211,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -392 +360 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -50966,15 +51311,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -394 +362 this -1227419517 +1836643189 1 this.symbol -1745169531 +1209271652 1 this.symbol.symbol -1466939813 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -51063,12 +51408,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -395 +363 this -1745169531 +1209271652 1 this.symbol -1466939813 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -51079,12 +51424,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -395 +363 this -1745169531 +1209271652 1 this.symbol -1466939813 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -51098,15 +51443,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -394 +362 this -1227419517 +1836643189 1 this.symbol -1745169531 +1209271652 1 this.symbol.symbol -1466939813 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -51198,15 +51543,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -396 +364 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -51295,12 +51640,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -397 +365 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -51311,12 +51656,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -397 +365 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -51330,15 +51675,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -396 +364 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -51430,147 +51775,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -398 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -399 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -399 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -398 +366 this -511909137 +1355316001 1 this.symbol -91454439 +2083562754 1 this.symbol.symbol -732656791 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -51656,159 +51869,59 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -400 -this -1502515546 -1 -this.symbol -1097499032 -1 -this.symbol.symbol -917732198 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -401 +367 this -1097499032 +2083562754 1 this.symbol -917732198 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -401 +367 this -1097499032 +2083562754 1 this.symbol -917732198 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -400 +366 this -1502515546 +1355316001 1 this.symbol -1097499032 +2083562754 1 this.symbol.symbol -917732198 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -51889,26 +52002,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -402 +368 this -837375677 +1014328909 1 this.symbol -1335593353 +1513712028 1 this.symbol.symbol -1623948668 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -51991,56 +52104,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -403 +369 this -1335593353 +1513712028 1 this.symbol -1623948668 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -403 +369 this -1335593353 +1513712028 1 this.symbol -1623948668 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +2 1 return -6 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -402 +368 this -837375677 +1014328909 1 this.symbol -1335593353 +1513712028 1 this.symbol.symbol -1623948668 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -52121,26 +52234,123 @@ this.right.right.right nonsensical 2 return -6 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -404 +370 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +371 this -1502515546 +1307096070 1 this.symbol -1097499032 +901506536 1 this.symbol.symbol -917732198 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -52223,56 +52433,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -405 +372 this -1097499032 +901506536 1 this.symbol -917732198 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -405 +372 this -1097499032 +901506536 1 this.symbol -917732198 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -404 +371 this -1502515546 +1307096070 1 this.symbol -1097499032 +901506536 1 this.symbol.symbol -917732198 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -52353,26 +52563,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -406 +373 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -52455,56 +52665,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -407 +374 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -407 +374 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -406 +373 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -52585,20 +52795,120 @@ this.right.right.right nonsensical 2 return -3 +1 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +370 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -408 +375 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -52687,12 +52997,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -409 +376 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -52703,12 +53013,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -409 +376 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -52722,15 +53032,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -408 +375 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -52822,40 +53132,40 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -410 +377 this -853552605 +600746945 1 this.symbol -1180110925 +null 1 this.symbol.symbol -1750434854 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -52866,8 +53176,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -52878,23 +53188,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -52905,8 +53215,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -52917,58 +53227,23 @@ this.right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -411 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -411 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -410 +378 this -853552605 +403716510 1 this.symbol -1180110925 +985922955 1 this.symbol.symbol -1750434854 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -53048,27 +53323,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +379 +this +985922955 +1 +this.symbol +1134712904 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +379 +this +985922955 +1 +this.symbol +1134712904 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -412 +378 this -1502515546 +403716510 1 this.symbol -1097499032 +985922955 1 this.symbol.symbol -917732198 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -53148,59 +53455,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -413 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -413 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -412 +380 this -1502515546 +853119666 1 this.symbol -1097499032 +1784662007 1 this.symbol.symbol -917732198 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -53280,27 +53555,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +381 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +381 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -414 +380 this -467870275 +853119666 1 this.symbol -1799775865 +1784662007 1 this.symbol.symbol -2112836430 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -53380,78 +53687,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -415 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -415 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -414 +377 this -467870275 +600746945 1 this.symbol -1799775865 +null 1 this.symbol.symbol -2112836430 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -53462,8 +53737,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -53474,23 +53749,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -53501,8 +53776,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -53518,15 +53793,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -416 +382 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -53615,12 +53890,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -417 +383 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -53631,12 +53906,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -417 +383 this -1097499032 +1513712028 1 this.symbol -917732198 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -53650,15 +53925,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -416 +382 this -1502515546 +1014328909 1 this.symbol -1097499032 +1513712028 1 this.symbol.symbol -917732198 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -53748,249 +54023,345 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -418 -this -1558080258 +329 +nodeList +1144648478 1 -this.symbol -935344593 +nodeList[..] +[2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945] 1 -this.symbol.symbol -1525795060 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 -this.symbol.symbol.getClass().getName() +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +1014328909 +1 +return.symbol +1513712028 +1 +return.symbol.symbol +747464370 +1 +return.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -3 +return.symbol.frequency +2 1 -this.left +return.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency +return.left.symbol nonsensical 2 -this.left.left +return.left.left nonsensical 2 -this.left.left.symbol +return.left.right nonsensical 2 -this.left.left.left +return.right +null +1 +return.right.symbol nonsensical 2 -this.left.left.right +return.right.left nonsensical 2 -this.left.right +return.right.right nonsensical 2 -this.left.right.symbol + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER +this_invocation_nonce +384 +left +559670971 +1 +left.symbol +509886383 +1 +left.symbol.symbol +997110508 +1 +left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +left.symbol.frequency +1 +1 +left.left +null +1 +left.left.symbol nonsensical 2 -this.left.right.left +left.left.left nonsensical 2 -this.left.right.right +left.left.right nonsensical 2 -this.right +left.right null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() +left.right.symbol nonsensical 2 -this.right.symbol.frequency +left.right.left nonsensical 2 -this.right.left +left.right.right nonsensical 2 -this.right.left.symbol -nonsensical +right +1014328909 +1 +right.symbol +1513712028 +1 +right.symbol.symbol +747464370 +1 +right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +right.symbol.frequency 2 -this.right.left.left +1 +right.left +null +1 +right.left.symbol nonsensical 2 -this.right.left.right +right.left.left nonsensical 2 -this.right.right +right.left.right nonsensical 2 -this.right.right.symbol +right.right +null +1 +right.right.symbol nonsensical 2 -this.right.right.left +right.right.left nonsensical 2 -this.right.right.right +right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 this_invocation_nonce -419 +384 this -935344593 +1566502717 1 this.symbol -1525795060 -1 -this.symbol.getClass().getName() -"java.lang.Character" +null 1 -this.frequency -3 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +559670971 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -419 -this -935344593 +this.left.symbol +509886383 1 -this.symbol -1525795060 +this.left.symbol.symbol +997110508 1 -this.symbol.getClass().getName() +this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -418 -this -1558080258 -1 -this.symbol -935344593 -1 -this.symbol.symbol -1525795060 +this.left.symbol.frequency 1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" 1 -this.symbol.frequency -3 -1 -this.left +this.left.left null 1 -this.left.symbol +this.left.left.symbol nonsensical 2 -this.left.symbol.symbol +this.left.left.left nonsensical 2 -this.left.symbol.symbol.getClass().getName() +this.left.left.right nonsensical 2 -this.left.symbol.frequency +this.left.right +null +1 +this.left.right.symbol nonsensical 2 -this.left.left +this.left.right.left nonsensical 2 -this.left.left.symbol +this.left.right.right nonsensical 2 -this.left.left.left +this.right +1014328909 +1 +this.right.symbol +1513712028 +1 +this.right.symbol.symbol +747464370 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +2 +1 +this.right.left +null +1 +this.right.left.symbol nonsensical 2 -this.left.left.right +this.right.left.left nonsensical 2 -this.left.right +this.right.left.right nonsensical 2 -this.left.right.symbol +this.right.right +null +1 +this.right.right.symbol nonsensical 2 -this.left.right.left +this.right.right.left nonsensical 2 -this.left.right.right +this.right.right.right nonsensical 2 -this.right +left +559670971 +1 +left.symbol +509886383 +1 +left.symbol.symbol +997110508 +1 +left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +left.symbol.frequency +1 +1 +left.left null 1 -this.right.symbol +left.left.symbol nonsensical 2 -this.right.symbol.symbol +left.left.left nonsensical 2 -this.right.symbol.symbol.getClass().getName() +left.left.right nonsensical 2 -this.right.symbol.frequency +left.right +null +1 +left.right.symbol nonsensical 2 -this.right.left +left.right.left nonsensical 2 -this.right.left.symbol +left.right.right nonsensical 2 -this.right.left.left +right +1014328909 +1 +right.symbol +1513712028 +1 +right.symbol.symbol +747464370 +1 +right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +right.symbol.frequency +2 +1 +right.left +null +1 +right.left.symbol nonsensical 2 -this.right.left.right +right.left.left nonsensical 2 -this.right.right +right.left.right nonsensical 2 -this.right.right.symbol +right.right +null +1 +right.right.symbol nonsensical 2 -this.right.right.left +right.right.left nonsensical 2 -this.right.right.right +right.right.right nonsensical 2 -return -3 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +385 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -420 +386 this -1502515546 +1223685984 1 this.symbol -1097499032 +13648335 1 this.symbol.symbol -917732198 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -54079,12 +54450,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -421 +387 this -1097499032 +13648335 1 this.symbol -917732198 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -54095,12 +54466,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -421 +387 this -1097499032 +13648335 1 this.symbol -917732198 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -54114,15 +54485,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -420 +386 this -1502515546 +1223685984 1 this.symbol -1097499032 +13648335 1 this.symbol.symbol -917732198 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -54214,40 +54585,40 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -422 +388 this -1128590881 +2081303229 1 this.symbol -null +1456208737 1 this.symbol.symbol -nonsensical -2 +1018547642 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +5 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -54258,8 +54629,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -54270,23 +54641,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -54297,8 +54668,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -54309,23 +54680,58 @@ this.right.right.right nonsensical 2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -423 +389 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +389 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 +return +5 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +388 this -1987411885 +2081303229 1 this.symbol -202918529 +1456208737 1 this.symbol.symbol -1297548602 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +5 1 this.left null @@ -54405,59 +54811,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -424 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -424 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +5 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -423 +390 this -1987411885 +1076835071 1 this.symbol -202918529 +453211571 1 this.symbol.symbol -1297548602 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -54537,27 +54911,59 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +391 +this +453211571 1 +this.symbol +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -425 +391 this -239304688 +453211571 1 this.symbol -1964711431 +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +390 +this +1076835071 +1 +this.symbol +453211571 1 this.symbol.symbol -756278511 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -54637,59 +55043,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -426 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -426 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -425 +392 this -239304688 +1223685984 1 this.symbol -1964711431 +13648335 1 this.symbol.symbol -756278511 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -54769,46 +55143,78 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +393 +this +13648335 1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -422 +393 this -1128590881 +13648335 1 this.symbol -null +288665596 1 -this.symbol.symbol -nonsensical +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.symbol.getClass().getName() -nonsensical +1 +return 2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +392 +this +1223685984 +1 +this.symbol +13648335 +1 +this.symbol.symbol +288665596 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -54819,8 +55225,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -54831,23 +55237,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -54858,8 +55264,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -54875,15 +55281,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -427 +394 this -1502515546 +1463757745 1 this.symbol -1097499032 +757108857 1 this.symbol.symbol -917732198 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -54972,12 +55378,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -428 +395 this -1097499032 +757108857 1 this.symbol -917732198 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -54988,12 +55394,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -428 +395 this -1097499032 +757108857 1 this.symbol -917732198 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -55007,15 +55413,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -427 +394 this -1502515546 +1463757745 1 this.symbol -1097499032 +757108857 1 this.symbol.symbol -917732198 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -55107,118 +55513,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -429 -this -1651366663 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 -1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 -1 -this.right.symbol -42217019 -1 -this.right.symbol.symbol -1806076252 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -430 +396 this -1904504032 +1223685984 1 this.symbol -2090220954 +13648335 1 this.symbol.symbol -1196464545 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -55301,56 +55610,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -431 +397 this -2090220954 +13648335 1 this.symbol -1196464545 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -431 +397 this -2090220954 +13648335 1 this.symbol -1196464545 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -430 +396 this -1904504032 +1223685984 1 this.symbol -2090220954 +13648335 1 this.symbol.symbol -1196464545 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -55431,26 +55740,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -432 +398 this -755507289 +1525262377 1 this.symbol -42217019 +1802598046 1 this.symbol.symbol -1806076252 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -55533,56 +55842,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -433 +399 this -42217019 +1802598046 1 this.symbol -1806076252 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -433 +399 this -42217019 +1802598046 1 this.symbol -1806076252 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -432 +398 this -755507289 +1525262377 1 this.symbol -42217019 +1802598046 1 this.symbol.symbol -1806076252 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -55663,45 +55972,45 @@ this.right.right.right nonsensical 2 return -1 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -429 +400 this -1651366663 +1223685984 1 this.symbol -null +13648335 1 this.symbol.symbol -nonsensical -2 +288665596 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -55712,8 +56021,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -55724,23 +56033,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -55751,8 +56060,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -55762,21 +56071,53 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +401 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +401 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -434 +400 this -1502515546 +1223685984 1 this.symbol -1097499032 +13648335 1 this.symbol.symbol -917732198 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -55862,59 +56203,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -435 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -435 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -434 +402 this -1502515546 +1837760739 1 this.symbol -1097499032 +240650537 1 this.symbol.symbol -917732198 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -55994,46 +56303,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +403 +this +240650537 +1 +this.symbol +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +403 +this +240650537 +1 +this.symbol +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 +1 return -2 +6 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -436 +402 this -440851213 +1837760739 1 this.symbol -null +240650537 1 this.symbol.symbol -nonsensical -2 +659748578 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +6 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -56044,8 +56385,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -56056,23 +56397,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -56083,8 +56424,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -56094,24 +56435,27 @@ nonsensical this.right.right.right nonsensical 2 +return +6 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -437 +404 this -1887685159 +1223685984 1 this.symbol -646946680 +13648335 1 this.symbol.symbol -871834823 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -56194,56 +56538,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -438 +405 this -646946680 +13648335 1 this.symbol -871834823 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -438 +405 this -646946680 +13648335 1 this.symbol -871834823 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -437 +404 this -1887685159 +1223685984 1 this.symbol -646946680 +13648335 1 this.symbol.symbol -871834823 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -56324,26 +56668,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -439 +406 this -470905757 +1418428263 1 this.symbol -1574116 +2088051243 1 this.symbol.symbol -247113402 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -56426,56 +56770,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -440 +407 this -1574116 +2088051243 1 this.symbol -247113402 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -440 +407 this -1574116 +2088051243 1 this.symbol -247113402 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -439 +406 this -470905757 +1418428263 1 this.symbol -1574116 +2088051243 1 this.symbol.symbol -247113402 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -56556,45 +56900,177 @@ this.right.right.right nonsensical 2 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -436 +408 this -440851213 +1223685984 1 this.symbol -null +13648335 1 this.symbol.symbol +288665596 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol nonsensical 2 -this.symbol.symbol.getClass().getName() +this.left.symbol.symbol nonsensical 2 -this.symbol.frequency +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left -1887685159 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null 1 -this.left.symbol -646946680 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +409 +this +13648335 1 -this.left.symbol.symbol -871834823 +this.symbol +288665596 1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency +this.frequency +2 1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +409 +this +13648335 1 -this.left.left +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +408 +this +1223685984 +1 +this.symbol +13648335 +1 +this.symbol.symbol +288665596 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left null 1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -56605,8 +57081,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -56617,23 +57093,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -56644,8 +57120,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -56656,20 +57132,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -441 +410 this -1502515546 +2059904228 1 this.symbol -1097499032 +41903949 1 this.symbol.symbol -917732198 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -56758,12 +57234,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -442 +411 this -1097499032 +41903949 1 this.symbol -917732198 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -56774,12 +57250,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -442 +411 this -1097499032 +41903949 1 this.symbol -917732198 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -56793,15 +57269,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -441 +410 this -1502515546 +2059904228 1 this.symbol -1097499032 +41903949 1 this.symbol.symbol -917732198 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -56891,88 +57367,17 @@ return 2 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 -this_invocation_nonce -385 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -1502515546 -1 -return.symbol -1097499032 -1 -return.symbol.symbol -917732198 -1 -return.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -return.symbol.frequency -2 -1 -return.left -null -1 -return.left.symbol -nonsensical -2 -return.left.left -nonsensical -2 -return.left.right -nonsensical -2 -return.right -null -1 -return.right.symbol -nonsensical -2 -return.right.left -nonsensical -2 -return.right.right -nonsensical -2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -443 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 - six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -444 +412 this -518576549 +1223685984 1 this.symbol -340475003 +13648335 1 this.symbol.symbol -929186741 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -57061,12 +57466,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -445 +413 this -340475003 +13648335 1 this.symbol -929186741 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -57077,12 +57482,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -445 +413 this -340475003 +13648335 1 this.symbol -929186741 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -57096,15 +57501,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -444 +412 this -518576549 +1223685984 1 this.symbol -340475003 +13648335 1 this.symbol.symbol -929186741 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -57196,21 +57601,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -446 +414 this -1035818704 +1836643189 1 this.symbol -1582525299 +1209271652 1 this.symbol.symbol -686363848 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -57293,56 +57698,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -447 +415 this -1582525299 +1209271652 1 this.symbol -686363848 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -447 +415 this -1582525299 +1209271652 1 this.symbol -686363848 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 return -5 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -446 +414 this -1035818704 +1836643189 1 this.symbol -1582525299 +1209271652 1 this.symbol.symbol -686363848 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -57423,20 +57828,20 @@ this.right.right.right nonsensical 2 return -5 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -448 +416 this -1227419517 +1223685984 1 this.symbol -1745169531 +13648335 1 this.symbol.symbol -1466939813 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -57525,12 +57930,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -449 +417 this -1745169531 +13648335 1 this.symbol -1466939813 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -57541,12 +57946,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -449 +417 this -1745169531 +13648335 1 this.symbol -1466939813 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -57560,15 +57965,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -448 +416 this -1227419517 +1223685984 1 this.symbol -1745169531 +13648335 1 this.symbol.symbol -1466939813 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -57660,21 +58065,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -450 +418 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -57757,56 +58162,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -451 +419 this -340475003 +2083562754 1 this.symbol -929186741 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -451 +419 this -340475003 +2083562754 1 this.symbol -929186741 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -450 +418 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -57887,26 +58292,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -452 +420 this -511909137 +1223685984 1 this.symbol -91454439 +13648335 1 this.symbol.symbol -732656791 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -57989,56 +58394,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -453 +421 this -91454439 +13648335 1 this.symbol -732656791 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -453 +421 this -91454439 +13648335 1 this.symbol -732656791 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -452 +420 this -511909137 +1223685984 1 this.symbol -91454439 +13648335 1 this.symbol.symbol -732656791 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -58119,177 +58524,45 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -454 +422 this -518576549 +1576861390 1 this.symbol -340475003 -1 -this.symbol.symbol -929186741 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol +this.symbol.symbol nonsensical 2 -this.right.right.left +this.symbol.symbol.getClass().getName() nonsensical 2 -this.right.right.right +this.symbol.frequency nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -455 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 +this.left +1307096070 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -455 -this -340475003 +this.left.symbol +901506536 1 -this.symbol -929186741 +this.left.symbol.symbol +2109957412 1 -this.symbol.getClass().getName() +this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -454 -this -518576549 -1 -this.symbol -340475003 -1 -this.symbol.symbol -929186741 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" +this.left.symbol.frequency 1 -this.symbol.frequency -2 1 -this.left +this.left.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 this.left.left.symbol nonsensical 2 @@ -58300,8 +58573,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -58312,23 +58585,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -58339,8 +58612,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -58350,27 +58623,24 @@ nonsensical this.right.right.right nonsensical 2 -return -2 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -456 +423 this -837375677 +1307096070 1 this.symbol -1335593353 +901506536 1 this.symbol.symbol -1623948668 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -58453,56 +58723,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -457 +424 this -1335593353 +901506536 1 this.symbol -1623948668 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -457 +424 this -1335593353 +901506536 1 this.symbol -1623948668 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -456 +423 this -837375677 +1307096070 1 this.symbol -1335593353 +901506536 1 this.symbol.symbol -1623948668 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -58583,26 +58853,26 @@ this.right.right.right nonsensical 2 return -6 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -458 +425 this -518576549 +1597462040 1 this.symbol -340475003 +557041912 1 this.symbol.symbol -929186741 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -58685,56 +58955,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -459 +426 this -340475003 +557041912 1 this.symbol -929186741 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -459 +426 this -340475003 +557041912 1 this.symbol -929186741 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -458 +425 this -518576549 +1597462040 1 this.symbol -340475003 +557041912 1 this.symbol.symbol -929186741 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -58815,45 +59085,45 @@ this.right.right.right nonsensical 2 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -460 +422 this -1312664548 +1576861390 1 this.symbol -1100231132 +null 1 this.symbol.symbol -1818405427 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -58864,8 +59134,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -58876,23 +59146,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -58903,8 +59173,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -58914,59 +59184,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -461 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -461 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -460 +427 this -1312664548 +1223685984 1 this.symbol -1100231132 +13648335 1 this.symbol.symbol -1818405427 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -59046,21 +59284,53 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +428 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +428 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return -3 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -462 +427 this -518576549 +1223685984 1 this.symbol -340475003 +13648335 1 this.symbol.symbol -929186741 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -59146,78 +59416,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -463 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -463 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -462 +429 this -518576549 +600746945 1 this.symbol -340475003 +null 1 this.symbol.symbol -929186741 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -59228,8 +59466,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -59240,23 +59478,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -59267,8 +59505,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -59278,27 +59516,24 @@ nonsensical this.right.right.right nonsensical 2 -return -2 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -464 +430 this -853552605 +403716510 1 this.symbol -1180110925 +985922955 1 this.symbol.symbol -1750434854 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -59381,56 +59616,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -465 +431 this -1180110925 +985922955 1 this.symbol -1750434854 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -465 +431 this -1180110925 +985922955 1 this.symbol -1750434854 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -464 +430 this -853552605 +403716510 1 this.symbol -1180110925 +985922955 1 this.symbol.symbol -1750434854 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -59511,26 +59746,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -466 +432 this -518576549 +853119666 1 this.symbol -340475003 +1784662007 1 this.symbol.symbol -929186741 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -59613,56 +59848,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -467 +433 this -340475003 +1784662007 1 this.symbol -929186741 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -467 +433 this -340475003 +1784662007 1 this.symbol -929186741 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -466 +432 this -518576549 +853119666 1 this.symbol -340475003 +1784662007 1 this.symbol.symbol -929186741 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -59743,45 +59978,45 @@ this.right.right.right nonsensical 2 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -468 +429 this -467870275 +600746945 1 this.symbol -1799775865 +null 1 this.symbol.symbol -2112836430 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -59792,8 +60027,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -59804,23 +60039,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -59831,8 +60066,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -59842,53 +60077,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -469 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -469 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -468 +434 this -467870275 +1223685984 1 this.symbol -1799775865 +13648335 1 this.symbol.symbol -2112836430 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -59974,21 +60177,53 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +435 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +435 +this +13648335 +1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -470 +434 this -518576549 +1223685984 1 this.symbol -340475003 +13648335 1 this.symbol.symbol -929186741 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -60074,78 +60309,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -471 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -471 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -470 +436 this -518576549 +1566502717 1 this.symbol -340475003 +null 1 this.symbol.symbol -929186741 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +559670971 1 this.left.symbol -nonsensical -2 +509886383 +1 this.left.symbol.symbol -nonsensical -2 +997110508 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -60156,8 +60359,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -60168,23 +60371,23 @@ this.left.right.right nonsensical 2 this.right -null +1014328909 1 this.right.symbol -nonsensical -2 +1513712028 +1 this.right.symbol.symbol -nonsensical -2 +747464370 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -60195,8 +60398,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -60206,27 +60409,24 @@ nonsensical this.right.right.right nonsensical 2 -return -2 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -472 +437 this -1558080258 +559670971 1 this.symbol -935344593 +509886383 1 this.symbol.symbol -1525795060 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -60309,56 +60509,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -473 +438 this -935344593 +509886383 1 this.symbol -1525795060 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -473 +438 this -935344593 +509886383 1 this.symbol -1525795060 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -472 +437 this -1558080258 +559670971 1 this.symbol -935344593 +509886383 1 this.symbol.symbol -1525795060 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -60439,20 +60639,20 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -474 +439 this -518576549 +1014328909 1 this.symbol -340475003 +1513712028 1 this.symbol.symbol -929186741 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -60541,12 +60741,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -475 +440 this -340475003 +1513712028 1 this.symbol -929186741 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -60557,12 +60757,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -475 +440 this -340475003 +1513712028 1 this.symbol -929186741 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -60576,15 +60776,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -474 +439 this -518576549 +1014328909 1 this.symbol -340475003 +1513712028 1 this.symbol.symbol -929186741 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -60674,11 +60874,11 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -476 +436 this -1128590881 +1566502717 1 this.symbol null @@ -60693,13 +60893,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +559670971 1 this.left.symbol -202918529 +509886383 1 this.left.symbol.symbol -1297548602 +997110508 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -60732,19 +60932,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1014328909 1 this.right.symbol -1964711431 +1513712028 1 this.right.symbol.symbol -756278511 +747464370 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -60770,24 +60970,27 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -477 +441 this -1987411885 +1223685984 1 this.symbol -202918529 +13648335 1 this.symbol.symbol -1297548602 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -60870,56 +61073,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -478 +442 this -202918529 +13648335 1 this.symbol -1297548602 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -478 +442 this -202918529 +13648335 1 this.symbol -1297548602 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -477 +441 this -1987411885 +1223685984 1 this.symbol -202918529 +13648335 1 this.symbol.symbol -1297548602 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -61000,158 +61203,97 @@ this.right.right.right nonsensical 2 return -1 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -479 -this -239304688 +385 +nodeList +1144648478 1 -this.symbol -1964711431 +nodeList[..] +[2081303229 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717] 1 -this.symbol.symbol -756278511 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" +nodeList.getClass().getName() +"java.util.ArrayList" 1 -this.symbol.frequency +return +1223685984 1 +return.symbol +13648335 1 -this.left -null +return.symbol.symbol +288665596 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical +return.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +return.symbol.frequency 2 -this.right +1 +return.left null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left +return.left.symbol nonsensical 2 -this.right.left.right +return.left.left nonsensical 2 -this.right.right +return.left.right nonsensical 2 -this.right.right.symbol +return.right +null +1 +return.right.symbol nonsensical 2 -this.right.right.left +return.right.left nonsensical 2 -this.right.right.right +return.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -480 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER this_invocation_nonce -480 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency +443 +nodeList +1144648478 1 +nodeList[..] +[2081303229 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717] 1 -return +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -479 +444 this -239304688 +1076835071 1 this.symbol -1964711431 +453211571 1 this.symbol.symbol -756278511 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -61231,121 +61373,53 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -476 +445 this -1128590881 +453211571 1 this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 +312116338 1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical +this.frequency 2 -this.right -239304688 1 -this.right.symbol -1964711431 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +445 +this +453211571 1 -this.right.symbol.symbol -756278511 +this.symbol +312116338 1 -this.right.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical +this.frequency 2 -this.right.right -null 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -481 +444 this -518576549 +1076835071 1 this.symbol -340475003 +453211571 1 this.symbol.symbol -929186741 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -61431,59 +61505,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -482 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -482 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -481 +446 this -518576549 +2081303229 1 this.symbol -340475003 +1456208737 1 this.symbol.symbol -929186741 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -61563,46 +61605,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +447 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +447 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 return -2 +5 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -483 +446 this -1651366663 +2081303229 1 this.symbol -null +1456208737 1 this.symbol.symbol -nonsensical -2 +1018547642 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +5 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -61613,8 +61687,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -61625,23 +61699,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -61652,8 +61726,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -61663,24 +61737,27 @@ nonsensical this.right.right.right nonsensical 2 +return +5 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -484 +448 this -1904504032 +1463757745 1 this.symbol -2090220954 +757108857 1 this.symbol.symbol -1196464545 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -61763,56 +61840,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -485 +449 this -2090220954 +757108857 1 this.symbol -1196464545 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -485 +449 this -2090220954 +757108857 1 this.symbol -1196464545 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -484 +448 this -1904504032 +1463757745 1 this.symbol -2090220954 +757108857 1 this.symbol.symbol -1196464545 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -61893,26 +61970,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -486 +450 this -755507289 +1076835071 1 this.symbol -42217019 +453211571 1 this.symbol.symbol -1806076252 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -61995,56 +62072,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -487 +451 this -42217019 +453211571 1 this.symbol -1806076252 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -487 +451 this -42217019 +453211571 1 this.symbol -1806076252 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -486 +450 this -755507289 +1076835071 1 this.symbol -42217019 +453211571 1 this.symbol.symbol -1806076252 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -62125,126 +62202,26 @@ this.right.right.right nonsensical 2 return -1 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -483 -this -1651366663 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 -1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 -1 -this.right.symbol -42217019 -1 -this.right.symbol.symbol -1806076252 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return 2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -488 +452 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -62327,56 +62304,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -489 +453 this -340475003 +1802598046 1 this.symbol -929186741 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -489 +453 this -340475003 +1802598046 1 this.symbol -929186741 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -488 +452 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -62457,45 +62434,45 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -490 +454 this -440851213 +1076835071 1 this.symbol -null +453211571 1 this.symbol.symbol -nonsensical -2 +312116338 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -62506,8 +62483,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -62518,23 +62495,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -62545,8 +62522,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -62557,23 +62534,58 @@ this.right.right.right nonsensical 2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -491 +455 this -1887685159 +453211571 1 this.symbol -646946680 +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +455 +this +453211571 +1 +this.symbol +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +454 +this +1076835071 +1 +this.symbol +453211571 1 this.symbol.symbol -871834823 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -62653,59 +62665,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -492 -this -646946680 -1 -this.symbol -871834823 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -492 -this -646946680 -1 -this.symbol -871834823 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -491 +456 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -62785,27 +62765,59 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +457 +this +240650537 +1 +this.symbol +659748578 1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -493 +457 this -470905757 +240650537 1 this.symbol -1574116 +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 +1 +return +6 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +456 +this +1837760739 +1 +this.symbol +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -62885,53 +62897,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -494 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -494 -this -1574116 -1 -this.symbol -247113402 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +6 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -493 +458 this -470905757 +1076835071 1 this.symbol -1574116 +453211571 1 this.symbol.symbol -247113402 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -63017,46 +62997,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +459 +this +453211571 +1 +this.symbol +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +459 +this +453211571 +1 +this.symbol +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -490 +458 this -440851213 +1076835071 1 this.symbol -null +453211571 1 this.symbol.symbol -nonsensical -2 +312116338 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -63067,8 +63079,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -63079,23 +63091,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -63106,8 +63118,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -63118,26 +63130,26 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -495 +460 this -518576549 +1418428263 1 this.symbol -340475003 +2088051243 1 this.symbol.symbol -929186741 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -63220,56 +63232,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -496 +461 this -340475003 +2088051243 1 this.symbol -929186741 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -496 +461 this -340475003 +2088051243 1 this.symbol -929186741 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -495 +460 this -518576549 +1418428263 1 this.symbol -340475003 +2088051243 1 this.symbol.symbol -929186741 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -63350,348 +63362,252 @@ this.right.right.right nonsensical 2 return -2 +3 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -443 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -518576549 +462 +this +1076835071 1 -return.symbol -340475003 +this.symbol +453211571 1 -return.symbol.symbol -929186741 +this.symbol.symbol +312116338 1 -return.symbol.symbol.getClass().getName() +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency +this.symbol.frequency 2 1 -return.left +this.left null 1 -return.left.symbol +this.left.symbol nonsensical 2 -return.left.left +this.left.symbol.symbol nonsensical 2 -return.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -return.right -null -1 -return.right.symbol +this.left.symbol.frequency nonsensical 2 -return.right.left +this.left.left nonsensical 2 -return.right.right +this.left.left.symbol nonsensical 2 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER -this_invocation_nonce -497 -left -1502515546 -1 -left.symbol -1097499032 -1 -left.symbol.symbol -917732198 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency +this.left.left.left +nonsensical 2 -1 -left.left -null -1 -left.left.symbol +this.left.left.right nonsensical 2 -left.left.left +this.left.right nonsensical 2 -left.left.right +this.left.right.symbol nonsensical 2 -left.right +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right null 1 -left.right.symbol +this.right.symbol nonsensical 2 -left.right.left +this.right.symbol.symbol nonsensical 2 -left.right.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -right -518576549 -1 -right.symbol -340475003 -1 -right.symbol.symbol -929186741 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency +this.right.symbol.frequency +nonsensical 2 -1 -right.left -null -1 -right.left.symbol +this.right.left nonsensical 2 -right.left.left +this.right.left.symbol nonsensical 2 -right.left.right +this.right.left.left nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.left.right nonsensical 2 -right.right.left +this.right.right nonsensical 2 -right.right.right +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right nonsensical 2 -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -497 +463 this -1801601815 +453211571 1 this.symbol -null +312116338 1 -this.symbol.symbol -nonsensical +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.symbol.getClass().getName() -nonsensical +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +463 +this +453211571 +1 +this.symbol +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.frequency -nonsensical +1 +return 2 -this.left -1502515546 1 -this.left.symbol -1097499032 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +462 +this +1076835071 1 -this.left.symbol.symbol -917732198 +this.symbol +453211571 1 -this.left.symbol.symbol.getClass().getName() +this.symbol.symbol +312116338 +1 +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency +this.symbol.frequency 2 1 -this.left.left +this.left null 1 -this.left.left.symbol +this.left.symbol nonsensical 2 -this.left.left.left +this.left.symbol.symbol nonsensical 2 -this.left.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left.right -null -1 -this.left.right.symbol +this.left.symbol.frequency nonsensical 2 -this.left.right.left +this.left.left nonsensical 2 -this.left.right.right +this.left.left.symbol nonsensical 2 -this.right -518576549 -1 -this.right.symbol -340475003 -1 -this.right.symbol.symbol -929186741 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol +this.left.left.left nonsensical 2 -this.right.left.left +this.left.left.right nonsensical 2 -this.right.left.right +this.left.right nonsensical 2 -this.right.right -null -1 -this.right.right.symbol +this.left.right.symbol nonsensical 2 -this.right.right.left +this.left.right.left nonsensical 2 -this.right.right.right +this.left.right.right nonsensical 2 -left -1502515546 -1 -left.symbol -1097499032 -1 -left.symbol.symbol -917732198 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -2 -1 -left.left +this.right null 1 -left.left.symbol +this.right.symbol nonsensical 2 -left.left.left +this.right.symbol.symbol nonsensical 2 -left.left.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -left.right -null -1 -left.right.symbol +this.right.symbol.frequency nonsensical 2 -left.right.left +this.right.left nonsensical 2 -left.right.right +this.right.left.symbol nonsensical 2 -right -518576549 -1 -right.symbol -340475003 -1 -right.symbol.symbol -929186741 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency -2 -1 -right.left -null -1 -right.left.symbol +this.right.left.left nonsensical 2 -right.left.left +this.right.left.right nonsensical 2 -right.left.right +this.right.right nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.right.symbol nonsensical 2 -right.right.left +this.right.right.left nonsensical 2 -right.right.right +this.right.right.right nonsensical 2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -498 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213 1801601815] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -499 +464 this -1227419517 +2059904228 1 this.symbol -1745169531 +41903949 1 this.symbol.symbol -1466939813 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -63780,12 +63696,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -500 +465 this -1745169531 +41903949 1 this.symbol -1466939813 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -63796,12 +63712,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -500 +465 this -1745169531 +41903949 1 this.symbol -1466939813 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -63815,15 +63731,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -499 +464 this -1227419517 +2059904228 1 this.symbol -1745169531 +41903949 1 this.symbol.symbol -1466939813 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -63915,21 +63831,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -501 +466 this -1035818704 +1076835071 1 this.symbol -1582525299 +453211571 1 this.symbol.symbol -686363848 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -64012,288 +63928,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -502 +467 this -1582525299 +453211571 1 this.symbol -686363848 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -502 +467 this -1582525299 +453211571 1 this.symbol -686363848 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 -1 -return -5 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -501 -this -1035818704 -1 -this.symbol -1582525299 -1 -this.symbol.symbol -686363848 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -5 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical 2 -this.right -null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return -5 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -503 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical 2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -504 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -504 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 -return -3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -503 +466 this -511909137 +1076835071 1 this.symbol -91454439 +453211571 1 this.symbol.symbol -732656791 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -64374,20 +64058,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -505 +468 this -1227419517 +1836643189 1 this.symbol -1745169531 +1209271652 1 this.symbol.symbol -1466939813 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -64476,12 +64160,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -506 +469 this -1745169531 +1209271652 1 this.symbol -1466939813 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -64492,12 +64176,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -506 +469 this -1745169531 +1209271652 1 this.symbol -1466939813 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -64511,15 +64195,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -505 +468 this -1227419517 +1836643189 1 this.symbol -1745169531 +1209271652 1 this.symbol.symbol -1466939813 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -64611,21 +64295,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -507 +470 this -837375677 +1076835071 1 this.symbol -1335593353 +453211571 1 this.symbol.symbol -1623948668 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -64708,56 +64392,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -508 +471 this -1335593353 +453211571 1 this.symbol -1623948668 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -508 +471 this -1335593353 +453211571 1 this.symbol -1623948668 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +2 1 return -6 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -507 +470 this -837375677 +1076835071 1 this.symbol -1335593353 +453211571 1 this.symbol.symbol -1623948668 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -64838,26 +64522,26 @@ this.right.right.right nonsensical 2 return -6 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -509 +472 this -1227419517 +1355316001 1 this.symbol -1745169531 +2083562754 1 this.symbol.symbol -1466939813 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -64940,56 +64624,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -510 +473 this -1745169531 +2083562754 1 this.symbol -1466939813 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -510 +473 this -1745169531 +2083562754 1 this.symbol -1466939813 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -509 +472 this -1227419517 +1355316001 1 this.symbol -1745169531 +2083562754 1 this.symbol.symbol -1466939813 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -65070,26 +64754,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -511 +474 this -1312664548 +1076835071 1 this.symbol -1100231132 +453211571 1 this.symbol.symbol -1818405427 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -65172,56 +64856,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -512 +475 this -1100231132 +453211571 1 this.symbol -1818405427 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -512 +475 this -1100231132 +453211571 1 this.symbol -1818405427 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -511 +474 this -1312664548 +1076835071 1 this.symbol -1100231132 +453211571 1 this.symbol.symbol -1818405427 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -65302,26 +64986,255 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -513 +476 this -1227419517 +1576861390 1 this.symbol -1745169531 +null 1 this.symbol.symbol -1466939813 +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +477 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency +1 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical 2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +478 +this +901506536 +1 +this.symbol +2109957412 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +478 +this +901506536 +1 +this.symbol +2109957412 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 +return +1 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +477 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +1 1 this.left null @@ -65401,59 +65314,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -514 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -514 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -513 +479 this -1227419517 +1597462040 1 this.symbol -1745169531 +557041912 1 this.symbol.symbol -1466939813 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -65533,27 +65414,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +480 +this +557041912 +1 +this.symbol +1239731077 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +480 +this +557041912 +1 +this.symbol +1239731077 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -515 +479 this -853552605 +1597462040 1 this.symbol -1180110925 +557041912 1 this.symbol.symbol -1750434854 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -65633,78 +65546,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -516 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -516 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -515 +476 this -853552605 +1576861390 1 this.symbol -1180110925 +null 1 this.symbol.symbol -1750434854 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -65715,8 +65596,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -65727,23 +65608,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -65754,8 +65635,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -65771,15 +65652,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -517 +481 this -1227419517 +1076835071 1 this.symbol -1745169531 +453211571 1 this.symbol.symbol -1466939813 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -65868,12 +65749,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -518 +482 this -1745169531 +453211571 1 this.symbol -1466939813 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -65884,12 +65765,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -518 +482 this -1745169531 +453211571 1 this.symbol -1466939813 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -65903,15 +65784,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -517 +481 this -1227419517 +1076835071 1 this.symbol -1745169531 +453211571 1 this.symbol.symbol -1466939813 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -66003,21 +65884,118 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -519 +483 +this +600746945 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +403716510 +1 +this.left.symbol +985922955 +1 +this.left.symbol.symbol +1134712904 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +853119666 +1 +this.right.symbol +1784662007 +1 +this.right.symbol.symbol +1435804085 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +484 this -467870275 +403716510 1 this.symbol -1799775865 +985922955 1 this.symbol.symbol -2112836430 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -66100,56 +66078,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -520 +485 this -1799775865 +985922955 1 this.symbol -2112836430 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -520 +485 this -1799775865 +985922955 1 this.symbol -2112836430 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -519 +484 this -467870275 +403716510 1 this.symbol -1799775865 +985922955 1 this.symbol.symbol -2112836430 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -66230,26 +66208,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -521 +486 this -1227419517 +853119666 1 this.symbol -1745169531 +1784662007 1 this.symbol.symbol -1466939813 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -66332,56 +66310,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -522 +487 this -1745169531 +1784662007 1 this.symbol -1466939813 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -522 +487 this -1745169531 +1784662007 1 this.symbol -1466939813 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -521 +486 this -1227419517 +853119666 1 this.symbol -1745169531 +1784662007 1 this.symbol.symbol -1466939813 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -66462,177 +66440,45 @@ this.right.right.right nonsensical 2 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -523 +483 this -1558080258 +600746945 1 this.symbol -935344593 -1 -this.symbol.symbol -1525795060 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol +this.symbol.symbol nonsensical 2 -this.right.right.left +this.symbol.symbol.getClass().getName() nonsensical 2 -this.right.right.right +this.symbol.frequency nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -524 -this -935344593 -1 -this.symbol -1525795060 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 +this.left +403716510 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -524 -this -935344593 +this.left.symbol +985922955 1 -this.symbol -1525795060 +this.left.symbol.symbol +1134712904 1 -this.symbol.getClass().getName() +this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -523 -this -1558080258 -1 -this.symbol -935344593 -1 -this.symbol.symbol -1525795060 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" +this.left.symbol.frequency 1 -this.symbol.frequency -3 1 -this.left +this.left.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 this.left.left.symbol nonsensical 2 @@ -66643,8 +66489,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -66655,23 +66501,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -66682,8 +66528,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -66694,20 +66540,20 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -525 +488 this -1227419517 +1076835071 1 this.symbol -1745169531 +453211571 1 this.symbol.symbol -1466939813 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -66796,12 +66642,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -526 +489 this -1745169531 +453211571 1 this.symbol -1466939813 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -66812,12 +66658,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -526 +489 this -1745169531 +453211571 1 this.symbol -1466939813 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -66831,15 +66677,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -525 +488 this -1227419517 +1076835071 1 this.symbol -1745169531 +453211571 1 this.symbol.symbol -1466939813 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -66931,9 +66777,9 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -527 +490 this -1128590881 +1566502717 1 this.symbol null @@ -66948,13 +66794,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +559670971 1 this.left.symbol -202918529 +509886383 1 this.left.symbol.symbol -1297548602 +997110508 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -66987,19 +66833,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1014328909 1 this.right.symbol -1964711431 +1513712028 1 this.right.symbol.symbol -756278511 +747464370 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -67028,15 +66874,15 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -528 +491 this -1987411885 +559670971 1 this.symbol -202918529 +509886383 1 this.symbol.symbol -1297548602 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -67125,12 +66971,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -529 +492 this -202918529 +509886383 1 this.symbol -1297548602 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" @@ -67141,12 +66987,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -529 +492 this -202918529 +509886383 1 this.symbol -1297548602 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" @@ -67160,15 +67006,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -528 +491 this -1987411885 +559670971 1 this.symbol -202918529 +509886383 1 this.symbol.symbol -1297548602 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -67260,21 +67106,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -530 +493 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -67357,56 +67203,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -531 +494 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -531 +494 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -530 +493 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -67487,14 +67333,14 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -527 +490 this -1128590881 +1566502717 1 this.symbol null @@ -67509,13 +67355,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +559670971 1 this.left.symbol -202918529 +509886383 1 this.left.symbol.symbol -1297548602 +997110508 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -67548,19 +67394,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1014328909 1 this.right.symbol -1964711431 +1513712028 1 this.right.symbol.symbol -756278511 +747464370 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -67587,20 +67433,20 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -532 +495 this -1227419517 +1076835071 1 this.symbol -1745169531 +453211571 1 this.symbol.symbol -1466939813 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -67689,12 +67535,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -533 +496 this -1745169531 +453211571 1 this.symbol -1466939813 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -67705,12 +67551,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -533 +496 this -1745169531 +453211571 1 this.symbol -1466939813 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -67724,15 +67570,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -532 +495 this -1227419517 +1076835071 1 this.symbol -1745169531 +453211571 1 this.symbol.symbol -1466939813 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -67822,139 +67668,179 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -534 -this -1651366663 +443 +nodeList +1144648478 1 -this.symbol +nodeList[..] +[2081303229 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +1076835071 +1 +return.symbol +453211571 +1 +return.symbol.symbol +312116338 +1 +return.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +return.symbol.frequency +2 +1 +return.left null 1 -this.symbol.symbol +return.left.symbol nonsensical 2 -this.symbol.symbol.getClass().getName() +return.left.left nonsensical 2 -this.symbol.frequency +return.left.right nonsensical 2 -this.left -1904504032 +return.right +null 1 -this.left.symbol -2090220954 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical +2 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER +this_invocation_nonce +497 +left +1223685984 1 -this.left.symbol.symbol -1196464545 +left.symbol +13648335 1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" +left.symbol.symbol +288665596 1 -this.left.symbol.frequency +left.symbol.symbol.getClass().getName() +"java.lang.Character" 1 +left.symbol.frequency +2 1 -this.left.left +left.left null 1 -this.left.left.symbol +left.left.symbol nonsensical 2 -this.left.left.left +left.left.left nonsensical 2 -this.left.left.right +left.left.right nonsensical 2 -this.left.right +left.right null 1 -this.left.right.symbol +left.right.symbol nonsensical 2 -this.left.right.left +left.right.left nonsensical 2 -this.left.right.right +left.right.right nonsensical 2 -this.right -755507289 +right +1076835071 1 -this.right.symbol -42217019 +right.symbol +453211571 1 -this.right.symbol.symbol -1806076252 +right.symbol.symbol +312116338 1 -this.right.symbol.symbol.getClass().getName() +right.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 +right.symbol.frequency +2 1 -this.right.left +right.left null 1 -this.right.left.symbol +right.left.symbol nonsensical 2 -this.right.left.left +right.left.left nonsensical 2 -this.right.left.right +right.left.right nonsensical 2 -this.right.right +right.right null 1 -this.right.right.symbol +right.right.symbol nonsensical 2 -this.right.right.left +right.right.left nonsensical 2 -this.right.right.right +right.right.right nonsensical 2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 this_invocation_nonce -535 +497 this -1904504032 +1824835605 1 this.symbol -2090220954 +null 1 this.symbol.symbol -1196464545 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -1 -1 +nonsensical +2 this.left -null +1223685984 1 this.left.symbol -nonsensical -2 +13648335 +1 this.left.symbol.symbol -nonsensical -2 +288665596 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical 2 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -67965,8 +67851,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -67977,23 +67863,23 @@ this.left.right.right nonsensical 2 this.right -null +1076835071 1 this.right.symbol -nonsensical -2 +453211571 +1 this.right.symbol.symbol -nonsensical -2 +312116338 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -68004,8 +67890,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -68015,159 +67901,118 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -536 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -536 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -535 -this -1904504032 +left +1223685984 1 -this.symbol -2090220954 +left.symbol +13648335 1 -this.symbol.symbol -1196464545 +left.symbol.symbol +288665596 1 -this.symbol.symbol.getClass().getName() +left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency -1 +left.symbol.frequency +2 1 -this.left +left.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol +left.left.symbol nonsensical 2 -this.left.right.left +left.left.left nonsensical 2 -this.left.right.right +left.left.right nonsensical 2 -this.right +left.right null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() +left.right.symbol nonsensical 2 -this.right.symbol.frequency +left.right.left nonsensical 2 -this.right.left +left.right.right nonsensical 2 -this.right.left.symbol -nonsensical +right +1076835071 +1 +right.symbol +453211571 +1 +right.symbol.symbol +312116338 +1 +right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +right.symbol.frequency 2 -this.right.left.left +1 +right.left +null +1 +right.left.symbol nonsensical 2 -this.right.left.right +right.left.left nonsensical 2 -this.right.right +right.left.right nonsensical 2 -this.right.right.symbol +right.right +null +1 +right.right.symbol nonsensical 2 -this.right.right.left +right.right.left nonsensical 2 -this.right.right.right +right.right.right nonsensical 2 -return + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +498 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717 1824835605] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -537 +499 this -755507289 +1463757745 1 this.symbol -42217019 +757108857 1 this.symbol.symbol -1806076252 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -68250,56 +68095,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -538 +500 this -42217019 +757108857 1 this.symbol -1806076252 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -538 +500 this -42217019 +757108857 1 this.symbol -1806076252 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -537 +499 this -755507289 +1463757745 1 this.symbol -42217019 +757108857 1 this.symbol.symbol -1806076252 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -68380,45 +68225,45 @@ this.right.right.right nonsensical 2 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -534 +501 this -1651366663 +2081303229 1 this.symbol -null +1456208737 1 this.symbol.symbol -nonsensical -2 +1018547642 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +5 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -68429,8 +68274,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -68441,23 +68286,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -68468,8 +68313,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -68479,27 +68324,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +502 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +502 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 return -2 +5 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -539 +501 this -1227419517 +2081303229 1 this.symbol -1745169531 +1456208737 1 this.symbol.symbol -1466939813 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -68579,59 +68456,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -540 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -540 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +5 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -539 +503 this -1227419517 +1525262377 1 this.symbol -1745169531 +1802598046 1 this.symbol.symbol -1466939813 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -68711,46 +68556,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +504 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +504 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -541 +503 this -440851213 +1525262377 1 this.symbol -null +1802598046 1 this.symbol.symbol -nonsensical -2 +1809787067 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -68761,8 +68638,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -68773,23 +68650,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -68800,8 +68677,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -68811,24 +68688,27 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -542 +505 this -1887685159 +1463757745 1 this.symbol -646946680 +757108857 1 this.symbol.symbol -871834823 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -68911,56 +68791,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -543 +506 this -646946680 +757108857 1 this.symbol -871834823 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -543 +506 this -646946680 +757108857 1 this.symbol -871834823 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -542 +505 this -1887685159 +1463757745 1 this.symbol -646946680 +757108857 1 this.symbol.symbol -871834823 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -69041,26 +68921,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -544 +507 this -470905757 +1837760739 1 this.symbol -1574116 +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -69143,56 +69023,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -545 +508 this -1574116 +240650537 1 this.symbol -247113402 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -545 +508 this -1574116 +240650537 1 this.symbol -247113402 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +6 1 return -2 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -544 +507 this -470905757 +1837760739 1 this.symbol -1574116 +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -69273,45 +69153,45 @@ this.right.right.right nonsensical 2 return -2 +6 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -541 +509 this -440851213 +1463757745 1 this.symbol -null +757108857 1 this.symbol.symbol -nonsensical -2 +796684896 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -69322,8 +69202,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -69334,23 +69214,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -69361,8 +69241,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -69372,21 +69252,53 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +510 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +510 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return -3 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -546 +509 this -1227419517 +1463757745 1 this.symbol -1745169531 +757108857 1 this.symbol.symbol -1466939813 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -69472,59 +69384,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -547 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -547 -this -1745169531 -1 -this.symbol -1466939813 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -546 +511 this -1227419517 +1418428263 1 this.symbol -1745169531 +2088051243 1 this.symbol.symbol -1466939813 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -69604,46 +69484,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +512 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +512 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -548 +511 this -1801601815 +1418428263 1 this.symbol -null +2088051243 1 this.symbol.symbol -nonsensical -2 +483422889 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -69654,8 +69566,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -69666,23 +69578,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -69693,8 +69605,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -69704,18 +69616,21 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -549 +513 this -1502515546 +1463757745 1 this.symbol -1097499032 +757108857 1 this.symbol.symbol -917732198 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -69804,12 +69719,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -550 +514 this -1097499032 +757108857 1 this.symbol -917732198 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -69820,12 +69735,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -550 +514 this -1097499032 +757108857 1 this.symbol -917732198 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -69839,15 +69754,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -549 +513 this -1502515546 +1463757745 1 this.symbol -1097499032 +757108857 1 this.symbol.symbol -917732198 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -69939,15 +69854,147 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -551 +515 +this +2059904228 +1 +this.symbol +41903949 +1 +this.symbol.symbol +1277181601 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +516 +this +41903949 +1 +this.symbol +1277181601 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +516 +this +41903949 +1 +this.symbol +1277181601 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +515 this -518576549 +2059904228 1 this.symbol -340475003 +41903949 1 this.symbol.symbol -929186741 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -70033,53 +70080,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -552 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -552 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -551 +517 this -518576549 +1463757745 1 this.symbol -340475003 +757108857 1 this.symbol.symbol -929186741 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -70165,46 +70180,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +518 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +518 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return 2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -548 +517 this -1801601815 +1463757745 1 this.symbol -null +757108857 1 this.symbol.symbol -nonsensical -2 +796684896 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -70215,8 +70262,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -70227,23 +70274,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -70254,8 +70301,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -70266,20 +70313,20 @@ this.right.right.right nonsensical 2 return -4 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -553 +519 this -1227419517 +1836643189 1 this.symbol -1745169531 +1209271652 1 this.symbol.symbol -1466939813 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -70368,12 +70415,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -554 +520 this -1745169531 +1209271652 1 this.symbol -1466939813 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -70384,12 +70431,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -554 +520 this -1745169531 +1209271652 1 this.symbol -1466939813 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -70403,15 +70450,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -553 +519 this -1227419517 +1836643189 1 this.symbol -1745169531 +1209271652 1 this.symbol.symbol -1466939813 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -70501,94 +70548,155 @@ return 2 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -498 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213 1801601815] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -1227419517 +521 +this +1463757745 1 -return.symbol -1745169531 +this.symbol +757108857 1 -return.symbol.symbol -1466939813 +this.symbol.symbol +796684896 1 -return.symbol.symbol.getClass().getName() +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency +this.symbol.frequency 2 1 -return.left +this.left null 1 -return.left.symbol +this.left.symbol nonsensical 2 -return.left.left +this.left.symbol.symbol nonsensical 2 -return.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -return.right +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right null 1 -return.right.symbol +this.right.symbol nonsensical 2 -return.right.left +this.right.symbol.symbol nonsensical 2 -return.right.right +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right nonsensical 2 -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -555 -nodeList -1548550182 +522 +this +757108857 1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 853552605 467870275 1558080258 1128590881 1651366663 440851213 1801601815] +this.symbol +796684896 1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +this.symbol.getClass().getName() +"java.lang.Character" 1 -nodeList.getClass().getName() -"java.util.ArrayList" +this.frequency +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -556 +522 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +521 this -511909137 +1463757745 1 this.symbol -91454439 +757108857 1 this.symbol.symbol -732656791 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -70668,53 +70776,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -557 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -557 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -556 +523 this -511909137 +1355316001 1 this.symbol -91454439 +2083562754 1 this.symbol.symbol -732656791 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -70800,27 +70876,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +524 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +524 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return 3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -558 +523 this -1035818704 +1355316001 1 this.symbol -1582525299 +2083562754 1 this.symbol.symbol -686363848 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +3 1 this.left null @@ -70900,59 +71008,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -559 -this -1582525299 -1 -this.symbol -686363848 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -5 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -559 -this -1582525299 -1 -this.symbol -686363848 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -5 -1 return -5 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -558 +525 this -1035818704 +1463757745 1 this.symbol -1582525299 +757108857 1 this.symbol.symbol -686363848 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -71032,27 +71108,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +526 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +526 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return -5 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -560 +525 this -837375677 +1463757745 1 this.symbol -1335593353 +757108857 1 this.symbol.symbol -1623948668 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -71132,78 +71240,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -561 -this -1335593353 -1 -this.symbol -1623948668 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -6 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -561 -this -1335593353 -1 -this.symbol -1623948668 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -6 -1 return -6 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -560 +527 this -837375677 +1576861390 1 this.symbol -1335593353 +null 1 this.symbol.symbol -1623948668 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -6 -1 +nonsensical +2 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -71214,8 +71290,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -71226,23 +71302,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -71253,8 +71329,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -71264,27 +71340,24 @@ nonsensical this.right.right.right nonsensical 2 -return -6 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -562 +528 this -511909137 +1307096070 1 this.symbol -91454439 +901506536 1 this.symbol.symbol -732656791 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -71367,56 +71440,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -563 +529 this -91454439 +901506536 1 this.symbol -732656791 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -563 +529 this -91454439 +901506536 1 this.symbol -732656791 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -562 +528 this -511909137 +1307096070 1 this.symbol -91454439 +901506536 1 this.symbol.symbol -732656791 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -71497,26 +71570,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -564 +530 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -71599,56 +71672,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -565 +531 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -565 +531 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -564 +530 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -71729,26 +71802,126 @@ this.right.right.right nonsensical 2 return -3 +1 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +527 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -566 +532 this -511909137 +1463757745 1 this.symbol -91454439 +757108857 1 this.symbol.symbol -732656791 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -71831,56 +72004,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -567 +533 this -91454439 +757108857 1 this.symbol -732656791 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -567 +533 this -91454439 +757108857 1 this.symbol -732656791 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -566 +532 this -511909137 +1463757745 1 this.symbol -91454439 +757108857 1 this.symbol.symbol -732656791 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -71961,45 +72134,45 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -568 +534 this -853552605 +600746945 1 this.symbol -1180110925 +null 1 this.symbol.symbol -1750434854 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -72010,8 +72183,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -72022,23 +72195,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -72049,8 +72222,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -72061,58 +72234,23 @@ this.right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -569 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -569 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -568 +535 this -853552605 +403716510 1 this.symbol -1180110925 +985922955 1 this.symbol.symbol -1750434854 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -72192,27 +72330,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +536 +this +985922955 +1 +this.symbol +1134712904 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +536 +this +985922955 +1 +this.symbol +1134712904 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -570 +535 this -511909137 +403716510 1 this.symbol -91454439 +985922955 1 this.symbol.symbol -732656791 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -72292,59 +72462,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -571 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -571 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -570 +537 this -511909137 +853119666 1 this.symbol -91454439 +1784662007 1 this.symbol.symbol -732656791 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -72424,27 +72562,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +538 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +538 +this +1784662007 +1 +this.symbol +1435804085 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -3 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -572 +537 this -467870275 +853119666 1 this.symbol -1799775865 +1784662007 1 this.symbol.symbol -2112836430 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -72524,78 +72694,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -573 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -573 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -572 +534 this -467870275 +600746945 1 this.symbol -1799775865 +null 1 this.symbol.symbol -2112836430 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency +nonsensical 2 -1 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -72606,8 +72744,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -72618,23 +72756,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -72645,8 +72783,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -72662,15 +72800,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -574 +539 this -853552605 +1463757745 1 this.symbol -1180110925 +757108857 1 this.symbol.symbol -1750434854 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -72759,12 +72897,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -575 +540 this -1180110925 +757108857 1 this.symbol -1750434854 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -72775,12 +72913,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -575 +540 this -1180110925 +757108857 1 this.symbol -1750434854 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" @@ -72794,15 +72932,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -574 +539 this -853552605 +1463757745 1 this.symbol -1180110925 +757108857 1 this.symbol.symbol -1750434854 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -72894,40 +73032,40 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -576 +541 this -1558080258 +1566502717 1 this.symbol -935344593 +null 1 this.symbol.symbol -1525795060 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +559670971 1 this.left.symbol -nonsensical -2 +509886383 +1 this.left.symbol.symbol -nonsensical -2 +997110508 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -72938,8 +73076,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -72950,23 +73088,23 @@ this.left.right.right nonsensical 2 this.right -null +1014328909 1 this.right.symbol -nonsensical -2 +1513712028 +1 this.right.symbol.symbol -nonsensical -2 +747464370 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -72977,8 +73115,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -72989,58 +73127,23 @@ this.right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -577 -this -935344593 -1 -this.symbol -1525795060 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -577 -this -935344593 -1 -this.symbol -1525795060 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -576 +542 this -1558080258 +559670971 1 this.symbol -935344593 +509886383 1 this.symbol.symbol -1525795060 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -73120,27 +73223,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +543 +this +509886383 +1 +this.symbol +997110508 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +543 +this +509886383 +1 +this.symbol +997110508 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return -3 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -578 +542 this -853552605 +559670971 1 this.symbol -1180110925 +509886383 1 this.symbol.symbol -1750434854 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -73220,53 +73355,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -579 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -579 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -578 +544 this -853552605 +1014328909 1 this.symbol -1180110925 +1513712028 1 this.symbol.symbol -1750434854 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -73352,124 +73455,59 @@ nonsensical this.right.right.right nonsensical 2 -return -2 -1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -580 +545 this -1128590881 +1513712028 1 this.symbol -null +747464370 1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 -1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical +this.frequency 2 -this.right -239304688 1 -this.right.symbol -1964711431 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +545 +this +1513712028 1 -this.right.symbol.symbol -756278511 +this.symbol +747464370 1 -this.right.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical +this.frequency 2 -this.right.right -null 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical +return 2 +1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -581 +544 this -1987411885 +1014328909 1 this.symbol -202918529 +1513712028 1 this.symbol.symbol -1297548602 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -73549,78 +73587,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -582 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -582 -this -202918529 -1 -this.symbol -1297548602 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -581 +541 this -1987411885 +1566502717 1 this.symbol -202918529 +null 1 this.symbol.symbol -1297548602 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -1 -1 +nonsensical +2 this.left -null +559670971 1 this.left.symbol -nonsensical -2 +509886383 +1 this.left.symbol.symbol -nonsensical -2 +997110508 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -73631,8 +73637,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -73643,23 +73649,23 @@ this.left.right.right nonsensical 2 this.right -null +1014328909 1 this.right.symbol -nonsensical -2 +1513712028 +1 this.right.symbol.symbol -nonsensical -2 +747464370 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -73670,8 +73676,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -73682,26 +73688,26 @@ this.right.right.right nonsensical 2 return -1 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -583 +546 this -239304688 +1463757745 1 this.symbol -1964711431 +757108857 1 this.symbol.symbol -756278511 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -73784,56 +73790,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -584 +547 this -1964711431 +757108857 1 this.symbol -756278511 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -584 +547 this -1964711431 +757108857 1 this.symbol -756278511 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -583 +546 this -239304688 +1463757745 1 this.symbol -1964711431 +757108857 1 this.symbol.symbol -756278511 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -73914,14 +73920,14 @@ this.right.right.right nonsensical 2 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -580 +548 this -1128590881 +1824835605 1 this.symbol null @@ -73936,19 +73942,19 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1223685984 1 this.left.symbol -202918529 +13648335 1 this.left.symbol.symbol -1297548602 +288665596 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -73975,19 +73981,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1076835071 1 this.right.symbol -1964711431 +453211571 1 this.right.symbol.symbol -756278511 +312116338 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -74013,21 +74019,18 @@ nonsensical this.right.right.right nonsensical 2 -return -2 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -585 +549 this -853552605 +1223685984 1 this.symbol -1180110925 +13648335 1 this.symbol.symbol -1750434854 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -74116,12 +74119,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -586 +550 this -1180110925 +13648335 1 this.symbol -1750434854 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -74132,12 +74135,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -586 +550 this -1180110925 +13648335 1 this.symbol -1750434854 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" @@ -74151,15 +74154,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -585 +549 this -853552605 +1223685984 1 this.symbol -1180110925 +13648335 1 this.symbol.symbol -1750434854 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -74251,40 +74254,40 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -587 +551 this -1651366663 +1076835071 1 this.symbol -null +453211571 1 this.symbol.symbol -nonsensical -2 +312116338 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -74295,8 +74298,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -74307,23 +74310,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -74334,8 +74337,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -74346,23 +74349,58 @@ this.right.right.right nonsensical 2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -588 +552 +this +453211571 +1 +this.symbol +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +552 this -1904504032 +453211571 1 this.symbol -2090220954 +312116338 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +551 +this +1076835071 +1 +this.symbol +453211571 1 this.symbol.symbol -1196464545 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -74442,59 +74480,127 @@ nonsensical this.right.right.right nonsensical 2 +return +2 +1 -six170.HuffmanSymbol.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -589 +548 this -2090220954 +1824835605 1 this.symbol -1196464545 +null 1 -this.symbol.getClass().getName() +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1223685984 +1 +this.left.symbol +13648335 +1 +this.left.symbol.symbol +288665596 +1 +this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +this.left.symbol.frequency +2 1 +this.left.left +null 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -589 -this -2090220954 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null 1 -this.symbol -1196464545 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1076835071 1 -this.symbol.getClass().getName() +this.right.symbol +453211571 +1 +this.right.symbol.symbol +312116338 +1 +this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +this.right.symbol.frequency +2 1 +this.right.left +null 1 -return +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null 1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +4 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -588 +553 this -1904504032 +1463757745 1 this.symbol -2090220954 +757108857 1 this.symbol.symbol -1196464545 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -74574,27 +74680,59 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +554 +this +757108857 +1 +this.symbol +796684896 1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -590 +554 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +553 this -755507289 +1463757745 1 this.symbol -42217019 +757108857 1 this.symbol.symbol -1806076252 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -74674,59 +74812,98 @@ nonsensical this.right.right.right nonsensical 2 +return +2 +1 -six170.HuffmanSymbol.frequency():::ENTER +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 this_invocation_nonce -591 -this -42217019 +498 +nodeList +1144648478 1 -this.symbol -1806076252 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717 1824835605] 1 -this.symbol.getClass().getName() -"java.lang.Character" +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] 1 -this.frequency +nodeList.getClass().getName() +"java.util.ArrayList" 1 +return +1463757745 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -591 -this -42217019 +return.symbol +757108857 1 -this.symbol -1806076252 +return.symbol.symbol +796684896 1 -this.symbol.getClass().getName() +return.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +return.symbol.frequency +2 1 +return.left +null 1 -return +return.left.symbol +nonsensical +2 +return.left.left +nonsensical +2 +return.left.right +nonsensical +2 +return.right +null 1 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical +2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +555 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1576861390 600746945 1566502717 1824835605] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -590 +556 this -755507289 +1525262377 1 this.symbol -42217019 +1802598046 1 this.symbol.symbol -1806076252 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -74806,46 +74983,78 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +557 +this +1802598046 1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -587 +557 this -1651366663 +1802598046 1 this.symbol -null +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +556 +this +1525262377 +1 +this.symbol +1802598046 1 this.symbol.symbol -nonsensical -2 +1809787067 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -74856,8 +75065,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -74868,23 +75077,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -74895,8 +75104,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -74907,26 +75116,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -592 +558 this -853552605 +2081303229 1 this.symbol -1180110925 +1456208737 1 this.symbol.symbol -1750434854 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -75009,56 +75218,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -593 +559 this -1180110925 +1456208737 1 this.symbol -1750434854 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -593 +559 this -1180110925 +1456208737 1 this.symbol -1750434854 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 return -2 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -592 +558 this -853552605 +2081303229 1 this.symbol -1180110925 +1456208737 1 this.symbol.symbol -1750434854 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -75139,123 +75348,26 @@ this.right.right.right nonsensical 2 return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -594 -this -440851213 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1887685159 -1 -this.left.symbol -646946680 -1 -this.left.symbol.symbol -871834823 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -470905757 -1 -this.right.symbol -1574116 -1 -this.right.symbol.symbol -247113402 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null +5 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -595 +560 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -75338,56 +75450,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -596 +561 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -596 +561 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 return -1 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -595 +560 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -75468,26 +75580,26 @@ this.right.right.right nonsensical 2 return -1 +6 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -597 +562 this -470905757 +1525262377 1 this.symbol -1574116 +1802598046 1 this.symbol.symbol -247113402 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -75570,56 +75682,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -598 +563 this -1574116 +1802598046 1 this.symbol -247113402 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -598 +563 this -1574116 +1802598046 1 this.symbol -247113402 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -597 +562 this -470905757 +1525262377 1 this.symbol -1574116 +1802598046 1 this.symbol.symbol -247113402 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -75700,45 +75812,45 @@ this.right.right.right nonsensical 2 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -594 +564 this -440851213 +1418428263 1 this.symbol -null +2088051243 1 this.symbol.symbol -nonsensical -2 +483422889 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -75749,8 +75861,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -75761,23 +75873,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -75788,8 +75900,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -75799,27 +75911,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +565 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +565 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return 3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -599 +564 this -853552605 +1418428263 1 this.symbol -1180110925 +2088051243 1 this.symbol.symbol -1750434854 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -75899,59 +76043,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -600 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -600 -this -1180110925 -1 -this.symbol -1750434854 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -599 +566 this -853552605 +1525262377 1 this.symbol -1180110925 +1802598046 1 this.symbol.symbol -1750434854 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -76031,46 +76143,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +567 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +567 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -601 +566 this -1801601815 +1525262377 1 this.symbol -null +1802598046 1 this.symbol.symbol -nonsensical -2 +1809787067 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -76081,8 +76225,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -76093,23 +76237,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -76120,8 +76264,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -76131,18 +76275,21 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -602 +568 this -1502515546 +2059904228 1 this.symbol -1097499032 +41903949 1 this.symbol.symbol -917732198 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -76231,12 +76378,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -603 +569 this -1097499032 +41903949 1 this.symbol -917732198 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -76247,12 +76394,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -603 +569 this -1097499032 +41903949 1 this.symbol -917732198 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -76266,15 +76413,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -602 +568 this -1502515546 +2059904228 1 this.symbol -1097499032 +41903949 1 this.symbol.symbol -917732198 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -76366,21 +76513,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -604 +570 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -76463,56 +76610,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -605 +571 this -340475003 +1802598046 1 this.symbol -929186741 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -605 +571 this -340475003 +1802598046 1 this.symbol -929186741 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -604 +570 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -76593,120 +76740,20 @@ this.right.right.right nonsensical 2 return -2 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -601 -this -1801601815 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1502515546 -1 -this.left.symbol -1097499032 -1 -this.left.symbol.symbol -917732198 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -2 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -518576549 -1 -this.right.symbol -340475003 -1 -this.right.symbol.symbol -929186741 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -4 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -606 +572 this -853552605 +1836643189 1 this.symbol -1180110925 +1209271652 1 this.symbol.symbol -1750434854 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -76795,12 +76842,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -607 +573 this -1180110925 +1209271652 1 this.symbol -1750434854 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -76811,12 +76858,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -607 +573 this -1180110925 +1209271652 1 this.symbol -1750434854 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -76830,15 +76877,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -606 +572 this -853552605 +1836643189 1 this.symbol -1180110925 +1209271652 1 this.symbol.symbol -1750434854 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -76928,345 +76975,249 @@ return 2 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -555 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 467870275 1558080258 1128590881 1651366663 440851213 1801601815] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -853552605 +574 +this +2059904228 1 -return.symbol -1180110925 +this.symbol +41903949 1 -return.symbol.symbol -1750434854 +this.symbol.symbol +1277181601 1 -return.symbol.symbol.getClass().getName() +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency +this.symbol.frequency 2 1 -return.left +this.left null 1 -return.left.symbol +this.left.symbol nonsensical 2 -return.left.left +this.left.symbol.symbol nonsensical 2 -return.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -return.right -null -1 -return.right.symbol +this.left.symbol.frequency nonsensical 2 -return.right.left +this.left.left nonsensical 2 -return.right.right +this.left.left.symbol nonsensical 2 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER -this_invocation_nonce -608 -left -1227419517 -1 -left.symbol -1745169531 -1 -left.symbol.symbol -1466939813 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency +this.left.left.left +nonsensical 2 -1 -left.left -null -1 -left.left.symbol +this.left.left.right nonsensical 2 -left.left.left +this.left.right nonsensical 2 -left.left.right +this.left.right.symbol nonsensical 2 -left.right +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right null 1 -left.right.symbol +this.right.symbol nonsensical 2 -left.right.left +this.right.symbol.symbol nonsensical 2 -left.right.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -right -853552605 -1 -right.symbol -1180110925 -1 -right.symbol.symbol -1750434854 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency +this.right.symbol.frequency +nonsensical 2 -1 -right.left -null -1 -right.left.symbol +this.right.left nonsensical 2 -right.left.left +this.right.left.symbol nonsensical 2 -right.left.right +this.right.left.left nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.left.right nonsensical 2 -right.right.left +this.right.right nonsensical 2 -right.right.right +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right nonsensical 2 -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -608 +575 this -2282005 +41903949 1 this.symbol -null +1277181601 1 -this.symbol.symbol -nonsensical +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.symbol.getClass().getName() -nonsensical +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +575 +this +41903949 +1 +this.symbol +1277181601 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.frequency -nonsensical +1 +return 2 -this.left -1227419517 1 -this.left.symbol -1745169531 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +574 +this +2059904228 1 -this.left.symbol.symbol -1466939813 +this.symbol +41903949 1 -this.left.symbol.symbol.getClass().getName() +this.symbol.symbol +1277181601 +1 +this.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency +this.symbol.frequency 2 1 -this.left.left +this.left null 1 -this.left.left.symbol +this.left.symbol nonsensical 2 -this.left.left.left +this.left.symbol.symbol nonsensical 2 -this.left.left.right +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left.right -null -1 -this.left.right.symbol +this.left.symbol.frequency nonsensical 2 -this.left.right.left +this.left.left nonsensical 2 -this.left.right.right +this.left.left.symbol nonsensical 2 -this.right -853552605 -1 -this.right.symbol -1180110925 -1 -this.right.symbol.symbol -1750434854 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol +this.left.left.left nonsensical 2 -this.right.left.left +this.left.left.right nonsensical 2 -this.right.left.right +this.left.right nonsensical 2 -this.right.right -null -1 -this.right.right.symbol +this.left.right.symbol nonsensical 2 -this.right.right.left +this.left.right.left nonsensical 2 -this.right.right.right +this.left.right.right nonsensical 2 -left -1227419517 -1 -left.symbol -1745169531 -1 -left.symbol.symbol -1466939813 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -2 -1 -left.left +this.right null 1 -left.left.symbol +this.right.symbol nonsensical 2 -left.left.left +this.right.symbol.symbol nonsensical 2 -left.left.right +this.right.symbol.symbol.getClass().getName() nonsensical 2 -left.right -null -1 -left.right.symbol +this.right.symbol.frequency nonsensical 2 -left.right.left +this.right.left nonsensical 2 -left.right.right +this.right.left.symbol nonsensical 2 -right -853552605 -1 -right.symbol -1180110925 -1 -right.symbol.symbol -1750434854 -1 -right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -right.symbol.frequency -2 -1 -right.left -null -1 -right.left.symbol +this.right.left.left nonsensical 2 -right.left.left +this.right.left.right nonsensical 2 -right.left.right +this.right.right nonsensical 2 -right.right -null -1 -right.right.symbol +this.right.right.symbol nonsensical 2 -right.right.left +this.right.right.left nonsensical 2 -right.right.right +this.right.right.right nonsensical 2 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -609 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 467870275 1558080258 1128590881 1651366663 440851213 1801601815 2282005] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" +return +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -610 +576 this -511909137 +1355316001 1 this.symbol -91454439 +2083562754 1 this.symbol.symbol -732656791 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -77355,12 +77306,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -611 +577 this -91454439 +2083562754 1 this.symbol -732656791 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" @@ -77371,12 +77322,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -611 +577 this -91454439 +2083562754 1 this.symbol -732656791 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" @@ -77390,15 +77341,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -610 +576 this -511909137 +1355316001 1 this.symbol -91454439 +2083562754 1 this.symbol.symbol -732656791 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -77490,21 +77441,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -612 +578 this -1035818704 +2059904228 1 this.symbol -1582525299 +41903949 1 this.symbol.symbol -686363848 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -77587,56 +77538,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -613 +579 this -1582525299 +41903949 1 this.symbol -686363848 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -613 +579 this -1582525299 +41903949 1 this.symbol -686363848 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +2 1 return -5 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -612 +578 this -1035818704 +2059904228 1 this.symbol -1582525299 +41903949 1 this.symbol.symbol -686363848 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +2 1 this.left null @@ -77717,26 +77668,123 @@ this.right.right.right nonsensical 2 return -5 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -614 +580 this -837375677 +1576861390 1 this.symbol -1335593353 +null 1 this.symbol.symbol -1623948668 +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +581 +this +1307096070 +1 +this.symbol +901506536 +1 +this.symbol.symbol +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -77819,56 +77867,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -615 +582 this -1335593353 +901506536 1 this.symbol -1623948668 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -615 +582 this -1335593353 +901506536 1 this.symbol -1623948668 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -614 +581 this -837375677 +1307096070 1 this.symbol -1335593353 +901506536 1 this.symbol.symbol -1623948668 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -77949,26 +77997,26 @@ this.right.right.right nonsensical 2 return -6 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -616 +583 this -511909137 +1597462040 1 this.symbol -91454439 +557041912 1 this.symbol.symbol -732656791 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -78051,56 +78099,256 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -617 +584 this -91454439 +557041912 1 this.symbol -732656791 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -617 +584 this -91454439 +557041912 1 this.symbol -732656791 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -616 +583 this -511909137 +1597462040 1 this.symbol -91454439 +557041912 1 this.symbol.symbol -732656791 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +1 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +580 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +2 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +585 +this +2059904228 +1 +this.symbol +41903949 +1 +this.symbol.symbol +1277181601 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +2 1 this.left null @@ -78180,27 +78428,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +586 +this +41903949 +1 +this.symbol +1277181601 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +586 +this +41903949 +1 +this.symbol +1277181601 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return -3 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -618 +585 this -1312664548 +2059904228 1 this.symbol -1100231132 +41903949 1 this.symbol.symbol -1818405427 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -78280,78 +78560,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -619 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -619 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -618 +587 this -1312664548 +600746945 1 this.symbol -1100231132 +null 1 this.symbol.symbol -1818405427 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -78362,8 +78610,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -78374,23 +78622,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -78401,8 +78649,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -78412,27 +78660,24 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -620 +588 this -511909137 +403716510 1 this.symbol -91454439 +985922955 1 this.symbol.symbol -732656791 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -78515,56 +78760,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -621 +589 this -91454439 +985922955 1 this.symbol -732656791 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -621 +589 this -91454439 +985922955 1 this.symbol -732656791 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -620 +588 this -511909137 +403716510 1 this.symbol -91454439 +985922955 1 this.symbol.symbol -732656791 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -78645,26 +78890,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -622 +590 this -467870275 +853119666 1 this.symbol -1799775865 +1784662007 1 this.symbol.symbol -2112836430 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -78747,56 +78992,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -623 +591 this -1799775865 +1784662007 1 this.symbol -2112836430 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -623 +591 this -1799775865 +1784662007 1 this.symbol -2112836430 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -622 +590 this -467870275 +853119666 1 this.symbol -1799775865 +1784662007 1 this.symbol.symbol -2112836430 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -78877,26 +79122,126 @@ this.right.right.right nonsensical 2 return +1 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +587 +this +600746945 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +403716510 +1 +this.left.symbol +985922955 +1 +this.left.symbol.symbol +1134712904 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +853119666 +1 +this.right.symbol +1784662007 +1 +this.right.symbol.symbol +1435804085 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return 2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -624 +592 this -511909137 +2059904228 1 this.symbol -91454439 +41903949 1 this.symbol.symbol -732656791 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -78979,56 +79324,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -625 +593 this -91454439 +41903949 1 this.symbol -732656791 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -625 +593 this -91454439 +41903949 1 this.symbol -732656791 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -624 +592 this -511909137 +2059904228 1 this.symbol -91454439 +41903949 1 this.symbol.symbol -732656791 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -79109,26 +79454,123 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -626 +594 this -1558080258 +1566502717 1 this.symbol -935344593 +null 1 this.symbol.symbol -1525795060 +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +559670971 +1 +this.left.symbol +509886383 +1 +this.left.symbol.symbol +997110508 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1014328909 +1 +this.right.symbol +1513712028 +1 +this.right.symbol.symbol +747464370 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +2 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +595 +this +559670971 +1 +this.symbol +509886383 +1 +this.symbol.symbol +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -79211,56 +79653,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -627 +596 this -935344593 +509886383 1 this.symbol -1525795060 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -627 +596 this -935344593 +509886383 1 this.symbol -1525795060 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -626 +595 this -1558080258 +559670971 1 this.symbol -935344593 +509886383 1 this.symbol.symbol -1525795060 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -79341,20 +79783,20 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -628 +597 this -467870275 +1014328909 1 this.symbol -1799775865 +1513712028 1 this.symbol.symbol -2112836430 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -79443,12 +79885,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -629 +598 this -1799775865 +1513712028 1 this.symbol -2112836430 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -79459,12 +79901,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -629 +598 this -1799775865 +1513712028 1 this.symbol -2112836430 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" @@ -79478,15 +79920,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -628 +597 this -467870275 +1014328909 1 this.symbol -1799775865 +1513712028 1 this.symbol.symbol -2112836430 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -79576,11 +80018,11 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -630 +594 this -1128590881 +1566502717 1 this.symbol null @@ -79595,13 +80037,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +559670971 1 this.left.symbol -202918529 +509886383 1 this.left.symbol.symbol -1297548602 +997110508 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -79634,19 +80076,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1014328909 1 this.right.symbol -1964711431 +1513712028 1 this.right.symbol.symbol -756278511 +747464370 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -79672,24 +80114,27 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -631 +599 this -1987411885 +2059904228 1 this.symbol -202918529 +41903949 1 this.symbol.symbol -1297548602 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -79772,56 +80217,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -632 +600 this -202918529 +41903949 1 this.symbol -1297548602 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -632 +600 this -202918529 +41903949 1 this.symbol -1297548602 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -631 +599 this -1987411885 +2059904228 1 this.symbol -202918529 +41903949 1 this.symbol.symbol -1297548602 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -79902,45 +80347,45 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -633 +601 this -239304688 +1824835605 1 this.symbol -1964711431 +null 1 this.symbol.symbol -756278511 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -1 -1 +nonsensical +2 this.left -null +1223685984 1 this.left.symbol -nonsensical -2 +13648335 +1 this.left.symbol.symbol -nonsensical -2 +288665596 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical 2 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -79951,8 +80396,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -79963,23 +80408,23 @@ this.left.right.right nonsensical 2 this.right -null +1076835071 1 this.right.symbol -nonsensical -2 +453211571 +1 this.right.symbol.symbol -nonsensical -2 +312116338 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -79990,8 +80435,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -80002,58 +80447,23 @@ this.right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -634 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -634 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -633 +602 this -239304688 +1223685984 1 this.symbol -1964711431 +13648335 1 this.symbol.symbol -756278511 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -80133,46 +80543,78 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +603 +this +13648335 1 +this.symbol +288665596 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -630 +603 this -1128590881 +13648335 1 this.symbol -null +288665596 1 -this.symbol.symbol -nonsensical +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.symbol.getClass().getName() -nonsensical +1 +return 2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +602 +this +1223685984 +1 +this.symbol +13648335 +1 +this.symbol.symbol +288665596 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -80183,8 +80625,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -80195,23 +80637,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -80222,8 +80664,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -80239,15 +80681,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -635 +604 this -467870275 +1076835071 1 this.symbol -1799775865 +453211571 1 this.symbol.symbol -2112836430 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -80336,12 +80778,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -636 +605 this -1799775865 +453211571 1 this.symbol -2112836430 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -80352,12 +80794,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -636 +605 this -1799775865 +453211571 1 this.symbol -2112836430 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" @@ -80371,15 +80813,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -635 +604 this -467870275 +1076835071 1 this.symbol -1799775865 +453211571 1 this.symbol.symbol -2112836430 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -80469,11 +80911,11 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -637 +601 this -1651366663 +1824835605 1 this.symbol null @@ -80488,19 +80930,19 @@ this.symbol.frequency nonsensical 2 this.left -1904504032 +1223685984 1 this.left.symbol -2090220954 +13648335 1 this.left.symbol.symbol -1196464545 +288665596 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -80527,19 +80969,19 @@ this.left.right.right nonsensical 2 this.right -755507289 +1076835071 1 this.right.symbol -42217019 +453211571 1 this.right.symbol.symbol -1806076252 +312116338 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -80565,24 +81007,27 @@ nonsensical this.right.right.right nonsensical 2 +return +4 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -638 +606 this -1904504032 +2059904228 1 this.symbol -2090220954 +41903949 1 this.symbol.symbol -1196464545 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -80665,56 +81110,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -639 +607 this -2090220954 +41903949 1 this.symbol -1196464545 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -639 +607 this -2090220954 +41903949 1 this.symbol -1196464545 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -638 +606 this -1904504032 +2059904228 1 this.symbol -2090220954 +41903949 1 this.symbol.symbol -1196464545 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -80795,45 +81240,182 @@ this.right.right.right nonsensical 2 return +2 +1 + +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +this_invocation_nonce +555 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 1836643189 1355316001 1576861390 600746945 1566502717 1824835605] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +2059904228 +1 +return.symbol +41903949 +1 +return.symbol.symbol +1277181601 +1 +return.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +return.symbol.frequency +2 +1 +return.left +null 1 +return.left.symbol +nonsensical +2 +return.left.left +nonsensical +2 +return.left.right +nonsensical +2 +return.right +null 1 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical +2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER this_invocation_nonce -640 -this -755507289 +608 +left +1463757745 1 -this.symbol -42217019 +left.symbol +757108857 1 -this.symbol.symbol -1806076252 +left.symbol.symbol +796684896 1 -this.symbol.symbol.getClass().getName() +left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.symbol.frequency +left.symbol.frequency +2 +1 +left.left +null 1 +left.left.symbol +nonsensical +2 +left.left.left +nonsensical +2 +left.left.right +nonsensical +2 +left.right +null 1 -this.left +left.right.symbol +nonsensical +2 +left.right.left +nonsensical +2 +left.right.right +nonsensical +2 +right +2059904228 +1 +right.symbol +41903949 +1 +right.symbol.symbol +1277181601 +1 +right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +right.symbol.frequency +2 +1 +right.left null 1 -this.left.symbol +right.left.symbol nonsensical 2 -this.left.symbol.symbol +right.left.left nonsensical 2 -this.left.symbol.symbol.getClass().getName() +right.left.right nonsensical 2 -this.left.symbol.frequency +right.right +null +1 +right.right.symbol nonsensical 2 -this.left.left +right.right.left +nonsensical +2 +right.right.right nonsensical 2 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 +this_invocation_nonce +608 +this +981661423 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1463757745 +1 +this.left.symbol +757108857 +1 +this.left.symbol.symbol +796684896 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +2 +1 +this.left.left +null +1 this.left.left.symbol nonsensical 2 @@ -80844,8 +81426,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -80856,23 +81438,23 @@ this.left.right.right nonsensical 2 this.right -null +2059904228 1 this.right.symbol -nonsensical -2 +41903949 +1 this.right.symbol.symbol -nonsensical -2 +1277181601 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -80883,8 +81465,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -80894,59 +81476,118 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -641 -this -42217019 +left +1463757745 1 -this.symbol -1806076252 +left.symbol +757108857 1 -this.symbol.getClass().getName() +left.symbol.symbol +796684896 +1 +left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +left.symbol.frequency +2 1 +left.left +null 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -641 -this -42217019 +left.left.symbol +nonsensical +2 +left.left.left +nonsensical +2 +left.left.right +nonsensical +2 +left.right +null 1 -this.symbol -1806076252 +left.right.symbol +nonsensical +2 +left.right.left +nonsensical +2 +left.right.right +nonsensical +2 +right +2059904228 1 -this.symbol.getClass().getName() +right.symbol +41903949 +1 +right.symbol.symbol +1277181601 +1 +right.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +right.symbol.frequency +2 1 +right.left +null 1 -return +right.left.symbol +nonsensical +2 +right.left.left +nonsensical +2 +right.left.right +nonsensical +2 +right.right +null 1 +right.right.symbol +nonsensical +2 +right.right.left +nonsensical +2 +right.right.right +nonsensical +2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +609 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 1836643189 1355316001 1576861390 600746945 1566502717 1824835605 981661423] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -640 +610 this -755507289 +1525262377 1 this.symbol -42217019 +1802598046 1 this.symbol.symbol -1806076252 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -81026,127 +81667,59 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -637 +611 this -1651366663 +1802598046 1 this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 +1809787067 1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 +this.frequency +3 1 -this.right.symbol -42217019 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +611 +this +1802598046 1 -this.right.symbol.symbol -1806076252 +this.symbol +1809787067 1 -this.right.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null +this.frequency +3 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -642 +610 this -467870275 +1525262377 1 this.symbol -1799775865 +1802598046 1 this.symbol.symbol -2112836430 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -81226,59 +81799,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -643 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -643 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -642 +612 this -467870275 +2081303229 1 this.symbol -1799775865 +1456208737 1 this.symbol.symbol -2112836430 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -81358,46 +81899,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +613 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +613 +this +1456208737 +1 +this.symbol +1018547642 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +5 +1 return -2 +5 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -644 +612 this -440851213 +2081303229 1 this.symbol -null +1456208737 1 this.symbol.symbol -nonsensical -2 +1018547642 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +5 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -81408,8 +81981,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -81420,23 +81993,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -81447,8 +82020,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -81458,24 +82031,27 @@ nonsensical this.right.right.right nonsensical 2 +return +5 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -645 +614 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -81558,56 +82134,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -646 +615 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -646 +615 this -646946680 +240650537 1 this.symbol -871834823 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +6 1 return -1 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -645 +614 this -1887685159 +1837760739 1 this.symbol -646946680 +240650537 1 this.symbol.symbol -871834823 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +6 1 this.left null @@ -81688,26 +82264,26 @@ this.right.right.right nonsensical 2 return -1 +6 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -647 +616 this -470905757 +1525262377 1 this.symbol -1574116 +1802598046 1 this.symbol.symbol -247113402 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -81790,56 +82366,156 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -648 +617 this -1574116 +1802598046 1 this.symbol -247113402 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -648 +617 this -1574116 +1802598046 1 this.symbol -247113402 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -647 +616 this -470905757 +1525262377 1 this.symbol -1574116 +1802598046 1 this.symbol.symbol -247113402 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical 2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +3 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +618 +this +1418428263 +1 +this.symbol +2088051243 +1 +this.symbol.symbol +483422889 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 1 this.left null @@ -81919,46 +82595,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +619 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +619 +this +2088051243 +1 +this.symbol +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -644 +618 this -440851213 +1418428263 1 this.symbol -null +2088051243 1 this.symbol.symbol -nonsensical -2 +483422889 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1887685159 +null 1 this.left.symbol -646946680 -1 +nonsensical +2 this.left.symbol.symbol -871834823 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -81969,8 +82677,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -81981,23 +82689,23 @@ this.left.right.right nonsensical 2 this.right -470905757 +null 1 this.right.symbol -1574116 -1 +nonsensical +2 this.right.symbol.symbol -247113402 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -82008,8 +82716,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -82025,21 +82733,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -649 +620 this -467870275 +1525262377 1 this.symbol -1799775865 +1802598046 1 this.symbol.symbol -2112836430 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -82122,56 +82830,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -650 +621 this -1799775865 +1802598046 1 this.symbol -2112836430 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -650 +621 this -1799775865 +1802598046 1 this.symbol -2112836430 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -649 +620 this -467870275 +1525262377 1 this.symbol -1799775865 +1802598046 1 this.symbol.symbol -2112836430 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -82252,45 +82960,45 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -651 +622 this -1801601815 +1836643189 1 this.symbol -null +1209271652 1 this.symbol.symbol -nonsensical -2 +488970385 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -82301,8 +83009,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -82313,23 +83021,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -82340,8 +83048,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -82352,17 +83060,52 @@ this.right.right.right nonsensical 2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -652 +623 +this +1209271652 +1 +this.symbol +488970385 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +623 +this +1209271652 +1 +this.symbol +488970385 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +622 this -1502515546 +1836643189 1 this.symbol -1097499032 +1209271652 1 this.symbol.symbol -917732198 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -82448,59 +83191,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -653 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -653 -this -1097499032 -1 -this.symbol -917732198 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return 2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -652 +624 this -1502515546 +1525262377 1 this.symbol -1097499032 +1802598046 1 this.symbol.symbol -917732198 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -82580,27 +83291,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +625 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +625 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -654 +624 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -82680,59 +83423,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -655 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -655 -this -340475003 -1 -this.symbol -929186741 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -654 +626 this -518576549 +1355316001 1 this.symbol -340475003 +2083562754 1 this.symbol.symbol -929186741 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -82812,46 +83523,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +627 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +627 +this +2083562754 +1 +this.symbol +93122545 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -651 +626 this -1801601815 +1355316001 1 this.symbol -null +2083562754 1 this.symbol.symbol -nonsensical -2 +93122545 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -82862,8 +83605,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -82874,23 +83617,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -82901,8 +83644,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -82913,20 +83656,20 @@ this.right.right.right nonsensical 2 return -4 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -656 +628 this -467870275 +1836643189 1 this.symbol -1799775865 +1209271652 1 this.symbol.symbol -2112836430 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -83015,12 +83758,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -657 +629 this -1799775865 +1209271652 1 this.symbol -2112836430 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -83031,12 +83774,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -657 +629 this -1799775865 +1209271652 1 this.symbol -2112836430 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" @@ -83050,15 +83793,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -656 +628 this -467870275 +1836643189 1 this.symbol -1799775865 +1209271652 1 this.symbol.symbol -2112836430 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -83150,9 +83893,9 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -658 +630 this -2282005 +1576861390 1 this.symbol null @@ -83167,19 +83910,19 @@ this.symbol.frequency nonsensical 2 this.left -1227419517 +1307096070 1 this.left.symbol -1745169531 +901506536 1 this.left.symbol.symbol -1466939813 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -2 +1 1 this.left.left null @@ -83206,19 +83949,19 @@ this.left.right.right nonsensical 2 this.right -853552605 +1597462040 1 this.right.symbol -1180110925 +557041912 1 this.right.symbol.symbol -1750434854 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -2 +1 1 this.right.left null @@ -83247,21 +83990,21 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -659 +631 this -1227419517 +1307096070 1 this.symbol -1745169531 +901506536 1 this.symbol.symbol -1466939813 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -83344,56 +84087,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -660 +632 this -1745169531 +901506536 1 this.symbol -1466939813 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -660 +632 this -1745169531 +901506536 1 this.symbol -1466939813 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -659 +631 this -1227419517 +1307096070 1 this.symbol -1745169531 +901506536 1 this.symbol.symbol -1466939813 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -83474,26 +84217,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -661 +633 this -853552605 +1597462040 1 this.symbol -1180110925 +557041912 1 this.symbol.symbol -1750434854 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -83576,56 +84319,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -662 +634 this -1180110925 +557041912 1 this.symbol -1750434854 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -662 +634 this -1180110925 +557041912 1 this.symbol -1750434854 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -661 +633 this -853552605 +1597462040 1 this.symbol -1180110925 +557041912 1 this.symbol.symbol -1750434854 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -83706,14 +84449,14 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -658 +630 this -2282005 +1576861390 1 this.symbol null @@ -83728,19 +84471,19 @@ this.symbol.frequency nonsensical 2 this.left -1227419517 +1307096070 1 this.left.symbol -1745169531 +901506536 1 this.left.symbol.symbol -1466939813 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -2 +1 1 this.left.left null @@ -83767,19 +84510,19 @@ this.left.right.right nonsensical 2 this.right -853552605 +1597462040 1 this.right.symbol -1180110925 +557041912 1 this.right.symbol.symbol -1750434854 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -2 +1 1 this.right.left null @@ -83806,152 +84549,20 @@ this.right.right.right nonsensical 2 return -4 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -663 -this -467870275 -1 -this.symbol -1799775865 -1 -this.symbol.symbol -2112836430 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -2 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical 2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -664 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -664 -this -1799775865 -1 -this.symbol -2112836430 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -2 -1 -return -2 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -663 +635 this -467870275 +1836643189 1 this.symbol -1799775865 +1209271652 1 this.symbol.symbol -2112836430 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -84037,98 +84648,59 @@ nonsensical this.right.right.right nonsensical 2 -return -2 -1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -609 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 1558080258 1128590881 1651366663 440851213 1801601815 2282005] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -467870275 -1 -return.symbol -1799775865 +636 +this +1209271652 1 -return.symbol.symbol -2112836430 +this.symbol +488970385 1 -return.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -return.symbol.frequency -2 -1 -return.left -null -1 -return.left.symbol -nonsensical -2 -return.left.left -nonsensical -2 -return.left.right -nonsensical +this.frequency 2 -return.right -null 1 -return.right.symbol -nonsensical -2 -return.right.left -nonsensical -2 -return.right.right -nonsensical -2 -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -665 -nodeList -1548550182 +636 +this +1209271652 1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 1558080258 1128590881 1651366663 440851213 1801601815 2282005] +this.symbol +488970385 1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +this.symbol.getClass().getName() +"java.lang.Character" 1 -nodeList.getClass().getName() -"java.util.ArrayList" +this.frequency +2 +1 +return +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -666 +635 this -511909137 +1836643189 1 this.symbol -91454439 +1209271652 1 this.symbol.symbol -732656791 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -84208,78 +84780,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -667 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -667 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -666 +637 this -511909137 +600746945 1 this.symbol -91454439 +null 1 this.symbol.symbol -732656791 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -84290,8 +84830,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -84302,23 +84842,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -84329,8 +84869,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -84340,27 +84880,24 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -668 +638 this -1035818704 +403716510 1 this.symbol -1582525299 +985922955 1 this.symbol.symbol -686363848 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +1 1 this.left null @@ -84443,56 +84980,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -669 +639 this -1582525299 +985922955 1 this.symbol -686363848 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -669 +639 this -1582525299 +985922955 1 this.symbol -686363848 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +1 1 return -5 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -668 +638 this -1035818704 +403716510 1 this.symbol -1582525299 +985922955 1 this.symbol.symbol -686363848 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +1 1 this.left null @@ -84573,26 +85110,26 @@ this.right.right.right nonsensical 2 return -5 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -670 +640 this -837375677 +853119666 1 this.symbol -1335593353 +1784662007 1 this.symbol.symbol -1623948668 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -84675,56 +85212,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -671 +641 this -1335593353 +1784662007 1 this.symbol -1623948668 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -671 +641 this -1335593353 +1784662007 1 this.symbol -1623948668 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +1 1 return -6 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -670 +640 this -837375677 +853119666 1 this.symbol -1335593353 +1784662007 1 this.symbol.symbol -1623948668 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +1 1 this.left null @@ -84805,45 +85342,45 @@ this.right.right.right nonsensical 2 return -6 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -672 +637 this -511909137 +600746945 1 this.symbol -91454439 +null 1 this.symbol.symbol -732656791 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +403716510 1 this.left.symbol -nonsensical -2 +985922955 +1 this.left.symbol.symbol -nonsensical -2 +1134712904 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -84854,8 +85391,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -84866,23 +85403,23 @@ this.left.right.right nonsensical 2 this.right -null +853119666 1 this.right.symbol -nonsensical -2 +1784662007 +1 this.right.symbol.symbol -nonsensical -2 +1435804085 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -84893,8 +85430,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -84904,59 +85441,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -673 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -673 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -672 +642 this -511909137 +1836643189 1 this.symbol -91454439 +1209271652 1 this.symbol.symbol -732656791 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -85036,27 +85541,59 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +643 +this +1209271652 +1 +this.symbol +488970385 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +643 +this +1209271652 +1 +this.symbol +488970385 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 return -3 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -674 +642 this -1312664548 +1836643189 1 this.symbol -1100231132 +1209271652 1 this.symbol.symbol -1818405427 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -85136,78 +85673,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -675 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -675 -this -1100231132 -1 -this.symbol -1818405427 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -674 +644 this -1312664548 +1566502717 1 this.symbol -1100231132 +null 1 this.symbol.symbol -1818405427 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +559670971 1 this.left.symbol -nonsensical -2 +509886383 +1 this.left.symbol.symbol -nonsensical -2 +997110508 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -85218,8 +85723,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -85230,23 +85735,23 @@ this.left.right.right nonsensical 2 this.right -null +1014328909 1 this.right.symbol -nonsensical -2 +1513712028 +1 this.right.symbol.symbol -nonsensical -2 +747464370 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -85257,8 +85762,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -85268,27 +85773,24 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -676 +645 this -511909137 +559670971 1 this.symbol -91454439 +509886383 1 this.symbol.symbol -732656791 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -85371,56 +85873,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -677 +646 this -91454439 +509886383 1 this.symbol -732656791 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -677 +646 this -91454439 +509886383 1 this.symbol -732656791 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -676 +645 this -511909137 +559670971 1 this.symbol -91454439 +509886383 1 this.symbol.symbol -732656791 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -85501,26 +86003,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -678 +647 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -85603,56 +86105,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -679 +648 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -679 +648 this -935344593 +1513712028 1 this.symbol -1525795060 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -678 +647 this -1558080258 +1014328909 1 this.symbol -935344593 +1513712028 1 this.symbol.symbol -1525795060 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -85733,26 +86235,126 @@ this.right.right.right nonsensical 2 return +2 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +644 +this +1566502717 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +559670971 +1 +this.left.symbol +509886383 +1 +this.left.symbol.symbol +997110508 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1014328909 +1 +this.right.symbol +1513712028 +1 +this.right.symbol.symbol +747464370 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +2 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return 3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -680 +649 this -511909137 +1836643189 1 this.symbol -91454439 +1209271652 1 this.symbol.symbol -732656791 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -85835,56 +86437,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -681 +650 this -91454439 +1209271652 1 this.symbol -732656791 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -681 +650 this -91454439 +1209271652 1 this.symbol -732656791 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -680 +649 this -511909137 +1836643189 1 this.symbol -91454439 +1209271652 1 this.symbol.symbol -732656791 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -85965,14 +86567,14 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -682 +651 this -1128590881 +1824835605 1 this.symbol null @@ -85987,19 +86589,19 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1223685984 1 this.left.symbol -202918529 +13648335 1 this.left.symbol.symbol -1297548602 +288665596 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -86026,19 +86628,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1076835071 1 this.right.symbol -1964711431 +453211571 1 this.right.symbol.symbol -756278511 +312116338 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -86067,21 +86669,21 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -683 +652 this -1987411885 +1223685984 1 this.symbol -202918529 +13648335 1 this.symbol.symbol -1297548602 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -86164,56 +86766,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -684 +653 this -202918529 +13648335 1 this.symbol -1297548602 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -684 +653 this -202918529 +13648335 1 this.symbol -1297548602 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -683 +652 this -1987411885 +1223685984 1 this.symbol -202918529 +13648335 1 this.symbol.symbol -1297548602 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -86294,26 +86896,26 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -685 +654 this -239304688 +1076835071 1 this.symbol -1964711431 +453211571 1 this.symbol.symbol -756278511 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -86396,56 +86998,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -686 +655 this -1964711431 +453211571 1 this.symbol -756278511 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -686 +655 this -1964711431 +453211571 1 this.symbol -756278511 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -685 +654 this -239304688 +1076835071 1 this.symbol -1964711431 +453211571 1 this.symbol.symbol -756278511 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -86526,14 +87128,14 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -682 +651 this -1128590881 +1824835605 1 this.symbol null @@ -86548,19 +87150,19 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1223685984 1 this.left.symbol -202918529 +13648335 1 this.left.symbol.symbol -1297548602 +288665596 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -86587,19 +87189,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1076835071 1 this.right.symbol -1964711431 +453211571 1 this.right.symbol.symbol -756278511 +312116338 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -86626,26 +87228,26 @@ this.right.right.right nonsensical 2 return -2 +4 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -687 +656 this -511909137 +1836643189 1 this.symbol -91454439 +1209271652 1 this.symbol.symbol -732656791 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -86728,253 +87330,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -688 +657 this -91454439 +1209271652 1 this.symbol -732656791 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -688 +657 this -91454439 +1209271652 1 this.symbol -732656791 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -687 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical 2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return -3 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -689 -this -1651366663 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical 2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 -1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 -1 -this.right.symbol -42217019 -1 -this.right.symbol.symbol -1806076252 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -690 +656 this -1904504032 +1836643189 1 this.symbol -2090220954 +1209271652 1 this.symbol.symbol -1196464545 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -87054,59 +87459,124 @@ nonsensical this.right.right.right nonsensical 2 +return +2 +1 -six170.HuffmanSymbol.frequency():::ENTER +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -691 +658 this -2090220954 +981661423 1 this.symbol -1196464545 +null 1 -this.symbol.getClass().getName() +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1463757745 +1 +this.left.symbol +757108857 +1 +this.left.symbol.symbol +796684896 +1 +this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.frequency +this.left.symbol.frequency +2 1 +this.left.left +null 1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -691 -this -2090220954 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null 1 -this.symbol -1196464545 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +2059904228 1 -this.symbol.getClass().getName() -"java.lang.Character" +this.right.symbol +41903949 1 -this.frequency +this.right.symbol.symbol +1277181601 1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" 1 -return +this.right.symbol.frequency +2 1 +this.right.left +null 1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -690 +659 this -1904504032 +1463757745 1 this.symbol -2090220954 +757108857 1 this.symbol.symbol -1196464545 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -87186,27 +87656,59 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +660 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" 1 +this.frequency +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -692 +660 +this +757108857 +1 +this.symbol +796684896 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +2 +1 +return +2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +659 this -755507289 +1463757745 1 this.symbol -42217019 +757108857 1 this.symbol.symbol -1806076252 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -87286,59 +87788,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -693 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -693 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -692 +661 this -755507289 +2059904228 1 this.symbol -42217019 +41903949 1 this.symbol.symbol -1806076252 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -87418,46 +87888,78 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +662 +this +41903949 +1 +this.symbol +1277181601 +1 +this.symbol.getClass().getName() +"java.lang.Character" 1 +this.frequency +2 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -689 +662 this -1651366663 +41903949 1 this.symbol -null +1277181601 1 -this.symbol.symbol -nonsensical +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency 2 -this.symbol.symbol.getClass().getName() -nonsensical +1 +return 2 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +661 +this +2059904228 +1 +this.symbol +41903949 +1 +this.symbol.symbol +1277181601 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 this.symbol.frequency -nonsensical 2 +1 this.left -1904504032 +null 1 this.left.symbol -2090220954 -1 +nonsensical +2 this.left.symbol.symbol -1196464545 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -87468,8 +87970,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -87480,23 +87982,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -87507,8 +88009,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -87522,11 +88024,11 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -694 +658 this -1128590881 +981661423 1 this.symbol null @@ -87541,19 +88043,19 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1463757745 1 this.left.symbol -202918529 +757108857 1 this.left.symbol.symbol -1297548602 +796684896 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -87580,19 +88082,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +2059904228 1 this.right.symbol -1964711431 +41903949 1 this.right.symbol.symbol -756278511 +1277181601 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -87618,24 +88120,27 @@ nonsensical this.right.right.right nonsensical 2 +return +4 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -695 +663 this -1987411885 +1836643189 1 this.symbol -202918529 +1209271652 1 this.symbol.symbol -1297548602 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -87718,56 +88223,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -696 +664 this -202918529 +1209271652 1 this.symbol -1297548602 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -696 +664 this -202918529 +1209271652 1 this.symbol -1297548602 +488970385 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -695 +663 this -1987411885 +1836643189 1 this.symbol -202918529 +1209271652 1 this.symbol.symbol -1297548602 +488970385 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -87848,26 +88353,97 @@ this.right.right.right nonsensical 2 return +2 +1 + +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +this_invocation_nonce +609 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 1355316001 1576861390 600746945 1566502717 1824835605 981661423] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +1836643189 +1 +return.symbol +1209271652 +1 +return.symbol.symbol +488970385 +1 +return.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +return.symbol.frequency +2 +1 +return.left +null +1 +return.left.symbol +nonsensical +2 +return.left.left +nonsensical +2 +return.left.right +nonsensical +2 +return.right +null +1 +return.right.symbol +nonsensical +2 +return.right.left +nonsensical +2 +return.right.right +nonsensical +2 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +665 +nodeList +1144648478 1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 1355316001 1576861390 600746945 1566502717 1824835605 981661423] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -697 +666 this -239304688 +1525262377 1 this.symbol -1964711431 +1802598046 1 this.symbol.symbol -756278511 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -87950,56 +88526,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -698 +667 this -1964711431 +1802598046 1 this.symbol -756278511 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -698 +667 this -1964711431 +1802598046 1 this.symbol -756278511 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -697 +666 this -239304688 +1525262377 1 this.symbol -1964711431 +1802598046 1 this.symbol.symbol -756278511 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -88080,223 +88656,26 @@ this.right.right.right nonsensical 2 return +3 1 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -694 -this -1128590881 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 -1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -239304688 -1 -this.right.symbol -1964711431 -1 -this.right.symbol.symbol -756278511 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -2 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -699 -this -440851213 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1887685159 -1 -this.left.symbol -646946680 -1 -this.left.symbol.symbol -871834823 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -470905757 -1 -this.right.symbol -1574116 -1 -this.right.symbol.symbol -247113402 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -700 +668 this -1887685159 +2081303229 1 this.symbol -646946680 +1456208737 1 this.symbol.symbol -871834823 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +5 1 this.left null @@ -88379,56 +88758,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -701 +669 this -646946680 +1456208737 1 this.symbol -871834823 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -701 +669 this -646946680 +1456208737 1 this.symbol -871834823 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +5 1 return -1 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -700 +668 this -1887685159 +2081303229 1 this.symbol -646946680 +1456208737 1 this.symbol.symbol -871834823 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +5 1 this.left null @@ -88509,26 +88888,26 @@ this.right.right.right nonsensical 2 return -1 +5 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -702 +670 this -470905757 +1837760739 1 this.symbol -1574116 +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -88611,56 +88990,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -703 +671 this -1574116 +240650537 1 this.symbol -247113402 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +6 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -703 +671 this -1574116 +240650537 1 this.symbol -247113402 +659748578 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +6 1 return -2 +6 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -702 +670 this -470905757 +1837760739 1 this.symbol -1574116 +240650537 1 this.symbol.symbol -247113402 +659748578 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +6 1 this.left null @@ -88741,223 +89120,26 @@ this.right.right.right nonsensical 2 return -2 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -699 -this -440851213 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1887685159 -1 -this.left.symbol -646946680 -1 -this.left.symbol.symbol -871834823 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -470905757 -1 -this.right.symbol -1574116 -1 -this.right.symbol.symbol -247113402 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -3 -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -704 -this -1128590881 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1987411885 -1 -this.left.symbol -202918529 -1 -this.left.symbol.symbol -1297548602 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -239304688 -1 -this.right.symbol -1964711431 -1 -this.right.symbol.symbol -756278511 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null +6 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -705 +672 this -1987411885 +1525262377 1 this.symbol -202918529 +1802598046 1 this.symbol.symbol -1297548602 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -89040,56 +89222,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -706 +673 this -202918529 +1802598046 1 this.symbol -1297548602 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -706 +673 this -202918529 +1802598046 1 this.symbol -1297548602 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -705 +672 this -1987411885 +1525262377 1 this.symbol -202918529 +1802598046 1 this.symbol.symbol -1297548602 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -89170,26 +89352,26 @@ this.right.right.right nonsensical 2 return -1 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -707 +674 this -239304688 +1418428263 1 this.symbol -1964711431 +2088051243 1 this.symbol.symbol -756278511 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -89272,56 +89454,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -708 +675 this -1964711431 +2088051243 1 this.symbol -756278511 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -708 +675 this -1964711431 +2088051243 1 this.symbol -756278511 +483422889 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +3 1 return -1 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -707 +674 this -239304688 +1418428263 1 this.symbol -1964711431 +2088051243 1 this.symbol.symbol -756278511 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -89402,45 +89584,45 @@ this.right.right.right nonsensical 2 return -1 +3 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -704 +676 this -1128590881 +1525262377 1 this.symbol -null +1802598046 1 this.symbol.symbol -nonsensical -2 +1809787067 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1987411885 +null 1 this.left.symbol -202918529 -1 +nonsensical +2 this.left.symbol.symbol -1297548602 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency -1 -1 +nonsensical +2 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -89451,8 +89633,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -89463,23 +89645,23 @@ this.left.right.right nonsensical 2 this.right -239304688 +null 1 this.right.symbol -1964711431 -1 +nonsensical +2 this.right.symbol.symbol -756278511 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -89490,8 +89672,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -89501,46 +89683,78 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +677 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +677 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -709 +676 this -1801601815 +1525262377 1 this.symbol -null +1802598046 1 this.symbol.symbol -nonsensical -2 +1809787067 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -89551,8 +89765,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -89563,23 +89777,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -89590,8 +89804,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -89601,24 +89815,27 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -710 +678 this -1502515546 +1355316001 1 this.symbol -1097499032 +2083562754 1 this.symbol.symbol -917732198 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -89701,56 +89918,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -711 +679 this -1097499032 +2083562754 1 this.symbol -917732198 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -711 +679 this -1097499032 +2083562754 1 this.symbol -917732198 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -710 +678 this -1502515546 +1355316001 1 this.symbol -1097499032 +2083562754 1 this.symbol.symbol -917732198 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -89831,26 +90048,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -712 +680 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -89933,56 +90150,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -713 +681 this -340475003 +1802598046 1 this.symbol -929186741 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -713 +681 this -340475003 +1802598046 1 this.symbol -929186741 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -712 +680 this -518576549 +1525262377 1 this.symbol -340475003 +1802598046 1 this.symbol.symbol -929186741 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -90063,114 +90280,14 @@ this.right.right.right nonsensical 2 return -2 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -709 -this -1801601815 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1502515546 -1 -this.left.symbol -1097499032 -1 -this.left.symbol.symbol -917732198 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -2 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -518576549 -1 -this.right.symbol -340475003 -1 -this.right.symbol.symbol -929186741 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -4 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -714 +682 this -1128590881 +1576861390 1 this.symbol null @@ -90185,13 +90302,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1307096070 1 this.left.symbol -202918529 +901506536 1 this.left.symbol.symbol -1297548602 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90224,13 +90341,13 @@ this.left.right.right nonsensical 2 this.right -239304688 +1597462040 1 this.right.symbol -1964711431 +557041912 1 this.right.symbol.symbol -756278511 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90265,15 +90382,15 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -715 +683 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90362,12 +90479,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -716 +684 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -90378,12 +90495,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -716 +684 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -90397,15 +90514,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -715 +683 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90497,15 +90614,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -717 +685 this -239304688 +1597462040 1 this.symbol -1964711431 +557041912 1 this.symbol.symbol -756278511 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90594,12 +90711,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -718 +686 this -1964711431 +557041912 1 this.symbol -756278511 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -90610,12 +90727,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -718 +686 this -1964711431 +557041912 1 this.symbol -756278511 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -90629,15 +90746,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -717 +685 this -239304688 +1597462040 1 this.symbol -1964711431 +557041912 1 this.symbol.symbol -756278511 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90729,9 +90846,9 @@ return six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -714 +682 this -1128590881 +1576861390 1 this.symbol null @@ -90746,13 +90863,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1307096070 1 this.left.symbol -202918529 +901506536 1 this.left.symbol.symbol -1297548602 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90785,13 +90902,13 @@ this.left.right.right nonsensical 2 this.right -239304688 +1597462040 1 this.right.symbol -1964711431 +557041912 1 this.right.symbol.symbol -756278511 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -90829,9 +90946,241 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -719 +687 +this +1525262377 +1 +this.symbol +1802598046 +1 +this.symbol.symbol +1809787067 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +688 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +688 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +687 +this +1525262377 +1 +this.symbol +1802598046 +1 +this.symbol.symbol +1809787067 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +3 +1 +this.left +null +1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null +1 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +3 +1 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +689 this -2282005 +600746945 1 this.symbol null @@ -90846,19 +91195,19 @@ this.symbol.frequency nonsensical 2 this.left -1227419517 +403716510 1 this.left.symbol -1745169531 +985922955 1 this.left.symbol.symbol -1466939813 +1134712904 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -2 +1 1 this.left.left null @@ -90885,19 +91234,19 @@ this.left.right.right nonsensical 2 this.right -853552605 +853119666 1 this.right.symbol -1180110925 +1784662007 1 this.right.symbol.symbol -1750434854 +1435804085 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -2 +1 1 this.right.left null @@ -90926,21 +91275,21 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -720 +690 this -1227419517 +403716510 1 this.symbol -1745169531 +985922955 1 this.symbol.symbol -1466939813 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -91023,56 +91372,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -721 +691 this -1745169531 +985922955 1 this.symbol -1466939813 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -721 +691 this -1745169531 +985922955 1 this.symbol -1466939813 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -720 +690 this -1227419517 +403716510 1 this.symbol -1745169531 +985922955 1 this.symbol.symbol -1466939813 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -91153,26 +91502,26 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -722 +692 this -853552605 +853119666 1 this.symbol -1180110925 +1784662007 1 this.symbol.symbol -1750434854 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -91255,56 +91604,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -723 +693 this -1180110925 +1784662007 1 this.symbol -1750434854 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -723 +693 this -1180110925 +1784662007 1 this.symbol -1750434854 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +1 1 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -722 +692 this -853552605 +853119666 1 this.symbol -1180110925 +1784662007 1 this.symbol.symbol -1750434854 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +1 1 this.left null @@ -91385,14 +91734,14 @@ this.right.right.right nonsensical 2 return -2 +1 1 six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -719 +689 this -2282005 +600746945 1 this.symbol null @@ -91407,19 +91756,19 @@ this.symbol.frequency nonsensical 2 this.left -1227419517 +403716510 1 this.left.symbol -1745169531 +985922955 1 this.left.symbol.symbol -1466939813 +1134712904 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -2 +1 1 this.left.left null @@ -91446,19 +91795,19 @@ this.left.right.right nonsensical 2 this.right -853552605 +853119666 1 this.right.symbol -1180110925 +1784662007 1 this.right.symbol.symbol -1750434854 +1435804085 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -2 +1 1 this.right.left null @@ -91485,14 +91834,14 @@ this.right.right.right nonsensical 2 return -4 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -724 +694 this -1128590881 +1576861390 1 this.symbol null @@ -91507,13 +91856,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1307096070 1 this.left.symbol -202918529 +901506536 1 this.left.symbol.symbol -1297548602 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -91546,13 +91895,13 @@ this.left.right.right nonsensical 2 this.right -239304688 +1597462040 1 this.right.symbol -1964711431 +557041912 1 this.right.symbol.symbol -756278511 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -91587,15 +91936,15 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -725 +695 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -91684,12 +92033,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -726 +696 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -91700,12 +92049,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -726 +696 this -202918529 +901506536 1 this.symbol -1297548602 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -91719,15 +92068,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -725 +695 this -1987411885 +1307096070 1 this.symbol -202918529 +901506536 1 this.symbol.symbol -1297548602 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -91819,15 +92168,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -727 +697 this -239304688 +1597462040 1 this.symbol -1964711431 +557041912 1 this.symbol.symbol -756278511 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -91916,12 +92265,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -728 +698 this -1964711431 +557041912 1 this.symbol -756278511 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -91932,12 +92281,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -728 +698 this -1964711431 +557041912 1 this.symbol -756278511 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -91951,15 +92300,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -727 +697 this -239304688 +1597462040 1 this.symbol -1964711431 +557041912 1 this.symbol.symbol -756278511 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -92051,9 +92400,9 @@ return six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -724 +694 this -1128590881 +1576861390 1 this.symbol null @@ -92068,13 +92417,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +1307096070 1 this.left.symbol -202918529 +901506536 1 this.left.symbol.symbol -1297548602 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -92107,13 +92456,13 @@ this.left.right.right nonsensical 2 this.right -239304688 +1597462040 1 this.right.symbol -1964711431 +557041912 1 this.right.symbol.symbol -756278511 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -92149,148 +92498,11 @@ return 2 1 -six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 -this_invocation_nonce -665 -nodeList -1548550182 -1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 1558080258 1651366663 440851213 1801601815 2282005] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 -return -1128590881 -1 -return.symbol -null -1 -return.symbol.symbol -nonsensical -2 -return.symbol.symbol.getClass().getName() -nonsensical -2 -return.symbol.frequency -nonsensical -2 -return.left -1987411885 -1 -return.left.symbol -202918529 -1 -return.left.left -null -1 -return.left.right -null -1 -return.right -239304688 -1 -return.right.symbol -1964711431 -1 -return.right.left -null -1 -return.right.right -null -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER -this_invocation_nonce -729 -left -467870275 -1 -left.symbol -1799775865 -1 -left.symbol.symbol -2112836430 -1 -left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -left.symbol.frequency -2 -1 -left.left -null -1 -left.left.symbol -nonsensical -2 -left.left.left -nonsensical -2 -left.left.right -nonsensical -2 -left.right -null -1 -left.right.symbol -nonsensical -2 -left.right.left -nonsensical -2 -left.right.right -nonsensical -2 -right -1128590881 -1 -right.symbol -null -1 -right.symbol.symbol -nonsensical -2 -right.symbol.symbol.getClass().getName() -nonsensical -2 -right.symbol.frequency -nonsensical -2 -right.left -1987411885 -1 -right.left.symbol -202918529 -1 -right.left.left -null -1 -right.left.right -null -1 -right.right -239304688 -1 -right.right.symbol -1964711431 -1 -right.right.left -null -1 -right.right.right -null -1 - -six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -729 +699 this -1846436036 +1566502717 1 this.symbol null @@ -92305,19 +92517,19 @@ this.symbol.frequency nonsensical 2 this.left -467870275 +559670971 1 this.left.symbol -1799775865 +509886383 1 this.left.symbol.symbol -2112836430 +997110508 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -2 +1 1 this.left.left null @@ -92344,214 +92556,23 @@ this.left.right.right nonsensical 2 this.right -1128590881 +1014328909 1 this.right.symbol -null +1513712028 1 this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -1987411885 +747464370 1 -this.right.left.symbol -202918529 -1 -this.right.left.left -null -1 -this.right.left.right -null -1 -this.right.right -239304688 -1 -this.right.right.symbol -1964711431 -1 -this.right.right.left -null -1 -this.right.right.right -null -1 -left -467870275 -1 -left.symbol -1799775865 -1 -left.symbol.symbol -2112836430 -1 -left.symbol.symbol.getClass().getName() +this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 -left.symbol.frequency -2 -1 -left.left -null -1 -left.left.symbol -nonsensical -2 -left.left.left -nonsensical -2 -left.left.right -nonsensical -2 -left.right -null -1 -left.right.symbol -nonsensical -2 -left.right.left -nonsensical -2 -left.right.right -nonsensical -2 -right -1128590881 -1 -right.symbol -null -1 -right.symbol.symbol -nonsensical -2 -right.symbol.symbol.getClass().getName() -nonsensical -2 -right.symbol.frequency -nonsensical +this.right.symbol.frequency 2 -right.left -1987411885 -1 -right.left.symbol -202918529 -1 -right.left.left -null -1 -right.left.right -null -1 -right.right -239304688 -1 -right.right.symbol -1964711431 -1 -right.right.left -null -1 -right.right.right -null -1 - -six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER -this_invocation_nonce -730 -nodeList -1548550182 1 -nodeList[..] -[1035818704 511909137 837375677 1312664548 1558080258 1651366663 440851213 1801601815 2282005 1846436036] -1 -nodeList[..].getClass().getName() -["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] -1 -nodeList.getClass().getName() -"java.util.ArrayList" -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -731 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left -null -1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right +this.right.left null 1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 this.right.left.symbol nonsensical 2 @@ -92562,140 +92583,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -732 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -732 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 -return -3 -1 - -six170.HuffmanTree.frequency():::EXIT51 -this_invocation_nonce -731 -this -511909137 -1 -this.symbol -91454439 -1 -this.symbol.symbol -732656791 -1 -this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.symbol.frequency -3 -1 -this.left null 1 -this.left.symbol -nonsensical -2 -this.left.symbol.symbol -nonsensical -2 -this.left.symbol.symbol.getClass().getName() -nonsensical -2 -this.left.symbol.frequency -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -null -1 -this.right.symbol -nonsensical -2 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -nonsensical -2 this.right.right.symbol nonsensical 2 @@ -92705,27 +92594,24 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -733 +700 this -1035818704 +559670971 1 this.symbol -1582525299 +509886383 1 this.symbol.symbol -686363848 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +1 1 this.left null @@ -92808,56 +92694,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -734 +701 this -1582525299 +509886383 1 this.symbol -686363848 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -734 +701 this -1582525299 +509886383 1 this.symbol -686363848 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -5 +1 1 return -5 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -733 +700 this -1035818704 +559670971 1 this.symbol -1582525299 +509886383 1 this.symbol.symbol -686363848 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -5 +1 1 this.left null @@ -92938,26 +92824,26 @@ this.right.right.right nonsensical 2 return -5 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -735 +702 this -837375677 +1014328909 1 this.symbol -1335593353 +1513712028 1 this.symbol.symbol -1623948668 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -93040,56 +92926,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -736 +703 this -1335593353 +1513712028 1 this.symbol -1623948668 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -736 +703 this -1335593353 +1513712028 1 this.symbol -1623948668 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -6 +2 1 return -6 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -735 +702 this -837375677 +1014328909 1 this.symbol -1335593353 +1513712028 1 this.symbol.symbol -1623948668 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -6 +2 1 this.left null @@ -93170,26 +93056,223 @@ this.right.right.right nonsensical 2 return -6 +2 +1 + +six170.HuffmanTree.frequency():::EXIT53 +this_invocation_nonce +699 +this +1566502717 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +559670971 +1 +this.left.symbol +509886383 +1 +this.left.symbol.symbol +997110508 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1014328909 +1 +this.right.symbol +1513712028 +1 +this.right.symbol.symbol +747464370 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +2 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -737 +704 +this +1576861390 +1 +this.symbol +null +1 +this.symbol.symbol +nonsensical +2 +this.symbol.symbol.getClass().getName() +nonsensical +2 +this.symbol.frequency +nonsensical +2 +this.left +1307096070 +1 +this.left.symbol +901506536 +1 +this.left.symbol.symbol +2109957412 +1 +this.left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.left.symbol.frequency +1 +1 +this.left.left +null +1 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +null +1 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +1597462040 +1 +this.right.symbol +557041912 +1 +this.right.symbol.symbol +1239731077 +1 +this.right.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.right.symbol.frequency +1 +1 +this.right.left +null +1 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +null +1 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +705 this -511909137 +1307096070 1 this.symbol -91454439 +901506536 1 this.symbol.symbol -732656791 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -93272,56 +93355,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -738 +706 this -91454439 +901506536 1 this.symbol -732656791 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -738 +706 this -91454439 +901506536 1 this.symbol -732656791 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -737 +705 this -511909137 +1307096070 1 this.symbol -91454439 +901506536 1 this.symbol.symbol -732656791 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -93402,26 +93485,26 @@ this.right.right.right nonsensical 2 return -3 +1 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -739 +707 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -93504,56 +93587,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -740 +708 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -740 +708 this -1100231132 +557041912 1 this.symbol -1818405427 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +1 1 return -3 +1 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -739 +707 this -1312664548 +1597462040 1 this.symbol -1100231132 +557041912 1 this.symbol.symbol -1818405427 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -93634,45 +93717,45 @@ this.right.right.right nonsensical 2 return -3 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -741 +704 this -511909137 +1576861390 1 this.symbol -91454439 +null 1 this.symbol.symbol -732656791 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -93683,8 +93766,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -93695,23 +93778,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -93722,8 +93805,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -93733,78 +93816,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -742 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -742 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +2 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -741 +709 this -511909137 +1824835605 1 this.symbol -91454439 +null 1 this.symbol.symbol -732656791 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +1223685984 1 this.left.symbol -nonsensical -2 +13648335 +1 this.left.symbol.symbol -nonsensical -2 +288665596 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical 2 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -93815,8 +93866,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -93827,23 +93878,23 @@ this.left.right.right nonsensical 2 this.right -null +1076835071 1 this.right.symbol -nonsensical -2 +453211571 +1 this.right.symbol.symbol -nonsensical -2 +312116338 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical 2 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -93854,8 +93905,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -93865,27 +93916,24 @@ nonsensical this.right.right.right nonsensical 2 -return -3 -1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -743 +710 this -1558080258 +1223685984 1 this.symbol -935344593 +13648335 1 this.symbol.symbol -1525795060 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -93968,56 +94016,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -744 +711 this -935344593 +13648335 1 this.symbol -1525795060 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -744 +711 this -935344593 +13648335 1 this.symbol -1525795060 +288665596 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -743 +710 this -1558080258 +1223685984 1 this.symbol -935344593 +13648335 1 this.symbol.symbol -1525795060 +288665596 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -94098,26 +94146,26 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -745 +712 this -511909137 +1076835071 1 this.symbol -91454439 +453211571 1 this.symbol.symbol -732656791 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -94200,56 +94248,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -746 +713 this -91454439 +453211571 1 this.symbol -732656791 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -746 +713 this -91454439 +453211571 1 this.symbol -732656791 +312116338 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -3 +2 1 return -3 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -745 +712 this -511909137 +1076835071 1 this.symbol -91454439 +453211571 1 this.symbol.symbol -732656791 +312116338 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +2 1 this.left null @@ -94330,14 +94378,14 @@ this.right.right.right nonsensical 2 return -3 +2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -747 +709 this -1651366663 +1824835605 1 this.symbol null @@ -94352,19 +94400,19 @@ this.symbol.frequency nonsensical 2 this.left -1904504032 +1223685984 1 this.left.symbol -2090220954 +13648335 1 this.left.symbol.symbol -1196464545 +288665596 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -94391,19 +94439,19 @@ this.left.right.right nonsensical 2 this.right -755507289 +1076835071 1 this.right.symbol -42217019 +453211571 1 this.right.symbol.symbol -1806076252 +312116338 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -94429,43 +94477,46 @@ nonsensical this.right.right.right nonsensical 2 +return +4 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -748 +714 this -1904504032 +1576861390 1 this.symbol -2090220954 +null 1 this.symbol.symbol -1196464545 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -1 -1 +nonsensical +2 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -94476,8 +94527,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -94488,23 +94539,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -94515,8 +94566,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -94527,52 +94578,17 @@ this.right.right.right nonsensical 2 -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -749 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -749 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 -return -1 -1 - -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -748 +715 this -1904504032 +1307096070 1 this.symbol -2090220954 +901506536 1 this.symbol.symbol -1196464545 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -94658,21 +94674,53 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +716 +this +901506536 +1 +this.symbol +2109957412 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +716 +this +901506536 +1 +this.symbol +2109957412 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +1 +1 return 1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -750 +715 this -755507289 +1307096070 1 this.symbol -42217019 +901506536 1 this.symbol.symbol -1806076252 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -94758,53 +94806,21 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -751 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -751 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return 1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -750 +717 this -755507289 +1597462040 1 this.symbol -42217019 +557041912 1 this.symbol.symbol -1806076252 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -94890,127 +94906,59 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -747 +718 this -1651366663 +557041912 1 this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 +1239731077 1 -this.left.symbol -2090220954 -1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null +this.frequency 1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 1 -this.right.symbol -42217019 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +718 +this +557041912 1 -this.right.symbol.symbol -1806076252 +this.symbol +1239731077 1 -this.right.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 -1 -this.right.left -null +this.frequency 1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return -2 +1 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -752 +717 this -511909137 +1597462040 1 this.symbol -91454439 +557041912 1 this.symbol.symbol -732656791 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -3 +1 1 this.left null @@ -95090,78 +95038,46 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -753 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -753 -this -91454439 -1 -this.symbol -732656791 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -3 -1 return -3 +1 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -752 +714 this -511909137 +1576861390 1 this.symbol -91454439 +null 1 this.symbol.symbol -732656791 -1 +nonsensical +2 this.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.symbol.frequency -3 -1 +nonsensical +2 this.left -null +1307096070 1 this.left.symbol -nonsensical -2 +901506536 +1 this.left.symbol.symbol -nonsensical -2 +2109957412 +1 this.left.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.left.symbol.frequency -nonsensical -2 +1 +1 this.left.left -nonsensical -2 +null +1 this.left.left.symbol nonsensical 2 @@ -95172,8 +95088,8 @@ this.left.left.right nonsensical 2 this.left.right -nonsensical -2 +null +1 this.left.right.symbol nonsensical 2 @@ -95184,23 +95100,23 @@ this.left.right.right nonsensical 2 this.right -null +1597462040 1 this.right.symbol -nonsensical -2 +557041912 +1 this.right.symbol.symbol -nonsensical -2 +1239731077 +1 this.right.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.right.symbol.frequency -nonsensical -2 +1 +1 this.right.left -nonsensical -2 +null +1 this.right.left.symbol nonsensical 2 @@ -95211,8 +95127,8 @@ this.right.left.right nonsensical 2 this.right.right -nonsensical -2 +null +1 this.right.right.symbol nonsensical 2 @@ -95223,14 +95139,14 @@ this.right.right.right nonsensical 2 return -3 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -754 +719 this -440851213 +981661423 1 this.symbol null @@ -95245,19 +95161,19 @@ this.symbol.frequency nonsensical 2 this.left -1887685159 +1463757745 1 this.left.symbol -646946680 +757108857 1 this.left.symbol.symbol -871834823 +796684896 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -95284,13 +95200,13 @@ this.left.right.right nonsensical 2 this.right -470905757 +2059904228 1 this.right.symbol -1574116 +41903949 1 this.right.symbol.symbol -247113402 +1277181601 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -95325,21 +95241,21 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -755 +720 this -1887685159 +1463757745 1 this.symbol -646946680 +757108857 1 this.symbol.symbol -871834823 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -95422,56 +95338,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -756 +721 this -646946680 +757108857 1 this.symbol -871834823 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -756 +721 this -646946680 +757108857 1 this.symbol -871834823 +796684896 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 +2 1 return -1 +2 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -755 +720 this -1887685159 +1463757745 1 this.symbol -646946680 +757108857 1 this.symbol.symbol -871834823 +796684896 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -95552,20 +95468,20 @@ this.right.right.right nonsensical 2 return -1 +2 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -757 +722 this -470905757 +2059904228 1 this.symbol -1574116 +41903949 1 this.symbol.symbol -247113402 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -95654,12 +95570,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -758 +723 this -1574116 +41903949 1 this.symbol -247113402 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -95670,12 +95586,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -758 +723 this -1574116 +41903949 1 this.symbol -247113402 +1277181601 1 this.symbol.getClass().getName() "java.lang.Character" @@ -95689,15 +95605,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -757 +722 this -470905757 +2059904228 1 this.symbol -1574116 +41903949 1 this.symbol.symbol -247113402 +1277181601 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -95789,9 +95705,9 @@ return six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -754 +719 this -440851213 +981661423 1 this.symbol null @@ -95806,19 +95722,19 @@ this.symbol.frequency nonsensical 2 this.left -1887685159 +1463757745 1 this.left.symbol -646946680 +757108857 1 this.left.symbol.symbol -871834823 +796684896 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.left.symbol.frequency -1 +2 1 this.left.left null @@ -95845,13 +95761,13 @@ this.left.right.right nonsensical 2 this.right -470905757 +2059904228 1 this.right.symbol -1574116 +41903949 1 this.right.symbol.symbol -247113402 +1277181601 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -95884,14 +95800,14 @@ this.right.right.right nonsensical 2 return -3 +4 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -759 +724 this -1651366663 +1576861390 1 this.symbol null @@ -95906,13 +95822,13 @@ this.symbol.frequency nonsensical 2 this.left -1904504032 +1307096070 1 this.left.symbol -2090220954 +901506536 1 this.left.symbol.symbol -1196464545 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -95945,13 +95861,13 @@ this.left.right.right nonsensical 2 this.right -755507289 +1597462040 1 this.right.symbol -42217019 +557041912 1 this.right.symbol.symbol -1806076252 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -95986,15 +95902,15 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -760 +725 this -1904504032 +1307096070 1 this.symbol -2090220954 +901506536 1 this.symbol.symbol -1196464545 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96083,12 +95999,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -761 +726 this -2090220954 +901506536 1 this.symbol -1196464545 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -96099,12 +96015,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -761 +726 this -2090220954 +901506536 1 this.symbol -1196464545 +2109957412 1 this.symbol.getClass().getName() "java.lang.Character" @@ -96118,15 +96034,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -760 +725 this -1904504032 +1307096070 1 this.symbol -2090220954 +901506536 1 this.symbol.symbol -1196464545 +2109957412 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96218,15 +96134,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -762 +727 this -755507289 +1597462040 1 this.symbol -42217019 +557041912 1 this.symbol.symbol -1806076252 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96315,12 +96231,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -763 +728 this -42217019 +557041912 1 this.symbol -1806076252 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -96331,12 +96247,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -763 +728 this -42217019 +557041912 1 this.symbol -1806076252 +1239731077 1 this.symbol.getClass().getName() "java.lang.Character" @@ -96350,15 +96266,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -762 +727 this -755507289 +1597462040 1 this.symbol -42217019 +557041912 1 this.symbol.symbol -1806076252 +1239731077 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96450,9 +96366,9 @@ return six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -759 +724 this -1651366663 +1576861390 1 this.symbol null @@ -96467,13 +96383,13 @@ this.symbol.frequency nonsensical 2 this.left -1904504032 +1307096070 1 this.left.symbol -2090220954 +901506536 1 this.left.symbol.symbol -1196464545 +2109957412 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96506,13 +96422,13 @@ this.left.right.right nonsensical 2 this.right -755507289 +1597462040 1 this.right.symbol -42217019 +557041912 1 this.right.symbol.symbol -1806076252 +1239731077 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96548,11 +96464,148 @@ return 2 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanCodec.extractSmallest(java.util.List):::EXIT77 +this_invocation_nonce +665 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 1355316001 600746945 1566502717 1824835605 981661423] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 +return +1576861390 +1 +return.symbol +null +1 +return.symbol.symbol +nonsensical +2 +return.symbol.symbol.getClass().getName() +nonsensical +2 +return.symbol.frequency +nonsensical +2 +return.left +1307096070 +1 +return.left.symbol +901506536 +1 +return.left.left +null +1 +return.left.right +null +1 +return.right +1597462040 +1 +return.right.symbol +557041912 +1 +return.right.left +null +1 +return.right.right +null +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::ENTER +this_invocation_nonce +729 +left +1836643189 +1 +left.symbol +1209271652 +1 +left.symbol.symbol +488970385 +1 +left.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +left.symbol.frequency +2 +1 +left.left +null +1 +left.left.symbol +nonsensical +2 +left.left.left +nonsensical +2 +left.left.right +nonsensical +2 +left.right +null +1 +left.right.symbol +nonsensical +2 +left.right.left +nonsensical +2 +left.right.right +nonsensical +2 +right +1576861390 +1 +right.symbol +null +1 +right.symbol.symbol +nonsensical +2 +right.symbol.symbol.getClass().getName() +nonsensical +2 +right.symbol.frequency +nonsensical +2 +right.left +1307096070 +1 +right.left.symbol +901506536 +1 +right.left.left +null +1 +right.left.right +null +1 +right.right +1597462040 +1 +right.right.symbol +557041912 +1 +right.right.left +null +1 +right.right.right +null +1 + +six170.HuffmanTree.HuffmanTree(six170.HuffmanTree, six170.HuffmanTree):::EXIT43 this_invocation_nonce -764 +729 this -1801601815 +269468037 1 this.symbol null @@ -96567,13 +96620,13 @@ this.symbol.frequency nonsensical 2 this.left -1502515546 +1836643189 1 this.left.symbol -1097499032 +1209271652 1 this.left.symbol.symbol -917732198 +488970385 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -96606,62 +96659,156 @@ this.left.right.right nonsensical 2 this.right -518576549 +1576861390 1 this.right.symbol -340475003 +null 1 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +1307096070 +1 +this.right.left.symbol +901506536 +1 +this.right.left.left +null +1 +this.right.left.right +null +1 +this.right.right +1597462040 +1 +this.right.right.symbol +557041912 +1 +this.right.right.left +null +1 +this.right.right.right +null +1 +left +1836643189 +1 +left.symbol +1209271652 +1 +left.symbol.symbol +488970385 +1 +left.symbol.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency +left.symbol.frequency 2 1 -this.right.left +left.left null 1 -this.right.left.symbol +left.left.symbol nonsensical 2 -this.right.left.left +left.left.left nonsensical 2 -this.right.left.right +left.left.right nonsensical 2 -this.right.right +left.right null 1 -this.right.right.symbol +left.right.symbol nonsensical 2 -this.right.right.left +left.right.left nonsensical 2 -this.right.right.right +left.right.right +nonsensical +2 +right +1576861390 +1 +right.symbol +null +1 +right.symbol.symbol nonsensical 2 +right.symbol.symbol.getClass().getName() +nonsensical +2 +right.symbol.frequency +nonsensical +2 +right.left +1307096070 +1 +right.left.symbol +901506536 +1 +right.left.left +null +1 +right.left.right +null +1 +right.right +1597462040 +1 +right.right.symbol +557041912 +1 +right.right.left +null +1 +right.right.right +null +1 + +six170.HuffmanCodec.extractSmallest(java.util.List):::ENTER +this_invocation_nonce +730 +nodeList +1144648478 +1 +nodeList[..] +[2081303229 1525262377 1837760739 1418428263 1355316001 600746945 1566502717 1824835605 981661423 269468037] +1 +nodeList[..].getClass().getName() +["six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree" "six170.HuffmanTree"] +1 +nodeList.getClass().getName() +"java.util.ArrayList" +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -765 +731 this -1502515546 +1525262377 1 this.symbol -1097499032 +1802598046 1 this.symbol.symbol -917732198 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -96744,56 +96891,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -766 +732 this -1097499032 +1802598046 1 this.symbol -917732198 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -766 +732 this -1097499032 +1802598046 1 this.symbol -917732198 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -765 +731 this -1502515546 +1525262377 1 this.symbol -1097499032 +1802598046 1 this.symbol.symbol -917732198 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -96874,26 +97021,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -767 +733 this -518576549 +2081303229 1 this.symbol -340475003 +1456208737 1 this.symbol.symbol -929186741 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -96976,56 +97123,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -768 +734 this -340475003 +1456208737 1 this.symbol -929186741 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -768 +734 this -340475003 +1456208737 1 this.symbol -929186741 +1018547642 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +5 1 return -2 +5 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -767 +733 this -518576549 +2081303229 1 this.symbol -340475003 +1456208737 1 this.symbol.symbol -929186741 +1018547642 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +5 1 this.left null @@ -97106,45 +97253,45 @@ this.right.right.right nonsensical 2 return -2 +5 1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -764 +735 this -1801601815 +1837760739 1 this.symbol -null +240650537 1 this.symbol.symbol -nonsensical -2 +659748578 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +6 +1 this.left -1502515546 +null 1 this.left.symbol -1097499032 -1 +nonsensical +2 this.left.symbol.symbol -917732198 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -97155,8 +97302,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -97167,23 +97314,23 @@ this.left.right.right nonsensical 2 this.right -518576549 +null 1 this.right.symbol -340475003 -1 +nonsensical +2 this.right.symbol.symbol -929186741 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -97194,8 +97341,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -97205,46 +97352,178 @@ nonsensical this.right.right.right nonsensical 2 + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +736 +this +240650537 +1 +this.symbol +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +736 +this +240650537 +1 +this.symbol +659748578 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +6 +1 return -4 +6 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -769 +735 this -1651366663 +1837760739 1 this.symbol -null +240650537 1 this.symbol.symbol +659748578 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" +1 +this.symbol.frequency +6 +1 +this.left +null +1 +this.left.symbol nonsensical 2 -this.symbol.symbol.getClass().getName() +this.left.symbol.symbol nonsensical 2 -this.symbol.frequency +this.left.symbol.symbol.getClass().getName() nonsensical 2 -this.left -1904504032 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.symbol +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.symbol +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.right +null 1 -this.left.symbol -2090220954 +this.right.symbol +nonsensical +2 +this.right.symbol.symbol +nonsensical +2 +this.right.symbol.symbol.getClass().getName() +nonsensical +2 +this.right.symbol.frequency +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.symbol +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.symbol +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +return +6 1 -this.left.symbol.symbol -1196464545 + +six170.HuffmanTree.frequency():::ENTER +this_invocation_nonce +737 +this +1525262377 1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" +this.symbol +1802598046 1 -this.left.symbol.frequency +this.symbol.symbol +1809787067 +1 +this.symbol.symbol.getClass().getName() +"java.lang.Character" 1 +this.symbol.frequency +3 1 -this.left.left +this.left null 1 +this.left.symbol +nonsensical +2 +this.left.symbol.symbol +nonsensical +2 +this.left.symbol.symbol.getClass().getName() +nonsensical +2 +this.left.symbol.frequency +nonsensical +2 +this.left.left +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -97255,8 +97534,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -97267,23 +97546,23 @@ this.left.right.right nonsensical 2 this.right -755507289 +null 1 this.right.symbol -42217019 -1 +nonsensical +2 this.right.symbol.symbol -1806076252 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency -1 -1 +nonsensical +2 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -97294,8 +97573,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -97306,23 +97585,58 @@ this.right.right.right nonsensical 2 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -770 +738 this -1904504032 +1802598046 1 this.symbol -2090220954 +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +738 +this +1802598046 +1 +this.symbol +1809787067 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +737 +this +1525262377 +1 +this.symbol +1802598046 1 this.symbol.symbol -1196464545 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -97402,59 +97716,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -771 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -771 -this -2090220954 -1 -this.symbol -1196464545 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -770 +739 this -1904504032 +1418428263 1 this.symbol -2090220954 +2088051243 1 this.symbol.symbol -1196464545 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -97534,27 +97816,59 @@ nonsensical this.right.right.right nonsensical 2 -return + +six170.HuffmanSymbol.frequency():::ENTER +this_invocation_nonce +740 +this +2088051243 +1 +this.symbol +483422889 1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -772 +740 this -755507289 +2088051243 1 this.symbol -42217019 +483422889 +1 +this.symbol.getClass().getName() +"java.lang.Character" +1 +this.frequency +3 +1 +return +3 +1 + +six170.HuffmanTree.frequency():::EXIT51 +this_invocation_nonce +739 +this +1418428263 +1 +this.symbol +2088051243 1 this.symbol.symbol -1806076252 +483422889 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -97634,59 +97948,27 @@ nonsensical this.right.right.right nonsensical 2 - -six170.HuffmanSymbol.frequency():::ENTER -this_invocation_nonce -773 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -773 -this -42217019 -1 -this.symbol -1806076252 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 return -1 +3 1 -six170.HuffmanTree.frequency():::EXIT51 +six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -772 +741 this -755507289 +1525262377 1 this.symbol -42217019 +1802598046 1 this.symbol.symbol -1806076252 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +3 1 this.left null @@ -97766,146 +98048,78 @@ nonsensical this.right.right.right nonsensical 2 -return -1 -1 -six170.HuffmanTree.frequency():::EXIT53 +six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -769 +742 this -1651366663 +1802598046 1 this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1904504032 -1 -this.left.symbol -2090220954 +1809787067 1 -this.left.symbol.symbol -1196464545 -1 -this.left.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.left.symbol.frequency -1 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -755507289 +this.frequency +3 1 -this.right.symbol -42217019 + +six170.HuffmanSymbol.frequency():::EXIT39 +this_invocation_nonce +742 +this +1802598046 1 -this.right.symbol.symbol -1806076252 +this.symbol +1809787067 1 -this.right.symbol.symbol.getClass().getName() +this.symbol.getClass().getName() "java.lang.Character" 1 -this.right.symbol.frequency -1 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null +this.frequency +3 1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 return -2 +3 1 -six170.HuffmanTree.frequency():::ENTER +six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -774 +741 this -2282005 +1525262377 1 this.symbol -null +1802598046 1 this.symbol.symbol -nonsensical -2 +1809787067 +1 this.symbol.symbol.getClass().getName() -nonsensical -2 +"java.lang.Character" +1 this.symbol.frequency -nonsensical -2 +3 +1 this.left -1227419517 +null 1 this.left.symbol -1745169531 -1 +nonsensical +2 this.left.symbol.symbol -1466939813 -1 +nonsensical +2 this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.left.symbol.frequency +nonsensical 2 -1 this.left.left -null -1 +nonsensical +2 this.left.left.symbol nonsensical 2 @@ -97916,8 +98130,8 @@ this.left.left.right nonsensical 2 this.left.right -null -1 +nonsensical +2 this.left.right.symbol nonsensical 2 @@ -97928,23 +98142,23 @@ this.left.right.right nonsensical 2 this.right -853552605 +null 1 this.right.symbol -1180110925 -1 +nonsensical +2 this.right.symbol.symbol -1750434854 -1 +nonsensical +2 this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 +nonsensical +2 this.right.symbol.frequency +nonsensical 2 -1 this.right.left -null -1 +nonsensical +2 this.right.left.symbol nonsensical 2 @@ -97955,8 +98169,8 @@ this.right.left.right nonsensical 2 this.right.right -null -1 +nonsensical +2 this.right.right.symbol nonsensical 2 @@ -97966,24 +98180,27 @@ nonsensical this.right.right.right nonsensical 2 +return +3 +1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -775 +743 this -1227419517 +1355316001 1 this.symbol -1745169531 +2083562754 1 this.symbol.symbol -1466939813 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -98066,56 +98283,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -776 +744 this -1745169531 +2083562754 1 this.symbol -1466939813 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -776 +744 this -1745169531 +2083562754 1 this.symbol -1466939813 +93122545 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -775 +743 this -1227419517 +1355316001 1 this.symbol -1745169531 +2083562754 1 this.symbol.symbol -1466939813 +93122545 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -98196,26 +98413,26 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -777 +745 this -853552605 +1525262377 1 this.symbol -1180110925 +1802598046 1 this.symbol.symbol -1750434854 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -98298,56 +98515,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -778 +746 this -1180110925 +1802598046 1 this.symbol -1750434854 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -778 +746 this -1180110925 +1802598046 1 this.symbol -1750434854 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -777 +745 this -853552605 +1525262377 1 this.symbol -1180110925 +1802598046 1 this.symbol.symbol -1750434854 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -98428,114 +98645,14 @@ this.right.right.right nonsensical 2 return -2 -1 - -six170.HuffmanTree.frequency():::EXIT53 -this_invocation_nonce -774 -this -2282005 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -1227419517 -1 -this.left.symbol -1745169531 -1 -this.left.symbol.symbol -1466939813 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -2 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -853552605 -1 -this.right.symbol -1180110925 -1 -this.right.symbol.symbol -1750434854 -1 -this.right.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.right.symbol.frequency -2 -1 -this.right.left -null -1 -this.right.left.symbol -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.right -null -1 -this.right.right.symbol -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -return -4 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -779 +747 this -1651366663 +600746945 1 this.symbol null @@ -98550,13 +98667,13 @@ this.symbol.frequency nonsensical 2 this.left -1904504032 +403716510 1 this.left.symbol -2090220954 +985922955 1 this.left.symbol.symbol -1196464545 +1134712904 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -98589,13 +98706,13 @@ this.left.right.right nonsensical 2 this.right -755507289 +853119666 1 this.right.symbol -42217019 +1784662007 1 this.right.symbol.symbol -1806076252 +1435804085 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -98630,15 +98747,15 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -780 +748 this -1904504032 +403716510 1 this.symbol -2090220954 +985922955 1 this.symbol.symbol -1196464545 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -98727,12 +98844,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -781 +749 this -2090220954 +985922955 1 this.symbol -1196464545 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" @@ -98743,12 +98860,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -781 +749 this -2090220954 +985922955 1 this.symbol -1196464545 +1134712904 1 this.symbol.getClass().getName() "java.lang.Character" @@ -98762,15 +98879,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -780 +748 this -1904504032 +403716510 1 this.symbol -2090220954 +985922955 1 this.symbol.symbol -1196464545 +1134712904 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -98862,15 +98979,15 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -782 +750 this -755507289 +853119666 1 this.symbol -42217019 +1784662007 1 this.symbol.symbol -1806076252 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -98959,12 +99076,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -783 +751 this -42217019 +1784662007 1 this.symbol -1806076252 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" @@ -98975,12 +99092,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -783 +751 this -42217019 +1784662007 1 this.symbol -1806076252 +1435804085 1 this.symbol.getClass().getName() "java.lang.Character" @@ -98994,15 +99111,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -782 +750 this -755507289 +853119666 1 this.symbol -42217019 +1784662007 1 this.symbol.symbol -1806076252 +1435804085 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -99094,9 +99211,9 @@ return six170.HuffmanTree.frequency():::EXIT53 this_invocation_nonce -779 +747 this -1651366663 +600746945 1 this.symbol null @@ -99111,13 +99228,13 @@ this.symbol.frequency nonsensical 2 this.left -1904504032 +403716510 1 this.left.symbol -2090220954 +985922955 1 this.left.symbol.symbol -1196464545 +1134712904 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -99150,13 +99267,13 @@ this.left.right.right nonsensical 2 this.right -755507289 +853119666 1 this.right.symbol -42217019 +1784662007 1 this.right.symbol.symbol -1806076252 +1435804085 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" @@ -99194,118 +99311,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -784 -this -1846436036 -1 -this.symbol -null -1 -this.symbol.symbol -nonsensical -2 -this.symbol.symbol.getClass().getName() -nonsensical -2 -this.symbol.frequency -nonsensical -2 -this.left -467870275 -1 -this.left.symbol -1799775865 -1 -this.left.symbol.symbol -2112836430 -1 -this.left.symbol.symbol.getClass().getName() -"java.lang.Character" -1 -this.left.symbol.frequency -2 -1 -this.left.left -null -1 -this.left.left.symbol -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.right -null -1 -this.left.right.symbol -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.right -1128590881 -1 -this.right.symbol -null -1 -this.right.symbol.symbol -nonsensical -2 -this.right.symbol.symbol.getClass().getName() -nonsensical -2 -this.right.symbol.frequency -nonsensical -2 -this.right.left -1987411885 -1 -this.right.left.symbol -202918529 -1 -this.right.left.left -null -1 -this.right.left.right -null -1 -this.right.right -239304688 -1 -this.right.right.symbol -1964711431 -1 -this.right.right.left -null -1 -this.right.right.right -null -1 - -six170.HuffmanTree.frequency():::ENTER -this_invocation_nonce -785 +752 this -467870275 +1525262377 1 this.symbol -1799775865 +1802598046 1 this.symbol.symbol -2112836430 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -99388,56 +99408,56 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -786 +753 this -1799775865 +1802598046 1 this.symbol -2112836430 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -786 +753 this -1799775865 +1802598046 1 this.symbol -2112836430 +1809787067 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -2 +3 1 return -2 +3 1 six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -785 +752 this -467870275 +1525262377 1 this.symbol -1799775865 +1802598046 1 this.symbol.symbol -2112836430 +1809787067 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -2 +3 1 this.left null @@ -99518,14 +99538,14 @@ this.right.right.right nonsensical 2 return -2 +3 1 six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -787 +754 this -1128590881 +1566502717 1 this.symbol null @@ -99540,13 +99560,13 @@ this.symbol.frequency nonsensical 2 this.left -1987411885 +559670971 1 this.left.symbol -202918529 +509886383 1 this.left.symbol.symbol -1297548602 +997110508 1 this.left.symbol.symbol.getClass().getName() "java.lang.Character" @@ -99579,19 +99599,19 @@ this.left.right.right nonsensical 2 this.right -239304688 +1014328909 1 this.right.symbol -1964711431 +1513712028 1 this.right.symbol.symbol -756278511 +747464370 1 this.right.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.right.symbol.frequency -1 +2 1 this.right.left null @@ -99620,15 +99640,15 @@ nonsensical six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -788 +755 this -1987411885 +559670971 1 this.symbol -202918529 +509886383 1 this.symbol.symbol -1297548602 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -99717,12 +99737,12 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -789 +756 this -202918529 +509886383 1 this.symbol -1297548602 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" @@ -99733,12 +99753,12 @@ this.frequency six170.HuffmanSymbol.frequency():::EXIT39 this_invocation_nonce -789 +756 this -202918529 +509886383 1 this.symbol -1297548602 +997110508 1 this.symbol.getClass().getName() "java.lang.Character" @@ -99752,15 +99772,15 @@ return six170.HuffmanTree.frequency():::EXIT51 this_invocation_nonce -788 +755 this -1987411885 +559670971 1 this.symbol -202918529 +509886383 1 this.symbol.symbol -1297548602 +997110508 1 this.symbol.symbol.getClass().getName() "java.lang.Character" @@ -99852,21 +99872,21 @@ return six170.HuffmanTree.frequency():::ENTER this_invocation_nonce -790 +757 this -239304688 +1014328909 1 this.symbol -1964711431 +1513712028 1 this.symbol.symbol -756278511 +747464370 1 this.symbol.symbol.getClass().getName() "java.lang.Character" 1 this.symbol.frequency -1 +2 1 this.left null @@ -99949,36 +99969,17 @@ nonsensical six170.HuffmanSymbol.frequency():::ENTER this_invocation_nonce -791 -this -1964711431 -1 -this.symbol -756278511 -1 -this.symbol.getClass().getName() -"java.lang.Character" -1 -this.frequency -1 -1 - -six170.HuffmanSymbol.frequency():::EXIT39 -this_invocation_nonce -791 +758 this -1964711431 +1513712028 1 this.symbol -756278511 +747464370 1 this.symbol.getClass().getName() "java.lang.Character" 1 this.frequency -1 -1 -return -1 +2 1 diff --git a/tests/daikon-tests/LinkedList/LinkedList.txt-chicory.goal b/tests/daikon-tests/LinkedList/LinkedList.txt-chicory.goal index 41612f2ae9..aed90c557f 100644 --- a/tests/daikon-tests/LinkedList/LinkedList.txt-chicory.goal +++ b/tests/daikon-tests/LinkedList/LinkedList.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.LinkedList -// Declarations written Thu Jun 04 13:15:52 PDT 2015 +// Declarations written Mon Jul 31 13:01:55 PDT 2017 decl-version 2.0 var-comparability none @@ -11,10 +11,10 @@ ppt DataStructures.LinkedList.LinkedList():::EXIT37 ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -37,7 +37,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -60,7 +60,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -71,14 +71,14 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 -ppt DataStructures.LinkedList.isEmpty():::ENTER -ppt-type enter +ppt DataStructures.LinkedList.LinkedList():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -101,7 +101,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -124,7 +124,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -134,15 +134,27 @@ variable this.header.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedList:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.LinkedList.isEmpty():::EXIT45 -ppt-type subexit +ppt DataStructures.LinkedList.isEmpty():::ENTER +ppt-type enter parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -165,7 +177,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -188,7 +200,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -198,20 +210,15 @@ variable this.header.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedList:::OBJECT 1 -variable return - var-kind return - dec-type boolean - rep-type boolean - comparability 22 -ppt DataStructures.LinkedList.makeEmpty():::ENTER -ppt-type enter +ppt DataStructures.LinkedList.isEmpty():::EXIT45 +ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -234,7 +241,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -257,7 +264,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -267,15 +274,20 @@ variable this.header.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedList:::OBJECT 1 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 -ppt DataStructures.LinkedList.makeEmpty():::EXIT54 +ppt DataStructures.LinkedList.isEmpty():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -298,7 +310,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -321,7 +333,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -331,15 +343,27 @@ variable this.header.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedList:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.LinkedList.zeroth():::ENTER +ppt DataStructures.LinkedList.makeEmpty():::ENTER ppt-type enter parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -362,7 +386,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -385,7 +409,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -396,14 +420,14 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 -ppt DataStructures.LinkedList.zeroth():::EXIT62 +ppt DataStructures.LinkedList.makeEmpty():::EXIT54 ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -426,7 +450,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -449,7 +473,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -459,46 +483,91 @@ variable this.header.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedList:::OBJECT 1 -variable return - var-kind return - dec-type DataStructures.LinkedListItr + +ppt DataStructures.LinkedList.makeEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.LinkedList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedList rep-type hashcode + flags is_param non_null comparability 22 -variable return.current - var-kind field current - enclosing-var return + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable return.current.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var return.current + enclosing-var this.header dec-type java.lang.Object rep-type hashcode comparability 22 -variable return.current.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.current.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args return.current.element - flags synthetic classname + function-args this.header.element + flags synthetic classname non_null comparability 22 -variable return.current.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next var-kind field next - enclosing-var return.current + enclosing-var this.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element + var-kind field element + enclosing-var this.header.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next + var-kind field next + enclosing-var this.header.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.LinkedList.first():::ENTER +ppt DataStructures.LinkedList.zeroth():::ENTER ppt-type enter parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -521,7 +590,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -544,7 +613,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -555,14 +624,14 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 -ppt DataStructures.LinkedList.first():::EXIT71 +ppt DataStructures.LinkedList.zeroth():::EXIT62 ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -585,7 +654,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -608,7 +677,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -619,7 +688,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.LinkedListItr rep-type hashcode comparability 22 @@ -641,7 +710,7 @@ variable return.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.current.next var-kind field next @@ -650,14 +719,90 @@ variable return.current.next rep-type hashcode comparability 22 -ppt DataStructures.LinkedList.insert(java.lang.Object,\_DataStructures.LinkedListItr):::ENTER +ppt DataStructures.LinkedList.zeroth():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.LinkedList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next + var-kind field next + enclosing-var this.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element + var-kind field element + enclosing-var this.header.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next + var-kind field next + enclosing-var this.header.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.LinkedList.first():::ENTER ppt-type enter parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -680,7 +825,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -703,7 +848,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -713,61 +858,110 @@ variable this.header.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedList:::OBJECT 1 -variable x - var-kind variable + +ppt DataStructures.LinkedList.first():::EXIT71 +ppt-type subexit +parent parent DataStructures.LinkedList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header dec-type java.lang.Object rep-type hashcode - flags is_param comparability 22 -variable x.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args x - flags synthetic classname + function-args this.header.element + flags synthetic classname non_null comparability 22 -variable p - var-kind variable + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next + var-kind field next + enclosing-var this.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element + var-kind field element + enclosing-var this.header.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next + var-kind field next + enclosing-var this.header.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable return + var-kind return dec-type DataStructures.LinkedListItr rep-type hashcode - flags is_param comparability 22 -variable p.current +variable return.current var-kind field current - enclosing-var p + enclosing-var return dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable p.current.element +variable return.current.element var-kind field element - enclosing-var p.current + enclosing-var return.current dec-type java.lang.Object rep-type hashcode comparability 22 -variable p.current.element.getClass().getName() +variable return.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var p.current.element + enclosing-var return.current.element dec-type java.lang.Class rep-type java.lang.String - function-args p.current.element - flags synthetic classname + function-args return.current.element + flags synthetic classname non_null comparability 22 -variable p.current.next +variable return.current.next var-kind field next - enclosing-var p.current + enclosing-var return.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 -ppt DataStructures.LinkedList.insert(java.lang.Object,\_DataStructures.LinkedListItr):::EXIT83 +ppt DataStructures.LinkedList.first():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -790,7 +984,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -813,7 +1007,83 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next + var-kind field next + enclosing-var this.header.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.LinkedList.insert(java.lang.Object,\_DataStructures.LinkedListItr):::ENTER +ppt-type enter +parent parent DataStructures.LinkedList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next + var-kind field next + enclosing-var this.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element + var-kind field element + enclosing-var this.header.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.next.element + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -824,7 +1094,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -835,10 +1105,10 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable p - var-kind variable + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode flags is_param @@ -861,7 +1131,7 @@ variable p.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args p.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 variable p.current.next var-kind field next @@ -870,14 +1140,14 @@ variable p.current.next rep-type hashcode comparability 22 -ppt DataStructures.LinkedList.find(java.lang.Object):::ENTER -ppt-type enter +ppt DataStructures.LinkedList.insert(java.lang.Object,\_DataStructures.LinkedListItr):::EXIT83 +ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -900,7 +1170,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -923,7 +1193,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -934,7 +1204,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -945,17 +1215,49 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable p + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param + comparability 22 +variable p.current + var-kind field current + enclosing-var p + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable p.current.element + var-kind field element + enclosing-var p.current + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable p.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var p.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args p.current.element + flags synthetic classname non_null + comparability 22 +variable p.current.next + var-kind field next + enclosing-var p.current + dec-type DataStructures.ListNode + rep-type hashcode comparability 22 -ppt DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +ppt DataStructures.LinkedList.insert(java.lang.Object,\_DataStructures.LinkedListItr):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -978,7 +1280,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -1001,7 +1303,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -1012,7 +1314,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1023,48 +1325,61 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 -variable return - var-kind return +variable p + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode + flags is_param comparability 22 -variable return.current +variable p.current var-kind field current - enclosing-var return + enclosing-var p dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable return.current.element +variable p.current.element var-kind field element - enclosing-var return.current + enclosing-var p.current dec-type java.lang.Object rep-type hashcode comparability 22 -variable return.current.element.getClass().getName() +variable p.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.current.element + enclosing-var p.current.element dec-type java.lang.Class rep-type java.lang.String - function-args return.current.element - flags synthetic classname + function-args p.current.element + flags synthetic classname non_null comparability 22 -variable return.current.next +variable p.current.next var-kind field next - enclosing-var return.current + enclosing-var p.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +ppt DataStructures.LinkedList.find(java.lang.Object):::ENTER ppt-type enter parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -1087,7 +1402,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -1110,7 +1425,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -1121,7 +1436,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1132,17 +1447,17 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +ppt DataStructures.LinkedList.find(java.lang.Object):::EXIT97 ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -1165,7 +1480,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -1188,7 +1503,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -1199,7 +1514,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1210,10 +1525,10 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.LinkedListItr rep-type hashcode comparability 22 @@ -1235,7 +1550,7 @@ variable return.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return.current.next var-kind field next @@ -1244,14 +1559,14 @@ variable return.current.next rep-type hashcode comparability 22 -ppt DataStructures.LinkedList.remove(java.lang.Object):::ENTER -ppt-type enter +ppt DataStructures.LinkedList.find(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -1274,7 +1589,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -1297,7 +1612,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -1308,7 +1623,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1319,17 +1634,29 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 -ppt-type subexit +ppt DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +ppt-type enter parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header @@ -1352,7 +1679,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next @@ -1375,7 +1702,7 @@ variable this.header.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next @@ -1386,7 +1713,7 @@ variable this.header.next.next comparability 22 parent DataStructures.LinkedList:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1397,434 +1724,683 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -ppt-type enter -variable theList - var-kind variable +ppt DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +ppt-type subexit +parent parent DataStructures.LinkedList:::OBJECT 1 +variable this + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 -variable theList.header + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header var-kind field header - enclosing-var theList + enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable theList.header.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var theList.header + enclosing-var this.header dec-type java.lang.Object rep-type hashcode comparability 22 -variable theList.header.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var theList.header.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args theList.header.element - flags synthetic classname + function-args this.header.element + flags synthetic classname non_null comparability 22 -variable theList.header.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next var-kind field next - enclosing-var theList.header + enclosing-var this.header dec-type DataStructures.ListNode rep-type hashcode comparability 22 - -ppt DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -ppt-type subexit -variable theList - var-kind variable - dec-type DataStructures.LinkedList + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element + var-kind field element + enclosing-var this.header.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next + var-kind field next + enclosing-var this.header.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object rep-type hashcode flags is_param comparability 22 -variable theList.header - var-kind field header - enclosing-var theList +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type DataStructures.LinkedListItr + rep-type hashcode + comparability 22 +variable return.current + var-kind field current + enclosing-var return dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable theList.header.element +variable return.current.element var-kind field element - enclosing-var theList.header + enclosing-var return.current dec-type java.lang.Object rep-type hashcode comparability 22 -variable theList.header.element.getClass().getName() +variable return.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var theList.header.element + enclosing-var return.current.element dec-type java.lang.Class rep-type java.lang.String - function-args theList.header.element - flags synthetic classname + function-args return.current.element + flags synthetic classname non_null comparability 22 -variable theList.header.next +variable return.current.next var-kind field next - enclosing-var theList.header + enclosing-var return.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 -ppt DataStructures.LinkedList:::OBJECT -ppt-type object +ppt DataStructures.LinkedList.findPrevious(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header var-kind field header enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header.element var-kind field element enclosing-var this.header dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next var-kind field next enclosing-var this.header dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.element var-kind field element enclosing-var this.header.next dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.header.next.element dec-type java.lang.Class rep-type java.lang.String function-args this.header.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 variable this.header.next.next var-kind field next enclosing-var this.header.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 - -ppt DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -ppt-type enter -variable theNode - var-kind variable - dec-type DataStructures.ListNode - rep-type hashcode - flags is_param - comparability 22 -variable theNode.element - var-kind field element - enclosing-var theNode + parent DataStructures.LinkedList:::OBJECT 1 +variable x + var-kind variable dec-type java.lang.Object rep-type hashcode + flags is_param comparability 22 -variable theNode.element.getClass().getName() +variable x.getClass().getName() var-kind function getClass().getName() - enclosing-var theNode.element + enclosing-var x dec-type java.lang.Class rep-type java.lang.String - function-args theNode.element - flags synthetic classname - comparability 22 -variable theNode.next - var-kind field next - enclosing-var theNode - dec-type DataStructures.ListNode - rep-type hashcode + function-args x + flags synthetic classname non_null comparability 22 -variable theNode.next.element - var-kind field element - enclosing-var theNode.next - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable theNode.next.element.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var theNode.next.element + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args theNode.next.element - flags synthetic classname - comparability 22 -variable theNode.next.next - var-kind field next - enclosing-var theNode.next - dec-type DataStructures.ListNode - rep-type hashcode + flags synthetic classname non_null comparability 22 -ppt DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 -ppt-type subexit -parent parent DataStructures.LinkedListItr:::OBJECT 1 +ppt DataStructures.LinkedList.remove(java.lang.Object):::ENTER +ppt-type enter +parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable - dec-type DataStructures.LinkedListItr + var-kind variable + dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current - var-kind field current + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var this.current + enclosing-var this.header dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.current.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args this.current.element - flags synthetic classname + function-args this.header.element + flags synthetic classname non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next var-kind field next - enclosing-var this.current + enclosing-var this.header dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element var-kind field element - enclosing-var this.current.next + enclosing-var this.header.next dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.current.next.element + enclosing-var this.header.next.element dec-type java.lang.Class rep-type java.lang.String - function-args this.current.next.element - flags synthetic classname + function-args this.header.next.element + flags synthetic classname non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next var-kind field next - enclosing-var this.current.next - dec-type DataStructures.ListNode - rep-type hashcode - comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable theNode - var-kind variable + enclosing-var this.header.next dec-type DataStructures.ListNode rep-type hashcode - flags is_param comparability 22 -variable theNode.element - var-kind field element - enclosing-var theNode + parent DataStructures.LinkedList:::OBJECT 1 +variable x + var-kind variable dec-type java.lang.Object rep-type hashcode + flags is_param comparability 22 -variable theNode.element.getClass().getName() +variable x.getClass().getName() var-kind function getClass().getName() - enclosing-var theNode.element + enclosing-var x dec-type java.lang.Class rep-type java.lang.String - function-args theNode.element - flags synthetic classname + function-args x + flags synthetic classname non_null comparability 22 -variable theNode.next - var-kind field next - enclosing-var theNode + +ppt DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 +ppt-type subexit +parent parent DataStructures.LinkedList:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable theNode.next.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var theNode.next + enclosing-var this.header dec-type java.lang.Object rep-type hashcode comparability 22 -variable theNode.next.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var theNode.next.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args theNode.next.element - flags synthetic classname + function-args this.header.element + flags synthetic classname non_null comparability 22 -variable theNode.next.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next var-kind field next - enclosing-var theNode.next - dec-type DataStructures.ListNode - rep-type hashcode - comparability 22 - -ppt DataStructures.LinkedListItr.isPastEnd():::ENTER -ppt-type enter -parent parent DataStructures.LinkedListItr:::OBJECT 1 -variable this - var-kind variable - dec-type DataStructures.LinkedListItr - rep-type hashcode - flags is_param - comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current - var-kind field current - enclosing-var this + enclosing-var this.header dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element var-kind field element - enclosing-var this.current + enclosing-var this.header.next dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.current.element + enclosing-var this.header.next.element dec-type java.lang.Class rep-type java.lang.String - function-args this.current.element - flags synthetic classname + function-args this.header.next.element + flags synthetic classname non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next var-kind field next - enclosing-var this.current + enclosing-var this.header.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.element - var-kind field element - enclosing-var this.current.next + parent DataStructures.LinkedList:::OBJECT 1 +variable x + var-kind variable dec-type java.lang.Object rep-type hashcode + flags is_param comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.element.getClass().getName() +variable x.getClass().getName() var-kind function getClass().getName() - enclosing-var this.current.next.element + enclosing-var x dec-type java.lang.Class rep-type java.lang.String - function-args this.current.next.element - flags synthetic classname - comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.next - var-kind field next - enclosing-var this.current.next - dec-type DataStructures.ListNode - rep-type hashcode + function-args x + flags synthetic classname non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -ppt DataStructures.LinkedListItr.isPastEnd():::EXIT35 +ppt DataStructures.LinkedList.remove(java.lang.Object):::EXCEPTIONUNCAUGHT ppt-type subexit -parent parent DataStructures.LinkedListItr:::OBJECT 1 +parent parent DataStructures.LinkedList:::OBJECT 1 variable this - var-kind variable - dec-type DataStructures.LinkedListItr + var-kind variable + dec-type DataStructures.LinkedList rep-type hashcode - flags is_param + flags is_param non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current - var-kind field current + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header + var-kind field header enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var this.current + enclosing-var this.header dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.current.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args this.current.element - flags synthetic classname + function-args this.header.element + flags synthetic classname non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next var-kind field next - enclosing-var this.current + enclosing-var this.header dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.element + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element var-kind field element - enclosing-var this.current.next + enclosing-var this.header.next dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.element.getClass().getName() + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.current.next.element + enclosing-var this.header.next.element dec-type java.lang.Class rep-type java.lang.String - function-args this.current.next.element - flags synthetic classname + function-args this.header.next.element + flags synthetic classname non_null comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable this.current.next.next + parent DataStructures.LinkedList:::OBJECT 1 +variable this.header.next.next var-kind field next - enclosing-var this.current.next + enclosing-var this.header.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.LinkedListItr:::OBJECT 1 -variable return - var-kind return - dec-type boolean - rep-type boolean + parent DataStructures.LinkedList:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt DataStructures.LinkedListItr.retrieve():::ENTER +ppt DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER +ppt-type enter +variable theList + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param + comparability 22 +variable theList.header + var-kind field header + enclosing-var theList + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable theList.header.element + var-kind field element + enclosing-var theList.header + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theList.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theList.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theList.header.element + flags synthetic classname non_null + comparability 22 +variable theList.header.next + var-kind field next + enclosing-var theList.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + +ppt DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +ppt-type subexit +variable theList + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param + comparability 22 +variable theList.header + var-kind field header + enclosing-var theList + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable theList.header.element + var-kind field element + enclosing-var theList.header + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theList.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theList.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theList.header.element + flags synthetic classname non_null + comparability 22 +variable theList.header.next + var-kind field next + enclosing-var theList.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + +ppt DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable theList + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param + comparability 22 +variable theList.header + var-kind field header + enclosing-var theList + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable theList.header.element + var-kind field element + enclosing-var theList.header + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theList.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theList.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theList.header.element + flags synthetic classname non_null + comparability 22 +variable theList.header.next + var-kind field next + enclosing-var theList.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.LinkedList:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type DataStructures.LinkedList + rep-type hashcode + flags is_param non_null + comparability 22 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags synthetic classname non_null + comparability 22 +variable this.header.next + var-kind field next + enclosing-var this.header + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable this.header.next.element + var-kind field element + enclosing-var this.header.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.header.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.next.element + flags synthetic classname non_null + comparability 22 +variable this.header.next.next + var-kind field next + enclosing-var this.header.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + +ppt DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER ppt-type enter +variable theNode + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param + comparability 22 +variable theNode.element + var-kind field element + enclosing-var theNode + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theNode.element + flags synthetic classname non_null + comparability 22 +variable theNode.next + var-kind field next + enclosing-var theNode + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable theNode.next.element + var-kind field element + enclosing-var theNode.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theNode.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theNode.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theNode.next.element + flags synthetic classname non_null + comparability 22 +variable theNode.next.next + var-kind field next + enclosing-var theNode.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + +ppt DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +ppt-type subexit parent parent DataStructures.LinkedListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current @@ -1847,7 +2423,7 @@ variable this.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next @@ -1870,7 +2446,7 @@ variable this.current.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.next @@ -1880,15 +2456,61 @@ variable this.current.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 +variable theNode + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param + comparability 22 +variable theNode.element + var-kind field element + enclosing-var theNode + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theNode.element + flags synthetic classname non_null + comparability 22 +variable theNode.next + var-kind field next + enclosing-var theNode + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable theNode.next.element + var-kind field element + enclosing-var theNode.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theNode.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theNode.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theNode.next.element + flags synthetic classname non_null + comparability 22 +variable theNode.next.next + var-kind field next + enclosing-var theNode.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 -ppt DataStructures.LinkedListItr.retrieve():::EXIT45 +ppt DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.LinkedListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current @@ -1911,7 +2533,7 @@ variable this.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next @@ -1934,7 +2556,7 @@ variable this.current.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.next @@ -1944,28 +2566,73 @@ variable this.current.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 -variable return - var-kind return +variable theNode + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param + comparability 22 +variable theNode.element + var-kind field element + enclosing-var theNode dec-type java.lang.Object rep-type hashcode comparability 22 -variable return.getClass().getName() +variable theNode.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var theNode.element dec-type java.lang.Class rep-type java.lang.String - function-args return - flags synthetic classname + function-args theNode.element + flags synthetic classname non_null + comparability 22 +variable theNode.next + var-kind field next + enclosing-var theNode + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable theNode.next.element + var-kind field element + enclosing-var theNode.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable theNode.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var theNode.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args theNode.next.element + flags synthetic classname non_null + comparability 22 +variable theNode.next.next + var-kind field next + enclosing-var theNode.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt DataStructures.LinkedListItr.advance():::ENTER +ppt DataStructures.LinkedListItr.isPastEnd():::ENTER ppt-type enter parent parent DataStructures.LinkedListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current @@ -1988,7 +2655,7 @@ variable this.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next @@ -2011,7 +2678,7 @@ variable this.current.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.next @@ -2022,14 +2689,14 @@ variable this.current.next.next comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 -ppt DataStructures.LinkedListItr.advance():::EXIT56 +ppt DataStructures.LinkedListItr.isPastEnd():::EXIT35 ppt-type subexit parent parent DataStructures.LinkedListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current @@ -2052,7 +2719,7 @@ variable this.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next @@ -2075,7 +2742,7 @@ variable this.current.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.current.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.next @@ -2085,245 +2752,684 @@ variable this.current.next.next rep-type hashcode comparability 22 parent DataStructures.LinkedListItr:::OBJECT 1 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 -ppt DataStructures.LinkedListItr:::OBJECT -ppt-type object +ppt DataStructures.LinkedListItr.isPastEnd():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.LinkedListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.LinkedListItr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current var-kind field current enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.element var-kind field element enclosing-var this.current dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.current.element dec-type java.lang.Class rep-type java.lang.String function-args this.current.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next var-kind field next enclosing-var this.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.element var-kind field element enclosing-var this.current.next dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.current.next.element dec-type java.lang.Class rep-type java.lang.String function-args this.current.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 variable this.current.next.next var-kind field next enclosing-var this.current.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 - -ppt DataStructures.ListNode.ListNode(java.lang.Object):::ENTER -ppt-type enter -variable theElement - var-kind variable - dec-type java.lang.Object + parent DataStructures.LinkedListItr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param comparability 22 -variable theElement.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 -ppt-type subexit -parent parent DataStructures.ListNode:::OBJECT 1 +ppt DataStructures.LinkedListItr.retrieve():::ENTER +ppt-type enter +parent parent DataStructures.LinkedListItr:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this dec-type DataStructures.ListNode rep-type hashcode - flags is_param comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.element + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element var-kind field element - enclosing-var this + enclosing-var this.current dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.element.getClass().getName() + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.element + enclosing-var this.current.element dec-type java.lang.Class rep-type java.lang.String - function-args this.element - flags synthetic classname + function-args this.current.element + flags synthetic classname non_null comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next var-kind field next - enclosing-var this + enclosing-var this.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next.element + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element var-kind field element - enclosing-var this.next + enclosing-var this.current.next dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next.element.getClass().getName() + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.next.element + enclosing-var this.current.next.element dec-type java.lang.Class rep-type java.lang.String - function-args this.next.element - flags synthetic classname + function-args this.current.next.element + flags synthetic classname non_null comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next.next + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.next var-kind field next - enclosing-var this.next + enclosing-var this.current.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next.next.element + parent DataStructures.LinkedListItr:::OBJECT 1 + +ppt DataStructures.LinkedListItr.retrieve():::EXIT45 +ppt-type subexit +parent parent DataStructures.LinkedListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element var-kind field element - enclosing-var this.next.next + enclosing-var this.current dec-type java.lang.Object rep-type hashcode comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next.next.element.getClass().getName() + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.next.next.element + enclosing-var this.current.element dec-type java.lang.Class rep-type java.lang.String - function-args this.next.next.element - flags synthetic classname + function-args this.current.element + flags synthetic classname non_null comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable this.next.next.next + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next var-kind field next - enclosing-var this.next.next + enclosing-var this.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 - parent DataStructures.ListNode:::OBJECT 1 -variable theElement - var-kind variable + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element + var-kind field element + enclosing-var this.current.next dec-type java.lang.Object rep-type hashcode - flags is_param comparability 22 -variable theElement.getClass().getName() + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var this.current.next.element dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags synthetic classname + function-args this.current.next.element + flags synthetic classname non_null comparability 22 - -ppt DataStructures.ListNode.ListNode(java.lang.Object,\_DataStructures.ListNode):::ENTER -ppt-type enter -variable theElement - var-kind variable + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.next + var-kind field next + enclosing-var this.current.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable return + var-kind return dec-type java.lang.Object rep-type hashcode - flags is_param comparability 22 -variable theElement.getClass().getName() +variable return.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var return dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags synthetic classname + function-args return + flags synthetic classname non_null comparability 22 -variable n - var-kind variable + +ppt DataStructures.LinkedListItr.retrieve():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.LinkedListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this dec-type DataStructures.ListNode rep-type hashcode - flags is_param comparability 22 -variable n.element + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element var-kind field element - enclosing-var n + enclosing-var this.current dec-type java.lang.Object rep-type hashcode comparability 22 -variable n.element.getClass().getName() + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var n.element + enclosing-var this.current.element dec-type java.lang.Class rep-type java.lang.String - function-args n.element - flags synthetic classname + function-args this.current.element + flags synthetic classname non_null comparability 22 -variable n.next + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next var-kind field next - enclosing-var n + enclosing-var this.current dec-type DataStructures.ListNode rep-type hashcode comparability 22 -variable n.next.element + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element var-kind field element - enclosing-var n.next + enclosing-var this.current.next dec-type java.lang.Object rep-type hashcode comparability 22 -variable n.next.element.getClass().getName() + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element.getClass().getName() var-kind function getClass().getName() - enclosing-var n.next.element + enclosing-var this.current.next.element dec-type java.lang.Class rep-type java.lang.String - function-args n.next.element - flags synthetic classname + function-args this.current.next.element + flags synthetic classname non_null comparability 22 -variable n.next.next + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.next var-kind field next - enclosing-var n.next + enclosing-var this.current.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.ListNode.ListNode(java.lang.Object,\_DataStructures.ListNode):::EXIT19 +ppt DataStructures.LinkedListItr.advance():::ENTER +ppt-type enter +parent parent DataStructures.LinkedListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element + var-kind field element + enclosing-var this.current + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next + var-kind field next + enclosing-var this.current + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element + var-kind field element + enclosing-var this.current.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.next + var-kind field next + enclosing-var this.current.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 + +ppt DataStructures.LinkedListItr.advance():::EXIT56 +ppt-type subexit +parent parent DataStructures.LinkedListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element + var-kind field element + enclosing-var this.current + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next + var-kind field next + enclosing-var this.current + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element + var-kind field element + enclosing-var this.current.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.next + var-kind field next + enclosing-var this.current.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 + +ppt DataStructures.LinkedListItr.advance():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.LinkedListItr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current + var-kind field current + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element + var-kind field element + enclosing-var this.current + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next + var-kind field next + enclosing-var this.current + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element + var-kind field element + enclosing-var this.current.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable this.current.next.next + var-kind field next + enclosing-var this.current.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.LinkedListItr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.LinkedListItr:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type DataStructures.LinkedListItr + rep-type hashcode + flags is_param non_null + comparability 22 +variable this.current + var-kind field current + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable this.current.element + var-kind field element + enclosing-var this.current + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.element + flags synthetic classname non_null + comparability 22 +variable this.current.next + var-kind field next + enclosing-var this.current + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable this.current.next.element + var-kind field element + enclosing-var this.current.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.current.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.current.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.current.next.element + flags synthetic classname non_null + comparability 22 +variable this.current.next.next + var-kind field next + enclosing-var this.current.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + +ppt DataStructures.ListNode.ListNode(java.lang.Object):::ENTER +ppt-type enter +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 ppt-type subexit parent parent DataStructures.ListNode:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next + var-kind field next + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.element + var-kind field element + enclosing-var this.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next + var-kind field next + enclosing-var this.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next.element + var-kind field element + enclosing-var this.next.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.next.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.next.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next.next + var-kind field next + enclosing-var this.next.next dec-type DataStructures.ListNode rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode flags is_param comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.ListNode.ListNode(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.ListNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.ListNode:::OBJECT 1 variable this.element var-kind field element @@ -2338,7 +3444,7 @@ variable this.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.ListNode:::OBJECT 1 variable this.next @@ -2361,7 +3467,7 @@ variable this.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.ListNode:::OBJECT 1 variable this.next.next @@ -2384,7 +3490,7 @@ variable this.next.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.next.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.ListNode:::OBJECT 1 variable this.next.next.next @@ -2395,7 +3501,36 @@ variable this.next.next.next comparability 22 parent DataStructures.ListNode:::OBJECT 1 variable theElement - var-kind variable + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.ListNode.ListNode(java.lang.Object,\_DataStructures.ListNode):::ENTER +ppt-type enter +variable theElement + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -2406,10 +3541,10 @@ variable theElement.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args theElement - flags synthetic classname + flags synthetic classname non_null comparability 22 variable n - var-kind variable + var-kind variable dec-type DataStructures.ListNode rep-type hashcode flags is_param @@ -2426,7 +3561,7 @@ variable n.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args n.element - flags synthetic classname + flags synthetic classname non_null comparability 22 variable n.next var-kind field next @@ -2446,7 +3581,7 @@ variable n.next.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args n.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 variable n.next.next var-kind field next @@ -2455,147 +3590,439 @@ variable n.next.next rep-type hashcode comparability 22 -ppt DataStructures.ListNode:::OBJECT -ppt-type object +ppt DataStructures.ListNode.ListNode(java.lang.Object,\_DataStructures.ListNode):::EXIT19 +ppt-type subexit +parent parent DataStructures.ListNode:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.ListNode rep-type hashcode - flags is_param + flags is_param non_null comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.element var-kind field element enclosing-var this dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.element dec-type java.lang.Class rep-type java.lang.String function-args this.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next var-kind field next enclosing-var this dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next.element var-kind field element enclosing-var this.next dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.next.element dec-type java.lang.Class rep-type java.lang.String function-args this.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next.next var-kind field next enclosing-var this.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next.next.element var-kind field element enclosing-var this.next.next dec-type java.lang.Object rep-type hashcode comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next.next.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.next.next.element dec-type java.lang.Class rep-type java.lang.String function-args this.next.next.element - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent DataStructures.ListNode:::OBJECT 1 variable this.next.next.next var-kind field next enclosing-var this.next.next dec-type DataStructures.ListNode rep-type hashcode comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags synthetic classname non_null + comparability 22 +variable n + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param + comparability 22 +variable n.element + var-kind field element + enclosing-var n + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable n.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var n.element + dec-type java.lang.Class + rep-type java.lang.String + function-args n.element + flags synthetic classname non_null + comparability 22 +variable n.next + var-kind field next + enclosing-var n + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable n.next.element + var-kind field element + enclosing-var n.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable n.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var n.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args n.next.element + flags synthetic classname non_null + comparability 22 +variable n.next.next + var-kind field next + enclosing-var n.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 -DataStructures.LinkedList.LinkedList():::ENTER -this_invocation_nonce -0 - -DataStructures.ListNode.ListNode(java.lang.Object):::ENTER -this_invocation_nonce -1 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -2 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 -this_invocation_nonce -2 -this -1409829770 -1 -this.element -null -1 -this.element.getClass().getName() -nonsensical -2 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 +ppt DataStructures.ListNode.ListNode(java.lang.Object,\_DataStructures.ListNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.ListNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next + var-kind field next + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.element + var-kind field element + enclosing-var this.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next + var-kind field next + enclosing-var this.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next.element + var-kind field element + enclosing-var this.next.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.next.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.next.next.element + flags synthetic classname non_null + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable this.next.next.next + var-kind field next + enclosing-var this.next.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + parent DataStructures.ListNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags synthetic classname non_null + comparability 22 +variable n + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param + comparability 22 +variable n.element + var-kind field element + enclosing-var n + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable n.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var n.element + dec-type java.lang.Class + rep-type java.lang.String + function-args n.element + flags synthetic classname non_null + comparability 22 +variable n.next + var-kind field next + enclosing-var n + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable n.next.element + var-kind field element + enclosing-var n.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable n.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var n.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args n.next.element + flags synthetic classname non_null + comparability 22 +variable n.next.next + var-kind field next + enclosing-var n.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.ListNode:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type DataStructures.ListNode + rep-type hashcode + flags is_param non_null + comparability 22 +variable this.element + var-kind field element + enclosing-var this + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags synthetic classname non_null + comparability 22 +variable this.next + var-kind field next + enclosing-var this + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable this.next.element + var-kind field element + enclosing-var this.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.next.element + flags synthetic classname non_null + comparability 22 +variable this.next.next + var-kind field next + enclosing-var this.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 +variable this.next.next.element + var-kind field element + enclosing-var this.next.next + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable this.next.next.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.next.next.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.next.next.element + flags synthetic classname non_null + comparability 22 +variable this.next.next.next + var-kind field next + enclosing-var this.next.next + dec-type DataStructures.ListNode + rep-type hashcode + comparability 22 + +DataStructures.LinkedList.LinkedList():::ENTER +this_invocation_nonce +0 + +DataStructures.ListNode.ListNode(java.lang.Object):::ENTER +this_invocation_nonce +1 +theElement +null +1 +theElement.getClass().getName() +nonsensical +2 + +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER +this_invocation_nonce +2 +theElement +null +1 +theElement.getClass().getName() +nonsensical +2 +n +null +1 +n.element +nonsensical +2 +n.element.getClass().getName() +nonsensical +2 +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next +nonsensical +2 + +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +this_invocation_nonce +2 +this +785992331 +1 +this.element +null +1 +this.element.getClass().getName() +nonsensical +2 +this.next +null +1 +this.next.element +nonsensical +2 +this.next.element.getClass().getName() +nonsensical +2 +this.next.next +nonsensical +2 +this.next.next.element +nonsensical +2 this.next.next.element.getClass().getName() nonsensical 2 @@ -2634,7 +4061,7 @@ DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 this_invocation_nonce 1 this -1409829770 +785992331 1 this.element null @@ -2674,10 +4101,10 @@ DataStructures.LinkedList.LinkedList():::EXIT37 this_invocation_nonce 0 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -2702,10 +4129,10 @@ DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce 3 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -2730,7 +4157,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 4 theNode -1409829770 +785992331 1 theNode.element null @@ -2755,10 +4182,10 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 4 this -227990 +234698513 1 this.current -1409829770 +785992331 1 this.current.element null @@ -2779,7 +4206,7 @@ this.current.next.next nonsensical 2 theNode -1409829770 +785992331 1 theNode.element null @@ -2804,10 +4231,10 @@ DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce 3 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -2828,10 +4255,10 @@ this.header.next.next nonsensical 2 return -227990 +234698513 1 return.current -1409829770 +785992331 1 return.current.element null @@ -2847,10 +4274,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 5 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -2866,10 +4293,10 @@ DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 6 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -2894,10 +4321,10 @@ DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 6 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -2925,10 +4352,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 5 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -2944,10 +4371,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 7 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -2968,16 +4395,16 @@ this.header.next.next nonsensical 2 x -667203991 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1409829770 +785992331 1 p.current.element null @@ -2993,7 +4420,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 8 theElement -667203991 +745160567 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -3024,10 +4451,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 8 this -1685355750 +610984013 1 this.element -667203991 +745160567 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -3054,7 +4481,7 @@ this.next.next.next nonsensical 2 theElement -667203991 +745160567 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -3085,10 +4512,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 7 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3097,10 +4524,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3109,16 +4536,16 @@ this.header.next.next null 1 x -667203991 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1409829770 +785992331 1 p.current.element null @@ -3127,17 +4554,17 @@ p.current.element.getClass().getName() nonsensical 2 p.current.next -1685355750 +610984013 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 9 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -3146,17 +4573,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 10 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3165,10 +4592,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3181,10 +4608,10 @@ DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 10 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3193,10 +4620,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3212,10 +4639,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 11 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3224,10 +4651,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3240,10 +4667,10 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 12 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" @@ -3265,13 +4692,13 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 12 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3289,10 +4716,10 @@ this.current.next.next nonsensical 2 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" @@ -3314,10 +4741,10 @@ DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 11 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3326,10 +4753,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3338,13 +4765,13 @@ this.header.next.next null 1 return -464786320 +1644443712 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3357,13 +4784,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 13 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3385,13 +4812,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 13 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3416,13 +4843,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 14 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3444,13 +4871,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 15 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3472,13 +4899,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 15 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3503,13 +4930,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 14 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3527,7 +4954,7 @@ this.current.next.next nonsensical 2 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -3537,13 +4964,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 16 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3565,13 +4992,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 17 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3593,13 +5020,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 17 this -464786320 +1644443712 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3624,7 +5051,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 16 this -464786320 +1644443712 1 this.current null @@ -3652,7 +5079,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 18 this -464786320 +1644443712 1 this.current null @@ -3680,7 +5107,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 18 this -464786320 +1644443712 1 this.current null @@ -3711,10 +5138,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 9 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -3723,17 +5150,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 19 this -227990 +234698513 1 this.current -1409829770 +785992331 1 this.current.element null @@ -3742,10 +5169,10 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -1685355750 +610984013 1 this.current.next.element -667203991 +745160567 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3758,10 +5185,10 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 20 this -227990 +234698513 1 this.current -1409829770 +785992331 1 this.current.element null @@ -3770,10 +5197,10 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -1685355750 +610984013 1 this.current.next.element -667203991 +745160567 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3786,10 +5213,10 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 20 this -227990 +234698513 1 this.current -1409829770 +785992331 1 this.current.element null @@ -3798,10 +5225,10 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -1685355750 +610984013 1 this.current.next.element -667203991 +745160567 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3817,13 +5244,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 19 this -227990 +234698513 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3845,10 +5272,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 21 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3857,10 +5284,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" @@ -3869,19 +5296,19 @@ this.header.next.next null 1 x -1265656101 +1393931310 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1685355750 +610984013 1 p.current.element -667203991 +745160567 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -3894,7 +5321,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 22 theElement -1265656101 +1393931310 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -3925,10 +5352,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 22 this -1056565972 +788117692 1 this.element -1265656101 +1393931310 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -3955,7 +5382,7 @@ this.next.next.next nonsensical 2 theElement -1265656101 +1393931310 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -3986,10 +5413,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 21 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -3998,47 +5425,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -1265656101 +1393931310 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1685355750 +610984013 1 p.current.element -667203991 +745160567 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -1056565972 +788117692 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 23 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -4047,17 +5474,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 24 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -4066,26 +5493,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 24 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -4094,16 +5521,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -4113,10 +5540,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 25 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -4125,35 +5552,35 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 26 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4166,22 +5593,22 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 26 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4190,19 +5617,19 @@ this.current.next.next null 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4215,10 +5642,10 @@ DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 25 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -4227,53 +5654,53 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -162014361 +1566723494 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 27 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4286,22 +5713,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 27 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4317,22 +5744,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 28 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4345,22 +5772,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 29 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4373,22 +5800,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 29 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4404,22 +5831,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 28 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4428,7 +5855,7 @@ this.current.next.next null 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4438,22 +5865,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 30 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4466,22 +5893,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 31 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4494,22 +5921,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 31 this -162014361 +1566723494 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4525,13 +5952,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 30 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4553,13 +5980,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 32 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4581,13 +6008,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 32 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4612,13 +6039,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 33 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4640,13 +6067,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 34 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4668,13 +6095,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 34 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4699,13 +6126,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 33 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4723,7 +6150,7 @@ this.current.next.next nonsensical 2 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4733,13 +6160,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 35 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4761,13 +6188,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 36 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4789,13 +6216,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 36 this -162014361 +1566723494 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -4820,7 +6247,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 35 this -162014361 +1566723494 1 this.current null @@ -4848,7 +6275,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 37 this -162014361 +1566723494 1 this.current null @@ -4876,7 +6303,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 37 this -162014361 +1566723494 1 this.current null @@ -4907,10 +6334,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 23 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -4919,29 +6346,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 38 this -227990 +234698513 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4954,22 +6381,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 39 this -227990 +234698513 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -4982,22 +6409,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 39 this -227990 +234698513 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5013,13 +6440,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 38 this -227990 +234698513 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -5041,10 +6468,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 40 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -5053,31 +6480,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -2113584578 +510113906 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1056565972 +788117692 1 p.current.element -1265656101 +1393931310 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -5090,7 +6517,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 41 theElement -2113584578 +510113906 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -5121,10 +6548,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 41 this -1488997419 +1622006612 1 this.element -2113584578 +510113906 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -5151,7 +6578,7 @@ this.next.next.next nonsensical 2 theElement -2113584578 +510113906 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -5182,10 +6609,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 40 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -5194,47 +6621,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -2113584578 +510113906 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1056565972 +788117692 1 p.current.element -1265656101 +1393931310 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -1488997419 +1622006612 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 42 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -5243,17 +6670,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 43 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -5262,26 +6689,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 43 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -5290,16 +6717,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -5309,10 +6736,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 44 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -5321,100 +6748,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 45 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 45 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 44 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -5423,87 +6850,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -952682642 +66233253 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 46 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 46 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -5513,84 +6940,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 47 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 48 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 48 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -5600,31 +7027,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 47 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5634,84 +7061,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 49 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 50 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 50 this -952682642 +66233253 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -5721,22 +7148,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 49 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5749,22 +7176,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 51 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5777,22 +7204,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 51 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5808,22 +7235,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 52 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5836,22 +7263,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 53 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5864,22 +7291,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 53 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5895,22 +7322,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 52 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5919,7 +7346,7 @@ this.current.next.next null 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5929,22 +7356,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 54 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5957,22 +7384,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 55 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -5985,22 +7412,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 55 this -952682642 +66233253 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -6016,13 +7443,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 54 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6044,13 +7471,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 56 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6072,13 +7499,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 56 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6103,13 +7530,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 57 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6131,13 +7558,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 58 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6159,13 +7586,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 58 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6190,13 +7617,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 57 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6214,7 +7641,7 @@ this.current.next.next nonsensical 2 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -6224,13 +7651,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 59 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6252,13 +7679,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 60 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6280,13 +7707,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 60 this -952682642 +66233253 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6311,7 +7738,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 59 this -952682642 +66233253 1 this.current null @@ -6339,7 +7766,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 61 this -952682642 +66233253 1 this.current null @@ -6367,7 +7794,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 61 this -952682642 +66233253 1 this.current null @@ -6398,10 +7825,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 42 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -6410,29 +7837,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 62 this -227990 +234698513 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -6445,22 +7872,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 63 this -227990 +234698513 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -6473,22 +7900,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 63 this -227990 +234698513 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -6504,13 +7931,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 62 this -227990 +234698513 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6532,10 +7959,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 64 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -6544,31 +7971,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -99092062 +1286783232 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1488997419 +1622006612 1 p.current.element -2113584578 +510113906 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -6581,7 +8008,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 65 theElement -99092062 +1286783232 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -6612,10 +8039,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 65 this -1140459609 +1874154700 1 this.element -99092062 +1286783232 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -6642,7 +8069,7 @@ this.next.next.next nonsensical 2 theElement -99092062 +1286783232 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -6673,10 +8100,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 64 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -6685,47 +8112,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -99092062 +1286783232 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1488997419 +1622006612 1 p.current.element -2113584578 +510113906 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -1140459609 +1874154700 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 66 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -6734,17 +8161,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 67 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -6753,26 +8180,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 67 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -6781,16 +8208,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -6800,10 +8227,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 68 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -6812,100 +8239,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 69 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 69 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 68 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -6914,87 +8341,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -1413098988 +1632392469 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 70 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 70 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -7004,84 +8431,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 71 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 72 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 72 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -7091,31 +8518,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 71 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7125,84 +8552,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 73 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 74 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 74 this -1413098988 +1632392469 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -7212,84 +8639,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 73 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 75 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 75 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -7299,84 +8726,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 76 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 77 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 77 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -7386,31 +8813,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 76 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7420,84 +8847,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 78 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 79 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 79 this -1413098988 +1632392469 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -7507,22 +8934,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 78 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7535,22 +8962,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 80 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7563,22 +8990,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 80 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7594,22 +9021,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 81 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7622,22 +9049,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 82 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7650,22 +9077,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 82 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7681,22 +9108,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 81 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7705,7 +9132,7 @@ this.current.next.next null 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7715,22 +9142,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 83 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7743,22 +9170,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 84 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7771,22 +9198,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 84 this -1413098988 +1632392469 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -7802,13 +9229,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 83 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -7830,13 +9257,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 85 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -7858,13 +9285,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 85 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -7889,13 +9316,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 86 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -7917,13 +9344,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 87 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -7945,13 +9372,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 87 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -7976,13 +9403,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 86 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -8000,7 +9427,7 @@ this.current.next.next nonsensical 2 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8010,13 +9437,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 88 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -8038,13 +9465,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 89 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -8066,13 +9493,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 89 this -1413098988 +1632392469 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -8097,7 +9524,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 88 this -1413098988 +1632392469 1 this.current null @@ -8125,7 +9552,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 90 this -1413098988 +1632392469 1 this.current null @@ -8153,7 +9580,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 90 this -1413098988 +1632392469 1 this.current null @@ -8184,10 +9611,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 66 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -8196,29 +9623,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 91 this -227990 +234698513 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -8231,22 +9658,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 92 this -227990 +234698513 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -8259,22 +9686,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 92 this -227990 +234698513 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -8290,13 +9717,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 91 this -227990 +234698513 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -8318,10 +9745,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 93 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -8330,31 +9757,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -933039143 +2008362258 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1140459609 +1874154700 1 p.current.element -99092062 +1286783232 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -8367,7 +9794,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 94 theElement -933039143 +2008362258 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -8398,10 +9825,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 94 this -663286007 +760563749 1 this.element -933039143 +2008362258 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -8428,7 +9855,7 @@ this.next.next.next nonsensical 2 theElement -933039143 +2008362258 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -8459,10 +9886,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 93 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -8471,47 +9898,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -933039143 +2008362258 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1140459609 +1874154700 1 p.current.element -99092062 +1286783232 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -663286007 +760563749 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 95 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -8520,17 +9947,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 96 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -8539,26 +9966,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 96 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -8567,16 +9994,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -8586,10 +10013,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 97 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -8598,100 +10025,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 98 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 98 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 97 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -8700,87 +10127,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -260308072 +1753447031 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 99 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 99 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -8790,84 +10217,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 100 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 101 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 101 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -8877,31 +10304,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 100 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8911,84 +10338,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 102 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 103 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 103 this -260308072 +1753447031 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -8998,84 +10425,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 102 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 104 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 104 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -9085,84 +10512,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 105 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 106 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 106 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -9172,31 +10599,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 105 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9206,84 +10633,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 107 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 108 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 108 this -260308072 +1753447031 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -9293,84 +10720,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 107 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 109 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 109 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -9380,84 +10807,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 110 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 111 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 111 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -9467,31 +10894,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 110 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9501,84 +10928,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 112 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 113 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 113 this -260308072 +1753447031 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -9588,22 +11015,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 112 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9616,22 +11043,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 114 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9644,22 +11071,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 114 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9675,22 +11102,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 115 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9703,22 +11130,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 116 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9731,22 +11158,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 116 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9762,22 +11189,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 115 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9786,7 +11213,7 @@ this.current.next.next null 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9796,22 +11223,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 117 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9824,22 +11251,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 118 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9852,22 +11279,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 118 this -260308072 +1753447031 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -9883,13 +11310,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 117 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -9911,13 +11338,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 119 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -9939,13 +11366,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 119 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -9970,13 +11397,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 120 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -9998,13 +11425,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 121 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10026,13 +11453,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 121 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10057,13 +11484,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 120 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10081,7 +11508,7 @@ this.current.next.next nonsensical 2 return -933039143 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10091,13 +11518,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 122 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10119,13 +11546,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 123 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10147,13 +11574,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 123 this -260308072 +1753447031 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10178,7 +11605,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 122 this -260308072 +1753447031 1 this.current null @@ -10206,7 +11633,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 124 this -260308072 +1753447031 1 this.current null @@ -10234,7 +11661,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 124 this -260308072 +1753447031 1 this.current null @@ -10265,10 +11692,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 95 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -10277,29 +11704,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 125 this -227990 +234698513 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -10312,22 +11739,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 126 this -227990 +234698513 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -10340,22 +11767,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 126 this -227990 +234698513 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -10371,13 +11798,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 125 this -227990 +234698513 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10399,10 +11826,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 127 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -10411,31 +11838,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -573577165 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -663286007 +760563749 1 p.current.element -933039143 +2008362258 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -10448,7 +11875,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 128 theElement -573577165 +1810132623 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -10479,10 +11906,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 128 this -57320772 +895947612 1 this.element -573577165 +1810132623 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -10509,7 +11936,7 @@ this.next.next.next nonsensical 2 theElement -573577165 +1810132623 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -10540,10 +11967,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 127 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -10552,47 +11979,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -573577165 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -663286007 +760563749 1 p.current.element -933039143 +2008362258 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -57320772 +895947612 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 129 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -10601,17 +12028,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 130 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -10620,26 +12047,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 130 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -10648,16 +12075,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -10667,10 +12094,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 131 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -10679,100 +12106,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 132 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 132 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 131 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -10781,87 +12208,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -1317541148 +846492085 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 133 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 133 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -10871,84 +12298,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 134 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 135 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 135 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -10958,31 +12385,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 134 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10992,84 +12419,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 136 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 137 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 137 this -1317541148 +846492085 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -11079,84 +12506,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 136 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 138 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 138 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -11166,84 +12593,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 139 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 140 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 140 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -11253,31 +12680,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 139 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11287,84 +12714,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 141 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 142 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 142 this -1317541148 +846492085 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -11374,84 +12801,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 141 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 143 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 143 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -11461,84 +12888,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 144 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 145 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 145 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -11548,31 +12975,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 144 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11582,84 +13009,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 146 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 147 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 147 this -1317541148 +846492085 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -11669,84 +13096,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 146 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 148 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 148 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -11756,84 +13183,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 149 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 150 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 150 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -11843,31 +13270,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 149 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11877,84 +13304,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 151 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 152 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 152 this -1317541148 +846492085 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -11964,22 +13391,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 151 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -11992,22 +13419,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 153 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12020,22 +13447,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 153 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12051,22 +13478,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 154 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12079,22 +13506,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 155 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12107,22 +13534,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 155 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12138,22 +13565,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 154 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12162,7 +13589,7 @@ this.current.next.next null 1 return -933039143 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12172,22 +13599,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 156 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12200,22 +13627,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 157 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12228,22 +13655,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 157 this -1317541148 +846492085 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12259,13 +13686,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 156 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12287,13 +13714,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 158 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12315,13 +13742,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 158 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12346,13 +13773,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 159 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12374,13 +13801,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 160 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12402,13 +13829,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 160 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12433,13 +13860,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 159 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12457,7 +13884,7 @@ this.current.next.next nonsensical 2 return -573577165 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12467,13 +13894,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 161 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12495,13 +13922,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 162 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12523,13 +13950,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 162 this -1317541148 +846492085 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12554,7 +13981,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 161 this -1317541148 +846492085 1 this.current null @@ -12582,7 +14009,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 163 this -1317541148 +846492085 1 this.current null @@ -12610,7 +14037,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 163 this -1317541148 +846492085 1 this.current null @@ -12641,10 +14068,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 129 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -12653,29 +14080,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 164 this -227990 +234698513 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12688,22 +14115,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 165 this -227990 +234698513 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12716,22 +14143,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 165 this -227990 +234698513 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -12747,13 +14174,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 164 this -227990 +234698513 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12775,10 +14202,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 166 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -12787,31 +14214,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -1210190219 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -57320772 +895947612 1 p.current.element -573577165 +1810132623 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -12824,7 +14251,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 167 theElement -1210190219 +1096283470 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -12855,10 +14282,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 167 this -849389996 +152005629 1 this.element -1210190219 +1096283470 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -12885,7 +14312,7 @@ this.next.next.next nonsensical 2 theElement -1210190219 +1096283470 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -12916,10 +14343,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 166 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -12928,47 +14355,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -1210190219 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -57320772 +895947612 1 p.current.element -573577165 +1810132623 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -849389996 +152005629 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 168 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -12977,17 +14404,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 169 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -12996,26 +14423,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 169 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -13024,16 +14451,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -13043,10 +14470,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 170 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -13055,100 +14482,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 171 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 171 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 170 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -13157,87 +14584,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -1373861163 +75457651 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 172 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 172 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -13247,84 +14674,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 173 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 174 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 174 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -13334,31 +14761,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 173 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13368,84 +14795,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 175 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 176 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 176 this -1373861163 +75457651 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -13455,84 +14882,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 175 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 177 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 177 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -13542,84 +14969,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 178 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 179 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 179 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -13629,31 +15056,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 178 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13663,84 +15090,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 180 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 181 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 181 this -1373861163 +75457651 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -13750,84 +15177,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 180 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 182 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 182 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -13837,84 +15264,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 183 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 184 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 184 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -13924,31 +15351,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 183 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13958,84 +15385,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 185 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 186 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 186 this -1373861163 +75457651 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -14045,84 +15472,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 185 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 187 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 187 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -14132,84 +15559,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 188 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 189 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 189 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -14219,31 +15646,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 188 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14253,84 +15680,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 190 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 191 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 191 this -1373861163 +75457651 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -14340,84 +15767,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 190 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 192 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 192 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -14427,84 +15854,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 193 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 194 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 194 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -14514,31 +15941,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 193 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return -933039143 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14548,84 +15975,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 195 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 196 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 196 this -1373861163 +75457651 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -14635,22 +16062,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 195 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14663,22 +16090,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 197 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14691,22 +16118,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 197 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14722,22 +16149,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 198 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14750,22 +16177,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 199 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14778,22 +16205,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 199 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14809,22 +16236,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 198 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14833,7 +16260,7 @@ this.current.next.next null 1 return -573577165 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14843,22 +16270,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 200 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14871,22 +16298,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 201 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14899,22 +16326,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 201 this -1373861163 +75457651 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -14930,13 +16357,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 200 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -14958,13 +16385,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 202 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -14986,13 +16413,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 202 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15017,13 +16444,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 203 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15045,13 +16472,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 204 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15073,13 +16500,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 204 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15104,13 +16531,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 203 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15128,7 +16555,7 @@ this.current.next.next nonsensical 2 return -1210190219 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15138,13 +16565,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 205 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15166,13 +16593,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 206 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15194,13 +16621,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 206 this -1373861163 +75457651 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15225,7 +16652,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 205 this -1373861163 +75457651 1 this.current null @@ -15253,7 +16680,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 207 this -1373861163 +75457651 1 this.current null @@ -15281,7 +16708,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 207 this -1373861163 +75457651 1 this.current null @@ -15312,10 +16739,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 168 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -15324,29 +16751,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 208 this -227990 +234698513 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -15359,22 +16786,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 209 this -227990 +234698513 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -15387,22 +16814,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 209 this -227990 +234698513 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -15418,13 +16845,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 208 this -227990 +234698513 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15446,10 +16873,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 210 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -15458,31 +16885,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -740393997 +362239120 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -849389996 +152005629 1 p.current.element -1210190219 +1096283470 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -15495,7 +16922,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 211 theElement -740393997 +362239120 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -15526,10 +16953,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 211 this -1281656861 +1796488937 1 this.element -740393997 +362239120 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -15556,7 +16983,7 @@ this.next.next.next nonsensical 2 theElement -740393997 +362239120 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -15587,10 +17014,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 210 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -15599,47 +17026,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -740393997 +362239120 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -849389996 +152005629 1 p.current.element -1210190219 +1096283470 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -1281656861 +1796488937 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 212 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -15648,17 +17075,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 213 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -15667,26 +17094,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 213 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -15695,16 +17122,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -15714,10 +17141,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 214 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -15726,100 +17153,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 215 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 215 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 214 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -15828,87 +17255,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -1545883417 +423031029 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 216 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 216 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -15918,84 +17345,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 217 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 218 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 218 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -16005,31 +17432,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 217 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16039,84 +17466,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 219 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 220 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 220 this -1545883417 +423031029 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -16126,84 +17553,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 219 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 221 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 221 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -16213,84 +17640,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 222 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 223 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 223 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -16300,31 +17727,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 222 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16334,84 +17761,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 224 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 225 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 225 this -1545883417 +423031029 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -16421,84 +17848,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 224 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 226 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 226 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -16508,84 +17935,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 227 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 228 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 228 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -16595,31 +18022,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 227 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16629,84 +18056,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 229 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 230 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 230 this -1545883417 +423031029 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -16716,84 +18143,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 229 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 231 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 231 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -16803,84 +18230,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 232 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 233 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 233 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -16890,31 +18317,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 232 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16924,84 +18351,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 234 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 235 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 235 this -1545883417 +423031029 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -17011,84 +18438,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 234 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 236 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 236 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -17098,84 +18525,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 237 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 238 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 238 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -17185,31 +18612,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 237 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return -933039143 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17219,84 +18646,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 239 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 240 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 240 this -1545883417 +423031029 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -17306,84 +18733,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 239 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 241 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 241 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -17393,84 +18820,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 242 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 243 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 243 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -17480,31 +18907,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 242 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return -573577165 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17514,84 +18941,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 244 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 245 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 245 this -1545883417 +423031029 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -17601,22 +19028,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 244 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17629,22 +19056,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 246 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17657,22 +19084,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 246 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17688,22 +19115,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 247 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17716,22 +19143,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 248 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17744,22 +19171,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 248 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17775,22 +19202,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 247 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17799,7 +19226,7 @@ this.current.next.next null 1 return -1210190219 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17809,22 +19236,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 249 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17837,22 +19264,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 250 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17865,22 +19292,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 250 this -1545883417 +423031029 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -17896,13 +19323,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 249 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -17924,13 +19351,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 251 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -17952,13 +19379,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 251 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -17983,13 +19410,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 252 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18011,13 +19438,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 253 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18039,13 +19466,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 253 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18070,13 +19497,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 252 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18094,7 +19521,7 @@ this.current.next.next nonsensical 2 return -740393997 +362239120 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18104,13 +19531,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 254 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18132,13 +19559,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 255 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18160,13 +19587,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 255 this -1545883417 +423031029 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18191,7 +19618,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 254 this -1545883417 +423031029 1 this.current null @@ -18219,7 +19646,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 256 this -1545883417 +423031029 1 this.current null @@ -18247,7 +19674,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 256 this -1545883417 +423031029 1 this.current null @@ -18278,10 +19705,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 212 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -18290,29 +19717,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 257 this -227990 +234698513 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -18325,22 +19752,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 258 this -227990 +234698513 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -18353,22 +19780,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 258 this -227990 +234698513 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -18384,13 +19811,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 257 this -227990 +234698513 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18412,10 +19839,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 259 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -18424,31 +19851,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -1405428113 +1712669532 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1281656861 +1796488937 1 p.current.element -740393997 +362239120 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -18461,7 +19888,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 260 theElement -1405428113 +1712669532 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -18492,10 +19919,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 260 this -857661838 +1225373914 1 this.element -1405428113 +1712669532 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -18522,7 +19949,7 @@ this.next.next.next nonsensical 2 theElement -1405428113 +1712669532 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -18553,10 +19980,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 259 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -18565,47 +19992,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -1405428113 +1712669532 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -1281656861 +1796488937 1 p.current.element -740393997 +362239120 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -857661838 +1225373914 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 261 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -18614,17 +20041,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 262 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -18633,26 +20060,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 262 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -18661,16 +20088,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -18680,10 +20107,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 263 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -18692,100 +20119,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 264 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 264 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 263 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -18794,87 +20221,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -812272602 +60830820 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 265 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 265 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -18884,84 +20311,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 266 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 267 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 267 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -18971,31 +20398,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 266 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19005,84 +20432,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 268 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 269 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 269 this -812272602 +60830820 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -19092,84 +20519,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 268 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 270 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 270 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -19179,84 +20606,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 271 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 272 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 272 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -19266,31 +20693,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 271 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19300,84 +20727,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 273 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 274 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 274 this -812272602 +60830820 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -19387,84 +20814,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 273 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 275 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 275 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -19474,84 +20901,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 276 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 277 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 277 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -19561,31 +20988,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 276 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19595,84 +21022,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 278 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 279 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 279 this -812272602 +60830820 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -19682,84 +21109,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 278 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 280 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 280 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -19769,84 +21196,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 281 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 282 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 282 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -19856,31 +21283,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 281 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19890,84 +21317,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 283 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 284 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 284 this -812272602 +60830820 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -19977,84 +21404,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 283 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 285 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 285 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -20064,84 +21491,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 286 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 287 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 287 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -20151,31 +21578,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 286 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return -933039143 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20185,84 +21612,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 288 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 289 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 289 this -812272602 +60830820 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -20272,84 +21699,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 288 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 290 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 290 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -20359,84 +21786,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 291 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 292 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 292 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -20446,31 +21873,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 291 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return -573577165 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20480,84 +21907,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 293 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 294 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 294 this -812272602 +60830820 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -20567,84 +21994,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 293 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 295 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 295 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return false @@ -20654,84 +22081,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 296 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 297 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 297 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return false @@ -20741,31 +22168,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 296 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return -1210190219 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20775,84 +22202,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 298 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 299 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 299 this -812272602 +60830820 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return false @@ -20862,22 +22289,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 298 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -20890,22 +22317,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 300 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -20918,22 +22345,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 300 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -20949,22 +22376,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 301 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -20977,22 +22404,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 302 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21005,22 +22432,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 302 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21036,22 +22463,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 301 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21060,7 +22487,7 @@ this.current.next.next null 1 return -740393997 +362239120 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21070,22 +22497,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 303 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21098,22 +22525,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 304 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21126,22 +22553,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 304 this -812272602 +60830820 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21157,13 +22584,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 303 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21185,13 +22612,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 305 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21213,13 +22640,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 305 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21244,13 +22671,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 306 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21272,13 +22699,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 307 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21300,13 +22727,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 307 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21331,13 +22758,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 306 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21355,7 +22782,7 @@ this.current.next.next nonsensical 2 return -1405428113 +1712669532 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21365,13 +22792,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 308 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21393,13 +22820,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 309 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21421,13 +22848,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 309 this -812272602 +60830820 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21452,7 +22879,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 308 this -812272602 +60830820 1 this.current null @@ -21480,7 +22907,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 310 this -812272602 +60830820 1 this.current null @@ -21508,7 +22935,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 310 this -812272602 +60830820 1 this.current null @@ -21539,10 +22966,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 261 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -21551,29 +22978,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 311 this -227990 +234698513 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21586,22 +23013,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 312 this -227990 +234698513 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21614,22 +23041,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 312 this -227990 +234698513 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -21645,13 +23072,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 311 this -227990 +234698513 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21673,10 +23100,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 313 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -21685,31 +23112,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -312077835 +759156157 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -857661838 +1225373914 1 p.current.element -1405428113 +1712669532 1 p.current.element.getClass().getName() "DataStructures.MyInteger" @@ -21722,7 +23149,7 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EN this_invocation_nonce 314 theElement -312077835 +759156157 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -21753,10 +23180,10 @@ DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EX this_invocation_nonce 314 this -937106871 +1635546341 1 this.element -312077835 +759156157 1 this.element.getClass().getName() "DataStructures.MyInteger" @@ -21783,7 +23210,7 @@ this.next.next.next nonsensical 2 theElement -312077835 +759156157 1 theElement.getClass().getName() "DataStructures.MyInteger" @@ -21814,10 +23241,10 @@ DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr) this_invocation_nonce 313 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -21826,47 +23253,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -312077835 +759156157 1 x.getClass().getName() "DataStructures.MyInteger" 1 p -227990 +234698513 1 p.current -857661838 +1225373914 1 p.current.element -1405428113 +1712669532 1 p.current.element.getClass().getName() "DataStructures.MyInteger" 1 p.current.next -937106871 +1635546341 1 DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 315 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -21875,17 +23302,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 316 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -21894,26 +23321,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 316 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -21922,16 +23349,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return false @@ -21941,10 +23368,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 317 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -21953,100 +23380,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 318 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 318 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 theNode -1685355750 +610984013 1 theNode.element -667203991 +745160567 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1056565972 +788117692 1 theNode.next.element -1265656101 +1393931310 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1488997419 +1622006612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 317 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -22055,87 +23482,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 return -310113799 +1698156408 1 return.current -1685355750 +610984013 1 return.current.element -667203991 +745160567 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1056565972 +788117692 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 319 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 319 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -22145,84 +23572,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 320 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 321 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 321 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -22232,31 +23659,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 320 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return -667203991 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22266,84 +23693,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 322 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 323 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 323 this -310113799 +1698156408 1 this.current -1685355750 +610984013 1 this.current.element -667203991 +745160567 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1056565972 +788117692 1 this.current.next.element -1265656101 +1393931310 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1488997419 +1622006612 1 return false @@ -22353,84 +23780,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 322 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 324 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 324 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -22440,84 +23867,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 325 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 326 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 326 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -22527,31 +23954,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 325 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22561,84 +23988,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 327 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 328 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 328 this -310113799 +1698156408 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 return false @@ -22648,84 +24075,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 327 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 329 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 329 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -22735,84 +24162,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 330 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 331 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 331 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -22822,31 +24249,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 330 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return -2113584578 +510113906 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22856,84 +24283,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 332 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 333 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 333 this -310113799 +1698156408 1 this.current -1488997419 +1622006612 1 this.current.element -2113584578 +510113906 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -663286007 +760563749 1 return false @@ -22943,84 +24370,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 332 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 334 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 334 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -23030,84 +24457,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 335 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 336 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 336 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -23117,31 +24544,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 335 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23151,84 +24578,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 337 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 338 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 338 this -310113799 +1698156408 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -23238,84 +24665,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 337 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 339 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 339 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -23325,84 +24752,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 340 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 341 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 341 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -23412,31 +24839,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 340 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return -933039143 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23446,84 +24873,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 342 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 343 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 343 this -310113799 +1698156408 1 this.current -663286007 +760563749 1 this.current.element -933039143 +2008362258 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -849389996 +152005629 1 return false @@ -23533,84 +24960,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 342 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 344 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 344 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -23620,84 +25047,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 345 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 346 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 346 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -23707,31 +25134,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 345 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return -573577165 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23741,84 +25168,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 347 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 348 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 348 this -310113799 +1698156408 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -23828,84 +25255,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 347 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 349 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 349 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return false @@ -23915,84 +25342,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 350 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 351 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 351 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return false @@ -24002,31 +25429,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 350 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return -1210190219 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24036,84 +25463,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 352 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 353 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 353 this -310113799 +1698156408 1 this.current -849389996 +152005629 1 this.current.element -1210190219 +1096283470 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -857661838 +1225373914 1 return false @@ -24123,84 +25550,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 352 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 354 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 354 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -24210,84 +25637,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 355 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 356 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 356 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -24297,31 +25724,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 355 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return -740393997 +362239120 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24331,84 +25758,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 357 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 358 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 358 this -310113799 +1698156408 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -24418,22 +25845,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 357 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24446,22 +25873,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 359 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24474,22 +25901,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 359 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24505,22 +25932,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 360 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24533,22 +25960,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 361 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24561,22 +25988,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 361 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24592,22 +26019,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 360 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24616,7 +26043,7 @@ this.current.next.next null 1 return -1405428113 +1712669532 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24626,22 +26053,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 362 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24654,22 +26081,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 363 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24682,22 +26109,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 363 this -310113799 +1698156408 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -24713,13 +26140,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 362 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24741,13 +26168,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 364 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24769,13 +26196,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 364 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24800,13 +26227,13 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 365 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24828,13 +26255,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 366 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24856,13 +26283,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 366 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24887,13 +26314,13 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 365 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24911,7 +26338,7 @@ this.current.next.next nonsensical 2 return -312077835 +759156157 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24921,13 +26348,13 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 367 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24949,13 +26376,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 368 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -24977,13 +26404,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 368 this -310113799 +1698156408 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -25008,7 +26435,7 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 367 this -310113799 +1698156408 1 this.current null @@ -25036,7 +26463,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 369 this -310113799 +1698156408 1 this.current null @@ -25064,7 +26491,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 369 this -310113799 +1698156408 1 this.current null @@ -25095,10 +26522,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce 315 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -25107,29 +26534,29 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1685355750 +610984013 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 370 this -227990 +234698513 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -25142,22 +26569,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 371 this -227990 +234698513 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -25170,22 +26597,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 371 this -227990 +234698513 1 this.current -857661838 +1225373914 1 this.current.element -1405428113 +1712669532 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -25201,13 +26628,13 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 370 this -227990 +234698513 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -25229,10 +26656,10 @@ DataStructures.LinkedList.remove(java.lang.Object):::ENTER this_invocation_nonce 372 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25241,19 +26668,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -139808524 +1740035246 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25263,10 +26690,10 @@ DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 373 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25275,19 +26702,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -139808524 +1740035246 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25297,7 +26724,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 374 theNode -1409829770 +785992331 1 theNode.element null @@ -25306,26 +26733,26 @@ theNode.element.getClass().getName() nonsensical 2 theNode.next -1685355750 +610984013 1 theNode.next.element -667203991 +745160567 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1056565972 +788117692 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 374 this -414753050 +884457408 1 this.current -1409829770 +785992331 1 this.current.element null @@ -25334,19 +26761,19 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -1685355750 +610984013 1 this.current.next.element -667203991 +745160567 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1056565972 +788117692 1 theNode -1409829770 +785992331 1 theNode.element null @@ -25355,26 +26782,26 @@ theNode.element.getClass().getName() nonsensical 2 theNode.next -1685355750 +610984013 1 theNode.next.element -667203991 +745160567 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1056565972 +788117692 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce 373 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25383,28 +26810,28 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1685355750 +610984013 1 this.header.next.element -667203991 +745160567 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1056565972 +788117692 1 x -139808524 +1740035246 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -414753050 +884457408 1 return.current -1409829770 +785992331 1 return.current.element null @@ -25413,17 +26840,17 @@ return.current.element.getClass().getName() nonsensical 2 return.current.next -1685355750 +610984013 1 DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 this_invocation_nonce 372 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25432,19 +26859,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1488997419 +1622006612 1 x -139808524 +1740035246 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25454,10 +26881,10 @@ DataStructures.LinkedList.remove(java.lang.Object):::ENTER this_invocation_nonce 375 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25466,19 +26893,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1488997419 +1622006612 1 x -22593188 +913190639 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25488,10 +26915,10 @@ DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 376 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25500,19 +26927,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1488997419 +1622006612 1 x -22593188 +913190639 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25522,84 +26949,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 377 theNode -1056565972 +788117692 1 theNode.element -1265656101 +1393931310 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1488997419 +1622006612 1 theNode.next.element -2113584578 +510113906 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 377 this -1766588844 +1845066581 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1488997419 +1622006612 1 this.current.next.element -2113584578 +510113906 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1140459609 +1874154700 1 theNode -1056565972 +788117692 1 theNode.element -1265656101 +1393931310 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1488997419 +1622006612 1 theNode.next.element -2113584578 +510113906 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1140459609 +1874154700 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce 376 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25608,47 +27035,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1488997419 +1622006612 1 x -22593188 +913190639 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1766588844 +1845066581 1 return.current -1056565972 +788117692 1 return.current.element -1265656101 +1393931310 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1488997419 +1622006612 1 DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 this_invocation_nonce 375 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25657,19 +27084,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -22593188 +913190639 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25679,10 +27106,10 @@ DataStructures.LinkedList.remove(java.lang.Object):::ENTER this_invocation_nonce 378 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25691,19 +27118,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -2097281333 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25713,10 +27140,10 @@ DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 379 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25725,19 +27152,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -2097281333 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25747,84 +27174,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 380 theNode -1140459609 +1874154700 1 theNode.element -99092062 +1286783232 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -663286007 +760563749 1 theNode.next.element -933039143 +2008362258 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 380 this -210781873 +905654280 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -663286007 +760563749 1 this.current.next.element -933039143 +2008362258 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 theNode -1140459609 +1874154700 1 theNode.element -99092062 +1286783232 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -663286007 +760563749 1 theNode.next.element -933039143 +2008362258 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -57320772 +895947612 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce 379 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25833,47 +27260,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -2097281333 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -210781873 +905654280 1 return.current -1140459609 +1874154700 1 return.current.element -99092062 +1286783232 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -663286007 +760563749 1 DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 this_invocation_nonce 378 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25882,19 +27309,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -2097281333 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25904,10 +27331,10 @@ DataStructures.LinkedList.remove(java.lang.Object):::ENTER this_invocation_nonce 381 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25916,19 +27343,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1410405608 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25938,10 +27365,10 @@ DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 382 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -25950,19 +27377,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1410405608 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -25972,84 +27399,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 383 theNode -57320772 +895947612 1 theNode.element -573577165 +1810132623 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -849389996 +152005629 1 theNode.next.element -1210190219 +1096283470 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 383 this -762558070 +1419810764 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -849389996 +152005629 1 this.current.next.element -1210190219 +1096283470 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 theNode -57320772 +895947612 1 theNode.element -573577165 +1810132623 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -849389996 +152005629 1 theNode.next.element -1210190219 +1096283470 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1281656861 +1796488937 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce 382 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26058,47 +27485,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1410405608 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -762558070 +1419810764 1 return.current -57320772 +895947612 1 return.current.element -573577165 +1810132623 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -849389996 +152005629 1 DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 this_invocation_nonce 381 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26107,19 +27534,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1410405608 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26129,10 +27556,10 @@ DataStructures.LinkedList.remove(java.lang.Object):::ENTER this_invocation_nonce 384 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26141,19 +27568,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -131077194 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26163,10 +27590,10 @@ DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce 385 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26175,19 +27602,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -131077194 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26197,84 +27624,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 386 theNode -1281656861 +1796488937 1 theNode.element -740393997 +362239120 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -857661838 +1225373914 1 theNode.next.element -1405428113 +1712669532 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 386 this -1843661383 +1516369375 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -857661838 +1225373914 1 this.current.next.element -1405428113 +1712669532 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 theNode -1281656861 +1796488937 1 theNode.element -740393997 +362239120 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -857661838 +1225373914 1 theNode.next.element -1405428113 +1712669532 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -937106871 +1635546341 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce 385 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26283,47 +27710,47 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -131077194 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1843661383 +1516369375 1 return.current -1281656861 +1796488937 1 return.current.element -740393997 +362239120 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -857661838 +1225373914 1 DataStructures.LinkedList.remove(java.lang.Object):::EXIT126 this_invocation_nonce 384 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26332,19 +27759,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -131077194 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26354,10 +27781,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 387 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26366,19 +27793,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -375321518 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26413,7 +27840,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 388 this -869281787 +1394336709 1 this.current null @@ -26462,10 +27889,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 387 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26474,25 +27901,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -375321518 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -869281787 +1394336709 1 return.current null @@ -26511,7 +27938,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 389 this -869281787 +1394336709 1 this.current null @@ -26539,7 +27966,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 389 this -869281787 +1394336709 1 this.current null @@ -26570,10 +27997,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 390 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26582,19 +28009,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -687743568 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26604,84 +28031,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 391 theNode -1056565972 +788117692 1 theNode.element -1265656101 +1393931310 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1140459609 +1874154700 1 theNode.next.element -99092062 +1286783232 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 391 this -1149159222 +120960120 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 theNode -1056565972 +788117692 1 theNode.element -1265656101 +1393931310 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1140459609 +1874154700 1 theNode.next.element -99092062 +1286783232 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -57320772 +895947612 1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 390 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26690,93 +28117,93 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -687743568 +1387228415 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1149159222 +120960120 1 return.current -1056565972 +788117692 1 return.current.element -1265656101 +1393931310 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 392 this -1149159222 +120960120 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 392 this -1149159222 +120960120 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -26786,10 +28213,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 393 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26798,19 +28225,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1598606683 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" @@ -26845,7 +28272,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 394 this -614613564 +546718765 1 this.current null @@ -26894,10 +28321,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 393 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -26906,25 +28333,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1598606683 +748658608 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -614613564 +546718765 1 return.current null @@ -26943,7 +28370,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 395 this -614613564 +546718765 1 this.current null @@ -26971,7 +28398,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 395 this -614613564 +546718765 1 this.current null @@ -27002,10 +28429,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 396 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27014,19 +28441,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -413828078 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27036,84 +28463,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 397 theNode -1140459609 +1874154700 1 theNode.element -99092062 +1286783232 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -57320772 +895947612 1 theNode.next.element -573577165 +1810132623 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 397 this -1656457960 +592179046 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 theNode -1140459609 +1874154700 1 theNode.element -99092062 +1286783232 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -57320772 +895947612 1 theNode.next.element -573577165 +1810132623 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -1281656861 +1796488937 1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 396 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27122,93 +28549,93 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -413828078 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1656457960 +592179046 1 return.current -1140459609 +1874154700 1 return.current.element -99092062 +1286783232 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 398 this -1656457960 +592179046 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 398 this -1656457960 +592179046 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -27218,10 +28645,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 399 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27230,19 +28657,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -110934012 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27277,7 +28704,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 400 this -452134088 +1641808846 1 this.current null @@ -27326,10 +28753,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 399 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27338,25 +28765,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -110934012 +1937348256 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -452134088 +1641808846 1 return.current null @@ -27375,7 +28802,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 401 this -452134088 +1641808846 1 this.current null @@ -27403,7 +28830,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 401 this -452134088 +1641808846 1 this.current null @@ -27434,10 +28861,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 402 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27446,19 +28873,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1220473930 +1358444045 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27468,84 +28895,84 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 403 theNode -57320772 +895947612 1 theNode.element -573577165 +1810132623 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1281656861 +1796488937 1 theNode.next.element -740393997 +362239120 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 403 this -1889029013 +750044075 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 theNode -57320772 +895947612 1 theNode.element -573577165 +1810132623 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1281656861 +1796488937 1 theNode.next.element -740393997 +362239120 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -937106871 +1635546341 1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 402 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27554,93 +28981,93 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1220473930 +1358444045 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1889029013 +750044075 1 return.current -57320772 +895947612 1 return.current.element -573577165 +1810132623 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 404 this -1889029013 +750044075 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 404 this -1889029013 +750044075 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -27650,10 +29077,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 405 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27662,19 +29089,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -512384243 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27709,7 +29136,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 406 this -232547631 +310656974 1 this.current null @@ -27758,10 +29185,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 405 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27770,25 +29197,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -512384243 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -232547631 +310656974 1 return.current null @@ -27807,7 +29234,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 407 this -232547631 +310656974 1 this.current null @@ -27835,7 +29262,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 407 this -232547631 +310656974 1 this.current null @@ -27866,10 +29293,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 408 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27878,19 +29305,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -7796677 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27900,19 +29327,19 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 409 theNode -1281656861 +1796488937 1 theNode.element -740393997 +362239120 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -937106871 +1635546341 1 theNode.next.element -312077835 +759156157 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" @@ -27925,22 +29352,22 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 409 this -42247872 +159259014 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -27949,19 +29376,19 @@ this.current.next.next null 1 theNode -1281656861 +1796488937 1 theNode.element -740393997 +362239120 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -937106871 +1635546341 1 theNode.next.element -312077835 +759156157 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" @@ -27974,10 +29401,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 408 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -27986,59 +29413,59 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -7796677 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -42247872 +159259014 1 return.current -1281656861 +1796488937 1 return.current.element -740393997 +362239120 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 410 this -42247872 +159259014 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -28051,22 +29478,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 410 this -42247872 +159259014 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -28082,10 +29509,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 411 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28094,19 +29521,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1390381194 +653687670 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28141,7 +29568,7 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 412 this -1367164551 +356473385 1 this.current null @@ -28190,10 +29617,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 411 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28202,25 +29629,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -1390381194 +653687670 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -1367164551 +356473385 1 return.current null @@ -28239,7 +29666,7 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 413 this -1367164551 +356473385 1 this.current null @@ -28267,7 +29694,7 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 413 this -1367164551 +356473385 1 this.current null @@ -28298,10 +29725,10 @@ DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce 414 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28310,19 +29737,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -2007069404 +2136344592 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28332,10 +29759,10 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 415 theNode -937106871 +1635546341 1 theNode.element -312077835 +759156157 1 theNode.element.getClass().getName() "DataStructures.MyInteger" @@ -28357,13 +29784,13 @@ DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 415 this -142345952 +110992469 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -28381,10 +29808,10 @@ this.current.next.next nonsensical 2 theNode -937106871 +1635546341 1 theNode.element -312077835 +759156157 1 theNode.element.getClass().getName() "DataStructures.MyInteger" @@ -28406,10 +29833,10 @@ DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce 414 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28418,31 +29845,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 x -2007069404 +2136344592 1 x.getClass().getName() "DataStructures.MyInteger" 1 return -142345952 +110992469 1 return.current -937106871 +1635546341 1 return.current.element -312077835 +759156157 1 return.current.element.getClass().getName() "DataStructures.MyInteger" @@ -28455,13 +29882,13 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 416 this -142345952 +110992469 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -28483,13 +29910,13 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 416 this -142345952 +110992469 1 this.current -937106871 +1635546341 1 this.current.element -312077835 +759156157 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -28514,10 +29941,10 @@ DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 417 theList -1290636791 +940060004 1 theList.header -1409829770 +785992331 1 theList.header.element null @@ -28526,17 +29953,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -1056565972 +788117692 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce 418 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28545,26 +29972,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce 418 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28573,16 +30000,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 return false @@ -28592,10 +30019,10 @@ DataStructures.LinkedList.first():::ENTER this_invocation_nonce 419 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28604,100 +30031,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce 420 theNode -1056565972 +788117692 1 theNode.element -1265656101 +1393931310 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1140459609 +1874154700 1 theNode.next.element -99092062 +1286783232 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce 420 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 theNode -1056565972 +788117692 1 theNode.element -1265656101 +1393931310 1 theNode.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next -1140459609 +1874154700 1 theNode.next.element -99092062 +1286783232 1 theNode.next.element.getClass().getName() "DataStructures.MyInteger" 1 theNode.next.next -57320772 +895947612 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce 419 this -1290636791 +940060004 1 this.header -1409829770 +785992331 1 this.header.element null @@ -28706,87 +30133,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -1056565972 +788117692 1 this.header.next.element -1265656101 +1393931310 1 this.header.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.next.next -1140459609 +1874154700 1 return -111632506 +329611835 1 return.current -1056565972 +788117692 1 return.current.element -1265656101 +1393931310 1 return.current.element.getClass().getName() "DataStructures.MyInteger" 1 return.current.next -1140459609 +1874154700 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 421 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 421 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -28796,84 +30223,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 422 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 423 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 423 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -28883,31 +30310,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 422 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return -1265656101 +1393931310 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28917,84 +30344,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 424 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 425 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 425 this -111632506 +329611835 1 this.current -1056565972 +788117692 1 this.current.element -1265656101 +1393931310 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1140459609 +1874154700 1 this.current.next.element -99092062 +1286783232 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -57320772 +895947612 1 return false @@ -29004,84 +30431,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 424 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 426 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 426 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -29091,84 +30518,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 427 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 428 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 428 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -29178,31 +30605,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 427 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return -99092062 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29212,84 +30639,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 429 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 430 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 430 this -111632506 +329611835 1 this.current -1140459609 +1874154700 1 this.current.element -99092062 +1286783232 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -57320772 +895947612 1 this.current.next.element -573577165 +1810132623 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -1281656861 +1796488937 1 return false @@ -29299,84 +30726,84 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 429 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 431 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 431 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -29386,84 +30813,84 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 432 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 433 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 433 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -29473,31 +30900,31 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 432 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return -573577165 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29507,84 +30934,84 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 434 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 435 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 435 this -111632506 +329611835 1 this.current -57320772 +895947612 1 this.current.element -573577165 +1810132623 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -1281656861 +1796488937 1 this.current.next.element -740393997 +362239120 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -937106871 +1635546341 1 return false @@ -29594,22 +31021,22 @@ DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce 434 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29622,22 +31049,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 436 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29650,22 +31077,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 436 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29681,22 +31108,22 @@ DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce 437 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29709,22 +31136,22 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 438 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29737,22 +31164,22 @@ DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce 438 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29768,22 +31195,22 @@ DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce 437 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29792,7 +31219,7 @@ this.current.next.next null 1 return -740393997 +362239120 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29802,22 +31229,22 @@ DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce 439 this -111632506 +329611835 1 this.current -1281656861 +1796488937 1 this.current.element -740393997 +362239120 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -937106871 +1635546341 1 this.current.next.element -312077835 +759156157 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" @@ -29830,1395 +31257,104 @@ DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce 440 this -111632506 -1 -this.current -1281656861 -1 -this.current.element -740393997 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -937106871 -1 -this.current.next.element -312077835 -1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -440 -this -111632506 -1 -this.current -1281656861 -1 -this.current.element -740393997 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -937106871 -1 -this.current.next.element -312077835 -1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next.next -null -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -439 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -441 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -441 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -442 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -443 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -443 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -442 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -312077835 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -444 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -445 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -445 -this -111632506 -1 -this.current -937106871 -1 -this.current.element -312077835 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -444 -this -111632506 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -446 -this -111632506 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -446 -this -111632506 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -417 -theList -1290636791 -1 -theList.header -1409829770 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -1056565972 -1 - -DataStructures.LinkedList.LinkedList():::ENTER -this_invocation_nonce -447 - -DataStructures.ListNode.ListNode(java.lang.Object):::ENTER -this_invocation_nonce -448 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -449 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 -this_invocation_nonce -449 -this -1454304511 -1 -this.element -null -1 -this.element.getClass().getName() -nonsensical -2 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 -this.next.next.element.getClass().getName() -nonsensical -2 -this.next.next.next -nonsensical -2 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 -this_invocation_nonce -448 -this -1454304511 -1 -this.element -null -1 -this.element.getClass().getName() -nonsensical -2 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 -this.next.next.element.getClass().getName() -nonsensical -2 -this.next.next.next -nonsensical -2 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 - -DataStructures.LinkedList.LinkedList():::EXIT37 -this_invocation_nonce -447 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -450 -theList -1984529870 -1 -theList.header -1454304511 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -null -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -451 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -451 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -450 -theList -1984529870 -1 -theList.header -1454304511 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -null -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -452 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -452 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -453 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -454 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 -this_invocation_nonce -454 -this -1425003533 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.first():::EXIT71 -this_invocation_nonce -453 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -return -1425003533 -1 -return.current -null -1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -455 -this -1425003533 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -455 -this -1425003533 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.zeroth():::ENTER -this_invocation_nonce -456 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -457 -theNode -1454304511 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 -this_invocation_nonce -457 -this -1296747787 -1 -this.current -1454304511 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -1454304511 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.zeroth():::EXIT62 -this_invocation_nonce -456 -this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -return -1296747787 -1 -return.current -1454304511 -1 -return.current.element -null -1 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -458 -this -1296747787 -1 -this.current -1454304511 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -458 -this -1296747787 -1 -this.current -1454304511 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -459 -this -1296747787 -1 -this.current -1454304511 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -460 -this -1296747787 -1 -this.current -1454304511 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -460 -this -1296747787 +329611835 1 this.current -1454304511 +1796488937 1 this.current.element -null +362239120 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -null +1635546341 1 this.current.next.element -nonsensical -2 +759156157 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 -return -false +null 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -459 +440 this -1296747787 +329611835 1 this.current -1454304511 +1796488937 1 this.current.element -null +362239120 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -null +1635546341 1 this.current.next.element -nonsensical -2 +759156157 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 -return null 1 -return.getClass().getName() -nonsensical -2 +return +false +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -461 +439 this -1984529870 -1 -this.header -1454304511 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -x -1776006353 +329611835 1 -x.getClass().getName() -"java.lang.Integer" +this.current +1635546341 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -462 -theNode -1454304511 +this.current.element +759156157 1 -theNode.element -null +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -462 +441 this -1463565218 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31231,92 +31367,53 @@ nonsensical this.current.next.next nonsensical 2 -theNode -1454304511 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -461 +441 this -1984529870 +329611835 1 -this.header -1454304511 +this.current +1635546341 1 -this.header.element -null +this.current.element +759156157 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next null 1 -this.header.next.element +this.current.next.element nonsensical 2 -this.header.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -this.header.next.next +this.current.next.next nonsensical 2 -x -1776006353 -1 -x.getClass().getName() -"java.lang.Integer" -1 return -1463565218 -1 -return.current -1454304511 -1 -return.current.element -null -1 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -null +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -463 +442 this -1463565218 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31332,19 +31429,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -464 +443 this -1463565218 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31360,19 +31457,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -464 +443 this -1463565218 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31391,19 +31488,19 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -463 +442 this -1463565218 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31417,27 +31514,27 @@ this.current.next.next nonsensical 2 return -null +759156157 1 return.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -465 +444 this -1296747787 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31453,19 +31550,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -466 +445 this -1296747787 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31481,19 +31578,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -466 +445 this -1296747787 +329611835 1 this.current -1454304511 +1635546341 1 this.current.element -null +759156157 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next null 1 @@ -31512,9 +31609,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -465 +444 this -1296747787 +329611835 1 this.current null @@ -31540,9 +31637,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -467 +446 this -1296747787 +329611835 1 this.current null @@ -31568,9 +31665,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -467 +446 this -1296747787 +329611835 1 this.current null @@ -31597,13 +31694,32 @@ return true 1 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +this_invocation_nonce +417 +theList +940060004 +1 +theList.header +785992331 +1 +theList.header.element +null +1 +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +788117692 +1 + DataStructures.LinkedList.LinkedList():::ENTER this_invocation_nonce -468 +447 DataStructures.ListNode.ListNode(java.lang.Object):::ENTER this_invocation_nonce -469 +448 theElement null 1 @@ -31613,7 +31729,7 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -470 +449 theElement null 1 @@ -31644,9 +31760,9 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -470 +449 this -862926188 +2091156596 1 this.element null @@ -31705,9 +31821,9 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 this_invocation_nonce -469 +448 this -862926188 +2091156596 1 this.element null @@ -31745,12 +31861,12 @@ nonsensical DataStructures.LinkedList.LinkedList():::EXIT37 this_invocation_nonce -468 +447 this -1243373525 +863831416 1 this.header -862926188 +2091156596 1 this.header.element null @@ -31773,12 +31889,12 @@ nonsensical DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -471 +450 theList -1243373525 +863831416 1 theList.header -862926188 +2091156596 1 theList.header.element null @@ -31792,12 +31908,12 @@ null DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -472 +451 this -1243373525 +863831416 1 this.header -862926188 +2091156596 1 this.header.element null @@ -31820,12 +31936,12 @@ nonsensical DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -472 +451 this -1243373525 +863831416 1 this.header -862926188 +2091156596 1 this.header.element null @@ -31851,12 +31967,12 @@ true DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -471 +450 theList -1243373525 +863831416 1 theList.header -862926188 +2091156596 1 theList.header.element null @@ -31870,275 +31986,71 @@ null DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -473 -this -1243373525 -1 -this.header -862926188 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -473 -this -1243373525 -1 -this.header -862926188 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -474 -this -1243373525 -1 -this.header -862926188 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -475 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 -this_invocation_nonce -475 -this -215465718 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.first():::EXIT71 -this_invocation_nonce -474 -this -1243373525 -1 -this.header -862926188 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 -return -215465718 -1 -return.current -null -1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -476 -this -215465718 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -476 -this -215465718 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.zeroth():::ENTER -this_invocation_nonce -477 +452 this -1243373525 +863831416 1 this.header -862926188 +2091156596 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +null +1 +this.header.next.element +nonsensical +2 +this.header.next.element.getClass().getName() +nonsensical +2 +this.header.next.next +nonsensical +2 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +452 +this +863831416 +1 +this.header +2091156596 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +null +1 +this.header.next.element +nonsensical +2 +this.header.next.element.getClass().getName() +nonsensical +2 +this.header.next.next +nonsensical +2 +return +true +1 + +DataStructures.LinkedList.first():::ENTER +this_invocation_nonce +453 +this +863831416 +1 +this.header +2091156596 1 this.header.element null @@ -32161,9 +32073,213 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -478 +454 theNode -862926188 +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +454 +this +1508395126 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.first():::EXIT71 +this_invocation_nonce +453 +this +863831416 +1 +this.header +2091156596 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +null +1 +this.header.next.element +nonsensical +2 +this.header.next.element.getClass().getName() +nonsensical +2 +this.header.next.next +nonsensical +2 +return +1508395126 +1 +return.current +null +1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +455 +this +1508395126 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +455 +this +1508395126 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +true +1 + +DataStructures.LinkedList.zeroth():::ENTER +this_invocation_nonce +456 +this +863831416 +1 +this.header +2091156596 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +null +1 +this.header.next.element +nonsensical +2 +this.header.next.element.getClass().getName() +nonsensical +2 +this.header.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +457 +theNode +2091156596 1 theNode.element null @@ -32186,12 +32302,12 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -478 +457 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32212,7 +32328,7 @@ this.current.next.next nonsensical 2 theNode -862926188 +2091156596 1 theNode.element null @@ -32235,12 +32351,12 @@ nonsensical DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -477 +456 this -1243373525 +863831416 1 this.header -862926188 +2091156596 1 this.header.element null @@ -32261,10 +32377,10 @@ this.header.next.next nonsensical 2 return -674893584 +1638172114 1 return.current -862926188 +2091156596 1 return.current.element null @@ -32278,12 +32394,12 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -479 +458 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32306,12 +32422,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -479 +458 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32337,12 +32453,12 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -480 +459 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32365,12 +32481,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -481 +460 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32393,12 +32509,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -481 +460 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32424,12 +32540,12 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -480 +459 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32458,12 +32574,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -482 +461 this -1243373525 +863831416 1 this.header -862926188 +2091156596 1 this.header.element null @@ -32484,17 +32600,17 @@ this.header.next.next nonsensical 2 x -2075326481 +972765878 1 x.getClass().getName() -"java.lang.String" +"java.lang.Integer" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -483 +462 theNode -862926188 +2091156596 1 theNode.element null @@ -32517,12 +32633,12 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -483 +462 this -582771593 +1651945012 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32543,7 +32659,7 @@ this.current.next.next nonsensical 2 theNode -862926188 +2091156596 1 theNode.element null @@ -32566,12 +32682,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -482 +461 this -1243373525 +863831416 1 this.header -862926188 +2091156596 1 this.header.element null @@ -32592,16 +32708,16 @@ this.header.next.next nonsensical 2 x -2075326481 +972765878 1 x.getClass().getName() -"java.lang.String" +"java.lang.Integer" 1 return -582771593 +1651945012 1 return.current -862926188 +2091156596 1 return.current.element null @@ -32615,12 +32731,12 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -484 +463 this -582771593 +1651945012 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32643,12 +32759,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -485 +464 this -582771593 +1651945012 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32671,12 +32787,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -485 +464 this -582771593 +1651945012 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32702,12 +32818,12 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -484 +463 this -582771593 +1651945012 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32736,12 +32852,12 @@ nonsensical DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -486 +465 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32764,12 +32880,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -487 +466 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32792,12 +32908,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -487 +466 this -674893584 +1638172114 1 this.current -862926188 +2091156596 1 this.current.element null @@ -32823,9 +32939,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -486 +465 this -674893584 +1638172114 1 this.current null @@ -32851,9 +32967,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -488 +467 this -674893584 +1638172114 1 this.current null @@ -32879,9 +32995,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -488 +467 this -674893584 +1638172114 1 this.current null @@ -32910,11 +33026,11 @@ true DataStructures.LinkedList.LinkedList():::ENTER this_invocation_nonce -489 +468 DataStructures.ListNode.ListNode(java.lang.Object):::ENTER this_invocation_nonce -490 +469 theElement null 1 @@ -32924,7 +33040,7 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -491 +470 theElement null 1 @@ -32955,9 +33071,9 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -491 +470 this -2116733231 +2034688500 1 this.element null @@ -33016,9 +33132,9 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 this_invocation_nonce -490 +469 this -2116733231 +2034688500 1 this.element null @@ -33056,12 +33172,12 @@ nonsensical DataStructures.LinkedList.LinkedList():::EXIT37 this_invocation_nonce -489 +468 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33084,12 +33200,12 @@ nonsensical DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -492 +471 theList -721317215 +1007251739 1 theList.header -2116733231 +2034688500 1 theList.header.element null @@ -33103,12 +33219,12 @@ null DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -493 +472 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33131,12 +33247,12 @@ nonsensical DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -493 +472 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33162,12 +33278,12 @@ true DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -492 +471 theList -721317215 +1007251739 1 theList.header -2116733231 +2034688500 1 theList.header.element null @@ -33181,12 +33297,12 @@ null DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -494 +473 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33209,12 +33325,12 @@ nonsensical DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -494 +473 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33240,12 +33356,12 @@ true DataStructures.LinkedList.first():::ENTER this_invocation_nonce -495 +474 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33268,7 +33384,7 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -496 +475 theNode null 1 @@ -33293,9 +33409,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -496 +475 this -633245190 +1556595366 1 this.current null @@ -33342,12 +33458,12 @@ nonsensical DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -495 +474 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33368,7 +33484,7 @@ this.header.next.next nonsensical 2 return -633245190 +1556595366 1 return.current null @@ -33385,9 +33501,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -497 +476 this -633245190 +1556595366 1 this.current null @@ -33413,9 +33529,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -497 +476 this -633245190 +1556595366 1 this.current null @@ -33444,12 +33560,12 @@ true DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -498 +477 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33472,9 +33588,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -499 +478 theNode -2116733231 +2034688500 1 theNode.element null @@ -33497,12 +33613,12 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -499 +478 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33523,7 +33639,7 @@ this.current.next.next nonsensical 2 theNode -2116733231 +2034688500 1 theNode.element null @@ -33546,12 +33662,12 @@ nonsensical DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -498 +477 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33572,10 +33688,10 @@ this.header.next.next nonsensical 2 return -22953798 +194494468 1 return.current -2116733231 +2034688500 1 return.current.element null @@ -33589,12 +33705,12 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -500 +479 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33617,12 +33733,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -500 +479 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33648,12 +33764,12 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -501 +480 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33676,12 +33792,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -502 +481 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33704,12 +33820,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -502 +481 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33735,12 +33851,12 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -501 +480 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33769,12 +33885,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -503 +482 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33795,17 +33911,17 @@ this.header.next.next nonsensical 2 x -1384910173 +1167116739 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -504 +483 theNode -2116733231 +2034688500 1 theNode.element null @@ -33828,12 +33944,12 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -504 +483 this -1757511425 +853993923 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33854,7 +33970,7 @@ this.current.next.next nonsensical 2 theNode -2116733231 +2034688500 1 theNode.element null @@ -33877,12 +33993,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -503 +482 this -721317215 +1007251739 1 this.header -2116733231 +2034688500 1 this.header.element null @@ -33903,16 +34019,16 @@ this.header.next.next nonsensical 2 x -1384910173 +1167116739 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.String" 1 return -1757511425 +853993923 1 return.current -2116733231 +2034688500 1 return.current.element null @@ -33926,12 +34042,12 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -505 +484 this -1757511425 +853993923 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33954,12 +34070,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -506 +485 this -1757511425 +853993923 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -33982,12 +34098,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -506 +485 this -1757511425 +853993923 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -34013,12 +34129,12 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -505 +484 this -1757511425 +853993923 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -34047,12 +34163,12 @@ nonsensical DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -507 +486 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -34075,12 +34191,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -508 +487 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -34103,12 +34219,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -508 +487 this -22953798 +194494468 1 this.current -2116733231 +2034688500 1 this.current.element null @@ -34134,9 +34250,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -507 +486 this -22953798 +194494468 1 this.current null @@ -34162,9 +34278,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -509 +488 this -22953798 +194494468 1 this.current null @@ -34190,9 +34306,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -509 +488 this -22953798 +194494468 1 this.current null @@ -34221,11 +34337,11 @@ true DataStructures.LinkedList.LinkedList():::ENTER this_invocation_nonce -510 +489 DataStructures.ListNode.ListNode(java.lang.Object):::ENTER this_invocation_nonce -511 +490 theElement null 1 @@ -34235,7 +34351,7 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -512 +491 theElement null 1 @@ -34266,9 +34382,9 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -512 +491 this -2004439137 +1347870667 1 this.element null @@ -34327,9 +34443,9 @@ nonsensical DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 this_invocation_nonce -511 +490 this -2004439137 +1347870667 1 this.element null @@ -34367,12 +34483,12 @@ nonsensical DataStructures.LinkedList.LinkedList():::EXIT37 this_invocation_nonce -510 +489 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34395,12 +34511,12 @@ nonsensical DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -513 +492 theList -1032605070 +1702146597 1 theList.header -2004439137 +1347870667 1 theList.header.element null @@ -34414,12 +34530,12 @@ null DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -514 +493 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34442,12 +34558,12 @@ nonsensical DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -514 +493 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34473,12 +34589,12 @@ true DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -513 +492 theList -1032605070 +1702146597 1 theList.header -2004439137 +1347870667 1 theList.header.element null @@ -34492,12 +34608,12 @@ null DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -515 +494 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34520,12 +34636,12 @@ nonsensical DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -515 +494 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34551,12 +34667,12 @@ true DataStructures.LinkedList.first():::ENTER this_invocation_nonce -516 +495 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34579,7 +34695,7 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -517 +496 theNode null 1 @@ -34604,9 +34720,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -517 +496 this -1178060083 +644460953 1 this.current null @@ -34653,12 +34769,12 @@ nonsensical DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -516 +495 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34679,7 +34795,7 @@ this.header.next.next nonsensical 2 return -1178060083 +644460953 1 return.current null @@ -34696,9 +34812,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -518 +497 this -1178060083 +644460953 1 this.current null @@ -34724,9 +34840,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -518 +497 this -1178060083 +644460953 1 this.current null @@ -34755,12 +34871,12 @@ true DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -519 +498 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34783,9 +34899,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -520 +499 theNode -2004439137 +1347870667 1 theNode.element null @@ -34808,12 +34924,12 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -520 +499 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -34834,7 +34950,7 @@ this.current.next.next nonsensical 2 theNode -2004439137 +1347870667 1 theNode.element null @@ -34857,12 +34973,12 @@ nonsensical DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -519 +498 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -34883,10 +34999,10 @@ this.header.next.next nonsensical 2 return -2004073288 +591723622 1 return.current -2004439137 +1347870667 1 return.current.element null @@ -34900,12 +35016,12 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -521 +500 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -34928,12 +35044,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -521 +500 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -34959,12 +35075,12 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -522 +501 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -34987,12 +35103,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -523 +502 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35015,12 +35131,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -523 +502 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35046,12 +35162,12 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -522 +501 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35080,12 +35196,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -524 +503 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -35106,17 +35222,17 @@ this.header.next.next nonsensical 2 x -1326231868 +1166726978 1 x.getClass().getName() -"java.lang.Double" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -525 +504 theNode -2004439137 +1347870667 1 theNode.element null @@ -35139,12 +35255,12 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -525 +504 this -1246233263 +95395916 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35165,7 +35281,7 @@ this.current.next.next nonsensical 2 theNode -2004439137 +1347870667 1 theNode.element null @@ -35188,12 +35304,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -524 +503 this -1032605070 +1702146597 1 this.header -2004439137 +1347870667 1 this.header.element null @@ -35214,16 +35330,16 @@ this.header.next.next nonsensical 2 x -1326231868 +1166726978 1 x.getClass().getName() -"java.lang.Double" +"DataStructures.MyInteger" 1 return -1246233263 +95395916 1 return.current -2004439137 +1347870667 1 return.current.element null @@ -35237,12 +35353,12 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -526 +505 this -1246233263 +95395916 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35265,12 +35381,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -527 +506 this -1246233263 +95395916 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35293,12 +35409,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -527 +506 this -1246233263 +95395916 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35324,12 +35440,12 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -526 +505 this -1246233263 +95395916 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35358,12 +35474,12 @@ nonsensical DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -528 +507 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35386,12 +35502,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -529 +508 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35414,12 +35530,12 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -529 +508 this -2004073288 +591723622 1 this.current -2004439137 +1347870667 1 this.current.element null @@ -35445,9 +35561,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -528 +507 this -2004073288 +591723622 1 this.current null @@ -35473,9 +35589,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -530 +509 this -2004073288 +591723622 1 this.current null @@ -35501,9 +35617,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -530 +509 this -2004073288 +591723622 1 this.current null @@ -35530,209 +35646,90 @@ return true 1 -DataStructures.LinkedList.zeroth():::ENTER +DataStructures.LinkedList.LinkedList():::ENTER this_invocation_nonce -531 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -null -1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next -nonsensical -2 +510 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.ListNode.ListNode(java.lang.Object):::ENTER this_invocation_nonce -532 -theNode -2004439137 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next +511 +theElement null 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next +theElement.getClass().getName() nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -532 -this -1034442050 -1 -this.current -2004439137 -1 -this.current.element +512 +theElement null 1 -this.current.element.getClass().getName() +theElement.getClass().getName() nonsensical 2 -this.current.next +n null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() +n.element nonsensical 2 -this.current.next.next +n.element.getClass().getName() nonsensical 2 -theNode -2004439137 -1 -theNode.element -null -1 -theNode.element.getClass().getName() +n.next nonsensical 2 -theNode.next -null -1 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -531 +512 this -1032605070 -1 -this.header -2004439137 +1856056345 1 -this.header.element +this.element null 1 -this.header.element.getClass().getName() +this.element.getClass().getName() nonsensical 2 -this.header.next +this.next null 1 -this.header.next.element -nonsensical -2 -this.header.next.element.getClass().getName() -nonsensical -2 -this.header.next.next +this.next.element nonsensical 2 -return -1034442050 -1 -return.current -2004439137 -1 -return.current.element -null -1 -return.current.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -return.current.next -null -1 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER -this_invocation_nonce -533 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.next.next nonsensical 2 -this.header.next -null -1 -this.header.next.element +this.next.next.element nonsensical 2 -this.header.next.element.getClass().getName() +this.next.next.element.getClass().getName() nonsensical 2 -this.header.next.next +this.next.next.next nonsensical 2 -x -1987411885 -1 -x.getClass().getName() -"java.lang.Long" -1 -p -1034442050 -1 -p.current -2004439137 -1 -p.current.element +theElement null 1 -p.current.element.getClass().getName() +theElement.getClass().getName() nonsensical 2 -p.current.next -null -1 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -534 -theElement -1987411885 -1 -theElement.getClass().getName() -"java.lang.Long" -1 n null 1 @@ -35755,18 +35752,18 @@ n.next.next nonsensical 2 -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +DataStructures.ListNode.ListNode(java.lang.Object):::EXIT13 this_invocation_nonce -534 +511 this -470905757 +1856056345 1 this.element -1987411885 +null 1 this.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.next null 1 @@ -35789,41 +35786,67 @@ this.next.next.next nonsensical 2 theElement -1987411885 +null 1 theElement.getClass().getName() -"java.lang.Long" +nonsensical +2 + +DataStructures.LinkedList.LinkedList():::EXIT37 +this_invocation_nonce +510 +this +1778535015 1 -n +this.header +1856056345 +1 +this.header.element null 1 -n.element -nonsensical -2 -n.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -n.next +this.header.next +null +1 +this.header.next.element nonsensical 2 -n.next.element +this.header.next.element.getClass().getName() nonsensical 2 -n.next.element.getClass().getName() +this.header.next.next nonsensical 2 -n.next.next + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER +this_invocation_nonce +513 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element +null +1 +theList.header.element.getClass().getName() nonsensical 2 +theList.header.next +null +1 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -533 +514 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -35832,47 +35855,57 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null -1 -x -1987411885 -1 -x.getClass().getName() -"java.lang.Long" +nonsensical +2 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +514 +this +1778535015 1 -p -1034442050 +this.header +1856056345 1 -p.current -2004439137 +this.header.element +null 1 -p.current.element +this.header.element.getClass().getName() +nonsensical +2 +this.header.next null 1 -p.current.element.getClass().getName() +this.header.next.element nonsensical 2 -p.current.next -470905757 +this.header.next.element.getClass().getName() +nonsensical +2 +this.header.next.next +nonsensical +2 +return +true 1 -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -535 +513 theList -1032605070 +1778535015 1 theList.header -2004439137 +1856056345 1 theList.header.element null @@ -35881,17 +35914,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -470905757 +null 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -536 +515 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -35900,26 +35933,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null -1 +nonsensical +2 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -536 +515 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -35928,29 +35961,29 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedList.first():::ENTER this_invocation_nonce -537 +516 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -35959,33 +35992,33 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -538 +517 theNode -470905757 +null 1 theNode.element -1987411885 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -null -1 +nonsensical +2 theNode.next.element nonsensical 2 @@ -35998,22 +36031,22 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -538 +517 this -1035818704 +2032251042 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -36024,17 +36057,17 @@ this.current.next.next nonsensical 2 theNode -470905757 +null 1 theNode.element -1987411885 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -null -1 +nonsensical +2 theNode.next.element nonsensical 2 @@ -36047,12 +36080,12 @@ nonsensical DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -537 +516 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -36061,51 +36094,51 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null -1 +nonsensical +2 return -1035818704 +2032251042 1 return.current -470905757 +null 1 return.current.element -1987411885 -1 +nonsensical +2 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -539 +518 this -1035818704 +2032251042 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -36118,22 +36151,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -539 +518 this -1035818704 +2032251042 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -36144,80 +36177,77 @@ this.current.next.next nonsensical 2 return -false +true 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -540 +519 this -1035818704 -1 -this.current -470905757 +1778535015 1 -this.current.element -1987411885 +this.header +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +this.header.element +null 1 -this.current.next +this.header.element.getClass().getName() +nonsensical +2 +this.header.next null 1 -this.current.next.element +this.header.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.header.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -541 -this -1035818704 -1 -this.current -470905757 -1 -this.current.element -1987411885 +520 +theNode +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +theNode.element +null 1 -this.current.next +theNode.element.getClass().getName() +nonsensical +2 +theNode.next null 1 -this.current.next.element +theNode.next.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -541 +520 this -1035818704 +24433162 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36230,87 +36260,86 @@ nonsensical this.current.next.next nonsensical 2 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -540 -this -1035818704 -1 -this.current -470905757 -1 -this.current.element -1987411885 +theNode +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +theNode.element +null 1 -this.current.next +theNode.element.getClass().getName() +nonsensical +2 +theNode.next null 1 -this.current.next.element +theNode.next.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next nonsensical 2 -return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" -1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -542 +519 this -1035818704 -1 -this.current -470905757 +1778535015 1 -this.current.element -1987411885 +this.header +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +this.header.element +null 1 -this.current.next +this.header.element.getClass().getName() +nonsensical +2 +this.header.next null 1 -this.current.next.element +this.header.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.header.next.next +nonsensical +2 +return +24433162 +1 +return.current +1856056345 +1 +return.current.element +null +1 +return.current.element.getClass().getName() nonsensical 2 +return.current.next +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -543 +521 this -1035818704 +24433162 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36326,19 +36355,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -543 +521 this -1035818704 +24433162 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36355,24 +36384,24 @@ return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -542 +522 this -1035818704 +24433162 1 this.current -null +1856056345 1 this.current.element -nonsensical -2 +null +1 this.current.element.getClass().getName() nonsensical 2 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -36385,22 +36414,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -544 +523 this -1035818704 +24433162 1 this.current -null +1856056345 1 this.current.element -nonsensical -2 +null +1 this.current.element.getClass().getName() nonsensical 2 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -36413,22 +36442,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -544 +523 this -1035818704 +24433162 1 this.current -null +1856056345 1 this.current.element -nonsensical -2 +null +1 this.current.element.getClass().getName() nonsensical 2 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -36439,95 +36468,51 @@ this.current.next.next nonsensical 2 return -true -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -535 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -545 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -null +false 1 -DataStructures.LinkedList.isEmpty():::EXIT45 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -545 +522 this -1032605070 +24433162 1 -this.header -2004439137 +this.current +1856056345 1 -this.header.element +this.current.element null 1 -this.header.element.getClass().getName() +this.current.element.getClass().getName() nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next +this.current.next null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 return -false +null 1 +return.getClass().getName() +nonsensical +2 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -546 +524 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -36536,30 +36521,36 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null +nonsensical +2 +x +1725097945 +1 +x.getClass().getName() +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -547 +525 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next null 1 @@ -36575,19 +36566,19 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -547 +525 this -1502515546 +519821334 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36601,14 +36592,14 @@ this.current.next.next nonsensical 2 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next null 1 @@ -36622,14 +36613,14 @@ theNode.next.next nonsensical 2 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -546 +524 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -36638,48 +36629,82 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null +nonsensical +2 +x +1725097945 +1 +x.getClass().getName() +"java.lang.Double" 1 return -1502515546 +519821334 1 return.current -470905757 +1856056345 1 return.current.element -1987411885 +null 1 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -548 +526 this -1502515546 +519821334 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" +nonsensical +2 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +527 +this +519821334 +1 +this.current +1856056345 1 +this.current.element +null +1 +this.current.element.getClass().getName() +nonsensical +2 this.current.next null 1 @@ -36695,19 +36720,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -548 +527 this -1502515546 +519821334 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36724,21 +36749,55 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -549 +526 this -1502515546 +519821334 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" +nonsensical +2 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +null +1 +return.getClass().getName() +nonsensical +2 + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +528 +this +24433162 +1 +this.current +1856056345 +1 +this.current.element +null 1 +this.current.element.getClass().getName() +nonsensical +2 this.current.next null 1 @@ -36754,19 +36813,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -550 +529 this -1502515546 +24433162 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36782,19 +36841,19 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -550 +529 this -1502515546 +24433162 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next null 1 @@ -36811,24 +36870,80 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -549 +528 this -1502515546 +24433162 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +530 +this +24433162 +1 +this.current +null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +530 +this +24433162 +1 +this.current null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 this.current.next.element nonsensical 2 @@ -36839,20 +36954,17 @@ this.current.next.next nonsensical 2 return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +true 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -551 +531 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -36861,39 +36973,33 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next -null -1 -x -518576549 -1 -x.getClass().getName() -"java.lang.String" -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -552 +532 theNode -null +1856056345 1 theNode.element -nonsensical -2 +null +1 theNode.element.getClass().getName() nonsensical 2 theNode.next -nonsensical -2 +null +1 theNode.next.element nonsensical 2 @@ -36906,22 +37012,22 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -552 +532 this -1227419517 +1781256139 1 this.current -null +1856056345 1 this.current.element -nonsensical -2 +null +1 this.current.element.getClass().getName() nonsensical 2 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -36932,17 +37038,17 @@ this.current.next.next nonsensical 2 theNode -null +1856056345 1 theNode.element -nonsensical -2 +null +1 theNode.element.getClass().getName() nonsensical 2 theNode.next -nonsensical -2 +null +1 theNode.next.element nonsensical 2 @@ -36953,14 +37059,14 @@ theNode.next.next nonsensical 2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -551 +531 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -36969,168 +37075,309 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +null 1 this.header.next.element -1987411885 -1 +nonsensical +2 this.header.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.header.next.next +nonsensical +2 +return +1781256139 +1 +return.current +1856056345 +1 +return.current.element null 1 -x -518576549 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +null 1 -x.getClass().getName() -"java.lang.String" + +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER +this_invocation_nonce +533 +this +1778535015 1 -return -1227419517 +this.header +1856056345 1 -return.current +this.header.element null 1 -return.current.element +this.header.element.getClass().getName() nonsensical 2 -return.current.element.getClass().getName() +this.header.next +null +1 +this.header.next.element nonsensical 2 -return.current.next +this.header.next.element.getClass().getName() +nonsensical +2 +this.header.next.next +nonsensical +2 +x +1307096070 +1 +x.getClass().getName() +"java.lang.Long" +1 +p +1781256139 +1 +p.current +1856056345 +1 +p.current.element +null +1 +p.current.element.getClass().getName() nonsensical 2 +p.current.next +null +1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -553 -this -1227419517 +534 +theElement +1307096070 1 -this.current +theElement.getClass().getName() +"java.lang.Long" +1 +n null 1 -this.current.element +n.element nonsensical 2 -this.current.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -this.current.next +n.next nonsensical 2 -this.current.next.element +n.next.element nonsensical 2 -this.current.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -this.current.next.next +n.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -554 +534 this -1227419517 +1014328909 1 -this.current +this.element +1307096070 +1 +this.element.getClass().getName() +"java.lang.Long" +1 +this.next null 1 -this.current.element +this.next.element nonsensical 2 -this.current.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -this.current.next +this.next.next nonsensical 2 -this.current.next.element +this.next.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.next.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.next.next.next nonsensical 2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -554 -this -1227419517 +theElement +1307096070 1 -this.current +theElement.getClass().getName() +"java.lang.Long" +1 +n null 1 -this.current.element +n.element nonsensical 2 -this.current.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -this.current.next +n.next nonsensical 2 -this.current.next.element +n.next.element nonsensical 2 -this.current.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -this.current.next.next +n.next.next nonsensical 2 -return -true -1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -553 +533 this -1227419517 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next +this.header.element.getClass().getName() nonsensical 2 -this.current.next.element +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +null +1 +x +1307096070 +1 +x.getClass().getName() +"java.lang.Long" +1 +p +1781256139 +1 +p.current +1856056345 +1 +p.current.element +null +1 +p.current.element.getClass().getName() nonsensical 2 -this.current.next.element.getClass().getName() +p.current.next +1014328909 +1 + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER +this_invocation_nonce +535 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element +null +1 +theList.header.element.getClass().getName() nonsensical 2 -this.current.next.next +theList.header.next +1014328909 +1 + +DataStructures.LinkedList.isEmpty():::ENTER +this_invocation_nonce +536 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() nonsensical 2 -return +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +null +1 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +536 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element null 1 -return.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +null +1 +return +false +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -555 +537 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -37139,10 +37386,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -37150,21 +37397,15 @@ this.header.next.element.getClass().getName() this.header.next.next null 1 -x -511909137 -1 -x.getClass().getName() -"java.lang.String" -1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -556 +538 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" @@ -37184,15 +37425,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -556 +538 this -837375677 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37210,10 +37451,10 @@ this.current.next.next nonsensical 2 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" @@ -37231,14 +37472,14 @@ theNode.next.next nonsensical 2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -555 +537 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -37247,10 +37488,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -37258,20 +37499,14 @@ this.header.next.element.getClass().getName() this.header.next.next null 1 -x -511909137 -1 -x.getClass().getName() -"java.lang.String" -1 return -837375677 +2081303229 1 return.current -470905757 +1014328909 1 return.current.element -1987411885 +1307096070 1 return.current.element.getClass().getName() "java.lang.Long" @@ -37280,17 +37515,76 @@ return.current.next null 1 +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +539 +this +2081303229 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +539 +this +2081303229 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +false +1 + DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -557 +540 this -837375677 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37310,15 +37604,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -558 +541 this -837375677 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37338,15 +37632,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -558 +541 this -837375677 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37369,15 +37663,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -557 +540 this -837375677 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37395,7 +37689,7 @@ this.current.next.next nonsensical 2 return -1987411885 +1307096070 1 return.getClass().getName() "java.lang.Long" @@ -37403,15 +37697,15 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -559 +542 this -1502515546 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37431,15 +37725,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -560 +543 this -1502515546 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37459,15 +37753,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -560 +543 this -1502515546 +2081303229 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37490,9 +37784,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -559 +542 this -1502515546 +2081303229 1 this.current null @@ -37518,9 +37812,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -561 +544 this -1502515546 +2081303229 1 this.current null @@ -37546,9 +37840,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -561 +544 this -1502515546 +2081303229 1 this.current null @@ -37575,116 +37869,33 @@ return true 1 -DataStructures.LinkedList.zeroth():::ENTER -this_invocation_nonce -562 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -null -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -563 -theNode -2004439137 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -null -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -563 -this -1312664548 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null +535 +theList +1778535015 1 -theNode -2004439137 +theList.header +1856056345 1 -theNode.element +theList.header.element null 1 -theNode.element.getClass().getName() +theList.header.element.getClass().getName() nonsensical 2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -null +theList.header.next +1014328909 1 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -562 +545 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -37693,10 +37904,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -37704,210 +37915,46 @@ this.header.next.element.getClass().getName() this.header.next.next null 1 -return -1312664548 -1 -return.current -2004439137 -1 -return.current.element -null -1 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -470905757 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -564 -this -1312664548 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -564 -this -1312664548 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -565 -this -1312664548 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -566 -this -1312664548 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -566 +545 this -1312664548 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next +this.header.next.next null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -565 -this -1312664548 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 -return -null -1 -return.getClass().getName() -nonsensical -2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -567 +546 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -37916,10 +37963,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -37927,21 +37974,15 @@ this.header.next.element.getClass().getName() this.header.next.next null 1 -x -853552605 -1 -x.getClass().getName() -"java.io.PrintStream" -1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -568 +547 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" @@ -37961,15 +38002,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -568 +547 this -467870275 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -37987,10 +38028,10 @@ this.current.next.next nonsensical 2 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" @@ -38008,14 +38049,14 @@ theNode.next.next nonsensical 2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -567 +546 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -38024,10 +38065,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -38035,20 +38076,14 @@ this.header.next.element.getClass().getName() this.header.next.next null 1 -x -853552605 -1 -x.getClass().getName() -"java.io.PrintStream" -1 return -467870275 +1223685984 1 return.current -470905757 +1014328909 1 return.current.element -1987411885 +1307096070 1 return.current.element.getClass().getName() "java.lang.Long" @@ -38057,17 +38092,17 @@ return.current.next null 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -569 +548 this -467870275 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38085,17 +38120,17 @@ this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -570 +548 this -467870275 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38112,18 +38147,21 @@ nonsensical this.current.next.next nonsensical 2 +return +false +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -570 +549 this -467870275 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38140,21 +38178,18 @@ nonsensical this.current.next.next nonsensical 2 -return -false -1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -569 +550 this -467870275 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38171,146 +38206,149 @@ nonsensical this.current.next.next nonsensical 2 -return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" -1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -571 +550 this -1312664548 +1223685984 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -null +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -572 +549 this -1312664548 +1223685984 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -null +nonsensical +2 +return +1307096070 +1 +return.getClass().getName() +"java.lang.Long" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -572 +551 this -1312664548 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next +this.header.next.next null 1 -return -false +x +1076835071 +1 +x.getClass().getName() +"java.lang.String" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -571 -this -1312664548 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next +552 +theNode null 1 -this.current.next.element +theNode.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -573 +552 this -1312664548 +1463757745 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -38320,56 +38358,95 @@ nonsensical this.current.next.next nonsensical 2 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -573 +551 this -1312664548 +1778535015 1 -this.current -470905757 +this.header +1856056345 1 -this.current.element -1987411885 +this.header.element +null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next +this.header.next.next null 1 -this.current.next.element +x +1076835071 +1 +x.getClass().getName() +"java.lang.String" +1 +return +1463757745 +1 +return.current +null +1 +return.current.element nonsensical 2 -this.current.next.element.getClass().getName() +return.current.element.getClass().getName() nonsensical 2 -this.current.next.next +return.current.next nonsensical 2 -return -false -1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -574 +553 this -1312664548 +1463757745 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -38382,22 +38459,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -575 +554 this -1312664548 +1463757745 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -38410,22 +38487,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -575 +554 this -1312664548 +1463757745 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -38436,27 +38513,27 @@ this.current.next.next nonsensical 2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -574 +553 this -1312664548 +1463757745 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -38467,20 +38544,20 @@ this.current.next.next nonsensical 2 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -576 +555 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -38489,10 +38566,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -38501,20 +38578,20 @@ this.header.next.next null 1 x -2042940439 +1525262377 1 x.getClass().getName() -"java.lang.Class" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -577 +556 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" @@ -38534,15 +38611,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -577 +556 this -1558080258 +1837760739 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38560,10 +38637,10 @@ this.current.next.next nonsensical 2 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" @@ -38583,12 +38660,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -576 +555 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -38597,10 +38674,10 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" @@ -38609,19 +38686,19 @@ this.header.next.next null 1 x -2042940439 +1525262377 1 x.getClass().getName() -"java.lang.Class" +"java.lang.String" 1 return -1558080258 +1837760739 1 return.current -470905757 +1014328909 1 return.current.element -1987411885 +1307096070 1 return.current.element.getClass().getName() "java.lang.Long" @@ -38632,15 +38709,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -578 +557 this -1558080258 +1837760739 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38660,15 +38737,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -579 +558 this -1558080258 +1837760739 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38688,15 +38765,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -579 +558 this -1558080258 +1837760739 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38719,15 +38796,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -578 +557 this -1558080258 +1837760739 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38745,7 +38822,7 @@ this.current.next.next nonsensical 2 return -1987411885 +1307096070 1 return.getClass().getName() "java.lang.Long" @@ -38753,15 +38830,15 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -580 +559 this -1312664548 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38781,15 +38858,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -581 +560 this -1312664548 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38809,15 +38886,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -581 +560 this -1312664548 +1223685984 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" @@ -38840,9 +38917,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -580 +559 this -1312664548 +1223685984 1 this.current null @@ -38868,37 +38945,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -582 -this -1312664548 -1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -582 +561 this -1312664548 +1223685984 1 this.current null @@ -38921,401 +38970,46 @@ nonsensical this.current.next.next nonsensical 2 -return -true -1 - -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -583 -this -1034442050 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -584 -this -1034442050 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -584 -this -1034442050 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -null -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -583 +561 this -1034442050 +1223685984 1 this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER -this_invocation_nonce -585 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -null -1 -x -239304688 -1 -x.getClass().getName() -"java.lang.Object" -1 -p -1034442050 -1 -p.current -470905757 -1 -p.current.element -1987411885 -1 -p.current.element.getClass().getName() -"java.lang.Long" -1 -p.current.next -null -1 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -586 -theElement -239304688 -1 -theElement.getClass().getName() -"java.lang.Object" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 -this_invocation_nonce -586 -this -1904504032 -1 -this.element -239304688 -1 -this.element.getClass().getName() -"java.lang.Object" -1 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 -this.next.next.element.getClass().getName() -nonsensical -2 -this.next.next.next -nonsensical -2 -theElement -239304688 -1 -theElement.getClass().getName() -"java.lang.Object" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 -this_invocation_nonce -585 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -239304688 -1 -x.getClass().getName() -"java.lang.Object" -1 -p -1034442050 -1 -p.current -470905757 -1 -p.current.element -1987411885 -1 -p.current.element.getClass().getName() -"java.lang.Long" -1 -p.current.next -1904504032 -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -587 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -588 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -588 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element null 1 -this.header.element.getClass().getName() +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 return -false +true 1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -589 +562 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -39324,38 +39018,38 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +null 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -590 +563 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 +1014328909 1 theNode.next.element -239304688 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 theNode.next.next null @@ -39363,61 +39057,61 @@ null DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -590 +563 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null 1 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 +1014328909 1 theNode.next.element -239304688 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 theNode.next.next null 1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -589 +562 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -39426,56 +39120,56 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +null 1 return -755507289 +1418428263 1 return.current -470905757 +1856056345 1 return.current.element -1987411885 +null 1 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next -1904504032 +1014328909 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -591 +564 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null @@ -39483,27 +39177,27 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -591 +564 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null @@ -39514,27 +39208,27 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -592 +565 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null @@ -39542,27 +39236,27 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -593 +566 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null @@ -39570,27 +39264,27 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -593 +566 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null @@ -39601,139 +39295,209 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -592 +565 this -755507289 +1418428263 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next null 1 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -594 +567 this -755507289 +1778535015 1 -this.current -470905757 +this.header +1856056345 1 -this.current.element -1987411885 +this.header.element +null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next -1904504032 +this.header.next.next +null 1 -this.current.next.element -239304688 +x +2059904228 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +x.getClass().getName() +"java.io.PrintStream" 1 -this.current.next.next + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +568 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -595 +568 this -755507289 +1836643189 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next +nonsensical +2 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -595 +567 this -755507289 -1 -this.current -470905757 +1778535015 1 -this.current.element -1987411885 +this.header +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +this.header.element +null 1 -this.current.next -1904504032 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next.element -239304688 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next +this.header.next.next null 1 +x +2059904228 +1 +x.getClass().getName() +"java.io.PrintStream" +1 return -false +1836643189 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +null 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -594 +569 this -755507289 +1836643189 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -39750,18 +39514,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -596 +570 this -755507289 +1836643189 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -39778,18 +39542,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -596 +570 this -755507289 +1836643189 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -39807,20 +39571,20 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -597 +569 this -755507289 +1836643189 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -39834,114 +39598,114 @@ nonsensical this.current.next.next nonsensical 2 +return +1307096070 +1 +return.getClass().getName() +"java.lang.Long" +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -598 +571 this -755507289 +1418428263 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +null +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -598 +572 this -755507289 +1418428263 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 -return -false +null 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -597 +572 this -755507289 +1418428263 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 -return -239304688 +null 1 -return.getClass().getName() -"java.lang.Object" +return +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -599 +571 this -755507289 +1418428263 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -39958,18 +39722,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -600 +573 this -755507289 +1418428263 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -39986,18 +39750,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -600 +573 this -755507289 +1418428263 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next null @@ -40015,24 +39779,24 @@ return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -599 +574 this -755507289 +1418428263 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -40045,22 +39809,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -601 +575 this -755507289 +1418428263 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -40073,22 +39837,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -601 +575 this -755507289 +1418428263 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -40099,64 +39863,51 @@ this.current.next.next nonsensical 2 return -true +false 1 -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -587 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null +574 +this +1418428263 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 +this.current +1014328909 1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -602 -this -1032605070 +this.current.element +1307096070 1 -this.header -2004439137 +this.current.element.getClass().getName() +"java.lang.Long" 1 -this.header.element +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +1307096070 1 -this.header.next.element.getClass().getName() +return.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -DataStructures.LinkedList.isEmpty():::EXIT45 +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -602 +576 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -40165,131 +39916,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -return -false -1 - -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -603 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element null 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +x +25126016 1 -this.header.next.next -1904504032 +x.getClass().getName() +"java.lang.Class" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -604 +577 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -604 +577 this -1887685159 +1355316001 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -null -1 +nonsensical +2 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -603 +576 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -40298,290 +40024,206 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +null +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" 1 return -1887685159 +1355316001 1 return.current -470905757 +1014328909 1 return.current.element -1987411885 +1307096070 1 return.current.element.getClass().getName() "java.lang.Long" 1 return.current.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -605 -this -1887685159 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -605 -this -1887685159 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next null 1 -return -false -1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -606 +578 this -1887685159 +1355316001 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -607 +579 this -1887685159 +1355316001 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -607 +579 this -1887685159 +1355316001 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -606 +578 this -1887685159 +1355316001 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -1987411885 +1307096070 1 return.getClass().getName() "java.lang.Long" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -608 +580 this -1032605070 +1418428263 1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +1014328909 1 -this.header.next.element -1987411885 +this.current.element +1307096070 1 -this.header.next.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -x -1548550182 -1 -x.getClass().getName() -"java.lang.Integer" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -609 -theNode +this.current.next null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -609 +581 this -1128590881 +1418428263 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -40591,82 +40233,43 @@ nonsensical this.current.next.next nonsensical 2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -608 +581 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null +1418428263 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +1014328909 1 -this.header.next.element -1987411885 +this.current.element +1307096070 1 -this.header.next.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -x -1548550182 -1 -x.getClass().getName() -"java.lang.Integer" -1 -return -1128590881 -1 -return.current +this.current.next null 1 -return.current.element +this.current.next.element nonsensical 2 -return.current.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -return.current.next +this.current.next.next nonsensical 2 +return +false +1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -610 +580 this -1128590881 +1418428263 1 this.current null @@ -40692,9 +40295,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -611 +582 this -1128590881 +1418428263 1 this.current null @@ -40720,9 +40323,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -611 +582 this -1128590881 +1418428263 1 this.current null @@ -40749,24 +40352,111 @@ return true 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -610 +583 this -1128590881 +1781256139 1 this.current -null +1856056345 1 this.current.element +null +1 +this.current.element.getClass().getName() nonsensical 2 +this.current.next +1014328909 +1 +this.current.next.element +1307096070 +1 +this.current.next.element.getClass().getName() +"java.lang.Long" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +584 +this +1781256139 +1 +this.current +1856056345 +1 +this.current.element +null +1 this.current.element.getClass().getName() nonsensical 2 this.current.next +1014328909 +1 +this.current.next.element +1307096070 +1 +this.current.next.element.getClass().getName() +"java.lang.Long" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +584 +this +1781256139 +1 +this.current +1856056345 +1 +this.current.element +null +1 +this.current.element.getClass().getName() nonsensical 2 +this.current.next +1014328909 +1 +this.current.next.element +1307096070 +1 +this.current.next.element.getClass().getName() +"java.lang.Long" +1 +this.current.next.next +null +1 +return +false +1 + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +583 +this +1781256139 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +null +1 this.current.next.element nonsensical 2 @@ -40776,21 +40466,15 @@ nonsensical this.current.next.next nonsensical 2 -return -null -1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER this_invocation_nonce -612 +585 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -40799,106 +40483,139 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +null 1 x -1651366663 +1597462040 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" +1 +p +1781256139 +1 +p.current +1014328909 +1 +p.current.element +1307096070 +1 +p.current.element.getClass().getName() +"java.lang.Long" +1 +p.current.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -613 -theNode -1904504032 -1 -theNode.element -239304688 +586 +theElement +1597462040 1 -theNode.element.getClass().getName() +theElement.getClass().getName() "java.lang.Object" 1 -theNode.next +n null 1 -theNode.next.element +n.element nonsensical 2 -theNode.next.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -613 +586 this -440851213 +403716510 1 -this.current -1904504032 -1 -this.current.element -239304688 +this.element +1597462040 1 -this.current.element.getClass().getName() +this.element.getClass().getName() "java.lang.Object" 1 -this.current.next +this.next null 1 -this.current.next.element +this.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.next.next nonsensical 2 -theNode -1904504032 -1 -theNode.element -239304688 +this.next.next.element +nonsensical +2 +this.next.next.element.getClass().getName() +nonsensical +2 +this.next.next.next +nonsensical +2 +theElement +1597462040 1 -theNode.element.getClass().getName() +theElement.getClass().getName() "java.lang.Object" 1 -theNode.next +n null 1 -theNode.next.element +n.element nonsensical 2 -theNode.next.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next nonsensical 2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -612 +585 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -40907,208 +40624,190 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1651366663 +1597462040 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 -return -440851213 +p +1781256139 1 -return.current -1904504032 +p.current +1014328909 1 -return.current.element -239304688 +p.current.element +1307096070 1 -return.current.element.getClass().getName() -"java.lang.Object" +p.current.element.getClass().getName() +"java.lang.Long" 1 -return.current.next -null +p.current.next +403716510 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -614 -this -440851213 -1 -this.current -1904504032 -1 -this.current.element -239304688 +587 +theList +1778535015 1 -this.current.element.getClass().getName() -"java.lang.Object" +theList.header +1856056345 1 -this.current.next +theList.header.element null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +theList.header.element.getClass().getName() nonsensical 2 +theList.header.next +1014328909 +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -615 +588 this -440851213 -1 -this.current -1904504032 +1778535015 1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header +1856056345 1 -this.current.next +this.header.element null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -615 +588 this -440851213 +1778535015 1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header +1856056345 1 -this.current.next +this.header.element null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -614 +589 this -440851213 -1 -this.current -1904504032 +1778535015 1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header +1856056345 1 -this.current.next +this.header.element null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 -return -239304688 +this.header.next +1014328909 1 -return.getClass().getName() -"java.lang.Object" +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -616 -this -1887685159 -1 -this.current -470905757 +590 +theNode +1014328909 1 -this.current.element -1987411885 +theNode.element +1307096070 1 -this.current.element.getClass().getName() +theNode.element.getClass().getName() "java.lang.Long" 1 -this.current.next -1904504032 +theNode.next +403716510 1 -this.current.next.element -239304688 +theNode.next.element +1597462040 1 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() "java.lang.Object" 1 -this.current.next.next +theNode.next.next null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -617 +590 this -1887685159 +853119666 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -41116,508 +40815,356 @@ this.current.next.element.getClass().getName() this.current.next.next null 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -617 -this -1887685159 -1 -this.current -470905757 +theNode +1014328909 1 -this.current.element -1987411885 +theNode.element +1307096070 1 -this.current.element.getClass().getName() +theNode.element.getClass().getName() "java.lang.Long" 1 -this.current.next -1904504032 +theNode.next +403716510 1 -this.current.next.element -239304688 +theNode.next.element +1597462040 1 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() "java.lang.Object" 1 -this.current.next.next +theNode.next.next null 1 -return -false -1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -616 +589 this -1887685159 -1 -this.current -1904504032 -1 -this.current.element -239304688 +1778535015 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header +1856056345 1 -this.current.next +this.header.element null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +853119666 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -618 +591 this -1887685159 +853119666 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -618 +591 this -1887685159 +853119666 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -619 +592 this -1887685159 +853119666 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -620 +593 this -1887685159 +853119666 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -620 +593 this -1887685159 +853119666 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -619 +592 this -1887685159 +853119666 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -239304688 +1597462040 1 -return.getClass().getName() +this.current.next.element.getClass().getName() "java.lang.Object" 1 - -DataStructures.LinkedList.find(java.lang.Object):::ENTER -this_invocation_nonce -621 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element +this.current.next.next null 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +return +1307096070 1 -this.header.next.element.getClass().getName() +return.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -x -567754741 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -622 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -622 +594 this -984088366 +853119666 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 -this_invocation_nonce -621 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +1307096070 1 -this.header.next.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -x -567754741 +this.current.next +403716510 1 -x.getClass().getName() -"DataStructures.MyInteger" +this.current.next.element +1597462040 1 -return -984088366 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -return.current +this.current.next.next null 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -623 +595 this -984088366 +853119666 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -624 -this -984088366 +"java.lang.Object" 1 -this.current +this.current.next.next null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -624 +595 this -984088366 +853119666 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 return -true +false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -623 +594 this -984088366 +853119666 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -41627,83 +41174,46 @@ nonsensical this.current.next.next nonsensical 2 -return -null -1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -625 +596 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +853119666 1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1801601815 -1 -x.getClass().getName() -"java.lang.Double" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -626 -theNode -1904504032 +this.current +403716510 1 -theNode.element -239304688 +this.current.element +1597462040 1 -theNode.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -626 +596 this -2282005 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41720,88 +41230,21 @@ nonsensical this.current.next.next nonsensical 2 -theNode -1904504032 -1 -theNode.element -239304688 -1 -theNode.element.getClass().getName() -"java.lang.Object" -1 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -625 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1801601815 -1 -x.getClass().getName() -"java.lang.Double" -1 return -2282005 -1 -return.current -1904504032 -1 -return.current.element -239304688 -1 -return.current.element.getClass().getName() -"java.lang.Object" -1 -return.current.next -null +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -627 +597 this -2282005 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41821,15 +41264,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -628 +598 this -2282005 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41849,15 +41292,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -628 +598 this -2282005 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41880,15 +41323,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -627 +597 this -2282005 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41906,7 +41349,7 @@ this.current.next.next nonsensical 2 return -239304688 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -41914,15 +41357,15 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -629 +599 this -1887685159 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41942,15 +41385,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -630 +600 this -1887685159 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -41970,15 +41413,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -630 +600 this -1887685159 +853119666 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -42001,9 +41444,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -629 +599 this -1887685159 +853119666 1 this.current null @@ -42029,9 +41472,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -631 +601 this -1887685159 +853119666 1 this.current null @@ -42057,9 +41500,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -631 +601 this -1887685159 +853119666 1 this.current null @@ -42086,14 +41529,33 @@ return true 1 -DataStructures.LinkedList.zeroth():::ENTER +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -632 +587 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element +null +1 +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +1014328909 +1 + +DataStructures.LinkedList.isEmpty():::ENTER +this_invocation_nonce +602 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -42102,100 +41564,159 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +602 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +false +1 + +DataStructures.LinkedList.first():::ENTER +this_invocation_nonce +603 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -633 +604 theNode -2004439137 +1014328909 1 theNode.element -null +1307096070 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next -470905757 +403716510 1 theNode.next.element -1987411885 +1597462040 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next.next -1904504032 +null 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -633 +604 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 theNode -2004439137 +1014328909 1 theNode.element -null +1307096070 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next -470905757 +403716510 1 theNode.next.element -1987411885 +1597462040 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next.next -1904504032 +null 1 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -632 +603 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -42204,87 +41725,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 return -1846436036 +559670971 1 return.current -2004439137 +1014328909 1 return.current.element -null +1307096070 1 return.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 return.current.next -470905757 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -634 +605 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -634 +605 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 return false @@ -42292,86 +41813,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -635 +606 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -636 +607 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -636 +607 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 return false @@ -42379,46 +41900,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -635 +606 this -1846436036 +559670971 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 return -null +1307096070 1 return.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -637 +608 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -42427,106 +41948,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1911757902 +1144648478 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -638 +609 theNode -2004439137 -1 -theNode.element null 1 +theNode.element +nonsensical +2 theNode.element.getClass().getName() nonsensical 2 theNode.next -470905757 -1 +nonsensical +2 theNode.next.element -1987411885 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -638 +609 this -264732500 +1576861390 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 theNode -2004439137 -1 -theNode.element null 1 +theNode.element +nonsensical +2 theNode.element.getClass().getName() nonsensical 2 theNode.next -470905757 -1 +nonsensical +2 theNode.next.element -1987411885 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next.next -1904504032 -1 +nonsensical +2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -637 +608 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -42535,153 +42056,153 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1911757902 +1144648478 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 return -264732500 +1576861390 1 return.current -2004439137 -1 -return.current.element null 1 +return.current.element +nonsensical +2 return.current.element.getClass().getName() nonsensical 2 return.current.next -470905757 -1 +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -639 +610 this -264732500 +1576861390 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -640 +611 this -264732500 +1576861390 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -640 +611 this -264732500 +1576861390 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -639 +610 this -264732500 +1576861390 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 return null 1 @@ -42689,228 +42210,304 @@ return.getClass().getName() nonsensical 2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -641 +612 this -1846436036 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 +1 +x +600746945 +1 +x.getClass().getName() +"java.lang.String" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -642 +613 +theNode +403716510 +1 +theNode.element +1597462040 +1 +theNode.element.getClass().getName() +"java.lang.Object" +1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +613 this -1846436036 +1566502717 1 this.current -2004439137 +403716510 1 this.current.element -null +1597462040 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +theNode +403716510 +1 +theNode.element +1597462040 +1 +theNode.element.getClass().getName() +"java.lang.Object" 1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -642 +612 this -1846436036 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 +1 +x +600746945 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +1566502717 +1 +return.current +403716510 +1 +return.current.element +1597462040 +1 +return.current.element.getClass().getName() +"java.lang.Object" +1 +return.current.next +null 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -641 +614 this -1846436036 +1566502717 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -643 +615 this -1846436036 +1566502717 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -643 +615 this -1846436036 +1566502717 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -644 +614 this -1846436036 +1566502717 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null +nonsensical +2 +return +1597462040 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -645 +616 this -1846436036 +559670971 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -42919,26 +42516,26 @@ this.current.next.next null 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -645 +617 this -1846436036 +559670971 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -42946,30 +42543,27 @@ this.current.next.element.getClass().getName() this.current.next.next null 1 -return -false -1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -644 +617 this -1846436036 +559670971 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -42978,82 +42572,48 @@ this.current.next.next null 1 return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +false 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -646 +616 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1920494563 -1 -x.getClass().getName() -"java.lang.String" +559670971 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -647 -theNode -1904504032 +this.current +403716510 1 -theNode.element -239304688 +this.current.element +1597462040 1 -theNode.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -647 +618 this -1072905931 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43070,88 +42630,49 @@ nonsensical this.current.next.next nonsensical 2 -theNode -1904504032 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +618 +this +559670971 1 -theNode.element -239304688 +this.current +403716510 1 -theNode.element.getClass().getName() +this.current.element +1597462040 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() +this.current.next.element nonsensical 2 -theNode.next.next +this.current.next.element.getClass().getName() nonsensical 2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -646 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1920494563 -1 -x.getClass().getName() -"java.lang.String" -1 return -1072905931 -1 -return.current -1904504032 -1 -return.current.element -239304688 -1 -return.current.element.getClass().getName() -"java.lang.Object" -1 -return.current.next -null +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -648 +619 this -1072905931 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43171,15 +42692,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -649 +620 this -1072905931 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43199,15 +42720,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -649 +620 this -1072905931 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43230,15 +42751,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -648 +619 this -1072905931 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43256,117 +42777,89 @@ this.current.next.next nonsensical 2 return -239304688 +1597462040 1 return.getClass().getName() "java.lang.Object" 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -650 +621 this -1846436036 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 +1778535015 1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header +1856056345 1 -this.current.next.next +this.header.element null 1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -651 -this -1846436036 -1 -this.current -470905757 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.element -1987411885 +this.header.next.element +1307096070 1 -this.current.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 +this.header.next.next +403716510 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +x +1458849419 1 -this.current.next.next -null +x.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -651 -this -1846436036 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next +622 +theNode null 1 -return -false -1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -650 +622 this -1846436036 +1824835605 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -43376,84 +42869,95 @@ nonsensical this.current.next.next nonsensical 2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -652 -this -1846436036 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next +theNode null 1 -this.current.next.element +theNode.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -652 +621 this -1846436036 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +1458849419 +1 +x.getClass().getName() +"DataStructures.MyInteger" +1 +return +1824835605 +1 +return.current null 1 -this.current.next.element +return.current.element nonsensical 2 -this.current.next.element.getClass().getName() +return.current.element.getClass().getName() nonsensical 2 -this.current.next.next +return.current.next nonsensical 2 -return -false -1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -653 +623 this -1846436036 +1824835605 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -43466,22 +42970,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -654 +624 this -1846436036 +1824835605 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -43494,22 +42998,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -654 +624 this -1846436036 +1824835605 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -43520,27 +43024,27 @@ this.current.next.next nonsensical 2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -653 +623 this -1846436036 +1824835605 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -43551,20 +43055,20 @@ this.current.next.next nonsensical 2 return -239304688 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -655 +625 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -43573,32 +43077,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2057282105 +981661423 1 x.getClass().getName() -"java.lang.String" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -656 +626 theNode -1904504032 +403716510 1 theNode.element -239304688 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" @@ -43618,15 +43122,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -656 +626 this -106138388 +269468037 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43644,10 +43148,10 @@ this.current.next.next nonsensical 2 theNode -1904504032 +403716510 1 theNode.element -239304688 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" @@ -43667,12 +43171,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -655 +625 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -43681,31 +43185,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2057282105 +981661423 1 x.getClass().getName() -"java.lang.String" +"java.lang.Double" 1 return -106138388 +269468037 1 return.current -1904504032 +403716510 1 return.current.element -239304688 +1597462040 1 return.current.element.getClass().getName() "java.lang.Object" @@ -43716,15 +43220,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -657 +627 this -106138388 +269468037 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43744,15 +43248,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -658 +628 this -106138388 +269468037 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43772,15 +43276,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -658 +628 this -106138388 +269468037 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43803,15 +43307,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -657 +627 this -106138388 +269468037 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43829,7 +43333,7 @@ this.current.next.next nonsensical 2 return -239304688 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -43837,15 +43341,15 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -659 +629 this -1846436036 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43865,15 +43369,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -660 +630 this -1846436036 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43893,15 +43397,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -660 +630 this -1846436036 +559670971 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" @@ -43924,9 +43428,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -659 +629 this -1846436036 +559670971 1 this.current null @@ -43952,9 +43456,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -661 +631 this -1846436036 +559670971 1 this.current null @@ -43980,9 +43484,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -661 +631 this -1846436036 +559670971 1 this.current null @@ -44003,403 +43507,20 @@ this.current.next.element.getClass().getName() nonsensical 2 this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -662 -this -1034442050 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -663 -this -1034442050 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -null -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -663 -this -1034442050 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -null -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -662 -this -1034442050 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER -this_invocation_nonce -664 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -853552605 -1 -x.getClass().getName() -"java.io.PrintStream" -1 -p -1034442050 -1 -p.current -1904504032 -1 -p.current.element -239304688 -1 -p.current.element.getClass().getName() -"java.lang.Object" -1 -p.current.next -null -1 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -665 -theElement -853552605 -1 -theElement.getClass().getName() -"java.io.PrintStream" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 -this_invocation_nonce -665 -this -1456460106 -1 -this.element -853552605 -1 -this.element.getClass().getName() -"java.io.PrintStream" -1 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 -this.next.next.element.getClass().getName() -nonsensical -2 -this.next.next.next -nonsensical -2 -theElement -853552605 -1 -theElement.getClass().getName() -"java.io.PrintStream" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 -this_invocation_nonce -664 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -853552605 -1 -x.getClass().getName() -"java.io.PrintStream" -1 -p -1034442050 -1 -p.current -1904504032 -1 -p.current.element -239304688 -1 -p.current.element.getClass().getName() -"java.lang.Object" -1 -p.current.next -1456460106 -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -666 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -667 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -667 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 +nonsensical +2 return -false +true 1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -668 +632 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -44408,100 +43529,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -669 +633 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 +1014328909 1 theNode.next.element -239304688 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 theNode.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -669 +633 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 +1014328909 1 theNode.next.element -239304688 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 theNode.next.next -1456460106 +403716510 1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -668 +632 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -44510,87 +43631,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 return -1706393036 +1681595665 1 return.current -470905757 +1856056345 1 return.current.element -1987411885 +null 1 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next -1904504032 +1014328909 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -670 +634 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -670 +634 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 return false @@ -44598,86 +43719,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -671 +635 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -672 +636 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -672 +636 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 return false @@ -44685,294 +43806,277 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -671 +635 this -1706393036 +1681595665 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -673 +637 this -1706393036 +1778535015 1 -this.current -470905757 +this.header +1856056345 1 -this.current.element -1987411885 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Long" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1904504032 +this.header.next.element +1307096070 1 -this.current.next.element -239304688 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next.next -1456460106 +x +787867107 +1 +x.getClass().getName() +"java.lang.Long" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -674 -this -1706393036 -1 -this.current -470905757 -1 -this.current.element -1987411885 +638 +theNode +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +theNode.element +null 1 -this.current.next -1904504032 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 1 -this.current.next.element -239304688 +theNode.next.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +theNode.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -1456460106 +theNode.next.next +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -674 +638 this -1706393036 +57494364 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -673 -this -1706393036 +403716510 1 -this.current -1904504032 -1 -this.current.element -239304688 +theNode +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Object" +theNode.element +null 1 -this.current.next -1456460106 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 1 -this.current.next.element -853552605 +theNode.next.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +theNode.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -null +theNode.next.next +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -675 +637 this -1706393036 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 +1778535015 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header +1856056345 1 -this.current.next.next +this.header.element null 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -675 -this -1706393036 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current -1904504032 +this.header.next.element +1307096070 1 -this.current.element -239304688 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next -1456460106 +x +787867107 1 -this.current.next.element -853552605 +x.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +return +57494364 1 -this.current.next.next +return.current +1856056345 +1 +return.current.element null 1 -return -false +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -676 +639 this -1706393036 +57494364 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -677 +640 this -1706393036 +57494364 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -677 +640 this -1706393036 +57494364 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return false @@ -44980,593 +44084,341 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -676 +639 this -1706393036 +57494364 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return -239304688 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -678 +641 this -1706393036 +1681595665 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -679 +642 this -1706393036 +1681595665 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next null 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -679 -this -1706393036 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -null -1 -return -false +403716510 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -678 +642 this -1706393036 +1681595665 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -680 -this -1706393036 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -null -1 -this.current.next.element nonsensical 2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -680 -this -1706393036 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -681 -this -1706393036 -1 -this.current -1456460106 -1 -this.current.element -853552605 +1307096070 1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -682 -this -1706393036 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -null +"java.lang.Long" 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -682 -this -1706393036 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -null +403716510 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -681 -this -1706393036 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -853552605 -1 -return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -683 +641 this -1706393036 +1681595665 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -684 +643 this -1706393036 +1681595665 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -684 +643 this -1706393036 +1681595665 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -683 +644 this -1706393036 +1681595665 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -685 +645 this -1706393036 +1681595665 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -685 +645 this -1706393036 +1681595665 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true +403716510 1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -666 -theList -1032605070 +this.current.next.element +1597462040 1 -theList.header -2004439137 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -theList.header.element +this.current.next.next null 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 +return +false 1 -DataStructures.LinkedList.isEmpty():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -686 +644 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null +1681595665 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +1014328909 1 -this.header.next.element -1987411885 +this.current.element +1307096070 1 -this.header.next.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 +this.current.next +403716510 1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -686 -this -1032605070 +this.current.next.element +1597462040 1 -this.header -2004439137 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -this.header.element +this.current.next.next null 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +return +1307096070 1 -this.header.next.element.getClass().getName() +return.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -return -false -1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -687 +646 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -45575,100 +44427,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +1828757853 +1 +x.getClass().getName() +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -688 +647 theNode -470905757 +403716510 1 theNode.element -1987411885 +1597462040 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -688 +647 this -1851134014 +1374677625 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 theNode -470905757 +403716510 1 theNode.element -1987411885 +1597462040 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -687 +646 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -45677,290 +44535,293 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +1828757853 +1 +x.getClass().getName() +"java.lang.String" 1 return -1851134014 +1374677625 1 return.current -470905757 +403716510 1 return.current.element -1987411885 +1597462040 1 return.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 return.current.next -1904504032 +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -689 +648 this -1851134014 +1374677625 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +649 +this +1374677625 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -this.current.next.next -1456460106 +this.current.next +null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -689 +649 this -1851134014 +1374677625 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -690 +648 this -1851134014 +1374677625 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 +return +1597462040 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -691 +650 this -1851134014 +1681595665 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -691 +651 this -1851134014 +1681595665 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 -1 -return -false +null 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -690 +651 this -1851134014 +1681595665 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +false 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -692 +650 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +1681595665 1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 +this.current +403716510 1 -x -2042940439 +this.current.element +1597462040 1 -x.getClass().getName() -"java.lang.Class" +this.current.element.getClass().getName() +"java.lang.Object" 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -693 -theNode +this.current.next null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -693 +652 this -1413779209 +1681595665 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -45970,95 +44831,56 @@ nonsensical this.current.next.next nonsensical 2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -692 +652 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +1681595665 1 -this.header.next.next -1904504032 -1 -x -2042940439 +this.current +403716510 1 -x.getClass().getName() -"java.lang.Class" +this.current.element +1597462040 1 -return -1413779209 +this.current.element.getClass().getName() +"java.lang.Object" 1 -return.current +this.current.next null 1 -return.current.element +this.current.next.element nonsensical 2 -return.current.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -return.current.next +this.current.next.next nonsensical 2 +return +false +1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -694 +653 this -1413779209 +1681595665 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -46071,22 +44893,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -695 +654 this -1413779209 +1681595665 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -46099,22 +44921,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -695 +654 this -1413779209 +1681595665 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -46125,27 +44947,27 @@ this.current.next.next nonsensical 2 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -694 +653 this -1413779209 +1681595665 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -46156,20 +44978,20 @@ this.current.next.next nonsensical 2 return -null +1597462040 1 return.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -696 +655 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -46178,35 +45000,35 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1628095255 +1345636186 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -697 +656 theNode -1456460106 +403716510 1 theNode.element -853552605 +1597462040 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 theNode.next null @@ -46223,18 +45045,18 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -697 +656 this -160320711 +963269035 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next null @@ -46249,13 +45071,13 @@ this.current.next.next nonsensical 2 theNode -1456460106 +403716510 1 theNode.element -853552605 +1597462040 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 theNode.next null @@ -46272,12 +45094,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -696 +655 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -46286,34 +45108,34 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1628095255 +1345636186 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 return -160320711 +963269035 1 return.current -1456460106 +403716510 1 return.current.element -853552605 +1597462040 1 return.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 return.current.next null @@ -46321,18 +45143,18 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -698 +657 this -160320711 +963269035 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next null @@ -46349,18 +45171,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -699 +658 this -160320711 +963269035 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next null @@ -46377,18 +45199,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -699 +658 this -160320711 +963269035 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next null @@ -46408,18 +45230,18 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -698 +657 this -160320711 +963269035 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next null @@ -46434,209 +45256,209 @@ this.current.next.next nonsensical 2 return -853552605 +1597462040 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -700 +659 this -1851134014 +1681595665 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -701 +660 this -1851134014 +1681595665 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -701 +660 this -1851134014 +1681595665 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -700 +659 this -1851134014 +1681595665 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -702 +661 this -1851134014 +1681595665 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -702 +661 this -1851134014 +1681595665 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -false +true 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -703 +662 this -1851134014 +1781256139 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next null @@ -46644,27 +45466,27 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -704 +663 this -1851134014 +1781256139 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next null @@ -46672,27 +45494,27 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -704 +663 this -1851134014 +1781256139 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next null @@ -46701,48 +45523,42 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -703 +662 this -1851134014 +1781256139 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 -return -239304688 -1 -return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER this_invocation_nonce -705 +664 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -46751,106 +45567,139 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1565696439 +2059904228 1 x.getClass().getName() -"java.lang.Integer" +"java.io.PrintStream" +1 +p +1781256139 +1 +p.current +403716510 +1 +p.current.element +1597462040 +1 +p.current.element.getClass().getName() +"java.lang.Object" +1 +p.current.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -706 -theNode +665 +theElement +2059904228 +1 +theElement.getClass().getName() +"java.io.PrintStream" +1 +n null 1 -theNode.element +n.element nonsensical 2 -theNode.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next +n.next nonsensical 2 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -706 +665 this -1542923582 +1359484306 1 -this.current +this.element +2059904228 +1 +this.element.getClass().getName() +"java.io.PrintStream" +1 +this.next null 1 -this.current.element +this.next.element nonsensical 2 -this.current.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -this.current.next +this.next.next nonsensical 2 -this.current.next.element +this.next.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.next.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.next.next.next nonsensical 2 -theNode +theElement +2059904228 +1 +theElement.getClass().getName() +"java.io.PrintStream" +1 +n null 1 -theNode.element +n.element nonsensical 2 -theNode.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next +n.next nonsensical 2 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -705 +664 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -46859,168 +45708,125 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1565696439 +2059904228 1 x.getClass().getName() -"java.lang.Integer" +"java.io.PrintStream" 1 -return -1542923582 +p +1781256139 1 -return.current -null +p.current +403716510 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -707 -this -1542923582 +p.current.element +1597462040 1 -this.current -null +p.current.element.getClass().getName() +"java.lang.Object" +1 +p.current.next +1359484306 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -708 -this -1542923582 +666 +theList +1778535015 1 -this.current +theList.header +1856056345 +1 +theList.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +theList.header.element.getClass().getName() nonsensical 2 +theList.header.next +1014328909 +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -708 +667 this -1542923582 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 -return -true +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -707 +667 this -1542923582 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 return -null +false 1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -709 +668 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -47029,106 +45835,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1051605149 -1 -x.getClass().getName() -"java.lang.String" +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -710 +669 theNode -1456460106 +1014328909 1 theNode.element -853552605 +1307096070 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 theNode.next -null +403716510 1 theNode.next.element -nonsensical -2 +1597462040 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -710 +669 this -537324433 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 theNode -1456460106 +1014328909 1 theNode.element -853552605 +1307096070 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 theNode.next -null +403716510 1 theNode.next.element -nonsensical -2 +1597462040 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +1359484306 +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -709 +668 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -47137,803 +45937,634 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -x -1051605149 -1 -x.getClass().getName() -"java.lang.String" +this.header.next.next +403716510 1 return -537324433 +2140832232 1 return.current -1456460106 +1014328909 1 return.current.element -853552605 +1307096070 1 return.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 return.current.next -null -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -711 -this -537324433 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -null +403716510 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -712 +670 this -537324433 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -712 +670 this -537324433 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -711 +671 this -537324433 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -853552605 +"java.lang.Object" 1 -return.getClass().getName() -"java.io.PrintStream" +this.current.next.next +1359484306 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -713 +672 this -1851134014 +2140832232 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -714 +672 this -1851134014 +2140832232 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -null +1359484306 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -714 +671 this -1851134014 +2140832232 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return -false +1307096070 +1 +return.getClass().getName() +"java.lang.Long" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -713 +673 this -1851134014 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -715 +674 this -1851134014 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -715 +674 this -1851134014 +2140832232 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -716 +673 this -1851134014 +2140832232 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -717 +675 this -1851134014 +2140832232 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -717 +675 this -1851134014 +2140832232 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -716 +676 this -1851134014 +2140832232 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -853552605 +2059904228 1 -return.getClass().getName() +this.current.next.element.getClass().getName() "java.io.PrintStream" 1 +this.current.next.next +null +1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -718 +677 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null +2140832232 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +403716510 1 -this.header.next.element -1987411885 +this.current.element +1597462040 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.next -1904504032 +this.current.next +1359484306 1 -x -643009796 +this.current.next.element +2059904228 1 -x.getClass().getName() -"DataStructures.MyInteger" +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -719 -theNode +this.current.next.next null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -719 +677 this -927929668 +2140832232 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 -theNode null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 +return +false +1 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -718 +676 this -1032605070 -1 -this.header -2004439137 +2140832232 1 -this.header.element -null +this.current +403716510 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +1597462040 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +1359484306 1 -this.header.next.next -1904504032 +this.current.next.element +2059904228 1 -x -643009796 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -x.getClass().getName() -"DataStructures.MyInteger" +this.current.next.next +null 1 return -927929668 +1597462040 1 -return.current -null +return.getClass().getName() +"java.lang.Object" 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -720 +678 this -927929668 +2140832232 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -721 +679 this -927929668 +2140832232 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -721 +679 this -927929668 +2140832232 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true +2059904228 1 - -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -720 -this -927929668 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -this.current +this.current.next.next null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 return -null +false 1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -722 +678 this -1032605070 +2140832232 1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -687685562 -1 -x.getClass().getName() -"java.lang.Double" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -723 -theNode -1456460106 +this.current +1359484306 1 -theNode.element -853552605 +this.current.element +2059904228 1 -theNode.element.getClass().getName() +this.current.element.getClass().getName() "java.io.PrintStream" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -723 +680 this -174252380 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -47950,88 +46581,49 @@ nonsensical this.current.next.next nonsensical 2 -theNode -1456460106 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +680 +this +2140832232 1 -theNode.element -853552605 +this.current +1359484306 1 -theNode.element.getClass().getName() +this.current.element +2059904228 +1 +this.current.element.getClass().getName() "java.io.PrintStream" 1 -theNode.next +this.current.next null 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() +this.current.next.element nonsensical 2 -theNode.next.next +this.current.next.element.getClass().getName() nonsensical 2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -722 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -687685562 -1 -x.getClass().getName() -"java.lang.Double" -1 return -174252380 -1 -return.current -1456460106 -1 -return.current.element -853552605 -1 -return.current.element.getClass().getName() -"java.io.PrintStream" -1 -return.current.next -null +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -724 +681 this -174252380 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48051,15 +46643,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -725 +682 this -174252380 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48079,15 +46671,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -725 +682 this -174252380 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48110,15 +46702,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -724 +681 this -174252380 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48136,7 +46728,7 @@ this.current.next.next nonsensical 2 return -853552605 +2059904228 1 return.getClass().getName() "java.io.PrintStream" @@ -48144,15 +46736,15 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -726 +683 this -1851134014 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48172,15 +46764,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -727 +684 this -1851134014 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48200,15 +46792,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -727 +684 this -1851134014 +2140832232 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -48231,9 +46823,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -726 +683 this -1851134014 +2140832232 1 this.current null @@ -48259,9 +46851,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -728 +685 this -1851134014 +2140832232 1 this.current null @@ -48287,9 +46879,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -728 +685 this -1851134014 +2140832232 1 this.current null @@ -48316,116 +46908,33 @@ return true 1 -DataStructures.LinkedList.zeroth():::ENTER -this_invocation_nonce -729 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -730 -theNode -2004439137 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -1904504032 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -730 -this -1639539799 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 +666 +theList +1778535015 1 -theNode -2004439137 +theList.header +1856056345 1 -theNode.element +theList.header.element null 1 -theNode.element.getClass().getName() +theList.header.element.getClass().getName() nonsensical 2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -1904504032 +theList.header.next +1014328909 1 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -729 +686 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -48434,221 +46943,57 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -return -1639539799 -1 -return.current -2004439137 -1 -return.current.element -null -1 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -470905757 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -731 -this -1639539799 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -731 -this -1639539799 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -732 -this -1639539799 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -733 -this -1639539799 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -733 +686 this -1639539799 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -732 -this -1639539799 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 -return -null -1 -return.getClass().getName() -nonsensical -2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -734 +687 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -48657,106 +47002,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1382727136 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -735 +688 theNode -2004439137 +1014328909 1 theNode.element -null +1307096070 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next -470905757 +403716510 1 theNode.next.element -1987411885 +1597462040 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next.next -1904504032 +1359484306 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -735 +688 this -1574430565 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 1 theNode -2004439137 +1014328909 1 theNode.element -null +1307096070 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next -470905757 +403716510 1 theNode.next.element -1987411885 +1597462040 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next.next -1904504032 +1359484306 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -734 +687 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -48765,463 +47104,499 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1382727136 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 return -1574430565 +157456214 1 return.current -2004439137 +1014328909 1 return.current.element -null +1307096070 1 return.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 return.current.next -470905757 +403716510 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -736 +689 this -1574430565 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -737 +689 this -1574430565 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -737 +690 this -1574430565 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 -1 -return -false +1359484306 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -736 +691 this -1574430565 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 -1 -return -null +1359484306 1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -738 +691 this -1639539799 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -739 +690 this -1639539799 +157456214 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 +1 +return +1307096070 +1 +return.getClass().getName() +"java.lang.Long" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -739 +692 this -1639539799 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 1 -return -false +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +693 +theNode +null 1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -738 +693 this -1639539799 +1659791576 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 +theNode +null 1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -740 +692 this -1639539799 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" +1778535015 1 -this.current.next.next -1456460106 +this.header +1856056345 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -740 -this -1639539799 +this.header.element +null 1 -this.current -470905757 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.element -1987411885 +this.header.next.element +1307096070 1 -this.current.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 +this.header.next.next +403716510 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +x +25126016 1 -this.current.next.next -1456460106 +x.getClass().getName() +"java.lang.Class" 1 return -false +1659791576 +1 +return.current +null 1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -741 +694 this -1639539799 +1659791576 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -742 +695 this -1639539799 +1659791576 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -742 +695 this -1639539799 +1659791576 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -741 +694 this -1639539799 +1659791576 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -743 +696 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -49230,32 +47605,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -161007621 +1935365522 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -744 +697 theNode -1456460106 +1359484306 1 theNode.element -853552605 +2059904228 1 theNode.element.getClass().getName() "java.io.PrintStream" @@ -49275,15 +47650,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -744 +697 this -225690927 +1483022288 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49301,10 +47676,10 @@ this.current.next.next nonsensical 2 theNode -1456460106 +1359484306 1 theNode.element -853552605 +2059904228 1 theNode.element.getClass().getName() "java.io.PrintStream" @@ -49324,12 +47699,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -743 +696 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -49338,31 +47713,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -161007621 +1935365522 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 return -225690927 +1483022288 1 return.current -1456460106 +1359484306 1 return.current.element -853552605 +2059904228 1 return.current.element.getClass().getName() "java.io.PrintStream" @@ -49373,15 +47748,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -745 +698 this -225690927 +1483022288 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49401,15 +47776,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -746 +699 this -225690927 +1483022288 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49429,15 +47804,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -746 +699 this -225690927 +1483022288 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49460,15 +47835,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -745 +698 this -225690927 +1483022288 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49486,7 +47861,7 @@ this.current.next.next nonsensical 2 return -853552605 +2059904228 1 return.getClass().getName() "java.io.PrintStream" @@ -49494,86 +47869,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -747 +700 this -1639539799 +157456214 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -748 +701 this -1639539799 +157456214 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -748 +701 this -1639539799 +157456214 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 return false @@ -49581,24 +47956,24 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -747 +700 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49609,24 +47984,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -749 +702 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49637,24 +48012,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -749 +702 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49668,24 +48043,24 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -750 +703 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49696,24 +48071,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -751 +704 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49724,24 +48099,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -751 +704 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49755,24 +48130,24 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -750 +703 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -49781,20 +48156,298 @@ this.current.next.next null 1 return -239304688 +1597462040 1 return.getClass().getName() "java.lang.Object" 1 +DataStructures.LinkedList.find(java.lang.Object):::ENTER +this_invocation_nonce +705 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +1159785389 +1 +x.getClass().getName() +"java.lang.Integer" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +706 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +706 +this +1410986873 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +this_invocation_nonce +705 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +1159785389 +1 +x.getClass().getName() +"java.lang.Integer" +1 +return +1410986873 +1 +return.current +null +1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +707 +this +1410986873 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +708 +this +1410986873 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +708 +this +1410986873 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +true +1 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +707 +this +1410986873 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +null +1 +return.getClass().getName() +nonsensical +2 + DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -752 +709 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -49803,19 +48456,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -731289487 +2110245805 1 x.getClass().getName() "java.lang.String" @@ -49823,12 +48476,12 @@ x.getClass().getName() DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -753 +710 theNode -1456460106 +1359484306 1 theNode.element -853552605 +2059904228 1 theNode.element.getClass().getName() "java.io.PrintStream" @@ -49848,15 +48501,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -753 +710 this -733496228 +221036634 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49874,10 +48527,10 @@ this.current.next.next nonsensical 2 theNode -1456460106 +1359484306 1 theNode.element -853552605 +2059904228 1 theNode.element.getClass().getName() "java.io.PrintStream" @@ -49897,12 +48550,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -752 +709 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -49911,31 +48564,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -731289487 +2110245805 1 x.getClass().getName() "java.lang.String" 1 return -733496228 +221036634 1 return.current -1456460106 +1359484306 1 return.current.element -853552605 +2059904228 1 return.current.element.getClass().getName() "java.io.PrintStream" @@ -49946,15 +48599,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -754 +711 this -733496228 +221036634 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -49974,15 +48627,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -755 +712 this -733496228 +221036634 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50002,15 +48655,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -755 +712 this -733496228 +221036634 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50033,15 +48686,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -754 +711 this -733496228 +221036634 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50059,7 +48712,7 @@ this.current.next.next nonsensical 2 return -853552605 +2059904228 1 return.getClass().getName() "java.io.PrintStream" @@ -50067,24 +48720,24 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -756 +713 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -50095,24 +48748,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -757 +714 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -50123,24 +48776,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -757 +714 this -1639539799 +157456214 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" @@ -50154,15 +48807,15 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -756 +713 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50182,15 +48835,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -758 +715 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50210,15 +48863,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -758 +715 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50241,15 +48894,15 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -759 +716 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50269,15 +48922,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -760 +717 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50297,15 +48950,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -760 +717 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50328,15 +48981,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -759 +716 this -1639539799 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50354,20 +49007,20 @@ this.current.next.next nonsensical 2 return -853552605 +2059904228 1 return.getClass().getName() "java.io.PrintStream" 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -761 +718 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -50376,106 +49029,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1335050193 1 x.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -762 +719 theNode -1904504032 +null 1 theNode.element -239304688 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next -1456460106 -1 +nonsensical +2 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -762 +719 this -1314970216 +1418370913 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 theNode -1904504032 +null 1 theNode.element -239304688 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next -1456460106 -1 +nonsensical +2 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -null -1 +nonsensical +2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -761 +718 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -50484,199 +49137,230 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1335050193 1 x.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 return -1314970216 +1418370913 1 return.current -1904504032 +null 1 return.current.element -239304688 -1 +nonsensical +2 return.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 return.current.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -763 +720 this -1314970216 +1418370913 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -764 +721 this -1314970216 +1418370913 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -764 +721 this -1314970216 +1418370913 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -763 +720 this -1314970216 +1418370913 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -239304688 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -765 +722 this -1639539799 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +391359742 +1 +x.getClass().getName() +"java.lang.Double" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +723 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() "java.io.PrintStream" 1 -this.current.next +theNode.next null 1 -this.current.next.element +theNode.next.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -766 +723 this -1639539799 +2081853534 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50693,84 +49377,95 @@ nonsensical this.current.next.next nonsensical 2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -766 -this -1639539799 -1 -this.current -1456460106 +theNode +1359484306 1 -this.current.element -853552605 +theNode.element +2059904228 1 -this.current.element.getClass().getName() +theNode.element.getClass().getName() "java.io.PrintStream" 1 -this.current.next +theNode.next null 1 -this.current.next.element +theNode.next.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next nonsensical 2 -return -false -1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -765 +722 this -1639539799 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +391359742 +1 +x.getClass().getName() +"java.lang.Double" +1 +return +2081853534 +1 +return.current +1359484306 +1 +return.current.element +2059904228 +1 +return.current.element.getClass().getName() +"java.io.PrintStream" +1 +return.current.next +null +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -767 +724 this -1639539799 +2081853534 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -50781,24 +49476,24 @@ this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -767 +725 this -1639539799 +2081853534 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -50808,108 +49503,111 @@ nonsensical this.current.next.next nonsensical 2 -return -true -1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -768 +725 this -1034442050 +2081853534 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -769 +724 this -1034442050 +2081853534 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null +nonsensical +2 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -769 +726 this -1034442050 +157456214 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -null -1 -return -false -1 +nonsensical +2 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -768 +727 this -1034442050 +157456214 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" @@ -50927,282 +49625,132 @@ this.current.next.next nonsensical 2 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -770 +727 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +157456214 1 -this.header.next.next -1904504032 -1 -x -2042940439 -1 -x.getClass().getName() -"java.lang.Class" -1 -p -1034442050 -1 -p.current -1456460106 +this.current +1359484306 1 -p.current.element -853552605 +this.current.element +2059904228 1 -p.current.element.getClass().getName() +this.current.element.getClass().getName() "java.io.PrintStream" 1 -p.current.next -null -1 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -771 -theElement -2042940439 -1 -theElement.getClass().getName() -"java.lang.Class" -1 -n +this.current.next null 1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element +this.current.next.element nonsensical 2 -n.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -n.next.next +this.current.next.next nonsensical 2 +return +false +1 -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -771 +726 this -950209035 -1 -this.element -2042940439 -1 -this.element.getClass().getName() -"java.lang.Class" +157456214 1 -this.next +this.current null 1 -this.next.element +this.current.element nonsensical 2 -this.next.element.getClass().getName() +this.current.element.getClass().getName() nonsensical 2 -this.next.next +this.current.next nonsensical 2 -this.next.next.element +this.current.next.element nonsensical 2 -this.next.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -this.next.next.next +this.current.next.next nonsensical 2 -theElement -2042940439 -1 -theElement.getClass().getName() -"java.lang.Class" + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +728 +this +157456214 1 -n +this.current null 1 -n.element +this.current.element nonsensical 2 -n.element.getClass().getName() +this.current.element.getClass().getName() nonsensical 2 -n.next +this.current.next nonsensical 2 -n.next.element +this.current.next.element nonsensical 2 -n.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -n.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -770 +728 this -1032605070 -1 -this.header -2004439137 +157456214 1 -this.header.element +this.current null 1 -this.header.element.getClass().getName() +this.current.element nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -2042940439 -1 -x.getClass().getName() -"java.lang.Class" -1 -p -1034442050 -1 -p.current -1456460106 -1 -p.current.element -853552605 -1 -p.current.element.getClass().getName() -"java.io.PrintStream" -1 -p.current.next -950209035 -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -772 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() +this.current.element.getClass().getName() nonsensical 2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -773 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -773 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 return -false +true 1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -774 +729 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -51211,100 +49759,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -775 +730 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 +1014328909 1 theNode.next.element -239304688 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 theNode.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -775 +730 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 theNode -470905757 +1856056345 1 theNode.element -1987411885 +null 1 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 +1014328909 1 theNode.next.element -239304688 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 theNode.next.next -1456460106 +403716510 1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -774 +729 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -51313,87 +49861,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 return -1474852153 +707610042 1 return.current -470905757 +1856056345 1 return.current.element -1987411885 +null 1 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next -1904504032 +1014328909 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -776 +731 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -776 +731 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 return false @@ -51401,86 +49949,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -777 +732 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -778 +733 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -778 +733 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 return false @@ -51488,294 +50036,277 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -777 +732 this -1474852153 +707610042 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 +403716510 1 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -779 +734 this -1474852153 +1778535015 1 -this.current -470905757 +this.header +1856056345 1 -this.current.element -1987411885 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Long" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1904504032 +this.header.next.element +1307096070 1 -this.current.next.element -239304688 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next.next -1456460106 +x +710714889 +1 +x.getClass().getName() +"java.lang.Long" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -780 -this -1474852153 -1 -this.current -470905757 -1 -this.current.element -1987411885 +735 +theNode +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Long" +theNode.element +null 1 -this.current.next -1904504032 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 1 -this.current.next.element -239304688 +theNode.next.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +theNode.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -1456460106 +theNode.next.next +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -780 +735 this -1474852153 +551734240 1 this.current -470905757 +1856056345 1 this.current.element -1987411885 +null 1 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 +1014328909 1 this.current.next.element -239304688 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next.next -1456460106 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -779 -this -1474852153 -1 -this.current -1904504032 +403716510 1 -this.current.element -239304688 +theNode +1856056345 1 -this.current.element.getClass().getName() -"java.lang.Object" +theNode.element +null 1 -this.current.next -1456460106 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 1 -this.current.next.element -853552605 +theNode.next.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +theNode.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -950209035 +theNode.next.next +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -781 +734 this -1474852153 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 +1778535015 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header +1856056345 1 -this.current.next.next -950209035 +this.header.element +null 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -781 -this -1474852153 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current -1904504032 +this.header.next.element +1307096070 1 -this.current.element -239304688 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next -1456460106 +x +710714889 1 -this.current.next.element -853552605 +x.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +return +551734240 1 -this.current.next.next -950209035 +return.current +1856056345 1 -return -false +return.current.element +null +1 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -782 +736 this -1474852153 +551734240 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -783 +737 this -1474852153 +551734240 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -783 +737 this -1474852153 +551734240 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return false @@ -51783,120 +50314,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -782 +736 this -1474852153 +551734240 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return -239304688 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -784 +738 this -1474852153 +707610042 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -785 +739 this -1474852153 +707610042 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -785 +739 this -1474852153 +707610042 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return false @@ -51904,86 +50435,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -784 +738 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -786 +740 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -786 +740 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -51991,86 +50522,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -787 +741 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -788 +742 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -788 +742 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -52078,139 +50609,209 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -787 +741 this -1474852153 +707610042 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return -853552605 +1307096070 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -789 +743 this -1474852153 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next +x +1757293506 +1 +x.getClass().getName() +"java.lang.String" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +744 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() +"java.io.PrintStream" +1 +theNode.next null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -790 +744 this -1474852153 +687780858 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next +nonsensical +2 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() +"java.io.PrintStream" +1 +theNode.next null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -790 +743 this -1474852153 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -null +x +1757293506 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +687780858 +1 +return.current +1359484306 +1 +return.current.element +2059904228 +1 +return.current.element.getClass().getName() +"java.io.PrintStream" +1 +return.current.next +null 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -789 +745 this -1474852153 +687780858 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next null @@ -52227,18 +50828,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -791 +746 this -1474852153 +687780858 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next null @@ -52255,18 +50856,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -791 +746 this -1474852153 +687780858 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next null @@ -52284,20 +50885,20 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -792 +745 this -1474852153 +687780858 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next null @@ -52311,360 +50912,316 @@ nonsensical this.current.next.next nonsensical 2 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -793 +747 this -1474852153 +707610042 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -793 +748 this -1474852153 +707610042 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 -return -false +1359484306 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -792 +748 this -1474852153 +707610042 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 -return -2042940439 +1359484306 1 -return.getClass().getName() -"java.lang.Class" +return +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -794 +747 this -1474852153 +707610042 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -795 +749 this -1474852153 +707610042 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -795 +749 this -1474852153 +707610042 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -794 +750 this -1474852153 +707610042 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -796 +751 this -1474852153 +707610042 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -796 +751 this -1474852153 +707610042 1 this.current -null +403716510 1 this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -772 -theList -1032605070 -1 -theList.header -2004439137 +1597462040 1 -theList.header.element -null +this.current.element.getClass().getName() +"java.lang.Object" 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 +this.current.next +1359484306 1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -797 -this -1032605070 +this.current.next.element +2059904228 1 -this.header -2004439137 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -this.header.element +this.current.next.next null 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 +return +false 1 -DataStructures.LinkedList.isEmpty():::EXIT45 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -797 +750 this -1032605070 +707610042 1 -this.header -2004439137 +this.current +403716510 1 -this.header.element -null +this.current.element +1597462040 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +1359484306 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +2059904228 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +null 1 return -false +1597462040 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -798 +752 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -52673,100 +51230,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +1734161410 +1 +x.getClass().getName() +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -799 +753 theNode -470905757 +1359484306 1 theNode.element -1987411885 +2059904228 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -799 +753 this -1583881797 +1364614850 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 theNode -470905757 +1359484306 1 theNode.element -1987411885 +2059904228 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -798 +752 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -52775,290 +51338,293 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +1734161410 +1 +x.getClass().getName() +"java.lang.String" 1 return -1583881797 +1364614850 1 return.current -470905757 +1359484306 1 return.current.element -1987411885 +2059904228 1 return.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 return.current.next -1904504032 +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -800 +754 this -1583881797 +1364614850 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +755 +this +1364614850 +1 +this.current +1359484306 +1 +this.current.element +2059904228 1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -800 +755 this -1583881797 +1364614850 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -801 +754 this -1583881797 +1364614850 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -802 +756 this -1583881797 +707610042 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +1359484306 1 this.current.next.element -239304688 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1456460106 +null 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -802 +757 this -1583881797 +707610042 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +1359484306 1 this.current.next.element -239304688 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1456460106 -1 -return -false +null 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -801 +757 this -1583881797 +707610042 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +1359484306 1 this.current.next.element -239304688 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1456460106 +null 1 return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +false 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -803 +756 this -1032605070 +707610042 1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 +this.current +1359484306 1 -x -94073967 +this.current.element +2059904228 1 -x.getClass().getName() -"java.lang.Object" +this.current.element.getClass().getName() +"java.io.PrintStream" 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -804 -theNode +this.current.next null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -804 +758 this -553199177 +707610042 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -53068,95 +51634,56 @@ nonsensical this.current.next.next nonsensical 2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -803 +758 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +707610042 1 -this.header.next.next -1904504032 -1 -x -94073967 +this.current +1359484306 1 -x.getClass().getName() -"java.lang.Object" +this.current.element +2059904228 1 -return -553199177 +this.current.element.getClass().getName() +"java.io.PrintStream" 1 -return.current +this.current.next null 1 -return.current.element +this.current.next.element nonsensical 2 -return.current.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -return.current.next +this.current.next.next nonsensical 2 +return +false +1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -805 +759 this -553199177 +707610042 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -53169,22 +51696,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -806 +760 this -553199177 +707610042 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -53197,22 +51724,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -806 +760 this -553199177 +707610042 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -53223,27 +51750,27 @@ this.current.next.next nonsensical 2 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -805 +759 this -553199177 +707610042 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -53254,20 +51781,20 @@ this.current.next.next nonsensical 2 return -null +2059904228 1 return.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -807 +761 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -53276,106 +51803,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1161859976 +2059904228 1 x.getClass().getName() -"java.lang.Integer" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -808 +762 theNode -950209035 +403716510 1 theNode.element -2042940439 +1597462040 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -808 +762 this -311814461 +1211076369 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 theNode -950209035 +403716510 1 theNode.element -2042940439 +1597462040 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +null +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -807 +761 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -53384,463 +51911,457 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1161859976 +2059904228 1 x.getClass().getName() -"java.lang.Integer" +"java.io.PrintStream" 1 return -311814461 +1211076369 1 return.current -950209035 +403716510 1 return.current.element -2042940439 +1597462040 1 return.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 return.current.next -null +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -809 +763 this -311814461 +1211076369 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -810 +764 this -311814461 +1211076369 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -810 +764 this -311814461 +1211076369 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -809 +763 this -311814461 +1211076369 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +null +1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -811 +765 this -1583881797 +707610042 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -812 +766 this -1583881797 +707610042 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -812 +766 this -1583881797 +707610042 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -811 +765 this -1583881797 +707610042 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -813 +767 this -1583881797 +707610042 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -813 +767 this -1583881797 +707610042 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -false +true 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -814 +768 this -1583881797 +1781256139 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -815 +769 this -1583881797 +1781256139 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -815 +769 this -1583881797 +1781256139 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -814 +768 this -1583881797 +1781256139 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 -return -239304688 -1 -return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER this_invocation_nonce -816 +770 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -53849,106 +52370,139 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -805547347 +25126016 1 x.getClass().getName() -"java.lang.String" +"java.lang.Class" +1 +p +1781256139 +1 +p.current +1359484306 +1 +p.current.element +2059904228 +1 +p.current.element.getClass().getName() +"java.io.PrintStream" +1 +p.current.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -817 -theNode +771 +theElement +25126016 +1 +theElement.getClass().getName() +"java.lang.Class" +1 +n null 1 -theNode.element +n.element nonsensical 2 -theNode.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next +n.next nonsensical 2 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -817 +771 this -1097350341 +361993357 1 -this.current +this.element +25126016 +1 +this.element.getClass().getName() +"java.lang.Class" +1 +this.next null 1 -this.current.element +this.next.element nonsensical 2 -this.current.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -this.current.next +this.next.next nonsensical 2 -this.current.next.element +this.next.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.next.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.next.next.next nonsensical 2 -theNode +theElement +25126016 +1 +theElement.getClass().getName() +"java.lang.Class" +1 +n null 1 -theNode.element +n.element nonsensical 2 -theNode.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next +n.next nonsensical 2 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -816 +770 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -53957,520 +52511,819 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -805547347 +25126016 1 x.getClass().getName() -"java.lang.String" +"java.lang.Class" 1 -return -1097350341 +p +1781256139 1 -return.current +p.current +1359484306 +1 +p.current.element +2059904228 +1 +p.current.element.getClass().getName() +"java.io.PrintStream" +1 +p.current.next +361993357 +1 + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER +this_invocation_nonce +772 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element null 1 -return.current.element +theList.header.element.getClass().getName() nonsensical 2 -return.current.element.getClass().getName() +theList.header.next +1014328909 +1 + +DataStructures.LinkedList.isEmpty():::ENTER +this_invocation_nonce +773 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() nonsensical 2 -return.current.next +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +773 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +false +1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -818 +774 this -1097350341 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +775 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +775 +this +459296537 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next +1359484306 +1 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 +1 + +DataStructures.LinkedList.first():::EXIT71 +this_invocation_nonce +774 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +459296537 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -819 +776 this -1097350341 +459296537 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +776 +this +459296537 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +777 +this +459296537 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +778 +this +459296537 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -819 +778 this -1097350341 +459296537 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -818 +777 this -1097350341 +459296537 1 this.current -null +1014328909 1 this.current.element -nonsensical -2 +1307096070 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -nonsensical -2 +403716510 +1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return -null +1307096070 1 return.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -820 +779 this -1032605070 -1 -this.header -2004439137 +459296537 1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +1014328909 1 -this.header.next.element -1987411885 +this.current.element +1307096070 1 -this.header.next.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 +this.current.next +403716510 1 -x -577620751 +this.current.next.element +1597462040 1 -x.getClass().getName() -"DataStructures.MyInteger" +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -821 -theNode -950209035 +780 +this +459296537 1 -theNode.element -2042940439 +this.current +1014328909 1 -theNode.element.getClass().getName() -"java.lang.Class" +this.current.element +1307096070 1 -theNode.next -null +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -821 +780 this -1445877617 +459296537 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 -theNode -950209035 +1359484306 1 -theNode.element -2042940439 +return +false 1 -theNode.element.getClass().getName() -"java.lang.Class" + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +779 +this +459296537 1 -theNode.next -null +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -820 +781 this -1032605070 +459296537 1 -this.header -2004439137 +this.current +403716510 1 -this.header.element -null +this.current.element +1597462040 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +1359484306 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +2059904228 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -x -577620751 +this.current.next.next +361993357 1 -x.getClass().getName() -"DataStructures.MyInteger" + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +781 +this +459296537 1 -return -1445877617 +this.current +403716510 1 -return.current -950209035 +this.current.element +1597462040 1 -return.current.element -2042940439 +this.current.element.getClass().getName() +"java.lang.Object" 1 -return.current.element.getClass().getName() -"java.lang.Class" +this.current.next +1359484306 1 -return.current.next -null +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -822 +782 this -1445877617 +459296537 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -823 +783 this -1445877617 +459296537 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -823 +783 this -1445877617 +459296537 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -822 +782 this -1445877617 +459296537 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -824 +784 this -1583881797 +459296537 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -825 +785 this -1583881797 +459296537 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -825 +785 this -1583881797 +459296537 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return false @@ -54478,24 +53331,24 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -824 +784 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54506,24 +53359,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -826 +786 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54534,24 +53387,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -826 +786 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54565,24 +53418,24 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -827 +787 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54593,24 +53446,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -828 +788 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54621,24 +53474,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -828 +788 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54652,24 +53505,24 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -827 +787 this -1583881797 +459296537 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" @@ -54678,89 +53531,291 @@ this.current.next.next null 1 return -853552605 +2059904228 1 return.getClass().getName() "java.io.PrintStream" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -829 +789 this -1032605070 +459296537 1 -this.header -2004439137 +this.current +1359484306 1 -this.header.element +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next null 1 -this.header.element.getClass().getName() + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +790 +this +459296537 +1 +this.current +1359484306 +1 +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +790 +this +459296537 +1 +this.current +1359484306 +1 +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +null +1 +return +false +1 + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +789 +this +459296537 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element nonsensical 2 -this.header.next -470905757 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +791 +this +459296537 1 -this.header.next.element -1987411885 +this.current +361993357 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element +25126016 1 -this.header.next.next -1904504032 +this.current.element.getClass().getName() +"java.lang.Class" 1 -x -2087643114 +this.current.next +null 1 -x.getClass().getName() -"java.lang.Double" +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +791 +this +459296537 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -830 -theNode +792 +this +459296537 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next null 1 -theNode.element +this.current.next.element nonsensical 2 -theNode.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next +this.current.next.next nonsensical 2 -theNode.next.element + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +793 +this +459296537 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +793 +this +459296537 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 +return +false +1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -830 +792 this -1429992312 +459296537 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -54770,95 +53825,87 @@ nonsensical this.current.next.next nonsensical 2 -theNode +return +25126016 +1 +return.getClass().getName() +"java.lang.Class" +1 + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +794 +this +459296537 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -829 +795 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +459296537 1 -this.header.next.next -1904504032 -1 -x -2087643114 +this.current +361993357 1 -x.getClass().getName() -"java.lang.Double" +this.current.element +25126016 1 -return -1429992312 +this.current.element.getClass().getName() +"java.lang.Class" 1 -return.current +this.current.next null 1 -return.current.element +this.current.next.element nonsensical 2 -return.current.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -return.current.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -831 +795 this -1429992312 +459296537 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -54868,12 +53915,15 @@ nonsensical this.current.next.next nonsensical 2 +return +false +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -832 +794 this -1429992312 +459296537 1 this.current null @@ -54897,11 +53947,11 @@ this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -832 +796 this -1429992312 +459296537 1 this.current null @@ -54924,15 +53974,12 @@ nonsensical this.current.next.next nonsensical 2 -return -true -1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -831 +796 this -1429992312 +459296537 1 this.current null @@ -54956,20 +54003,36 @@ this.current.next.next nonsensical 2 return +true +1 + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +this_invocation_nonce +772 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element null 1 -return.getClass().getName() +theList.header.element.getClass().getName() nonsensical 2 +theList.header.next +1014328909 +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -833 +797 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -54978,106 +54041,57 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1391294207 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -834 -theNode -2004439137 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -1904504032 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -834 +797 this -1679788513 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 -1 -theNode -2004439137 -1 -theNode.element -null -1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" +this.header.next.next +403716510 1 -theNode.next.next -1904504032 +return +false 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -833 +798 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -55086,463 +54100,323 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1391294207 -1 -x.getClass().getName() -"java.lang.Long" -1 -return -1679788513 -1 -return.current -2004439137 -1 -return.current.element -null -1 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -470905757 +403716510 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -835 -this -1679788513 +799 +theNode +1014328909 1 -this.current -2004439137 +theNode.element +1307096070 1 -this.current.element -null +theNode.element.getClass().getName() +"java.lang.Long" 1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 +theNode.next +403716510 1 -this.current.next.element -1987411885 +theNode.next.element +1597462040 1 -this.current.next.element.getClass().getName() -"java.lang.Long" +theNode.next.element.getClass().getName() +"java.lang.Object" 1 -this.current.next.next -1904504032 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -836 +799 this -1679788513 +2015601401 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -836 -this -1679788513 +1359484306 1 -this.current -2004439137 +theNode +1014328909 1 -this.current.element -null +theNode.element +1307096070 1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 +theNode.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element -1987411885 +theNode.next +403716510 1 -this.current.next.element.getClass().getName() -"java.lang.Long" +theNode.next.element +1597462040 1 -this.current.next.next -1904504032 +theNode.next.element.getClass().getName() +"java.lang.Object" 1 -return -false +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -835 +798 this -1679788513 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 1 return -null -1 -return.getClass().getName() -nonsensical -2 - -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -837 -this -1583881797 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" +2015601401 1 -this.current.next -950209035 +return.current +1014328909 1 -this.current.next.element -2042940439 +return.current.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +return.current.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -null +return.current.next +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -838 +800 this -1583881797 +2015601401 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -838 +800 this -1583881797 +2015601401 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -837 +801 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -839 -this -1583881797 -1 -this.current -950209035 +1597462040 1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -839 -this -1583881797 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -null +"java.lang.Object" 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -840 -this -1583881797 +1359484306 1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -841 +802 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -841 +802 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -840 +801 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return -2042940439 +1307096070 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -842 +803 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -55551,27 +54425,27 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1385514529 +1287712235 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -843 +804 theNode null 1 @@ -55596,9 +54470,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -843 +804 this -1177504482 +1165897474 1 this.current null @@ -55645,12 +54519,12 @@ nonsensical DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -842 +803 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -55659,25 +54533,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1385514529 +1287712235 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 return -1177504482 +1165897474 1 return.current null @@ -55694,9 +54568,9 @@ nonsensical DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -844 +805 this -1177504482 +1165897474 1 this.current null @@ -55722,9 +54596,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -845 +806 this -1177504482 +1165897474 1 this.current null @@ -55750,9 +54624,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -845 +806 this -1177504482 +1165897474 1 this.current null @@ -55781,9 +54655,9 @@ true DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -844 +805 this -1177504482 +1165897474 1 this.current null @@ -55815,12 +54689,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -846 +807 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -55829,32 +54703,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1256021869 +1551870003 1 x.getClass().getName() -"java.lang.String" +"java.lang.Integer" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -847 +808 theNode -950209035 +361993357 1 theNode.element -2042940439 +25126016 1 theNode.element.getClass().getName() "java.lang.Class" @@ -55874,15 +54748,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -847 +808 this -195302273 +967765295 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -55900,10 +54774,10 @@ this.current.next.next nonsensical 2 theNode -950209035 +361993357 1 theNode.element -2042940439 +25126016 1 theNode.element.getClass().getName() "java.lang.Class" @@ -55923,12 +54797,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -846 +807 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -55937,31 +54811,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1256021869 +1551870003 1 x.getClass().getName() -"java.lang.String" +"java.lang.Integer" 1 return -195302273 +967765295 1 return.current -950209035 +361993357 1 return.current.element -2042940439 +25126016 1 return.current.element.getClass().getName() "java.lang.Class" @@ -55972,15 +54846,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -848 +809 this -195302273 +967765295 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -56000,15 +54874,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -849 +810 this -195302273 +967765295 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -56028,15 +54902,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -849 +810 this -195302273 +967765295 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -56059,15 +54933,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -848 +809 this -195302273 +967765295 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -56085,7 +54959,7 @@ this.current.next.next nonsensical 2 return -2042940439 +25126016 1 return.getClass().getName() "java.lang.Class" @@ -56093,288 +54967,307 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -850 +811 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -851 +812 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -851 +812 this -1583881797 +2015601401 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -850 +811 this -1583881797 +2015601401 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -852 +813 this -1583881797 +2015601401 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -852 +813 this -1583881797 +2015601401 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -true +false 1 -DataStructures.LinkedList.zeroth():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -853 +814 this -1032605070 +2015601401 1 -this.header -2004439137 +this.current +403716510 1 -this.header.element -null +this.current.element +1597462040 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +1359484306 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +2059904228 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -854 -theNode -2004439137 +815 +this +2015601401 1 -theNode.element -null +this.current +403716510 1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 +this.current.element +1597462040 1 -theNode.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -theNode.next.element.getClass().getName() -"java.lang.Long" +this.current.next +1359484306 1 -theNode.next.next -1904504032 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -854 +815 this -1090289695 +2015601401 1 this.current -2004439137 +403716510 1 this.current.element -null +1597462040 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +1359484306 1 this.current.next.element -1987411885 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next.next -1904504032 +361993357 1 -theNode -2004439137 +return +false 1 -theNode.element -null + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +814 +this +2015601401 1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 +this.current +403716510 1 -theNode.next.element -1987411885 +this.current.element +1597462040 1 -theNode.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Object" 1 -theNode.next.next -1904504032 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 +return +1597462040 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -853 +816 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -56383,206 +55276,261 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 -return -1090289695 +x +1917513796 1 -return.current -2004439137 +x.getClass().getName() +"java.lang.String" 1 -return.current.element + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +817 +theNode null 1 -return.current.element.getClass().getName() +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next nonsensical 2 -return.current.next -470905757 -1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -855 +817 this -1090289695 +1182320432 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +theNode +null 1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -855 +816 this -1090289695 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 +1 +x +1917513796 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +1182320432 +1 +return.current +null 1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -856 +818 this -1090289695 +1182320432 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -857 +819 this -1090289695 +1182320432 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -857 +819 this -1090289695 +1182320432 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -856 +818 this -1090289695 +1182320432 1 this.current -2004439137 -1 -this.current.element null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 -1 +nonsensical +2 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 return null 1 @@ -56592,12 +55540,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -858 +820 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -56606,106 +55554,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1734853116 1 x.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -859 +821 theNode -1904504032 +361993357 1 theNode.element -239304688 +25126016 1 theNode.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -859 +821 this -20944014 +703504298 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 theNode -1904504032 +361993357 1 theNode.element -239304688 +25126016 1 theNode.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -858 +820 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -56714,463 +55662,741 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1734853116 1 x.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 return -20944014 +703504298 1 return.current -1904504032 +361993357 1 return.current.element -239304688 +25126016 1 return.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 return.current.next -1456460106 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -860 +822 this -20944014 +703504298 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +823 +this +703504298 +1 +this.current +361993357 +1 +this.current.element +25126016 1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +823 +this +703504298 +1 +this.current +361993357 +1 +this.current.element +25126016 1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 this.current.next.next -950209035 +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -861 +822 +this +703504298 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +25126016 +1 +return.getClass().getName() +"java.lang.Class" +1 + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +824 this -20944014 +2015601401 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -861 +825 this -20944014 +2015601401 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 -1 -return -false +361993357 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -860 +825 this -20944014 +2015601401 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return -239304688 -1 -return.getClass().getName() -"java.lang.Object" +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -862 +824 this -1090289695 +2015601401 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -863 +826 this -1090289695 +2015601401 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -863 +826 this -1090289695 +2015601401 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +null 1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -862 +827 this -1090289695 +2015601401 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -864 +828 this -1090289695 +2015601401 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -864 +828 this -1090289695 +2015601401 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -865 +827 this -1090289695 +2015601401 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null +1 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -866 +829 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +201556483 +1 +x.getClass().getName() +"java.lang.Double" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +830 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +830 this -1090289695 +214074868 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +this_invocation_nonce +829 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 +this.header.next.next +403716510 +1 +x +201556483 +1 +x.getClass().getName() +"java.lang.Double" +1 +return +214074868 +1 +return.current +null +1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +831 +this +214074868 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 this.current.next -1904504032 +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +832 +this +214074868 +1 +this.current +null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -866 +832 this -1090289695 +214074868 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -865 +831 this -1090289695 +214074868 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -867 +833 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -57179,106 +56405,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +1442045361 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -868 +834 theNode -1456460106 +1856056345 1 theNode.element -853552605 +null 1 theNode.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next -950209035 +1014328909 1 theNode.next.element -2042940439 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next.next -null +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -868 +834 this -1966208837 +146611050 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 theNode -1456460106 +1856056345 1 theNode.element -853552605 +null 1 theNode.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next -950209035 +1014328909 1 theNode.next.element -2042940439 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next.next -null +403716510 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -867 +833 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -57287,121 +56513,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +1442045361 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return -1966208837 +146611050 1 return.current -1456460106 +1856056345 1 return.current.element -853552605 +null 1 return.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 return.current.next -950209035 +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -869 +835 this -1966208837 +146611050 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -870 +836 this -1966208837 +146611050 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -870 +836 this -1966208837 +146611050 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return false @@ -57409,403 +56635,192 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -869 +835 this -1966208837 +146611050 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return -853552605 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -871 +837 this -1090289695 +2015601401 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -872 -this -1090289695 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -872 -this -1090289695 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -871 +838 this -1090289695 +2015601401 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() "java.io.PrintStream" 1 -this.current.next.next -950209035 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -873 -this -1090289695 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -873 +838 this -1090289695 +2015601401 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -874 +837 this -1090289695 +2015601401 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -875 -this -1090289695 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -875 -this -1090289695 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -874 +839 this -1090289695 +2015601401 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 -return -239304688 -1 -return.getClass().getName() -"java.lang.Object" -1 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER -this_invocation_nonce -876 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -593563423 -1 -x.getClass().getName() -"java.lang.Object" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -877 -theNode -950209035 -1 -theNode.element -2042940439 -1 -theNode.element.getClass().getName() "java.lang.Class" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -877 +839 this -958910046 +2015601401 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -57822,88 +56837,21 @@ nonsensical this.current.next.next nonsensical 2 -theNode -950209035 -1 -theNode.element -2042940439 -1 -theNode.element.getClass().getName() -"java.lang.Class" -1 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -876 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -593563423 -1 -x.getClass().getName() -"java.lang.Object" -1 return -958910046 -1 -return.current -950209035 -1 -return.current.element -2042940439 -1 -return.current.element.getClass().getName() -"java.lang.Class" -1 -return.current.next -null +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -878 +840 this -958910046 +2015601401 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -57923,15 +56871,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -879 +841 this -958910046 +2015601401 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -57951,15 +56899,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -879 +841 this -958910046 +2015601401 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -57982,15 +56930,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -878 +840 this -958910046 +2015601401 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -58008,315 +56956,298 @@ this.current.next.next nonsensical 2 return -2042940439 +25126016 1 return.getClass().getName() "java.lang.Class" 1 -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -880 -this -1090289695 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -881 -this -1090289695 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -881 +842 this -1090289695 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 +1778535015 1 -return -false +this.header +1856056345 1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -880 -this -1090289695 +this.header.element +null 1 -this.current -1456460106 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.element -853552605 +this.header.next.element +1307096070 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next -950209035 +this.header.next.next +403716510 1 -this.current.next.element -2042940439 +x +415138788 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +x.getClass().getName() +"java.lang.String" 1 -this.current.next.next + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +843 +theNode null 1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -882 +843 this -1090289695 +13326370 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next +nonsensical +2 +theNode null 1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -882 +842 this -1090289695 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -null +x +415138788 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +13326370 +1 +return.current +null 1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -883 +844 this -1090289695 +13326370 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -884 +845 this -1090289695 +13326370 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -884 +845 this -1090289695 +13326370 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -883 +844 this -1090289695 +13326370 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -853552605 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -885 +846 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -58325,32 +57256,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1683856034 +1268650975 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -886 +847 theNode -950209035 +361993357 1 theNode.element -2042940439 +25126016 1 theNode.element.getClass().getName() "java.lang.Class" @@ -58370,15 +57301,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -886 +847 this -1028863272 +731395981 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -58396,10 +57327,10 @@ this.current.next.next nonsensical 2 theNode -950209035 +361993357 1 theNode.element -2042940439 +25126016 1 theNode.element.getClass().getName() "java.lang.Class" @@ -58419,12 +57350,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -885 +846 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -58433,31 +57364,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1683856034 +1268650975 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 return -1028863272 +731395981 1 return.current -950209035 +361993357 1 return.current.element -2042940439 +25126016 1 return.current.element.getClass().getName() "java.lang.Class" @@ -58468,15 +57399,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -887 +848 this -1028863272 +731395981 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -58496,15 +57427,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -888 +849 this -1028863272 +731395981 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -58524,15 +57455,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -888 +849 this -1028863272 +731395981 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -58555,15 +57486,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -887 +848 this -1028863272 +731395981 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" @@ -58581,7 +57512,7 @@ this.current.next.next nonsensical 2 return -2042940439 +25126016 1 return.getClass().getName() "java.lang.Class" @@ -58589,109 +57520,109 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -889 +850 this -1090289695 +2015601401 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -890 +851 this -1090289695 +2015601401 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -890 +851 this -1090289695 +2015601401 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -889 +850 this -1090289695 +2015601401 1 this.current -950209035 +null 1 this.current.element -2042940439 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -58704,22 +57635,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -891 +852 this -1090289695 +2015601401 1 this.current -950209035 +null 1 this.current.element -2042940439 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -58732,22 +57663,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -891 +852 this -1090289695 +2015601401 1 this.current -950209035 +null 1 this.current.element -2042940439 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -58758,138 +57689,342 @@ this.current.next.next nonsensical 2 return -false +true 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -892 +853 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +854 +theNode +1856056345 +1 +theNode.element +null +1 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 +1 +theNode.next.element +1307096070 +1 +theNode.next.element.getClass().getName() +"java.lang.Long" +1 +theNode.next.next +403716510 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +854 this -1090289695 +1196765369 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" +nonsensical +2 +this.current.next +1014328909 +1 +this.current.next.element +1307096070 +1 +this.current.next.element.getClass().getName() +"java.lang.Long" +1 +this.current.next.next +403716510 +1 +theNode +1856056345 +1 +theNode.element +null +1 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 +1 +theNode.next.element +1307096070 +1 +theNode.next.element.getClass().getName() +"java.lang.Long" +1 +theNode.next.next +403716510 +1 + +DataStructures.LinkedList.zeroth():::EXIT62 +this_invocation_nonce +853 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +1196765369 +1 +return.current +1856056345 +1 +return.current.element +null +1 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +1014328909 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +855 +this +1196765369 +1 +this.current +1856056345 1 +this.current.element +null +1 +this.current.element.getClass().getName() +nonsensical +2 this.current.next +1014328909 +1 +this.current.next.element +1307096070 +1 +this.current.next.element.getClass().getName() +"java.lang.Long" +1 +this.current.next.next +403716510 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +855 +this +1196765369 +1 +this.current +1856056345 +1 +this.current.element null 1 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +1014328909 +1 this.current.next.element +1307096070 +1 +this.current.next.element.getClass().getName() +"java.lang.Long" +1 +this.current.next.next +403716510 +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +856 +this +1196765369 +1 +this.current +1856056345 +1 +this.current.element +null +1 +this.current.element.getClass().getName() nonsensical 2 +this.current.next +1014328909 +1 +this.current.next.element +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -893 +857 this -1090289695 +1196765369 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -893 +857 this -1090289695 +1196765369 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -892 +856 this -1090289695 +1196765369 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return -2042940439 +null 1 return.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -894 +858 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -58898,106 +58033,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -566686860 +2059904228 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -895 +859 theNode -950209035 +403716510 1 theNode.element -2042940439 +1597462040 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -895 +859 this -216081575 +486898233 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 theNode -950209035 +403716510 1 theNode.element -2042940439 +1597462040 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -894 +858 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -59006,725 +58141,463 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -566686860 +2059904228 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 return -216081575 +486898233 1 return.current -950209035 +403716510 1 return.current.element -2042940439 +1597462040 1 return.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 return.current.next -null +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -896 +860 this -216081575 +486898233 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -897 +861 this -216081575 +486898233 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -897 +861 this -216081575 +486898233 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -896 +860 this -216081575 +486898233 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -898 +862 this -1090289695 +1196765369 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next null 1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -899 -this -1090289695 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next nonsensical 2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -899 -this -1090289695 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 -return -false +403716510 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -898 +863 this -1090289695 +1196765369 1 this.current -null +1856056345 1 this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -900 -this -1090289695 -1 -this.current null 1 -this.current.element -nonsensical -2 this.current.element.getClass().getName() nonsensical 2 this.current.next -nonsensical -2 +1014328909 +1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -900 +863 this -1090289695 +1196765369 1 this.current -null +1856056345 1 this.current.element -nonsensical -2 +null +1 this.current.element.getClass().getName() nonsensical 2 this.current.next -nonsensical -2 +1014328909 +1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return -true +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -901 +862 this -1034442050 +1196765369 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -902 +864 this -1034442050 +1196765369 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -902 +864 this -1034442050 +1196765369 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -901 +865 this -1034442050 +1196765369 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER -this_invocation_nonce -903 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -288183948 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -p -1034442050 -1 -p.current -950209035 -1 -p.current.element -2042940439 -1 -p.current.element.getClass().getName() -"java.lang.Class" -1 -p.current.next -null -1 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -904 -theElement -288183948 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 -this_invocation_nonce -904 -this -931990051 -1 -this.element -288183948 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 -this.next.next.element.getClass().getName() -nonsensical -2 -this.next.next.next -nonsensical -2 -theElement -288183948 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 -this_invocation_nonce -903 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 -1 -x -288183948 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -p -1034442050 -1 -p.current -950209035 +this.current.next +403716510 1 -p.current.element -2042940439 +this.current.next.element +1597462040 1 -p.current.element.getClass().getName() -"java.lang.Class" +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -p.current.next -931990051 +this.current.next.next +1359484306 1 -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -905 -theList -1032605070 +866 +this +1196765369 1 -theList.header -2004439137 +this.current +1014328909 1 -theList.header.element -null +this.current.element +1307096070 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 1 -DataStructures.LinkedList.isEmpty():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -906 +866 this -1032605070 +1196765369 1 -this.header -2004439137 +this.current +1014328909 1 -this.header.element -null +this.current.element +1307096070 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Long" 1 -this.header.next.element -1987411885 +this.current.next +403716510 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +1597462040 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 +return +false 1 -DataStructures.LinkedList.isEmpty():::EXIT45 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -906 +865 this -1032605070 +1196765369 1 -this.header -2004439137 +this.current +1014328909 1 -this.header.element -null +this.current.element +1307096070 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Long" 1 -this.header.next.element -1987411885 +this.current.next +403716510 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +1597462040 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 1 return -false +1307096070 +1 +return.getClass().getName() +"java.lang.Long" 1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -907 +867 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -59733,100 +58606,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -908 +868 theNode -470905757 +1359484306 1 theNode.element -1987411885 +2059904228 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 theNode.next -1904504032 +361993357 1 theNode.next.element -239304688 +25126016 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 theNode.next.next -1456460106 +null 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -908 +868 this -211065939 +650023597 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 theNode -470905757 +1359484306 1 theNode.element -1987411885 +2059904228 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 theNode.next -1904504032 +361993357 1 theNode.next.element -239304688 +25126016 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 theNode.next.next -1456460106 +null 1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -907 +867 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -59835,885 +58714,1388 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" 1 return -211065939 +650023597 1 return.current -470905757 +1359484306 1 return.current.element -1987411885 +2059904228 1 return.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 return.current.next -1904504032 +361993357 +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +869 +this +650023597 +1 +this.current +1359484306 +1 +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -909 +870 this -211065939 +650023597 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -909 +870 this -211065939 +650023597 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -910 +869 +this +650023597 +1 +this.current +1359484306 +1 +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +null +1 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" +1 + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +871 this -211065939 +1196765369 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -911 +872 this -211065939 +1196765369 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -911 +872 this -211065939 +1196765369 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -910 +871 this -211065939 +1196765369 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +873 +this +1196765369 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +873 +this +1196765369 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +874 +this +1196765369 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +875 +this +1196765369 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +875 +this +1196765369 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" 1 this.current.next -1904504032 +1359484306 1 this.current.next.element -239304688 +2059904228 1 this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +874 +this +1196765369 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 this.current.next.next -1456460106 +361993357 1 return -1987411885 +1597462040 1 return.getClass().getName() +"java.lang.Object" +1 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +this_invocation_nonce +876 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 +this.header.next.next +403716510 +1 +x +1282473384 +1 +x.getClass().getName() +"java.lang.Object" +1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -912 +877 +theNode +361993357 +1 +theNode.element +25126016 +1 +theNode.element.getClass().getName() +"java.lang.Class" +1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +877 this -211065939 +575593575 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +361993357 +1 +theNode.element +25126016 +1 +theNode.element.getClass().getName() +"java.lang.Class" +1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +this_invocation_nonce +876 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 +this.header.next.next +403716510 +1 +x +1282473384 +1 +x.getClass().getName() +"java.lang.Object" +1 +return +575593575 +1 +return.current +361993357 +1 +return.current.element +25126016 +1 +return.current.element.getClass().getName() +"java.lang.Class" +1 +return.current.next +null +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +878 +this +575593575 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +879 +this +575593575 +1 +this.current +361993357 +1 +this.current.element +25126016 1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -913 +879 this -211065939 +575593575 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -913 +878 this -211065939 +575593575 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -false +25126016 +1 +return.getClass().getName() +"java.lang.Class" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -912 +880 this -211065939 +1196765369 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -914 +881 this -211065939 +1196765369 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -914 +881 this -211065939 +1196765369 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -915 +880 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -916 +882 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -916 +882 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -915 +883 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 -1 -return -239304688 -1 -return.getClass().getName() -"java.lang.Object" +null 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -917 +884 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -918 +884 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -918 +883 this -211065939 +1196765369 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +null 1 return -false +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -917 +885 this -211065939 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() +this.header.next.next +403716510 +1 +x +346861221 +1 +x.getClass().getName() +"java.lang.Integer" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +886 +theNode +361993357 +1 +theNode.element +25126016 +1 +theNode.element.getClass().getName() "java.lang.Class" 1 -this.current.next.next -931990051 +theNode.next +null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -919 +886 this -211065939 +1188392295 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +361993357 +1 +theNode.element +25126016 +1 +theNode.element.getClass().getName() "java.lang.Class" 1 -this.current.next.next -931990051 +theNode.next +null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -919 +885 this -211065939 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 +x +346861221 +1 +x.getClass().getName() +"java.lang.Integer" 1 return -false +1188392295 +1 +return.current +361993357 +1 +return.current.element +25126016 +1 +return.current.element.getClass().getName() +"java.lang.Class" +1 +return.current.next +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -920 +887 this -211065939 +1188392295 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -921 +888 this -211065939 +1188392295 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -921 +888 this -211065939 +1188392295 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -920 +887 this -211065939 +1188392295 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return -853552605 +25126016 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -922 +889 this -211065939 +1196765369 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -923 +890 this -211065939 +1196765369 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -923 +890 this -211065939 +1196765369 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" 1 this.current.next.next -931990051 +null 1 return false @@ -60721,341 +60103,285 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -922 +889 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -924 +891 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -924 +891 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -925 +892 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -926 +893 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -926 +893 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -925 +892 this -211065939 +1196765369 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return -2042940439 +25126016 1 return.getClass().getName() "java.lang.Class" 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -927 +894 this -211065939 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -931990051 +1778535015 1 -this.current.next.element -288183948 -1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +this.header +1856056345 1 -this.current.next.next +this.header.element null 1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -928 -this -211065939 -1 -this.current -950209035 -1 -this.current.element -2042940439 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.element.getClass().getName() -"java.lang.Class" +this.header.next.element +1307096070 1 -this.current.next -931990051 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element -288183948 +this.header.next.next +403716510 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +x +226710952 1 -this.current.next.next -null +x.getClass().getName() +"java.lang.String" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -928 -this -211065939 -1 -this.current -950209035 +895 +theNode +361993357 1 -this.current.element -2042940439 +theNode.element +25126016 1 -this.current.element.getClass().getName() +theNode.element.getClass().getName() "java.lang.Class" 1 -this.current.next -931990051 -1 -this.current.next.element -288183948 -1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next.next -null -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -927 -this -211065939 -1 -this.current -931990051 -1 -this.current.element -288183948 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next +theNode.next null 1 -this.current.next.element +theNode.next.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -929 +895 this -211065939 +1509563803 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61069,52 +60395,91 @@ nonsensical this.current.next.next nonsensical 2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -929 -this -211065939 -1 -this.current -931990051 +theNode +361993357 1 -this.current.element -288183948 +theNode.element +25126016 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +theNode.element.getClass().getName() +"java.lang.Class" 1 -this.current.next +theNode.next null 1 -this.current.next.element +theNode.next.element nonsensical 2 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +this_invocation_nonce +894 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +226710952 +1 +x.getClass().getName() +"java.lang.String" +1 return -false +1509563803 +1 +return.current +361993357 +1 +return.current.element +25126016 +1 +return.current.element.getClass().getName() +"java.lang.Class" +1 +return.current.next +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -930 +896 this -211065939 +1509563803 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61131,18 +60496,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -931 +897 this -211065939 +1509563803 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61159,18 +60524,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -931 +897 this -211065939 +1509563803 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61190,18 +60555,18 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -930 +896 this -211065939 +1509563803 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61216,26 +60581,26 @@ this.current.next.next nonsensical 2 return -288183948 +25126016 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -932 +898 this -211065939 +1196765369 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61252,18 +60617,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -933 +899 this -211065939 +1196765369 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61280,18 +60645,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -933 +899 this -211065939 +1196765369 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next null @@ -61311,9 +60676,9 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -932 +898 this -211065939 +1196765369 1 this.current null @@ -61339,9 +60704,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -934 +900 this -211065939 +1196765369 1 this.current null @@ -61367,9 +60732,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -934 +900 this -211065939 +1196765369 1 this.current null @@ -61396,417 +60761,129 @@ return true 1 -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -905 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -935 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -935 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -return -false -1 - -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -936 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -937 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" -1 -theNode.next -1904504032 -1 -theNode.next.element -239304688 -1 -theNode.next.element.getClass().getName() -"java.lang.Object" -1 -theNode.next.next -1456460106 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -937 +901 this -1889735576 +1781256139 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 -1 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" -1 -theNode.next -1904504032 -1 -theNode.next.element -239304688 -1 -theNode.next.element.getClass().getName() -"java.lang.Object" -1 -theNode.next.next -1456460106 -1 - -DataStructures.LinkedList.first():::EXIT71 -this_invocation_nonce -936 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element null 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -return -1889735576 -1 -return.current -470905757 -1 -return.current.element -1987411885 -1 -return.current.element.getClass().getName() -"java.lang.Long" -1 -return.current.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -938 -this -1889735576 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -938 -this -1889735576 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -939 -this -1889735576 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -940 +902 this -1889735576 +1781256139 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -940 +902 this -1889735576 +1781256139 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -939 +901 this -1889735576 +1781256139 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 -return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER this_invocation_nonce -941 +903 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -61815,106 +60892,139 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1650170349 +684874119 1 x.getClass().getName() -"java.lang.Double" +"DataStructures.MyInteger" +1 +p +1781256139 +1 +p.current +361993357 +1 +p.current.element +25126016 +1 +p.current.element.getClass().getName() +"java.lang.Class" +1 +p.current.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -942 -theNode +904 +theElement +684874119 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +n null 1 -theNode.element +n.element nonsensical 2 -theNode.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next +n.next nonsensical 2 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -942 +904 this -1809238285 +1157740463 1 -this.current +this.element +684874119 +1 +this.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.next null 1 -this.current.element +this.next.element nonsensical 2 -this.current.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -this.current.next +this.next.next nonsensical 2 -this.current.next.element +this.next.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.next.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.next.next.next nonsensical 2 -theNode +theElement +684874119 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +n null 1 -theNode.element +n.element nonsensical 2 -theNode.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -theNode.next +n.next nonsensical 2 -theNode.next.element +n.next.element nonsensical 2 -theNode.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -theNode.next.next +n.next.next nonsensical 2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -941 +903 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -61923,168 +61033,125 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1650170349 +684874119 1 x.getClass().getName() -"java.lang.Double" +"DataStructures.MyInteger" 1 -return -1809238285 +p +1781256139 1 -return.current -null +p.current +361993357 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -943 -this -1809238285 +p.current.element +25126016 1 -this.current -null +p.current.element.getClass().getName() +"java.lang.Class" +1 +p.current.next +1157740463 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -944 -this -1809238285 +905 +theList +1778535015 1 -this.current +theList.header +1856056345 +1 +theList.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +theList.header.element.getClass().getName() nonsensical 2 +theList.header.next +1014328909 +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -944 +906 this -1809238285 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 -return -true +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -943 +906 this -1809238285 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 return -null +false 1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -945 +907 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -62093,106 +61160,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1646898122 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -946 +908 theNode -2004439137 +1014328909 1 theNode.element -null +1307096070 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next -470905757 +403716510 1 theNode.next.element -1987411885 +1597462040 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next.next -1904504032 +1359484306 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -946 +908 this -500010271 +1379435698 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 1 theNode -2004439137 +1014328909 1 theNode.element -null +1307096070 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next -470905757 +403716510 1 theNode.next.element -1987411885 +1597462040 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next.next -1904504032 +1359484306 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -945 +907 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -62201,121 +61262,174 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1646898122 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 return -500010271 +1379435698 1 return.current -2004439137 +1014328909 1 return.current.element -null +1307096070 1 return.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 return.current.next -470905757 +403716510 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -947 +909 this -500010271 +1379435698 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +909 +this +1379435698 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() "java.lang.Long" 1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 this.current.next.next -1904504032 +1359484306 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -948 +910 this -500010271 +1379435698 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +911 +this +1379435698 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() "java.lang.Long" 1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 this.current.next.next -1904504032 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -948 +911 this -500010271 +1379435698 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 1 return false @@ -62323,120 +61437,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -947 +910 this -500010271 +1379435698 1 this.current -2004439137 +1014328909 1 this.current.element -null +1307096070 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next -470905757 +403716510 1 this.current.next.element -1987411885 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +1359484306 1 return -null +1307096070 1 return.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -949 +912 this -1889735576 +1379435698 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -950 +913 this -1889735576 +1379435698 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -950 +913 this -1889735576 +1379435698 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 return false @@ -62444,86 +61558,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -949 +912 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -951 +914 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -951 +914 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return false @@ -62531,86 +61645,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -952 +915 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -953 +916 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -953 +916 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return false @@ -62618,676 +61732,415 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -952 +915 this -1889735576 +1379435698 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return -239304688 +1597462040 1 return.getClass().getName() "java.lang.Object" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER -this_invocation_nonce -954 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -569113986 -1 -x.getClass().getName() -"java.lang.String" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -955 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -955 +917 this -206598964 +1379435698 1 this.current -null +403716510 1 this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 -this_invocation_nonce -954 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -569113986 -1 -x.getClass().getName() -"java.lang.String" -1 -return -206598964 -1 -return.current -null -1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -956 -this -206598964 -1 -this.current -null +1597462040 1 -this.current.element -nonsensical -2 this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -957 -this -206598964 -1 -this.current -null +"java.lang.Object" 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -957 -this -206598964 +1359484306 1 -this.current -null -1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 -return -true +361993357 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -956 +918 this -206598964 +1379435698 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 -return -null +361993357 1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER -this_invocation_nonce -958 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +918 +this +1379435698 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current +403716510 1 -this.header.next.next -1904504032 +this.current.element +1597462040 1 -x -1975214396 +this.current.element.getClass().getName() +"java.lang.Object" 1 -x.getClass().getName() -"java.lang.String" +this.current.next +1359484306 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -959 -theNode -931990051 +this.current.next.element +2059904228 1 -theNode.element -288183948 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" +this.current.next.next +361993357 1 -theNode.next -null +return +false 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -959 +917 this -1626138246 +1379435698 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -931990051 +25126016 1 -theNode.element -288183948 -1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" +this.current.next.element.getClass().getName() +"java.lang.Class" 1 -theNode.next -null +this.current.next.next +1157740463 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -958 +919 this -1032605070 +1379435698 1 -this.header -2004439137 +this.current +1359484306 1 -this.header.element -null +this.current.element +2059904228 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.io.PrintStream" 1 -this.header.next.element -1987411885 +this.current.next +361993357 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +25126016 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Class" 1 -x -1975214396 +this.current.next.next +1157740463 1 -x.getClass().getName() -"java.lang.String" + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +919 +this +1379435698 1 -return -1626138246 +this.current +1359484306 1 -return.current -931990051 +this.current.element +2059904228 1 -return.current.element -288183948 +this.current.element.getClass().getName() +"java.io.PrintStream" 1 -return.current.element.getClass().getName() -"DataStructures.MyInteger" +this.current.next +361993357 1 -return.current.next -null +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +1157740463 +1 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -960 +920 this -1626138246 +1379435698 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -961 +921 this -1626138246 +1379435698 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -961 +921 this -1626138246 +1379435698 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -960 +920 this -1626138246 +1379435698 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return -288183948 +2059904228 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -962 +922 this -1889735576 +1379435698 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -963 +923 this -1889735576 +1379435698 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -963 +923 this -1889735576 +1379435698 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +1157740463 1 return false @@ -63295,86 +62148,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -962 +922 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -964 +924 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -964 +924 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return false @@ -63382,86 +62235,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -965 +925 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -966 +926 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -966 +926 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return false @@ -63469,432 +62322,534 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -965 +925 this -1889735576 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return -853552605 +25126016 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -967 +927 this -1032605070 -1 -this.header -2004439137 +1379435698 1 -this.header.element -null +this.current +361993357 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +25126016 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Class" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +1157740463 1 -this.header.next.next -1904504032 +this.current.next.element +684874119 1 -x -853552605 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -x.getClass().getName() -"java.io.PrintStream" +this.current.next.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -968 -theNode -1456460106 +928 +this +1379435698 1 -theNode.element -853552605 +this.current +361993357 1 -theNode.element.getClass().getName() -"java.io.PrintStream" +this.current.element +25126016 1 -theNode.next -950209035 +this.current.element.getClass().getName() +"java.lang.Class" 1 -theNode.next.element -2042940439 +this.current.next +1157740463 1 -theNode.next.element.getClass().getName() -"java.lang.Class" +this.current.next.element +684874119 1 -theNode.next.next -931990051 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -968 +928 this -1628608800 +1379435698 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 -theNode -1456460106 +return +false 1 -theNode.element -853552605 + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +927 +this +1379435698 1 -theNode.element.getClass().getName() -"java.io.PrintStream" +this.current +1157740463 1 -theNode.next -950209035 +this.current.element +684874119 1 -theNode.next.element -2042940439 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -theNode.next.element.getClass().getName() -"java.lang.Class" +this.current.next +null 1 -theNode.next.next -931990051 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +929 +this +1379435698 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -967 +929 this -1032605070 +1379435698 1 -this.header -2004439137 +this.current +1157740463 1 -this.header.element +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element nonsensical 2 -this.header.next -470905757 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +false 1 -this.header.next.element -1987411885 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +930 +this +1379435698 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current +1157740463 1 -this.header.next.next -1904504032 +this.current.element +684874119 1 -x -853552605 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -x.getClass().getName() -"java.io.PrintStream" +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +931 +this +1379435698 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +931 +this +1379435698 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 return -1628608800 +false 1 -return.current -1456460106 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +930 +this +1379435698 1 -return.current.element -853552605 +this.current +1157740463 1 -return.current.element.getClass().getName() -"java.io.PrintStream" +this.current.element +684874119 1 -return.current.next -950209035 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +684874119 +1 +return.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -969 +932 this -1628608800 +1379435698 1 this.current -1456460106 +1157740463 1 this.current.element -853552605 +684874119 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -970 +933 this -1628608800 +1379435698 1 this.current -1456460106 +1157740463 1 this.current.element -853552605 +684874119 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -970 +933 this -1628608800 +1379435698 1 this.current -1456460106 +1157740463 1 this.current.element -853552605 +684874119 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -969 +932 this -1628608800 +1379435698 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 -return -853552605 -1 -return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -971 +934 this -1032605070 -1 -this.header -2004439137 +1379435698 1 -this.header.element +this.current null 1 -this.header.element.getClass().getName() +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -2042940439 -1 -x.getClass().getName() -"java.lang.Class" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -972 -theNode -1456460106 -1 -theNode.element -853552605 -1 -theNode.element.getClass().getName() -"java.io.PrintStream" -1 -theNode.next -950209035 -1 -theNode.next.element -2042940439 -1 -theNode.next.element.getClass().getName() -"java.lang.Class" -1 -theNode.next.next -931990051 -1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -972 +934 this -201536938 +1379435698 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 -theNode -1456460106 -1 -theNode.element -853552605 -1 -theNode.element.getClass().getName() -"java.io.PrintStream" +nonsensical +2 +return +true 1 -theNode.next -950209035 + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +this_invocation_nonce +905 +theList +1778535015 1 -theNode.next.element -2042940439 +theList.header +1856056345 1 -theNode.next.element.getClass().getName() -"java.lang.Class" +theList.header.element +null 1 -theNode.next.next -931990051 +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +1014328909 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -971 +935 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -63903,329 +62858,248 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -2042940439 -1 -x.getClass().getName() -"java.lang.Class" -1 -return -201536938 -1 -return.current -1456460106 -1 -return.current.element -853552605 -1 -return.current.element.getClass().getName() -"java.io.PrintStream" -1 -return.current.next -950209035 -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -973 -this -201536938 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -950209035 -1 -this.current.next.element -2042940439 -1 -this.current.next.element.getClass().getName() -"java.lang.Class" -1 -this.current.next.next -931990051 +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -974 +935 this -201536938 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -974 +936 this -201536938 -1 -this.current -1456460106 -1 -this.current.element -853552605 +1778535015 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header +1856056345 1 -this.current.next -950209035 +this.header.element +null 1 -this.current.next.element -2042940439 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.element +1307096070 1 -this.current.next.next -931990051 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -return -false +this.header.next.next +403716510 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -973 -this -201536938 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" +937 +theNode +1014328909 1 -this.current.next -950209035 +theNode.element +1307096070 1 -this.current.next.element -2042940439 +theNode.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +theNode.next +403716510 1 -this.current.next.next -931990051 +theNode.next.element +1597462040 1 -return -853552605 +theNode.next.element.getClass().getName() +"java.lang.Object" 1 -return.getClass().getName() -"java.io.PrintStream" +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -975 +937 this -1889735576 +1529306539 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -976 -this -1889735576 +1359484306 1 -this.current -1456460106 +theNode +1014328909 1 -this.current.element -853552605 +theNode.element +1307096070 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +theNode.element.getClass().getName() +"java.lang.Long" 1 -this.current.next -950209035 +theNode.next +403716510 1 -this.current.next.element -2042940439 +theNode.next.element +1597462040 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +theNode.next.element.getClass().getName() +"java.lang.Object" 1 -this.current.next.next -931990051 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -976 +936 this -1889735576 +1778535015 1 -this.current -1456460106 -1 -this.current.element -853552605 +this.header +1856056345 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element +null 1 -this.current.next -950209035 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next.element -2042940439 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -931990051 +this.header.next.next +403716510 1 return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -975 -this -1889735576 -1 -this.current -950209035 -1 -this.current.element -2042940439 +1529306539 1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -931990051 +return.current +1014328909 1 -this.current.next.element -288183948 +return.current.element +1307096070 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +return.current.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.next -null +return.current.next +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -977 +938 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -977 +938 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -64233,86 +63107,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -978 +939 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -979 +940 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -979 +940 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -64320,46 +63194,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -978 +939 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return -2042940439 +1307096070 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -980 +941 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -64368,27 +63242,27 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -649605647 +1635985705 1 x.getClass().getName() -"java.lang.Object" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -981 +942 theNode null 1 @@ -64413,9 +63287,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -981 +942 this -115247781 +695682681 1 this.current null @@ -64462,12 +63336,12 @@ nonsensical DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -980 +941 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -64476,25 +63350,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -649605647 +1635985705 1 x.getClass().getName() -"java.lang.Object" +"java.lang.Double" 1 return -115247781 +695682681 1 return.current null @@ -64511,9 +63385,9 @@ nonsensical DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -982 +943 this -115247781 +695682681 1 this.current null @@ -64539,9 +63413,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -983 +944 this -115247781 +695682681 1 this.current null @@ -64567,9 +63441,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -983 +944 this -115247781 +695682681 1 this.current null @@ -64598,9 +63472,9 @@ true DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -982 +943 this -115247781 +695682681 1 this.current null @@ -64632,12 +63506,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -984 +945 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -64646,106 +63520,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2086689320 +1073502961 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -985 +946 theNode -931990051 +1856056345 1 theNode.element -288183948 +null 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 theNode.next -null +1014328909 1 theNode.next.element -nonsensical -2 +1307096070 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -985 +946 this -431962083 +1582797472 1 this.current -931990051 +1856056345 1 this.current.element -288183948 +null 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 theNode -931990051 +1856056345 1 theNode.element -288183948 +null 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 theNode.next -null +1014328909 1 theNode.next.element -nonsensical -2 +1307096070 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -984 +945 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -64754,242 +63628,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2086689320 +1073502961 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.Long" 1 return -431962083 +1582797472 1 return.current -931990051 +1856056345 1 return.current.element -288183948 +null 1 return.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 return.current.next -null +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -986 +947 this -431962083 +1582797472 1 this.current -931990051 +1856056345 1 this.current.element -288183948 +null 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -987 +948 this -431962083 +1582797472 1 this.current -931990051 +1856056345 1 this.current.element -288183948 +null 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -987 +948 this -431962083 +1582797472 1 this.current -931990051 +1856056345 1 this.current.element -288183948 +null 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -986 +947 this -431962083 +1582797472 1 this.current -931990051 +1856056345 1 this.current.element -288183948 +null 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return -288183948 +null 1 return.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -988 +949 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -989 +950 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -989 +950 this -1889735576 +1529306539 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -64997,220 +63871,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -988 +949 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -990 +951 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -990 +951 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -991 +952 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -992 +953 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -992 +953 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -991 +952 this -1889735576 +1529306539 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -288183948 +1597462040 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -993 +954 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -65219,19 +64093,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1492002121 +644166178 1 x.getClass().getName() "java.lang.String" @@ -65239,7 +64113,7 @@ x.getClass().getName() DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -994 +955 theNode null 1 @@ -65264,9 +64138,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -994 +955 this -2060585275 +892529689 1 this.current null @@ -65313,12 +64187,12 @@ nonsensical DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -993 +954 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -65327,25 +64201,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1492002121 +644166178 1 x.getClass().getName() "java.lang.String" 1 return -2060585275 +892529689 1 return.current null @@ -65362,9 +64236,9 @@ nonsensical DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -995 +956 this -2060585275 +892529689 1 this.current null @@ -65390,9 +64264,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -996 +957 this -2060585275 +892529689 1 this.current null @@ -65418,9 +64292,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -996 +957 this -2060585275 +892529689 1 this.current null @@ -65449,9 +64323,9 @@ true DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -995 +956 this -2060585275 +892529689 1 this.current null @@ -65483,12 +64357,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -997 +958 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -65497,450 +64371,571 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1935425403 +1757676444 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -998 +959 theNode -950209035 +1157740463 1 theNode.element -2042940439 +684874119 1 theNode.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 theNode.next -931990051 +null 1 theNode.next.element -288183948 -1 +nonsensical +2 theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +959 +this +182738614 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +1157740463 +1 +theNode.element +684874119 +1 +theNode.element.getClass().getName() "DataStructures.MyInteger" 1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +this_invocation_nonce +958 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +1757676444 +1 +x.getClass().getName() +"java.lang.String" +1 +return +182738614 +1 +return.current +1157740463 +1 +return.current.element +684874119 +1 +return.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.current.next null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -998 +960 +this +182738614 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +961 this -759947112 +182738614 1 this.current -950209035 +1157740463 1 this.current.element -2042940439 +684874119 1 this.current.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -null -1 -theNode -950209035 -1 -theNode.element -2042940439 -1 -theNode.element.getClass().getName() -"java.lang.Class" +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +961 +this +182738614 1 -theNode.next -931990051 +this.current +1157740463 1 -theNode.next.element -288183948 +this.current.element +684874119 1 -theNode.next.element.getClass().getName() +this.current.element.getClass().getName() "DataStructures.MyInteger" 1 -theNode.next.next +this.current.next null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +false +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -997 +960 this -1032605070 +182738614 1 -this.header -2004439137 +this.current +1157740463 1 -this.header.element +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1935425403 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 return -759947112 -1 -return.current -950209035 -1 -return.current.element -2042940439 -1 -return.current.element.getClass().getName() -"java.lang.Class" +684874119 1 -return.current.next -931990051 +return.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -999 +962 this -759947112 +1529306539 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1000 +963 this -759947112 +1529306539 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1000 +963 this -759947112 +1529306539 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -999 +962 this -759947112 +1529306539 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next -931990051 +361993357 1 this.current.next.element -288183948 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null -1 -return -2042940439 -1 -return.getClass().getName() -"java.lang.Class" +1157740463 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1001 +964 this -1889735576 +1529306539 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1002 +964 this -1889735576 +1529306539 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 +return +false +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1002 +965 this -1889735576 +1529306539 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 -return -false +1157740463 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1001 +966 this -1889735576 +1529306539 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +361993357 +1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1003 +966 this -1889735576 +1529306539 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +361993357 +1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 +return +false +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1003 +965 this -1889735576 +1529306539 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +361993357 +1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return -true +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedList.zeroth():::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1004 +967 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -65949,100 +64944,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +2059904228 +1 +x.getClass().getName() +"java.io.PrintStream" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1005 +968 theNode -2004439137 +1359484306 1 theNode.element -null +2059904228 1 theNode.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next -470905757 +361993357 1 theNode.next.element -1987411885 +25126016 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 theNode.next.next -1904504032 +1157740463 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1005 +968 this -1345862675 +94345706 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 theNode -2004439137 +1359484306 1 theNode.element -null +2059904228 1 theNode.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next -470905757 +361993357 1 theNode.next.element -1987411885 +25126016 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 theNode.next.next -1904504032 +1157740463 1 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1004 +967 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -66051,174 +65052,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +2059904228 +1 +x.getClass().getName() +"java.io.PrintStream" 1 return -1345862675 +94345706 1 return.current -2004439137 +1359484306 1 return.current.element -null +2059904228 1 return.current.element.getClass().getName() -nonsensical -2 -return.current.next -470905757 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1006 -this -1345862675 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1006 -this -1345862675 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 +"java.io.PrintStream" 1 -return -false +return.current.next +361993357 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1007 +969 this -1345862675 +94345706 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1008 +970 this -1345862675 +94345706 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1008 +970 this -1345862675 +94345706 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 return false @@ -66226,46 +65174,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1007 +969 this -1345862675 +94345706 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 return -null +2059904228 1 return.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1009 +971 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -66274,106 +65222,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -468724874 +25126016 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Class" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1010 +972 theNode -931990051 +1359484306 1 theNode.element -288183948 +2059904228 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 theNode.next -null +361993357 1 theNode.next.element -nonsensical -2 +25126016 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 theNode.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1010 +972 this -888940122 +670035812 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 theNode -931990051 +1359484306 1 theNode.element -288183948 +2059904228 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 theNode.next -null +361993357 1 theNode.next.element -nonsensical -2 +25126016 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 theNode.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1009 +971 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -66382,242 +65330,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -468724874 +25126016 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Class" 1 return -888940122 +670035812 1 return.current -931990051 +1359484306 1 return.current.element -288183948 +2059904228 1 return.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 return.current.next -null +361993357 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1011 +973 this -888940122 +670035812 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1012 +974 this -888940122 +670035812 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1012 +974 this -888940122 +670035812 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1011 +973 this -888940122 +670035812 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return -288183948 +2059904228 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1013 +975 this -1345862675 +1529306539 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1014 +976 this -1345862675 +1529306539 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1014 +976 this -1345862675 +1529306539 1 this.current -2004439137 +1359484306 1 this.current.element -null +2059904228 1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -470905757 +361993357 1 this.current.next.element -1987411885 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next.next -1904504032 +1157740463 1 return false @@ -66625,86 +65573,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1013 +975 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1015 +977 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1015 +977 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 return false @@ -66712,86 +65660,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1016 +978 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1017 +979 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1017 +979 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 return false @@ -66799,46 +65747,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1016 +978 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 return -1987411885 +25126016 1 return.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1018 +980 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -66847,106 +65795,384 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -372898275 +1870647526 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1019 +981 theNode -2004439137 +null 1 theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +981 +this +1204167249 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode null 1 +theNode.element +nonsensical +2 theNode.element.getClass().getName() nonsensical 2 theNode.next -470905757 -1 +nonsensical +2 theNode.next.element -1987411885 -1 +nonsensical +2 theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +this_invocation_nonce +980 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 -theNode.next.next -1904504032 +this.header.next.next +403716510 +1 +x +1870647526 1 +x.getClass().getName() +"java.lang.Object" +1 +return +1204167249 +1 +return.current +null +1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1019 +982 this -944025979 +1204167249 1 this.current -2004439137 +null 1 this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +983 +this +1204167249 +1 +this.current null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +983 +this +1204167249 +1 +this.current +null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 this.current.next.element -1987411885 +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +true +1 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +982 +this +1204167249 +1 +this.current +null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +null +1 +return.getClass().getName() +nonsensical +2 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +this_invocation_nonce +984 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 +1 +x +1047503754 +1 +x.getClass().getName() +"java.lang.Integer" 1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +985 theNode -2004439137 +1157740463 1 theNode.element -null +684874119 1 theNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +985 +this +1722023916 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() nonsensical 2 +this.current.next.next +nonsensical +2 +theNode +1157740463 +1 +theNode.element +684874119 +1 +theNode.element.getClass().getName() +"DataStructures.MyInteger" +1 theNode.next -470905757 +null 1 theNode.next.element -1987411885 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1018 +984 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -66955,242 +66181,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -372898275 +1047503754 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 return -944025979 +1722023916 1 return.current -2004439137 +1157740463 1 return.current.element -null +684874119 1 return.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 return.current.next -470905757 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1020 +986 this -944025979 +1722023916 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1021 +987 this -944025979 +1722023916 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1021 +987 this -944025979 +1722023916 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1020 +986 this -944025979 +1722023916 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 return -null +684874119 1 return.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1022 +988 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1023 +989 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1023 +989 this -1345862675 +1529306539 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 return false @@ -67198,220 +66424,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1022 +988 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1024 +990 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1024 +990 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1025 +991 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1026 +992 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1026 +992 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1025 +991 this -1345862675 +1529306539 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +684874119 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1027 +993 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -67420,19 +66646,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -635445017 +2009787198 1 x.getClass().getName() "java.lang.String" @@ -67440,19 +66666,19 @@ x.getClass().getName() DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1028 +994 theNode -931990051 +null 1 theNode.element -288183948 -1 +nonsensical +2 theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 theNode.next -null -1 +nonsensical +2 theNode.next.element nonsensical 2 @@ -67465,22 +66691,22 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1028 +994 this -488224188 +32017212 1 this.current -931990051 +null 1 this.current.element -288183948 -1 +nonsensical +2 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -67491,17 +66717,17 @@ this.current.next.next nonsensical 2 theNode -931990051 +null 1 theNode.element -288183948 -1 +nonsensical +2 theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 theNode.next -null -1 +nonsensical +2 theNode.next.element nonsensical 2 @@ -67512,14 +66738,14 @@ theNode.next.next nonsensical 2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1027 +993 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -67528,57 +66754,57 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -635445017 +2009787198 1 x.getClass().getName() "java.lang.String" 1 return -488224188 +32017212 1 return.current -931990051 +null 1 return.current.element -288183948 -1 +nonsensical +2 return.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 return.current.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1029 +995 this -488224188 +32017212 1 this.current -931990051 +null 1 this.current.element -288183948 -1 +nonsensical +2 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -67591,22 +66817,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1030 +996 this -488224188 +32017212 1 this.current -931990051 +null 1 this.current.element -288183948 -1 +nonsensical +2 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -67619,22 +66845,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1030 +996 this -488224188 +32017212 1 this.current -931990051 +null 1 this.current.element -288183948 -1 +nonsensical +2 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -67645,27 +66871,27 @@ this.current.next.next nonsensical 2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1029 +995 this -488224188 +32017212 1 this.current -931990051 +null 1 this.current.element -288183948 -1 +nonsensical +2 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -67676,268 +66902,251 @@ this.current.next.next nonsensical 2 return -288183948 +null 1 return.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1031 +997 this -1345862675 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 +x +1121454968 +1 +x.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1032 -this -1345862675 -1 -this.current -1904504032 +998 +theNode +361993357 1 -this.current.element -239304688 +theNode.element +25126016 1 -this.current.element.getClass().getName() -"java.lang.Object" +theNode.element.getClass().getName() +"java.lang.Class" 1 -this.current.next -1456460106 +theNode.next +1157740463 1 -this.current.next.element -853552605 +theNode.next.element +684874119 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +theNode.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.current.next.next -950209035 +theNode.next.next +null 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1032 +998 this -1345862675 +1006485584 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1031 -this -1345862675 +null 1 -this.current -1456460106 +theNode +361993357 1 -this.current.element -853552605 +theNode.element +25126016 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +theNode.element.getClass().getName() +"java.lang.Class" 1 -this.current.next -950209035 +theNode.next +1157740463 1 -this.current.next.element -2042940439 +theNode.next.element +684874119 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +theNode.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.current.next.next -931990051 +theNode.next.next +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1033 +997 this -1345862675 -1 -this.current -1456460106 -1 -this.current.element -853552605 +1778535015 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header +1856056345 1 -this.current.next -950209035 +this.header.element +null 1 -this.current.next.element -2042940439 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.element +1307096070 1 -this.current.next.next -931990051 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1033 -this -1345862675 +this.header.next.next +403716510 1 -this.current -1456460106 +x +1121454968 1 -this.current.element -853552605 +x.getClass().getName() +"DataStructures.MyInteger" 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +return +1006485584 1 -this.current.next -950209035 +return.current +361993357 1 -this.current.next.element -2042940439 +return.current.element +25126016 1 -this.current.next.element.getClass().getName() +return.current.element.getClass().getName() "java.lang.Class" 1 -this.current.next.next -931990051 -1 -return -false +return.current.next +1157740463 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1034 +999 this -1345862675 +1006485584 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1035 +1000 this -1345862675 +1006485584 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1035 +1000 this -1345862675 +1006485584 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return false @@ -67945,206 +67154,49 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1034 +999 this -1345862675 +1006485584 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -950209035 -1 -this.current.next.element -2042940439 -1 -this.current.next.element.getClass().getName() "java.lang.Class" 1 -this.current.next.next -931990051 -1 -return -853552605 -1 -return.getClass().getName() -"java.io.PrintStream" -1 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER -this_invocation_nonce -1036 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -48912529 -1 -x.getClass().getName() -"java.lang.String" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1037 -theNode -931990051 -1 -theNode.element -288183948 -1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 -this_invocation_nonce -1037 -this -1734121749 -1 -this.current -931990051 -1 -this.current.element -288183948 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -theNode -931990051 -1 -theNode.element -288183948 -1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -theNode.next -null -1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -1036 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +684874119 1 -this.header.next.next -1904504032 -1 -x -48912529 -1 -x.getClass().getName() -"java.lang.String" -1 -return -1734121749 -1 -return.current -931990051 -1 -return.current.element -288183948 -1 -return.current.element.getClass().getName() +this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 -return.current.next +this.current.next.next null 1 +return +25126016 +1 +return.getClass().getName() +"java.lang.Class" +1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1038 +1001 this -1734121749 +1529306539 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -68164,15 +67216,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1039 +1002 this -1734121749 +1529306539 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -68192,15 +67244,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1039 +1002 this -1734121749 +1529306539 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" @@ -68221,24 +67273,24 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1038 +1001 this -1734121749 +1529306539 1 this.current -931990051 +null 1 this.current.element -288183948 -1 +nonsensical +2 this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -68248,182 +67300,265 @@ nonsensical this.current.next.next nonsensical 2 -return -288183948 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1003 +this +1529306539 1 -return.getClass().getName() -"DataStructures.MyInteger" +this.current +null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1040 +1003 this -1345862675 +1529306539 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 +nonsensical +2 +return +true 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -1041 +1004 this -1345862675 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1005 +theNode +1856056345 +1 +theNode.element +null +1 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 +1 +theNode.next.element +1307096070 +1 +theNode.next.element.getClass().getName() +"java.lang.Long" +1 +theNode.next.next +403716510 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1041 +1005 this -1345862675 +466505482 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 -return -false +theNode +1856056345 +1 +theNode.element +null +1 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 +1 +theNode.next.element +1307096070 +1 +theNode.next.element.getClass().getName() +"java.lang.Long" +1 +theNode.next.next +403716510 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -1040 +1004 this -1345862675 +1778535015 1 -this.current -950209035 +this.header +1856056345 1 -this.current.element -2042940439 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Class" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -931990051 +this.header.next.element +1307096070 1 -this.current.next.element -288183948 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +this.header.next.next +403716510 1 -this.current.next.next +return +466505482 +1 +return.current +1856056345 +1 +return.current.element null 1 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +1014328909 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1042 +1006 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1042 +1006 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return false @@ -68431,86 +67566,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1043 +1007 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1044 +1008 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1044 +1008 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return false @@ -68518,46 +67653,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1043 +1007 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return -2042940439 +null 1 return.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1045 +1009 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -68566,106 +67701,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1580893732 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1046 +1010 theNode -1904504032 +1157740463 1 theNode.element -239304688 +684874119 1 theNode.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1046 +1010 this -1883662006 +1547425104 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 theNode -1904504032 +1157740463 1 theNode.element -239304688 +684874119 1 theNode.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1045 +1009 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -68674,242 +67809,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1580893732 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 return -1883662006 +1547425104 1 return.current -1904504032 +1157740463 1 return.current.element -239304688 +684874119 1 return.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 return.current.next -1456460106 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1047 +1011 this -1883662006 +1547425104 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1048 +1012 this -1883662006 +1547425104 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1048 +1012 this -1883662006 +1547425104 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1047 +1011 this -1883662006 +1547425104 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +684874119 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1049 +1013 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1050 +1014 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1050 +1014 this -1345862675 +466505482 1 this.current -950209035 +1856056345 1 this.current.element -2042940439 +null 1 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 +1014328909 1 this.current.next.element -288183948 +1307096070 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next.next -null +403716510 1 return false @@ -68917,220 +68052,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1049 +1013 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1051 +1015 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1051 +1015 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1052 +1016 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1053 +1017 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1053 +1017 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1052 +1016 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return -288183948 +1307096070 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1054 +1018 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -69139,106 +68274,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +152134087 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1055 +1019 theNode -1456460106 +1856056345 1 theNode.element -853552605 +null 1 theNode.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next -950209035 +1014328909 1 theNode.next.element -2042940439 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1055 +1019 this -503410768 +1615780336 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 theNode -1456460106 +1856056345 1 theNode.element -853552605 +null 1 theNode.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next -950209035 +1014328909 1 theNode.next.element -2042940439 +1307096070 1 theNode.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next.next -931990051 +403716510 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1054 +1018 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -69247,121 +68382,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +152134087 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return -503410768 +1615780336 1 return.current -1456460106 +1856056345 1 return.current.element -853552605 +null 1 return.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 return.current.next -950209035 +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1056 +1020 this -503410768 +1615780336 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1057 +1021 this -503410768 +1615780336 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1057 +1021 this -503410768 +1615780336 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 return false @@ -69369,335 +68504,341 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1056 +1020 this -503410768 +1615780336 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 return -853552605 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1058 +1022 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1059 +1023 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1059 +1023 this -1345862675 +466505482 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1058 +1022 this -1345862675 +466505482 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1060 +1024 this -1345862675 +466505482 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1060 +1024 this -1345862675 +466505482 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -true +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1061 +1025 this -1034442050 +466505482 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1062 +1026 this -1034442050 +466505482 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1062 +1026 this -1034442050 +466505482 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1061 +1025 this -1034442050 +466505482 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 +return +1597462040 +1 +return.getClass().getName() +"java.lang.Object" +1 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1063 +1027 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -69706,139 +68847,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1886692243 +1783593083 1 x.getClass().getName() -"java.lang.Object" -1 -p -1034442050 -1 -p.current -931990051 -1 -p.current.element -288183948 -1 -p.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -p.current.next -null +"java.lang.String" 1 -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1064 -theElement -1886692243 +1028 +theNode +1157740463 1 -theElement.getClass().getName() -"java.lang.Object" +theNode.element +684874119 1 -n +theNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +theNode.next null 1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element +theNode.next.element nonsensical 2 -n.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -n.next.next +theNode.next.next nonsensical 2 -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1064 +1028 this -2040480146 +1750905143 1 -this.element -1886692243 +this.current +1157740463 1 -this.element.getClass().getName() -"java.lang.Object" +this.current.element +684874119 1 -this.next +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next null 1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element +this.current.next.element nonsensical 2 -this.next.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -this.next.next.next +this.current.next.next nonsensical 2 -theElement -1886692243 +theNode +1157740463 1 -theElement.getClass().getName() -"java.lang.Object" +theNode.element +684874119 1 -n +theNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +theNode.next null 1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element +theNode.next.element nonsensical 2 -n.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -n.next.next +theNode.next.next nonsensical 2 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1063 +1027 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -69847,819 +68955,815 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1886692243 +1783593083 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 -p -1034442050 +return +1750905143 1 -p.current -931990051 +return.current +1157740463 1 -p.current.element -288183948 +return.current.element +684874119 1 -p.current.element.getClass().getName() +return.current.element.getClass().getName() "DataStructures.MyInteger" 1 -p.current.next -2040480146 -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -1065 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element +return.current.next null 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 -DataStructures.LinkedList.isEmpty():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1066 +1029 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +1750905143 1 -this.header.next.next -1904504032 +this.current +1157740463 1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -1066 -this -1032605070 +this.current.element +684874119 1 -this.header -2004439137 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -return -false -1 - -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -1067 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1068 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" +1030 +this +1750905143 1 -theNode.next -1904504032 +this.current +1157740463 1 -theNode.next.element -239304688 +this.current.element +684874119 1 -theNode.next.element.getClass().getName() -"java.lang.Object" +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -theNode.next.next -1456460106 +this.current.next +null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1068 +1030 this -1183454879 +1750905143 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" -1 -theNode.next -1904504032 -1 -theNode.next.element -239304688 -1 -theNode.next.element.getClass().getName() -"java.lang.Object" -1 -theNode.next.next -1456460106 +nonsensical +2 +return +false 1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1067 +1029 this -1032605070 +1750905143 +1 +this.current +1157740463 +1 +this.current.element +684874119 1 -this.header -2004439137 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element nonsensical 2 -this.header.next -470905757 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +684874119 1 -this.header.next.element -1987411885 +return.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +1031 +this +466505482 1 -this.header.next.next -1904504032 +this.current +403716510 1 -return -1183454879 +this.current.element +1597462040 1 -return.current -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -return.current.element -1987411885 +this.current.next +1359484306 1 -return.current.element.getClass().getName() -"java.lang.Long" +this.current.next.element +2059904228 1 -return.current.next -1904504032 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1069 +1032 this -1183454879 +466505482 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +1359484306 1 this.current.next.element -239304688 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1456460106 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1069 +1032 this -1183454879 +466505482 1 this.current -470905757 +403716510 1 this.current.element -1987411885 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +1359484306 1 this.current.next.element -239304688 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1456460106 +361993357 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1070 +1031 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1071 +1033 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1071 +1033 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1070 +1034 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 -1 -return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +1157740463 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1072 +1035 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1073 +1035 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1073 +1034 this -1183454879 +466505482 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 return -false +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1072 +1036 this -1183454879 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 +x +1782704802 +1 +x.getClass().getName() +"java.lang.String" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1074 +1037 +theNode +1157740463 +1 +theNode.element +684874119 +1 +theNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +1037 this -1183454879 +2094411587 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 +nonsensical +2 +theNode +1157740463 +1 +theNode.element +684874119 +1 +theNode.element.getClass().getName() +"DataStructures.MyInteger" 1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1074 +1036 this -1183454879 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 +x +1782704802 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +2094411587 +1 +return.current +1157740463 +1 +return.current.element +684874119 +1 +return.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.current.next +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1075 +1038 this -1183454879 +2094411587 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1076 +1039 this -1183454879 +2094411587 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1076 +1039 this -1183454879 +2094411587 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1075 +1038 this -1183454879 +2094411587 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +684874119 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1077 +1040 this -1183454879 +466505482 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1078 +1041 this -1183454879 +466505482 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1078 +1041 this -1183454879 +466505482 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1456460106 +361993357 1 this.current.next.element -853552605 +25126016 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next.next -950209035 +1157740463 1 return false @@ -70667,86 +69771,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1077 +1040 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1079 +1042 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1079 +1042 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return false @@ -70754,86 +69858,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1080 +1043 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1081 +1044 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1081 +1044 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return false @@ -70841,294 +69945,277 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1080 +1043 this -1183454879 +466505482 1 this.current -1456460106 +361993357 1 this.current.element -853552605 +25126016 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 this.current.next -950209035 +1157740463 1 this.current.next.element -2042940439 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"DataStructures.MyInteger" 1 this.current.next.next -931990051 +null 1 return -853552605 +25126016 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Class" 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1082 +1045 this -1183454879 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 +x +2059904228 +1 +x.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1083 -this -1183454879 -1 -this.current -1456460106 +1046 +theNode +403716510 1 -this.current.element -853552605 +theNode.element +1597462040 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +theNode.element.getClass().getName() +"java.lang.Object" 1 -this.current.next -950209035 +theNode.next +1359484306 1 -this.current.next.element -2042940439 +theNode.next.element +2059904228 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +theNode.next.element.getClass().getName() +"java.io.PrintStream" 1 -this.current.next.next -931990051 +theNode.next.next +361993357 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1083 +1046 this -1183454879 +1833638914 1 this.current -1456460106 +403716510 1 this.current.element -853552605 +1597462040 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +1359484306 1 this.current.next.element -2042940439 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next.next -931990051 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1082 -this -1183454879 +361993357 1 -this.current -950209035 +theNode +403716510 1 -this.current.element -2042940439 +theNode.element +1597462040 1 -this.current.element.getClass().getName() -"java.lang.Class" +theNode.element.getClass().getName() +"java.lang.Object" 1 -this.current.next -931990051 +theNode.next +1359484306 1 -this.current.next.element -288183948 +theNode.next.element +2059904228 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +theNode.next.element.getClass().getName() +"java.io.PrintStream" 1 -this.current.next.next -2040480146 +theNode.next.next +361993357 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1084 +1045 this -1183454879 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" +1778535015 1 -this.current.next -931990051 +this.header +1856056345 1 -this.current.next.element -288183948 +this.header.element +null 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next.next -2040480146 +this.header.next.element +1307096070 1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1084 -this -1183454879 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current -950209035 +this.header.next.next +403716510 1 -this.current.element -2042940439 +x +2059904228 1 -this.current.element.getClass().getName() -"java.lang.Class" +x.getClass().getName() +"java.io.PrintStream" 1 -this.current.next -931990051 +return +1833638914 1 -this.current.next.element -288183948 +return.current +403716510 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +return.current.element +1597462040 1 -this.current.next.next -2040480146 +return.current.element.getClass().getName() +"java.lang.Object" 1 -return -false +return.current.next +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1085 +1047 this -1183454879 +1833638914 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1086 +1048 this -1183454879 +1833638914 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1086 +1048 this -1183454879 +1833638914 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -71136,120 +70223,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1085 +1047 this -1183454879 +1833638914 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1087 +1049 this -1183454879 +466505482 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +1157740463 1 this.current.next.element -288183948 +684874119 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -2040480146 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1088 +1050 this -1183454879 +466505482 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +1157740463 1 this.current.next.element -288183948 +684874119 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -2040480146 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1088 +1050 this -1183454879 +466505482 1 this.current -950209035 +361993357 1 this.current.element -2042940439 +25126016 1 this.current.element.getClass().getName() "java.lang.Class" 1 this.current.next -931990051 +1157740463 1 this.current.next.element -288183948 +684874119 1 this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next.next -2040480146 +null 1 return false @@ -71257,313 +70344,504 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1087 +1049 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1089 +1051 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1089 +1051 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1090 +1052 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1091 +1053 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1091 +1053 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -null -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1090 +1052 this -1183454879 +466505482 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +684874119 +1 +return.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +this_invocation_nonce +1054 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1055 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() +"java.io.PrintStream" +1 +theNode.next +361993357 +1 +theNode.next.element +25126016 +1 +theNode.next.element.getClass().getName() +"java.lang.Class" +1 +theNode.next.next +1157740463 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +1055 +this +1620303253 +1 +this.current +1359484306 +1 +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next +1157740463 +1 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() +"java.io.PrintStream" +1 +theNode.next +361993357 +1 +theNode.next.element +25126016 +1 +theNode.next.element.getClass().getName() +"java.lang.Class" +1 +theNode.next.next +1157740463 +1 + +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +this_invocation_nonce +1054 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element null 1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" +1 return -288183948 +1620303253 1 -return.getClass().getName() -"DataStructures.MyInteger" +return.current +1359484306 +1 +return.current.element +2059904228 +1 +return.current.element.getClass().getName() +"java.io.PrintStream" +1 +return.current.next +361993357 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1092 +1056 this -1183454879 +1620303253 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1093 +1057 this -1183454879 +1620303253 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1093 +1057 this -1183454879 +1620303253 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1092 +1056 this -1183454879 +1620303253 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +1157740463 +1 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" +1 + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +1058 +this +466505482 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 this.current.next null @@ -71580,18 +70858,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1094 +1059 this -1183454879 +466505482 1 this.current -2040480146 +1157740463 1 this.current.element -1886692243 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next null @@ -71608,18 +70886,18 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1094 +1059 this -1183454879 +466505482 1 this.current -2040480146 +1157740463 1 this.current.element -1886692243 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next null @@ -71637,24 +70915,24 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1095 +1058 this -1183454879 +466505482 1 this.current -2040480146 +null 1 this.current.element -1886692243 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -71667,22 +70945,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1096 +1060 this -1183454879 +466505482 1 this.current -2040480146 +null 1 this.current.element -1886692243 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -71695,22 +70973,22 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1096 +1060 this -1183454879 +466505482 1 this.current -2040480146 +null 1 this.current.element -1886692243 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -71721,85 +70999,110 @@ this.current.next.next nonsensical 2 return -false +true 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1095 +1061 this -1183454879 +1781256139 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -1886692243 +"DataStructures.MyInteger" 1 -return.getClass().getName() -"java.lang.Object" +this.current.next.next +null 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1097 +1062 this -1183454879 +1781256139 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next +1157740463 +1 +this.current.next.element +684874119 +1 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next.next null 1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1062 +this +1781256139 +1 +this.current +361993357 +1 +this.current.element +25126016 +1 +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +null +1 +return +false +1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1098 +1061 this -1183454879 +1781256139 1 this.current -2040480146 +1157740463 1 this.current.element -1886692243 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next null @@ -71814,132 +71117,204 @@ this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER this_invocation_nonce -1098 +1063 this -1183454879 +1778535015 1 -this.current -2040480146 +this.header +1856056345 1 -this.current.element -1886692243 +this.header.element +null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +90320863 +1 +x.getClass().getName() "java.lang.Object" 1 -this.current.next +p +1781256139 +1 +p.current +1157740463 +1 +p.current.element +684874119 +1 +p.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +p.current.next null 1 -this.current.next.element + +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER +this_invocation_nonce +1064 +theElement +90320863 +1 +theElement.getClass().getName() +"java.lang.Object" +1 +n +null +1 +n.element nonsensical 2 -this.current.next.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -this.current.next.next +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next nonsensical 2 -return -false -1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 this_invocation_nonce -1097 +1064 this -1183454879 +1216590855 1 -this.current +this.element +90320863 +1 +this.element.getClass().getName() +"java.lang.Object" +1 +this.next null 1 -this.current.element +this.next.element nonsensical 2 -this.current.element.getClass().getName() +this.next.element.getClass().getName() nonsensical 2 -this.current.next +this.next.next nonsensical 2 -this.current.next.element +this.next.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.next.next.element.getClass().getName() nonsensical 2 -this.current.next.next +this.next.next.next nonsensical 2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1099 -this -1183454879 +theElement +90320863 1 -this.current +theElement.getClass().getName() +"java.lang.Object" +1 +n null 1 -this.current.element +n.element nonsensical 2 -this.current.element.getClass().getName() +n.element.getClass().getName() nonsensical 2 -this.current.next +n.next nonsensical 2 -this.current.next.element +n.next.element nonsensical 2 -this.current.next.element.getClass().getName() +n.next.element.getClass().getName() nonsensical 2 -this.current.next.next +n.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -1099 +1063 this -1183454879 +1778535015 1 -this.current +this.header +1856056345 +1 +this.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +this.header.element.getClass().getName() nonsensical 2 -return -true +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +90320863 +1 +x.getClass().getName() +"java.lang.Object" +1 +p +1781256139 +1 +p.current +1157740463 +1 +p.current.element +684874119 +1 +p.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +p.current.next +1216590855 1 -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce 1065 theList -1032605070 +1778535015 1 theList.header -2004439137 +1856056345 1 theList.header.element null @@ -71948,17 +71323,17 @@ theList.header.element.getClass().getName() nonsensical 2 theList.header.next -470905757 +1014328909 1 DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -1100 +1066 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -71967,26 +71342,26 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -1100 +1066 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -71995,16 +71370,16 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 return false @@ -72012,12 +71387,12 @@ false DataStructures.LinkedList.first():::ENTER this_invocation_nonce -1101 +1067 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -72026,100 +71401,100 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1102 +1068 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" 1 theNode.next -1904504032 +403716510 1 theNode.next.element -239304688 +1597462040 1 theNode.next.element.getClass().getName() "java.lang.Object" 1 theNode.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1102 +1068 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 theNode -470905757 +1014328909 1 theNode.element -1987411885 +1307096070 1 theNode.element.getClass().getName() "java.lang.Long" 1 theNode.next -1904504032 +403716510 1 theNode.next.element -239304688 +1597462040 1 theNode.next.element.getClass().getName() "java.lang.Object" 1 theNode.next.next -1456460106 +1359484306 1 DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -1101 +1067 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -72128,87 +71503,87 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 return -332612839 +2107447833 1 return.current -470905757 +1014328909 1 return.current.element -1987411885 +1307096070 1 return.current.element.getClass().getName() "java.lang.Long" 1 return.current.next -1904504032 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1103 +1069 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1103 +1069 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 return false @@ -72216,86 +71591,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1104 +1070 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1105 +1071 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1105 +1071 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 return false @@ -72303,676 +71678,710 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1104 +1070 this -332612839 +2107447833 1 this.current -470905757 +1014328909 1 this.current.element -1987411885 +1307096070 1 this.current.element.getClass().getName() "java.lang.Long" 1 this.current.next -1904504032 +403716510 1 this.current.next.element -239304688 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +1359484306 1 return -1987411885 +1307096070 1 return.getClass().getName() "java.lang.Long" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1106 +1072 this -1032605070 +2107447833 1 -this.header -2004439137 +this.current +1014328909 1 -this.header.element -null +this.current.element +1307096070 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Long" 1 -this.header.next.element -1987411885 +this.current.next +403716510 1 -this.header.next.element.getClass().getName() +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1073 +this +2107447833 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() "java.lang.Long" 1 -this.header.next.next -1904504032 +this.current.next +403716510 1 -x -324051932 +this.current.next.element +1597462040 1 -x.getClass().getName() -"java.lang.Integer" +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1107 -theNode -null +1073 +this +2107447833 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 +return +false 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1107 +1072 this -322292332 +2107447833 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 -theNode -null +361993357 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1106 +1074 this -1032605070 +2107447833 1 -this.header -2004439137 +this.current +403716510 1 -this.header.element -null +this.current.element +1597462040 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +1359484306 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +2059904228 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -x -324051932 +this.current.next.next +361993357 1 -x.getClass().getName() -"java.lang.Integer" + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1074 +this +2107447833 1 -return -322292332 +this.current +403716510 1 -return.current -null +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 +return +false 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1108 +1075 this -322292332 +2107447833 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1109 +1076 this -322292332 +2107447833 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1109 +1076 this -322292332 +2107447833 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1108 +1075 this -322292332 +2107447833 1 this.current -null +403716510 1 this.current.element -nonsensical -2 +1597462040 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +1359484306 +1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -null +1597462040 1 return.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1110 +1077 this -1032605070 -1 -this.header -2004439137 +2107447833 1 -this.header.element -null +this.current +403716510 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +1597462040 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +1359484306 1 -this.header.next.next -1904504032 +this.current.next.element +2059904228 1 -x -813466190 +this.current.next.element.getClass().getName() +"java.io.PrintStream" 1 -x.getClass().getName() -"java.lang.String" +this.current.next.next +361993357 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1111 -theNode -2040480146 +1078 +this +2107447833 1 -theNode.element -1886692243 +this.current +403716510 1 -theNode.element.getClass().getName() +this.current.element +1597462040 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next -null +this.current.next +1359484306 +1 +this.current.next.element +2059904228 +1 +this.current.next.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next.next +361993357 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1111 +1078 this -1045358528 +2107447833 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 -theNode -2040480146 +361993357 1 -theNode.element -1886692243 +return +false 1 -theNode.element.getClass().getName() -"java.lang.Object" + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +1077 +this +2107447833 1 -theNode.next -null +this.current +1359484306 +1 +this.current.element +2059904228 +1 +this.current.element.getClass().getName() +"java.io.PrintStream" +1 +this.current.next +361993357 +1 +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +1157740463 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1110 +1079 this -1032605070 +2107447833 1 -this.header -2004439137 +this.current +1359484306 1 -this.header.element -null +this.current.element +2059904228 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.io.PrintStream" 1 -this.header.next.element -1987411885 +this.current.next +361993357 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +25126016 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Class" 1 -x -813466190 +this.current.next.next +1157740463 1 -x.getClass().getName() -"java.lang.String" + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1079 +this +2107447833 1 -return -1045358528 +this.current +1359484306 1 -return.current -2040480146 +this.current.element +2059904228 1 -return.current.element -1886692243 +this.current.element.getClass().getName() +"java.io.PrintStream" 1 -return.current.element.getClass().getName() -"java.lang.Object" +this.current.next +361993357 1 -return.current.next -null +this.current.next.element +25126016 +1 +this.current.next.element.getClass().getName() +"java.lang.Class" +1 +this.current.next.next +1157740463 +1 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1112 +1080 this -1045358528 +2107447833 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1113 +1081 this -1045358528 +2107447833 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1113 +1081 this -1045358528 +2107447833 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1112 +1080 this -1045358528 +2107447833 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return -1886692243 +2059904228 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1114 +1082 this -332612839 +2107447833 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1115 +1083 this -332612839 +2107447833 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1115 +1083 this -332612839 +2107447833 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 return false @@ -72980,86 +72389,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1114 +1082 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1116 +1084 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1116 +1084 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 return false @@ -73067,86 +72476,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1117 +1085 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1118 +1086 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1118 +1086 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 return false @@ -73154,215 +72563,232 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1117 +1085 this -332612839 +2107447833 1 this.current -1904504032 +361993357 1 this.current.element -239304688 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -1456460106 +1157740463 1 this.current.next.element -853552605 +684874119 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"DataStructures.MyInteger" 1 this.current.next.next -950209035 +1216590855 1 return -239304688 +25126016 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1119 +1087 this -1032605070 +2107447833 1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +361993357 1 -this.header.next.element -1987411885 +this.current.element +25126016 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Class" 1 -this.header.next.next -1904504032 +this.current.next +1157740463 1 -x -777063989 +this.current.next.element +684874119 1 -x.getClass().getName() +this.current.next.element.getClass().getName() "DataStructures.MyInteger" 1 +this.current.next.next +1216590855 +1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1120 -theNode -931990051 +1088 +this +2107447833 1 -theNode.element -288183948 +this.current +361993357 1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" +this.current.element +25126016 1 -theNode.next -2040480146 +this.current.element.getClass().getName() +"java.lang.Class" 1 -theNode.next.element -1886692243 +this.current.next +1157740463 1 -theNode.next.element.getClass().getName() -"java.lang.Object" +this.current.next.element +684874119 1 -theNode.next.next -null +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next.next +1216590855 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1120 +1088 this -1266405716 +2107447833 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 -theNode -931990051 +return +false 1 -theNode.element -288183948 + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +1087 +this +2107447833 1 -theNode.element.getClass().getName() +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() "DataStructures.MyInteger" 1 -theNode.next -2040480146 +this.current.next +1216590855 1 -theNode.next.element -1886692243 +this.current.next.element +90320863 1 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() "java.lang.Object" 1 -theNode.next.next +this.current.next.next null 1 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1119 +1089 this -1032605070 +2107447833 1 -this.header -2004439137 +this.current +1157740463 1 -this.header.element -null +this.current.element +684874119 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.next.element -1987411885 +this.current.next +1216590855 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +90320863 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -x -777063989 +this.current.next.next +null 1 -x.getClass().getName() + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1089 +this +2107447833 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() "DataStructures.MyInteger" 1 -return -1266405716 +this.current.next +1216590855 1 -return.current -931990051 +this.current.next.element +90320863 1 -return.current.element -288183948 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -return.current.element.getClass().getName() -"DataStructures.MyInteger" +this.current.next.next +null 1 -return.current.next -2040480146 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1121 +1090 this -1266405716 +2107447833 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -73373,24 +72799,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1122 +1091 this -1266405716 +2107447833 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -73401,24 +72827,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1122 +1091 this -1266405716 +2107447833 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -73432,24 +72858,24 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1121 +1090 this -1266405716 +2107447833 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -73458,82 +72884,197 @@ this.current.next.next null 1 return -288183948 +684874119 1 return.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1123 +1092 this -1032605070 +2107447833 1 -this.header -2004439137 +this.current +1157740463 1 -this.header.element +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next null 1 -this.header.element.getClass().getName() + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1093 +this +2107447833 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1093 +this +2107447833 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 +return +false +1 + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +1092 +this +2107447833 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +null +1 +this.current.next.element nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1094 +this +2107447833 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current +1216590855 1 -this.header.next.next -1904504032 +this.current.element +90320863 1 -x -770443395 +this.current.element.getClass().getName() +"java.lang.Object" 1 -x.getClass().getName() -"java.lang.Double" +this.current.next +null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1124 -theNode -2040480146 +1094 +this +2107447833 1 -theNode.element -1886692243 +this.current +1216590855 1 -theNode.element.getClass().getName() +this.current.element +90320863 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 +return +false +1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1124 +1095 this -1663232002 +2107447833 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -73550,88 +73091,111 @@ nonsensical this.current.next.next nonsensical 2 -theNode -2040480146 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1096 +this +2107447833 1 -theNode.element -1886692243 +this.current +1216590855 1 -theNode.element.getClass().getName() +this.current.element +90320863 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1123 +1096 this -1032605070 +2107447833 1 -this.header -2004439137 +this.current +1216590855 1 -this.header.element +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() nonsensical 2 -this.header.next -470905757 +this.current.next.next +nonsensical +2 +return +false 1 -this.header.next.element -1987411885 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +1095 +this +2107447833 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current +1216590855 1 -this.header.next.next -1904504032 +this.current.element +90320863 1 -x -770443395 +this.current.element.getClass().getName() +"java.lang.Object" 1 -x.getClass().getName() -"java.lang.Double" +this.current.next +null 1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 return -1663232002 -1 -return.current -2040480146 -1 -return.current.element -1886692243 +90320863 1 -return.current.element.getClass().getName() +return.getClass().getName() "java.lang.Object" 1 -return.current.next -null -1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1125 +1097 this -1663232002 +2107447833 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -73651,15 +73215,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1126 +1098 this -1663232002 +2107447833 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -73679,15 +73243,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1126 +1098 this -1663232002 +2107447833 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -73708,24 +73272,80 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1125 +1097 this -1663232002 +2107447833 1 this.current -2040480146 +null 1 this.current.element -1886692243 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1099 +this +2107447833 +1 +this.current +null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1099 +this +2107447833 +1 +this.current null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 this.current.next.element nonsensical 2 @@ -73736,181 +73356,286 @@ this.current.next.next nonsensical 2 return -1886692243 +true 1 -return.getClass().getName() -"java.lang.Object" + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +this_invocation_nonce +1065 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element +null +1 +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +1014328909 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -1127 +1100 this -332612839 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +1100 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -1128 +1101 this -332612839 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1102 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1128 +1102 this -332612839 +60559178 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +1359484306 1 -return -false +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -1127 +1101 this -332612839 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 +return +60559178 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1129 +1103 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1129 +1103 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -73918,86 +73643,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1130 +1104 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1131 +1105 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1131 +1105 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -74005,46 +73730,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1130 +1104 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return -853552605 +1307096070 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1132 +1106 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -74053,106 +73778,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -145624615 +395629617 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1133 +1107 theNode -470905757 +null 1 theNode.element -1987411885 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 -1 +nonsensical +2 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1133 +1107 this -1529030372 +1122134344 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 theNode -470905757 +null 1 theNode.element -1987411885 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 -1 +nonsensical +2 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1132 +1106 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -74161,168 +73886,168 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -145624615 +395629617 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 return -1529030372 +1122134344 1 return.current -470905757 +null 1 return.current.element -1987411885 -1 +nonsensical +2 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1134 +1108 this -1529030372 +1122134344 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1135 +1109 this -1529030372 +1122134344 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1135 +1109 this -1529030372 +1122134344 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1134 +1108 this -1529030372 +1122134344 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1136 +1110 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -74331,19 +74056,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1624142202 +1471868639 1 x.getClass().getName() "java.lang.String" @@ -74351,12 +74076,12 @@ x.getClass().getName() DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1137 +1111 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -74376,15 +74101,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1137 +1111 this -293351997 +876563773 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -74402,10 +74127,10 @@ this.current.next.next nonsensical 2 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -74425,12 +74150,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1136 +1110 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -74439,31 +74164,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1624142202 +1471868639 1 x.getClass().getName() "java.lang.String" 1 return -293351997 +876563773 1 return.current -2040480146 +1216590855 1 return.current.element -1886692243 +90320863 1 return.current.element.getClass().getName() "java.lang.Object" @@ -74474,15 +74199,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1138 +1112 this -293351997 +876563773 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -74502,15 +74227,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1139 +1113 this -293351997 +876563773 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -74530,15 +74255,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1139 +1113 this -293351997 +876563773 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -74561,15 +74286,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1138 +1112 this -293351997 +876563773 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -74587,7 +74312,7 @@ this.current.next.next nonsensical 2 return -1886692243 +90320863 1 return.getClass().getName() "java.lang.Object" @@ -74595,86 +74320,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1140 +1114 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1141 +1115 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1141 +1115 this -332612839 +60559178 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -74682,86 +74407,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1140 +1114 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1142 +1116 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1142 +1116 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -74769,86 +74494,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1143 +1117 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1144 +1118 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1144 +1118 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -74856,46 +74581,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1143 +1117 this -332612839 +60559178 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1145 +1119 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -74904,106 +74629,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1892043714 +87765719 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1146 +1120 theNode -null +1157740463 1 theNode.element -nonsensical -2 +684874119 +1 theNode.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 theNode.next -nonsensical -2 +1216590855 +1 theNode.next.element -nonsensical -2 +90320863 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1146 +1120 this -1788340069 +1413653265 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 -theNode null 1 +theNode +1157740463 +1 theNode.element -nonsensical -2 +684874119 +1 theNode.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 theNode.next -nonsensical -2 +1216590855 +1 theNode.next.element -nonsensical -2 +90320863 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +null +1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1145 +1119 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -75012,168 +74737,168 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1892043714 +87765719 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 return -1788340069 +1413653265 1 return.current -null +1157740463 1 return.current.element -nonsensical -2 +684874119 +1 return.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 return.current.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1147 +1121 this -1788340069 +1413653265 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1148 +1122 this -1788340069 +1413653265 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1148 +1122 this -1788340069 +1413653265 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1147 +1121 this -1788340069 +1413653265 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 -return null 1 +return +684874119 +1 return.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1149 +1123 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -75182,106 +74907,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1418621776 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1150 +1124 theNode -1904504032 +1216590855 1 theNode.element -239304688 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1150 +1124 this -450416271 +446073433 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 theNode -1904504032 +1216590855 1 theNode.element -239304688 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1149 +1123 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -75290,329 +75015,329 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1418621776 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 return -450416271 +446073433 1 return.current -1904504032 +1216590855 1 return.current.element -239304688 +90320863 1 return.current.element.getClass().getName() "java.lang.Object" 1 return.current.next -1456460106 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1151 +1125 +this +446073433 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1126 +this +446073433 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1126 +this +446073433 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +1125 this -450416271 +446073433 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +90320863 +1 +return.getClass().getName() +"java.lang.Object" +1 + +DataStructures.LinkedListItr.advance():::ENTER +this_invocation_nonce +1127 +this +60559178 +1 +this.current +403716510 +1 +this.current.element +1597462040 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +1359484306 +1 +this.current.next.element +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1152 +1128 this -450416271 +60559178 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1152 +1128 this -450416271 +60559178 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1151 +1127 this -450416271 +60559178 1 this.current -1904504032 +1359484306 1 this.current.element -239304688 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() "java.io.PrintStream" 1 -this.current.next.next -950209035 -1 -return -239304688 -1 -return.getClass().getName() -"java.lang.Object" -1 - -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -1153 -this -332612839 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 this.current.next -931990051 +361993357 1 this.current.next.element -288183948 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next.next -2040480146 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1154 -this -332612839 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() -"java.lang.Class" -1 -this.current.next -931990051 -1 -this.current.next.element -288183948 -1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next.next -2040480146 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1154 -this -332612839 -1 -this.current -950209035 -1 -this.current.element -2042940439 -1 -this.current.element.getClass().getName() "java.lang.Class" 1 -this.current.next -931990051 -1 -this.current.next.element -288183948 -1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 this.current.next.next -2040480146 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1153 -this -332612839 -1 -this.current -931990051 -1 -this.current.element -288183948 -1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.current.next -2040480146 -1 -this.current.next.element -1886692243 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1155 +1129 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1155 +1129 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false @@ -75620,86 +75345,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1156 +1130 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1157 +1131 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1157 +1131 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false @@ -75707,46 +75432,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1156 +1130 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return -288183948 +2059904228 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1158 +1132 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -75755,106 +75480,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +1181199958 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1159 +1133 theNode -950209035 +1014328909 1 theNode.element -2042940439 +1307096070 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next -931990051 +403716510 1 theNode.next.element -288183948 +1597462040 1 theNode.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 theNode.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1159 +1133 this -266411022 +125622176 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 theNode -950209035 +1014328909 1 theNode.element -2042940439 +1307096070 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next -931990051 +403716510 1 theNode.next.element -288183948 +1597462040 1 theNode.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 theNode.next.next -2040480146 +1359484306 1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1158 +1132 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -75863,121 +75588,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +1181199958 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return -266411022 +125622176 1 return.current -950209035 +1014328909 1 return.current.element -2042940439 +1307096070 1 return.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return.current.next -931990051 +403716510 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1160 +1134 this -266411022 +125622176 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1161 +1135 this -266411022 +125622176 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1161 +1135 this -266411022 +125622176 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return false @@ -75985,46 +75710,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1160 +1134 this -266411022 +125622176 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return -2042940439 +1307096070 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1162 +1136 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -76033,32 +75758,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -66642759 +542060780 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1163 +1137 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -76078,15 +75803,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1163 +1137 this -1225870426 +237351678 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -76104,10 +75829,10 @@ this.current.next.next nonsensical 2 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -76127,12 +75852,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1162 +1136 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -76141,31 +75866,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -66642759 +542060780 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 return -1225870426 +237351678 1 return.current -2040480146 +1216590855 1 return.current.element -1886692243 +90320863 1 return.current.element.getClass().getName() "java.lang.Object" @@ -76176,15 +75901,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1164 +1138 this -1225870426 +237351678 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -76204,15 +75929,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1165 +1139 this -1225870426 +237351678 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -76232,15 +75957,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1165 +1139 this -1225870426 +237351678 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -76263,15 +75988,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1164 +1138 this -1225870426 +237351678 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -76289,7 +76014,7 @@ this.current.next.next nonsensical 2 return -1886692243 +90320863 1 return.getClass().getName() "java.lang.Object" @@ -76297,86 +76022,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1166 +1140 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1167 +1141 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1167 +1141 this -332612839 +60559178 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false @@ -76384,220 +76109,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1166 +1140 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1168 +1142 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1168 +1142 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 +1 +this.current.next.element +684874119 1 -this.current.next.element -nonsensical -2 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1169 +1143 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1170 +1144 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1170 +1144 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1169 +1143 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return -1886692243 +25126016 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1171 +1145 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -76606,27 +76331,27 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -246140464 +1967892594 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1172 +1146 theNode null 1 @@ -76651,9 +76376,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1172 +1146 this -829274326 +342597804 1 this.current null @@ -76700,12 +76425,12 @@ nonsensical DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1171 +1145 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -76714,25 +76439,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -246140464 +1967892594 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 return -829274326 +342597804 1 return.current null @@ -76749,9 +76474,9 @@ nonsensical DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1173 +1147 this -829274326 +342597804 1 this.current null @@ -76777,9 +76502,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1174 +1148 this -829274326 +342597804 1 this.current null @@ -76805,9 +76530,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1174 +1148 this -829274326 +342597804 1 this.current null @@ -76836,9 +76561,9 @@ true DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1173 +1147 this -829274326 +342597804 1 this.current null @@ -76870,12 +76595,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1175 +1149 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -76884,106 +76609,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -444728052 +2059904228 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1176 +1150 theNode -2040480146 +403716510 1 theNode.element -1886692243 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1176 +1150 this -1301278404 +1308244637 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 theNode -2040480146 +403716510 1 theNode.element -1886692243 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1175 +1149 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -76992,155 +76717,155 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -444728052 +2059904228 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 return -1301278404 +1308244637 1 return.current -2040480146 +403716510 1 return.current.element -1886692243 +1597462040 1 return.current.element.getClass().getName() "java.lang.Object" 1 return.current.next -null +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1177 +1151 this -1301278404 +1308244637 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1178 +1152 this -1301278404 +1308244637 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1178 +1152 this -1301278404 +1308244637 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1177 +1151 this -1301278404 +1308244637 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -1886692243 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -77148,186 +76873,307 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1179 +1153 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1180 +1154 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1180 +1154 this -332612839 +60559178 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1179 +1153 this -332612839 +60559178 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1181 +1155 this -332612839 +60559178 1 this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next null 1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1155 +this +60559178 +1 +this.current +1157740463 +1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +1156 +this +60559178 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1157 +this +60559178 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1181 +1157 this -332612839 +60559178 1 this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next null 1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +1156 +this +60559178 +1 +this.current +1157740463 +1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +null +1 return -true +684874119 +1 +return.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedList.zeroth():::ENTER +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1182 +1158 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -77336,100 +77182,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1183 +1159 theNode -2004439137 +361993357 1 theNode.element -null +25126016 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 theNode.next -470905757 +1157740463 1 theNode.next.element -1987411885 +684874119 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 theNode.next.next -1904504032 +1216590855 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1183 +1159 this -612674980 +1860944798 1 this.current -2004439137 +361993357 1 this.current.element -null +25126016 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -470905757 +1157740463 1 this.current.next.element -1987411885 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +1216590855 1 theNode -2004439137 +361993357 1 theNode.element -null +25126016 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 theNode.next -470905757 +1157740463 1 theNode.next.element -1987411885 +684874119 1 theNode.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 theNode.next.next -1904504032 +1216590855 1 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1182 +1158 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -77438,174 +77290,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" 1 return -612674980 +1860944798 1 return.current -2004439137 +361993357 1 return.current.element -null +25126016 1 return.current.element.getClass().getName() -nonsensical -2 -return.current.next -470905757 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1184 -this -612674980 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1184 -this -612674980 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 +"java.lang.Class" 1 -return -false +return.current.next +1157740463 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1185 +1160 this -612674980 +1860944798 1 this.current -2004439137 +361993357 1 this.current.element -null +25126016 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -470905757 +1157740463 1 this.current.next.element -1987411885 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1186 +1161 this -612674980 +1860944798 1 this.current -2004439137 +361993357 1 this.current.element -null +25126016 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -470905757 +1157740463 1 this.current.next.element -1987411885 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1186 +1161 this -612674980 +1860944798 1 this.current -2004439137 +361993357 1 this.current.element -null +25126016 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -470905757 +1157740463 1 this.current.next.element -1987411885 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +1216590855 1 return false @@ -77613,46 +77412,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1185 +1160 this -612674980 +1860944798 1 this.current -2004439137 +361993357 1 this.current.element -null +25126016 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -470905757 +1157740463 1 this.current.next.element -1987411885 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +1216590855 1 return -null +25126016 1 return.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1187 +1162 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -77661,106 +77460,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -44301495 +1179381257 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1188 +1163 theNode -950209035 +1216590855 1 theNode.element -2042940439 +90320863 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 theNode.next -931990051 +null 1 theNode.next.element -288183948 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 theNode.next.next -2040480146 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1188 +1163 this -1545884603 +258754732 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 theNode -950209035 +1216590855 1 theNode.element -2042940439 +90320863 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 theNode.next -931990051 +null 1 theNode.next.element -288183948 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 theNode.next.next -2040480146 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1187 +1162 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -77769,242 +77568,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -44301495 +1179381257 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 return -1545884603 +258754732 1 return.current -950209035 +1216590855 1 return.current.element -2042940439 +90320863 1 return.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 return.current.next -931990051 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1189 +1164 this -1545884603 +258754732 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1190 +1165 this -1545884603 +258754732 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1190 +1165 this -1545884603 +258754732 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1189 +1164 this -1545884603 +258754732 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 return -2042940439 +90320863 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1191 +1166 this -612674980 +60559178 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +1216590855 1 this.current.next.element -1987411885 +90320863 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1192 +1167 this -612674980 +60559178 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +1216590855 1 this.current.next.element -1987411885 +90320863 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1192 +1167 this -612674980 +60559178 1 this.current -2004439137 +1157740463 1 this.current.element -null +684874119 1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -470905757 +1216590855 1 this.current.next.element -1987411885 +90320863 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +null 1 return false @@ -78012,220 +77811,498 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1191 +1166 this -612674980 +60559178 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1193 +1168 this -612674980 +60559178 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1193 +1168 this -612674980 +60559178 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1194 +1169 this -612674980 +60559178 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1195 +1170 this -612674980 +60559178 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1170 +this +60559178 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1195 +1169 this -612674980 +60559178 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +90320863 +1 +return.getClass().getName() "java.lang.Object" 1 + +DataStructures.LinkedList.find(java.lang.Object):::ENTER +this_invocation_nonce +1171 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +333362446 +1 +x.getClass().getName() +"java.lang.Integer" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1172 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +1172 +this +597255128 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +this_invocation_nonce +1171 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +333362446 +1 +x.getClass().getName() +"java.lang.Integer" +1 +return +597255128 +1 +return.current +null +1 +return.current.element +nonsensical +2 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +nonsensical +2 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +1173 +this +597255128 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1174 +this +597255128 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 this.current.next.next -1456460106 +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1174 +this +597255128 1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1194 +1173 this -612674980 +597255128 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1196 +1175 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -78234,32 +78311,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1425361215 +985397764 1 x.getClass().getName() -"java.lang.Double" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1197 +1176 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -78279,15 +78356,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1197 +1176 this -865858220 +1476394199 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -78305,10 +78382,10 @@ this.current.next.next nonsensical 2 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -78328,12 +78405,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1196 +1175 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -78342,31 +78419,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1425361215 +985397764 1 x.getClass().getName() -"java.lang.Double" +"java.lang.String" 1 return -865858220 +1476394199 1 return.current -2040480146 +1216590855 1 return.current.element -1886692243 +90320863 1 return.current.element.getClass().getName() "java.lang.Object" @@ -78377,15 +78454,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1198 +1177 this -865858220 +1476394199 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -78405,15 +78482,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1199 +1178 this -865858220 +1476394199 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -78433,15 +78510,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1199 +1178 this -865858220 +1476394199 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -78464,15 +78541,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1198 +1177 this -865858220 +1476394199 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -78490,7 +78567,7 @@ this.current.next.next nonsensical 2 return -1886692243 +90320863 1 return.getClass().getName() "java.lang.Object" @@ -78498,307 +78575,186 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1200 -this -612674980 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1201 -this -612674980 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1201 -this -612674980 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1200 +1179 this -612674980 +60559178 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1202 +1180 this -612674980 +60559178 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1202 +1180 this -612674980 +60559178 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1203 +1179 this -612674980 +60559178 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1204 +1181 this -612674980 +60559178 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1204 -this -612674980 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::EXIT45 -this_invocation_nonce -1203 +1181 this -612674980 +60559178 1 this.current -1904504032 +null 1 this.current.element -239304688 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 -1 +nonsensical +2 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 -1 -return.getClass().getName() -"java.lang.Object" +true 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.zeroth():::ENTER this_invocation_nonce -1205 +1182 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -78807,29 +78763,23 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1129911468 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1206 +1183 theNode -2004439137 +1856056345 1 theNode.element null @@ -78838,26 +78788,26 @@ theNode.element.getClass().getName() nonsensical 2 theNode.next -470905757 +1014328909 1 theNode.next.element -1987411885 +1307096070 1 theNode.next.element.getClass().getName() "java.lang.Long" 1 theNode.next.next -1904504032 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1206 +1183 this -224152255 +837764579 1 this.current -2004439137 +1856056345 1 this.current.element null @@ -78866,19 +78816,19 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 +1014328909 1 this.current.next.element -1987411885 +1307096070 1 this.current.next.element.getClass().getName() "java.lang.Long" 1 this.current.next.next -1904504032 +403716510 1 theNode -2004439137 +1856056345 1 theNode.element null @@ -78887,26 +78837,26 @@ theNode.element.getClass().getName() nonsensical 2 theNode.next -470905757 +1014328909 1 theNode.next.element -1987411885 +1307096070 1 theNode.next.element.getClass().getName() "java.lang.Long" 1 theNode.next.next -1904504032 +403716510 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.zeroth():::EXIT62 this_invocation_nonce -1205 +1182 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -78915,28 +78865,22 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1129911468 -1 -x.getClass().getName() -"java.lang.Long" +403716510 1 return -224152255 +837764579 1 return.current -2004439137 +1856056345 1 return.current.element null @@ -78945,45 +78889,17 @@ return.current.element.getClass().getName() nonsensical 2 return.current.next -470905757 -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -1207 -this -224152255 -1 -this.current -2004439137 -1 -this.current.element -null -1 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 +1014328909 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1208 +1184 this -224152255 +837764579 1 this.current -2004439137 +1856056345 1 this.current.element null @@ -78992,26 +78908,26 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 +1014328909 1 this.current.next.element -1987411885 +1307096070 1 this.current.next.element.getClass().getName() "java.lang.Long" 1 this.current.next.next -1904504032 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1208 +1184 this -224152255 +837764579 1 this.current -2004439137 +1856056345 1 this.current.element null @@ -79020,29 +78936,29 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 +1014328909 1 this.current.next.element -1987411885 +1307096070 1 this.current.next.element.getClass().getName() "java.lang.Long" 1 this.current.next.next -1904504032 +403716510 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1207 +1185 this -224152255 +837764579 1 this.current -2004439137 +1856056345 1 this.current.element null @@ -79051,280 +78967,72 @@ this.current.element.getClass().getName() nonsensical 2 this.current.next -470905757 +1014328909 1 this.current.next.element -1987411885 +1307096070 1 this.current.next.element.getClass().getName() "java.lang.Long" 1 this.current.next.next -1904504032 -1 -return -null -1 -return.getClass().getName() -nonsensical -2 - -DataStructures.LinkedListItr.advance():::ENTER -this_invocation_nonce -1209 -this -612674980 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1210 -this -612674980 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1210 -this -612674980 -1 -this.current -1904504032 -1 -this.current.element -239304688 -1 -this.current.element.getClass().getName() -"java.lang.Object" -1 -this.current.next -1456460106 -1 -this.current.next.element -853552605 -1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next.next -950209035 -1 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1209 -this -612674980 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -950209035 -1 -this.current.next.element -2042940439 -1 -this.current.next.element.getClass().getName() -"java.lang.Class" -1 -this.current.next.next -931990051 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1211 -this -612674980 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -950209035 -1 -this.current.next.element -2042940439 -1 -this.current.next.element.getClass().getName() -"java.lang.Class" -1 -this.current.next.next -931990051 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1211 -this -612674980 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -950209035 -1 -this.current.next.element -2042940439 -1 -this.current.next.element.getClass().getName() -"java.lang.Class" -1 -this.current.next.next -931990051 -1 -return -false -1 - -DataStructures.LinkedListItr.retrieve():::ENTER -this_invocation_nonce -1212 -this -612674980 -1 -this.current -1456460106 -1 -this.current.element -853552605 -1 -this.current.element.getClass().getName() -"java.io.PrintStream" -1 -this.current.next -950209035 -1 -this.current.next.element -2042940439 -1 -this.current.next.element.getClass().getName() -"java.lang.Class" -1 -this.current.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1213 +1186 this -612674980 +837764579 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1213 +1186 this -612674980 +837764579 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 return false @@ -79332,46 +79040,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1212 +1185 this -612674980 +837764579 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 return -853552605 +null 1 return.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1214 +1187 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -79380,106 +79088,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -640632947 +1501587365 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1215 +1188 theNode -2040480146 +361993357 1 theNode.element -1886692243 +25126016 1 theNode.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 theNode.next -null +1157740463 1 theNode.next.element -nonsensical -2 +684874119 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 theNode.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1215 +1188 this -1782417818 +1007603019 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 theNode -2040480146 +361993357 1 theNode.element -1886692243 +25126016 1 theNode.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 theNode.next -null +1157740463 1 theNode.next.element -nonsensical -2 +684874119 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 theNode.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1214 +1187 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -79488,242 +79196,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -640632947 +1501587365 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 return -1782417818 +1007603019 1 return.current -2040480146 +361993357 1 return.current.element -1886692243 +25126016 1 return.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 return.current.next -null +1157740463 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1216 +1189 this -1782417818 +1007603019 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1217 +1190 this -1782417818 +1007603019 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1217 +1190 this -1782417818 +1007603019 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1216 +1189 this -1782417818 +1007603019 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return -1886692243 +25126016 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1218 +1191 this -612674980 +837764579 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1219 +1192 this -612674980 +837764579 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1219 +1192 this -612674980 +837764579 1 this.current -1456460106 +1856056345 1 this.current.element -853552605 +null 1 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 +1014328909 1 this.current.next.element -2042940439 +1307096070 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next.next -931990051 +403716510 1 return false @@ -79731,86 +79439,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1218 +1191 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1220 +1193 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1220 +1193 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return false @@ -79818,86 +79526,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1221 +1194 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1222 +1195 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1222 +1195 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return false @@ -79905,46 +79613,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1221 +1194 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return -2042940439 +1307096070 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1223 +1196 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -79953,32 +79661,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1846875123 +348100441 1 x.getClass().getName() -"java.lang.String" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1224 +1197 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -79998,15 +79706,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1224 +1197 this -701558523 +1597249648 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -80024,10 +79732,10 @@ this.current.next.next nonsensical 2 theNode -2040480146 +1216590855 1 theNode.element -1886692243 +90320863 1 theNode.element.getClass().getName() "java.lang.Object" @@ -80047,12 +79755,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1223 +1196 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -80061,31 +79769,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1846875123 +348100441 1 x.getClass().getName() -"java.lang.String" +"java.lang.Double" 1 return -701558523 +1597249648 1 return.current -2040480146 +1216590855 1 return.current.element -1886692243 +90320863 1 return.current.element.getClass().getName() "java.lang.Object" @@ -80096,15 +79804,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1225 +1198 this -701558523 +1597249648 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -80124,15 +79832,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1226 +1199 this -701558523 +1597249648 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -80152,15 +79860,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1226 +1199 this -701558523 +1597249648 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -80183,15 +79891,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1225 +1198 this -701558523 +1597249648 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" @@ -80209,7 +79917,7 @@ this.current.next.next nonsensical 2 return -1886692243 +90320863 1 return.getClass().getName() "java.lang.Object" @@ -80217,86 +79925,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1227 +1200 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1228 +1201 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1228 +1201 this -612674980 +837764579 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return false @@ -80304,86 +80012,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1227 +1200 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1229 +1202 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1229 +1202 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 return false @@ -80391,86 +80099,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1230 +1203 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1231 +1204 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1231 +1204 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 return false @@ -80478,46 +80186,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1230 +1203 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 return -288183948 +1597462040 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1232 +1205 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -80526,106 +80234,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +89387388 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1233 +1206 theNode -1904504032 +1856056345 1 theNode.element -239304688 +null 1 theNode.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next -1456460106 +1014328909 1 theNode.next.element -853552605 +1307096070 1 theNode.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 theNode.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1233 +1206 this -1408874031 +1333592072 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 theNode -1904504032 +1856056345 1 theNode.element -239304688 +null 1 theNode.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next -1456460106 +1014328909 1 theNode.next.element -853552605 +1307096070 1 theNode.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 theNode.next.next -950209035 +403716510 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1232 +1205 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -80634,121 +80342,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +89387388 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 return -1408874031 +1333592072 1 return.current -1904504032 +1856056345 1 return.current.element -239304688 +null 1 return.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 return.current.next -1456460106 +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1234 +1207 this -1408874031 +1333592072 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1235 +1208 this -1408874031 +1333592072 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1235 +1208 this -1408874031 +1333592072 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return false @@ -80756,120 +80464,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1234 +1207 this -1408874031 +1333592072 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return -239304688 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1236 +1209 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1237 +1210 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1237 +1210 this -612674980 +837764579 1 this.current -931990051 +403716510 1 this.current.element -288183948 +1597462040 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +1359484306 1 this.current.next.element -1886692243 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -null +361993357 1 return false @@ -80877,220 +80585,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1236 +1209 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1238 +1211 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1238 +1211 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1239 +1212 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1240 +1213 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1240 +1213 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1239 +1212 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return -1886692243 +2059904228 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1241 +1214 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -81099,106 +80807,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +655381473 1 x.getClass().getName() -"java.lang.Class" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1242 +1215 theNode -1456460106 +1216590855 1 theNode.element -853552605 +90320863 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 theNode.next -950209035 +null 1 theNode.next.element -2042940439 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 theNode.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1242 +1215 this -791147195 +1486371051 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 theNode -1456460106 +1216590855 1 theNode.element -853552605 +90320863 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 theNode.next -950209035 +null 1 theNode.next.element -2042940439 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 theNode.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1241 +1214 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -81207,457 +80915,463 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +655381473 1 x.getClass().getName() -"java.lang.Class" +"java.lang.String" 1 return -791147195 +1486371051 1 return.current -1456460106 +1216590855 1 return.current.element -853552605 +90320863 1 return.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 return.current.next -950209035 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1243 +1216 this -791147195 +1486371051 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1244 +1217 this -791147195 +1486371051 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1244 +1217 this -791147195 +1486371051 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1243 +1216 this -791147195 +1486371051 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return -853552605 +90320863 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1245 +1218 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1246 +1219 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1246 +1219 this -612674980 +837764579 1 this.current -2040480146 +1359484306 1 this.current.element -1886692243 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1245 +1218 this -612674980 +837764579 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1247 +1220 this -612674980 +837764579 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1247 +1220 this -612674980 +837764579 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return -true +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1248 +1221 this -1034442050 +837764579 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1249 +1222 this -1034442050 +837764579 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1249 +1222 this -1034442050 +837764579 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1248 +1221 this -1034442050 +837764579 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 +return +25126016 +1 +return.getClass().getName() +"java.lang.Class" +1 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1250 +1223 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -81666,139 +81380,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1739647788 +1121647253 1 x.getClass().getName() -"java.lang.Object" -1 -p -1034442050 -1 -p.current -2040480146 -1 -p.current.element -1886692243 -1 -p.current.element.getClass().getName() -"java.lang.Object" -1 -p.current.next -null +"java.lang.String" 1 -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1251 -theElement -1739647788 +1224 +theNode +1216590855 1 -theElement.getClass().getName() +theNode.element +90320863 +1 +theNode.element.getClass().getName() "java.lang.Object" 1 -n +theNode.next null 1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element +theNode.next.element nonsensical 2 -n.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -n.next.next +theNode.next.next nonsensical 2 -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1251 +1224 this -270519011 +1694556038 1 -this.element -1739647788 +this.current +1216590855 1 -this.element.getClass().getName() +this.current.element +90320863 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -this.next +this.current.next null 1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element +this.current.next.element nonsensical 2 -this.next.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -this.next.next.next +this.current.next.next nonsensical 2 -theElement -1739647788 +theNode +1216590855 1 -theElement.getClass().getName() +theNode.element +90320863 +1 +theNode.element.getClass().getName() "java.lang.Object" 1 -n +theNode.next null 1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element +theNode.next.element nonsensical 2 -n.next.element.getClass().getName() +theNode.next.element.getClass().getName() nonsensical 2 -n.next.next +theNode.next.next nonsensical 2 -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1250 +1223 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -81807,698 +81488,694 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1739647788 +1121647253 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 -p -1034442050 +return +1694556038 1 -p.current -2040480146 +return.current +1216590855 1 -p.current.element -1886692243 +return.current.element +90320863 1 -p.current.element.getClass().getName() +return.current.element.getClass().getName() "java.lang.Object" 1 -p.current.next -270519011 -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -1252 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element +return.current.next null 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 -DataStructures.LinkedList.isEmpty():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1253 +1225 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +1694556038 1 -this.header.next.next -1904504032 +this.current +1216590855 1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -1253 -this -1032605070 +this.current.element +90320863 1 -this.header -2004439137 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.element +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -return -false -1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1254 +1226 this -1032605070 +1694556038 1 -this.header -2004439137 +this.current +1216590855 1 -this.header.element +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next null 1 -this.header.element.getClass().getName() +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1255 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" +1226 +this +1694556038 1 -theNode.next -1904504032 +this.current +1216590855 1 -theNode.next.element -239304688 +this.current.element +90320863 1 -theNode.next.element.getClass().getName() +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next.next -1456460106 +this.current.next +null +1 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1255 +1225 this -390137178 +1694556038 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" -1 -theNode.next -1904504032 -1 -theNode.next.element -239304688 +nonsensical +2 +return +90320863 1 -theNode.next.element.getClass().getName() +return.getClass().getName() "java.lang.Object" 1 -theNode.next.next -1456460106 -1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1254 +1227 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +837764579 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current +361993357 1 -this.header.next.next -1904504032 +this.current.element +25126016 1 -return -390137178 +this.current.element.getClass().getName() +"java.lang.Class" 1 -return.current -470905757 +this.current.next +1157740463 1 -return.current.element -1987411885 +this.current.next.element +684874119 1 -return.current.element.getClass().getName() -"java.lang.Long" +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -return.current.next -1904504032 +this.current.next.next +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1256 +1228 this -390137178 +837764579 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1256 +1228 this -390137178 +837764579 1 this.current -470905757 +361993357 1 this.current.element -1987411885 +25126016 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Class" 1 this.current.next -1904504032 +1157740463 1 this.current.next.element -239304688 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +1216590855 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1257 +1227 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1258 +1229 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1258 +1229 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1257 +1230 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 -1 -return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +null 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1259 +1231 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1260 +1231 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1260 +1230 this -390137178 +837764579 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 return -false +684874119 +1 +return.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1259 +1232 this -390137178 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +2059904228 +1 +x.getClass().getName() +"java.io.PrintStream" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1233 +theNode +403716510 +1 +theNode.element +1597462040 +1 +theNode.element.getClass().getName() "java.lang.Object" 1 -this.current.next -1456460106 +theNode.next +1359484306 1 -this.current.next.element -853552605 +theNode.next.element +2059904228 1 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() "java.io.PrintStream" 1 -this.current.next.next -950209035 +theNode.next.next +361993357 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1261 +1233 this -390137178 +1076496284 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 +1 +theNode +403716510 +1 +theNode.element +1597462040 +1 +theNode.element.getClass().getName() +"java.lang.Object" +1 +theNode.next +1359484306 +1 +theNode.next.element +2059904228 +1 +theNode.next.element.getClass().getName() +"java.io.PrintStream" +1 +theNode.next.next +361993357 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1261 +1232 this -390137178 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 +x +2059904228 +1 +x.getClass().getName() +"java.io.PrintStream" 1 return -false +1076496284 +1 +return.current +403716510 +1 +return.current.element +1597462040 +1 +return.current.element.getClass().getName() +"java.lang.Object" +1 +return.current.next +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1262 +1234 this -390137178 +1076496284 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1263 +1235 this -390137178 +1076496284 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1263 +1235 this -390137178 +1076496284 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return false @@ -82506,33 +82183,33 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1262 +1234 this -390137178 +1076496284 1 this.current -1904504032 +403716510 1 this.current.element -239304688 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +1359484306 1 this.current.next.element -853552605 +2059904228 1 this.current.next.element.getClass().getName() "java.io.PrintStream" 1 this.current.next.next -950209035 +361993357 1 return -239304688 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -82540,86 +82217,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1264 +1236 this -390137178 +837764579 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +1216590855 1 this.current.next.element -853552605 +90320863 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1265 +1237 this -390137178 +837764579 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +1216590855 1 this.current.next.element -853552605 +90320863 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1265 +1237 this -390137178 +837764579 1 this.current -1904504032 +1157740463 1 this.current.element -239304688 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +1216590855 1 this.current.next.element -853552605 +90320863 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 return false @@ -82627,971 +82304,1246 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1264 +1236 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1266 +1238 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1266 +1238 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1267 +1239 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1268 +1240 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1268 +1240 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1267 +1239 this -390137178 +837764579 1 this.current -1456460106 +1216590855 1 this.current.element -853552605 +90320863 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return -853552605 +90320863 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1269 +1241 this -390137178 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1242 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() "java.io.PrintStream" 1 -this.current.next -950209035 +theNode.next +361993357 1 -this.current.next.element -2042940439 +theNode.next.element +25126016 1 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() "java.lang.Class" 1 -this.current.next.next -931990051 +theNode.next.next +1157740463 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1270 +1242 this -390137178 +1508646930 1 this.current -1456460106 +1359484306 1 this.current.element -853552605 +2059904228 1 this.current.element.getClass().getName() "java.io.PrintStream" 1 this.current.next -950209035 +361993357 1 this.current.next.element -2042940439 +25126016 1 this.current.next.element.getClass().getName() "java.lang.Class" 1 this.current.next.next -931990051 +1157740463 +1 +theNode +1359484306 +1 +theNode.element +2059904228 +1 +theNode.element.getClass().getName() +"java.io.PrintStream" +1 +theNode.next +361993357 +1 +theNode.next.element +25126016 +1 +theNode.next.element.getClass().getName() +"java.lang.Class" +1 +theNode.next.next +1157740463 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1270 +1241 this -390137178 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 +x +25126016 +1 +x.getClass().getName() +"java.lang.Class" 1 return -false +1508646930 +1 +return.current +1359484306 +1 +return.current.element +2059904228 +1 +return.current.element.getClass().getName() +"java.io.PrintStream" +1 +return.current.next +361993357 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1269 +1243 this -390137178 +1508646930 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next -931990051 +361993357 1 this.current.next.element -288183948 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -2040480146 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1271 +1244 this -390137178 +1508646930 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next -931990051 +361993357 1 this.current.next.element -288183948 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -2040480146 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1271 +1244 this -390137178 +1508646930 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next -931990051 +361993357 1 this.current.next.element -288183948 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -2040480146 +1157740463 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1272 +1243 this -390137178 +1508646930 1 this.current -950209035 +1359484306 1 this.current.element -2042940439 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.io.PrintStream" 1 this.current.next -931990051 +361993357 1 this.current.next.element -288183948 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -2040480146 +1157740463 +1 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1273 +1245 this -390137178 +837764579 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1273 +1246 this -390137178 +837764579 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 -return -false -1 +nonsensical +2 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1272 +1246 this -390137178 +837764579 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 -return -2042940439 -1 -return.getClass().getName() -"java.lang.Class" +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1274 +1245 this -390137178 +837764579 1 this.current -950209035 +null 1 this.current.element -2042940439 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 -1 +nonsensical +2 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1275 +1247 this -390137178 +837764579 1 this.current -950209035 +null 1 this.current.element -2042940439 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 -1 +nonsensical +2 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1275 +1247 this -390137178 +837764579 1 this.current -950209035 +null 1 this.current.element -2042940439 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next -931990051 -1 +nonsensical +2 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.current.next.next -2040480146 -1 +nonsensical +2 return -false +true 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1274 +1248 this -390137178 +1781256139 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1276 +1249 this -390137178 +1781256139 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1276 +1249 this -390137178 +1781256139 1 this.current -931990051 +1157740463 1 this.current.element -288183948 +684874119 1 this.current.element.getClass().getName() "DataStructures.MyInteger" 1 this.current.next -2040480146 +1216590855 1 this.current.next.element -1886692243 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1277 +1248 this -390137178 +1781256139 1 this.current -931990051 +1216590855 1 this.current.element -288183948 +90320863 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER +this_invocation_nonce +1250 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +1291286504 +1 +x.getClass().getName() "java.lang.Object" 1 -this.current.next.next -270519011 +p +1781256139 +1 +p.current +1216590855 +1 +p.current.element +90320863 +1 +p.current.element.getClass().getName() +"java.lang.Object" +1 +p.current.next +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -1278 -this -390137178 +1251 +theElement +1291286504 1 -this.current -931990051 +theElement.getClass().getName() +"java.lang.Object" 1 -this.current.element -288183948 +n +null 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +n.element +nonsensical +2 +n.element.getClass().getName() +nonsensical +2 +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next +nonsensical +2 + +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +this_invocation_nonce +1251 +this +795372831 1 -this.current.next -2040480146 +this.element +1291286504 1 -this.current.next.element -1886692243 +this.element.getClass().getName() +"java.lang.Object" 1 -this.current.next.element.getClass().getName() +this.next +null +1 +this.next.element +nonsensical +2 +this.next.element.getClass().getName() +nonsensical +2 +this.next.next +nonsensical +2 +this.next.next.element +nonsensical +2 +this.next.next.element.getClass().getName() +nonsensical +2 +this.next.next.next +nonsensical +2 +theElement +1291286504 +1 +theElement.getClass().getName() "java.lang.Object" 1 -this.current.next.next -270519011 +n +null 1 +n.element +nonsensical +2 +n.element.getClass().getName() +nonsensical +2 +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -1278 +1250 this -390137178 +1778535015 1 -this.current -931990051 +this.header +1856056345 1 -this.current.element -288183948 +this.header.element +null 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -2040480146 +this.header.next.element +1307096070 1 -this.current.next.element -1886692243 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() +this.header.next.next +403716510 +1 +x +1291286504 +1 +x.getClass().getName() "java.lang.Object" 1 -this.current.next.next -270519011 +p +1781256139 1 -return -false +p.current +1216590855 +1 +p.current.element +90320863 +1 +p.current.element.getClass().getName() +"java.lang.Object" +1 +p.current.next +795372831 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -1277 -this -390137178 +1252 +theList +1778535015 1 -this.current -931990051 +theList.header +1856056345 1 -this.current.element -288183948 +theList.header.element +null 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +1014328909 1 -this.current.next -2040480146 + +DataStructures.LinkedList.isEmpty():::ENTER +this_invocation_nonce +1253 +this +1778535015 1 -this.current.next.element -1886692243 +this.header +1856056345 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.element +null 1 -this.current.next.next -270519011 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -return -288183948 +this.header.next.element +1307096070 1 -return.getClass().getName() -"DataStructures.MyInteger" +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -1279 +1253 this -390137178 +1778535015 1 -this.current -931990051 +this.header +1856056345 1 -this.current.element -288183948 +this.header.element +null 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -2040480146 +this.header.next.element +1307096070 1 -this.current.next.element -1886692243 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next.next -270519011 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -1280 +1254 this -390137178 +1778535015 1 -this.current -931990051 +this.header +1856056345 1 -this.current.element -288183948 +this.header.element +null 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -2040480146 +this.header.next.element +1307096070 1 -this.current.next.element -1886692243 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() +this.header.next.next +403716510 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1255 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() "java.lang.Object" 1 -this.current.next.next -270519011 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1280 +1255 this -390137178 +1072601481 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 -return -false +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -1279 +1254 this -390137178 +1778535015 1 -this.current -2040480146 +this.header +1856056345 1 -this.current.element -1886692243 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -270519011 +this.header.next.element +1307096070 1 -this.current.next.element -1739647788 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next.next -null +return +1072601481 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1281 +1256 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1281 +1256 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -83599,86 +83551,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1282 +1257 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1283 +1258 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1283 +1258 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -83686,120 +83638,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1282 +1257 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 return -1886692243 +1307096070 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1284 +1259 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1285 +1260 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1285 +1260 this -390137178 +1072601481 1 this.current -2040480146 +1014328909 1 this.current.element -1886692243 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -270519011 +403716510 1 this.current.next.element -1739647788 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -null +1359484306 1 return false @@ -83807,207 +83759,207 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1284 +1259 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1286 +1261 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1286 +1261 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1287 +1262 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1288 +1263 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1288 +1263 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1287 +1262 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -1739647788 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -84015,1219 +83967,971 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1289 +1264 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1290 +1265 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1290 +1265 this -390137178 +1072601481 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1289 +1264 this -390137178 +1072601481 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +361993357 +1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1291 +1266 this -390137178 +1072601481 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 +2059904228 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next -nonsensical -2 +361993357 +1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1291 +1266 this -390137178 +1072601481 1 this.current -null +1359484306 1 this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -1252 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -1292 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -1292 -this -1032605070 -1 -this.header -2004439137 +2059904228 1 -this.header.element -null +this.current.element.getClass().getName() +"java.io.PrintStream" 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.next +361993357 1 -this.header.next.element -1987411885 +this.current.next.element +25126016 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element.getClass().getName() +"java.lang.Class" 1 -this.header.next.next -1904504032 +this.current.next.next +1157740463 1 return false 1 -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -1293 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1294 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" -1 -theNode.next -1904504032 -1 -theNode.next.element -239304688 -1 -theNode.next.element.getClass().getName() -"java.lang.Object" -1 -theNode.next.next -1456460106 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1294 +1267 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 -1 -theNode -470905757 -1 -theNode.element -1987411885 -1 -theNode.element.getClass().getName() -"java.lang.Long" -1 -theNode.next -1904504032 -1 -theNode.next.element -239304688 -1 -theNode.next.element.getClass().getName() -"java.lang.Object" -1 -theNode.next.next -1456460106 -1 - -DataStructures.LinkedList.first():::EXIT71 -this_invocation_nonce -1293 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -return -767976355 -1 -return.current -470905757 -1 -return.current.element -1987411885 -1 -return.current.element.getClass().getName() -"java.lang.Long" -1 -return.current.next -1904504032 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1295 +1268 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1295 +1268 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1296 +1267 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 +1 +return +2059904228 +1 +return.getClass().getName() +"java.io.PrintStream" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1297 +1269 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1297 +1270 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 -1 -return -false +1157740463 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1296 +1270 this -767976355 +1072601481 1 this.current -470905757 +1359484306 1 this.current.element -1987411885 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.io.PrintStream" 1 this.current.next -1904504032 +361993357 1 this.current.next.element -239304688 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -1456460106 +1157740463 1 return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +false 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1298 +1269 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null +1072601481 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +361993357 1 -this.header.next.element -1987411885 +this.current.element +25126016 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Class" 1 -this.header.next.next -1904504032 +this.current.next +1157740463 1 -x -1001880015 +this.current.next.element +684874119 1 -x.getClass().getName() -"java.lang.Integer" +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1299 -theNode -null +this.current.next.next +1216590855 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1299 +1271 this -178135978 +1072601481 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 -theNode -null +1216590855 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1298 +1271 this -1032605070 +1072601481 1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +361993357 1 -this.header.next.element -1987411885 +this.current.element +25126016 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Class" 1 -this.header.next.next -1904504032 +this.current.next +1157740463 1 -x -1001880015 +this.current.next.element +684874119 1 -x.getClass().getName() -"java.lang.Integer" +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -return -178135978 +this.current.next.next +1216590855 1 -return.current -null +return +false 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1300 +1272 this -178135978 +1072601481 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1301 +1273 this -178135978 +1072601481 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1301 +1273 this -178135978 +1072601481 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1300 +1272 this -178135978 +1072601481 1 this.current -null +361993357 1 this.current.element -nonsensical -2 +25126016 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next -nonsensical -2 +1157740463 +1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return -null +25126016 1 return.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1302 +1274 this -1032605070 -1 -this.header -2004439137 +1072601481 1 -this.header.element -null +this.current +361993357 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +25126016 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Class" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +1157740463 1 -this.header.next.next -1904504032 +this.current.next.element +684874119 1 -x -339178328 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -x.getClass().getName() -"java.lang.String" +this.current.next.next +1216590855 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1303 -theNode -270519011 +1275 +this +1072601481 1 -theNode.element -1739647788 +this.current +361993357 1 -theNode.element.getClass().getName() -"java.lang.Object" +this.current.element +25126016 1 -theNode.next -null +this.current.element.getClass().getName() +"java.lang.Class" +1 +this.current.next +1157740463 +1 +this.current.next.element +684874119 +1 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next.next +1216590855 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1303 +1275 this -1148559558 +1072601481 1 this.current -270519011 +361993357 1 this.current.element -1739647788 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 -theNode -270519011 +1216590855 1 -theNode.element -1739647788 +return +false 1 -theNode.element.getClass().getName() + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +1274 +this +1072601481 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() "java.lang.Object" 1 -theNode.next -null +this.current.next.next +795372831 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1302 +1276 this -1032605070 +1072601481 1 -this.header -2004439137 +this.current +1157740463 1 -this.header.element -null +this.current.element +684874119 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.next.element -1987411885 +this.current.next +1216590855 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +90320863 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -x -339178328 +this.current.next.next +795372831 1 -x.getClass().getName() -"java.lang.String" + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1276 +this +1072601481 1 -return -1148559558 +this.current +1157740463 1 -return.current -270519011 +this.current.element +684874119 1 -return.current.element -1739647788 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -return.current.element.getClass().getName() +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() "java.lang.Object" 1 -return.current.next -null +this.current.next.next +795372831 +1 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1304 +1277 this -1148559558 +1072601481 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1305 +1278 this -1148559558 +1072601481 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1305 +1278 this -1148559558 +1072601481 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1304 +1277 this -1148559558 +1072601481 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return -1739647788 +684874119 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1306 +1279 this -767976355 +1072601481 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1307 +1280 this -767976355 +1072601481 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1307 +1280 this -767976355 +1072601481 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 return false @@ -85235,86 +84939,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1306 +1279 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1308 +1281 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1308 +1281 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 return false @@ -85322,86 +85026,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1309 +1282 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1310 +1283 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1310 +1283 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 return false @@ -85409,386 +85113,279 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1309 +1282 this -767976355 +1072601481 1 this.current -1904504032 +1216590855 1 this.current.element -239304688 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +795372831 1 this.current.next.element -853552605 +1291286504 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +null 1 return -239304688 +90320863 1 return.getClass().getName() "java.lang.Object" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1311 +1284 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +1072601481 1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -109988423 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1312 -theNode -931990051 +this.current +1216590855 1 -theNode.element -288183948 +this.current.element +90320863 1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" +this.current.element.getClass().getName() +"java.lang.Object" 1 -theNode.next -2040480146 +this.current.next +795372831 1 -theNode.next.element -1886692243 +this.current.next.element +1291286504 1 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() "java.lang.Object" 1 -theNode.next.next -270519011 +this.current.next.next +null 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1312 +1285 this -1739488941 +1072601481 1 this.current -931990051 +1216590855 1 this.current.element -288183948 +90320863 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +795372831 1 this.current.next.element -1886692243 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 -1 -theNode -931990051 -1 -theNode.element -288183948 -1 -theNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -theNode.next -2040480146 -1 -theNode.next.element -1886692243 -1 -theNode.next.element.getClass().getName() -"java.lang.Object" -1 -theNode.next.next -270519011 +null 1 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1311 +1285 this -1032605070 +1072601481 1 -this.header -2004439137 -1 -this.header.element -null +this.current +1216590855 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +90320863 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +795372831 1 -this.header.next.next -1904504032 +this.current.next.element +1291286504 1 -x -109988423 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -x.getClass().getName() -"DataStructures.MyInteger" +this.current.next.next +null 1 return -1739488941 -1 -return.current -931990051 -1 -return.current.element -288183948 -1 -return.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.current.next -2040480146 +false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1313 +1284 this -1739488941 +1072601481 1 this.current -931990051 +795372831 1 this.current.element -288183948 +1291286504 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -270519011 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1314 +1286 this -1739488941 +1072601481 1 this.current -931990051 +795372831 1 this.current.element -288183948 +1291286504 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -270519011 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1314 +1286 this -1739488941 +1072601481 1 this.current -931990051 +795372831 1 this.current.element -288183948 +1291286504 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -270519011 -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1313 +1287 this -1739488941 +1072601481 1 this.current -931990051 +795372831 1 this.current.element -288183948 +1291286504 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next -2040480146 +null 1 this.current.next.element -1886692243 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -270519011 -1 -return -288183948 -1 -return.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER -this_invocation_nonce -1315 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1895744776 -1 -x.getClass().getName() -"java.lang.Double" -1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1316 -theNode -270519011 +1288 +this +1072601481 1 -theNode.element -1739647788 +this.current +795372831 1 -theNode.element.getClass().getName() +this.current.element +1291286504 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1316 +1288 this -1715063340 +1072601481 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -85805,88 +85402,55 @@ nonsensical this.current.next.next nonsensical 2 -theNode -270519011 +return +false 1 -theNode.element -1739647788 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +1287 +this +1072601481 1 -theNode.element.getClass().getName() +this.current +795372831 +1 +this.current.element +1291286504 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -theNode.next +this.current.next null 1 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() +this.current.next.element nonsensical 2 -theNode.next.next +this.current.next.element.getClass().getName() nonsensical 2 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -1315 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next.next nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1895744776 -1 -x.getClass().getName() -"java.lang.Double" -1 return -1715063340 -1 -return.current -270519011 -1 -return.current.element -1739647788 +1291286504 1 -return.current.element.getClass().getName() +return.getClass().getName() "java.lang.Object" 1 -return.current.next -null -1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1317 +1289 this -1715063340 +1072601481 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -85906,15 +85470,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1318 +1290 this -1715063340 +1072601481 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -85934,15 +85498,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1318 +1290 this -1715063340 +1072601481 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -85963,24 +85527,80 @@ return false 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1317 +1289 this -1715063340 +1072601481 1 this.current -270519011 +null 1 this.current.element -1739647788 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1291 +this +1072601481 1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1291 +this +1072601481 +1 +this.current null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 this.current.next.element nonsensical 2 @@ -85991,181 +85611,286 @@ this.current.next.next nonsensical 2 return -1739647788 +true 1 -return.getClass().getName() -"java.lang.Object" + +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 +this_invocation_nonce +1252 +theList +1778535015 +1 +theList.header +1856056345 +1 +theList.header.element +null +1 +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +1014328909 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.isEmpty():::ENTER this_invocation_nonce -1319 +1292 this -767976355 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 + +DataStructures.LinkedList.isEmpty():::EXIT45 +this_invocation_nonce +1292 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -1320 +1293 this -767976355 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1294 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1320 +1294 this -767976355 +121295574 1 this.current -1904504032 +1014328909 1 this.current.element -239304688 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Long" 1 this.current.next -1456460106 +403716510 1 this.current.next.element -853552605 +1597462040 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next.next -950209035 +1359484306 1 -return -false +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -1319 +1293 this -767976355 +1778535015 1 -this.current -1456460106 +this.header +1856056345 1 -this.current.element -853552605 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.io.PrintStream" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -950209035 +this.header.next.element +1307096070 1 -this.current.next.element -2042940439 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Class" +this.header.next.next +403716510 1 -this.current.next.next -931990051 +return +121295574 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1321 +1295 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1321 +1295 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -86173,86 +85898,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1322 +1296 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1323 +1297 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1323 +1297 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -86260,46 +85985,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1322 +1296 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return -853552605 +1307096070 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1324 +1298 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -86308,106 +86033,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1544045346 +1887813102 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1325 +1299 theNode -470905757 +null 1 theNode.element -1987411885 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 -1 +nonsensical +2 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1325 +1299 this -577739874 +485041780 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 theNode -470905757 +null 1 theNode.element -1987411885 -1 +nonsensical +2 theNode.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next -1904504032 -1 +nonsensical +2 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1324 +1298 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -86416,168 +86141,168 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1544045346 +1887813102 1 x.getClass().getName() -"java.lang.Long" +"java.lang.Integer" 1 return -577739874 +485041780 1 return.current -470905757 +null 1 return.current.element -1987411885 -1 +nonsensical +2 return.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 return.current.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1326 +1300 this -577739874 +485041780 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1327 +1301 this -577739874 +485041780 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1327 +1301 this -577739874 +485041780 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -false +true 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1326 +1300 this -577739874 +485041780 1 this.current -470905757 +null 1 this.current.element -1987411885 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next -1904504032 -1 +nonsensical +2 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -1987411885 +null 1 return.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1328 +1302 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -86586,19 +86311,19 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1300494231 +1459672753 1 x.getClass().getName() "java.lang.String" @@ -86606,12 +86331,12 @@ x.getClass().getName() DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1329 +1303 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -86631,15 +86356,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1329 +1303 this -317981251 +117244645 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -86657,10 +86382,10 @@ this.current.next.next nonsensical 2 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -86680,12 +86405,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1328 +1302 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -86694,31 +86419,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1300494231 +1459672753 1 x.getClass().getName() "java.lang.String" 1 return -317981251 +117244645 1 return.current -270519011 +795372831 1 return.current.element -1739647788 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" @@ -86729,15 +86454,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1330 +1304 this -317981251 +117244645 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -86757,15 +86482,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1331 +1305 this -317981251 +117244645 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -86785,15 +86510,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1331 +1305 this -317981251 +117244645 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -86816,15 +86541,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1330 +1304 this -317981251 +117244645 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -86842,7 +86567,7 @@ this.current.next.next nonsensical 2 return -1739647788 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -86850,86 +86575,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1332 +1306 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1333 +1307 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1333 +1307 this -767976355 +121295574 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -86937,86 +86662,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1332 +1306 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1334 +1308 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1334 +1308 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -87024,86 +86749,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1335 +1309 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1336 +1310 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1336 +1310 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -87111,46 +86836,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1335 +1309 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1337 +1311 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -87159,106 +86884,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1371571821 +1540011289 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1338 +1312 theNode -null +1157740463 1 theNode.element -nonsensical -2 +684874119 +1 theNode.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 theNode.next -nonsensical -2 +1216590855 +1 theNode.next.element -nonsensical -2 +90320863 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1338 +1312 this -918128649 +239465106 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 theNode -null +1157740463 1 theNode.element -nonsensical -2 +684874119 +1 theNode.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 theNode.next -nonsensical -2 +1216590855 +1 theNode.next.element -nonsensical -2 +90320863 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1337 +1311 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -87267,168 +86992,168 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1371571821 +1540011289 1 x.getClass().getName() -"java.lang.String" +"DataStructures.MyInteger" 1 return -918128649 +239465106 1 return.current -null +1157740463 1 return.current.element -nonsensical -2 +684874119 +1 return.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 return.current.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1339 +1313 this -918128649 +239465106 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1340 +1314 this -918128649 +239465106 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1340 +1314 this -918128649 +239465106 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1339 +1313 this -918128649 +239465106 1 this.current -null +1157740463 1 this.current.element -nonsensical -2 +684874119 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +1216590855 +1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return -null +684874119 1 return.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1341 +1315 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -87437,106 +87162,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1596000437 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1342 +1316 theNode -1904504032 +795372831 1 theNode.element -239304688 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1342 +1316 this -1318200048 +832947102 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 theNode -1904504032 +795372831 1 theNode.element -239304688 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1341 +1315 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -87545,155 +87270,155 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1596000437 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.Double" 1 return -1318200048 +832947102 1 return.current -1904504032 +795372831 1 return.current.element -239304688 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" 1 return.current.next -1456460106 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1343 +1317 this -1318200048 +832947102 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1344 +1318 this -1318200048 +832947102 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1344 +1318 this -1318200048 +832947102 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1343 +1317 this -1318200048 +832947102 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -87701,86 +87426,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1345 +1319 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1346 +1320 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1346 +1320 this -767976355 +121295574 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -87788,86 +87513,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1345 +1319 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1347 +1321 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1347 +1321 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return false @@ -87875,86 +87600,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1348 +1322 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1349 +1323 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1349 +1323 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return false @@ -87962,46 +87687,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1348 +1322 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return -288183948 +2059904228 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1350 +1324 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -88010,106 +87735,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +1061804750 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1351 +1325 theNode -950209035 +1014328909 1 theNode.element -2042940439 +1307096070 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next -931990051 +403716510 1 theNode.next.element -288183948 +1597462040 1 theNode.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 theNode.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1351 +1325 this -1546904284 +507084503 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 theNode -950209035 +1014328909 1 theNode.element -2042940439 +1307096070 1 theNode.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 theNode.next -931990051 +403716510 1 theNode.next.element -288183948 +1597462040 1 theNode.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 theNode.next.next -2040480146 +1359484306 1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1350 +1324 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -88118,121 +87843,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +1061804750 1 x.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return -1546904284 +507084503 1 return.current -950209035 +1014328909 1 return.current.element -2042940439 +1307096070 1 return.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 return.current.next -931990051 +403716510 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1352 +1326 this -1546904284 +507084503 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1353 +1327 this -1546904284 +507084503 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1353 +1327 this -1546904284 +507084503 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return false @@ -88240,46 +87965,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1352 +1326 this -1546904284 +507084503 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 1 return -2042940439 +1307096070 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1354 +1328 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -88288,32 +88013,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1383270606 +1225439493 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1355 +1329 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -88333,15 +88058,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1355 +1329 this -2118596267 +1454127753 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -88359,10 +88084,10 @@ this.current.next.next nonsensical 2 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -88382,12 +88107,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1354 +1328 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -88396,31 +88121,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1383270606 +1225439493 1 x.getClass().getName() -"java.lang.Object" +"java.lang.String" 1 return -2118596267 +1454127753 1 return.current -270519011 +795372831 1 return.current.element -1739647788 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" @@ -88431,15 +88156,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1356 +1330 this -2118596267 +1454127753 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -88459,15 +88184,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1357 +1331 this -2118596267 +1454127753 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -88487,15 +88212,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1357 +1331 this -2118596267 +1454127753 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -88518,15 +88243,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1356 +1330 this -2118596267 +1454127753 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -88544,7 +88269,7 @@ this.current.next.next nonsensical 2 return -1739647788 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -88552,86 +88277,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1358 +1332 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1359 +1333 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1359 +1333 this -767976355 +121295574 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return false @@ -88639,86 +88364,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1358 +1332 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1360 +1334 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1360 +1334 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false @@ -88726,86 +88451,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1361 +1335 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1362 +1336 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1362 +1336 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false @@ -88813,46 +88538,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1361 +1335 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return -1886692243 +25126016 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1363 +1337 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -88861,27 +88586,27 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1968592209 +667026744 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1364 +1338 theNode null 1 @@ -88906,9 +88631,9 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1364 +1338 this -1996190981 +1926764753 1 this.current null @@ -88955,12 +88680,12 @@ nonsensical DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1363 +1337 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -88969,25 +88694,25 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1968592209 +667026744 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.String" 1 return -1996190981 +1926764753 1 return.current null @@ -89004,9 +88729,9 @@ nonsensical DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1365 +1339 this -1996190981 +1926764753 1 this.current null @@ -89032,9 +88757,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1366 +1340 this -1996190981 +1926764753 1 this.current null @@ -89060,9 +88785,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1366 +1340 this -1996190981 +1926764753 1 this.current null @@ -89091,9 +88816,9 @@ true DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1365 +1339 this -1996190981 +1926764753 1 this.current null @@ -89125,12 +88850,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1367 +1341 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -89139,106 +88864,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1992284233 +2059904228 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1368 +1342 theNode -270519011 +403716510 1 theNode.element -1739647788 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1368 +1342 this -756080007 +1845904670 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 theNode -270519011 +403716510 1 theNode.element -1739647788 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1367 +1341 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -89247,155 +88972,155 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1992284233 +2059904228 1 x.getClass().getName() -"java.lang.String" +"java.io.PrintStream" 1 return -756080007 +1845904670 1 return.current -270519011 +403716510 1 return.current.element -1739647788 +1597462040 1 return.current.element.getClass().getName() "java.lang.Object" 1 return.current.next -null +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1369 +1343 this -756080007 +1845904670 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1370 +1344 this -756080007 +1845904670 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1370 +1344 this -756080007 +1845904670 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1369 +1343 this -756080007 +1845904670 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 +"java.io.PrintStream" +1 +this.current.next.next +361993357 +1 return -1739647788 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -89403,86 +89128,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1371 +1345 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1372 +1346 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1372 +1346 this -767976355 +121295574 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false @@ -89490,220 +89215,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1371 +1345 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1373 +1347 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1373 +1347 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1374 +1348 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1375 +1349 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1375 +1349 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1374 +1348 this -767976355 +121295574 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return -1739647788 +684874119 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1376 +1350 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -89712,106 +89437,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -775938350 +25126016 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1377 +1351 theNode -931990051 +361993357 1 theNode.element -288183948 +25126016 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 theNode.next -2040480146 +1157740463 1 theNode.next.element -1886692243 +684874119 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 theNode.next.next -270519011 +1216590855 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1377 +1351 this -1675143866 +1497973285 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -270519011 +1216590855 1 theNode -931990051 +361993357 1 theNode.element -288183948 +25126016 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 theNode.next -2040480146 +1157740463 1 theNode.next.element -1886692243 +684874119 1 theNode.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 theNode.next.next -270519011 +1216590855 1 DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1376 +1350 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -89820,121 +89545,121 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -775938350 +25126016 1 x.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 return -1675143866 +1497973285 1 return.current -931990051 +361993357 1 return.current.element -288183948 +25126016 1 return.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 return.current.next -2040480146 +1157740463 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1378 +1352 this -1675143866 +1497973285 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -270519011 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1379 +1353 this -1675143866 +1497973285 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -270519011 +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1379 +1353 this -1675143866 +1497973285 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -270519011 +1216590855 1 return false @@ -89942,46 +89667,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1378 +1352 this -1675143866 +1497973285 1 this.current -931990051 +361993357 1 this.current.element -288183948 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -2040480146 +1157740463 1 this.current.next.element -1886692243 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -270519011 +1216590855 1 return -288183948 +25126016 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1380 +1354 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -89990,32 +89715,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -632343692 +1846896625 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Object" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1381 +1355 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -90035,15 +89760,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1381 +1355 this -2051346088 +1555690610 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -90061,10 +89786,10 @@ this.current.next.next nonsensical 2 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -90084,12 +89809,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1380 +1354 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -90098,31 +89823,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -632343692 +1846896625 1 x.getClass().getName() -"java.lang.Double" +"java.lang.Object" 1 return -2051346088 +1555690610 1 return.current -270519011 +795372831 1 return.current.element -1739647788 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" @@ -90133,15 +89858,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1382 +1356 this -2051346088 +1555690610 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -90161,15 +89886,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1383 +1357 this -2051346088 +1555690610 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -90189,15 +89914,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1383 +1357 this -2051346088 +1555690610 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -90220,15 +89945,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1382 +1356 this -2051346088 +1555690610 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -90246,7 +89971,7 @@ this.current.next.next nonsensical 2 return -1739647788 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -90254,78 +89979,474 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1384 +1358 +this +121295574 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +795372831 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1359 +this +121295574 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +795372831 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1359 +this +121295574 +1 +this.current +1157740463 +1 +this.current.element +684874119 +1 +this.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next +1216590855 +1 +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +795372831 +1 +return +false +1 + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +1358 +this +121295574 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1360 +this +121295574 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1360 +this +121295574 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::ENTER +this_invocation_nonce +1361 +this +121295574 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1362 +this +121295574 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1362 +this +121295574 +1 +this.current +1216590855 +1 +this.current.element +90320863 +1 +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 +return +false +1 + +DataStructures.LinkedListItr.retrieve():::EXIT45 +this_invocation_nonce +1361 this -767976355 +121295574 1 this.current -270519011 +1216590855 1 this.current.element -1739647788 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next +795372831 +1 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 +return +90320863 +1 +return.getClass().getName() +"java.lang.Object" +1 + +DataStructures.LinkedList.find(java.lang.Object):::ENTER +this_invocation_nonce +1363 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +13329486 +1 +x.getClass().getName() +"java.lang.Integer" +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1364 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +1364 +this +327177752 +1 +this.current null 1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 this.current.next.element nonsensical 2 -this.current.next.element.getClass().getName() +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +theNode +null +1 +theNode.element +nonsensical +2 +theNode.element.getClass().getName() nonsensical 2 -this.current.next.next +theNode.next +nonsensical +2 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1385 +1363 this -767976355 +1778535015 1 -this.current -270519011 +this.header +1856056345 1 -this.current.element -1739647788 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +13329486 +1 +x.getClass().getName() +"java.lang.Integer" +1 +return +327177752 +1 +return.current null 1 -this.current.next.element +return.current.element nonsensical 2 -this.current.next.element.getClass().getName() +return.current.element.getClass().getName() nonsensical 2 -this.current.next.next +return.current.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1385 +1365 this -767976355 +327177752 1 this.current -270519011 +null 1 this.current.element -1739647788 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null -1 +nonsensical +2 this.current.next.element nonsensical 2 @@ -90335,15 +90456,12 @@ nonsensical this.current.next.next nonsensical 2 -return -false -1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1384 +1366 this -767976355 +327177752 1 this.current null @@ -90367,11 +90485,11 @@ this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1386 +1366 this -767976355 +327177752 1 this.current null @@ -90394,12 +90512,15 @@ nonsensical this.current.next.next nonsensical 2 +return +true +1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1386 +1365 this -767976355 +327177752 1 this.current null @@ -90423,17 +90544,20 @@ this.current.next.next nonsensical 2 return -true +null 1 +return.getClass().getName() +nonsensical +2 -DataStructures.LinkedList.zeroth():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1387 +1367 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -90442,100 +90566,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +1458540918 +1 +x.getClass().getName() +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1388 +1368 theNode -2004439137 +795372831 1 theNode.element -null +1291286504 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next -470905757 +null 1 theNode.next.element -1987411885 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next.next -1904504032 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1388 +1368 this -1271232078 +1164371389 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 theNode -2004439137 +795372831 1 theNode.element -null +1291286504 1 theNode.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next -470905757 +null 1 theNode.next.element -1987411885 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 theNode.next.next -1904504032 -1 +nonsensical +2 -DataStructures.LinkedList.zeroth():::EXIT62 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1387 +1367 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -90544,747 +90674,694 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +1458540918 +1 +x.getClass().getName() +"java.lang.String" 1 return -1271232078 +1164371389 1 return.current -2004439137 +795372831 1 return.current.element -null +1291286504 1 return.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 return.current.next -470905757 +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1389 +1369 this -1271232078 +1164371389 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1389 +1370 this -1271232078 +1164371389 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 -return -false -1 +nonsensical +2 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1390 +1370 this -1271232078 +1164371389 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1391 +1369 this -1271232078 +1164371389 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +return +1291286504 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1391 +1371 this -1271232078 +121295574 1 this.current -2004439137 +1216590855 1 this.current.element -null +90320863 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +795372831 1 this.current.next.element -1987411885 +1291286504 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 -1 -return -false +null 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1390 +1372 this -1271232078 +121295574 1 this.current -2004439137 +1216590855 1 this.current.element -null +90320863 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +795372831 1 this.current.next.element -1987411885 +1291286504 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 -1 -return null 1 -return.getClass().getName() -nonsensical -2 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1392 +1372 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +121295574 1 -this.header.next.element -1987411885 +this.current +1216590855 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element +90320863 1 -this.header.next.next -1904504032 +this.current.element.getClass().getName() +"java.lang.Object" 1 -x -282730943 +this.current.next +795372831 1 -x.getClass().getName() -"java.lang.Long" +this.current.next.element +1291286504 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1393 -theNode -2004439137 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -theNode.element +this.current.next.next null 1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -1904504032 +return +false 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1393 +1371 this -1625131837 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 -this.current.next -470905757 -1 -this.current.next.element -1987411885 -1 -this.current.next.element.getClass().getName() -"java.lang.Long" -1 -this.current.next.next -1904504032 -1 -theNode -2004439137 +"java.lang.Object" 1 -theNode.element +this.current.next null 1 -theNode.element.getClass().getName() +this.current.next.element nonsensical 2 -theNode.next -470905757 -1 -theNode.next.element -1987411885 -1 -theNode.next.element.getClass().getName() -"java.lang.Long" -1 -theNode.next.next -1904504032 -1 - -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 -this_invocation_nonce -1392 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -282730943 -1 -x.getClass().getName() -"java.lang.Long" -1 -return -1625131837 -1 -return.current -2004439137 -1 -return.current.element -null -1 -return.current.element.getClass().getName() +this.current.next.next nonsensical 2 -return.current.next -470905757 -1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1394 +1373 this -1625131837 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1395 +1373 this -1625131837 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1395 +1374 this -1625131837 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 -return -false -1 +nonsensical +2 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1394 +1375 this -1625131837 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 -1 -return -null -1 -return.getClass().getName() nonsensical 2 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1396 +1375 this -1271232078 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1397 +1374 this -1271232078 +121295574 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +null 1 this.current.next.element -1987411885 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Long" -1 +nonsensical +2 this.current.next.next -1904504032 +nonsensical +2 +return +1291286504 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::ENTER this_invocation_nonce -1397 +1376 this -1271232078 +1778535015 1 -this.current -2004439137 +this.header +1856056345 1 -this.current.element +this.header.element null 1 -this.current.element.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 -this.current.next -470905757 +this.header.next +1014328909 1 -this.current.next.element -1987411885 +this.header.next.element +1307096070 1 -this.current.next.element.getClass().getName() +this.header.next.element.getClass().getName() "java.lang.Long" 1 -this.current.next.next -1904504032 +this.header.next.next +403716510 1 -return -false +x +517210187 +1 +x.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1396 -this -1271232078 -1 -this.current -470905757 +1377 +theNode +1157740463 1 -this.current.element -1987411885 +theNode.element +684874119 1 -this.current.element.getClass().getName() -"java.lang.Long" +theNode.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.current.next -1904504032 +theNode.next +1216590855 1 -this.current.next.element -239304688 +theNode.next.element +90320863 1 -this.current.next.element.getClass().getName() +theNode.next.element.getClass().getName() "java.lang.Object" 1 -this.current.next.next -1456460106 +theNode.next.next +795372831 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1398 +1377 this -1271232078 +267760927 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 +1 +theNode +1157740463 +1 +theNode.element +684874119 +1 +theNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +theNode.next +1216590855 +1 +theNode.next.element +90320863 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +795372831 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.find(java.lang.Object):::EXIT97 this_invocation_nonce -1398 +1376 this -1271232078 +1778535015 1 -this.current -470905757 +this.header +1856056345 1 -this.current.element -1987411885 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Long" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1904504032 +this.header.next.element +1307096070 1 -this.current.next.element -239304688 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next.next -1456460106 +x +517210187 +1 +x.getClass().getName() +"DataStructures.MyInteger" 1 return -false +267760927 +1 +return.current +1157740463 +1 +return.current.element +684874119 +1 +return.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.current.next +1216590855 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1399 +1378 this -1271232078 +267760927 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1400 +1379 this -1271232078 +267760927 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1400 +1379 this -1271232078 +267760927 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 return false @@ -91292,46 +91369,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1399 +1378 this -1271232078 +267760927 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 return -1987411885 +684874119 1 return.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1401 +1380 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -91340,32 +91417,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1893761913 +633070006 1 x.getClass().getName() -"java.lang.String" +"java.lang.Double" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1402 +1381 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -91385,15 +91462,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1402 +1381 this -601339604 +1459794865 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -91411,10 +91488,10 @@ this.current.next.next nonsensical 2 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -91434,12 +91511,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1401 +1380 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -91448,31 +91525,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1893761913 +633070006 1 x.getClass().getName() -"java.lang.String" +"java.lang.Double" 1 return -601339604 +1459794865 1 return.current -270519011 +795372831 1 return.current.element -1739647788 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" @@ -91483,15 +91560,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1403 +1382 this -601339604 +1459794865 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -91511,15 +91588,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1404 +1383 this -601339604 +1459794865 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -91539,15 +91616,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1404 +1383 this -601339604 +1459794865 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -91570,15 +91647,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1403 +1382 this -601339604 +1459794865 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -91596,7 +91673,7 @@ this.current.next.next nonsensical 2 return -1739647788 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -91604,173 +91681,377 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1405 +1384 this -1271232078 +121295574 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1406 +1385 this -1271232078 +121295574 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1406 +1385 this -1271232078 +121295574 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1405 +1384 this -1271232078 +121295574 1 this.current -1904504032 +null 1 this.current.element -239304688 +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1386 +this +121295574 +1 +this.current +null 1 +this.current.element +nonsensical +2 this.current.element.getClass().getName() -"java.lang.Object" +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1386 +this +121295574 +1 +this.current +null +1 +this.current.element +nonsensical +2 +this.current.element.getClass().getName() +nonsensical +2 +this.current.next +nonsensical +2 +this.current.next.element +nonsensical +2 +this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 +return +true +1 + +DataStructures.LinkedList.zeroth():::ENTER +this_invocation_nonce +1387 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1388 +theNode +1856056345 +1 +theNode.element +null +1 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 1 +theNode.next.element +1307096070 +1 +theNode.next.element.getClass().getName() +"java.lang.Long" +1 +theNode.next.next +403716510 +1 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +1388 +this +1776957250 +1 +this.current +1856056345 +1 +this.current.element +null +1 +this.current.element.getClass().getName() +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 +1 +theNode +1856056345 +1 +theNode.element +null +1 +theNode.element.getClass().getName() +nonsensical +2 +theNode.next +1014328909 +1 +theNode.next.element +1307096070 +1 +theNode.next.element.getClass().getName() +"java.lang.Long" +1 +theNode.next.next +403716510 +1 + +DataStructures.LinkedList.zeroth():::EXIT62 +this_invocation_nonce +1387 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +return +1776957250 +1 +return.current +1856056345 +1 +return.current.element +null +1 +return.current.element.getClass().getName() +nonsensical +2 +return.current.next +1014328909 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1407 +1389 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1407 +1389 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return false @@ -91778,86 +92059,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1408 +1390 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1409 +1391 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1409 +1391 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return false @@ -91865,46 +92146,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1408 +1390 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return -239304688 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1410 +1392 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -91913,106 +92194,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -656681646 +1268066861 1 x.getClass().getName() -"java.lang.String" +"java.lang.Long" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1411 +1393 theNode -270519011 +1856056345 1 theNode.element -1739647788 +null 1 theNode.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next -null +1014328909 1 theNode.next.element -nonsensical -2 +1307096070 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1411 +1393 this -929962389 +827966648 1 this.current -270519011 +1856056345 1 this.current.element -1739647788 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 theNode -270519011 +1856056345 1 theNode.element -1739647788 +null 1 theNode.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next -null +1014328909 1 theNode.next.element -nonsensical -2 +1307096070 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 theNode.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1410 +1392 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -92021,242 +92302,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -656681646 +1268066861 1 x.getClass().getName() -"java.lang.String" +"java.lang.Long" 1 return -929962389 +827966648 1 return.current -270519011 +1856056345 1 return.current.element -1739647788 +null 1 return.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 return.current.next -null +1014328909 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1412 +1394 this -929962389 +827966648 1 this.current -270519011 +1856056345 1 this.current.element -1739647788 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1413 +1395 this -929962389 +827966648 1 this.current -270519011 +1856056345 1 this.current.element -1739647788 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1413 +1395 this -929962389 +827966648 1 this.current -270519011 +1856056345 1 this.current.element -1739647788 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1412 +1394 this -929962389 +827966648 1 this.current -270519011 +1856056345 1 this.current.element -1739647788 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -null +1014328909 1 this.current.next.element -nonsensical -2 +1307096070 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Long" +1 this.current.next.next -nonsensical -2 +403716510 +1 return -1739647788 +null 1 return.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1414 +1396 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1415 +1397 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1415 +1397 this -1271232078 +1776957250 1 this.current -1904504032 +1856056345 1 this.current.element -239304688 +null 1 this.current.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next -1456460106 +1014328909 1 this.current.next.element -853552605 +1307096070 1 this.current.next.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next.next -950209035 +403716510 1 return false @@ -92264,86 +92545,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1414 +1396 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1416 +1398 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1416 +1398 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -92351,86 +92632,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1417 +1399 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1418 +1400 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1418 +1400 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -92438,46 +92719,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1417 +1399 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return -853552605 +1307096070 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1419 +1401 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -92486,106 +92767,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1938056729 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1420 +1402 theNode -1904504032 +795372831 1 theNode.element -239304688 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1420 +1402 this -491889057 +1273765644 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 theNode -1904504032 +795372831 1 theNode.element -239304688 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -1456460106 +null 1 theNode.next.element -853552605 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 theNode.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1419 +1401 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -92594,155 +92875,155 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -853552605 +1938056729 1 x.getClass().getName() -"java.io.PrintStream" +"java.lang.String" 1 return -491889057 +1273765644 1 return.current -1904504032 +795372831 1 return.current.element -239304688 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" 1 return.current.next -1456460106 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1421 +1403 this -491889057 +1273765644 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1422 +1404 this -491889057 +1273765644 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1422 +1404 this -491889057 +1273765644 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1421 +1403 this -491889057 +1273765644 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -92750,86 +93031,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1423 +1405 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1424 +1406 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1424 +1406 this -1271232078 +1776957250 1 this.current -1456460106 +1014328909 1 this.current.element -853552605 +1307096070 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Long" 1 this.current.next -950209035 +403716510 1 this.current.next.element -2042940439 +1597462040 1 this.current.next.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next.next -931990051 +1359484306 1 return false @@ -92837,86 +93118,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1423 +1405 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1425 +1407 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1425 +1407 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -92924,86 +93205,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1426 +1408 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1427 +1409 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1427 +1409 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -93011,46 +93292,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1426 +1408 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return -2042940439 +1597462040 1 return.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1428 +1410 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -93059,106 +93340,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +701141022 1 x.getClass().getName() -"java.lang.Class" +"java.lang.String" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1429 +1411 theNode -1456460106 +795372831 1 theNode.element -853552605 +1291286504 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 theNode.next -950209035 +null 1 theNode.next.element -2042940439 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 theNode.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1429 +1411 this -1514823696 +1447689627 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 theNode -1456460106 +795372831 1 theNode.element -853552605 +1291286504 1 theNode.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 theNode.next -950209035 +null 1 theNode.next.element -2042940439 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 theNode.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1428 +1410 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -93167,242 +93448,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -2042940439 +701141022 1 x.getClass().getName() -"java.lang.Class" +"java.lang.String" 1 return -1514823696 +1447689627 1 return.current -1456460106 +795372831 1 return.current.element -853552605 +1291286504 1 return.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 return.current.next -950209035 +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1430 +1412 this -1514823696 +1447689627 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1431 +1413 this -1514823696 +1447689627 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1431 +1413 this -1514823696 +1447689627 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1430 +1412 this -1514823696 +1447689627 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return -853552605 +1291286504 1 return.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1432 +1414 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1433 +1415 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1433 +1415 this -1271232078 +1776957250 1 this.current -950209035 +403716510 1 this.current.element -2042940439 +1597462040 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +1359484306 1 this.current.next.element -288183948 +2059904228 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next.next -2040480146 +361993357 1 return false @@ -93410,86 +93691,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1432 +1414 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1434 +1416 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1434 +1416 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return false @@ -93497,86 +93778,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1435 +1417 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1436 +1418 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1436 +1418 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return false @@ -93584,46 +93865,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1435 +1417 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return -288183948 +2059904228 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1437 +1419 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -93632,106 +93913,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1223223487 +2059904228 1 x.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1438 +1420 theNode -270519011 +403716510 1 theNode.element -1739647788 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1438 +1420 this -856193278 +112061925 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 theNode -270519011 +403716510 1 theNode.element -1739647788 +1597462040 1 theNode.element.getClass().getName() "java.lang.Object" 1 theNode.next -null +1359484306 1 theNode.next.element -nonsensical -2 +2059904228 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 theNode.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1437 +1419 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -93740,155 +94021,155 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1223223487 +2059904228 1 x.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 return -856193278 +112061925 1 return.current -270519011 +403716510 1 return.current.element -1739647788 +1597462040 1 return.current.element.getClass().getName() "java.lang.Object" 1 return.current.next -null +1359484306 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1439 +1421 this -856193278 +112061925 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1440 +1422 this -856193278 +112061925 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1440 +1422 this -856193278 +112061925 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1439 +1421 this -856193278 +112061925 1 this.current -270519011 +403716510 1 this.current.element -1739647788 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +1359484306 1 this.current.next.element -nonsensical -2 +2059904228 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.io.PrintStream" +1 this.current.next.next -nonsensical -2 +361993357 +1 return -1739647788 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -93896,86 +94177,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1441 +1423 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1442 +1424 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1442 +1424 this -1271232078 +1776957250 1 this.current -931990051 +1359484306 1 this.current.element -288183948 +2059904228 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.io.PrintStream" 1 this.current.next -2040480146 +361993357 1 this.current.next.element -1886692243 +25126016 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next.next -270519011 +1157740463 1 return false @@ -93983,86 +94264,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1441 +1423 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1443 +1425 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1443 +1425 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false @@ -94070,86 +94351,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1444 +1426 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1445 +1427 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1445 +1427 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false @@ -94157,46 +94438,46 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1444 +1426 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return -1886692243 +25126016 1 return.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1446 +1428 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -94205,106 +94486,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1899988446 +25126016 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.Class" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1447 +1429 theNode -270519011 +1359484306 1 theNode.element -1739647788 +2059904228 1 theNode.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 theNode.next -null +361993357 1 theNode.next.element -nonsensical -2 +25126016 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 theNode.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1447 +1429 this -23981032 +764577347 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 theNode -270519011 +1359484306 1 theNode.element -1739647788 +2059904228 1 theNode.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 theNode.next -null +361993357 1 theNode.next.element -nonsensical -2 +25126016 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 theNode.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1446 +1428 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -94313,242 +94594,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1899988446 +25126016 1 x.getClass().getName() -"java.lang.Integer" +"java.lang.Class" 1 return -23981032 +764577347 1 return.current -270519011 +1359484306 1 return.current.element -1739647788 +2059904228 1 return.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 return.current.next -null +361993357 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1448 +1430 this -23981032 +764577347 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1449 +1431 this -23981032 +764577347 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1449 +1431 this -23981032 +764577347 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1448 +1430 this -23981032 +764577347 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -null +361993357 1 this.current.next.element -nonsensical -2 +25126016 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Class" +1 this.current.next.next -nonsensical -2 +1157740463 +1 return -1739647788 +2059904228 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1450 +1432 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1451 +1433 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1451 +1433 this -1271232078 +1776957250 1 this.current -2040480146 +361993357 1 this.current.element -1886692243 +25126016 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.lang.Class" 1 this.current.next -270519011 +1157740463 1 this.current.next.element -1739647788 +684874119 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -null +1216590855 1 return false @@ -94556,220 +94837,220 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1450 +1432 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1452 +1434 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1452 +1434 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1453 +1435 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1454 +1436 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1454 +1436 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1453 +1435 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 return -1739647788 +684874119 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1455 +1437 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -94778,32 +95059,32 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1469762835 +1344645519 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1456 +1438 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -94823,15 +95104,15 @@ nonsensical DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1456 +1438 this -1947060051 +1234776885 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -94849,10 +95130,10 @@ this.current.next.next nonsensical 2 theNode -270519011 +795372831 1 theNode.element -1739647788 +1291286504 1 theNode.element.getClass().getName() "java.lang.Object" @@ -94872,12 +95153,12 @@ nonsensical DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1455 +1437 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -94886,31 +95167,31 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 x -1469762835 +1344645519 1 x.getClass().getName() -"java.lang.String" +"java.lang.Object" 1 return -1947060051 +1234776885 1 return.current -270519011 +795372831 1 return.current.element -1739647788 +1291286504 1 return.current.element.getClass().getName() "java.lang.Object" @@ -94921,15 +95202,15 @@ null DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1457 +1439 this -1947060051 +1234776885 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -94949,15 +95230,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1458 +1440 this -1947060051 +1234776885 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -94977,15 +95258,15 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1458 +1440 this -1947060051 +1234776885 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -95008,15 +95289,15 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1457 +1439 this -1947060051 +1234776885 1 this.current -270519011 +795372831 1 this.current.element -1739647788 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" @@ -95034,7 +95315,7 @@ this.current.next.next nonsensical 2 return -1739647788 +1291286504 1 return.getClass().getName() "java.lang.Object" @@ -95042,198 +95323,111 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1459 +1441 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1460 +1442 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 +90320863 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +795372831 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1460 +1442 this -1271232078 +1776957250 1 this.current -270519011 +1157740463 1 this.current.element -1739647788 +684874119 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -null +1216590855 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1459 -this -1271232078 -1 -this.current -null +90320863 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1461 -this -1271232078 -1 -this.current -null +"java.lang.Object" 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1461 -this -1271232078 -1 -this.current -null +795372831 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 return -true +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1462 +1441 this -1034442050 +1776957250 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +795372831 1 this.current.next.element -1739647788 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -95244,24 +95438,24 @@ null DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1463 +1443 this -1034442050 +1776957250 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +795372831 1 this.current.next.element -1739647788 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -95272,24 +95466,24 @@ null DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1463 +1443 this -1034442050 +1776957250 1 this.current -2040480146 +1216590855 1 this.current.element -1886692243 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +795372831 1 this.current.next.element -1739647788 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" @@ -95301,310 +95495,135 @@ return false 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1462 +1444 this -1034442050 +1776957250 1 this.current -270519011 +1216590855 1 this.current.element -1739647788 +90320863 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -null +795372831 1 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER -this_invocation_nonce -1464 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -882464171 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -p -1034442050 -1 -p.current -270519011 -1 -p.current.element -1739647788 +1291286504 1 -p.current.element.getClass().getName() +this.current.next.element.getClass().getName() "java.lang.Object" 1 -p.current.next -null -1 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER -this_invocation_nonce -1465 -theElement -882464171 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 -this_invocation_nonce -1465 -this -1053255815 -1 -this.element -882464171 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.next -null -1 -this.next.element -nonsensical -2 -this.next.element.getClass().getName() -nonsensical -2 -this.next.next -nonsensical -2 -this.next.next.element -nonsensical -2 -this.next.next.element.getClass().getName() -nonsensical -2 -this.next.next.next -nonsensical -2 -theElement -882464171 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -n -null -1 -n.element -nonsensical -2 -n.element.getClass().getName() -nonsensical -2 -n.next -nonsensical -2 -n.next.element -nonsensical -2 -n.next.element.getClass().getName() -nonsensical -2 -n.next.next -nonsensical -2 - -DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 -this_invocation_nonce -1464 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -882464171 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 -p -1034442050 +this.current.next.next +null 1 -p.current -270519011 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1445 +this +1776957250 1 -p.current.element -1739647788 +this.current +1216590855 1 -p.current.element.getClass().getName() +this.current.element +90320863 +1 +this.current.element.getClass().getName() "java.lang.Object" 1 -p.current.next -1053255815 +this.current.next +795372831 1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER -this_invocation_nonce -1466 -theList -1032605070 +this.current.next.element +1291286504 1 -theList.header -2004439137 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -theList.header.element +this.current.next.next null 1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 -DataStructures.LinkedList.isEmpty():::ENTER +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1467 +1445 this -1032605070 +1776957250 1 -this.header -2004439137 +this.current +1216590855 1 -this.header.element -null +this.current.element +90320863 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +795372831 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +1291286504 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null +1 +return +false 1 -DataStructures.LinkedList.isEmpty():::EXIT45 +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1467 +1444 this -1032605070 +1776957250 1 -this.header -2004439137 +this.current +1216590855 1 -this.header.element -null +this.current.element +90320863 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +795372831 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +1291286504 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +null 1 return -false +90320863 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedList.first():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1468 +1446 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -95613,100 +95632,106 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +540159270 +1 +x.getClass().getName() +"java.lang.Integer" 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1469 +1447 theNode -470905757 +795372831 1 theNode.element -1987411885 +1291286504 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1469 +1447 this -362780484 +422250493 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 theNode -470905757 +795372831 1 theNode.element -1987411885 +1291286504 1 theNode.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 theNode.next -1904504032 +null 1 theNode.next.element -239304688 -1 +nonsensical +2 theNode.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 theNode.next.next -1456460106 -1 +nonsensical +2 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1468 +1446 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -95715,295 +95740,242 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 +1 +x +540159270 +1 +x.getClass().getName() +"java.lang.Integer" 1 return -362780484 +422250493 1 return.current -470905757 +795372831 1 return.current.element -1987411885 +1291286504 1 return.current.element.getClass().getName() -"java.lang.Long" -1 -return.current.next -1904504032 -1 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1470 -this -362780484 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() -"java.lang.Object" -1 -this.current.next.next -1456460106 -1 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1470 -this -362780484 -1 -this.current -470905757 -1 -this.current.element -1987411885 -1 -this.current.element.getClass().getName() -"java.lang.Long" -1 -this.current.next -1904504032 -1 -this.current.next.element -239304688 -1 -this.current.next.element.getClass().getName() "java.lang.Object" 1 -this.current.next.next -1456460106 -1 -return -false +return.current.next +null 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1471 +1448 this -362780484 +422250493 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1472 +1449 this -362780484 +422250493 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1472 +1449 this -362780484 +422250493 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1471 +1448 this -362780484 +422250493 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +null 1 this.current.next.element -239304688 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 this.current.next.next -1456460106 -1 +nonsensical +2 return -1987411885 +1291286504 1 return.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1473 +1450 this -362780484 +1776957250 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +795372831 1 this.current.next.element -239304688 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1474 +1451 this -362780484 +1776957250 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +795372831 1 this.current.next.element -239304688 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1474 +1451 this -362780484 +1776957250 1 this.current -470905757 +1216590855 1 this.current.element -1987411885 +90320863 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +795372831 1 this.current.next.element -239304688 +1291286504 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +null 1 return false @@ -96011,971 +95983,1246 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1473 +1450 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1475 +1452 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1475 +1452 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1476 +1453 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1477 +1454 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1477 +1454 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1476 +1453 this -362780484 +1776957250 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +1291286504 1 return.getClass().getName() "java.lang.Object" 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER this_invocation_nonce -1478 +1455 this -362780484 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 +x +1690287238 +1 +x.getClass().getName() +"java.lang.String" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1479 +1456 +theNode +795372831 +1 +theNode.element +1291286504 +1 +theNode.element.getClass().getName() +"java.lang.Object" +1 +theNode.next +null +1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +this_invocation_nonce +1456 this -362780484 +1690254271 1 this.current -1904504032 +795372831 1 this.current.element -239304688 +1291286504 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 +nonsensical +2 +theNode +795372831 +1 +theNode.element +1291286504 +1 +theNode.element.getClass().getName() +"java.lang.Object" +1 +theNode.next +null 1 +theNode.next.element +nonsensical +2 +theNode.next.element.getClass().getName() +nonsensical +2 +theNode.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 this_invocation_nonce -1479 +1455 this -362780484 +1778535015 1 -this.current -1904504032 +this.header +1856056345 1 -this.current.element -239304688 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Object" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -1456460106 +this.header.next.element +1307096070 1 -this.current.next.element -853552605 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.io.PrintStream" +this.header.next.next +403716510 1 -this.current.next.next -950209035 +x +1690287238 +1 +x.getClass().getName() +"java.lang.String" 1 return -false +1690254271 +1 +return.current +795372831 +1 +return.current.element +1291286504 +1 +return.current.element.getClass().getName() +"java.lang.Object" +1 +return.current.next +null 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1478 +1457 this -362780484 +1690254271 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1480 +1458 this -362780484 +1690254271 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1480 +1458 this -362780484 +1690254271 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1481 +1457 this -362780484 +1690254271 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 +nonsensical +2 +return +1291286504 +1 +return.getClass().getName() +"java.lang.Object" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1482 +1459 this -362780484 +1776957250 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1482 +1460 this -362780484 +1776957250 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 -return -false -1 +nonsensical +2 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1481 +1460 this -362780484 +1776957250 1 this.current -1456460106 +795372831 1 this.current.element -853552605 +1291286504 1 this.current.element.getClass().getName() -"java.io.PrintStream" +"java.lang.Object" 1 this.current.next -950209035 +null 1 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return -853552605 -1 -return.getClass().getName() -"java.io.PrintStream" +false 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1483 +1459 this -362780484 +1776957250 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1484 +1461 this -362780484 +1776957250 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1484 +1461 this -362780484 +1776957250 1 this.current -1456460106 +null 1 this.current.element -853552605 -1 +nonsensical +2 this.current.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next -950209035 -1 +nonsensical +2 this.current.next.element -2042940439 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.lang.Class" -1 +nonsensical +2 this.current.next.next -931990051 -1 +nonsensical +2 return -false +true 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1483 +1462 this -362780484 +1781256139 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +795372831 1 this.current.next.element -288183948 +1291286504 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1485 +1463 this -362780484 +1781256139 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +795372831 1 this.current.next.element -288183948 +1291286504 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1485 +1463 this -362780484 +1781256139 1 this.current -950209035 +1216590855 1 this.current.element -2042940439 +90320863 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +795372831 1 this.current.next.element -288183948 +1291286504 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +null 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1486 +1462 this -362780484 +1781256139 1 this.current -950209035 +795372831 1 this.current.element -2042940439 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Object" 1 this.current.next -931990051 +null 1 this.current.next.element -288183948 -1 +nonsensical +2 this.current.next.element.getClass().getName() +nonsensical +2 +this.current.next.next +nonsensical +2 + +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::ENTER +this_invocation_nonce +1464 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 +x +1440047379 +1 +x.getClass().getName() "DataStructures.MyInteger" 1 -this.current.next.next -2040480146 +p +1781256139 +1 +p.current +795372831 +1 +p.current.element +1291286504 +1 +p.current.element.getClass().getName() +"java.lang.Object" +1 +p.current.next +null 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::ENTER this_invocation_nonce -1487 -this -362780484 +1465 +theElement +1440047379 1 -this.current -950209035 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.current.element -2042940439 +n +null 1 -this.current.element.getClass().getName() -"java.lang.Class" +n.element +nonsensical +2 +n.element.getClass().getName() +nonsensical +2 +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next +nonsensical +2 + +DataStructures.ListNode.ListNode(java.lang.Object, DataStructures.ListNode):::EXIT19 +this_invocation_nonce +1465 +this +343965883 1 -this.current.next -931990051 +this.element +1440047379 1 -this.current.next.element -288183948 +this.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.current.next.element.getClass().getName() +this.next +null +1 +this.next.element +nonsensical +2 +this.next.element.getClass().getName() +nonsensical +2 +this.next.next +nonsensical +2 +this.next.next.element +nonsensical +2 +this.next.next.element.getClass().getName() +nonsensical +2 +this.next.next.next +nonsensical +2 +theElement +1440047379 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -this.current.next.next -2040480146 +n +null 1 +n.element +nonsensical +2 +n.element.getClass().getName() +nonsensical +2 +n.next +nonsensical +2 +n.next.element +nonsensical +2 +n.next.element.getClass().getName() +nonsensical +2 +n.next.next +nonsensical +2 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedList.insert(java.lang.Object, DataStructures.LinkedListItr):::EXIT83 this_invocation_nonce -1487 +1464 this -362780484 +1778535015 1 -this.current -950209035 +this.header +1856056345 1 -this.current.element -2042940439 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Class" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -931990051 +this.header.next.element +1307096070 1 -this.current.next.element -288183948 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() +this.header.next.next +403716510 +1 +x +1440047379 +1 +x.getClass().getName() "DataStructures.MyInteger" 1 -this.current.next.next -2040480146 +p +1781256139 1 -return -false +p.current +795372831 +1 +p.current.element +1291286504 +1 +p.current.element.getClass().getName() +"java.lang.Object" +1 +p.current.next +343965883 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::ENTER this_invocation_nonce -1486 -this -362780484 +1466 +theList +1778535015 1 -this.current -950209035 +theList.header +1856056345 1 -this.current.element -2042940439 +theList.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Class" +theList.header.element.getClass().getName() +nonsensical +2 +theList.header.next +1014328909 1 -this.current.next -931990051 + +DataStructures.LinkedList.isEmpty():::ENTER +this_invocation_nonce +1467 +this +1778535015 1 -this.current.next.element -288183948 +this.header +1856056345 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +this.header.element +null 1 -this.current.next.next -2040480146 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -return -2042940439 +this.header.next.element +1307096070 1 -return.getClass().getName() -"java.lang.Class" +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 -DataStructures.LinkedListItr.advance():::ENTER +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -1488 +1467 this -362780484 +1778535015 1 -this.current -950209035 +this.header +1856056345 1 -this.current.element -2042940439 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Class" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -931990051 +this.header.next.element +1307096070 1 -this.current.next.element -288183948 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +this.header.next.next +403716510 1 -this.current.next.next -2040480146 +return +false 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedList.first():::ENTER this_invocation_nonce -1489 +1468 this -362780484 +1778535015 1 -this.current -950209035 +this.header +1856056345 1 -this.current.element -2042940439 +this.header.element +null 1 -this.current.element.getClass().getName() -"java.lang.Class" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -931990051 +this.header.next.element +1307096070 1 -this.current.next.element -288183948 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +this.header.next.next +403716510 1 -this.current.next.next -2040480146 + +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +this_invocation_nonce +1469 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" +1 +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1489 +1469 this -362780484 +230835489 1 this.current -950209035 +1014328909 1 this.current.element -2042940439 +1307096070 1 this.current.element.getClass().getName() -"java.lang.Class" +"java.lang.Long" 1 this.current.next -931990051 +403716510 1 this.current.next.element -288183948 +1597462040 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Object" 1 this.current.next.next -2040480146 +1359484306 +1 +theNode +1014328909 +1 +theNode.element +1307096070 +1 +theNode.element.getClass().getName() +"java.lang.Long" +1 +theNode.next +403716510 +1 +theNode.next.element +1597462040 +1 +theNode.next.element.getClass().getName() +"java.lang.Object" 1 -return -false +theNode.next.next +1359484306 1 -DataStructures.LinkedListItr.advance():::EXIT56 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -1488 +1468 this -362780484 +1778535015 1 -this.current -931990051 +this.header +1856056345 1 -this.current.element -288183948 +this.header.element +null 1 -this.current.element.getClass().getName() -"DataStructures.MyInteger" +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 1 -this.current.next -2040480146 +this.header.next.element +1307096070 1 -this.current.next.element -1886692243 +this.header.next.element.getClass().getName() +"java.lang.Long" 1 -this.current.next.element.getClass().getName() -"java.lang.Object" +this.header.next.next +403716510 1 -this.current.next.next -270519011 +return +230835489 +1 +return.current +1014328909 +1 +return.current.element +1307096070 +1 +return.current.element.getClass().getName() +"java.lang.Long" +1 +return.current.next +403716510 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1490 +1470 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1490 +1470 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 return false @@ -96983,86 +97230,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1491 +1471 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1492 +1472 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1492 +1472 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 return false @@ -97070,120 +97317,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1491 +1471 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 return -288183948 +1307096070 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1493 +1473 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1494 +1474 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1494 +1474 this -362780484 +230835489 1 this.current -931990051 +1014328909 1 this.current.element -288183948 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -2040480146 +403716510 1 this.current.next.element -1886692243 +1597462040 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -270519011 +1359484306 1 return false @@ -97191,86 +97438,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1493 +1473 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1495 +1475 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1495 +1475 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 return false @@ -97278,86 +97525,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1496 +1476 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1497 +1477 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1497 +1477 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 return false @@ -97365,33 +97612,33 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1496 +1476 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 return -1886692243 +1597462040 1 return.getClass().getName() "java.lang.Object" @@ -97399,86 +97646,86 @@ return.getClass().getName() DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1498 +1478 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1499 +1479 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1499 +1479 this -362780484 +230835489 1 this.current -2040480146 +403716510 1 this.current.element -1886692243 +1597462040 1 this.current.element.getClass().getName() "java.lang.Object" 1 this.current.next -270519011 +1359484306 1 this.current.next.element -1739647788 +2059904228 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next.next -1053255815 +361993357 1 return false @@ -97486,86 +97733,86 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1498 +1478 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1500 +1480 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1500 +1480 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false @@ -97573,86 +97820,86 @@ false DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1501 +1481 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1502 +1482 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1502 +1482 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false @@ -97660,120 +97907,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1501 +1481 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return -1739647788 +2059904228 1 return.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1503 +1483 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1504 +1484 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1504 +1484 this -362780484 +230835489 1 this.current -270519011 +1359484306 1 this.current.element -1739647788 +2059904228 1 this.current.element.getClass().getName() -"java.lang.Object" +"java.io.PrintStream" 1 this.current.next -1053255815 +361993357 1 this.current.next.element -882464171 +25126016 1 this.current.next.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next.next -null +1157740463 1 return false @@ -97781,1306 +98028,1058 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1503 +1483 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1505 +1485 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1505 +1485 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1506 +1486 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1507 +1487 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1507 +1487 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1506 +1486 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 return -882464171 +25126016 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1508 +1488 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1509 +1489 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null +1157740463 1 this.current.next.element -nonsensical -2 +684874119 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next.next -nonsensical -2 +1216590855 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1509 +1489 this -362780484 +230835489 1 this.current -1053255815 +361993357 1 this.current.element -882464171 +25126016 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Class" 1 this.current.next -null -1 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 -return -false -1 - -DataStructures.LinkedListItr.advance():::EXIT56 -this_invocation_nonce -1508 -this -362780484 -1 -this.current -null +1157740463 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::ENTER -this_invocation_nonce -1510 -this -362780484 -1 -this.current -null +684874119 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next -nonsensical -2 - -DataStructures.LinkedListItr.isPastEnd():::EXIT35 -this_invocation_nonce -1510 -this -362780484 -1 -this.current -null +"DataStructures.MyInteger" 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 this.current.next.next -nonsensical -2 -return -true -1 - -DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 -this_invocation_nonce -1466 -theList -1032605070 -1 -theList.header -2004439137 -1 -theList.header.element -null -1 -theList.header.element.getClass().getName() -nonsensical -2 -theList.header.next -470905757 -1 - -DataStructures.LinkedList.isEmpty():::ENTER -this_invocation_nonce -1511 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedList.isEmpty():::EXIT45 -this_invocation_nonce -1511 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 +1216590855 1 return false 1 -DataStructures.LinkedList.first():::ENTER -this_invocation_nonce -1512 -this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1513 -theNode -470905757 +1488 +this +230835489 1 -theNode.element -1987411885 +this.current +1157740463 1 -theNode.element.getClass().getName() -"java.lang.Long" +this.current.element +684874119 1 -theNode.next -1904504032 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -theNode.next.element -239304688 +this.current.next +1216590855 1 -theNode.next.element.getClass().getName() +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() "java.lang.Object" 1 -theNode.next.next -1456460106 +this.current.next.next +795372831 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1513 +1490 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 -theNode -470905757 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1490 +this +230835489 1 -theNode.element -1987411885 +this.current +1157740463 1 -theNode.element.getClass().getName() -"java.lang.Long" +this.current.element +684874119 1 -theNode.next -1904504032 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -theNode.next.element -239304688 +this.current.next +1216590855 1 -theNode.next.element.getClass().getName() +this.current.next.element +90320863 +1 +this.current.next.element.getClass().getName() "java.lang.Object" 1 -theNode.next.next -1456460106 +this.current.next.next +795372831 +1 +return +false 1 -DataStructures.LinkedList.first():::EXIT71 +DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1512 +1491 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 +230835489 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current +1157740463 1 -this.header.next.next -1904504032 +this.current.element +684874119 1 -return -545520755 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -return.current -470905757 +this.current.next +1216590855 1 -return.current.element -1987411885 +this.current.next.element +90320863 1 -return.current.element.getClass().getName() -"java.lang.Long" +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -return.current.next -1904504032 +this.current.next.next +795372831 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1514 +1492 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1514 +1492 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 return false 1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1515 +1491 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 +1 +return +684874119 +1 +return.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.LinkedListItr.isPastEnd():::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1516 +1493 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 -DataStructures.LinkedListItr.isPastEnd():::EXIT35 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1516 +1494 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 -1 -return -false +795372831 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1515 +1494 this -545520755 +230835489 1 this.current -470905757 +1157740463 1 this.current.element -1987411885 +684874119 1 this.current.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next -1904504032 +1216590855 1 this.current.next.element -239304688 +90320863 1 this.current.next.element.getClass().getName() "java.lang.Object" 1 this.current.next.next -1456460106 +795372831 1 return -1987411885 -1 -return.getClass().getName() -"java.lang.Long" +false 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1517 +1493 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null +230835489 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current +1216590855 1 -this.header.next.element -1987411885 +this.current.element +90320863 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.next -1904504032 +this.current.next +795372831 1 -x -959640242 +this.current.next.element +1291286504 1 -x.getClass().getName() -"java.lang.Double" +this.current.next.element.getClass().getName() +"java.lang.Object" 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1518 -theNode -null +this.current.next.next +343965883 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1518 +1495 this -1071358324 +230835489 1 this.current -null +1216590855 1 this.current.element -nonsensical -2 +90320863 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +795372831 +1 this.current.next.element -nonsensical -2 +1291286504 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 -theNode -null +343965883 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1517 +1495 this -1032605070 -1 -this.header -2004439137 +230835489 1 -this.header.element -null +this.current +1216590855 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +90320863 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +795372831 1 -this.header.next.next -1904504032 +this.current.next.element +1291286504 1 -x -959640242 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -x.getClass().getName() -"java.lang.Double" +this.current.next.next +343965883 1 return -1071358324 -1 -return.current -null +false 1 -return.current.element -nonsensical -2 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -nonsensical -2 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1519 +1496 this -1071358324 +230835489 1 this.current -null +1216590855 1 this.current.element -nonsensical -2 +90320863 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +795372831 +1 this.current.next.element -nonsensical -2 +1291286504 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +343965883 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1520 +1497 this -1071358324 +230835489 1 this.current -null +1216590855 1 this.current.element -nonsensical -2 +90320863 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +795372831 +1 this.current.next.element -nonsensical -2 +1291286504 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +343965883 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1520 +1497 this -1071358324 +230835489 1 this.current -null +1216590855 1 this.current.element -nonsensical -2 +90320863 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +795372831 +1 this.current.next.element -nonsensical -2 +1291286504 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +343965883 +1 return -true +false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1519 +1496 this -1071358324 +230835489 1 this.current -null +1216590855 1 this.current.element -nonsensical -2 +90320863 +1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -nonsensical -2 +795372831 +1 this.current.next.element -nonsensical -2 +1291286504 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +343965883 +1 return -null +90320863 1 return.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1521 +1498 this -1032605070 -1 -this.header -2004439137 +230835489 1 -this.header.element -null +this.current +1216590855 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element +90320863 1 -this.header.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next +795372831 1 -this.header.next.next -1904504032 +this.current.next.element +1291286504 1 -x -1816455020 +this.current.next.element.getClass().getName() +"java.lang.Object" 1 -x.getClass().getName() -"java.lang.Long" +this.current.next.next +343965883 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1522 -theNode -2004439137 +1499 +this +230835489 1 -theNode.element -null +this.current +1216590855 1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 +this.current.element +90320863 1 -theNode.next.element -1987411885 +this.current.element.getClass().getName() +"java.lang.Object" 1 -theNode.next.element.getClass().getName() -"java.lang.Long" +this.current.next +795372831 1 -theNode.next.next -1904504032 +this.current.next.element +1291286504 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +343965883 1 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1522 +1499 this -531995388 +230835489 1 this.current -2004439137 +1216590855 1 this.current.element -null +90320863 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +795372831 1 this.current.next.element -1987411885 +1291286504 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next.next -1904504032 +343965883 1 -theNode -2004439137 +return +false 1 -theNode.element -null + +DataStructures.LinkedListItr.advance():::EXIT56 +this_invocation_nonce +1498 +this +230835489 1 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -470905757 +this.current +795372831 1 -theNode.next.element -1987411885 +this.current.element +1291286504 1 -theNode.next.element.getClass().getName() -"java.lang.Long" +this.current.element.getClass().getName() +"java.lang.Object" 1 -theNode.next.next -1904504032 +this.current.next +343965883 +1 +this.current.next.element +1440047379 +1 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next.next +null 1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1521 +1500 this -1032605070 +230835489 1 -this.header -2004439137 +this.current +795372831 1 -this.header.element -null +this.current.element +1291286504 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 +this.current.element.getClass().getName() +"java.lang.Object" 1 -this.header.next.element -1987411885 +this.current.next +343965883 1 -this.header.next.element.getClass().getName() -"java.lang.Long" +this.current.next.element +1440047379 1 -this.header.next.next -1904504032 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" 1 -x -1816455020 +this.current.next.next +null 1 -x.getClass().getName() -"java.lang.Long" + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1500 +this +230835489 1 -return -531995388 +this.current +795372831 1 -return.current -2004439137 +this.current.element +1291286504 1 -return.current.element +this.current.element.getClass().getName() +"java.lang.Object" +1 +this.current.next +343965883 +1 +this.current.next.element +1440047379 +1 +this.current.next.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.current.next.next null 1 -return.current.element.getClass().getName() -nonsensical -2 -return.current.next -470905757 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1523 +1501 this -531995388 +230835489 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +343965883 1 this.current.next.element -1987411885 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1524 +1502 this -531995388 +230835489 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +343965883 1 this.current.next.element -1987411885 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1524 +1502 this -531995388 +230835489 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +343965883 1 this.current.next.element -1987411885 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +null 1 return false @@ -99088,120 +99087,120 @@ false DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1523 +1501 this -531995388 +230835489 1 this.current -2004439137 +795372831 1 this.current.element -null +1291286504 1 this.current.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next -470905757 +343965883 1 this.current.next.element -1987411885 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Long" +"DataStructures.MyInteger" 1 this.current.next.next -1904504032 +null 1 return -null +1291286504 1 return.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1525 +1503 this -545520755 +230835489 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +343965883 1 this.current.next.element -239304688 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1526 +1504 this -545520755 +230835489 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +343965883 1 this.current.next.element -239304688 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1526 +1504 this -545520755 +230835489 1 this.current -470905757 +795372831 1 this.current.element -1987411885 +1291286504 1 this.current.element.getClass().getName() -"java.lang.Long" +"java.lang.Object" 1 this.current.next -1904504032 +343965883 1 this.current.next.element -239304688 +1440047379 1 this.current.next.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next.next -1456460106 +null 1 return false @@ -99209,289 +99208,258 @@ false DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1525 +1503 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1527 +1505 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1527 +1505 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1528 +1506 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1529 +1507 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1529 +1507 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1528 +1506 this -545520755 +230835489 1 this.current -1904504032 +343965883 1 this.current.element -239304688 +1440047379 1 this.current.element.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 this.current.next -1456460106 +null 1 this.current.next.element -853552605 -1 +nonsensical +2 this.current.next.element.getClass().getName() -"java.io.PrintStream" -1 +nonsensical +2 this.current.next.next -950209035 -1 +nonsensical +2 return -239304688 +1440047379 1 return.getClass().getName() -"java.lang.Object" +"DataStructures.MyInteger" 1 -DataStructures.LinkedList.find(java.lang.Object):::ENTER +DataStructures.LinkedListItr.advance():::ENTER this_invocation_nonce -1530 +1508 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null -1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" +230835489 1 -this.header.next.next -1904504032 +this.current +343965883 1 -x -1272063655 +this.current.element +1440047379 1 -x.getClass().getName() -"java.lang.String" +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 - -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER -this_invocation_nonce -1531 -theNode +this.current.next null 1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element +this.current.next.element nonsensical 2 -theNode.next.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -theNode.next.next +this.current.next.next nonsensical 2 -DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 +DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1531 +1509 this -1374143700 +230835489 1 this.current -null +343965883 1 this.current.element -nonsensical -2 +1440047379 +1 this.current.element.getClass().getName() -nonsensical -2 +"DataStructures.MyInteger" +1 this.current.next -nonsensical -2 +null +1 this.current.next.element nonsensical 2 @@ -99501,82 +99469,43 @@ nonsensical this.current.next.next nonsensical 2 -theNode -null -1 -theNode.element -nonsensical -2 -theNode.element.getClass().getName() -nonsensical -2 -theNode.next -nonsensical -2 -theNode.next.element -nonsensical -2 -theNode.next.element.getClass().getName() -nonsensical -2 -theNode.next.next -nonsensical -2 -DataStructures.LinkedList.find(java.lang.Object):::EXIT97 +DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1530 +1509 this -1032605070 -1 -this.header -2004439137 -1 -this.header.element -null +230835489 1 -this.header.element.getClass().getName() -nonsensical -2 -this.header.next -470905757 -1 -this.header.next.element -1987411885 -1 -this.header.next.element.getClass().getName() -"java.lang.Long" -1 -this.header.next.next -1904504032 -1 -x -1272063655 +this.current +343965883 1 -x.getClass().getName() -"java.lang.String" +this.current.element +1440047379 1 -return -1374143700 +this.current.element.getClass().getName() +"DataStructures.MyInteger" 1 -return.current +this.current.next null 1 -return.current.element +this.current.next.element nonsensical 2 -return.current.element.getClass().getName() +this.current.next.element.getClass().getName() nonsensical 2 -return.current.next +this.current.next.next nonsensical 2 +return +false +1 -DataStructures.LinkedListItr.retrieve():::ENTER +DataStructures.LinkedListItr.advance():::EXIT56 this_invocation_nonce -1532 +1508 this -1374143700 +230835489 1 this.current null @@ -99602,9 +99531,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1533 +1510 this -1374143700 +230835489 1 this.current null @@ -99630,9 +99559,9 @@ nonsensical DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1533 +1510 this -1374143700 +230835489 1 this.current null @@ -99659,48 +99588,61 @@ return true 1 -DataStructures.LinkedListItr.retrieve():::EXIT45 +DataStructures.LinkedList.printList(DataStructures.LinkedList):::EXIT141 this_invocation_nonce -1532 -this -1374143700 +1466 +theList +1778535015 1 -this.current +theList.header +1856056345 +1 +theList.header.element null 1 -this.current.element -nonsensical -2 -this.current.element.getClass().getName() -nonsensical -2 -this.current.next -nonsensical -2 -this.current.next.element -nonsensical -2 -this.current.next.element.getClass().getName() -nonsensical -2 -this.current.next.next +theList.header.element.getClass().getName() nonsensical 2 -return +theList.header.next +1014328909 +1 + +DataStructures.LinkedList.isEmpty():::ENTER +this_invocation_nonce +1511 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element null 1 -return.getClass().getName() +this.header.element.getClass().getName() nonsensical 2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::ENTER +DataStructures.LinkedList.isEmpty():::EXIT45 this_invocation_nonce -1534 +1511 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -99709,106 +99651,131 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 +403716510 1 -x -1194026062 +return +false 1 -x.getClass().getName() -"java.lang.String" + +DataStructures.LinkedList.first():::ENTER +this_invocation_nonce +1512 +this +1778535015 +1 +this.header +1856056345 +1 +this.header.element +null +1 +this.header.element.getClass().getName() +nonsensical +2 +this.header.next +1014328909 +1 +this.header.next.element +1307096070 +1 +this.header.next.element.getClass().getName() +"java.lang.Long" +1 +this.header.next.next +403716510 1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::ENTER this_invocation_nonce -1535 +1513 theNode -1053255815 +1014328909 1 theNode.element -882464171 +1307096070 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 theNode.next -null +403716510 1 theNode.next.element -nonsensical -2 +1597462040 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.LinkedListItr(DataStructures.ListNode):::EXIT27 this_invocation_nonce -1535 +1513 this -1908826466 +280884709 1 this.current -1053255815 +1014328909 1 this.current.element -882464171 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 theNode -1053255815 +1014328909 1 theNode.element -882464171 +1307096070 1 theNode.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 theNode.next -null +403716510 1 theNode.next.element -nonsensical -2 +1597462040 +1 theNode.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 theNode.next.next -nonsensical -2 +1359484306 +1 -DataStructures.LinkedList.findPrevious(java.lang.Object):::EXIT113 +DataStructures.LinkedList.first():::EXIT71 this_invocation_nonce -1534 +1512 this -1032605070 +1778535015 1 this.header -2004439137 +1856056345 1 this.header.element null @@ -99817,157 +99784,210 @@ this.header.element.getClass().getName() nonsensical 2 this.header.next -470905757 +1014328909 1 this.header.next.element -1987411885 +1307096070 1 this.header.next.element.getClass().getName() "java.lang.Long" 1 this.header.next.next -1904504032 -1 -x -1194026062 -1 -x.getClass().getName() -"java.lang.String" +403716510 1 return -1908826466 +280884709 1 return.current -1053255815 +1014328909 1 return.current.element -882464171 +1307096070 1 return.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 return.current.next -null +403716510 +1 + +DataStructures.LinkedListItr.isPastEnd():::ENTER +this_invocation_nonce +1514 +this +280884709 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 + +DataStructures.LinkedListItr.isPastEnd():::EXIT35 +this_invocation_nonce +1514 +this +280884709 +1 +this.current +1014328909 +1 +this.current.element +1307096070 +1 +this.current.element.getClass().getName() +"java.lang.Long" +1 +this.current.next +403716510 +1 +this.current.next.element +1597462040 +1 +this.current.next.element.getClass().getName() +"java.lang.Object" +1 +this.current.next.next +1359484306 +1 +return +false 1 DataStructures.LinkedListItr.retrieve():::ENTER this_invocation_nonce -1536 +1515 this -1908826466 +280884709 1 this.current -1053255815 +1014328909 1 this.current.element -882464171 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::ENTER this_invocation_nonce -1537 +1516 this -1908826466 +280884709 1 this.current -1053255815 +1014328909 1 this.current.element -882464171 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 DataStructures.LinkedListItr.isPastEnd():::EXIT35 this_invocation_nonce -1537 +1516 this -1908826466 +280884709 1 this.current -1053255815 +1014328909 1 this.current.element -882464171 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return false 1 DataStructures.LinkedListItr.retrieve():::EXIT45 this_invocation_nonce -1536 +1515 this -1908826466 +280884709 1 this.current -1053255815 +1014328909 1 this.current.element -882464171 +1307096070 1 this.current.element.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 this.current.next -null +403716510 1 this.current.next.element -nonsensical -2 +1597462040 +1 this.current.next.element.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 this.current.next.next -nonsensical -2 +1359484306 +1 return -882464171 +1307096070 1 return.getClass().getName() -"DataStructures.MyInteger" +"java.lang.Long" 1 diff --git a/tests/daikon-tests/Makefile b/tests/daikon-tests/Makefile index 188fa40bb2..da303c8592 100644 --- a/tests/daikon-tests/Makefile +++ b/tests/daikon-tests/Makefile @@ -41,12 +41,12 @@ everything-%: quick-% nonquick-% @echo ${HR} quick-%: SQD-% polycalc-% special-cases-% siemens-% @echo ${HR} -nonquick-%: dsaa-% mapquick-% javautil-% 6170-% large-% new-% +nonquick-%: dsaa-% mapquick-% javautil-% 6170-% large-% new-% exception-% @echo ${HR} # Canonical groupings -SQD-%: do-StackAr-% do-QueueAr-% do-DisjSets-% +SQD-%: do-StackAr-% do-QueueAr-% do-DisjSets-% @echo ${HR} polycalc-%: do-RatNum-% do-RatPoly-% do-RatPolyStack-% do-RatTermVec-% @echo ${HR} @@ -66,6 +66,8 @@ large-%: # do-Flex-% do-JML-% @echo ${HR} new-%: do-KnownValues-% do-KnownValuesNewDecls-% do-baseline-% @echo ${HR} +exception-%: do-ExceptionHandling-% + @echo ${HR} # Extra groupings diff --git a/tests/daikon-tests/QueueAr/QueueAr.txt-chicory.goal b/tests/daikon-tests/QueueAr/QueueAr.txt-chicory.goal index da7ef42929..a4a991027a 100644 --- a/tests/daikon-tests/QueueAr/QueueAr.txt-chicory.goal +++ b/tests/daikon-tests/QueueAr/QueueAr.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.QueueAr -// Declarations written Thu Jun 04 13:25:26 PDT 2015 +// Declarations written Mon Jul 31 12:35:53 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt DataStructures.QueueAr.QueueAr(int):::ENTER ppt-type enter variable capacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -17,11 +17,83 @@ ppt DataStructures.QueueAr.QueueAr(int):::EXIT36 ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable capacity + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt DataStructures.QueueAr.QueueAr(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray var-kind field theArray @@ -36,11 +108,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -54,7 +126,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -79,20 +151,32 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable capacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt DataStructures.QueueAr.isEmpty():::ENTER ppt-type enter parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -108,11 +192,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -126,7 +210,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -155,10 +239,10 @@ ppt DataStructures.QueueAr.isEmpty():::EXIT44 ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -174,11 +258,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -192,7 +276,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -217,19 +301,97 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt DataStructures.QueueAr.isEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.QueueAr.isFull():::ENTER ppt-type enter parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -245,11 +407,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -263,7 +425,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -292,10 +454,10 @@ ppt DataStructures.QueueAr.isFull():::EXIT53 ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -311,11 +473,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -329,7 +491,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -354,19 +516,19 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt DataStructures.QueueAr.makeEmpty():::ENTER -ppt-type enter +ppt DataStructures.QueueAr.isFull():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -382,11 +544,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -400,7 +562,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -424,15 +586,27 @@ variable this.back rep-type int comparability 22 parent DataStructures.QueueAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.QueueAr.makeEmpty():::EXIT65 -ppt-type subexit +ppt DataStructures.QueueAr.makeEmpty():::ENTER +ppt-type enter parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -448,11 +622,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -466,7 +640,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -491,14 +665,14 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 -ppt DataStructures.QueueAr.getFront():::ENTER -ppt-type enter +ppt DataStructures.QueueAr.makeEmpty():::EXIT65 +ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -514,11 +688,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -532,7 +706,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -557,14 +731,14 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 -ppt DataStructures.QueueAr.getFront():::EXIT76 +ppt DataStructures.QueueAr.makeEmpty():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -580,11 +754,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -598,7 +772,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -622,28 +796,93 @@ variable this.back rep-type int comparability 22 parent DataStructures.QueueAr:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.QueueAr.getFront():::ENTER +ppt-type enter +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 ppt DataStructures.QueueAr.getFront():::EXIT75 ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -659,11 +898,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -677,7 +916,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -702,7 +941,7 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode comparability 22 @@ -712,17 +951,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.QueueAr.dequeue():::ENTER -ppt-type enter +ppt DataStructures.QueueAr.getFront():::EXIT76 +ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -738,11 +977,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -756,7 +995,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -780,15 +1019,28 @@ variable this.back rep-type int comparability 22 parent DataStructures.QueueAr:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags synthetic classname non_null + comparability 22 -ppt DataStructures.QueueAr.dequeue():::EXIT86 +ppt DataStructures.QueueAr.getFront():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -804,11 +1056,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -822,7 +1074,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -846,28 +1098,27 @@ variable this.back rep-type int comparability 22 parent DataStructures.QueueAr:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.QueueAr.dequeue():::EXIT93 -ppt-type subexit +ppt DataStructures.QueueAr.dequeue():::ENTER +ppt-type enter parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -883,11 +1134,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -901,7 +1152,152 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 + +ppt DataStructures.QueueAr.dequeue():::EXIT86 +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.QueueAr.dequeue():::EXIT93 +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -926,7 +1322,7 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode comparability 22 @@ -936,17 +1332,95 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.QueueAr.dequeue():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER ppt-type enter parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -962,11 +1436,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -980,7 +1454,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -1005,7 +1479,7 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1016,18 +1490,190 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.QueueAr.enqueue(java.lang.Object):::EXCEPTION104 +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode flags is_param comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.QueueAr.enqueue(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray var-kind field theArray @@ -1042,11 +1688,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -1060,7 +1706,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -1085,7 +1731,7 @@ variable this.back comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable x - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1096,17 +1742,29 @@ variable x.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args x - flags synthetic classname + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.QueueAr.dequeueAll():::ENTER ppt-type enter parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -1122,11 +1780,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -1140,7 +1798,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -1169,10 +1827,76 @@ ppt DataStructures.QueueAr.dequeueAll():::EXIT116 ppt-type subexit parent parent DataStructures.QueueAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.currentSize + var-kind field currentSize + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.front + var-kind field front + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 +variable this.back + var-kind field back + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.QueueAr:::OBJECT 1 + +ppt DataStructures.QueueAr.dequeueAll():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.QueueAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.QueueAr + rep-type hashcode + flags is_param non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray @@ -1188,11 +1912,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -1206,7 +1930,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.QueueAr:::OBJECT 1 variable this.currentSize @@ -1230,14 +1954,26 @@ variable this.back rep-type int comparability 22 parent DataStructures.QueueAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt DataStructures.QueueAr:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type DataStructures.QueueAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.theArray var-kind field theArray @@ -1251,10 +1987,10 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -1267,7 +2003,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.currentSize var-kind field currentSize @@ -1299,10 +2035,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 0 this -732656791 +509886383 1 this.theArray -1335593353 +1854778591 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1337,10 +2073,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 1 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1368,10 +2104,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 2 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1396,10 +2132,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 2 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1427,10 +2163,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 3 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1455,10 +2191,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 3 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1486,10 +2222,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 4 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1514,10 +2250,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 5 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1542,10 +2278,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 5 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1573,10 +2309,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 4 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1607,10 +2343,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 6 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1631,7 +2367,7 @@ this.back 0 1 x -1799775865 +142666848 1 x.getClass().getName() "java.lang.Object" @@ -1641,10 +2377,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 7 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1669,10 +2405,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 7 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1700,16 +2436,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 6 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1724,7 +2460,7 @@ this.back 0 1 x -1799775865 +142666848 1 x.getClass().getName() "java.lang.Object" @@ -1734,16 +2470,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 8 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1762,16 +2498,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 8 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1793,16 +2529,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 9 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1821,16 +2557,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 9 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1852,16 +2588,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 10 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1880,16 +2616,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 11 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1908,16 +2644,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 11 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1939,16 +2675,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 10 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -1963,7 +2699,7 @@ this.back 0 1 return -1799775865 +142666848 1 return.getClass().getName() "java.lang.Object" @@ -1973,16 +2709,16 @@ DataStructures.QueueAr.dequeueAll():::ENTER this_invocation_nonce 12 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -2001,16 +2737,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 13 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -2029,16 +2765,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 13 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -2060,16 +2796,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 14 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -2088,16 +2824,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 15 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -2116,16 +2852,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 15 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1799775865] +[142666848] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -2147,10 +2883,10 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 14 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2171,7 +2907,7 @@ this.back 0 1 return -1799775865 +142666848 1 return.getClass().getName() "java.lang.Object" @@ -2181,10 +2917,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 16 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2209,10 +2945,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 16 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2240,10 +2976,10 @@ DataStructures.QueueAr.dequeueAll():::EXIT116 this_invocation_nonce 12 this -1750434854 +885951223 1 this.theArray -1180110925 +191382150 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2275,10 +3011,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 17 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2306,10 +3042,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 18 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2334,10 +3070,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 18 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2365,10 +3101,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 19 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2393,10 +3129,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 19 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2424,10 +3160,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 20 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2452,10 +3188,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 21 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2480,10 +3216,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 21 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2511,10 +3247,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 20 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2545,10 +3281,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 22 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2569,7 +3305,7 @@ this.back 1 1 x -1852088223 +2047526627 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2579,10 +3315,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 23 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2607,10 +3343,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 23 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2638,16 +3374,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 22 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2662,7 +3398,7 @@ this.back 0 1 x -1852088223 +2047526627 1 x.getClass().getName() "DataStructures.MyInteger" @@ -2672,16 +3408,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 24 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2700,16 +3436,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 24 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2731,16 +3467,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 25 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2759,16 +3495,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 25 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2790,16 +3526,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 26 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2818,16 +3554,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 27 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2846,16 +3582,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 27 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2877,16 +3613,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 26 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2901,7 +3637,7 @@ this.back 0 1 return -1852088223 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -2911,16 +3647,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 28 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2935,7 +3671,7 @@ this.back 0 1 x -271300696 +1908316405 1 x.getClass().getName() "java.lang.Object" @@ -2945,16 +3681,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 29 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -2973,16 +3709,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 29 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 null] +[2047526627 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -3004,16 +3740,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 28 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3028,7 +3764,7 @@ this.back 1 1 x -271300696 +1908316405 1 x.getClass().getName() "java.lang.Object" @@ -3038,16 +3774,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 30 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3066,16 +3802,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 30 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3097,16 +3833,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 31 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3125,16 +3861,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 31 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3156,16 +3892,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 32 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3184,16 +3920,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 33 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3212,16 +3948,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 33 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3243,16 +3979,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 32 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3267,7 +4003,7 @@ this.back 1 1 return -1852088223 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -3277,16 +4013,16 @@ DataStructures.QueueAr.dequeueAll():::ENTER this_invocation_nonce 34 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3305,16 +4041,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 35 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3333,16 +4069,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 35 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3364,16 +4100,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 36 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3392,16 +4128,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 37 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3420,16 +4156,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 37 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1852088223 271300696] +[2047526627 1908316405] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object"] @@ -3451,16 +4187,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 36 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 271300696] +[null 1908316405] 1 this.theArray[..].getClass().getName() [null "java.lang.Object"] @@ -3475,7 +4211,7 @@ this.back 1 1 return -1852088223 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -3485,16 +4221,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 38 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 271300696] +[null 1908316405] 1 this.theArray[..].getClass().getName() [null "java.lang.Object"] @@ -3513,16 +4249,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 38 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 271300696] +[null 1908316405] 1 this.theArray[..].getClass().getName() [null "java.lang.Object"] @@ -3544,16 +4280,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 39 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 271300696] +[null 1908316405] 1 this.theArray[..].getClass().getName() [null "java.lang.Object"] @@ -3572,16 +4308,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 40 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 271300696] +[null 1908316405] 1 this.theArray[..].getClass().getName() [null "java.lang.Object"] @@ -3600,16 +4336,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 40 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 271300696] +[null 1908316405] 1 this.theArray[..].getClass().getName() [null "java.lang.Object"] @@ -3631,10 +4367,10 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 39 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3655,7 +4391,7 @@ this.back 1 1 return -271300696 +1908316405 1 return.getClass().getName() "java.lang.Object" @@ -3665,10 +4401,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 41 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3693,10 +4429,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 41 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3724,10 +4460,10 @@ DataStructures.QueueAr.dequeueAll():::EXIT116 this_invocation_nonce 34 this -1525795060 +1060830840 1 this.theArray -935344593 +2137211482 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3759,10 +4495,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 42 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3790,10 +4526,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 43 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3818,10 +4554,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 43 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3849,10 +4585,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 44 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3877,10 +4613,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 44 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3908,10 +4644,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 45 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3936,10 +4672,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 46 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3964,10 +4700,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 46 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3995,10 +4731,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 45 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -4029,10 +4765,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 47 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -4053,7 +4789,7 @@ this.back 9 1 x -1745510705 +762218386 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4063,10 +4799,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 48 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -4091,10 +4827,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 48 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -4122,16 +4858,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 47 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4146,7 +4882,7 @@ this.back 0 1 x -1745510705 +762218386 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4156,16 +4892,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 49 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4184,16 +4920,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 49 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4215,16 +4951,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 50 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4243,16 +4979,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 50 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4274,16 +5010,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 51 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4302,16 +5038,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 52 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4330,16 +5066,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 52 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4361,16 +5097,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 51 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4385,7 +5121,7 @@ this.back 0 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4395,16 +5131,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 53 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4419,7 +5155,7 @@ this.back 0 1 x -24317268 +672320506 1 x.getClass().getName() "java.lang.Object" @@ -4429,16 +5165,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 54 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4457,16 +5193,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 54 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[762218386 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4488,16 +5224,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 53 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4512,7 +5248,7 @@ this.back 1 1 x -24317268 +672320506 1 x.getClass().getName() "java.lang.Object" @@ -4522,16 +5258,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 55 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4550,16 +5286,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 55 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4581,16 +5317,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 56 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4609,16 +5345,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 56 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4640,16 +5376,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 57 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4668,16 +5404,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 58 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4696,16 +5432,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 58 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4727,16 +5463,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 57 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4751,7 +5487,7 @@ this.back 1 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4761,16 +5497,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 59 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4785,7 +5521,7 @@ this.back 1 1 x -678430346 +718231523 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4795,16 +5531,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 60 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4823,16 +5559,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 60 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 null null null null null null null null] +[762218386 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -4854,16 +5590,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 59 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -4878,7 +5614,7 @@ this.back 2 1 x -678430346 +718231523 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4888,16 +5624,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 61 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -4916,16 +5652,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 61 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -4947,16 +5683,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 62 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -4975,16 +5711,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 62 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5006,16 +5742,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 63 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5034,16 +5770,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 64 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5062,16 +5798,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 64 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5093,16 +5829,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 63 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5117,7 +5853,7 @@ this.back 2 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5127,16 +5863,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 65 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5151,7 +5887,7 @@ this.back 2 1 x -1388143299 +1349414238 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5161,16 +5897,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 66 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5189,16 +5925,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 66 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 null null null null null null null] +[762218386 672320506 718231523 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -5220,16 +5956,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 65 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5244,7 +5980,7 @@ this.back 3 1 x -1388143299 +1349414238 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5254,16 +5990,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 67 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5282,16 +6018,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 67 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5313,16 +6049,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 68 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5341,16 +6077,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 68 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5372,16 +6108,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 69 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5400,16 +6136,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 70 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5428,16 +6164,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 70 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5459,16 +6195,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 69 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5483,7 +6219,7 @@ this.back 3 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5493,16 +6229,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 71 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5517,7 +6253,7 @@ this.back 3 1 x -262085285 +157627094 1 x.getClass().getName() "java.lang.Object" @@ -5527,16 +6263,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 72 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5555,16 +6291,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 72 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 null null null null null null] +[762218386 672320506 718231523 1349414238 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -5586,16 +6322,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 71 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5610,7 +6346,7 @@ this.back 4 1 x -262085285 +157627094 1 x.getClass().getName() "java.lang.Object" @@ -5620,16 +6356,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 73 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5648,16 +6384,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 73 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5679,16 +6415,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 74 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5707,16 +6443,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 74 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5738,16 +6474,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 75 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5766,16 +6502,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 76 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5794,16 +6530,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 76 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5825,16 +6561,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 75 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5849,7 +6585,7 @@ this.back 4 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5859,16 +6595,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 77 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5883,7 +6619,7 @@ this.back 4 1 x -378424998 +932607259 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5893,16 +6629,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 78 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5921,16 +6657,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 78 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 null null null null null] +[762218386 672320506 718231523 1349414238 157627094 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -5952,16 +6688,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 77 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -5976,7 +6712,7 @@ this.back 5 1 x -378424998 +932607259 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5986,16 +6722,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 79 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6014,16 +6750,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 79 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6045,16 +6781,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 80 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6073,16 +6809,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 80 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6104,16 +6840,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 81 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6132,16 +6868,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 82 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6160,16 +6896,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 82 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6191,16 +6927,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 81 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6215,7 +6951,7 @@ this.back 5 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -6225,16 +6961,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 83 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6249,7 +6985,7 @@ this.back 5 1 x -1489862619 +1740000325 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6259,16 +6995,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 84 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6287,16 +7023,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 84 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 null null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -6318,16 +7054,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 83 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6342,7 +7078,7 @@ this.back 6 1 x -1489862619 +1740000325 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6352,16 +7088,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 85 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6380,16 +7116,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 85 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6411,16 +7147,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 86 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6439,16 +7175,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 86 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6470,16 +7206,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 87 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6498,16 +7234,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 88 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6526,16 +7262,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 88 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6557,16 +7293,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 87 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6581,7 +7317,7 @@ this.back 6 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -6591,16 +7327,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 89 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6615,7 +7351,7 @@ this.back 6 1 x -461713513 +1142020464 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6625,16 +7361,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 90 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6653,16 +7389,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 90 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 null null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -6684,16 +7420,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 89 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6708,7 +7444,7 @@ this.back 7 1 x -461713513 +1142020464 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6718,16 +7454,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 91 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6746,16 +7482,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 91 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6777,16 +7513,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 92 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6805,16 +7541,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 92 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6836,16 +7572,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 93 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6864,16 +7600,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 94 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6892,16 +7628,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 94 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6923,16 +7659,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 93 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6947,7 +7683,7 @@ this.back 7 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -6957,16 +7693,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 95 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -6981,7 +7717,7 @@ this.back 7 1 x -1160596380 +1682092198 1 x.getClass().getName() "DataStructures.MyInteger" @@ -6991,16 +7727,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 96 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -7019,16 +7755,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 96 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 null null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -7050,16 +7786,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 95 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7074,7 +7810,7 @@ this.back 8 1 x -1160596380 +1682092198 1 x.getClass().getName() "DataStructures.MyInteger" @@ -7084,16 +7820,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 97 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7112,16 +7848,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 97 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7143,16 +7879,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 98 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7171,16 +7907,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 98 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7202,16 +7938,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 99 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7230,16 +7966,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 100 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7258,16 +7994,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 100 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7289,16 +8025,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 99 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7313,7 +8049,7 @@ this.back 8 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7323,16 +8059,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 101 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7347,7 +8083,7 @@ this.back 8 1 x -549392959 +1626877848 1 x.getClass().getName() "java.lang.Object" @@ -7357,16 +8093,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 102 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7385,16 +8121,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 102 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 null] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -7416,16 +8152,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 101 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7440,7 +8176,7 @@ this.back 9 1 x -549392959 +1626877848 1 x.getClass().getName() "java.lang.Object" @@ -7450,16 +8186,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 103 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7478,16 +8214,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 103 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7509,16 +8245,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 104 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7537,16 +8273,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 104 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7568,16 +8304,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 105 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7596,16 +8332,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 106 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7624,16 +8360,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 106 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7655,16 +8391,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 105 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7679,7 +8415,7 @@ this.back 9 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7689,16 +8425,16 @@ DataStructures.QueueAr.dequeueAll():::ENTER this_invocation_nonce 107 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7717,16 +8453,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 108 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7745,16 +8481,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 108 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7776,16 +8512,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 109 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7804,16 +8540,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 110 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7832,16 +8568,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 110 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[762218386 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7863,16 +8599,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 109 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7887,7 +8623,7 @@ this.back 9 1 return -1745510705 +762218386 1 return.getClass().getName() "DataStructures.MyInteger" @@ -7897,16 +8633,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 111 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7925,16 +8661,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 111 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7956,16 +8692,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 112 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -7984,16 +8720,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 113 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8012,16 +8748,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 113 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null 672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8043,16 +8779,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 112 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8067,7 +8803,7 @@ this.back 9 1 return -24317268 +672320506 1 return.getClass().getName() "java.lang.Object" @@ -8077,16 +8813,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 114 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8105,16 +8841,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 114 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8136,16 +8872,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 115 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8164,16 +8900,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 116 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8192,16 +8928,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 116 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8223,16 +8959,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 115 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8247,7 +8983,7 @@ this.back 9 1 return -678430346 +718231523 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8257,16 +8993,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 117 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8285,16 +9021,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 117 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8316,16 +9052,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 118 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8344,16 +9080,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 119 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8372,16 +9108,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 119 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8403,16 +9139,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 118 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null null 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8427,7 +9163,7 @@ this.back 9 1 return -1388143299 +1349414238 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8437,16 +9173,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 120 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null null 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8465,16 +9201,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 120 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null null 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8496,16 +9232,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 121 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null null 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8524,16 +9260,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 122 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null null 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8552,16 +9288,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 122 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 262085285 378424998 1489862619 461713513 1160596380 549392959] +[null null null null 157627094 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8583,16 +9319,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 121 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 378424998 1489862619 461713513 1160596380 549392959] +[null null null null null 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8607,7 +9343,7 @@ this.back 9 1 return -262085285 +157627094 1 return.getClass().getName() "java.lang.Object" @@ -8617,16 +9353,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 123 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 378424998 1489862619 461713513 1160596380 549392959] +[null null null null null 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8645,16 +9381,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 123 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 378424998 1489862619 461713513 1160596380 549392959] +[null null null null null 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8676,16 +9412,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 124 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 378424998 1489862619 461713513 1160596380 549392959] +[null null null null null 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8704,16 +9440,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 125 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 378424998 1489862619 461713513 1160596380 549392959] +[null null null null null 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8732,16 +9468,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 125 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 378424998 1489862619 461713513 1160596380 549392959] +[null null null null null 932607259 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8763,16 +9499,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 124 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1489862619 461713513 1160596380 549392959] +[null null null null null null 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8787,7 +9523,7 @@ this.back 9 1 return -378424998 +932607259 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8797,16 +9533,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 126 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1489862619 461713513 1160596380 549392959] +[null null null null null null 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8825,16 +9561,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 126 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1489862619 461713513 1160596380 549392959] +[null null null null null null 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8856,16 +9592,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 127 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1489862619 461713513 1160596380 549392959] +[null null null null null null 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8884,16 +9620,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 128 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1489862619 461713513 1160596380 549392959] +[null null null null null null 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8912,16 +9648,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 128 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1489862619 461713513 1160596380 549392959] +[null null null null null null 1740000325 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8943,16 +9679,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 127 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 461713513 1160596380 549392959] +[null null null null null null null 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -8967,7 +9703,7 @@ this.back 9 1 return -1489862619 +1740000325 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8977,16 +9713,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 129 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 461713513 1160596380 549392959] +[null null null null null null null 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -9005,16 +9741,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 129 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 461713513 1160596380 549392959] +[null null null null null null null 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -9036,16 +9772,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 130 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 461713513 1160596380 549392959] +[null null null null null null null 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -9064,16 +9800,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 131 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 461713513 1160596380 549392959] +[null null null null null null null 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -9092,16 +9828,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 131 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 461713513 1160596380 549392959] +[null null null null null null null 1142020464 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -9123,16 +9859,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 130 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1160596380 549392959] +[null null null null null null null null 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -9147,7 +9883,7 @@ this.back 9 1 return -461713513 +1142020464 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9157,16 +9893,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 132 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1160596380 549392959] +[null null null null null null null null 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -9185,16 +9921,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 132 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1160596380 549392959] +[null null null null null null null null 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -9216,16 +9952,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 133 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1160596380 549392959] +[null null null null null null null null 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -9244,16 +9980,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 134 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1160596380 549392959] +[null null null null null null null null 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -9272,16 +10008,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 134 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1160596380 549392959] +[null null null null null null null null 1682092198 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -9303,16 +10039,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 133 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 549392959] +[null null null null null null null null null 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object"] @@ -9327,7 +10063,7 @@ this.back 9 1 return -1160596380 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9337,16 +10073,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 135 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 549392959] +[null null null null null null null null null 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object"] @@ -9365,16 +10101,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 135 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 549392959] +[null null null null null null null null null 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object"] @@ -9396,16 +10132,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 136 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 549392959] +[null null null null null null null null null 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object"] @@ -9424,16 +10160,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 137 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 549392959] +[null null null null null null null null null 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object"] @@ -9452,16 +10188,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 137 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 549392959] +[null null null null null null null null null 1626877848] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object"] @@ -9483,10 +10219,10 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 136 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9507,7 +10243,7 @@ this.back 9 1 return -549392959 +1626877848 1 return.getClass().getName() "java.lang.Object" @@ -9517,10 +10253,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 138 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9545,10 +10281,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 138 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9576,10 +10312,10 @@ DataStructures.QueueAr.dequeueAll():::EXIT116 this_invocation_nonce 107 this -643015091 +1873653341 1 this.theArray -1016922733 +25126016 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9611,10 +10347,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 139 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9642,10 +10378,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 140 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9670,10 +10406,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 140 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9701,10 +10437,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 141 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9729,10 +10465,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 141 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9760,10 +10496,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 142 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9788,10 +10524,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 143 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9816,10 +10552,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 143 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9847,10 +10583,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 142 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9881,10 +10617,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 144 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9905,7 +10641,7 @@ this.back 29 1 x -1711281786 +249515771 1 x.getClass().getName() "DataStructures.MyInteger" @@ -9915,10 +10651,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 145 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9943,10 +10679,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 145 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -9974,16 +10710,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 144 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -9998,7 +10734,7 @@ this.back 0 1 x -1711281786 +249515771 1 x.getClass().getName() "DataStructures.MyInteger" @@ -10008,16 +10744,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 146 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10036,16 +10772,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 146 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10067,16 +10803,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 147 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10095,16 +10831,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 147 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10126,16 +10862,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 148 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10154,16 +10890,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 149 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10182,16 +10918,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 149 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10213,16 +10949,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 148 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10237,7 +10973,7 @@ this.back 0 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10247,16 +10983,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 150 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10271,7 +11007,7 @@ this.back 0 1 x -264493031 +796533847 1 x.getClass().getName() "java.lang.Object" @@ -10281,16 +11017,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 151 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10309,16 +11045,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 151 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10340,16 +11076,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 150 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10364,7 +11100,7 @@ this.back 1 1 x -264493031 +796533847 1 x.getClass().getName() "java.lang.Object" @@ -10374,16 +11110,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 152 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10402,16 +11138,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 152 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10433,16 +11169,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 153 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10461,16 +11197,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 153 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10492,16 +11228,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 154 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10520,16 +11256,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 155 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10548,16 +11284,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 155 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10579,16 +11315,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 154 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10603,7 +11339,7 @@ this.back 1 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10613,16 +11349,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 156 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10637,7 +11373,7 @@ this.back 1 1 x -43222727 +1449621165 1 x.getClass().getName() "java.lang.Object" @@ -10647,16 +11383,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 157 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10675,16 +11411,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 157 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10706,16 +11442,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 156 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10730,7 +11466,7 @@ this.back 2 1 x -43222727 +1449621165 1 x.getClass().getName() "java.lang.Object" @@ -10740,16 +11476,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 158 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10768,16 +11504,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 158 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10799,16 +11535,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 159 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10827,16 +11563,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 159 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10858,16 +11594,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 160 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10886,16 +11622,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 161 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10914,16 +11650,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 161 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10945,16 +11681,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 160 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -10969,7 +11705,7 @@ this.back 2 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10979,16 +11715,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 162 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11003,7 +11739,7 @@ this.back 2 1 x -594900003 +1627960023 1 x.getClass().getName() "java.lang.Object" @@ -11013,16 +11749,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 163 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11041,16 +11777,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 163 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11072,16 +11808,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 162 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11096,7 +11832,7 @@ this.back 3 1 x -594900003 +1627960023 1 x.getClass().getName() "java.lang.Object" @@ -11106,16 +11842,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 164 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11134,16 +11870,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 164 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11165,16 +11901,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 165 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11193,16 +11929,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 165 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11224,16 +11960,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 166 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11252,16 +11988,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 167 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11280,16 +12016,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 167 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11311,16 +12047,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 166 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11335,7 +12071,7 @@ this.back 3 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11345,16 +12081,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 168 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11369,7 +12105,7 @@ this.back 3 1 x -1947973636 +357863579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11379,16 +12115,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 169 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11407,16 +12143,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 169 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11438,16 +12174,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 168 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11462,7 +12198,7 @@ this.back 4 1 x -1947973636 +357863579 1 x.getClass().getName() "DataStructures.MyInteger" @@ -11472,16 +12208,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 170 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11500,16 +12236,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 170 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11531,16 +12267,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 171 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11559,16 +12295,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 171 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11590,16 +12326,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 172 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11618,16 +12354,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 173 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11646,16 +12382,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 173 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11677,16 +12413,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 172 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11701,7 +12437,7 @@ this.back 4 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11711,16 +12447,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 174 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11735,7 +12471,7 @@ this.back 4 1 x -1204701737 +1811044090 1 x.getClass().getName() "java.lang.Object" @@ -11745,16 +12481,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 175 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11773,16 +12509,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 175 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 null null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11804,16 +12540,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 174 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11828,7 +12564,7 @@ this.back 5 1 x -1204701737 +1811044090 1 x.getClass().getName() "java.lang.Object" @@ -11838,16 +12574,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 176 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11866,16 +12602,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 176 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11897,16 +12633,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 177 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11925,16 +12661,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 177 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11956,16 +12692,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 178 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -11984,16 +12720,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 179 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12012,16 +12748,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 179 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12043,16 +12779,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 178 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12067,7 +12803,7 @@ this.back 5 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12077,16 +12813,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 180 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12101,7 +12837,7 @@ this.back 5 1 x -946269843 +114132791 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12111,16 +12847,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 181 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12139,16 +12875,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 181 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -12170,16 +12906,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 180 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12194,7 +12930,7 @@ this.back 6 1 x -946269843 +114132791 1 x.getClass().getName() "DataStructures.MyInteger" @@ -12204,16 +12940,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 182 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12232,16 +12968,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 182 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12263,16 +12999,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 183 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12291,16 +13027,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 183 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12322,16 +13058,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 184 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12350,16 +13086,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 185 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12378,16 +13114,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 185 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12409,16 +13145,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 184 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12433,7 +13169,7 @@ this.back 6 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12443,16 +13179,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 186 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12467,7 +13203,7 @@ this.back 6 1 x -1840845266 +586617651 1 x.getClass().getName() "java.lang.Object" @@ -12477,16 +13213,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 187 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12505,16 +13241,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 187 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -12536,16 +13272,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 186 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12560,7 +13296,7 @@ this.back 7 1 x -1840845266 +586617651 1 x.getClass().getName() "java.lang.Object" @@ -12570,16 +13306,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 188 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12598,16 +13334,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 188 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12629,16 +13365,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 189 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12657,16 +13393,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 189 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12688,16 +13424,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 190 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12716,16 +13452,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 191 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12744,16 +13480,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 191 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12775,16 +13511,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 190 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12799,7 +13535,7 @@ this.back 7 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -12809,16 +13545,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 192 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12833,7 +13569,7 @@ this.back 7 1 x -289483333 +328638398 1 x.getClass().getName() "java.lang.Object" @@ -12843,16 +13579,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 193 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12871,16 +13607,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 193 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -12902,16 +13638,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 192 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -12926,7 +13662,7 @@ this.back 8 1 x -289483333 +328638398 1 x.getClass().getName() "java.lang.Object" @@ -12936,16 +13672,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 194 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -12964,16 +13700,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 194 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -12995,16 +13731,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 195 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13023,16 +13759,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 195 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13054,16 +13790,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 196 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13082,16 +13818,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 197 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13110,16 +13846,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 197 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13141,16 +13877,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 196 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13165,7 +13901,7 @@ this.back 8 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13175,16 +13911,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 198 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13199,7 +13935,7 @@ this.back 8 1 x -1295917276 +1789550256 1 x.getClass().getName() "java.lang.Object" @@ -13209,16 +13945,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 199 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13237,16 +13973,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 199 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -13268,16 +14004,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 198 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13292,7 +14028,7 @@ this.back 9 1 x -1295917276 +1789550256 1 x.getClass().getName() "java.lang.Object" @@ -13302,16 +14038,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 200 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13330,16 +14066,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 200 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13361,16 +14097,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 201 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13389,16 +14125,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 201 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13420,16 +14156,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 202 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13448,16 +14184,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 203 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13476,16 +14212,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 203 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13507,16 +14243,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 202 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13531,7 +14267,7 @@ this.back 9 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13541,16 +14277,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 204 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13565,7 +14301,7 @@ this.back 9 1 x -702509858 +3447021 1 x.getClass().getName() "java.lang.Object" @@ -13575,16 +14311,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 205 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13603,16 +14339,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 205 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null] @@ -13634,16 +14370,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 204 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13658,7 +14394,7 @@ this.back 10 1 x -702509858 +3447021 1 x.getClass().getName() "java.lang.Object" @@ -13668,16 +14404,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 206 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13696,16 +14432,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 206 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13727,16 +14463,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 207 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13755,16 +14491,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 207 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13786,16 +14522,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 208 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13814,16 +14550,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 209 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13842,16 +14578,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 209 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13873,16 +14609,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 208 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13897,7 +14633,7 @@ this.back 10 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -13907,16 +14643,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 210 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13931,7 +14667,7 @@ this.back 10 1 x -218092200 +440434003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -13941,16 +14677,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 211 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -13969,16 +14705,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 211 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14000,16 +14736,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 210 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14024,7 +14760,7 @@ this.back 11 1 x -218092200 +440434003 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14034,16 +14770,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 212 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14062,16 +14798,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 212 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14093,16 +14829,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 213 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14121,16 +14857,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 213 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14152,16 +14888,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 214 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14180,16 +14916,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 215 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14208,16 +14944,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 215 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14239,16 +14975,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 214 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14263,7 +14999,7 @@ this.back 11 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14273,16 +15009,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 216 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14297,7 +15033,7 @@ this.back 11 1 x -1868503618 +1032616650 1 x.getClass().getName() "java.lang.Object" @@ -14307,16 +15043,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 217 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14335,16 +15071,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 217 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 null null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -14366,16 +15102,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 216 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14390,7 +15126,7 @@ this.back 12 1 x -1868503618 +1032616650 1 x.getClass().getName() "java.lang.Object" @@ -14400,16 +15136,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 218 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14428,16 +15164,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 218 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14459,16 +15195,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 219 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14487,16 +15223,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 219 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14518,16 +15254,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 220 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14546,16 +15282,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 221 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14574,16 +15310,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 221 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14605,16 +15341,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 220 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14629,7 +15365,7 @@ this.back 12 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -14639,16 +15375,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 222 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14663,7 +15399,7 @@ this.back 12 1 x -1286937645 +99347477 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14673,16 +15409,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 223 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14701,16 +15437,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 223 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 null null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -14732,16 +15468,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 222 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14756,7 +15492,7 @@ this.back 13 1 x -1286937645 +99347477 1 x.getClass().getName() "DataStructures.MyInteger" @@ -14766,16 +15502,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 224 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14794,16 +15530,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 224 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14825,16 +15561,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 225 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14853,16 +15589,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 225 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14884,16 +15620,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 226 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14912,16 +15648,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 227 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14940,16 +15676,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 227 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14971,16 +15707,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 226 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -14995,7 +15731,7 @@ this.back 13 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15005,16 +15741,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 228 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15029,7 +15765,7 @@ this.back 13 1 x -105706931 +566034357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15039,16 +15775,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 229 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15067,16 +15803,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 229 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 null null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15098,16 +15834,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 228 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15122,7 +15858,7 @@ this.back 14 1 x -105706931 +566034357 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15132,16 +15868,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 230 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15160,16 +15896,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 230 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15191,16 +15927,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 231 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15219,16 +15955,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 231 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15250,16 +15986,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 232 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15278,16 +16014,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 233 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15306,16 +16042,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 233 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15337,16 +16073,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 232 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15361,7 +16097,7 @@ this.back 14 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15371,16 +16107,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 234 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15395,7 +16131,7 @@ this.back 14 1 x -647413248 +940553268 1 x.getClass().getName() "java.lang.Object" @@ -15405,16 +16141,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 235 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15433,16 +16169,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 235 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 null null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15464,16 +16200,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 234 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15488,7 +16224,7 @@ this.back 15 1 x -647413248 +940553268 1 x.getClass().getName() "java.lang.Object" @@ -15498,16 +16234,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 236 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15526,16 +16262,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 236 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15557,16 +16293,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 237 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15585,16 +16321,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 237 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15616,16 +16352,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 238 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15644,16 +16380,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 239 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15672,16 +16408,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 239 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15703,16 +16439,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 238 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15727,7 +16463,7 @@ this.back 15 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15737,16 +16473,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 240 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15761,7 +16497,7 @@ this.back 15 1 x -1922303434 +1720435669 1 x.getClass().getName() "java.lang.Object" @@ -15771,16 +16507,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 241 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15799,16 +16535,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 241 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 null null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -15830,16 +16566,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 240 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -15854,7 +16590,7 @@ this.back 16 1 x -1922303434 +1720435669 1 x.getClass().getName() "java.lang.Object" @@ -15864,16 +16600,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 242 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -15892,16 +16628,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 242 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -15923,16 +16659,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 243 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -15951,16 +16687,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 243 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -15982,16 +16718,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 244 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16010,16 +16746,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 245 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16038,16 +16774,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 245 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16069,16 +16805,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 244 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16093,7 +16829,7 @@ this.back 16 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16103,16 +16839,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 246 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16127,7 +16863,7 @@ this.back 16 1 x -1409829770 +1020923989 1 x.getClass().getName() "java.lang.Object" @@ -16137,16 +16873,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 247 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16165,16 +16901,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 247 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 null null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -16196,16 +16932,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 246 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16220,7 +16956,7 @@ this.back 17 1 x -1409829770 +1020923989 1 x.getClass().getName() "java.lang.Object" @@ -16230,16 +16966,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 248 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16258,16 +16994,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 248 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16289,16 +17025,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 249 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16317,16 +17053,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 249 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16348,16 +17084,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 250 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16376,16 +17112,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 251 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16404,16 +17140,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 251 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16435,16 +17171,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 250 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16459,7 +17195,7 @@ this.back 17 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16469,16 +17205,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 252 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16493,7 +17229,7 @@ this.back 17 1 x -1821867039 +2052915500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16503,16 +17239,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 253 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16531,16 +17267,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 253 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 null null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -16562,16 +17298,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 252 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16586,7 +17322,7 @@ this.back 18 1 x -1821867039 +2052915500 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16596,16 +17332,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 254 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16624,16 +17360,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 254 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16655,16 +17391,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 255 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16683,16 +17419,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 255 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16714,16 +17450,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 256 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16742,16 +17478,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 257 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16770,16 +17506,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 257 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16801,16 +17537,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 256 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16825,7 +17561,7 @@ this.back 18 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16835,16 +17571,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 258 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16859,7 +17595,7 @@ this.back 18 1 x -1297485547 +1068934215 1 x.getClass().getName() "java.lang.Object" @@ -16869,16 +17605,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 259 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16897,16 +17633,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 259 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 null null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null] @@ -16928,16 +17664,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 258 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -16952,7 +17688,7 @@ this.back 19 1 x -1297485547 +1068934215 1 x.getClass().getName() "java.lang.Object" @@ -16962,16 +17698,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 260 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -16990,16 +17726,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 260 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17021,16 +17757,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 261 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17049,16 +17785,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 261 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17080,16 +17816,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 262 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17108,16 +17844,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 263 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17136,16 +17872,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 263 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17167,16 +17903,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 262 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17191,7 +17927,7 @@ this.back 19 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17201,16 +17937,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 264 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17225,7 +17961,7 @@ this.back 19 1 x -1290636791 +127618319 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17235,16 +17971,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 265 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17263,16 +17999,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 265 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 null null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null] @@ -17294,16 +18030,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 264 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17318,7 +18054,7 @@ this.back 20 1 x -1290636791 +127618319 1 x.getClass().getName() "DataStructures.MyInteger" @@ -17328,16 +18064,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 266 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17356,16 +18092,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 266 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17387,16 +18123,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 267 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17415,16 +18151,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 267 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17446,16 +18182,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 268 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17474,16 +18210,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 269 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17502,16 +18238,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 269 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17533,16 +18269,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 268 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17557,7 +18293,7 @@ this.back 20 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17567,16 +18303,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 270 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17591,7 +18327,7 @@ this.back 20 1 x -227990 +1798286609 1 x.getClass().getName() "java.lang.Object" @@ -17601,16 +18337,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 271 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17629,16 +18365,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 271 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 null null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -17660,16 +18396,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 270 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17684,7 +18420,7 @@ this.back 21 1 x -227990 +1798286609 1 x.getClass().getName() "java.lang.Object" @@ -17694,16 +18430,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 272 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17722,16 +18458,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 272 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17753,16 +18489,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 273 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17781,16 +18517,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 273 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17812,16 +18548,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 274 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17840,16 +18576,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 275 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17868,16 +18604,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 275 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17899,16 +18635,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 274 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17923,7 +18659,7 @@ this.back 21 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -17933,16 +18669,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 276 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17957,7 +18693,7 @@ this.back 21 1 x -1684344283 +2036958521 1 x.getClass().getName() "java.lang.Object" @@ -17967,16 +18703,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 277 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -17995,16 +18731,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 277 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 null null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -18026,16 +18762,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 276 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18050,7 +18786,7 @@ this.back 22 1 x -1684344283 +2036958521 1 x.getClass().getName() "java.lang.Object" @@ -18060,16 +18796,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 278 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18088,16 +18824,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 278 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18119,16 +18855,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 279 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18147,16 +18883,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 279 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18178,16 +18914,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 280 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18206,16 +18942,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 281 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18234,16 +18970,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 281 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18265,16 +19001,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 280 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18289,7 +19025,7 @@ this.back 22 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18299,16 +19035,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 282 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18323,7 +19059,7 @@ this.back 22 1 x -644929627 +1945604815 1 x.getClass().getName() "java.lang.Object" @@ -18333,16 +19069,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 283 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18361,16 +19097,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 283 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 null null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18392,16 +19128,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 282 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18416,7 +19152,7 @@ this.back 23 1 x -644929627 +1945604815 1 x.getClass().getName() "java.lang.Object" @@ -18426,16 +19162,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 284 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18454,16 +19190,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 284 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18485,16 +19221,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 285 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18513,16 +19249,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 285 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18544,16 +19280,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 286 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18572,16 +19308,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 287 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18600,16 +19336,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 287 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18631,16 +19367,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 286 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18655,7 +19391,7 @@ this.back 23 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18665,16 +19401,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 288 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18689,7 +19425,7 @@ this.back 23 1 x -982274580 +785992331 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18699,16 +19435,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 289 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18727,16 +19463,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 289 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 null null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -18758,16 +19494,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 288 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18782,7 +19518,7 @@ this.back 24 1 x -982274580 +785992331 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18792,16 +19528,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 290 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18820,16 +19556,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 290 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18851,16 +19587,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 291 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18879,16 +19615,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 291 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18910,16 +19646,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 292 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18938,16 +19674,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 293 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18966,16 +19702,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 293 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -18997,16 +19733,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 292 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -19021,7 +19757,7 @@ this.back 24 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19031,16 +19767,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 294 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -19055,7 +19791,7 @@ this.back 24 1 x -1382071571 +940060004 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19065,16 +19801,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 295 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -19093,16 +19829,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 295 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 null null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -19124,16 +19860,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 294 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19148,7 +19884,7 @@ this.back 25 1 x -1382071571 +940060004 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19158,16 +19894,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 296 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19186,16 +19922,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 296 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19217,16 +19953,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 297 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19245,16 +19981,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 297 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19276,16 +20012,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 298 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19304,16 +20040,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 299 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19332,16 +20068,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 299 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19363,16 +20099,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 298 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19387,7 +20123,7 @@ this.back 25 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19397,16 +20133,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 300 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19421,7 +20157,7 @@ this.back 25 1 x -787694442 +234698513 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19431,16 +20167,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 301 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19459,16 +20195,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 301 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 null null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -19490,16 +20226,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 300 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19514,7 +20250,7 @@ this.back 26 1 x -787694442 +234698513 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19524,16 +20260,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 302 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19552,16 +20288,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 302 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19583,16 +20319,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 303 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19611,16 +20347,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 303 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19642,16 +20378,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 304 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19670,16 +20406,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 305 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19698,16 +20434,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 305 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19729,16 +20465,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 304 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19753,7 +20489,7 @@ this.back 26 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19763,16 +20499,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 306 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19787,7 +20523,7 @@ this.back 26 1 x -1691286586 +1121172875 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19797,16 +20533,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 307 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19825,16 +20561,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 307 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 null null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -19856,16 +20592,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 306 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -19880,7 +20616,7 @@ this.back 27 1 x -1691286586 +1121172875 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19890,16 +20626,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 308 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -19918,16 +20654,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 308 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -19949,16 +20685,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 309 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -19977,16 +20713,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 309 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20008,16 +20744,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 310 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20036,16 +20772,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 311 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20064,16 +20800,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 311 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20095,16 +20831,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 310 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20119,7 +20855,7 @@ this.back 27 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20129,16 +20865,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 312 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20153,7 +20889,7 @@ this.back 27 1 x -1360099210 +649734728 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20163,16 +20899,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 313 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20191,16 +20927,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 313 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 null null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -20222,16 +20958,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 312 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20246,7 +20982,7 @@ this.back 28 1 x -1360099210 +649734728 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20256,16 +20992,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 314 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20284,16 +21020,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 314 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20315,16 +21051,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 315 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20343,16 +21079,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 315 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20374,16 +21110,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 316 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20402,16 +21138,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 317 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20430,16 +21166,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 317 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20461,16 +21197,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 316 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20485,7 +21221,7 @@ this.back 28 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20495,16 +21231,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 318 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20519,7 +21255,7 @@ this.back 28 1 x -1371483802 +1595953398 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20529,16 +21265,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 319 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20557,16 +21293,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 319 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 null] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -20588,16 +21324,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 318 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20612,7 +21348,7 @@ this.back 29 1 x -1371483802 +1595953398 1 x.getClass().getName() "DataStructures.MyInteger" @@ -20622,16 +21358,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 320 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20650,16 +21386,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 320 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20681,16 +21417,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 321 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20709,16 +21445,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 321 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20740,16 +21476,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 322 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20768,16 +21504,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 323 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20796,16 +21532,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 323 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20827,16 +21563,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 322 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20851,7 +21587,7 @@ this.back 29 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -20861,16 +21597,16 @@ DataStructures.QueueAr.dequeueAll():::ENTER this_invocation_nonce 324 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20889,16 +21625,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 325 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20917,16 +21653,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 325 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20948,16 +21684,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 326 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -20976,16 +21712,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 327 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21004,16 +21740,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 327 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21035,16 +21771,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 326 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21059,7 +21795,7 @@ this.back 29 1 return -1711281786 +249515771 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21069,16 +21805,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 328 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21097,16 +21833,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 328 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21128,16 +21864,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 329 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21156,16 +21892,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 330 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21184,16 +21920,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 330 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21215,16 +21951,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 329 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21239,7 +21975,7 @@ this.back 29 1 return -264493031 +796533847 1 return.getClass().getName() "java.lang.Object" @@ -21249,16 +21985,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 331 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21277,16 +22013,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 331 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21308,16 +22044,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 332 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21336,16 +22072,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 333 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21364,16 +22100,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 333 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21395,16 +22131,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 332 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21419,7 +22155,7 @@ this.back 29 1 return -43222727 +1449621165 1 return.getClass().getName() "java.lang.Object" @@ -21429,16 +22165,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 334 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21457,16 +22193,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 334 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21488,16 +22224,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 335 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21516,16 +22252,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 336 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21544,16 +22280,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 336 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21575,16 +22311,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 335 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21599,7 +22335,7 @@ this.back 29 1 return -594900003 +1627960023 1 return.getClass().getName() "java.lang.Object" @@ -21609,16 +22345,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 337 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21637,16 +22373,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 337 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21668,16 +22404,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 338 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21696,16 +22432,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 339 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21724,16 +22460,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 339 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21755,16 +22491,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 338 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21779,7 +22515,7 @@ this.back 29 1 return -1947973636 +357863579 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21789,16 +22525,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 340 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21817,16 +22553,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 340 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21848,16 +22584,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 341 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21876,16 +22612,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 342 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21904,16 +22640,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 342 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21935,16 +22671,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 341 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21959,7 +22695,7 @@ this.back 29 1 return -1204701737 +1811044090 1 return.getClass().getName() "java.lang.Object" @@ -21969,16 +22705,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 343 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -21997,16 +22733,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 343 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22028,16 +22764,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 344 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22056,16 +22792,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 345 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22084,16 +22820,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 345 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 946269843 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22115,16 +22851,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 344 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22139,7 +22875,7 @@ this.back 29 1 return -946269843 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -22149,16 +22885,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 346 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22177,16 +22913,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 346 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22208,16 +22944,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 347 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22236,16 +22972,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 348 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22264,16 +23000,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 348 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 1840845266 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null 586617651 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22295,16 +23031,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 347 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22319,7 +23055,7 @@ this.back 29 1 return -1840845266 +586617651 1 return.getClass().getName() "java.lang.Object" @@ -22329,16 +23065,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 349 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22357,16 +23093,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 349 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22388,16 +23124,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 350 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22416,16 +23152,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 351 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22444,16 +23180,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 351 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 289483333 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null 328638398 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22475,16 +23211,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 350 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22499,7 +23235,7 @@ this.back 29 1 return -289483333 +328638398 1 return.getClass().getName() "java.lang.Object" @@ -22509,16 +23245,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 352 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22537,16 +23273,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 352 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22568,16 +23304,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 353 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22596,16 +23332,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 354 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22624,16 +23360,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 354 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1295917276 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null 1789550256 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22655,16 +23391,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 353 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22679,7 +23415,7 @@ this.back 29 1 return -1295917276 +1789550256 1 return.getClass().getName() "java.lang.Object" @@ -22689,16 +23425,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 355 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22717,16 +23453,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 355 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22748,16 +23484,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 356 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22776,16 +23512,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 357 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22804,16 +23540,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 357 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 702509858 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null 3447021 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22835,16 +23571,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 356 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22859,7 +23595,7 @@ this.back 29 1 return -702509858 +3447021 1 return.getClass().getName() "java.lang.Object" @@ -22869,16 +23605,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 358 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22897,16 +23633,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 358 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22928,16 +23664,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 359 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22956,16 +23692,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 360 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -22984,16 +23720,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 360 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 218092200 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null 440434003 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23015,16 +23751,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 359 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23039,7 +23775,7 @@ this.back 29 1 return -218092200 +440434003 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23049,16 +23785,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 361 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23077,16 +23813,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 361 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23108,16 +23844,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 362 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23136,16 +23872,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 363 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23164,16 +23900,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 363 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 1868503618 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null 1032616650 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23195,16 +23931,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 362 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23219,7 +23955,7 @@ this.back 29 1 return -1868503618 +1032616650 1 return.getClass().getName() "java.lang.Object" @@ -23229,16 +23965,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 364 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23257,16 +23993,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 364 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23288,16 +24024,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 365 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23316,16 +24052,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 366 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23344,16 +24080,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 366 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1286937645 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null 99347477 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23375,16 +24111,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 365 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23399,7 +24135,7 @@ this.back 29 1 return -1286937645 +99347477 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23409,16 +24145,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 367 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23437,16 +24173,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 367 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23468,16 +24204,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 368 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23496,16 +24232,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 369 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23524,16 +24260,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 369 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 105706931 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null 566034357 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23555,16 +24291,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 368 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23579,7 +24315,7 @@ this.back 29 1 return -105706931 +566034357 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23589,16 +24325,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 370 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23617,16 +24353,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 370 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23648,16 +24384,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 371 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23676,16 +24412,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 372 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23704,16 +24440,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 372 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 647413248 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null 940553268 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23735,16 +24471,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 371 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23759,7 +24495,7 @@ this.back 29 1 return -647413248 +940553268 1 return.getClass().getName() "java.lang.Object" @@ -23769,16 +24505,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 373 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23797,16 +24533,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 373 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23828,16 +24564,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 374 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23856,16 +24592,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 375 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23884,16 +24620,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 375 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null 1922303434 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null 1720435669 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23915,16 +24651,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 374 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23939,7 +24675,7 @@ this.back 29 1 return -1922303434 +1720435669 1 return.getClass().getName() "java.lang.Object" @@ -23949,16 +24685,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 376 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -23977,16 +24713,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 376 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24008,16 +24744,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 377 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24036,16 +24772,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 378 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24064,16 +24800,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 378 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null 1409829770 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null 1020923989 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24095,16 +24831,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 377 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24119,7 +24855,7 @@ this.back 29 1 return -1409829770 +1020923989 1 return.getClass().getName() "java.lang.Object" @@ -24129,16 +24865,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 379 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24157,16 +24893,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 379 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24188,16 +24924,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 380 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24216,16 +24952,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 381 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24244,16 +24980,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 381 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null 1821867039 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null 2052915500 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24275,16 +25011,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 380 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24299,7 +25035,7 @@ this.back 29 1 return -1821867039 +2052915500 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24309,16 +25045,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 382 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24337,16 +25073,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 382 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24368,16 +25104,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 383 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24396,16 +25132,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 384 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24424,16 +25160,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 384 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null 1297485547 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null 1068934215 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24455,16 +25191,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 383 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24479,7 +25215,7 @@ this.back 29 1 return -1297485547 +1068934215 1 return.getClass().getName() "java.lang.Object" @@ -24489,16 +25225,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 385 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24517,16 +25253,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 385 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24548,16 +25284,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 386 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24576,16 +25312,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 387 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24604,16 +25340,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 387 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null 1290636791 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null 127618319 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24635,16 +25371,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 386 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24659,7 +25395,7 @@ this.back 29 1 return -1290636791 +127618319 1 return.getClass().getName() "DataStructures.MyInteger" @@ -24669,16 +25405,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 388 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24697,16 +25433,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 388 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24728,16 +25464,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 389 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24756,16 +25492,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 390 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24784,16 +25520,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 390 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null 227990 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null 1798286609 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24815,16 +25551,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 389 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24839,7 +25575,7 @@ this.back 29 1 return -227990 +1798286609 1 return.getClass().getName() "java.lang.Object" @@ -24849,16 +25585,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 391 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24877,16 +25613,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 391 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24908,16 +25644,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 392 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24936,16 +25672,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 393 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24964,16 +25700,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 393 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null 1684344283 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null 2036958521 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -24995,16 +25731,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 392 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25019,7 +25755,7 @@ this.back 29 1 return -1684344283 +2036958521 1 return.getClass().getName() "java.lang.Object" @@ -25029,16 +25765,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 394 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25057,16 +25793,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 394 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25088,16 +25824,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 395 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25116,16 +25852,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 396 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25144,16 +25880,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 396 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null 644929627 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null 1945604815 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25175,16 +25911,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 395 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25199,7 +25935,7 @@ this.back 29 1 return -644929627 +1945604815 1 return.getClass().getName() "java.lang.Object" @@ -25209,16 +25945,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 397 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25237,16 +25973,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 397 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25268,16 +26004,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 398 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25296,16 +26032,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 399 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25324,16 +26060,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 399 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null 982274580 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null 785992331 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25355,16 +26091,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 398 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25379,7 +26115,7 @@ this.back 29 1 return -982274580 +785992331 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25389,16 +26125,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 400 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25417,16 +26153,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 400 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25448,16 +26184,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 401 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25476,16 +26212,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 402 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25504,16 +26240,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 402 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null 1382071571 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null 940060004 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25535,16 +26271,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 401 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25559,7 +26295,7 @@ this.back 29 1 return -1382071571 +940060004 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25569,16 +26305,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 403 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25597,16 +26333,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 403 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25628,16 +26364,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 404 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25656,16 +26392,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 405 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25684,16 +26420,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 405 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null 787694442 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null 234698513 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25715,16 +26451,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 404 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25739,7 +26475,7 @@ this.back 29 1 return -787694442 +234698513 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25749,16 +26485,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 406 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25777,16 +26513,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 406 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25808,16 +26544,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 407 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25836,16 +26572,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 408 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25864,16 +26600,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 408 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1691286586 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null 1121172875 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25895,16 +26631,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 407 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25919,7 +26655,7 @@ this.back 29 1 return -1691286586 +1121172875 1 return.getClass().getName() "DataStructures.MyInteger" @@ -25929,16 +26665,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 409 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25957,16 +26693,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 409 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -25988,16 +26724,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 410 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -26016,16 +26752,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 411 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -26044,16 +26780,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 411 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1360099210 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null 649734728 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -26075,16 +26811,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 410 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger"] @@ -26099,7 +26835,7 @@ this.back 29 1 return -1360099210 +649734728 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26109,16 +26845,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 412 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger"] @@ -26137,16 +26873,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 412 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger"] @@ -26168,16 +26904,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 413 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger"] @@ -26196,16 +26932,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 414 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger"] @@ -26224,16 +26960,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 414 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1371483802] +[null null null null null null null null null null null null null null null null null null null null null null null null null null null null null 1595953398] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null null null null null null null null null null null null null null null "DataStructures.MyInteger"] @@ -26255,10 +26991,10 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 413 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26279,7 +27015,7 @@ this.back 29 1 return -1371483802 +1595953398 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26289,10 +27025,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 415 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26317,10 +27053,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 415 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26348,10 +27084,10 @@ DataStructures.QueueAr.dequeueAll():::EXIT116 this_invocation_nonce 324 this -1615263460 +905544614 1 this.theArray -1392190493 +2137589296 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26383,10 +27119,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 416 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26414,10 +27150,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 417 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26442,10 +27178,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 417 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26473,10 +27209,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 418 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26501,10 +27237,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 418 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26532,10 +27268,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 419 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26560,10 +27296,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 420 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26588,10 +27324,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 420 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26619,10 +27355,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 419 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26653,10 +27389,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 421 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26677,7 +27413,7 @@ this.back 4 1 x -205039926 +335471116 1 x.getClass().getName() "java.lang.Object" @@ -26687,10 +27423,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 422 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26715,10 +27451,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 422 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -26746,16 +27482,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 421 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26770,7 +27506,7 @@ this.back 0 1 x -205039926 +335471116 1 x.getClass().getName() "java.lang.Object" @@ -26780,16 +27516,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 423 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26808,16 +27544,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 423 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26839,16 +27575,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 424 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26867,16 +27603,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 424 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26898,16 +27634,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 425 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26926,16 +27662,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 426 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26954,16 +27690,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 426 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -26985,16 +27721,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 425 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -27009,7 +27745,7 @@ this.back 0 1 return -205039926 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -27019,16 +27755,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 427 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -27043,7 +27779,7 @@ this.back 0 1 x -1542266494 +1308927845 1 x.getClass().getName() "java.lang.Object" @@ -27053,16 +27789,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 428 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -27081,16 +27817,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 428 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 null null null null] +[335471116 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null] @@ -27112,16 +27848,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 427 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27136,7 +27872,7 @@ this.back 1 1 x -1542266494 +1308927845 1 x.getClass().getName() "java.lang.Object" @@ -27146,16 +27882,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 429 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27174,16 +27910,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 429 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27205,16 +27941,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 430 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27233,16 +27969,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 430 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27264,16 +28000,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 431 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27292,16 +28028,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 432 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27320,16 +28056,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 432 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27351,16 +28087,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 431 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27375,7 +28111,7 @@ this.back 1 1 return -205039926 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -27385,16 +28121,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 433 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27409,7 +28145,7 @@ this.back 1 1 x -745345368 +2017354584 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27419,16 +28155,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 434 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27447,16 +28183,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 434 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 null null null] +[335471116 1308927845 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -27478,16 +28214,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 433 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27502,7 +28238,7 @@ this.back 2 1 x -745345368 +2017354584 1 x.getClass().getName() "DataStructures.MyInteger" @@ -27512,16 +28248,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 435 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27540,16 +28276,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 435 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27571,16 +28307,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 436 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27599,16 +28335,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 436 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27630,16 +28366,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 437 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27658,16 +28394,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 438 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27686,16 +28422,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 438 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27717,16 +28453,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 437 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27741,7 +28477,7 @@ this.back 2 1 return -205039926 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -27751,16 +28487,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 439 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27779,16 +28515,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 440 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27807,16 +28543,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 440 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[205039926 1542266494 745345368 null null] +[335471116 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27838,16 +28574,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 439 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27862,7 +28598,7 @@ this.back 2 1 return -205039926 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -27872,16 +28608,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 441 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27900,16 +28636,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 441 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27931,16 +28667,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 442 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27959,16 +28695,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 442 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -27990,16 +28726,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 443 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28018,16 +28754,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 444 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28046,16 +28782,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 444 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28077,16 +28813,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 443 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28101,7 +28837,7 @@ this.back 2 1 return -1542266494 +1308927845 1 return.getClass().getName() "java.lang.Object" @@ -28111,16 +28847,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 445 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28135,7 +28871,7 @@ this.back 2 1 x -747487025 +391447681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28145,16 +28881,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 446 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28173,16 +28909,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 446 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 null null] +[null 1308927845 2017354584 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -28204,16 +28940,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 445 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28228,7 +28964,7 @@ this.back 3 1 x -747487025 +391447681 1 x.getClass().getName() "DataStructures.MyInteger" @@ -28238,16 +28974,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 447 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28266,16 +29002,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 447 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28297,16 +29033,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 448 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28325,16 +29061,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 448 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28356,16 +29092,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 449 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28384,16 +29120,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 450 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28412,16 +29148,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 450 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28443,16 +29179,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 449 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28467,7 +29203,7 @@ this.back 3 1 return -1542266494 +1308927845 1 return.getClass().getName() "java.lang.Object" @@ -28477,16 +29213,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 451 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28505,16 +29241,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 452 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28533,16 +29269,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 452 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1542266494 745345368 747487025 null] +[null 1308927845 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28564,16 +29300,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 451 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28588,7 +29324,7 @@ this.back 3 1 return -1542266494 +1308927845 1 return.getClass().getName() "java.lang.Object" @@ -28598,16 +29334,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 453 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28626,16 +29362,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 453 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28657,16 +29393,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 454 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28685,16 +29421,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 454 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28716,16 +29452,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 455 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28744,16 +29480,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 456 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28772,16 +29508,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 456 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28803,16 +29539,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 455 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28827,7 +29563,7 @@ this.back 3 1 return -745345368 +2017354584 1 return.getClass().getName() "DataStructures.MyInteger" @@ -28837,16 +29573,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 457 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28861,7 +29597,7 @@ this.back 3 1 x -235094225 +1935637221 1 x.getClass().getName() "java.lang.Object" @@ -28871,16 +29607,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 458 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28899,16 +29635,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 458 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 null] +[null null 2017354584 391447681 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -28930,16 +29666,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 457 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -28954,7 +29690,7 @@ this.back 4 1 x -235094225 +1935637221 1 x.getClass().getName() "java.lang.Object" @@ -28964,16 +29700,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 459 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -28992,16 +29728,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 459 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29023,16 +29759,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 460 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29051,16 +29787,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 460 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29082,16 +29818,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 461 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29110,16 +29846,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 462 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29138,16 +29874,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 462 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29169,16 +29905,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 461 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29193,7 +29929,7 @@ this.back 4 1 return -745345368 +2017354584 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29203,16 +29939,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 463 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29231,16 +29967,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 464 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29259,16 +29995,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 464 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 745345368 747487025 235094225] +[null null 2017354584 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object"] @@ -29290,16 +30026,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 463 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29314,7 +30050,7 @@ this.back 4 1 return -745345368 +2017354584 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29324,16 +30060,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 465 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29352,16 +30088,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 465 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29383,16 +30119,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 466 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29411,16 +30147,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 466 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29442,16 +30178,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 467 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29470,16 +30206,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 468 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29498,16 +30234,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 468 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29529,16 +30265,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 467 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29553,7 +30289,7 @@ this.back 4 1 return -747487025 +391447681 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29563,16 +30299,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 469 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29587,7 +30323,7 @@ this.back 4 1 x -2006212742 +403424356 1 x.getClass().getName() "java.lang.Object" @@ -29597,16 +30333,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 470 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29625,16 +30361,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 470 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 747487025 235094225] +[null null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29656,16 +30392,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 469 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29680,7 +30416,7 @@ this.back 0 1 x -2006212742 +403424356 1 x.getClass().getName() "java.lang.Object" @@ -29690,16 +30426,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 471 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29718,16 +30454,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 471 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29749,16 +30485,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 472 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29777,16 +30513,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 472 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29808,16 +30544,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 473 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29836,16 +30572,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 474 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29864,16 +30600,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 474 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29895,16 +30631,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 473 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29919,7 +30655,7 @@ this.back 0 1 return -747487025 +391447681 1 return.getClass().getName() "DataStructures.MyInteger" @@ -29929,16 +30665,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 475 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29957,16 +30693,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 476 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -29985,16 +30721,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 476 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null 747487025 235094225] +[403424356 null null 391447681 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "DataStructures.MyInteger" "java.lang.Object"] @@ -30016,16 +30752,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 475 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30040,7 +30776,7 @@ this.back 0 1 return -747487025 +391447681 1 return.getClass().getName() "DataStructures.MyInteger" @@ -30050,16 +30786,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 477 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30078,16 +30814,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 477 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30109,16 +30845,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 478 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30137,16 +30873,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 478 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30168,16 +30904,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 479 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30196,16 +30932,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 480 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30224,16 +30960,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 480 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30255,16 +30991,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 479 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30279,7 +31015,7 @@ this.back 0 1 return -235094225 +1935637221 1 return.getClass().getName() "java.lang.Object" @@ -30289,16 +31025,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 481 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30313,7 +31049,7 @@ this.back 0 1 x -776813247 +321142942 1 x.getClass().getName() "java.lang.Object" @@ -30323,16 +31059,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 482 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30351,16 +31087,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 482 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null 235094225] +[403424356 null null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "java.lang.Object"] @@ -30382,16 +31118,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 481 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30406,7 +31142,7 @@ this.back 1 1 x -776813247 +321142942 1 x.getClass().getName() "java.lang.Object" @@ -30416,16 +31152,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 483 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30444,16 +31180,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 483 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30475,16 +31211,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 484 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30503,16 +31239,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 484 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30534,16 +31270,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 485 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30562,16 +31298,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 486 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30590,16 +31326,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 486 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30621,16 +31357,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 485 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30645,7 +31381,7 @@ this.back 1 1 return -235094225 +1935637221 1 return.getClass().getName() "java.lang.Object" @@ -30655,16 +31391,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 487 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30683,16 +31419,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 488 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30711,16 +31447,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 488 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null 235094225] +[403424356 321142942 null null 1935637221] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "java.lang.Object"] @@ -30742,16 +31478,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 487 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30766,7 +31502,7 @@ this.back 1 1 return -235094225 +1935637221 1 return.getClass().getName() "java.lang.Object" @@ -30776,16 +31512,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 489 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30804,16 +31540,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 489 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30835,16 +31571,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 490 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30863,16 +31599,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 490 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30894,16 +31630,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 491 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30922,16 +31658,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 492 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30950,16 +31686,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 492 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -30981,16 +31717,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 491 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -31005,7 +31741,7 @@ this.back 1 1 return -2006212742 +403424356 1 return.getClass().getName() "java.lang.Object" @@ -31015,16 +31751,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 493 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -31039,7 +31775,7 @@ this.back 1 1 x -1347152216 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31049,16 +31785,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 494 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -31077,16 +31813,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 494 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null] +[403424356 321142942 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -31108,16 +31844,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 493 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31132,7 +31868,7 @@ this.back 2 1 x -1347152216 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" @@ -31142,16 +31878,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 495 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31170,16 +31906,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 495 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31201,16 +31937,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 496 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31229,16 +31965,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 496 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31260,16 +31996,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 497 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31288,16 +32024,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 498 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31316,16 +32052,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 498 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31347,16 +32083,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 497 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31371,7 +32107,7 @@ this.back 2 1 return -2006212742 +403424356 1 return.getClass().getName() "java.lang.Object" @@ -31381,16 +32117,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 499 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31409,16 +32145,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 500 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31437,16 +32173,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 500 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null] +[403424356 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31468,16 +32204,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 499 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31492,7 +32228,7 @@ this.back 2 1 return -2006212742 +403424356 1 return.getClass().getName() "java.lang.Object" @@ -31502,16 +32238,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 501 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31530,16 +32266,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 501 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31561,16 +32297,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 502 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31589,16 +32325,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 502 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31620,16 +32356,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 503 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31648,16 +32384,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 504 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31676,16 +32412,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 504 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31707,16 +32443,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 503 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31731,7 +32467,7 @@ this.back 2 1 return -776813247 +321142942 1 return.getClass().getName() "java.lang.Object" @@ -31741,16 +32477,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 505 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31765,7 +32501,7 @@ this.back 2 1 x -667203991 +610984013 1 x.getClass().getName() "java.lang.Object" @@ -31775,16 +32511,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 506 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31803,16 +32539,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 506 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 null null] +[null 321142942 745160567 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -31834,16 +32570,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 505 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -31858,7 +32594,7 @@ this.back 3 1 x -667203991 +610984013 1 x.getClass().getName() "java.lang.Object" @@ -31868,16 +32604,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 507 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -31896,16 +32632,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 507 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -31927,16 +32663,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 508 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -31955,16 +32691,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 508 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -31986,16 +32722,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 509 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32014,16 +32750,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 510 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32042,16 +32778,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 510 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32073,16 +32809,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 509 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32097,7 +32833,7 @@ this.back 3 1 return -776813247 +321142942 1 return.getClass().getName() "java.lang.Object" @@ -32107,16 +32843,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 511 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32135,16 +32871,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 512 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32163,16 +32899,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 512 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 776813247 1347152216 667203991 null] +[null 321142942 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -32194,16 +32930,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 511 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32218,7 +32954,7 @@ this.back 3 1 return -776813247 +321142942 1 return.getClass().getName() "java.lang.Object" @@ -32228,16 +32964,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 513 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32256,16 +32992,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 513 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32287,16 +33023,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 514 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32315,16 +33051,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 514 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32346,16 +33082,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 515 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32374,16 +33110,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 516 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32402,16 +33138,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 516 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32433,16 +33169,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 515 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32457,7 +33193,7 @@ this.back 3 1 return -1347152216 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32467,16 +33203,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 517 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32491,7 +33227,7 @@ this.back 3 1 x -1685355750 +1644443712 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32501,16 +33237,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 518 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32529,16 +33265,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 518 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 null] +[null null 745160567 610984013 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -32560,16 +33296,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 517 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32584,7 +33320,7 @@ this.back 4 1 x -1685355750 +1644443712 1 x.getClass().getName() "DataStructures.MyInteger" @@ -32594,16 +33330,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 519 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32622,16 +33358,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 519 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32653,16 +33389,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 520 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32681,16 +33417,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 520 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32712,16 +33448,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 521 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32740,16 +33476,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 522 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32768,16 +33504,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 522 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32799,16 +33535,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 521 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32823,7 +33559,7 @@ this.back 4 1 return -1347152216 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32833,16 +33569,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 523 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32861,16 +33597,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 524 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32889,16 +33625,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 524 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1347152216 667203991 1685355750] +[null null 745160567 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -32920,16 +33656,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 523 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -32944,7 +33680,7 @@ this.back 4 1 return -1347152216 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -32954,16 +33690,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 525 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -32982,16 +33718,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 525 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33013,16 +33749,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 526 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33041,16 +33777,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 526 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33072,16 +33808,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 527 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33100,16 +33836,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 528 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33128,16 +33864,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 528 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33159,16 +33895,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 527 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33183,7 +33919,7 @@ this.back 4 1 return -667203991 +610984013 1 return.getClass().getName() "java.lang.Object" @@ -33193,16 +33929,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 529 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33217,7 +33953,7 @@ this.back 4 1 x -464786320 +1393931310 1 x.getClass().getName() "java.lang.Object" @@ -33227,16 +33963,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 530 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33255,16 +33991,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 530 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 667203991 1685355750] +[null null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33286,16 +34022,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 529 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33310,7 +34046,7 @@ this.back 0 1 x -464786320 +1393931310 1 x.getClass().getName() "java.lang.Object" @@ -33320,16 +34056,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 531 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33348,16 +34084,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 531 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33379,16 +34115,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 532 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33407,16 +34143,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 532 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33438,16 +34174,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 533 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33466,16 +34202,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 534 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33494,16 +34230,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 534 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33525,16 +34261,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 533 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33549,7 +34285,7 @@ this.back 0 1 return -667203991 +610984013 1 return.getClass().getName() "java.lang.Object" @@ -33559,16 +34295,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 535 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33587,16 +34323,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 536 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33615,16 +34351,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 536 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null 667203991 1685355750] +[1393931310 null null 610984013 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -33646,16 +34382,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 535 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33670,7 +34406,7 @@ this.back 0 1 return -667203991 +610984013 1 return.getClass().getName() "java.lang.Object" @@ -33680,16 +34416,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 537 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33708,16 +34444,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 537 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33739,16 +34475,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 538 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33767,16 +34503,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 538 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33798,16 +34534,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 539 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33826,16 +34562,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 540 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33854,16 +34590,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 540 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33885,16 +34621,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 539 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33909,7 +34645,7 @@ this.back 0 1 return -1685355750 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -33919,16 +34655,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 541 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33943,7 +34679,7 @@ this.back 0 1 x -1265656101 +788117692 1 x.getClass().getName() "java.lang.Object" @@ -33953,16 +34689,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 542 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -33981,16 +34717,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 542 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 null null null 1685355750] +[1393931310 null null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null "DataStructures.MyInteger"] @@ -34012,16 +34748,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 541 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34036,7 +34772,7 @@ this.back 1 1 x -1265656101 +788117692 1 x.getClass().getName() "java.lang.Object" @@ -34046,16 +34782,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 543 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34074,16 +34810,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 543 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34105,16 +34841,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 544 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34133,16 +34869,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 544 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34164,16 +34900,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 545 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34192,16 +34928,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 546 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34220,16 +34956,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 546 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34251,16 +34987,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 545 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34275,7 +35011,7 @@ this.back 1 1 return -1685355750 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34285,16 +35021,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 547 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34313,16 +35049,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 548 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34341,16 +35077,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 548 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null 1685355750] +[1393931310 788117692 null null 1644443712] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -34372,16 +35108,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 547 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34396,7 +35132,7 @@ this.back 1 1 return -1685355750 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -34406,16 +35142,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 549 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34434,16 +35170,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 549 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34465,16 +35201,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 550 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34493,16 +35229,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 550 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34524,16 +35260,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 551 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34552,16 +35288,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 552 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34580,16 +35316,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 552 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34611,16 +35347,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 551 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34635,7 +35371,7 @@ this.back 1 1 return -464786320 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -34645,16 +35381,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 553 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34669,7 +35405,7 @@ this.back 1 1 x -1056565972 +1566723494 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34679,16 +35415,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 554 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34707,16 +35443,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 554 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 null null null] +[1393931310 788117692 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null] @@ -34738,16 +35474,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 553 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34762,7 +35498,7 @@ this.back 2 1 x -1056565972 +1566723494 1 x.getClass().getName() "DataStructures.MyInteger" @@ -34772,16 +35508,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 555 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34800,16 +35536,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 555 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34831,16 +35567,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 556 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34859,16 +35595,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 556 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34890,16 +35626,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 557 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34918,16 +35654,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 558 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34946,16 +35682,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 558 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -34977,16 +35713,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 557 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35001,7 +35737,7 @@ this.back 2 1 return -464786320 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -35011,16 +35747,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 559 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35039,16 +35775,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 560 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35067,16 +35803,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 560 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[464786320 1265656101 1056565972 null null] +[1393931310 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35098,16 +35834,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 559 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35122,7 +35858,7 @@ this.back 2 1 return -464786320 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -35132,16 +35868,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 561 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35160,16 +35896,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 561 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35191,16 +35927,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 562 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35219,16 +35955,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 562 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35250,16 +35986,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 563 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35278,16 +36014,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 564 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35306,16 +36042,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 564 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35337,16 +36073,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 563 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35361,7 +36097,7 @@ this.back 2 1 return -1265656101 +788117692 1 return.getClass().getName() "java.lang.Object" @@ -35371,16 +36107,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 565 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35395,7 +36131,7 @@ this.back 2 1 x -162014361 +510113906 1 x.getClass().getName() "java.lang.Object" @@ -35405,16 +36141,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 566 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35433,16 +36169,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 566 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 null null] +[null 788117692 1566723494 null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" null null] @@ -35464,16 +36200,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 565 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35488,7 +36224,7 @@ this.back 3 1 x -162014361 +510113906 1 x.getClass().getName() "java.lang.Object" @@ -35498,16 +36234,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 567 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35526,16 +36262,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 567 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35557,16 +36293,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 568 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35585,16 +36321,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 568 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35616,16 +36352,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 569 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35644,16 +36380,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 570 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35672,16 +36408,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 570 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35703,16 +36439,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 569 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35727,7 +36463,7 @@ this.back 3 1 return -1265656101 +788117692 1 return.getClass().getName() "java.lang.Object" @@ -35737,16 +36473,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 571 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35765,16 +36501,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 572 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35793,16 +36529,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 572 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1265656101 1056565972 162014361 null] +[null 788117692 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -35824,16 +36560,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 571 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -35848,7 +36584,7 @@ this.back 3 1 return -1265656101 +788117692 1 return.getClass().getName() "java.lang.Object" @@ -35858,16 +36594,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 573 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -35886,16 +36622,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 573 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -35917,16 +36653,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 574 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -35945,16 +36681,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 574 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -35976,16 +36712,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 575 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36004,16 +36740,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 576 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36032,16 +36768,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 576 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36063,16 +36799,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 575 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36087,7 +36823,7 @@ this.back 3 1 return -1056565972 +1566723494 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36097,16 +36833,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 577 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36121,7 +36857,7 @@ this.back 3 1 x -2113584578 +1622006612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36131,16 +36867,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 578 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36159,16 +36895,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 578 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 null] +[null null 1566723494 510113906 null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" null] @@ -36190,16 +36926,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 577 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36214,7 +36950,7 @@ this.back 4 1 x -2113584578 +1622006612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36224,16 +36960,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 579 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36252,16 +36988,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 579 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36283,16 +37019,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 580 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36311,16 +37047,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 580 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36342,16 +37078,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 581 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36370,16 +37106,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 582 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36398,16 +37134,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 582 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36429,16 +37165,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 581 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36453,7 +37189,7 @@ this.back 4 1 return -1056565972 +1566723494 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36463,16 +37199,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 583 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36491,16 +37227,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 584 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36519,16 +37255,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 584 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1056565972 162014361 2113584578] +[null null 1566723494 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -36550,16 +37286,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 583 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36574,7 +37310,7 @@ this.back 4 1 return -1056565972 +1566723494 1 return.getClass().getName() "DataStructures.MyInteger" @@ -36584,16 +37320,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 585 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36612,16 +37348,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 585 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36643,16 +37379,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 586 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36671,16 +37407,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 586 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36702,16 +37438,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 587 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36730,16 +37466,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 588 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36758,16 +37494,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 588 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36789,16 +37525,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 587 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36813,7 +37549,7 @@ this.back 4 1 return -162014361 +510113906 1 return.getClass().getName() "java.lang.Object" @@ -36823,16 +37559,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 589 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36847,7 +37583,7 @@ this.back 4 1 x -1488997419 +66233253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36857,16 +37593,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 590 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36885,16 +37621,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 590 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 162014361 2113584578] +[null null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36916,16 +37652,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 589 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36940,7 +37676,7 @@ this.back 0 1 x -1488997419 +66233253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -36950,16 +37686,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 591 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -36978,16 +37714,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 591 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37009,16 +37745,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 592 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37037,16 +37773,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 592 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37068,16 +37804,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 593 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37096,16 +37832,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 594 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37124,16 +37860,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 594 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37155,16 +37891,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 593 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37179,7 +37915,7 @@ this.back 0 1 return -162014361 +510113906 1 return.getClass().getName() "java.lang.Object" @@ -37189,16 +37925,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 595 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37217,16 +37953,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 596 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37245,16 +37981,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 596 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null 162014361 2113584578] +[66233253 null null 510113906 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null "java.lang.Object" "DataStructures.MyInteger"] @@ -37276,16 +38012,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 595 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37300,7 +38036,7 @@ this.back 0 1 return -162014361 +510113906 1 return.getClass().getName() "java.lang.Object" @@ -37310,16 +38046,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 597 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37338,16 +38074,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 597 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37369,16 +38105,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 598 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37397,16 +38133,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 598 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37428,16 +38164,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 599 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37456,16 +38192,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 600 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37484,16 +38220,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 600 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37515,16 +38251,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 599 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37539,7 +38275,7 @@ this.back 0 1 return -2113584578 +1622006612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37549,16 +38285,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 601 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37573,7 +38309,7 @@ this.back 0 1 x -952682642 +1286783232 1 x.getClass().getName() "java.lang.Object" @@ -37583,16 +38319,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 602 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37611,16 +38347,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 602 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 null null null 2113584578] +[66233253 null null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null "DataStructures.MyInteger"] @@ -37642,16 +38378,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 601 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37666,7 +38402,7 @@ this.back 1 1 x -952682642 +1286783232 1 x.getClass().getName() "java.lang.Object" @@ -37676,16 +38412,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 603 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37704,16 +38440,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 603 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37735,16 +38471,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 604 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37763,16 +38499,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 604 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37794,16 +38530,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 605 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37822,16 +38558,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 606 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37850,16 +38586,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 606 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37881,16 +38617,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 605 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37905,7 +38641,7 @@ this.back 1 1 return -2113584578 +1622006612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -37915,16 +38651,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 607 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37943,16 +38679,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 608 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -37971,16 +38707,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 608 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null 2113584578] +[66233253 1286783232 null null 1622006612] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null "DataStructures.MyInteger"] @@ -38002,16 +38738,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 607 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38026,7 +38762,7 @@ this.back 1 1 return -2113584578 +1622006612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38036,16 +38772,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 609 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38064,16 +38800,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 609 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38095,16 +38831,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 610 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38123,16 +38859,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 610 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38154,16 +38890,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 611 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38182,16 +38918,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 612 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38210,16 +38946,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 612 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38241,16 +38977,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 611 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38265,7 +39001,7 @@ this.back 1 1 return -1488997419 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38275,16 +39011,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 613 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38303,16 +39039,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 613 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38334,16 +39070,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 614 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38362,16 +39098,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 615 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38390,16 +39126,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 615 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1488997419 952682642 null null null] +[66233253 1286783232 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "java.lang.Object" null null null] @@ -38421,16 +39157,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 614 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38445,7 +39181,7 @@ this.back 1 1 return -1488997419 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -38455,16 +39191,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 616 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38483,16 +39219,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 616 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38514,16 +39250,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 617 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38542,16 +39278,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 617 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38573,16 +39309,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 618 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38601,16 +39337,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 619 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38629,16 +39365,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 619 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38660,16 +39396,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 618 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38684,7 +39420,7 @@ this.back 1 1 return -952682642 +1286783232 1 return.getClass().getName() "java.lang.Object" @@ -38694,16 +39430,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 620 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38722,16 +39458,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 620 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38753,16 +39489,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 621 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38781,16 +39517,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 622 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38809,16 +39545,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 622 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 952682642 null null null] +[null 1286783232 null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" null null null] @@ -38840,10 +39576,10 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 621 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -38864,7 +39600,7 @@ this.back 1 1 return -952682642 +1286783232 1 return.getClass().getName() "java.lang.Object" @@ -38874,10 +39610,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 623 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -38902,10 +39638,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 623 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -38933,10 +39669,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 624 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -38961,10 +39697,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 624 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -38992,10 +39728,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 625 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39020,10 +39756,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 626 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39048,10 +39784,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 626 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39079,10 +39815,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 625 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39113,10 +39849,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 627 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39141,10 +39877,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 627 this -1586276963 +998351292 1 this.theArray -1694923283 +1684106402 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39179,10 +39915,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 628 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39210,10 +39946,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 629 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39238,10 +39974,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 629 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39269,10 +40005,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 630 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39297,10 +40033,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 630 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39328,10 +40064,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 631 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39356,10 +40092,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 632 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39384,10 +40120,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 632 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39415,10 +40151,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 631 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39449,10 +40185,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 633 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39473,7 +40209,7 @@ this.back 9 1 x -1413098988 +2008362258 1 x.getClass().getName() "java.lang.Object" @@ -39483,10 +40219,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 634 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39511,10 +40247,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 634 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -39542,16 +40278,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 633 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39566,7 +40302,7 @@ this.back 0 1 x -1413098988 +2008362258 1 x.getClass().getName() "java.lang.Object" @@ -39576,16 +40312,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 635 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39604,16 +40340,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 635 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39635,16 +40371,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 636 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39663,16 +40399,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 636 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39694,16 +40430,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 637 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39722,16 +40458,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 638 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39750,16 +40486,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 638 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39781,16 +40517,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 637 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39805,7 +40541,7 @@ this.back 0 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -39815,16 +40551,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 639 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39839,7 +40575,7 @@ this.back 0 1 x -933039143 +760563749 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39849,16 +40585,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 640 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39877,16 +40613,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 640 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 null null null null null null null null null] +[2008362258 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -39908,16 +40644,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 639 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -39932,7 +40668,7 @@ this.back 1 1 x -933039143 +760563749 1 x.getClass().getName() "DataStructures.MyInteger" @@ -39942,16 +40678,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 641 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -39970,16 +40706,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 641 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40001,16 +40737,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 642 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40029,16 +40765,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 642 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40060,16 +40796,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 643 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40088,16 +40824,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 644 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40116,16 +40852,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 644 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40147,16 +40883,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 643 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40171,7 +40907,7 @@ this.back 1 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -40181,16 +40917,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 645 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40205,7 +40941,7 @@ this.back 1 1 x -663286007 +1753447031 1 x.getClass().getName() "java.lang.Object" @@ -40215,16 +40951,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 646 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40243,16 +40979,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 646 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 null null null null null null null null] +[2008362258 760563749 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null] @@ -40274,16 +41010,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 645 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40298,7 +41034,7 @@ this.back 2 1 x -663286007 +1753447031 1 x.getClass().getName() "java.lang.Object" @@ -40308,16 +41044,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 647 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40336,16 +41072,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 647 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40367,16 +41103,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 648 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40395,16 +41131,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 648 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40426,16 +41162,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 649 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40454,16 +41190,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 650 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40482,16 +41218,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 650 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40513,16 +41249,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 649 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40537,7 +41273,7 @@ this.back 2 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -40547,16 +41283,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 651 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40571,7 +41307,7 @@ this.back 2 1 x -260308072 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40581,16 +41317,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 652 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40609,16 +41345,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 652 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 null null null null null null null] +[2008362258 760563749 1753447031 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -40640,16 +41376,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 651 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40664,7 +41400,7 @@ this.back 3 1 x -260308072 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40674,16 +41410,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 653 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40702,16 +41438,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 653 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40733,16 +41469,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 654 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40761,16 +41497,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 654 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40792,16 +41528,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 655 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40820,16 +41556,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 656 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40848,16 +41584,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 656 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40879,16 +41615,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 655 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40903,7 +41639,7 @@ this.back 3 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -40913,16 +41649,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 657 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40937,7 +41673,7 @@ this.back 3 1 x -573577165 +895947612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -40947,16 +41683,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 658 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -40975,16 +41711,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 658 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 null null null null null null] +[2008362258 760563749 1753447031 1810132623 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -41006,16 +41742,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 657 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41030,7 +41766,7 @@ this.back 4 1 x -573577165 +895947612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -41040,16 +41776,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 659 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41068,16 +41804,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 659 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41099,16 +41835,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 660 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41127,16 +41863,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 660 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41158,16 +41894,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 661 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41186,16 +41922,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 662 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41214,16 +41950,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 662 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41245,16 +41981,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 661 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41269,7 +42005,7 @@ this.back 4 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -41279,16 +42015,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 663 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41303,7 +42039,7 @@ this.back 4 1 x -57320772 +846492085 1 x.getClass().getName() "java.lang.Object" @@ -41313,16 +42049,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 664 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41341,16 +42077,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 664 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 null null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -41372,16 +42108,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 663 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41396,7 +42132,7 @@ this.back 5 1 x -57320772 +846492085 1 x.getClass().getName() "java.lang.Object" @@ -41406,16 +42142,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 665 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41434,16 +42170,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 665 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41465,16 +42201,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 666 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41493,16 +42229,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 666 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41524,16 +42260,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 667 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41552,16 +42288,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 668 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41580,16 +42316,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 668 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41611,16 +42347,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 667 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41635,7 +42371,7 @@ this.back 5 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -41645,16 +42381,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 669 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41673,16 +42409,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 670 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41701,16 +42437,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 670 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1413098988 933039143 663286007 260308072 573577165 57320772 null null null null] +[2008362258 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41732,16 +42468,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 669 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41756,7 +42492,7 @@ this.back 5 1 return -1413098988 +2008362258 1 return.getClass().getName() "java.lang.Object" @@ -41766,16 +42502,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 671 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41794,16 +42530,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 671 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41825,16 +42561,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 672 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41853,16 +42589,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 672 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41884,16 +42620,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 673 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41912,16 +42648,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 674 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41940,16 +42676,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 674 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41971,16 +42707,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 673 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -41995,7 +42731,7 @@ this.back 5 1 return -933039143 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42005,16 +42741,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 675 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -42029,7 +42765,7 @@ this.back 5 1 x -1317541148 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42039,16 +42775,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 676 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -42067,16 +42803,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 676 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 null null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null] @@ -42098,16 +42834,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 675 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42122,7 +42858,7 @@ this.back 6 1 x -1317541148 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" @@ -42132,16 +42868,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 677 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42160,16 +42896,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 677 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42191,16 +42927,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 678 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42219,16 +42955,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 678 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42250,16 +42986,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 679 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42278,16 +43014,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 680 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42306,16 +43042,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 680 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42337,16 +43073,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 679 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42361,7 +43097,7 @@ this.back 6 1 return -933039143 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42371,16 +43107,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 681 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42399,16 +43135,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 682 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42427,16 +43163,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 682 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 933039143 663286007 260308072 573577165 57320772 1317541148 null null null] +[null 760563749 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42458,16 +43194,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 681 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42482,7 +43218,7 @@ this.back 6 1 return -933039143 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -42492,16 +43228,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 683 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42520,16 +43256,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 683 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42551,16 +43287,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 684 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42579,16 +43315,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 684 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42610,16 +43346,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 685 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42638,16 +43374,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 686 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42666,16 +43402,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 686 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42697,16 +43433,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 685 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42721,7 +43457,7 @@ this.back 6 1 return -663286007 +1753447031 1 return.getClass().getName() "java.lang.Object" @@ -42731,16 +43467,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 687 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42755,7 +43491,7 @@ this.back 6 1 x -1210190219 +152005629 1 x.getClass().getName() "java.lang.Object" @@ -42765,16 +43501,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 688 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42793,16 +43529,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 688 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 null null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -42824,16 +43560,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 687 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -42848,7 +43584,7 @@ this.back 7 1 x -1210190219 +152005629 1 x.getClass().getName() "java.lang.Object" @@ -42858,16 +43594,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 689 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -42886,16 +43622,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 689 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -42917,16 +43653,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 690 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -42945,16 +43681,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 690 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -42976,16 +43712,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 691 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43004,16 +43740,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 692 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43032,16 +43768,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 692 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43063,16 +43799,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 691 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43087,7 +43823,7 @@ this.back 7 1 return -663286007 +1753447031 1 return.getClass().getName() "java.lang.Object" @@ -43097,16 +43833,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 693 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43125,16 +43861,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 694 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43153,16 +43889,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 694 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 663286007 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null 1753447031 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43184,16 +43920,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 693 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43208,7 +43944,7 @@ this.back 7 1 return -663286007 +1753447031 1 return.getClass().getName() "java.lang.Object" @@ -43218,16 +43954,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 695 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43246,16 +43982,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 695 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43277,16 +44013,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 696 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43305,16 +44041,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 696 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43336,16 +44072,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 697 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43364,16 +44100,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 698 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43392,16 +44128,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 698 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43423,16 +44159,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 697 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43447,7 +44183,7 @@ this.back 7 1 return -260308072 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43457,16 +44193,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 699 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43481,7 +44217,7 @@ this.back 7 1 x -849389996 +75457651 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43491,16 +44227,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 700 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43519,16 +44255,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 700 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 null null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -43550,16 +44286,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 699 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43574,7 +44310,7 @@ this.back 8 1 x -849389996 +75457651 1 x.getClass().getName() "DataStructures.MyInteger" @@ -43584,16 +44320,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 701 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43612,16 +44348,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 701 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43643,16 +44379,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 702 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43671,16 +44407,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 702 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43702,16 +44438,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 703 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43730,16 +44466,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 704 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43758,16 +44494,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 704 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43789,16 +44525,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 703 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43813,7 +44549,7 @@ this.back 8 1 return -260308072 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43823,16 +44559,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 705 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43851,16 +44587,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 706 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43879,16 +44615,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 706 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 260308072 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null 1810132623 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43910,16 +44646,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 705 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43934,7 +44670,7 @@ this.back 8 1 return -260308072 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -43944,16 +44680,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 707 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -43972,16 +44708,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 707 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44003,16 +44739,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 708 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44031,16 +44767,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 708 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44062,16 +44798,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 709 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44090,16 +44826,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 710 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44118,16 +44854,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 710 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44149,16 +44885,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 709 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44173,7 +44909,7 @@ this.back 8 1 return -573577165 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44183,16 +44919,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 711 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44207,7 +44943,7 @@ this.back 8 1 x -1373861163 +362239120 1 x.getClass().getName() "java.lang.Object" @@ -44217,16 +44953,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 712 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44245,16 +44981,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 712 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 null] +[null null null null 895947612 846492085 1096283470 152005629 75457651 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null] @@ -44276,16 +45012,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 711 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44300,7 +45036,7 @@ this.back 9 1 x -1373861163 +362239120 1 x.getClass().getName() "java.lang.Object" @@ -44310,16 +45046,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 713 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44338,16 +45074,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 713 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44369,16 +45105,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 714 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44397,16 +45133,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 714 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44428,16 +45164,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 715 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44456,16 +45192,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 716 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44484,16 +45220,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 716 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44515,16 +45251,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 715 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44539,7 +45275,7 @@ this.back 9 1 return -573577165 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44549,16 +45285,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 717 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44577,16 +45313,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 718 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44605,16 +45341,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 718 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 573577165 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null 895947612 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44636,16 +45372,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 717 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44660,7 +45396,7 @@ this.back 9 1 return -573577165 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -44670,16 +45406,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 719 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44698,16 +45434,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 719 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44729,16 +45465,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 720 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44757,16 +45493,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 720 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44788,16 +45524,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 721 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44816,16 +45552,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 722 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44844,16 +45580,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 722 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44875,16 +45611,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 721 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44899,7 +45635,7 @@ this.back 9 1 return -57320772 +846492085 1 return.getClass().getName() "java.lang.Object" @@ -44909,16 +45645,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 723 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44933,7 +45669,7 @@ this.back 9 1 x -740393997 +1796488937 1 x.getClass().getName() "DataStructures.MyInteger" @@ -44943,16 +45679,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 724 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -44971,16 +45707,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 724 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[null null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() [null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45002,16 +45738,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 723 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45026,7 +45762,7 @@ this.back 0 1 x -740393997 +1796488937 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45036,16 +45772,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 725 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45064,16 +45800,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 725 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45095,16 +45831,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 726 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45123,16 +45859,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 726 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45154,16 +45890,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 727 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45182,16 +45918,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 728 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45210,16 +45946,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 728 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45241,16 +45977,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 727 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45265,7 +46001,7 @@ this.back 0 1 return -57320772 +846492085 1 return.getClass().getName() "java.lang.Object" @@ -45275,16 +46011,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 729 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45303,16 +46039,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 730 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45331,16 +46067,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 730 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null 57320772 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null 846492085 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45362,16 +46098,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 729 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45386,7 +46122,7 @@ this.back 0 1 return -57320772 +846492085 1 return.getClass().getName() "java.lang.Object" @@ -45396,16 +46132,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 731 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45424,16 +46160,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 731 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45455,16 +46191,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 732 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45483,16 +46219,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 732 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45514,16 +46250,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 733 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45542,16 +46278,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 734 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45570,16 +46306,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 734 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45601,16 +46337,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 733 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45625,7 +46361,7 @@ this.back 0 1 return -1317541148 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -45635,16 +46371,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 735 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45659,7 +46395,7 @@ this.back 0 1 x -1281656861 +423031029 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45669,16 +46405,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 736 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45697,16 +46433,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 736 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 null null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 null null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45728,16 +46464,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 735 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45752,7 +46488,7 @@ this.back 1 1 x -1281656861 +423031029 1 x.getClass().getName() "DataStructures.MyInteger" @@ -45762,16 +46498,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 737 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45790,16 +46526,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 737 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45821,16 +46557,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 738 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45849,16 +46585,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 738 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45880,16 +46616,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 739 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45908,16 +46644,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 740 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45936,16 +46672,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 740 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45967,16 +46703,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 739 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -45991,7 +46727,7 @@ this.back 1 1 return -1317541148 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46001,16 +46737,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 741 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46029,16 +46765,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 742 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46057,16 +46793,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 742 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null 1317541148 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null 1096283470 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46088,16 +46824,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 741 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46112,7 +46848,7 @@ this.back 1 1 return -1317541148 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -46122,16 +46858,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 743 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46150,16 +46886,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 743 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46181,16 +46917,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 744 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46209,16 +46945,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 744 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46240,16 +46976,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 745 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46268,16 +47004,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 746 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46296,16 +47032,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 746 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46327,16 +47063,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 745 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46351,7 +47087,7 @@ this.back 1 1 return -1210190219 +152005629 1 return.getClass().getName() "java.lang.Object" @@ -46361,16 +47097,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 747 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46385,7 +47121,7 @@ this.back 1 1 x -1545883417 +1712669532 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46395,16 +47131,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 748 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46423,16 +47159,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 748 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 null null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 null null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46454,16 +47190,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 747 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46478,7 +47214,7 @@ this.back 2 1 x -1545883417 +1712669532 1 x.getClass().getName() "DataStructures.MyInteger" @@ -46488,16 +47224,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 749 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46516,16 +47252,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 749 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46547,16 +47283,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 750 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46575,16 +47311,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 750 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46606,16 +47342,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 751 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46634,16 +47370,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 752 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46662,16 +47398,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 752 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46693,16 +47429,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 751 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46717,7 +47453,7 @@ this.back 2 1 return -1210190219 +152005629 1 return.getClass().getName() "java.lang.Object" @@ -46727,16 +47463,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 753 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46755,16 +47491,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 754 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46783,16 +47519,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 754 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null 1210190219 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null 152005629 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object"] @@ -46814,16 +47550,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 753 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -46838,7 +47574,7 @@ this.back 2 1 return -1210190219 +152005629 1 return.getClass().getName() "java.lang.Object" @@ -46848,16 +47584,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 755 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -46876,16 +47612,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 755 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -46907,16 +47643,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 756 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -46935,16 +47671,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 756 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -46966,16 +47702,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 757 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -46994,16 +47730,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 758 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47022,16 +47758,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 758 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47053,16 +47789,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 757 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47077,7 +47813,7 @@ this.back 2 1 return -849389996 +75457651 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47087,16 +47823,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 759 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47111,7 +47847,7 @@ this.back 2 1 x -1405428113 +1225373914 1 x.getClass().getName() "java.lang.Object" @@ -47121,16 +47857,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 760 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47149,16 +47885,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 760 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 null null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 null null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47180,16 +47916,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 759 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47204,7 +47940,7 @@ this.back 3 1 x -1405428113 +1225373914 1 x.getClass().getName() "java.lang.Object" @@ -47214,16 +47950,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 761 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47242,16 +47978,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 761 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47273,16 +48009,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 762 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47301,16 +48037,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 762 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47332,16 +48068,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 763 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47360,16 +48096,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 764 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47388,16 +48124,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 764 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47419,16 +48155,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 763 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47443,7 +48179,7 @@ this.back 3 1 return -849389996 +75457651 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47453,16 +48189,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 765 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47481,16 +48217,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 766 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47509,16 +48245,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 766 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null 849389996 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null 75457651 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object"] @@ -47540,16 +48276,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 765 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47564,7 +48300,7 @@ this.back 3 1 return -849389996 +75457651 1 return.getClass().getName() "DataStructures.MyInteger" @@ -47574,16 +48310,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 767 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47602,16 +48338,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 767 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47633,16 +48369,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 768 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47661,16 +48397,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 768 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47692,16 +48428,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 769 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47720,16 +48456,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 770 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47748,16 +48484,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 770 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47779,16 +48515,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 769 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47803,7 +48539,7 @@ this.back 3 1 return -1373861163 +362239120 1 return.getClass().getName() "java.lang.Object" @@ -47813,16 +48549,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 771 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47837,7 +48573,7 @@ this.back 3 1 x -857661838 +60830820 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47847,16 +48583,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 772 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47875,16 +48611,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 772 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 null null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 null null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -47906,16 +48642,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 771 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -47930,7 +48666,7 @@ this.back 4 1 x -857661838 +60830820 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47940,16 +48676,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 773 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -47968,16 +48704,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 773 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -47999,16 +48735,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 774 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48027,16 +48763,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 774 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48058,16 +48794,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 775 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48086,16 +48822,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 776 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48114,16 +48850,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 776 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48145,16 +48881,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 775 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48169,7 +48905,7 @@ this.back 4 1 return -1373861163 +362239120 1 return.getClass().getName() "java.lang.Object" @@ -48179,16 +48915,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 777 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48207,16 +48943,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 778 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48235,16 +48971,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 778 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null 1373861163] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null 362239120] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null "java.lang.Object"] @@ -48266,16 +49002,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 777 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48290,7 +49026,7 @@ this.back 4 1 return -1373861163 +362239120 1 return.getClass().getName() "java.lang.Object" @@ -48300,16 +49036,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 779 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48328,16 +49064,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 779 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48359,16 +49095,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 780 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48387,16 +49123,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 780 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48418,16 +49154,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 781 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48446,16 +49182,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 782 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48474,16 +49210,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 782 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48505,16 +49241,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 781 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48529,7 +49265,7 @@ this.back 4 1 return -740393997 +1796488937 1 return.getClass().getName() "DataStructures.MyInteger" @@ -48539,16 +49275,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 783 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48563,7 +49299,7 @@ this.back 4 1 x -812272602 +759156157 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48573,16 +49309,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 784 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48601,16 +49337,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 784 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 null null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -48632,16 +49368,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 783 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48656,7 +49392,7 @@ this.back 5 1 x -812272602 +759156157 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48666,16 +49402,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 785 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48694,16 +49430,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 785 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48725,16 +49461,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 786 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48753,16 +49489,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 786 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48784,16 +49520,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 787 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48812,16 +49548,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 788 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48840,16 +49576,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 788 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48871,16 +49607,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 787 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48895,7 +49631,7 @@ this.back 5 1 return -740393997 +1796488937 1 return.getClass().getName() "DataStructures.MyInteger" @@ -48905,16 +49641,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 789 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48933,16 +49669,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 790 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48961,16 +49697,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 790 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[740393997 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[1796488937 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -48992,16 +49728,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 789 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49016,7 +49752,7 @@ this.back 5 1 return -740393997 +1796488937 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49026,16 +49762,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 791 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49054,16 +49790,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 791 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49085,16 +49821,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 792 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49113,16 +49849,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 792 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49144,16 +49880,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 793 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49172,16 +49908,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 794 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49200,16 +49936,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 794 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49231,16 +49967,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 793 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49255,7 +49991,7 @@ this.back 5 1 return -1281656861 +423031029 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49265,16 +50001,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 795 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49289,7 +50025,7 @@ this.back 5 1 x -312077835 +1635546341 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49299,16 +50035,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 796 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49327,16 +50063,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 796 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 null null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -49358,16 +50094,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 795 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49382,7 +50118,7 @@ this.back 6 1 x -312077835 +1635546341 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49392,16 +50128,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 797 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49420,16 +50156,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 797 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49451,16 +50187,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 798 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49479,16 +50215,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 798 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49510,16 +50246,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 799 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49538,16 +50274,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 800 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49566,16 +50302,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 800 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49597,16 +50333,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 799 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49621,7 +50357,7 @@ this.back 6 1 return -1281656861 +423031029 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49631,16 +50367,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 801 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49659,16 +50395,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 802 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49687,16 +50423,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 802 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1281656861 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null 423031029 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49718,16 +50454,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 801 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49742,7 +50478,7 @@ this.back 6 1 return -1281656861 +423031029 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49752,16 +50488,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 803 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49780,16 +50516,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 803 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49811,16 +50547,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 804 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49839,16 +50575,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 804 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49870,16 +50606,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 805 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49898,16 +50634,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 806 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49926,16 +50662,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 806 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49957,16 +50693,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 805 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -49981,7 +50717,7 @@ this.back 6 1 return -1545883417 +1712669532 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49991,16 +50727,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 807 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -50015,7 +50751,7 @@ this.back 6 1 x -937106871 +1698156408 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50025,16 +50761,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 808 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -50053,16 +50789,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 808 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 null null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -50084,16 +50820,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 807 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50108,7 +50844,7 @@ this.back 7 1 x -937106871 +1698156408 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50118,16 +50854,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 809 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50146,16 +50882,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 809 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50177,16 +50913,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 810 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50205,16 +50941,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 810 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50236,16 +50972,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 811 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50264,16 +51000,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 812 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50292,16 +51028,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 812 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50323,16 +51059,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 811 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50347,7 +51083,7 @@ this.back 7 1 return -1545883417 +1712669532 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50357,16 +51093,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 813 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50385,16 +51121,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 814 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50413,16 +51149,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 814 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1545883417 1405428113 857661838 812272602 312077835 937106871 null null] +[null null 1712669532 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50444,16 +51180,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 813 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50468,7 +51204,7 @@ this.back 7 1 return -1545883417 +1712669532 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50478,16 +51214,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 815 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50506,16 +51242,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 815 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50537,16 +51273,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 816 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50565,16 +51301,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 816 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50596,16 +51332,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 817 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50624,16 +51360,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 818 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50652,16 +51388,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 818 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50683,16 +51419,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 817 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50707,7 +51443,7 @@ this.back 7 1 return -1405428113 +1225373914 1 return.getClass().getName() "java.lang.Object" @@ -50717,16 +51453,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 819 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50741,7 +51477,7 @@ this.back 7 1 x -310113799 +1740035246 1 x.getClass().getName() "java.lang.Object" @@ -50751,16 +51487,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 820 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50779,16 +51515,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 820 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 null null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -50810,16 +51546,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 819 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -50834,7 +51570,7 @@ this.back 8 1 x -310113799 +1740035246 1 x.getClass().getName() "java.lang.Object" @@ -50844,16 +51580,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 821 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -50872,16 +51608,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 821 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -50903,16 +51639,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 822 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -50931,16 +51667,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 822 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -50962,16 +51698,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 823 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -50990,16 +51726,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 824 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51018,16 +51754,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 824 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51049,16 +51785,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 823 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51073,7 +51809,7 @@ this.back 8 1 return -1405428113 +1225373914 1 return.getClass().getName() "java.lang.Object" @@ -51083,16 +51819,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 825 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51111,16 +51847,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 826 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51139,16 +51875,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 826 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1405428113 857661838 812272602 312077835 937106871 310113799 null] +[null null null 1225373914 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51170,16 +51906,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 825 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51194,7 +51930,7 @@ this.back 8 1 return -1405428113 +1225373914 1 return.getClass().getName() "java.lang.Object" @@ -51204,16 +51940,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 827 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51232,16 +51968,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 827 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51263,16 +51999,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 828 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51291,16 +52027,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 828 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51322,16 +52058,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 829 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51350,16 +52086,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 830 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51378,16 +52114,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 830 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51409,16 +52145,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 829 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51433,7 +52169,7 @@ this.back 8 1 return -857661838 +60830820 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51443,16 +52179,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 831 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51467,7 +52203,7 @@ this.back 8 1 x -139808524 +884457408 1 x.getClass().getName() "java.lang.Object" @@ -51477,16 +52213,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 832 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51505,16 +52241,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 832 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 null] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -51536,16 +52272,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 831 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51560,7 +52296,7 @@ this.back 9 1 x -139808524 +884457408 1 x.getClass().getName() "java.lang.Object" @@ -51570,16 +52306,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 833 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51598,16 +52334,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 833 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51629,16 +52365,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 834 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51657,16 +52393,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 834 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51688,16 +52424,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 835 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51716,16 +52452,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 836 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51744,16 +52480,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 836 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51775,16 +52511,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 835 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51799,7 +52535,7 @@ this.back 9 1 return -857661838 +60830820 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51809,16 +52545,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 837 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51837,16 +52573,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 838 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51865,16 +52601,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 838 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 857661838 812272602 312077835 937106871 310113799 139808524] +[null null null null 60830820 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51896,16 +52632,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 837 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51920,7 +52656,7 @@ this.back 9 1 return -857661838 +60830820 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51930,16 +52666,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 839 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51958,16 +52694,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 839 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -51989,16 +52725,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 840 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52017,16 +52753,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 840 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52048,16 +52784,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 841 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52076,16 +52812,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 842 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52104,16 +52840,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 842 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52135,16 +52871,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 841 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52159,7 +52895,7 @@ this.back 9 1 return -812272602 +759156157 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52169,16 +52905,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 843 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52193,7 +52929,7 @@ this.back 9 1 x -414753050 +913190639 1 x.getClass().getName() "java.lang.Object" @@ -52203,16 +52939,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 844 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52231,16 +52967,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 844 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 812272602 312077835 937106871 310113799 139808524] +[null null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52262,16 +52998,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 843 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52286,7 +53022,7 @@ this.back 0 1 x -414753050 +913190639 1 x.getClass().getName() "java.lang.Object" @@ -52296,16 +53032,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 845 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52324,16 +53060,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 845 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52355,16 +53091,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 846 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52383,16 +53119,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 846 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52414,16 +53150,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 847 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52442,16 +53178,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 848 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52470,16 +53206,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 848 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52501,16 +53237,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 847 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52525,7 +53261,7 @@ this.back 0 1 return -812272602 +759156157 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52535,16 +53271,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 849 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52563,16 +53299,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 850 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52591,16 +53327,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 850 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null 812272602 312077835 937106871 310113799 139808524] +[913190639 null null null null 759156157 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52622,16 +53358,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 849 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52646,7 +53382,7 @@ this.back 0 1 return -812272602 +759156157 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52656,16 +53392,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 851 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52684,16 +53420,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 851 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52715,16 +53451,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 852 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52743,16 +53479,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 852 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52774,16 +53510,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 853 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52802,16 +53538,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 854 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52830,16 +53566,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 854 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52861,16 +53597,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 853 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52885,7 +53621,7 @@ this.back 0 1 return -312077835 +1635546341 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52895,16 +53631,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 855 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52919,7 +53655,7 @@ this.back 0 1 x -22593188 +1845066581 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52929,16 +53665,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 856 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52957,16 +53693,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 856 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 null null null null null 312077835 937106871 310113799 139808524] +[913190639 null null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -52988,16 +53724,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 855 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53012,7 +53748,7 @@ this.back 1 1 x -22593188 +1845066581 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53022,16 +53758,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 857 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53050,16 +53786,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 857 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53081,16 +53817,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 858 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53109,16 +53845,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 858 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53140,16 +53876,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 859 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53168,16 +53904,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 860 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53196,16 +53932,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 860 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53227,16 +53963,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 859 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53251,7 +53987,7 @@ this.back 1 1 return -312077835 +1635546341 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53261,16 +53997,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 861 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53289,16 +54025,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 862 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53317,16 +54053,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 862 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null 312077835 937106871 310113799 139808524] +[913190639 1845066581 null null null null 1635546341 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53348,16 +54084,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 861 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53372,7 +54108,7 @@ this.back 1 1 return -312077835 +1635546341 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53382,16 +54118,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 863 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53410,16 +54146,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 863 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53441,16 +54177,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 864 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53469,16 +54205,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 864 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53500,16 +54236,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 865 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53528,16 +54264,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 866 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53556,16 +54292,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 866 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53587,16 +54323,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 865 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53611,7 +54347,7 @@ this.back 1 1 return -937106871 +1698156408 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53621,16 +54357,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 867 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53645,7 +54381,7 @@ this.back 1 1 x -1766588844 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53655,16 +54391,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 868 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53683,16 +54419,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 868 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 null null null null null 937106871 310113799 139808524] +[913190639 1845066581 null null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53714,16 +54450,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 867 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53738,7 +54474,7 @@ this.back 2 1 x -1766588844 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53748,16 +54484,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 869 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53776,16 +54512,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 869 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53807,16 +54543,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 870 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53835,16 +54571,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 870 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53866,16 +54602,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 871 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53894,16 +54630,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 872 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53922,16 +54658,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 872 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53953,16 +54689,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 871 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -53977,7 +54713,7 @@ this.back 2 1 return -937106871 +1698156408 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53987,16 +54723,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 873 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -54015,16 +54751,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 874 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -54043,16 +54779,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 874 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null 937106871 310113799 139808524] +[913190639 1845066581 1018937824 null null null null 1698156408 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -54074,16 +54810,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 873 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54098,7 +54834,7 @@ this.back 2 1 return -937106871 +1698156408 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54108,16 +54844,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 875 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54136,16 +54872,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 875 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54167,16 +54903,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 876 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54195,16 +54931,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 876 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54226,16 +54962,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 877 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54254,16 +54990,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 878 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54282,16 +55018,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 878 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54313,16 +55049,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 877 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54337,7 +55073,7 @@ this.back 2 1 return -310113799 +1740035246 1 return.getClass().getName() "java.lang.Object" @@ -54347,16 +55083,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 879 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54371,7 +55107,7 @@ this.back 2 1 x -2097281333 +905654280 1 x.getClass().getName() "java.lang.Object" @@ -54381,16 +55117,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 880 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54409,16 +55145,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 880 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 null null null null null 310113799 139808524] +[913190639 1845066581 1018937824 null null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null "java.lang.Object" "java.lang.Object"] @@ -54440,16 +55176,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 879 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54464,7 +55200,7 @@ this.back 3 1 x -2097281333 +905654280 1 x.getClass().getName() "java.lang.Object" @@ -54474,16 +55210,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 881 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54502,16 +55238,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 881 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54533,16 +55269,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 882 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54561,16 +55297,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 882 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54592,16 +55328,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 883 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54620,16 +55356,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 884 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54648,16 +55384,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 884 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54679,16 +55415,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 883 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54703,7 +55439,7 @@ this.back 3 1 return -310113799 +1740035246 1 return.getClass().getName() "java.lang.Object" @@ -54713,16 +55449,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 885 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54741,16 +55477,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 886 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54769,16 +55505,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 886 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null 310113799 139808524] +[913190639 1845066581 1018937824 905654280 null null null null 1740035246 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null "java.lang.Object" "java.lang.Object"] @@ -54800,16 +55536,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 885 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -54824,7 +55560,7 @@ this.back 3 1 return -310113799 +1740035246 1 return.getClass().getName() "java.lang.Object" @@ -54834,16 +55570,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 887 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -54862,16 +55598,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 887 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -54893,16 +55629,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 888 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -54921,16 +55657,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 888 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -54952,16 +55688,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 889 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -54980,16 +55716,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 890 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -55008,16 +55744,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 890 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -55039,16 +55775,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 889 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -55063,7 +55799,7 @@ this.back 3 1 return -139808524 +884457408 1 return.getClass().getName() "java.lang.Object" @@ -55073,16 +55809,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 891 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -55097,7 +55833,7 @@ this.back 3 1 x -210781873 +1915058446 1 x.getClass().getName() "java.lang.Object" @@ -55107,16 +55843,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 892 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -55135,16 +55871,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 892 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 null null null null null 139808524] +[913190639 1845066581 1018937824 905654280 null null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null "java.lang.Object"] @@ -55166,16 +55902,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 891 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55190,7 +55926,7 @@ this.back 4 1 x -210781873 +1915058446 1 x.getClass().getName() "java.lang.Object" @@ -55200,16 +55936,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 893 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55228,16 +55964,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 893 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55259,16 +55995,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 894 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55287,16 +56023,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 894 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55318,16 +56054,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 895 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55346,16 +56082,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 896 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55374,16 +56110,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 896 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55405,16 +56141,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 895 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55429,7 +56165,7 @@ this.back 4 1 return -139808524 +884457408 1 return.getClass().getName() "java.lang.Object" @@ -55439,16 +56175,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 897 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55467,16 +56203,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 898 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55495,16 +56231,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 898 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null 139808524] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null 884457408] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null "java.lang.Object"] @@ -55526,16 +56262,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 897 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55550,7 +56286,7 @@ this.back 4 1 return -139808524 +884457408 1 return.getClass().getName() "java.lang.Object" @@ -55560,16 +56296,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 899 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55588,16 +56324,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 899 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55619,16 +56355,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 900 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55647,16 +56383,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 900 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55678,16 +56414,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 901 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55706,16 +56442,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 902 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55734,16 +56470,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 902 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55765,16 +56501,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 901 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55789,7 +56525,7 @@ this.back 4 1 return -414753050 +913190639 1 return.getClass().getName() "java.lang.Object" @@ -55799,16 +56535,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 903 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55823,7 +56559,7 @@ this.back 4 1 x -1410405608 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55833,16 +56569,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 904 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55861,16 +56597,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 904 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 null null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -55892,16 +56628,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 903 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -55916,7 +56652,7 @@ this.back 5 1 x -1410405608 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -55926,16 +56662,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 905 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -55954,16 +56690,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 905 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -55985,16 +56721,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 906 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56013,16 +56749,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 906 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56044,16 +56780,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 907 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56072,16 +56808,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 908 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56100,16 +56836,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 908 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56131,16 +56867,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 907 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56155,7 +56891,7 @@ this.back 5 1 return -414753050 +913190639 1 return.getClass().getName() "java.lang.Object" @@ -56165,16 +56901,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 909 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56193,16 +56929,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 910 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56221,16 +56957,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 910 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[414753050 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56252,16 +56988,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 909 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56276,7 +57012,7 @@ this.back 5 1 return -414753050 +913190639 1 return.getClass().getName() "java.lang.Object" @@ -56286,16 +57022,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 911 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56314,16 +57050,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 911 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56345,16 +57081,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 912 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56373,16 +57109,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 912 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56404,16 +57140,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 913 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56432,16 +57168,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 914 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56460,16 +57196,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 914 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56491,16 +57227,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 913 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56515,7 +57251,7 @@ this.back 5 1 return -22593188 +1845066581 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56525,16 +57261,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 915 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56549,7 +57285,7 @@ this.back 5 1 x -762558070 +922151033 1 x.getClass().getName() "java.lang.Object" @@ -56559,16 +57295,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 916 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56587,16 +57323,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 916 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 null null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -56618,16 +57354,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 915 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56642,7 +57378,7 @@ this.back 6 1 x -762558070 +922151033 1 x.getClass().getName() "java.lang.Object" @@ -56652,16 +57388,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 917 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56680,16 +57416,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 917 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56711,16 +57447,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 918 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56739,16 +57475,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 918 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56770,16 +57506,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 919 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56798,16 +57534,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 920 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56826,16 +57562,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 920 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56857,16 +57593,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 919 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56881,7 +57617,7 @@ this.back 6 1 return -22593188 +1845066581 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56891,16 +57627,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 921 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56919,16 +57655,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 922 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56947,16 +57683,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 922 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 22593188 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -56978,16 +57714,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 921 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57002,7 +57738,7 @@ this.back 6 1 return -22593188 +1845066581 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57012,16 +57748,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 923 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57040,16 +57776,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 923 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57071,16 +57807,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 924 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57099,16 +57835,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 924 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57130,16 +57866,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 925 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57158,16 +57894,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 926 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57186,16 +57922,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 926 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57217,16 +57953,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 925 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57241,7 +57977,7 @@ this.back 6 1 return -1766588844 +1018937824 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57251,16 +57987,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 927 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57275,7 +58011,7 @@ this.back 6 1 x -131077194 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -57285,16 +58021,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 928 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57313,16 +58049,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 928 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 null null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -57344,16 +58080,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 927 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57368,7 +58104,7 @@ this.back 7 1 x -131077194 +1516369375 1 x.getClass().getName() "DataStructures.MyInteger" @@ -57378,16 +58114,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 929 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57406,16 +58142,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 929 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57437,16 +58173,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 930 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57465,16 +58201,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 930 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57496,16 +58232,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 931 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57524,16 +58260,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 932 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57552,16 +58288,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 932 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57583,16 +58319,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 931 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57607,7 +58343,7 @@ this.back 7 1 return -1766588844 +1018937824 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57617,16 +58353,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 933 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57645,16 +58381,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 934 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57673,16 +58409,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 934 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1766588844 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57704,16 +58440,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 933 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57728,7 +58464,7 @@ this.back 7 1 return -1766588844 +1018937824 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57738,16 +58474,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 935 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57766,16 +58502,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 935 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57797,16 +58533,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 936 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57825,16 +58561,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 936 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57856,16 +58592,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 937 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57884,16 +58620,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 938 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57912,16 +58648,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 938 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57943,16 +58679,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 937 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -57967,7 +58703,7 @@ this.back 7 1 return -2097281333 +905654280 1 return.getClass().getName() "java.lang.Object" @@ -57977,16 +58713,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 939 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -58001,7 +58737,7 @@ this.back 7 1 x -1843661383 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58011,16 +58747,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 940 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -58039,16 +58775,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 940 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 null null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -58070,16 +58806,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 939 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58094,7 +58830,7 @@ this.back 8 1 x -1843661383 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58104,16 +58840,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 941 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58132,16 +58868,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 941 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58163,16 +58899,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 942 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58191,16 +58927,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 942 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58222,16 +58958,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 943 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58250,16 +58986,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 944 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58278,16 +59014,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 944 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58309,16 +59045,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 943 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58333,7 +59069,7 @@ this.back 8 1 return -2097281333 +905654280 1 return.getClass().getName() "java.lang.Object" @@ -58343,16 +59079,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 945 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58371,16 +59107,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 946 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58399,16 +59135,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 946 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 2097281333 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null 905654280 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58430,16 +59166,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 945 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58454,7 +59190,7 @@ this.back 8 1 return -2097281333 +905654280 1 return.getClass().getName() "java.lang.Object" @@ -58464,16 +59200,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 947 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58492,16 +59228,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 947 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58523,16 +59259,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 948 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58551,16 +59287,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 948 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58582,16 +59318,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 949 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58610,16 +59346,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 950 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58638,16 +59374,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 950 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58669,16 +59405,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 949 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58693,7 +59429,7 @@ this.back 8 1 return -210781873 +1915058446 1 return.getClass().getName() "java.lang.Object" @@ -58703,16 +59439,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 951 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58727,7 +59463,7 @@ this.back 8 1 x -375321518 +1394336709 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58737,16 +59473,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 952 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58765,16 +59501,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 952 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 null] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 null] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -58796,16 +59532,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 951 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -58820,7 +59556,7 @@ this.back 9 1 x -375321518 +1394336709 1 x.getClass().getName() "DataStructures.MyInteger" @@ -58830,16 +59566,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 953 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -58858,16 +59594,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 953 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -58889,16 +59625,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 954 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -58917,16 +59653,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 954 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -58948,16 +59684,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 955 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -58976,16 +59712,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 956 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59004,16 +59740,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 956 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59035,16 +59771,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 955 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59059,7 +59795,7 @@ this.back 9 1 return -210781873 +1915058446 1 return.getClass().getName() "java.lang.Object" @@ -59069,16 +59805,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 957 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59097,16 +59833,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 958 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59125,16 +59861,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 958 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 210781873 1410405608 762558070 131077194 1843661383 375321518] +[null null null null 1915058446 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59156,16 +59892,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 957 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59180,7 +59916,7 @@ this.back 9 1 return -210781873 +1915058446 1 return.getClass().getName() "java.lang.Object" @@ -59190,16 +59926,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 959 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59218,16 +59954,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 959 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59249,16 +59985,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 960 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59277,16 +60013,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 960 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59308,16 +60044,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 961 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59336,16 +60072,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 962 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59364,16 +60100,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 962 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59395,16 +60131,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 961 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59419,7 +60155,7 @@ this.back 9 1 return -1410405608 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59429,16 +60165,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 963 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59453,7 +60189,7 @@ this.back 9 1 x -869281787 +1387228415 1 x.getClass().getName() "java.lang.Object" @@ -59463,16 +60199,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 964 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59491,16 +60227,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 964 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1410405608 762558070 131077194 1843661383 375321518] +[null null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59522,16 +60258,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 963 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59546,7 +60282,7 @@ this.back 0 1 x -869281787 +1387228415 1 x.getClass().getName() "java.lang.Object" @@ -59556,16 +60292,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 965 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59584,16 +60320,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 965 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59615,16 +60351,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 966 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59643,16 +60379,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 966 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59674,16 +60410,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 967 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59702,16 +60438,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 968 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59730,16 +60466,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 968 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59761,16 +60497,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 967 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59785,7 +60521,7 @@ this.back 0 1 return -1410405608 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59795,16 +60531,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 969 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59823,16 +60559,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 970 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59851,16 +60587,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 970 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null 1410405608 762558070 131077194 1843661383 375321518] +[1387228415 null null null null 1419810764 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59882,16 +60618,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 969 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59906,7 +60642,7 @@ this.back 0 1 return -1410405608 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59916,16 +60652,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 971 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59944,16 +60680,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 971 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -59975,16 +60711,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 972 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60003,16 +60739,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 972 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60034,16 +60770,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 973 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60062,16 +60798,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 974 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60090,16 +60826,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 974 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60121,16 +60857,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 973 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60145,7 +60881,7 @@ this.back 0 1 return -762558070 +922151033 1 return.getClass().getName() "java.lang.Object" @@ -60155,16 +60891,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 975 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60179,7 +60915,7 @@ this.back 0 1 x -687743568 +120960120 1 x.getClass().getName() "java.lang.Object" @@ -60189,16 +60925,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 976 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60217,16 +60953,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 976 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null 762558070 131077194 1843661383 375321518] +[1387228415 null null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60248,16 +60984,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 975 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60272,7 +61008,7 @@ this.back 1 1 x -687743568 +120960120 1 x.getClass().getName() "java.lang.Object" @@ -60282,16 +61018,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 977 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60310,16 +61046,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 977 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60341,16 +61077,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 978 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60369,16 +61105,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 978 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60400,16 +61136,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 979 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60428,16 +61164,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 980 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60456,16 +61192,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 980 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60487,16 +61223,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 979 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60511,7 +61247,7 @@ this.back 1 1 return -762558070 +922151033 1 return.getClass().getName() "java.lang.Object" @@ -60521,16 +61257,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 981 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60549,16 +61285,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 982 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60577,16 +61313,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 982 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null 762558070 131077194 1843661383 375321518] +[1387228415 120960120 null null null null 922151033 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60608,16 +61344,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 981 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60632,7 +61368,7 @@ this.back 1 1 return -762558070 +922151033 1 return.getClass().getName() "java.lang.Object" @@ -60642,16 +61378,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 983 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60670,16 +61406,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 983 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60701,16 +61437,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 984 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60729,16 +61465,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 984 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60760,16 +61496,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 985 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60788,16 +61524,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 986 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60816,16 +61552,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 986 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60847,16 +61583,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 985 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60871,7 +61607,7 @@ this.back 1 1 return -131077194 +1516369375 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60881,16 +61617,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 987 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60905,7 +61641,7 @@ this.back 1 1 x -1149159222 +748658608 1 x.getClass().getName() "java.lang.Object" @@ -60915,16 +61651,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 988 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60943,16 +61679,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 988 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 null null null null null 131077194 1843661383 375321518] +[1387228415 120960120 null null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60974,16 +61710,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 987 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -60998,7 +61734,7 @@ this.back 2 1 x -1149159222 +748658608 1 x.getClass().getName() "java.lang.Object" @@ -61008,16 +61744,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 989 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61036,16 +61772,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 989 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61067,16 +61803,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 990 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61095,16 +61831,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 990 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61126,16 +61862,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 991 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61154,16 +61890,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 992 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61182,16 +61918,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 992 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61213,16 +61949,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 991 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61237,7 +61973,7 @@ this.back 2 1 return -131077194 +1516369375 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61247,16 +61983,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 993 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61275,16 +62011,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 994 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61303,16 +62039,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 994 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null 131077194 1843661383 375321518] +[1387228415 120960120 748658608 null null null null 1516369375 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61334,16 +62070,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 993 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61358,7 +62094,7 @@ this.back 2 1 return -131077194 +1516369375 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61368,16 +62104,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 995 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61396,16 +62132,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 995 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61427,16 +62163,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 996 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61455,16 +62191,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 996 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61486,16 +62222,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 997 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61514,16 +62250,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 998 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61542,16 +62278,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 998 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61573,16 +62309,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 997 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61597,7 +62333,7 @@ this.back 2 1 return -1843661383 +55909012 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61607,16 +62343,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 999 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61631,7 +62367,7 @@ this.back 2 1 x -1598606683 +546718765 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61641,16 +62377,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1000 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61669,16 +62405,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1000 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 null null null null null 1843661383 375321518] +[1387228415 120960120 748658608 null null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61700,16 +62436,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 999 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61724,7 +62460,7 @@ this.back 3 1 x -1598606683 +546718765 1 x.getClass().getName() "DataStructures.MyInteger" @@ -61734,16 +62470,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1001 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61762,16 +62498,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1001 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61793,16 +62529,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1002 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61821,16 +62557,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1002 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61852,16 +62588,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1003 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61880,16 +62616,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1004 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61908,16 +62644,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1004 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61939,16 +62675,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1003 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -61963,7 +62699,7 @@ this.back 3 1 return -1843661383 +55909012 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61973,16 +62709,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1005 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -62001,16 +62737,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1006 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -62029,16 +62765,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1006 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null 1843661383 375321518] +[1387228415 120960120 748658608 546718765 null null null null 55909012 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -62060,16 +62796,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1005 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62084,7 +62820,7 @@ this.back 3 1 return -1843661383 +55909012 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62094,16 +62830,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1007 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62122,16 +62858,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1007 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62153,16 +62889,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1008 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62181,16 +62917,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1008 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62212,16 +62948,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1009 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62240,16 +62976,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1010 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62268,16 +63004,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1010 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62299,16 +63035,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1009 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62323,7 +63059,7 @@ this.back 3 1 return -375321518 +1394336709 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62333,16 +63069,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1011 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62357,7 +63093,7 @@ this.back 3 1 x -614613564 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62367,16 +63103,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1012 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62395,16 +63131,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1012 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 null null null null null 375321518] +[1387228415 120960120 748658608 546718765 null null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null "DataStructures.MyInteger"] @@ -62426,16 +63162,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1011 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62450,7 +63186,7 @@ this.back 4 1 x -614613564 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -62460,16 +63196,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1013 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62488,16 +63224,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1013 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62519,16 +63255,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1014 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62547,16 +63283,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1014 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62578,16 +63314,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1015 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62606,16 +63342,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1016 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62634,16 +63370,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1016 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62665,16 +63401,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1015 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62689,7 +63425,7 @@ this.back 4 1 return -375321518 +1394336709 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62699,16 +63435,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1017 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62727,16 +63463,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1018 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62755,16 +63491,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1018 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null 375321518] +[1387228415 120960120 748658608 546718765 167185492 null null null null 1394336709] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null "DataStructures.MyInteger"] @@ -62786,16 +63522,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1017 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62810,7 +63546,7 @@ this.back 4 1 return -375321518 +1394336709 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62820,16 +63556,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1019 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62848,16 +63584,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1019 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62879,16 +63615,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1020 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62907,16 +63643,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1020 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62938,16 +63674,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1021 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62966,16 +63702,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1022 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -62994,16 +63730,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1022 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63025,16 +63761,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1021 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63049,7 +63785,7 @@ this.back 4 1 return -869281787 +1387228415 1 return.getClass().getName() "java.lang.Object" @@ -63059,16 +63795,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1023 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63087,16 +63823,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1023 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63118,16 +63854,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1024 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63146,16 +63882,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1025 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63174,16 +63910,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1025 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 687743568 1149159222 1598606683 614613564 null null null null null] +[1387228415 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63205,16 +63941,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1024 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63229,7 +63965,7 @@ this.back 4 1 return -869281787 +1387228415 1 return.getClass().getName() "java.lang.Object" @@ -63239,16 +63975,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1026 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63267,16 +64003,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1026 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63298,16 +64034,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1027 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63326,16 +64062,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1027 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63357,16 +64093,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1028 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63385,16 +64121,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1029 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63413,16 +64149,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1029 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63444,16 +64180,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1028 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63468,7 +64204,7 @@ this.back 4 1 return -687743568 +120960120 1 return.getClass().getName() "java.lang.Object" @@ -63478,16 +64214,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1030 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63506,16 +64242,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1030 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63537,16 +64273,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1031 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63565,16 +64301,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1032 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63593,16 +64329,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1032 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 687743568 1149159222 1598606683 614613564 null null null null null] +[null 120960120 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63624,16 +64360,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1031 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63648,7 +64384,7 @@ this.back 4 1 return -687743568 +120960120 1 return.getClass().getName() "java.lang.Object" @@ -63658,16 +64394,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1033 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63686,16 +64422,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1033 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63717,16 +64453,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1034 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63745,16 +64481,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1034 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63776,16 +64512,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1035 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63804,16 +64540,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1036 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63832,16 +64568,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1036 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63863,16 +64599,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1035 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63887,7 +64623,7 @@ this.back 4 1 return -1149159222 +748658608 1 return.getClass().getName() "java.lang.Object" @@ -63897,16 +64633,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1037 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63925,16 +64661,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1037 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63956,16 +64692,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1038 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -63984,16 +64720,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1039 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64012,16 +64748,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1039 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1149159222 1598606683 614613564 null null null null null] +[null null 748658608 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64043,16 +64779,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1038 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64067,7 +64803,7 @@ this.back 4 1 return -1149159222 +748658608 1 return.getClass().getName() "java.lang.Object" @@ -64077,16 +64813,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1040 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64105,16 +64841,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1040 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64136,16 +64872,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1041 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64164,16 +64900,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1041 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64195,16 +64931,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1042 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64223,16 +64959,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1043 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64251,16 +64987,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1043 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64282,16 +65018,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1042 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64306,7 +65042,7 @@ this.back 4 1 return -1598606683 +546718765 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64316,16 +65052,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1044 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64344,16 +65080,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1044 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64375,16 +65111,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1045 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64403,16 +65139,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1046 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64431,16 +65167,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1046 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1598606683 614613564 null null null null null] +[null null null 546718765 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -64462,16 +65198,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1045 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64486,7 +65222,7 @@ this.back 4 1 return -1598606683 +546718765 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64496,16 +65232,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1047 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64524,16 +65260,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1047 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64555,16 +65291,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1048 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64583,16 +65319,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1048 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64614,16 +65350,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1049 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64642,16 +65378,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1050 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64670,16 +65406,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1050 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64701,16 +65437,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1049 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64725,7 +65461,7 @@ this.back 4 1 return -614613564 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64735,16 +65471,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1051 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64763,16 +65499,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1051 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64794,16 +65530,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1052 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64822,16 +65558,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1053 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64850,16 +65586,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1053 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 614613564 null null null null null] +[null null null null 167185492 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" null null null null null] @@ -64881,10 +65617,10 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1052 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -64905,7 +65641,7 @@ this.back 4 1 return -614613564 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -64915,10 +65651,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1054 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -64943,10 +65679,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1054 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -64974,10 +65710,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1055 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65002,10 +65738,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1055 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65033,10 +65769,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1056 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65061,10 +65797,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1057 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65089,10 +65825,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1057 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65120,10 +65856,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 1056 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65154,10 +65890,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1058 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65182,10 +65918,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1058 this -99092062 +1874154700 1 this.theArray -1140459609 +1632392469 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65220,10 +65956,10 @@ DataStructures.QueueAr.QueueAr(int):::EXIT36 this_invocation_nonce 1059 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65251,10 +65987,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1060 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65279,10 +66015,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1060 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65310,10 +66046,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1061 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65338,10 +66074,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1061 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65369,10 +66105,10 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1062 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65397,10 +66133,10 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1063 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65425,10 +66161,10 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1063 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65456,10 +66192,10 @@ DataStructures.QueueAr.getFront():::EXIT75 this_invocation_nonce 1062 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65490,10 +66226,10 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1064 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65514,7 +66250,7 @@ this.back 29 1 x -110934012 +1641808846 1 x.getClass().getName() "java.lang.Object" @@ -65524,10 +66260,10 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1065 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65552,10 +66288,10 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1065 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -65583,16 +66319,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1064 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65607,7 +66343,7 @@ this.back 0 1 x -110934012 +1641808846 1 x.getClass().getName() "java.lang.Object" @@ -65617,16 +66353,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1066 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65645,16 +66381,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1066 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65676,16 +66412,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1067 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65704,16 +66440,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1067 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65735,16 +66471,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1068 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65763,16 +66499,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1069 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65791,16 +66527,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1069 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65822,16 +66558,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1068 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65846,7 +66582,7 @@ this.back 0 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -65856,16 +66592,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1070 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65880,7 +66616,7 @@ this.back 0 1 x -452134088 +1358444045 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65890,16 +66626,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1071 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65918,16 +66654,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1071 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65949,16 +66685,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1070 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -65973,7 +66709,7 @@ this.back 1 1 x -452134088 +1358444045 1 x.getClass().getName() "DataStructures.MyInteger" @@ -65983,16 +66719,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1072 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66011,16 +66747,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1072 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66042,16 +66778,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1073 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66070,16 +66806,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1073 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66101,16 +66837,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1074 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66129,16 +66865,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1075 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66157,16 +66893,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1075 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66188,16 +66924,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1074 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66212,7 +66948,7 @@ this.back 1 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -66222,16 +66958,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1076 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66246,7 +66982,7 @@ this.back 1 1 x -1220473930 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66256,16 +66992,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1077 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66284,16 +67020,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1077 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 null null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66315,16 +67051,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1076 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66339,7 +67075,7 @@ this.back 2 1 x -1220473930 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66349,16 +67085,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1078 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66377,16 +67113,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1078 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66408,16 +67144,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1079 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66436,16 +67172,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1079 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66467,16 +67203,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1080 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66495,16 +67231,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1081 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66523,16 +67259,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1081 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66554,16 +67290,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1080 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66578,7 +67314,7 @@ this.back 2 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -66588,16 +67324,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1082 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66612,7 +67348,7 @@ this.back 2 1 x -1889029013 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66622,16 +67358,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1083 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66650,16 +67386,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1083 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 null null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 null null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66681,16 +67417,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1082 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66705,7 +67441,7 @@ this.back 3 1 x -1889029013 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66715,16 +67451,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1084 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66743,16 +67479,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1084 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66774,16 +67510,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1085 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66802,16 +67538,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1085 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66833,16 +67569,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1086 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66861,16 +67597,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1087 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66889,16 +67625,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1087 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66920,16 +67656,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1086 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66944,7 +67680,7 @@ this.back 3 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -66954,16 +67690,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1088 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -66978,7 +67714,7 @@ this.back 3 1 x -512384243 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -66988,16 +67724,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1089 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67016,16 +67752,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1089 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67047,16 +67783,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1088 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67071,7 +67807,7 @@ this.back 4 1 x -512384243 +310656974 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67081,16 +67817,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1090 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67109,16 +67845,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1090 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67140,16 +67876,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1091 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67168,16 +67904,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1091 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67199,16 +67935,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1092 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67227,16 +67963,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1093 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67255,16 +67991,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1093 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67286,16 +68022,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1092 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67310,7 +68046,7 @@ this.back 4 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -67320,16 +68056,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1094 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67344,7 +68080,7 @@ this.back 4 1 x -232547631 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67354,16 +68090,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1095 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67382,16 +68118,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1095 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67413,16 +68149,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1094 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67437,7 +68173,7 @@ this.back 5 1 x -232547631 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67447,16 +68183,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1096 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67475,16 +68211,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1096 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67506,16 +68242,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1097 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67534,16 +68270,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1097 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67565,16 +68301,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1098 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67593,16 +68329,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1099 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67621,16 +68357,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1099 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67652,16 +68388,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1098 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67676,7 +68412,7 @@ this.back 5 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -67686,16 +68422,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1100 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67710,7 +68446,7 @@ this.back 5 1 x -7796677 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67720,16 +68456,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1101 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67748,16 +68484,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1101 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null null] @@ -67779,16 +68515,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1100 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67803,7 +68539,7 @@ this.back 6 1 x -7796677 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67813,16 +68549,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1102 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67841,16 +68577,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1102 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67872,16 +68608,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1103 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67900,16 +68636,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1103 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67931,16 +68667,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1104 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67959,16 +68695,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1105 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -67987,16 +68723,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1105 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -68018,16 +68754,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1104 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -68042,7 +68778,7 @@ this.back 6 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -68052,16 +68788,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1106 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -68076,7 +68812,7 @@ this.back 6 1 x -42247872 +653687670 1 x.getClass().getName() "java.lang.Object" @@ -68086,16 +68822,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1107 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -68114,16 +68850,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1107 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null null null null] @@ -68145,16 +68881,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1106 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68169,7 +68905,7 @@ this.back 7 1 x -42247872 +653687670 1 x.getClass().getName() "java.lang.Object" @@ -68179,16 +68915,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1108 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68207,16 +68943,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1108 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68238,16 +68974,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1109 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68266,16 +69002,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1109 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68297,16 +69033,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1110 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68325,16 +69061,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1111 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68353,16 +69089,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1111 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68384,16 +69120,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1110 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68408,7 +69144,7 @@ this.back 7 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -68418,16 +69154,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1112 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68442,7 +69178,7 @@ this.back 7 1 x -1390381194 +356473385 1 x.getClass().getName() "java.lang.Object" @@ -68452,16 +69188,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1113 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68480,16 +69216,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1113 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null null] @@ -68511,16 +69247,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1112 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68535,7 +69271,7 @@ this.back 8 1 x -1390381194 +356473385 1 x.getClass().getName() "java.lang.Object" @@ -68545,16 +69281,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1114 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68573,16 +69309,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1114 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68604,16 +69340,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1115 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68632,16 +69368,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1115 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68663,16 +69399,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1116 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68691,16 +69427,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1117 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68719,16 +69455,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1117 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68750,16 +69486,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1116 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68774,7 +69510,7 @@ this.back 8 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -68784,16 +69520,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1118 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68808,7 +69544,7 @@ this.back 8 1 x -1367164551 +2136344592 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68818,16 +69554,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1119 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68846,16 +69582,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1119 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null null null null] @@ -68877,16 +69613,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1118 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -68901,7 +69637,7 @@ this.back 9 1 x -1367164551 +2136344592 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68911,16 +69647,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1120 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -68939,16 +69675,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1120 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -68970,16 +69706,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1121 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -68998,16 +69734,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1121 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69029,16 +69765,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1122 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69057,16 +69793,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1123 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69085,16 +69821,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1123 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69116,16 +69852,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1122 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69140,7 +69876,7 @@ this.back 9 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -69150,16 +69886,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1124 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69174,7 +69910,7 @@ this.back 9 1 x -2007069404 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69184,16 +69920,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1125 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69212,16 +69948,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1125 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null null] @@ -69243,16 +69979,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1124 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69267,7 +70003,7 @@ this.back 10 1 x -2007069404 +110992469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69277,16 +70013,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1126 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69305,16 +70041,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1126 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69336,16 +70072,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1127 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69364,16 +70100,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1127 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69395,16 +70131,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1128 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69423,16 +70159,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1129 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69451,16 +70187,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1129 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69482,16 +70218,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1128 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69506,7 +70242,7 @@ this.back 10 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -69516,16 +70252,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1130 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69540,7 +70276,7 @@ this.back 10 1 x -142345952 +329611835 1 x.getClass().getName() "java.lang.Object" @@ -69550,16 +70286,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1131 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69578,16 +70314,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1131 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -69609,16 +70345,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1130 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69633,7 +70369,7 @@ this.back 11 1 x -142345952 +329611835 1 x.getClass().getName() "java.lang.Object" @@ -69643,16 +70379,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1132 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69671,16 +70407,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1132 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69702,16 +70438,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1133 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69730,16 +70466,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1133 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69761,16 +70497,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1134 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69789,16 +70525,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1135 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69817,16 +70553,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1135 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69848,16 +70584,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1134 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69872,7 +70608,7 @@ this.back 11 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -69882,16 +70618,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1136 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69906,7 +70642,7 @@ this.back 11 1 x -111632506 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -69916,16 +70652,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1137 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69944,16 +70680,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1137 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -69975,16 +70711,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1136 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -69999,7 +70735,7 @@ this.back 12 1 x -111632506 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70009,16 +70745,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1138 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70037,16 +70773,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1138 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70068,16 +70804,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1139 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70096,16 +70832,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1139 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70127,16 +70863,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1140 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70155,16 +70891,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1141 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70183,16 +70919,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1141 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70214,16 +70950,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1140 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70238,7 +70974,7 @@ this.back 12 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -70248,16 +70984,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1142 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70272,7 +71008,7 @@ this.back 12 1 x -1454304511 +863831416 1 x.getClass().getName() "java.lang.Object" @@ -70282,16 +71018,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1143 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70310,16 +71046,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1143 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -70341,16 +71077,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1142 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70365,7 +71101,7 @@ this.back 13 1 x -1454304511 +863831416 1 x.getClass().getName() "java.lang.Object" @@ -70375,16 +71111,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1144 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70403,16 +71139,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1144 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70434,16 +71170,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1145 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70462,16 +71198,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1145 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70493,16 +71229,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1146 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70521,16 +71257,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1147 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70549,16 +71285,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1147 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70580,16 +71316,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1146 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70604,7 +71340,7 @@ this.back 13 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -70614,16 +71350,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1148 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70638,7 +71374,7 @@ this.back 13 1 x -1984529870 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70648,16 +71384,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1149 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70676,16 +71412,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1149 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -70707,16 +71443,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1148 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70731,7 +71467,7 @@ this.back 14 1 x -1984529870 +1508395126 1 x.getClass().getName() "DataStructures.MyInteger" @@ -70741,16 +71477,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1150 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70769,16 +71505,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1150 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70800,16 +71536,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1151 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70828,16 +71564,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1151 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70859,16 +71595,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1152 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70887,16 +71623,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1153 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70915,16 +71651,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1153 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70946,16 +71682,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1152 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -70970,7 +71706,7 @@ this.back 14 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -70980,16 +71716,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1154 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -71004,7 +71740,7 @@ this.back 14 1 x -1425003533 +1638172114 1 x.getClass().getName() "java.lang.Object" @@ -71014,16 +71750,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1155 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -71042,16 +71778,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1155 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -71073,16 +71809,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1154 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71097,7 +71833,7 @@ this.back 15 1 x -1425003533 +1638172114 1 x.getClass().getName() "java.lang.Object" @@ -71107,16 +71843,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1156 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71135,16 +71871,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1156 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71166,16 +71902,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1157 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71194,16 +71930,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1157 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71225,16 +71961,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1158 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71253,16 +71989,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1159 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71281,16 +72017,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1159 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71312,16 +72048,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1158 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71336,7 +72072,7 @@ this.back 15 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -71346,16 +72082,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1160 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71374,16 +72110,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1161 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71402,16 +72138,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1161 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71433,16 +72169,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1160 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71457,7 +72193,7 @@ this.back 15 1 return -110934012 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -71467,16 +72203,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1162 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71495,16 +72231,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1162 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71526,16 +72262,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1163 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71554,16 +72290,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1163 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71585,16 +72321,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1164 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71613,16 +72349,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1165 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71641,16 +72377,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1165 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71672,16 +72408,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1164 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71696,7 +72432,7 @@ this.back 15 1 return -452134088 +1358444045 1 return.getClass().getName() "DataStructures.MyInteger" @@ -71706,16 +72442,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1166 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71730,7 +72466,7 @@ this.back 15 1 x -1296747787 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71740,16 +72476,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1167 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71768,16 +72504,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1167 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null] @@ -71799,16 +72535,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1166 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -71823,7 +72559,7 @@ this.back 16 1 x -1296747787 +972765878 1 x.getClass().getName() "DataStructures.MyInteger" @@ -71833,16 +72569,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1168 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -71861,16 +72597,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1168 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -71892,16 +72628,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1169 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -71920,16 +72656,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1169 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -71951,16 +72687,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1170 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -71979,16 +72715,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1171 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72007,16 +72743,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1171 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72038,16 +72774,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1170 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72062,7 +72798,7 @@ this.back 16 1 return -452134088 +1358444045 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72072,16 +72808,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1172 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72100,16 +72836,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1173 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72128,16 +72864,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1173 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72159,16 +72895,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1172 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72183,7 +72919,7 @@ this.back 16 1 return -452134088 +1358444045 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72193,16 +72929,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1174 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72221,16 +72957,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1174 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72252,16 +72988,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1175 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72280,16 +73016,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1175 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72311,16 +73047,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1176 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72339,16 +73075,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1177 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72367,16 +73103,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1177 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72398,16 +73134,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1176 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72422,7 +73158,7 @@ this.back 16 1 return -1220473930 +750044075 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72432,16 +73168,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1178 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72456,7 +73192,7 @@ this.back 16 1 x -1776006353 +1651945012 1 x.getClass().getName() "java.lang.Object" @@ -72466,16 +73202,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1179 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72494,16 +73230,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1179 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 null null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -72525,16 +73261,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1178 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72549,7 +73285,7 @@ this.back 17 1 x -1776006353 +1651945012 1 x.getClass().getName() "java.lang.Object" @@ -72559,16 +73295,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1180 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72587,16 +73323,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1180 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72618,16 +73354,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1181 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72646,16 +73382,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1181 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72677,16 +73413,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1182 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72705,16 +73441,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1183 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72733,16 +73469,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1183 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72764,16 +73500,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1182 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72788,7 +73524,7 @@ this.back 17 1 return -1220473930 +750044075 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72798,16 +73534,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1184 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72826,16 +73562,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1185 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72854,16 +73590,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1185 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72885,16 +73621,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1184 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72909,7 +73645,7 @@ this.back 17 1 return -1220473930 +750044075 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72919,16 +73655,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1186 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72947,16 +73683,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1186 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -72978,16 +73714,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1187 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73006,16 +73742,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1187 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73037,16 +73773,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1188 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73065,16 +73801,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1189 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73093,16 +73829,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1189 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73124,16 +73860,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1188 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73148,7 +73884,7 @@ this.back 17 1 return -1889029013 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73158,16 +73894,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1190 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73182,7 +73918,7 @@ this.back 17 1 x -1463565218 +2034688500 1 x.getClass().getName() "java.lang.Object" @@ -73192,16 +73928,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1191 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73220,16 +73956,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1191 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 null null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -73251,16 +73987,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1190 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73275,7 +74011,7 @@ this.back 18 1 x -1463565218 +2034688500 1 x.getClass().getName() "java.lang.Object" @@ -73285,16 +74021,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1192 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73313,16 +74049,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1192 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73344,16 +74080,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1193 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73372,16 +74108,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1193 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73403,16 +74139,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1194 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73431,16 +74167,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1195 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73459,16 +74195,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1195 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73490,16 +74226,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1194 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73514,7 +74250,7 @@ this.back 18 1 return -1889029013 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73524,16 +74260,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1196 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73552,16 +74288,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1197 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73580,16 +74316,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1197 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73611,16 +74347,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1196 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73635,7 +74371,7 @@ this.back 18 1 return -1889029013 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73645,16 +74381,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1198 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73673,16 +74409,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1198 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73704,16 +74440,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1199 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73732,16 +74468,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1199 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73763,16 +74499,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1200 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73791,16 +74527,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1201 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73819,16 +74555,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1201 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73850,16 +74586,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1200 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73874,7 +74610,7 @@ this.back 18 1 return -512384243 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73884,16 +74620,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1202 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73908,7 +74644,7 @@ this.back 18 1 x -862926188 +1007251739 1 x.getClass().getName() "java.lang.Object" @@ -73918,16 +74654,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1203 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73946,16 +74682,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1203 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 null null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -73977,16 +74713,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1202 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74001,7 +74737,7 @@ this.back 19 1 x -862926188 +1007251739 1 x.getClass().getName() "java.lang.Object" @@ -74011,16 +74747,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1204 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74039,16 +74775,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1204 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74070,16 +74806,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1205 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74098,16 +74834,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1205 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74129,16 +74865,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1206 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74157,16 +74893,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1207 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74185,16 +74921,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1207 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74216,16 +74952,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1206 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74240,7 +74976,7 @@ this.back 19 1 return -512384243 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74250,16 +74986,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1208 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74278,16 +75014,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1209 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74306,16 +75042,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1209 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74337,16 +75073,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1208 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74361,7 +75097,7 @@ this.back 19 1 return -512384243 +310656974 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74371,16 +75107,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1210 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74399,16 +75135,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1210 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74430,16 +75166,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1211 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74458,16 +75194,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1211 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74489,16 +75225,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1212 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74517,16 +75253,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1213 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74545,16 +75281,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1213 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74576,16 +75312,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1212 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74600,7 +75336,7 @@ this.back 19 1 return -232547631 +64830413 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74610,16 +75346,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1214 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74634,7 +75370,7 @@ this.back 19 1 x -1243373525 +1556595366 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74644,16 +75380,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1215 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74672,16 +75408,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1215 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 null null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -74703,16 +75439,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1214 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74727,7 +75463,7 @@ this.back 20 1 x -1243373525 +1556595366 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74737,16 +75473,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1216 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74765,16 +75501,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1216 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74796,16 +75532,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1217 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74824,16 +75560,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1217 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74855,16 +75591,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1218 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74883,16 +75619,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1219 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74911,16 +75647,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1219 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74942,16 +75678,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1218 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -74966,7 +75702,7 @@ this.back 20 1 return -232547631 +64830413 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74976,16 +75712,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1220 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75004,16 +75740,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1221 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75032,16 +75768,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1221 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75063,16 +75799,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1220 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75087,7 +75823,7 @@ this.back 20 1 return -232547631 +64830413 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75097,16 +75833,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1222 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75125,16 +75861,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1222 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75156,16 +75892,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1223 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75184,16 +75920,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1223 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75215,16 +75951,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1224 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75243,16 +75979,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1225 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75271,16 +76007,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1225 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75302,16 +76038,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1224 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75326,7 +76062,7 @@ this.back 20 1 return -7796677 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75336,16 +76072,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1226 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75360,7 +76096,7 @@ this.back 20 1 x -215465718 +194494468 1 x.getClass().getName() "java.lang.Object" @@ -75370,16 +76106,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1227 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75398,16 +76134,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1227 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 null null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null] @@ -75429,16 +76165,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1226 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75453,7 +76189,7 @@ this.back 21 1 x -215465718 +194494468 1 x.getClass().getName() "java.lang.Object" @@ -75463,16 +76199,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1228 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75491,16 +76227,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1228 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75522,16 +76258,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1229 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75550,16 +76286,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1229 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75581,16 +76317,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1230 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75609,16 +76345,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1231 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75637,16 +76373,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1231 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75668,16 +76404,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1230 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75692,7 +76428,7 @@ this.back 21 1 return -7796677 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75702,16 +76438,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1232 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75730,16 +76466,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1233 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75758,16 +76494,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1233 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75789,16 +76525,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1232 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75813,7 +76549,7 @@ this.back 21 1 return -7796677 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -75823,16 +76559,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1234 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75851,16 +76587,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1234 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75882,16 +76618,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1235 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75910,16 +76646,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1235 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75941,16 +76677,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1236 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75969,16 +76705,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1237 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -75997,16 +76733,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1237 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -76028,16 +76764,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1236 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -76052,7 +76788,7 @@ this.back 21 1 return -42247872 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -76062,16 +76798,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1238 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -76086,7 +76822,7 @@ this.back 21 1 x -674893584 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76096,16 +76832,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1239 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -76124,16 +76860,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1239 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 null null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -76155,16 +76891,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1238 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76179,7 +76915,7 @@ this.back 22 1 x -674893584 +1167116739 1 x.getClass().getName() "DataStructures.MyInteger" @@ -76189,16 +76925,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1240 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76217,16 +76953,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1240 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76248,16 +76984,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1241 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76276,16 +77012,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1241 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76307,16 +77043,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1242 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76335,16 +77071,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1243 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76363,16 +77099,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1243 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76394,16 +77130,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1242 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76418,7 +77154,7 @@ this.back 22 1 return -42247872 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -76428,16 +77164,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1244 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76456,16 +77192,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1245 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76484,16 +77220,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1245 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76515,16 +77251,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1244 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76539,7 +77275,7 @@ this.back 22 1 return -42247872 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -76549,16 +77285,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1246 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76577,16 +77313,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1246 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76608,16 +77344,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1247 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76636,16 +77372,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1247 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76667,16 +77403,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1248 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76695,16 +77431,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1249 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76723,16 +77459,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1249 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76754,16 +77490,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1248 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76778,7 +77514,7 @@ this.back 22 1 return -1390381194 +356473385 1 return.getClass().getName() "java.lang.Object" @@ -76788,16 +77524,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1250 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76812,7 +77548,7 @@ this.back 22 1 x -22953798 +853993923 1 x.getClass().getName() "java.lang.Object" @@ -76822,16 +77558,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1251 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76850,16 +77586,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1251 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 null null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -76881,16 +77617,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1250 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -76905,7 +77641,7 @@ this.back 23 1 x -22953798 +853993923 1 x.getClass().getName() "java.lang.Object" @@ -76915,16 +77651,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1252 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -76943,16 +77679,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1252 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -76974,16 +77710,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1253 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77002,16 +77738,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1253 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77033,16 +77769,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1254 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77061,16 +77797,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1255 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77089,16 +77825,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1255 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77120,16 +77856,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1254 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77144,7 +77880,7 @@ this.back 23 1 return -1390381194 +356473385 1 return.getClass().getName() "java.lang.Object" @@ -77154,16 +77890,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1256 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77182,16 +77918,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1257 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77210,16 +77946,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1257 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77241,16 +77977,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1256 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77265,7 +78001,7 @@ this.back 23 1 return -1390381194 +356473385 1 return.getClass().getName() "java.lang.Object" @@ -77275,16 +78011,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1258 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77303,16 +78039,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1258 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77334,16 +78070,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1259 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77362,16 +78098,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1259 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77393,16 +78129,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1260 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77421,16 +78157,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1261 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77449,16 +78185,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1261 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77480,16 +78216,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1260 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77504,7 +78240,7 @@ this.back 23 1 return -1367164551 +2136344592 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77514,16 +78250,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1262 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77538,7 +78274,7 @@ this.back 23 1 x -1384910173 +1347870667 1 x.getClass().getName() "java.lang.Object" @@ -77548,16 +78284,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1263 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77576,16 +78312,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1263 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 null null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -77607,16 +78343,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1262 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77631,7 +78367,7 @@ this.back 24 1 x -1384910173 +1347870667 1 x.getClass().getName() "java.lang.Object" @@ -77641,16 +78377,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1264 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77669,16 +78405,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1264 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77700,16 +78436,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1265 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77728,16 +78464,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1265 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77759,16 +78495,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1266 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77787,16 +78523,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1267 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77815,16 +78551,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1267 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77846,16 +78582,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1266 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77870,7 +78606,7 @@ this.back 24 1 return -1367164551 +2136344592 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77880,16 +78616,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1268 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77908,16 +78644,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1269 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77936,16 +78672,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1269 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77967,16 +78703,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1268 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -77991,7 +78727,7 @@ this.back 24 1 return -1367164551 +2136344592 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78001,16 +78737,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1270 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78029,16 +78765,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1270 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78060,16 +78796,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1271 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78088,16 +78824,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1271 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78119,16 +78855,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1272 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78147,16 +78883,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1273 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78175,16 +78911,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1273 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78206,16 +78942,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1272 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78230,7 +78966,7 @@ this.back 24 1 return -2007069404 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78240,16 +78976,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1274 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78264,7 +79000,7 @@ this.back 24 1 x -1757511425 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -78274,16 +79010,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1275 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78302,16 +79038,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1275 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 null null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -78333,16 +79069,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1274 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78357,7 +79093,7 @@ this.back 25 1 x -1757511425 +1702146597 1 x.getClass().getName() "DataStructures.MyInteger" @@ -78367,16 +79103,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1276 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78395,16 +79131,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1276 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78426,16 +79162,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1277 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78454,16 +79190,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1277 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78485,16 +79221,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1278 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78513,16 +79249,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1279 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78541,16 +79277,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1279 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78572,16 +79308,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1278 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78596,7 +79332,7 @@ this.back 25 1 return -2007069404 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78606,16 +79342,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1280 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78634,16 +79370,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1281 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78662,16 +79398,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1281 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null 110992469 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78693,16 +79429,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1280 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78717,7 +79453,7 @@ this.back 25 1 return -2007069404 +110992469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78727,16 +79463,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1282 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78755,16 +79491,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1282 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78786,16 +79522,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1283 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78814,16 +79550,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1283 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78845,16 +79581,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1284 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78873,16 +79609,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1285 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78901,16 +79637,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1285 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78932,16 +79668,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1284 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78956,7 +79692,7 @@ this.back 25 1 return -142345952 +329611835 1 return.getClass().getName() "java.lang.Object" @@ -78966,16 +79702,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1286 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -78990,7 +79726,7 @@ this.back 25 1 x -2004439137 +644460953 1 x.getClass().getName() "java.lang.Object" @@ -79000,16 +79736,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1287 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -79028,16 +79764,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1287 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 null null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null] @@ -79059,16 +79795,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1286 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79083,7 +79819,7 @@ this.back 26 1 x -2004439137 +644460953 1 x.getClass().getName() "java.lang.Object" @@ -79093,16 +79829,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1288 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79121,16 +79857,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1288 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79152,16 +79888,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1289 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79180,16 +79916,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1289 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79211,16 +79947,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1290 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79239,16 +79975,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1291 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79267,16 +80003,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1291 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79298,16 +80034,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1290 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79322,7 +80058,7 @@ this.back 26 1 return -142345952 +329611835 1 return.getClass().getName() "java.lang.Object" @@ -79332,16 +80068,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1292 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79360,16 +80096,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1293 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79388,16 +80124,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1293 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null 142345952 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null 329611835 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79419,16 +80155,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1292 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79443,7 +80179,7 @@ this.back 26 1 return -142345952 +329611835 1 return.getClass().getName() "java.lang.Object" @@ -79453,16 +80189,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1294 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79481,16 +80217,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1294 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79512,16 +80248,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1295 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79540,16 +80276,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1295 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79571,16 +80307,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1296 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79599,16 +80335,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1297 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79627,16 +80363,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1297 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79658,16 +80394,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1296 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79682,7 +80418,7 @@ this.back 26 1 return -111632506 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79692,16 +80428,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1298 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79716,7 +80452,7 @@ this.back 26 1 x -1032605070 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79726,16 +80462,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1299 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79754,16 +80490,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1299 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 null null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -79785,16 +80521,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1298 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79809,7 +80545,7 @@ this.back 27 1 x -1032605070 +591723622 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79819,16 +80555,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1300 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79847,16 +80583,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1300 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79878,16 +80614,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1301 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79906,16 +80642,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1301 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79937,16 +80673,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1302 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79965,16 +80701,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1303 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -79993,16 +80729,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1303 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80024,16 +80760,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1302 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80048,7 +80784,7 @@ this.back 27 1 return -111632506 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80058,16 +80794,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1304 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80086,16 +80822,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1305 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80114,16 +80850,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1305 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null 111632506 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null 2091156596 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80145,16 +80881,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1304 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80169,7 +80905,7 @@ this.back 27 1 return -111632506 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80179,16 +80915,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1306 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80207,16 +80943,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1306 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80238,16 +80974,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1307 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80266,16 +81002,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1307 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80297,16 +81033,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1308 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80325,16 +81061,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1309 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80353,16 +81089,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1309 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80384,16 +81120,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1308 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80408,7 +81144,7 @@ this.back 27 1 return -1454304511 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -80418,16 +81154,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1310 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80442,7 +81178,7 @@ this.back 27 1 x -1178060083 +1166726978 1 x.getClass().getName() "java.lang.Object" @@ -80452,16 +81188,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1311 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80480,16 +81216,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1311 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 null null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null] @@ -80511,16 +81247,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1310 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80535,7 +81271,7 @@ this.back 28 1 x -1178060083 +1166726978 1 x.getClass().getName() "java.lang.Object" @@ -80545,16 +81281,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1312 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80573,16 +81309,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1312 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80604,16 +81340,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1313 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80632,16 +81368,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1313 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80663,16 +81399,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1314 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80691,16 +81427,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1315 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80719,16 +81455,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1315 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80750,16 +81486,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1314 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80774,7 +81510,7 @@ this.back 28 1 return -1454304511 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -80784,16 +81520,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1316 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80812,16 +81548,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1317 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80840,16 +81576,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1317 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null 1454304511 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null 863831416 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80871,16 +81607,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1316 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80895,7 +81631,7 @@ this.back 28 1 return -1454304511 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -80905,16 +81641,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1318 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80933,16 +81669,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1318 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80964,16 +81700,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1319 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -80992,16 +81728,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1319 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81023,16 +81759,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1320 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81051,16 +81787,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1321 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81079,16 +81815,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1321 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81110,16 +81846,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1320 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81134,7 +81870,7 @@ this.back 28 1 return -1984529870 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81144,16 +81880,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1322 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81168,7 +81904,7 @@ this.back 28 1 x -2004073288 +95395916 1 x.getClass().getName() "java.lang.Object" @@ -81178,16 +81914,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1323 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81206,16 +81942,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1323 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 null] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null] @@ -81237,16 +81973,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1322 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81261,7 +81997,7 @@ this.back 29 1 x -2004073288 +95395916 1 x.getClass().getName() "java.lang.Object" @@ -81271,16 +82007,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1324 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81299,16 +82035,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1324 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81330,16 +82066,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1325 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81358,16 +82094,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1325 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81389,16 +82125,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1326 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81417,16 +82153,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1327 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81445,16 +82181,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1327 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81476,16 +82212,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1326 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81500,7 +82236,7 @@ this.back 29 1 return -1984529870 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81510,16 +82246,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1328 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81538,16 +82274,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1329 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81566,16 +82302,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1329 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null 1984529870 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null 1508395126 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81597,16 +82333,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1328 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81621,7 +82357,7 @@ this.back 29 1 return -1984529870 +1508395126 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81631,16 +82367,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1330 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81659,16 +82395,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1330 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81690,16 +82426,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1331 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81718,16 +82454,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1331 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81749,16 +82485,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1332 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81777,16 +82513,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1333 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81805,16 +82541,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1333 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81836,16 +82572,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1332 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81860,7 +82596,7 @@ this.back 29 1 return -1425003533 +1638172114 1 return.getClass().getName() "java.lang.Object" @@ -81870,16 +82606,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1334 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81894,7 +82630,7 @@ this.back 29 1 x -1326231868 +1856056345 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81904,16 +82640,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1335 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81932,16 +82668,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1335 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[null null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() [null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81963,16 +82699,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1334 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -81987,7 +82723,7 @@ this.back 0 1 x -1326231868 +1856056345 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81997,16 +82733,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1336 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82025,16 +82761,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1336 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82056,16 +82792,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1337 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82084,16 +82820,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1337 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82115,16 +82851,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1338 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82143,16 +82879,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1339 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82171,16 +82907,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1339 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82202,16 +82938,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1338 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82226,7 +82962,7 @@ this.back 0 1 return -1425003533 +1638172114 1 return.getClass().getName() "java.lang.Object" @@ -82236,16 +82972,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1340 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82264,16 +83000,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1341 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82292,16 +83028,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1341 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null 1425003533 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null 1638172114 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82323,16 +83059,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1340 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82347,7 +83083,7 @@ this.back 0 1 return -1425003533 +1638172114 1 return.getClass().getName() "java.lang.Object" @@ -82357,16 +83093,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1342 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82385,16 +83121,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1342 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82416,16 +83152,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1343 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82444,16 +83180,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1343 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82475,16 +83211,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1344 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82503,16 +83239,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1345 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82531,16 +83267,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1345 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82562,16 +83298,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1344 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82586,7 +83322,7 @@ this.back 0 1 return -1296747787 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82596,16 +83332,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1346 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82620,7 +83356,7 @@ this.back 0 1 x -1246233263 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82630,16 +83366,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1347 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82658,16 +83394,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1347 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 null null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 null null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82689,16 +83425,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1346 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82713,7 +83449,7 @@ this.back 1 1 x -1246233263 +1778535015 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82723,16 +83459,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1348 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82751,16 +83487,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1348 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82782,16 +83518,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1349 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82810,16 +83546,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1349 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82841,16 +83577,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1350 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82869,16 +83605,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1351 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82897,16 +83633,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1351 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82928,16 +83664,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1350 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82952,7 +83688,7 @@ this.back 1 1 return -1296747787 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82962,16 +83698,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1352 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -82990,16 +83726,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1353 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83018,16 +83754,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1353 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null 1296747787 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null 972765878 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83049,16 +83785,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1352 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83073,7 +83809,7 @@ this.back 1 1 return -1296747787 +972765878 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83083,16 +83819,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1354 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83111,16 +83847,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1354 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83142,16 +83878,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1355 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83170,16 +83906,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1355 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83201,16 +83937,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1356 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83229,16 +83965,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1357 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83257,16 +83993,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1357 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83288,16 +84024,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1356 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83312,7 +84048,7 @@ this.back 1 1 return -1776006353 +1651945012 1 return.getClass().getName() "java.lang.Object" @@ -83322,16 +84058,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1358 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83346,7 +84082,7 @@ this.back 1 1 x -1034442050 +2032251042 1 x.getClass().getName() "java.lang.Object" @@ -83356,16 +84092,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1359 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83384,16 +84120,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1359 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 null null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 null null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83415,16 +84151,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1358 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83439,7 +84175,7 @@ this.back 2 1 x -1034442050 +2032251042 1 x.getClass().getName() "java.lang.Object" @@ -83449,16 +84185,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1360 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83477,16 +84213,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1360 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83508,16 +84244,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1361 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83536,16 +84272,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1361 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83567,16 +84303,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1362 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83595,16 +84331,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1363 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83623,16 +84359,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1363 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83654,16 +84390,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1362 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83678,7 +84414,7 @@ this.back 2 1 return -1776006353 +1651945012 1 return.getClass().getName() "java.lang.Object" @@ -83688,16 +84424,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1364 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83716,16 +84452,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1365 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83744,16 +84480,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1365 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null 1776006353 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null 1651945012 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83775,16 +84511,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1364 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83799,7 +84535,7 @@ this.back 2 1 return -1776006353 +1651945012 1 return.getClass().getName() "java.lang.Object" @@ -83809,16 +84545,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1366 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83837,16 +84573,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1366 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83868,16 +84604,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1367 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83896,16 +84632,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1367 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83927,16 +84663,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1368 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83955,16 +84691,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1369 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -83983,16 +84719,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1369 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84014,16 +84750,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1368 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84038,7 +84774,7 @@ this.back 2 1 return -1463565218 +2034688500 1 return.getClass().getName() "java.lang.Object" @@ -84048,16 +84784,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1370 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84072,7 +84808,7 @@ this.back 2 1 x -1987411885 +24433162 1 x.getClass().getName() "java.lang.Object" @@ -84082,16 +84818,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1371 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84110,16 +84846,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1371 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 null null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 null null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84141,16 +84877,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1370 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84165,7 +84901,7 @@ this.back 3 1 x -1987411885 +24433162 1 x.getClass().getName() "java.lang.Object" @@ -84175,16 +84911,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1372 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84203,16 +84939,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1372 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84234,16 +84970,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1373 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84262,16 +84998,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1373 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84293,16 +85029,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1374 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84321,16 +85057,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1375 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84349,16 +85085,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1375 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84380,16 +85116,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1374 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84404,7 +85140,7 @@ this.back 3 1 return -1463565218 +2034688500 1 return.getClass().getName() "java.lang.Object" @@ -84414,16 +85150,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1376 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84442,16 +85178,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1377 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84470,16 +85206,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1377 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null 1463565218 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null 2034688500 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84501,16 +85237,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1376 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84525,7 +85261,7 @@ this.back 3 1 return -1463565218 +2034688500 1 return.getClass().getName() "java.lang.Object" @@ -84535,16 +85271,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1378 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84563,16 +85299,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1378 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84594,16 +85330,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1379 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84622,16 +85358,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1379 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84653,16 +85389,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1380 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84681,16 +85417,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1381 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84709,16 +85445,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1381 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84740,16 +85476,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1380 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84764,7 +85500,7 @@ this.back 3 1 return -862926188 +1007251739 1 return.getClass().getName() "java.lang.Object" @@ -84774,16 +85510,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1382 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84798,7 +85534,7 @@ this.back 3 1 x -470905757 +1725097945 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84808,16 +85544,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1383 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84836,16 +85572,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1383 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 null null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 null null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84867,16 +85603,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1382 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84891,7 +85627,7 @@ this.back 4 1 x -470905757 +1725097945 1 x.getClass().getName() "DataStructures.MyInteger" @@ -84901,16 +85637,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1384 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84929,16 +85665,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1384 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84960,16 +85696,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1385 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -84988,16 +85724,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1385 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85019,16 +85755,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1386 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85047,16 +85783,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1387 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85075,16 +85811,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1387 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85106,16 +85842,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1386 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85130,7 +85866,7 @@ this.back 4 1 return -862926188 +1007251739 1 return.getClass().getName() "java.lang.Object" @@ -85140,16 +85876,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1388 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85168,16 +85904,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1389 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85196,16 +85932,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1389 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null 862926188 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null 1007251739 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85227,16 +85963,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1388 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85251,7 +85987,7 @@ this.back 4 1 return -862926188 +1007251739 1 return.getClass().getName() "java.lang.Object" @@ -85261,16 +85997,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1390 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85289,16 +86025,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1390 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85320,16 +86056,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1391 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85348,16 +86084,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1391 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85379,16 +86115,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1392 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85407,16 +86143,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1393 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85435,16 +86171,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1393 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85466,16 +86202,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1392 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85490,7 +86226,7 @@ this.back 4 1 return -1243373525 +1556595366 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85500,16 +86236,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1394 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85524,7 +86260,7 @@ this.back 4 1 x -1035818704 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85534,16 +86270,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1395 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85562,16 +86298,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1395 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 null null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 null null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85593,16 +86329,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1394 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85617,7 +86353,7 @@ this.back 5 1 x -1035818704 +519821334 1 x.getClass().getName() "DataStructures.MyInteger" @@ -85627,16 +86363,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1396 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85655,16 +86391,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1396 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85686,16 +86422,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1397 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85714,16 +86450,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1397 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85745,16 +86481,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1398 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85773,16 +86509,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1399 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85801,16 +86537,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1399 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85832,16 +86568,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1398 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85856,7 +86592,7 @@ this.back 5 1 return -1243373525 +1556595366 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85866,16 +86602,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1400 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85894,16 +86630,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1401 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85922,16 +86658,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1401 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null 1243373525 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null 1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85953,16 +86689,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1400 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -85977,7 +86713,7 @@ this.back 5 1 return -1243373525 +1556595366 1 return.getClass().getName() "DataStructures.MyInteger" @@ -85987,16 +86723,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1402 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86015,16 +86751,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1402 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86046,16 +86782,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1403 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86074,16 +86810,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1403 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86105,16 +86841,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1404 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86133,16 +86869,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1405 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86161,16 +86897,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1405 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86192,16 +86928,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1404 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86216,7 +86952,7 @@ this.back 5 1 return -215465718 +194494468 1 return.getClass().getName() "java.lang.Object" @@ -86226,16 +86962,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1406 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86250,7 +86986,7 @@ this.back 5 1 x -1502515546 +1781256139 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86260,16 +86996,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1407 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86288,16 +87024,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1407 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 null null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 null null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86319,16 +87055,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1406 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86343,7 +87079,7 @@ this.back 6 1 x -1502515546 +1781256139 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86353,16 +87089,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1408 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86381,16 +87117,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1408 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86412,16 +87148,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1409 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86440,16 +87176,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1409 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86471,16 +87207,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1410 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86499,16 +87235,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1411 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86527,16 +87263,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1411 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86558,16 +87294,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1410 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86582,7 +87318,7 @@ this.back 6 1 return -215465718 +194494468 1 return.getClass().getName() "java.lang.Object" @@ -86592,16 +87328,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1412 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86620,16 +87356,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1413 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86648,16 +87384,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1413 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null 215465718 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86679,16 +87415,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1412 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86703,7 +87439,7 @@ this.back 6 1 return -215465718 +194494468 1 return.getClass().getName() "java.lang.Object" @@ -86713,16 +87449,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1414 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86741,16 +87477,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1414 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86772,16 +87508,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1415 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86800,16 +87536,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1415 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86831,16 +87567,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1416 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86859,16 +87595,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1417 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86887,16 +87623,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1417 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86918,16 +87654,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1416 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86942,7 +87678,7 @@ this.back 6 1 return -674893584 +1167116739 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86952,16 +87688,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1418 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -86976,7 +87712,7 @@ this.back 6 1 x -518576549 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -86986,16 +87722,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1419 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87014,16 +87750,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1419 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 null null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 null null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87045,16 +87781,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1418 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87069,7 +87805,7 @@ this.back 7 1 x -518576549 +1307096070 1 x.getClass().getName() "DataStructures.MyInteger" @@ -87079,16 +87815,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1420 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87107,16 +87843,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1420 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87138,16 +87874,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1421 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87166,16 +87902,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1421 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87197,16 +87933,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1422 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87225,16 +87961,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1423 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87253,16 +87989,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1423 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87284,16 +88020,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1422 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87308,7 +88044,7 @@ this.back 7 1 return -674893584 +1167116739 1 return.getClass().getName() "DataStructures.MyInteger" @@ -87318,16 +88054,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1424 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87346,16 +88082,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1425 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87374,16 +88110,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1425 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null 674893584 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87405,16 +88141,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1424 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87429,7 +88165,7 @@ this.back 7 1 return -674893584 +1167116739 1 return.getClass().getName() "DataStructures.MyInteger" @@ -87439,16 +88175,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1426 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87467,16 +88203,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1426 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87498,16 +88234,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1427 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87526,16 +88262,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1427 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87557,16 +88293,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1428 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87585,16 +88321,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1429 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87613,16 +88349,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1429 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87644,16 +88380,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1428 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87668,7 +88404,7 @@ this.back 7 1 return -22953798 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -87678,16 +88414,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1430 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87702,7 +88438,7 @@ this.back 7 1 x -1227419517 +1014328909 1 x.getClass().getName() "java.lang.Object" @@ -87712,16 +88448,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1431 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87740,16 +88476,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1431 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 null null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 null null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87771,16 +88507,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1430 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87795,7 +88531,7 @@ this.back 8 1 x -1227419517 +1014328909 1 x.getClass().getName() "java.lang.Object" @@ -87805,16 +88541,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1432 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87833,16 +88569,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1432 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87864,16 +88600,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1433 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87892,16 +88628,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1433 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87923,16 +88659,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1434 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87951,16 +88687,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1435 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -87979,16 +88715,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1435 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88010,16 +88746,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1434 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88034,7 +88770,7 @@ this.back 8 1 return -22953798 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -88044,16 +88780,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1436 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88072,16 +88808,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1437 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88100,16 +88836,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1437 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88131,16 +88867,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1436 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88155,7 +88891,7 @@ this.back 8 1 return -22953798 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -88165,16 +88901,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1438 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88193,16 +88929,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1438 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88224,16 +88960,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1439 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88252,16 +88988,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1439 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88283,16 +89019,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1440 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88311,16 +89047,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1441 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88339,16 +89075,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1441 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88370,16 +89106,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1440 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88394,7 +89130,7 @@ this.back 8 1 return -1384910173 +1347870667 1 return.getClass().getName() "java.lang.Object" @@ -88404,16 +89140,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1442 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88428,7 +89164,7 @@ this.back 8 1 x -511909137 +2081303229 1 x.getClass().getName() "java.lang.Object" @@ -88438,16 +89174,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1443 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88466,16 +89202,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1443 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 null null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 null null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88497,16 +89233,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1442 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88521,7 +89257,7 @@ this.back 9 1 x -511909137 +2081303229 1 x.getClass().getName() "java.lang.Object" @@ -88531,16 +89267,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1444 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88559,16 +89295,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1444 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88590,16 +89326,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1445 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88618,16 +89354,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1445 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88649,16 +89385,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1446 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88677,16 +89413,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1447 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88705,16 +89441,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1447 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88736,16 +89472,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1446 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88760,7 +89496,7 @@ this.back 9 1 return -1384910173 +1347870667 1 return.getClass().getName() "java.lang.Object" @@ -88770,16 +89506,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1448 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88798,16 +89534,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1449 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88826,16 +89562,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1449 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null 1347870667 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88857,16 +89593,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1448 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88881,7 +89617,7 @@ this.back 9 1 return -1384910173 +1347870667 1 return.getClass().getName() "java.lang.Object" @@ -88891,16 +89627,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1450 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88919,16 +89655,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1450 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88950,16 +89686,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1451 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -88978,16 +89714,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1451 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89009,16 +89745,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1452 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89037,16 +89773,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1453 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89065,16 +89801,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1453 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89096,16 +89832,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1452 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89120,7 +89856,7 @@ this.back 9 1 return -1757511425 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89130,16 +89866,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1454 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89154,7 +89890,7 @@ this.back 9 1 x -837375677 +1223685984 1 x.getClass().getName() "java.lang.Object" @@ -89164,16 +89900,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1455 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89192,16 +89928,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1455 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 null null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 null null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89223,16 +89959,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1454 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89247,7 +89983,7 @@ this.back 10 1 x -837375677 +1223685984 1 x.getClass().getName() "java.lang.Object" @@ -89257,16 +89993,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1456 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89285,16 +90021,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1456 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89316,16 +90052,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1457 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89344,16 +90080,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1457 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89375,16 +90111,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1458 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89403,16 +90139,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1459 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89431,16 +90167,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1459 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89462,16 +90198,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1458 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89486,7 +90222,7 @@ this.back 10 1 return -1757511425 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89496,16 +90232,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1460 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89524,16 +90260,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1461 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89552,16 +90288,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1461 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null 1757511425 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null 1702146597 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89583,16 +90319,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1460 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89607,7 +90343,7 @@ this.back 10 1 return -1757511425 +1702146597 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89617,16 +90353,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1462 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89645,16 +90381,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1462 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89676,16 +90412,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1463 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89704,16 +90440,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1463 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89735,16 +90471,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1464 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89763,16 +90499,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1465 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89791,16 +90527,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1465 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89822,16 +90558,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1464 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89846,7 +90582,7 @@ this.back 10 1 return -2004439137 +644460953 1 return.getClass().getName() "java.lang.Object" @@ -89856,16 +90592,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1466 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89880,7 +90616,7 @@ this.back 10 1 x -1312664548 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89890,16 +90626,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1467 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89918,16 +90654,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1467 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 null null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 null null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89949,16 +90685,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1466 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -89973,7 +90709,7 @@ this.back 11 1 x -1312664548 +1076835071 1 x.getClass().getName() "DataStructures.MyInteger" @@ -89983,16 +90719,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1468 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90011,16 +90747,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1468 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90042,16 +90778,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1469 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90070,16 +90806,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1469 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90101,16 +90837,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1470 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90129,16 +90865,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1471 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90157,16 +90893,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1471 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90188,16 +90924,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1470 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90212,7 +90948,7 @@ this.back 11 1 return -2004439137 +644460953 1 return.getClass().getName() "java.lang.Object" @@ -90222,16 +90958,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1472 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90250,16 +90986,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1473 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90278,16 +91014,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1473 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null 2004439137 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null 644460953 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90309,16 +91045,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1472 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90333,7 +91069,7 @@ this.back 11 1 return -2004439137 +644460953 1 return.getClass().getName() "java.lang.Object" @@ -90343,16 +91079,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1474 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90371,16 +91107,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1474 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90402,16 +91138,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1475 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90430,16 +91166,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1475 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90461,16 +91197,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1476 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90489,16 +91225,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1477 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90517,16 +91253,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1477 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90548,16 +91284,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1476 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90572,7 +91308,7 @@ this.back 11 1 return -1032605070 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90582,16 +91318,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1478 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90606,7 +91342,7 @@ this.back 11 1 x -853552605 +1463757745 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90616,16 +91352,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1479 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90644,16 +91380,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1479 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 null null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 null null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90675,16 +91411,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1478 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90699,7 +91435,7 @@ this.back 12 1 x -853552605 +1463757745 1 x.getClass().getName() "DataStructures.MyInteger" @@ -90709,16 +91445,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1480 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90737,16 +91473,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1480 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90768,16 +91504,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1481 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90796,16 +91532,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1481 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90827,16 +91563,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1482 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90855,16 +91591,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1483 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90883,16 +91619,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1483 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90914,16 +91650,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1482 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90938,7 +91674,7 @@ this.back 12 1 return -1032605070 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -90948,16 +91684,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1484 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -90976,16 +91712,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1485 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -91004,16 +91740,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1485 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null 1032605070 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null 591723622 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object"] @@ -91035,16 +91771,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1484 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91059,7 +91795,7 @@ this.back 12 1 return -1032605070 +591723622 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91069,16 +91805,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1486 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91097,16 +91833,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1486 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91128,16 +91864,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1487 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91156,16 +91892,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1487 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91187,16 +91923,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1488 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91215,16 +91951,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1489 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91243,16 +91979,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1489 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91274,16 +92010,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1488 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91298,7 +92034,7 @@ this.back 12 1 return -1178060083 +1166726978 1 return.getClass().getName() "java.lang.Object" @@ -91308,16 +92044,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1490 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91332,7 +92068,7 @@ this.back 12 1 x -467870275 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91342,16 +92078,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1491 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91370,16 +92106,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1491 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 null null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 null null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91401,16 +92137,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1490 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91425,7 +92161,7 @@ this.back 13 1 x -467870275 +1525262377 1 x.getClass().getName() "DataStructures.MyInteger" @@ -91435,16 +92171,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1492 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91463,16 +92199,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1492 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91494,16 +92230,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1493 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91522,16 +92258,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1493 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91553,16 +92289,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1494 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91581,16 +92317,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1495 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91609,16 +92345,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1495 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91640,16 +92376,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1494 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91664,7 +92400,7 @@ this.back 13 1 return -1178060083 +1166726978 1 return.getClass().getName() "java.lang.Object" @@ -91674,16 +92410,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1496 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91702,16 +92438,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1497 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91730,16 +92466,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1497 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null 1178060083 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null 1166726978 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null "java.lang.Object" "java.lang.Object"] @@ -91761,16 +92497,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1496 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91785,7 +92521,7 @@ this.back 13 1 return -1178060083 +1166726978 1 return.getClass().getName() "java.lang.Object" @@ -91795,16 +92531,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1498 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91823,16 +92559,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1498 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91854,16 +92590,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1499 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91882,16 +92618,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1499 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91913,16 +92649,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1500 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91941,16 +92677,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1501 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -91969,16 +92705,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1501 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -92000,16 +92736,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1500 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -92024,7 +92760,7 @@ this.back 13 1 return -2004073288 +95395916 1 return.getClass().getName() "java.lang.Object" @@ -92034,16 +92770,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1502 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -92058,7 +92794,7 @@ this.back 13 1 x -1558080258 +1837760739 1 x.getClass().getName() "java.lang.Object" @@ -92068,16 +92804,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1503 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -92096,16 +92832,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1503 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 null null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 null null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null "java.lang.Object"] @@ -92127,16 +92863,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1502 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92151,7 +92887,7 @@ this.back 14 1 x -1558080258 +1837760739 1 x.getClass().getName() "java.lang.Object" @@ -92161,16 +92897,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1504 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92189,16 +92925,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1504 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92220,16 +92956,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1505 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92248,16 +92984,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1505 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92279,16 +93015,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1506 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92307,16 +93043,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1507 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92335,16 +93071,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1507 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92366,16 +93102,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1506 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92390,7 +93126,7 @@ this.back 14 1 return -2004073288 +95395916 1 return.getClass().getName() "java.lang.Object" @@ -92400,16 +93136,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1508 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92428,16 +93164,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1509 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92456,16 +93192,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1509 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null 2004073288] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null 95395916] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null "java.lang.Object"] @@ -92487,16 +93223,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1508 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92511,7 +93247,7 @@ this.back 14 1 return -2004073288 +95395916 1 return.getClass().getName() "java.lang.Object" @@ -92521,16 +93257,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1510 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92549,16 +93285,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1510 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92580,16 +93316,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1511 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92608,16 +93344,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1511 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92639,16 +93375,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1512 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92667,16 +93403,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1513 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92695,16 +93431,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1513 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92726,16 +93462,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1512 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92750,7 +93486,7 @@ this.back 14 1 return -1326231868 +1856056345 1 return.getClass().getName() "DataStructures.MyInteger" @@ -92760,16 +93496,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1514 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92784,7 +93520,7 @@ this.back 14 1 x -239304688 +1418428263 1 x.getClass().getName() "java.lang.Object" @@ -92794,16 +93530,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1515 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92822,16 +93558,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1515 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 null null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -92853,16 +93589,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1514 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -92877,7 +93613,7 @@ this.back 15 1 x -239304688 +1418428263 1 x.getClass().getName() "java.lang.Object" @@ -92887,16 +93623,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1516 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -92915,16 +93651,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1516 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -92946,16 +93682,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1517 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -92974,16 +93710,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1517 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93005,16 +93741,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1518 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93033,16 +93769,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1519 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93061,16 +93797,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1519 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93092,16 +93828,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1518 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93116,7 +93852,7 @@ this.back 15 1 return -1326231868 +1856056345 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93126,16 +93862,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1520 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93154,16 +93890,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1521 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93182,16 +93918,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1521 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93213,16 +93949,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1520 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93237,7 +93973,7 @@ this.back 15 1 return -1326231868 +1856056345 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93247,16 +93983,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1522 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93275,16 +94011,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1522 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93306,16 +94042,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1523 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93334,16 +94070,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1523 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93365,16 +94101,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1524 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93393,16 +94129,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1525 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93421,16 +94157,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1525 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93452,16 +94188,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1524 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93476,7 +94212,7 @@ this.back 15 1 return -1246233263 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93486,16 +94222,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1526 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93510,7 +94246,7 @@ this.back 15 1 x -1904504032 +2059904228 1 x.getClass().getName() "java.lang.Object" @@ -93520,16 +94256,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1527 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93548,16 +94284,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1527 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 null null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -93579,16 +94315,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1526 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93603,7 +94339,7 @@ this.back 16 1 x -1904504032 +2059904228 1 x.getClass().getName() "java.lang.Object" @@ -93613,16 +94349,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1528 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93641,16 +94377,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1528 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93672,16 +94408,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1529 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93700,16 +94436,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1529 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93731,16 +94467,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1530 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93759,16 +94495,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1531 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93787,16 +94523,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1531 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93818,16 +94554,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1530 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93842,7 +94578,7 @@ this.back 16 1 return -1246233263 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93852,16 +94588,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1532 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93880,16 +94616,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1533 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93908,16 +94644,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1533 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93939,16 +94675,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1532 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -93963,7 +94699,7 @@ this.back 16 1 return -1246233263 +1778535015 1 return.getClass().getName() "DataStructures.MyInteger" @@ -93973,16 +94709,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1534 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94001,16 +94737,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1534 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94032,16 +94768,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1535 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94060,16 +94796,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1535 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94091,16 +94827,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1536 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94119,16 +94855,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1537 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94147,16 +94883,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1537 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94178,16 +94914,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1536 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94202,7 +94938,7 @@ this.back 16 1 return -1034442050 +2032251042 1 return.getClass().getName() "java.lang.Object" @@ -94212,16 +94948,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1538 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94236,7 +94972,7 @@ this.back 16 1 x -755507289 +1836643189 1 x.getClass().getName() "java.lang.Object" @@ -94246,16 +94982,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1539 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94274,16 +95010,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1539 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 null null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null] @@ -94305,16 +95041,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1538 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94329,7 +95065,7 @@ this.back 17 1 x -755507289 +1836643189 1 x.getClass().getName() "java.lang.Object" @@ -94339,16 +95075,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1540 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94367,16 +95103,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1540 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94398,16 +95134,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1541 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94426,16 +95162,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1541 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94457,16 +95193,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1542 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94485,16 +95221,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1543 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94513,16 +95249,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1543 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94544,16 +95280,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1542 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94568,7 +95304,7 @@ this.back 17 1 return -1034442050 +2032251042 1 return.getClass().getName() "java.lang.Object" @@ -94578,16 +95314,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1544 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94606,16 +95342,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1545 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94634,16 +95370,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1545 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94665,16 +95401,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1544 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94689,7 +95425,7 @@ this.back 17 1 return -1034442050 +2032251042 1 return.getClass().getName() "java.lang.Object" @@ -94699,16 +95435,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1546 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94727,16 +95463,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1546 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94758,16 +95494,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1547 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94786,16 +95522,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1547 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94817,16 +95553,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1548 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94845,16 +95581,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1549 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94873,16 +95609,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1549 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94904,16 +95640,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1548 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94928,7 +95664,7 @@ this.back 17 1 return -1987411885 +24433162 1 return.getClass().getName() "java.lang.Object" @@ -94938,16 +95674,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1550 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -94962,7 +95698,7 @@ this.back 17 1 x -1887685159 +1355316001 1 x.getClass().getName() "java.lang.Object" @@ -94972,16 +95708,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1551 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -95000,16 +95736,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1551 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 null null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -95031,16 +95767,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1550 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95055,7 +95791,7 @@ this.back 18 1 x -1887685159 +1355316001 1 x.getClass().getName() "java.lang.Object" @@ -95065,16 +95801,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1552 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95093,16 +95829,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1552 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95124,16 +95860,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1553 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95152,16 +95888,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1553 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95183,16 +95919,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1554 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95211,16 +95947,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1555 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95239,16 +95975,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1555 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95270,16 +96006,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1554 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95294,7 +96030,7 @@ this.back 18 1 return -1987411885 +24433162 1 return.getClass().getName() "java.lang.Object" @@ -95304,16 +96040,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1556 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95332,16 +96068,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1557 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95360,16 +96096,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1557 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95391,16 +96127,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1556 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95415,7 +96151,7 @@ this.back 18 1 return -1987411885 +24433162 1 return.getClass().getName() "java.lang.Object" @@ -95425,16 +96161,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1558 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95453,16 +96189,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1558 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95484,16 +96220,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1559 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95512,16 +96248,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1559 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95543,16 +96279,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1560 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95571,16 +96307,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1561 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95599,16 +96335,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1561 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95630,16 +96366,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1560 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95654,7 +96390,7 @@ this.back 18 1 return -470905757 +1725097945 1 return.getClass().getName() "DataStructures.MyInteger" @@ -95664,16 +96400,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1562 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95688,7 +96424,7 @@ this.back 18 1 x -1548550182 +1597462040 1 x.getClass().getName() "java.lang.Object" @@ -95698,16 +96434,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1563 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95726,16 +96462,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1563 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 null null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -95757,16 +96493,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1562 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95781,7 +96517,7 @@ this.back 19 1 x -1548550182 +1597462040 1 x.getClass().getName() "java.lang.Object" @@ -95791,16 +96527,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1564 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95819,16 +96555,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1564 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95850,16 +96586,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1565 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95878,16 +96614,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1565 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95909,16 +96645,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1566 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95937,16 +96673,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1567 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95965,16 +96701,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1567 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -95996,16 +96732,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1566 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96020,7 +96756,7 @@ this.back 19 1 return -470905757 +1725097945 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96030,16 +96766,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1568 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96058,16 +96794,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1569 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96086,16 +96822,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1569 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null 470905757 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null 1725097945 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96117,16 +96853,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1568 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96141,7 +96877,7 @@ this.back 19 1 return -470905757 +1725097945 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96151,16 +96887,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1570 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96179,16 +96915,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1570 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96210,16 +96946,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1571 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96238,16 +96974,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1571 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96269,16 +97005,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1572 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96297,16 +97033,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1573 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96325,16 +97061,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1573 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96356,16 +97092,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1572 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96380,7 +97116,7 @@ this.back 19 1 return -1035818704 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96390,16 +97126,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1574 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96414,7 +97150,7 @@ this.back 19 1 x -1128590881 +403716510 1 x.getClass().getName() "java.lang.Object" @@ -96424,16 +97160,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1575 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96452,16 +97188,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1575 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 null null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -96483,16 +97219,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1574 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96507,7 +97243,7 @@ this.back 20 1 x -1128590881 +403716510 1 x.getClass().getName() "java.lang.Object" @@ -96517,16 +97253,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1576 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96545,16 +97281,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1576 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96576,16 +97312,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1577 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96604,16 +97340,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1577 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96635,16 +97371,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1578 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96663,16 +97399,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1579 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96691,16 +97427,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1579 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96722,16 +97458,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1578 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96746,7 +97482,7 @@ this.back 20 1 return -1035818704 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96756,16 +97492,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1580 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96784,16 +97520,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1581 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96812,16 +97548,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1581 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null 1035818704 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null 519821334 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96843,16 +97579,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1580 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96867,7 +97603,7 @@ this.back 20 1 return -1035818704 +519821334 1 return.getClass().getName() "DataStructures.MyInteger" @@ -96877,16 +97613,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1582 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96905,16 +97641,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1582 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96936,16 +97672,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1583 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96964,16 +97700,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1583 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -96995,16 +97731,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1584 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97023,16 +97759,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1585 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97051,16 +97787,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1585 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97082,16 +97818,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1584 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97106,7 +97842,7 @@ this.back 20 1 return -1502515546 +1781256139 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97116,16 +97852,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1586 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97140,7 +97876,7 @@ this.back 20 1 x -1651366663 +853119666 1 x.getClass().getName() "java.lang.Object" @@ -97150,16 +97886,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1587 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97178,16 +97914,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1587 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 null null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 null null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -97209,16 +97945,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1586 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97233,7 +97969,7 @@ this.back 21 1 x -1651366663 +853119666 1 x.getClass().getName() "java.lang.Object" @@ -97243,16 +97979,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1588 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97271,16 +98007,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1588 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97302,16 +98038,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1589 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97330,16 +98066,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1589 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97361,16 +98097,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1590 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97389,16 +98125,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1591 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97417,16 +98153,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1591 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97448,16 +98184,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1590 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97472,7 +98208,7 @@ this.back 21 1 return -1502515546 +1781256139 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97482,16 +98218,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1592 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97510,16 +98246,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1593 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97538,16 +98274,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1593 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null 1502515546 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null 1781256139 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97569,16 +98305,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1592 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97593,7 +98329,7 @@ this.back 21 1 return -1502515546 +1781256139 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97603,16 +98339,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1594 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97631,16 +98367,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1594 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97662,16 +98398,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1595 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97690,16 +98426,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1595 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97721,16 +98457,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1596 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97749,16 +98485,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1597 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97777,16 +98513,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1597 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97808,16 +98544,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1596 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97832,7 +98568,7 @@ this.back 21 1 return -518576549 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -97842,16 +98578,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1598 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97866,7 +98602,7 @@ this.back 21 1 x -440851213 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97876,16 +98612,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1599 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97904,16 +98640,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1599 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 null null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 null null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -97935,16 +98671,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1598 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -97959,7 +98695,7 @@ this.back 22 1 x -440851213 +559670971 1 x.getClass().getName() "DataStructures.MyInteger" @@ -97969,16 +98705,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1600 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -97997,16 +98733,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1600 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98028,16 +98764,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1601 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98056,16 +98792,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1601 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98087,16 +98823,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1602 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98115,16 +98851,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1603 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98143,16 +98879,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1603 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98174,16 +98910,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1602 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98198,7 +98934,7 @@ this.back 22 1 return -518576549 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98208,16 +98944,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1604 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98236,16 +98972,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1605 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98264,16 +99000,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1605 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null 518576549 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null 1307096070 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98295,16 +99031,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1604 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98319,7 +99055,7 @@ this.back 22 1 return -518576549 +1307096070 1 return.getClass().getName() "DataStructures.MyInteger" @@ -98329,16 +99065,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1606 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98357,16 +99093,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1606 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98388,16 +99124,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1607 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98416,16 +99152,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1607 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98447,16 +99183,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1608 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98475,16 +99211,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1609 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98503,16 +99239,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1609 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98534,16 +99270,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1608 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98558,7 +99294,7 @@ this.back 22 1 return -1227419517 +1014328909 1 return.getClass().getName() "java.lang.Object" @@ -98568,16 +99304,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER this_invocation_nonce 1610 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98592,7 +99328,7 @@ this.back 22 1 x -567754741 +1144648478 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98602,16 +99338,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1611 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98630,16 +99366,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1611 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 null null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 null null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -98661,16 +99397,16 @@ DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 this_invocation_nonce 1610 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98685,7 +99421,7 @@ this.back 23 1 x -567754741 +1144648478 1 x.getClass().getName() "DataStructures.MyInteger" @@ -98695,16 +99431,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1612 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98723,16 +99459,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1612 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98754,16 +99490,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1613 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98782,16 +99518,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1613 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98813,16 +99549,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1614 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98841,16 +99577,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1615 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98869,16 +99605,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1615 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98900,16 +99636,16 @@ DataStructures.QueueAr.getFront():::EXIT76 this_invocation_nonce 1614 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98924,7 +99660,7 @@ this.back 23 1 return -1227419517 +1014328909 1 return.getClass().getName() "java.lang.Object" @@ -98934,16 +99670,16 @@ DataStructures.QueueAr.dequeue():::ENTER this_invocation_nonce 1616 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98962,16 +99698,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1617 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -98990,16 +99726,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1617 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null 1227419517 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null 1014328909 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99021,16 +99757,16 @@ DataStructures.QueueAr.dequeue():::EXIT93 this_invocation_nonce 1616 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99045,7 +99781,7 @@ this.back 23 1 return -1227419517 +1014328909 1 return.getClass().getName() "java.lang.Object" @@ -99055,16 +99791,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1618 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99083,16 +99819,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1618 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99114,16 +99850,16 @@ DataStructures.QueueAr.isFull():::ENTER this_invocation_nonce 1619 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99142,16 +99878,16 @@ DataStructures.QueueAr.isFull():::EXIT53 this_invocation_nonce 1619 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99173,16 +99909,16 @@ DataStructures.QueueAr.getFront():::ENTER this_invocation_nonce 1620 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99201,16 +99937,16 @@ DataStructures.QueueAr.isEmpty():::ENTER this_invocation_nonce 1621 this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99229,115 +99965,16 @@ DataStructures.QueueAr.isEmpty():::EXIT44 this_invocation_nonce 1621 this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] -1 -this.currentSize -15 -1 -this.front -9 -1 -this.back -23 -1 -return -false -1 - -DataStructures.QueueAr.getFront():::EXIT76 -this_invocation_nonce -1620 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] -1 -this.currentSize -15 -1 -this.front -9 -1 -this.back -23 -1 -return -511909137 -1 -return.getClass().getName() -"java.lang.Object" -1 - -DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER -this_invocation_nonce -1622 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] -1 -this.currentSize -15 -1 -this.front -9 -1 -this.back -23 -1 -x -984088366 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.QueueAr.isFull():::ENTER -this_invocation_nonce -1623 -this -413828078 +592179046 1 this.theArray -1656457960 +1937348256 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] +[null null null null null null null null null 2081303229 1223685984 1076835071 1463757745 1525262377 1837760739 1418428263 2059904228 1836643189 1355316001 1597462040 403716510 853119666 559670971 1144648478 null null null null null null] 1 this.theArray[..].getClass().getName() [null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -99351,633 +99988,6 @@ this.front this.back 23 1 - -DataStructures.QueueAr.isFull():::EXIT53 -this_invocation_nonce -1623 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 null null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] -1 -this.currentSize -15 -1 -this.front -9 -1 -this.back -23 -1 -return -false -1 - -DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109 -this_invocation_nonce -1622 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 -x -984088366 -1 -x.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.QueueAr.isEmpty():::ENTER -this_invocation_nonce -1624 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::EXIT44 -this_invocation_nonce -1624 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 -return -false -1 - -DataStructures.QueueAr.isFull():::ENTER -this_invocation_nonce -1625 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 - -DataStructures.QueueAr.isFull():::EXIT53 -this_invocation_nonce -1625 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 -return -false -1 - -DataStructures.QueueAr.getFront():::ENTER -this_invocation_nonce -1626 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::ENTER -this_invocation_nonce -1627 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::EXIT44 -this_invocation_nonce -1627 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 -return -false -1 - -DataStructures.QueueAr.getFront():::EXIT76 -this_invocation_nonce -1626 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 -return -511909137 -1 -return.getClass().getName() -"java.lang.Object" -1 - -DataStructures.QueueAr.dequeue():::ENTER -this_invocation_nonce -1628 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::ENTER -this_invocation_nonce -1629 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::EXIT44 -this_invocation_nonce -1629 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null 511909137 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -16 -1 -this.front -9 -1 -this.back -24 -1 -return -false -1 - -DataStructures.QueueAr.dequeue():::EXIT93 -this_invocation_nonce -1628 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 -return -511909137 -1 -return.getClass().getName() -"java.lang.Object" -1 - -DataStructures.QueueAr.isEmpty():::ENTER -this_invocation_nonce -1630 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::EXIT44 -this_invocation_nonce -1630 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 -return -false -1 - -DataStructures.QueueAr.isFull():::ENTER -this_invocation_nonce -1631 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 - -DataStructures.QueueAr.isFull():::EXIT53 -this_invocation_nonce -1631 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 -return -false -1 - -DataStructures.QueueAr.getFront():::ENTER -this_invocation_nonce -1632 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::ENTER -this_invocation_nonce -1633 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 - -DataStructures.QueueAr.isEmpty():::EXIT44 -this_invocation_nonce -1633 -this -413828078 -1 -this.theArray -1656457960 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null null null null null null null null 837375677 1312664548 853552605 467870275 1558080258 239304688 1904504032 755507289 1887685159 1548550182 1128590881 1651366663 440851213 567754741 984088366 null null null null null] -1 -this.theArray[..].getClass().getName() -[null null null null null null null null null null "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] -1 -this.currentSize -15 -1 -this.front -10 -1 -this.back -24 -1 return false 1 diff --git a/tests/daikon-tests/QueueAr/QueueAr.txt-jaif.goal b/tests/daikon-tests/QueueAr/QueueAr.txt-jaif.goal index 4e3ae37130..2527441000 100644 --- a/tests/daikon-tests/QueueAr/QueueAr.txt-jaif.goal +++ b/tests/daikon-tests/QueueAr/QueueAr.txt-jaif.goal @@ -8,23 +8,41 @@ class QueueAr : // 14931/- obj/class samples field currentSize : // int field front : // int field back : // int + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // capacity method (I)V : // 37 samples - return: + return: parameter #0 : // capacity + method dequeue()V throws Ljava/lang/Throwable; : // 0 samples + return: method dequeue()Ljava/lang/Object; : // 536 samples - return: + return: + method dequeueAll()V throws Ljava/lang/Throwable; : // 0 samples + return: method dequeueAll()V : // 4 samples - return: + return: + method enqueue(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // x method enqueue(Ljava/lang/Object;)V : // 673 samples - return: + return: parameter #0 : // x + method getFront()V throws Ljava/lang/Throwable; : // 0 samples + return: method getFront()Ljava/lang/Object; : // 1231 samples - return: @Nullable + return: @Nullable + method isEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method isEmpty()Z : // 3070 samples - return: + return: + method isFull()V throws Ljava/lang/Throwable; : // 0 samples + return: method isFull()Z : // 1904 samples - return: + return: + method makeEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method makeEmpty()V : // 29 samples - return: + return: diff --git a/tests/daikon-tests/RatNum/RatNum.txt-chicory.goal b/tests/daikon-tests/RatNum/RatNum.txt-chicory.goal index 07381bb2da..ae69dd1f93 100644 --- a/tests/daikon-tests/RatNum/RatNum.txt-chicory.goal +++ b/tests/daikon-tests/RatNum/RatNum.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for PolyCalc.RatNum -// Declarations written Thu Jun 04 13:26:53 PDT 2015 +// Declarations written Mon Jul 31 12:38:51 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt PolyCalc.RatNum.RatNum(int):::ENTER ppt-type enter variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -17,11 +17,42 @@ ppt PolyCalc.RatNum.RatNum(int):::EXIT45 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt PolyCalc.RatNum.RatNum(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer var-kind field numer @@ -38,35 +69,47 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatNum.RatNum(int,\_int):::ENTER ppt-type enter variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable d - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT55 +ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT67 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -84,27 +127,64 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable d - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT67 +ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT55 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable d + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt PolyCalc.RatNum.RatNum(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer var-kind field numer @@ -121,26 +201,38 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable d - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatNum.isNaN():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -162,10 +254,10 @@ ppt PolyCalc.RatNum.isNaN():::EXIT71 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -183,19 +275,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.isNaN():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.isNegative():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -217,10 +346,10 @@ ppt PolyCalc.RatNum.isNegative():::EXIT77 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -238,19 +367,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.isNegative():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.isPositive():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -272,10 +438,10 @@ ppt PolyCalc.RatNum.isPositive():::EXIT83 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -293,19 +459,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.isPositive():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -323,7 +526,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -341,14 +544,14 @@ variable rn.denom rep-type int comparability 22 -ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT101 +ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT96 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -366,7 +569,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -384,7 +587,7 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 @@ -393,10 +596,10 @@ ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT98 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -414,7 +617,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -432,19 +635,19 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 -ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT96 +ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT101 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -462,7 +665,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -480,7 +683,7 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 @@ -489,10 +692,10 @@ ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT94 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -510,7 +713,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -528,19 +731,74 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable rn + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable rn.numer + var-kind field numer + enclosing-var rn + dec-type int + rep-type int + comparability 22 +variable rn.denom + var-kind field denom + enclosing-var rn + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.approx():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -562,10 +820,10 @@ ppt PolyCalc.RatNum.approx():::EXIT117 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -583,7 +841,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type double rep-type double comparability 22 @@ -592,10 +850,10 @@ ppt PolyCalc.RatNum.approx():::EXIT120 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -613,19 +871,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type double rep-type double comparability 22 +ppt PolyCalc.RatNum.approx():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.unparse():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -643,14 +938,14 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 -ppt PolyCalc.RatNum.unparse():::EXIT137 +ppt PolyCalc.RatNum.unparse():::EXIT133 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -668,7 +963,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -681,14 +976,14 @@ variable return.toString flags synthetic to_string comparability 22 -ppt PolyCalc.RatNum.unparse():::EXIT133 +ppt PolyCalc.RatNum.unparse():::EXIT135 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -706,7 +1001,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -719,14 +1014,14 @@ variable return.toString flags synthetic to_string comparability 22 -ppt PolyCalc.RatNum.unparse():::EXIT135 +ppt PolyCalc.RatNum.unparse():::EXIT137 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -744,7 +1039,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -757,14 +1052,51 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatNum.unparse():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.negate():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -786,10 +1118,10 @@ ppt PolyCalc.RatNum.negate():::EXIT147 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -807,7 +1139,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -824,14 +1156,51 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.negate():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -849,7 +1218,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -871,10 +1240,10 @@ ppt PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -892,7 +1261,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -910,7 +1279,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -927,14 +1296,69 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.add(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -952,7 +1376,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -974,10 +1398,10 @@ ppt PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -995,7 +1419,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1013,7 +1437,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1030,14 +1454,69 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1055,7 +1534,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1077,10 +1556,10 @@ ppt PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1098,7 +1577,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1116,7 +1595,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1133,14 +1612,69 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1158,7 +1692,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1180,10 +1714,10 @@ ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::EXIT187 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1201,7 +1735,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1219,7 +1753,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1240,10 +1774,10 @@ ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::EXIT189 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1261,7 +1795,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1279,7 +1813,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1296,69 +1830,151 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.gcd(int,\_int):::ENTER ppt-type enter variable _a - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable _b - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT203 +ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT209 ppt-type subexit variable _a - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable _b - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 -ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT209 +ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT203 ppt-type subexit variable _a - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable _b - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatNum.gcd(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable _a + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable _b + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.hashCode():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1380,10 +1996,10 @@ ppt PolyCalc.RatNum.hashCode():::EXIT217 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1401,19 +2017,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatNum.hashCode():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.equals(java.lang.Object):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1431,7 +2084,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1442,17 +2095,17 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT235 +ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT230 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1470,7 +2123,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1481,10 +2134,10 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 @@ -1493,10 +2146,10 @@ ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT232 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1514,7 +2167,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1525,22 +2178,22 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT230 +ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT235 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1558,7 +2211,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1569,22 +2222,73 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.equals(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.debugPrint():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1606,10 +2310,10 @@ ppt PolyCalc.RatNum.debugPrint():::EXIT241 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1627,7 +2331,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -1640,14 +2344,51 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatNum.debugPrint():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.toString():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1669,10 +2410,10 @@ ppt PolyCalc.RatNum.toString():::EXIT246 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1690,7 +2431,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -1703,10 +2444,47 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatNum.toString():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.parse(java.lang.String):::ENTER ppt-type enter variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1723,7 +2501,7 @@ variable ratStr.toString ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT273 ppt-type subexit variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1737,7 +2515,7 @@ variable ratStr.toString flags synthetic to_string comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1754,10 +2532,10 @@ variable return.denom rep-type int comparability 22 -ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT267 +ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT264 ppt-type subexit variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1771,7 +2549,7 @@ variable ratStr.toString flags synthetic to_string comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1788,10 +2566,10 @@ variable return.denom rep-type int comparability 22 -ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT264 +ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT267 ppt-type subexit variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1805,7 +2583,7 @@ variable ratStr.toString flags synthetic to_string comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1822,13 +2600,42 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.parse(java.lang.String):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable ratStr + var-kind variable + dec-type java.lang.String + rep-type hashcode + flags is_param + comparability 22 +variable ratStr.toString + var-kind function toString() + enclosing-var ratStr + dec-type java.lang.String + rep-type java.lang.String + function-args ratStr + flags synthetic to_string + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.numer var-kind field numer @@ -1854,7 +2661,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 0 this -631184157 +22756955 1 this.numer 0 @@ -1877,7 +2684,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1 this -675137585 +1640639994 1 this.numer 1 @@ -1900,7 +2707,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2 this -1881283994 +1263793464 1 this.numer -1 @@ -1923,7 +2730,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 3 this -1338352377 +323326911 1 this.numer 2 @@ -1946,7 +2753,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 4 this -944681561 +1270144618 1 this.numer 3 @@ -1995,7 +2802,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 5 this -916393456 +2074185499 1 this.numer 1 @@ -2047,7 +2854,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 7 this -72098708 +797925218 1 this.numer 1 @@ -2099,7 +2906,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 9 this -582208448 +275310919 1 this.numer 1 @@ -2151,7 +2958,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 11 this -1241889804 +2109874862 1 this.numer 2 @@ -2203,7 +3010,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 13 this -1048370635 +183284570 1 this.numer 3 @@ -2255,7 +3062,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 15 this -2009422457 +1607305514 1 this.numer 5 @@ -2307,7 +3114,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 17 this -1035402077 +146305349 1 this.numer 6 @@ -2359,7 +3166,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 19 this -942716498 +1686369710 1 this.numer 8 @@ -2411,7 +3218,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 21 this -101834320 +194706439 1 this.numer -1 @@ -2463,7 +3270,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 23 this -2132433228 +942518407 1 this.numer 3 @@ -2492,7 +3299,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 25 this -450678213 +1943325854 1 this.numer 1 @@ -2521,7 +3328,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 26 this -373902922 +134310351 1 this.numer -1 @@ -2550,7 +3357,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 27 this -649258932 +1411892748 1 this.numer 100 @@ -2579,7 +3386,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 28 this -730459717 +22805895 1 this.numer 2 @@ -2608,7 +3415,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 29 this -1819937367 +1413378318 1 this.numer -2 @@ -2637,7 +3444,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 30 this -1077742948 +1475491159 1 this.numer 9 @@ -2656,7 +3463,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 31 this -631184157 +22756955 1 this.numer 0 @@ -2669,7 +3476,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 32 this -631184157 +22756955 1 this.numer 0 @@ -2682,7 +3489,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 32 this -631184157 +22756955 1 this.numer 0 @@ -2698,7 +3505,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 31 this -631184157 +22756955 1 this.numer 0 @@ -2707,7 +3514,7 @@ this.denom 1 1 return -1217226871 +1024429571 1 return.toString "0" @@ -2717,7 +3524,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 33 this -675137585 +1640639994 1 this.numer 1 @@ -2730,7 +3537,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 34 this -675137585 +1640639994 1 this.numer 1 @@ -2743,7 +3550,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 34 this -675137585 +1640639994 1 this.numer 1 @@ -2759,7 +3566,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 33 this -675137585 +1640639994 1 this.numer 1 @@ -2768,7 +3575,7 @@ this.denom 1 1 return -1002799575 +1667689440 1 return.toString "1" @@ -2785,7 +3592,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 35 this -600795369 +1157058691 1 this.numer 4 @@ -2801,7 +3608,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 36 this -600795369 +1157058691 1 this.numer 4 @@ -2814,7 +3621,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 37 this -600795369 +1157058691 1 this.numer 4 @@ -2827,7 +3634,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 37 this -600795369 +1157058691 1 this.numer 4 @@ -2843,7 +3650,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 36 this -600795369 +1157058691 1 this.numer 4 @@ -2852,7 +3659,7 @@ this.denom 1 1 return -99658589 +40472007 1 return.toString "4" @@ -2862,7 +3669,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 38 this -1881283994 +1263793464 1 this.numer -1 @@ -2875,7 +3682,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 39 this -1881283994 +1263793464 1 this.numer -1 @@ -2888,7 +3695,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 39 this -1881283994 +1263793464 1 this.numer -1 @@ -2904,7 +3711,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 38 this -1881283994 +1263793464 1 this.numer -1 @@ -2913,7 +3720,7 @@ this.denom 1 1 return -2072144310 +1138193439 1 return.toString "-1" @@ -2930,7 +3737,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 40 this -787114771 +398110318 1 this.numer -5 @@ -2946,7 +3753,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 41 this -787114771 +398110318 1 this.numer -5 @@ -2959,7 +3766,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 42 this -787114771 +398110318 1 this.numer -5 @@ -2972,7 +3779,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 42 this -787114771 +398110318 1 this.numer -5 @@ -2988,7 +3795,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 41 this -787114771 +398110318 1 this.numer -5 @@ -2997,7 +3804,7 @@ this.denom 1 1 return -538690677 +1765250898 1 return.toString "-5" @@ -3014,7 +3821,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 43 this -2130636234 +670971910 1 this.numer 0 @@ -3030,7 +3837,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 44 this -2130636234 +670971910 1 this.numer 0 @@ -3043,7 +3850,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 45 this -2130636234 +670971910 1 this.numer 0 @@ -3056,7 +3863,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 45 this -2130636234 +670971910 1 this.numer 0 @@ -3072,7 +3879,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 44 this -2130636234 +670971910 1 this.numer 0 @@ -3081,7 +3888,7 @@ this.denom 1 1 return -313371113 +1601292138 1 return.toString "0" @@ -3098,7 +3905,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 46 this -1198393747 +494586676 1 this.numer 0 @@ -3121,7 +3928,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 47 this -154580616 +1218593486 1 this.numer 1 @@ -3144,7 +3951,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 48 this -1728683889 +508198356 1 this.numer -1 @@ -3167,7 +3974,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 49 this -683862160 +1330754528 1 this.numer 2 @@ -3190,7 +3997,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 50 this -338844376 +79290965 1 this.numer 3 @@ -3239,7 +4046,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 51 this -1978279235 +1582785598 1 this.numer 1 @@ -3291,7 +4098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 53 this -1597279791 +322836221 1 this.numer 1 @@ -3343,7 +4150,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 55 this -1935859837 +1370651081 1 this.numer 1 @@ -3395,7 +4202,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 57 this -1619028409 +450003680 1 this.numer 2 @@ -3447,7 +4254,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 59 this -245178926 +2134991632 1 this.numer 3 @@ -3499,7 +4306,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 61 this -1848574336 +480971771 1 this.numer 5 @@ -3551,7 +4358,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 63 this -1342944003 +1586845078 1 this.numer 6 @@ -3603,7 +4410,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 65 this -806728451 +1356728614 1 this.numer 8 @@ -3655,7 +4462,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 67 this -1620812446 +611563982 1 this.numer -1 @@ -3707,7 +4514,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 69 this -164717727 +1615039080 1 this.numer 3 @@ -3736,7 +4543,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 71 this -304416706 +336484883 1 this.numer 1 @@ -3765,7 +4572,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 72 this -1025530588 +876213901 1 this.numer -1 @@ -3794,7 +4601,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 73 this -388841694 +230528013 1 this.numer 100 @@ -3823,7 +4630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 74 this -469613237 +1909546776 1 this.numer 2 @@ -3852,7 +4659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 75 this -787271534 +392781299 1 this.numer -2 @@ -3881,7 +4688,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 76 this -1025922771 +1822383117 1 this.numer 9 @@ -3933,7 +4740,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 77 this -537810434 +233021551 1 this.numer 1 @@ -3952,7 +4759,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 79 this -537810434 +233021551 1 this.numer 1 @@ -3965,7 +4772,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 80 this -537810434 +233021551 1 this.numer 1 @@ -3978,7 +4785,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 80 this -537810434 +233021551 1 this.numer 1 @@ -3994,7 +4801,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 79 this -537810434 +233021551 1 this.numer 1 @@ -4003,7 +4810,7 @@ this.denom 2 1 return -221294015 +1991313236 1 return.toString "1/2" @@ -4046,7 +4853,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 81 this -1994317148 +736778932 1 this.numer 2 @@ -4065,7 +4872,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 83 this -1994317148 +736778932 1 this.numer 2 @@ -4078,7 +4885,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 84 this -1994317148 +736778932 1 this.numer 2 @@ -4091,7 +4898,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 84 this -1994317148 +736778932 1 this.numer 2 @@ -4107,7 +4914,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 83 this -1994317148 +736778932 1 this.numer 2 @@ -4116,7 +4923,7 @@ this.denom 1 1 return -563544060 +1032000752 1 return.toString "2" @@ -4159,7 +4966,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 85 this -1082133150 +770911223 1 this.numer 3 @@ -4178,7 +4985,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 87 this -1082133150 +770911223 1 this.numer 3 @@ -4191,7 +4998,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 88 this -1082133150 +770911223 1 this.numer 3 @@ -4204,7 +5011,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 88 this -1082133150 +770911223 1 this.numer 3 @@ -4220,7 +5027,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 87 this -1082133150 +770911223 1 this.numer 3 @@ -4229,7 +5036,7 @@ this.denom 2 1 return -372845607 +1392906938 1 return.toString "3/2" @@ -4272,7 +5079,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 89 this -58834903 +708890004 1 this.numer -1 @@ -4291,7 +5098,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 91 this -58834903 +708890004 1 this.numer -1 @@ -4304,7 +5111,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 92 this -58834903 +708890004 1 this.numer -1 @@ -4317,7 +5124,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 92 this -58834903 +708890004 1 this.numer -1 @@ -4333,7 +5140,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 91 this -58834903 +708890004 1 this.numer -1 @@ -4342,7 +5149,7 @@ this.denom 13 1 return -995737101 +255944888 1 return.toString "-1/13" @@ -4385,7 +5192,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 93 this -13395436 +1004095028 1 this.numer 53 @@ -4404,7 +5211,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 95 this -13395436 +1004095028 1 this.numer 53 @@ -4417,7 +5224,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 96 this -13395436 +1004095028 1 this.numer 53 @@ -4430,7 +5237,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 96 this -13395436 +1004095028 1 this.numer 53 @@ -4446,7 +5253,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 95 this -13395436 +1004095028 1 this.numer 53 @@ -4455,7 +5262,7 @@ this.denom 7 1 return -1798793564 +1487470647 1 return.toString "53/7" @@ -4498,7 +5305,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 97 this -48647682 +1948863195 1 this.numer 0 @@ -4517,7 +5324,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 99 this -48647682 +1948863195 1 this.numer 0 @@ -4530,7 +5337,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 100 this -48647682 +1948863195 1 this.numer 0 @@ -4543,7 +5350,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 100 this -48647682 +1948863195 1 this.numer 0 @@ -4559,7 +5366,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 99 this -48647682 +1948863195 1 this.numer 0 @@ -4568,7 +5375,7 @@ this.denom 1 1 return -1577805514 +1890187342 1 return.toString "0" @@ -4585,7 +5392,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 101 this -1049200642 +19986569 1 this.numer 0 @@ -4608,7 +5415,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 102 this -926964577 +294184992 1 this.numer 1 @@ -4631,7 +5438,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 103 this -1647270301 +793315160 1 this.numer -1 @@ -4654,7 +5461,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 104 this -312771783 +270397815 1 this.numer 2 @@ -4677,7 +5484,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 105 this -1862872672 +376416077 1 this.numer 3 @@ -4726,7 +5533,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 106 this -1136908691 +1089504328 1 this.numer 1 @@ -4778,7 +5585,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 108 this -1862362278 +660879561 1 this.numer 1 @@ -4830,7 +5637,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 110 this -1148651321 +1485697819 1 this.numer 1 @@ -4882,7 +5689,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 112 this -1652249164 +867398280 1 this.numer 2 @@ -4934,7 +5741,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 114 this -240659991 +2007331442 1 this.numer 3 @@ -4986,7 +5793,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 116 this -1060761436 +1904324159 1 this.numer 5 @@ -5038,7 +5845,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 118 this -1955701105 +1176735295 1 this.numer 6 @@ -5090,7 +5897,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 120 this -83770753 +1848415041 1 this.numer 8 @@ -5142,7 +5949,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 122 this -1333256886 +843467284 1 this.numer -1 @@ -5194,7 +6001,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 124 this -1204110204 +1313532469 1 this.numer 3 @@ -5223,7 +6030,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 126 this -1741792947 +339924917 1 this.numer 1 @@ -5252,7 +6059,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 127 this -1964467972 +520022247 1 this.numer -1 @@ -5281,7 +6088,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 128 this -1399616426 +518522822 1 this.numer 100 @@ -5310,7 +6117,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 129 this -1964886191 +124407148 1 this.numer 2 @@ -5339,7 +6146,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 130 this -1986172218 +85445963 1 this.numer -2 @@ -5368,7 +6175,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 131 this -1110658958 +1825027294 1 this.numer 9 @@ -5397,7 +6204,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 132 this -917247382 +852445367 1 this.numer 1 @@ -5416,7 +6223,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 133 this -917247382 +852445367 1 this.numer 1 @@ -5429,7 +6236,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 134 this -917247382 +852445367 1 this.numer 1 @@ -5442,7 +6249,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 134 this -917247382 +852445367 1 this.numer 1 @@ -5458,7 +6265,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 133 this -917247382 +852445367 1 this.numer 1 @@ -5467,7 +6274,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -5487,7 +6294,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 135 this -1736004041 +1558021762 1 this.numer 2 @@ -5506,7 +6313,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 136 this -1736004041 +1558021762 1 this.numer 2 @@ -5519,7 +6326,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 137 this -1736004041 +1558021762 1 this.numer 2 @@ -5532,7 +6339,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 137 this -1736004041 +1558021762 1 this.numer 2 @@ -5548,7 +6355,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 136 this -1736004041 +1558021762 1 this.numer 2 @@ -5557,7 +6364,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -5577,7 +6384,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 138 this -1307088945 +225290371 1 this.numer -1 @@ -5596,7 +6403,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 139 this -1307088945 +225290371 1 this.numer -1 @@ -5609,7 +6416,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 140 this -1307088945 +225290371 1 this.numer -1 @@ -5622,7 +6429,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 140 this -1307088945 +225290371 1 this.numer -1 @@ -5638,7 +6445,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 139 this -1307088945 +225290371 1 this.numer -1 @@ -5647,7 +6454,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -5667,7 +6474,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 141 this -1633673452 +1169146729 1 this.numer 0 @@ -5686,7 +6493,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 142 this -1633673452 +1169146729 1 this.numer 0 @@ -5699,7 +6506,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 143 this -1633673452 +1169146729 1 this.numer 0 @@ -5712,7 +6519,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 143 this -1633673452 +1169146729 1 this.numer 0 @@ -5728,7 +6535,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 142 this -1633673452 +1169146729 1 this.numer 0 @@ -5737,7 +6544,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -5757,7 +6564,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 144 this -1571280869 +2040352617 1 this.numer -100 @@ -5776,7 +6583,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 145 this -1571280869 +2040352617 1 this.numer -100 @@ -5789,7 +6596,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 146 this -1571280869 +2040352617 1 this.numer -100 @@ -5802,7 +6609,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 146 this -1571280869 +2040352617 1 this.numer -100 @@ -5818,7 +6625,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 145 this -1571280869 +2040352617 1 this.numer -100 @@ -5827,7 +6634,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -5844,7 +6651,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 147 this -911158124 +1237598030 1 this.numer 0 @@ -5867,7 +6674,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 148 this -128703311 +688766789 1 this.numer 1 @@ -5890,7 +6697,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 149 this -600515448 +302155142 1 this.numer -1 @@ -5913,7 +6720,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 150 this -1837477283 +24606376 1 this.numer 2 @@ -5936,7 +6743,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 151 this -1665851521 +1772160903 1 this.numer 3 @@ -5985,7 +6792,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 152 this -1222207508 +756185697 1 this.numer 1 @@ -6037,7 +6844,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 154 this -960503401 +733672688 1 this.numer 1 @@ -6089,7 +6896,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 156 this -546086108 +297927961 1 this.numer 1 @@ -6141,7 +6948,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 158 this -1871593525 +1891546521 1 this.numer 2 @@ -6193,7 +7000,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 160 this -1679397066 +1312884893 1 this.numer 3 @@ -6245,7 +7052,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 162 this -1248915741 +849373393 1 this.numer 5 @@ -6297,7 +7104,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 164 this -1021693209 +868964689 1 this.numer 6 @@ -6349,7 +7156,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 166 this -318522251 +912011468 1 this.numer 8 @@ -6401,7 +7208,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 168 this -1874224233 +1881129850 1 this.numer -1 @@ -6453,7 +7260,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 170 this -796549835 +1095293768 1 this.numer 3 @@ -6482,7 +7289,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 172 this -200021447 +673186785 1 this.numer 1 @@ -6511,7 +7318,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 173 this -948552174 +2142080121 1 this.numer -1 @@ -6540,7 +7347,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 174 this -1545276737 +1906808037 1 this.numer 100 @@ -6569,7 +7376,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 175 this -1946375588 +1983025922 1 this.numer 2 @@ -6598,7 +7405,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 176 this -116112765 +1579526446 1 this.numer -2 @@ -6627,7 +7434,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 177 this -1592089879 +1308109015 1 this.numer 9 @@ -6679,7 +7486,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 178 this -608354733 +11902257 1 this.numer 1 @@ -6698,7 +7505,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 180 this -608354733 +11902257 1 this.numer 1 @@ -6711,7 +7518,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 181 this -608354733 +11902257 1 this.numer 1 @@ -6724,7 +7531,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 181 this -608354733 +11902257 1 this.numer 1 @@ -6740,7 +7547,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 180 this -608354733 +11902257 1 this.numer 1 @@ -6749,7 +7556,7 @@ this.denom 2 1 return -448354164 +1660794022 1 return.toString "1/2" @@ -6792,7 +7599,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 182 this -2115800672 +300031246 1 this.numer 1 @@ -6811,7 +7618,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 184 this -2115800672 +300031246 1 this.numer 1 @@ -6824,7 +7631,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 185 this -2115800672 +300031246 1 this.numer 1 @@ -6837,7 +7644,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 185 this -2115800672 +300031246 1 this.numer 1 @@ -6853,7 +7660,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 184 this -2115800672 +300031246 1 this.numer 1 @@ -6862,7 +7669,7 @@ this.denom 2 1 return -80183631 +500179317 1 return.toString "1/2" @@ -6905,7 +7712,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 186 this -1174039548 +824208363 1 this.numer 3 @@ -6924,7 +7731,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 188 this -1174039548 +824208363 1 this.numer 3 @@ -6937,7 +7744,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 189 this -1174039548 +824208363 1 this.numer 3 @@ -6950,7 +7757,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 189 this -1174039548 +824208363 1 this.numer 3 @@ -6966,7 +7773,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 188 this -1174039548 +824208363 1 this.numer 3 @@ -6975,7 +7782,7 @@ this.denom 2 1 return -1002934600 +1048027629 1 return.toString "3/2" @@ -7018,7 +7825,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 190 this -722676897 +1073533248 1 this.numer 27 @@ -7037,7 +7844,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 192 this -722676897 +1073533248 1 this.numer 27 @@ -7050,7 +7857,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 193 this -722676897 +1073533248 1 this.numer 27 @@ -7063,7 +7870,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 193 this -722676897 +1073533248 1 this.numer 27 @@ -7079,7 +7886,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 192 this -722676897 +1073533248 1 this.numer 27 @@ -7088,7 +7895,7 @@ this.denom 13 1 return -2010584094 +599491651 1 return.toString "27/13" @@ -7131,7 +7938,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 194 this -1231682313 +293002476 1 this.numer 1 @@ -7150,7 +7957,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 196 this -1231682313 +293002476 1 this.numer 1 @@ -7163,7 +7970,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 197 this -1231682313 +293002476 1 this.numer 1 @@ -7176,7 +7983,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 197 this -1231682313 +293002476 1 this.numer 1 @@ -7192,7 +7999,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 196 this -1231682313 +293002476 1 this.numer 1 @@ -7201,7 +8008,7 @@ this.denom 1 1 return -1289761158 +302870502 1 return.toString "1" @@ -7218,7 +8025,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 198 this -315849688 +1268959798 1 this.numer 0 @@ -7241,7 +8048,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 199 this -2053614479 +876926621 1 this.numer 1 @@ -7264,7 +8071,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 200 this -741373969 +326298949 1 this.numer -1 @@ -7287,7 +8094,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 201 this -572177089 +1786364562 1 this.numer 2 @@ -7310,7 +8117,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 202 this -148563557 +928466577 1 this.numer 3 @@ -7359,7 +8166,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 203 this -1531704685 +624271064 1 this.numer 1 @@ -7411,7 +8218,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 205 this -1474164206 +564742142 1 this.numer 1 @@ -7463,7 +8270,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 207 this -758974803 +90205195 1 this.numer 1 @@ -7515,7 +8322,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 209 this -36650841 +135184888 1 this.numer 2 @@ -7567,7 +8374,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 211 this -1810361645 +21257599 1 this.numer 3 @@ -7619,7 +8426,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 213 this -1199856819 +1782148126 1 this.numer 5 @@ -7671,7 +8478,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 215 this -1122111603 +1816089958 1 this.numer 6 @@ -7723,7 +8530,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 217 this -128323667 +306206744 1 this.numer 8 @@ -7775,7 +8582,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 219 this -662289681 +827084938 1 this.numer -1 @@ -7827,7 +8634,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 221 this -694926166 +280265505 1 this.numer 3 @@ -7856,7 +8663,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 223 this -1607999576 +112619572 1 this.numer 1 @@ -7885,7 +8692,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 224 this -1714659984 +371619938 1 this.numer -1 @@ -7914,7 +8721,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 225 this -1207291995 +1161667116 1 this.numer 100 @@ -7943,7 +8750,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 226 this -1531063109 +1898220577 1 this.numer 2 @@ -7972,7 +8779,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 227 this -1428614609 +1143371233 1 this.numer -2 @@ -8001,7 +8808,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 228 this -1858560003 +1634132079 1 this.numer 9 @@ -8020,7 +8827,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 229 this -315849688 +1268959798 1 this.numer 0 @@ -8033,7 +8840,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 230 this -315849688 +1268959798 1 this.numer 0 @@ -8046,7 +8853,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 230 this -315849688 +1268959798 1 this.numer 0 @@ -8062,7 +8869,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 229 this -315849688 +1268959798 1 this.numer 0 @@ -8078,7 +8885,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 231 this -2053614479 +876926621 1 this.numer 1 @@ -8091,7 +8898,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 232 this -2053614479 +876926621 1 this.numer 1 @@ -8104,7 +8911,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 232 this -2053614479 +876926621 1 this.numer 1 @@ -8120,7 +8927,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 231 this -2053614479 +876926621 1 this.numer 1 @@ -8136,7 +8943,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 233 this -741373969 +326298949 1 this.numer -1 @@ -8149,7 +8956,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 234 this -741373969 +326298949 1 this.numer -1 @@ -8162,7 +8969,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 234 this -741373969 +326298949 1 this.numer -1 @@ -8178,7 +8985,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 233 this -741373969 +326298949 1 this.numer -1 @@ -8194,7 +9001,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 235 this -572177089 +1786364562 1 this.numer 2 @@ -8207,7 +9014,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 236 this -572177089 +1786364562 1 this.numer 2 @@ -8220,7 +9027,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 236 this -572177089 +1786364562 1 this.numer 2 @@ -8236,7 +9043,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 235 this -572177089 +1786364562 1 this.numer 2 @@ -8252,7 +9059,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 237 this -1531704685 +624271064 1 this.numer 1 @@ -8265,7 +9072,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 238 this -1531704685 +624271064 1 this.numer 1 @@ -8278,7 +9085,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 238 this -1531704685 +624271064 1 this.numer 1 @@ -8294,7 +9101,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 237 this -1531704685 +624271064 1 this.numer 1 @@ -8310,7 +9117,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 239 this -36650841 +135184888 1 this.numer 2 @@ -8323,7 +9130,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 240 this -36650841 +135184888 1 this.numer 2 @@ -8336,7 +9143,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 240 this -36650841 +135184888 1 this.numer 2 @@ -8352,7 +9159,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 239 this -36650841 +135184888 1 this.numer 2 @@ -8368,7 +9175,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 241 this -1810361645 +21257599 1 this.numer 3 @@ -8381,7 +9188,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 242 this -1810361645 +21257599 1 this.numer 3 @@ -8394,7 +9201,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 242 this -1810361645 +21257599 1 this.numer 3 @@ -8410,7 +9217,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 241 this -1810361645 +21257599 1 this.numer 3 @@ -8426,7 +9233,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 243 this -1607999576 +112619572 1 this.numer 1 @@ -8439,7 +9246,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 244 this -1607999576 +112619572 1 this.numer 1 @@ -8452,7 +9259,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 244 this -1607999576 +112619572 1 this.numer 1 @@ -8468,7 +9275,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 243 this -1607999576 +112619572 1 this.numer 1 @@ -8484,7 +9291,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 245 this -1714659984 +371619938 1 this.numer -1 @@ -8497,7 +9304,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 246 this -1714659984 +371619938 1 this.numer -1 @@ -8510,7 +9317,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 246 this -1714659984 +371619938 1 this.numer -1 @@ -8526,7 +9333,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 245 this -1714659984 +371619938 1 this.numer -1 @@ -8542,7 +9349,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 247 this -1531063109 +1898220577 1 this.numer 2 @@ -8555,7 +9362,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 248 this -1531063109 +1898220577 1 this.numer 2 @@ -8568,7 +9375,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 248 this -1531063109 +1898220577 1 this.numer 2 @@ -8584,7 +9391,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 247 this -1531063109 +1898220577 1 this.numer 2 @@ -8600,7 +9407,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 249 this -1428614609 +1143371233 1 this.numer -2 @@ -8613,7 +9420,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 250 this -1428614609 +1143371233 1 this.numer -2 @@ -8626,7 +9433,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 250 this -1428614609 +1143371233 1 this.numer -2 @@ -8642,7 +9449,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 249 this -1428614609 +1143371233 1 this.numer -2 @@ -8658,7 +9465,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 251 this -1207291995 +1161667116 1 this.numer 100 @@ -8671,7 +9478,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 252 this -1207291995 +1161667116 1 this.numer 100 @@ -8684,7 +9491,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 252 this -1207291995 +1161667116 1 this.numer 100 @@ -8700,7 +9507,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 251 this -1207291995 +1161667116 1 this.numer 100 @@ -8716,7 +9523,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 253 this -1714659984 +371619938 1 this.numer -1 @@ -8729,7 +9536,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 254 this -1714659984 +371619938 1 this.numer -1 @@ -8742,7 +9549,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 254 this -1714659984 +371619938 1 this.numer -1 @@ -8758,7 +9565,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 253 this -1714659984 +371619938 1 this.numer -1 @@ -8774,7 +9581,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 255 this -1858560003 +1634132079 1 this.numer 9 @@ -8787,7 +9594,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 256 this -1858560003 +1634132079 1 this.numer 9 @@ -8800,7 +9607,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 256 this -1858560003 +1634132079 1 this.numer 9 @@ -8816,7 +9623,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 255 this -1858560003 +1634132079 1 this.numer 9 @@ -8865,7 +9672,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 257 this -346524400 +1239548589 1 this.numer 1 @@ -8884,7 +9691,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 259 this -346524400 +1239548589 1 this.numer 1 @@ -8897,7 +9704,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 260 this -346524400 +1239548589 1 this.numer 1 @@ -8910,7 +9717,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 260 this -346524400 +1239548589 1 this.numer 1 @@ -8926,7 +9733,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 259 this -346524400 +1239548589 1 this.numer 1 @@ -8949,7 +9756,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 261 this -1348052661 +477289012 1 this.numer 0 @@ -8972,7 +9779,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 262 this -768597577 +1795960102 1 this.numer 1 @@ -8995,7 +9802,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 263 this -705339934 +1027591600 1 this.numer -1 @@ -9018,7 +9825,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 264 this -538539298 +1678854096 1 this.numer 2 @@ -9041,7 +9848,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 265 this -1733893028 +1849201180 1 this.numer 3 @@ -9090,7 +9897,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 266 this -187031806 +1691875296 1 this.numer 1 @@ -9142,7 +9949,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 268 this -1674987881 +667346055 1 this.numer 1 @@ -9194,7 +10001,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 270 this -158187444 +1225197672 1 this.numer 1 @@ -9246,7 +10053,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 272 this -71616322 +1669712678 1 this.numer 2 @@ -9298,7 +10105,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 274 this -1064681534 +943081537 1 this.numer 3 @@ -9350,7 +10157,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 276 this -1268795134 +683962652 1 this.numer 5 @@ -9402,7 +10209,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 278 this -127202428 +1500608548 1 this.numer 6 @@ -9454,7 +10261,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 280 this -1144978631 +341853399 1 this.numer 8 @@ -9506,7 +10313,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 282 this -54890450 +513700442 1 this.numer -1 @@ -9558,7 +10365,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 284 this -1273308587 +366590980 1 this.numer 3 @@ -9587,7 +10394,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 286 this -822879354 +1195067075 1 this.numer 1 @@ -9616,7 +10423,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 287 this -338615998 +1366025231 1 this.numer -1 @@ -9645,7 +10452,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 288 this -287413836 +1007309018 1 this.numer 100 @@ -9674,7 +10481,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 289 this -873619549 +1684792003 1 this.numer 2 @@ -9703,7 +10510,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 290 this -578065504 +2038148563 1 this.numer -2 @@ -9732,7 +10539,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 291 this -330906700 +2008966511 1 this.numer 9 @@ -9751,7 +10558,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 292 this -1348052661 +477289012 1 this.numer 0 @@ -9760,7 +10567,7 @@ this.denom 1 1 arg -1348052661 +477289012 1 arg.numer 0 @@ -9806,7 +10613,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 293 this -1713744817 +433874882 1 this.numer 0 @@ -9825,7 +10632,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 292 this -1348052661 +477289012 1 this.numer 0 @@ -9834,7 +10641,7 @@ this.denom 1 1 arg -1348052661 +477289012 1 arg.numer 0 @@ -9843,7 +10650,7 @@ arg.denom 1 1 return -1713744817 +433874882 1 return.numer 0 @@ -9856,7 +10663,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 295 this -1713744817 +433874882 1 this.numer 0 @@ -9869,7 +10676,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 296 this -1713744817 +433874882 1 this.numer 0 @@ -9882,7 +10689,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 296 this -1713744817 +433874882 1 this.numer 0 @@ -9898,7 +10705,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 295 this -1713744817 +433874882 1 this.numer 0 @@ -9907,7 +10714,7 @@ this.denom 1 1 return -858465755 +572191680 1 return.toString "0" @@ -9917,7 +10724,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 297 this -1348052661 +477289012 1 this.numer 0 @@ -9926,7 +10733,7 @@ this.denom 1 1 arg -768597577 +1795960102 1 arg.numer 1 @@ -9972,7 +10779,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 298 this -1438803739 +103536485 1 this.numer 1 @@ -9991,7 +10798,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 297 this -1348052661 +477289012 1 this.numer 0 @@ -10000,7 +10807,7 @@ this.denom 1 1 arg -768597577 +1795960102 1 arg.numer 1 @@ -10009,7 +10816,7 @@ arg.denom 1 1 return -1438803739 +103536485 1 return.numer 1 @@ -10022,7 +10829,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 300 this -1438803739 +103536485 1 this.numer 1 @@ -10035,7 +10842,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 301 this -1438803739 +103536485 1 this.numer 1 @@ -10048,7 +10855,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 301 this -1438803739 +103536485 1 this.numer 1 @@ -10064,7 +10871,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 300 this -1438803739 +103536485 1 this.numer 1 @@ -10073,7 +10880,7 @@ this.denom 1 1 return -1308576153 +37380050 1 return.toString "1" @@ -10083,7 +10890,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 302 this -768597577 +1795960102 1 this.numer 1 @@ -10092,7 +10899,7 @@ this.denom 1 1 arg -1348052661 +477289012 1 arg.numer 0 @@ -10138,7 +10945,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 303 this -859374544 +2023938592 1 this.numer 1 @@ -10157,7 +10964,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 302 this -768597577 +1795960102 1 this.numer 1 @@ -10166,7 +10973,7 @@ this.denom 1 1 arg -1348052661 +477289012 1 arg.numer 0 @@ -10175,7 +10982,7 @@ arg.denom 1 1 return -859374544 +2023938592 1 return.numer 1 @@ -10188,7 +10995,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 305 this -859374544 +2023938592 1 this.numer 1 @@ -10201,7 +11008,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 306 this -859374544 +2023938592 1 this.numer 1 @@ -10214,7 +11021,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 306 this -859374544 +2023938592 1 this.numer 1 @@ -10230,7 +11037,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 305 this -859374544 +2023938592 1 this.numer 1 @@ -10239,7 +11046,7 @@ this.denom 1 1 return -1680434933 +231977479 1 return.toString "1" @@ -10249,7 +11056,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 307 this -768597577 +1795960102 1 this.numer 1 @@ -10258,7 +11065,7 @@ this.denom 1 1 arg -768597577 +1795960102 1 arg.numer 1 @@ -10304,7 +11111,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 308 this -1512477234 +1427889191 1 this.numer 2 @@ -10323,7 +11130,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 307 this -768597577 +1795960102 1 this.numer 1 @@ -10332,7 +11139,7 @@ this.denom 1 1 arg -768597577 +1795960102 1 arg.numer 1 @@ -10341,7 +11148,7 @@ arg.denom 1 1 return -1512477234 +1427889191 1 return.numer 2 @@ -10354,7 +11161,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 310 this -1512477234 +1427889191 1 this.numer 2 @@ -10367,7 +11174,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 311 this -1512477234 +1427889191 1 this.numer 2 @@ -10380,7 +11187,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 311 this -1512477234 +1427889191 1 this.numer 2 @@ -10396,7 +11203,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 310 this -1512477234 +1427889191 1 this.numer 2 @@ -10405,7 +11212,7 @@ this.denom 1 1 return -440942299 +93314457 1 return.toString "2" @@ -10415,7 +11222,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 312 this -768597577 +1795960102 1 this.numer 1 @@ -10424,7 +11231,7 @@ this.denom 1 1 arg -705339934 +1027591600 1 arg.numer -1 @@ -10470,7 +11277,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 313 this -2098637143 +1796371666 1 this.numer 0 @@ -10489,7 +11296,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 312 this -768597577 +1795960102 1 this.numer 1 @@ -10498,7 +11305,7 @@ this.denom 1 1 arg -705339934 +1027591600 1 arg.numer -1 @@ -10507,7 +11314,7 @@ arg.denom 1 1 return -2098637143 +1796371666 1 return.numer 0 @@ -10520,7 +11327,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 315 this -2098637143 +1796371666 1 this.numer 0 @@ -10533,7 +11340,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 316 this -2098637143 +1796371666 1 this.numer 0 @@ -10546,7 +11353,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 316 this -2098637143 +1796371666 1 this.numer 0 @@ -10562,7 +11369,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 315 this -2098637143 +1796371666 1 this.numer 0 @@ -10571,7 +11378,7 @@ this.denom 1 1 return -1523044073 +2076287037 1 return.toString "0" @@ -10581,7 +11388,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 317 this -768597577 +1795960102 1 this.numer 1 @@ -10590,7 +11397,7 @@ this.denom 1 1 arg -538539298 +1678854096 1 arg.numer 2 @@ -10636,7 +11443,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 318 this -1944146318 +1890627974 1 this.numer 3 @@ -10655,7 +11462,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 317 this -768597577 +1795960102 1 this.numer 1 @@ -10664,7 +11471,7 @@ this.denom 1 1 arg -538539298 +1678854096 1 arg.numer 2 @@ -10673,7 +11480,7 @@ arg.denom 1 1 return -1944146318 +1890627974 1 return.numer 3 @@ -10686,7 +11493,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 320 this -1944146318 +1890627974 1 this.numer 3 @@ -10699,7 +11506,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 321 this -1944146318 +1890627974 1 this.numer 3 @@ -10712,7 +11519,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 321 this -1944146318 +1890627974 1 this.numer 3 @@ -10728,7 +11535,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 320 this -1944146318 +1890627974 1 this.numer 3 @@ -10737,7 +11544,7 @@ this.denom 1 1 return -1303477521 +195615004 1 return.toString "3" @@ -10747,7 +11554,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 322 this -538539298 +1678854096 1 this.numer 2 @@ -10756,7 +11563,7 @@ this.denom 1 1 arg -538539298 +1678854096 1 arg.numer 2 @@ -10802,7 +11609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 323 this -1066012400 +1935972447 1 this.numer 4 @@ -10821,7 +11628,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 322 this -538539298 +1678854096 1 this.numer 2 @@ -10830,7 +11637,7 @@ this.denom 1 1 arg -538539298 +1678854096 1 arg.numer 2 @@ -10839,7 +11646,7 @@ arg.denom 1 1 return -1066012400 +1935972447 1 return.numer 4 @@ -10852,7 +11659,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 325 this -1066012400 +1935972447 1 this.numer 4 @@ -10865,7 +11672,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 326 this -1066012400 +1935972447 1 this.numer 4 @@ -10878,7 +11685,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 326 this -1066012400 +1935972447 1 this.numer 4 @@ -10894,7 +11701,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 325 this -1066012400 +1935972447 1 this.numer 4 @@ -10903,7 +11710,7 @@ this.denom 1 1 return -14339879 +97652294 1 return.toString "4" @@ -10920,7 +11727,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 327 this -492177889 +1889248251 1 this.numer 0 @@ -10943,7 +11750,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 328 this -2074255826 +1027007693 1 this.numer 1 @@ -10966,7 +11773,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 329 this -1915625831 +1783047508 1 this.numer -1 @@ -10989,7 +11796,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 330 this -848505793 +2146608740 1 this.numer 2 @@ -11012,7 +11819,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 331 this -1545446871 +1381713434 1 this.numer 3 @@ -11061,7 +11868,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 332 this -510850432 +1489092624 1 this.numer 1 @@ -11113,7 +11920,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 334 this -223589918 +192881625 1 this.numer 1 @@ -11165,7 +11972,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 336 this -1926853223 +1641313620 1 this.numer 1 @@ -11217,7 +12024,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 338 this -568722201 +1773638882 1 this.numer 2 @@ -11269,7 +12076,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 340 this -64319410 +1059063940 1 this.numer 3 @@ -11321,7 +12128,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 342 this -832049429 +1295226194 1 this.numer 5 @@ -11373,7 +12180,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 344 this -1988727586 +252651381 1 this.numer 6 @@ -11425,7 +12232,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 346 this -1109055994 +1514840818 1 this.numer 8 @@ -11477,7 +12284,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 348 this -1893518845 +1704064279 1 this.numer -1 @@ -11529,7 +12336,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 350 this -811063022 +878274034 1 this.numer 3 @@ -11558,7 +12365,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 352 this -1457503245 +1117509763 1 this.numer 1 @@ -11587,7 +12394,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 353 this -2058561033 +1296674576 1 this.numer -1 @@ -11616,7 +12423,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 354 this -126244814 +664457955 1 this.numer 100 @@ -11645,7 +12452,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 355 this -82745662 +1477657879 1 this.numer 2 @@ -11674,7 +12481,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 356 this -1284421625 +1146147158 1 this.numer -2 @@ -11703,7 +12510,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 357 this -768631731 +1147258851 1 this.numer 9 @@ -11722,7 +12529,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 358 this -510850432 +1489092624 1 this.numer 1 @@ -11731,7 +12538,7 @@ this.denom 2 1 arg -492177889 +1889248251 1 arg.numer 0 @@ -11777,7 +12584,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 359 this -1279366212 +891095110 1 this.numer 1 @@ -11796,7 +12603,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 358 this -510850432 +1489092624 1 this.numer 1 @@ -11805,7 +12612,7 @@ this.denom 2 1 arg -492177889 +1889248251 1 arg.numer 0 @@ -11814,7 +12621,7 @@ arg.denom 1 1 return -1279366212 +891095110 1 return.numer 1 @@ -11827,7 +12634,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 361 this -1279366212 +891095110 1 this.numer 1 @@ -11840,7 +12647,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 362 this -1279366212 +891095110 1 this.numer 1 @@ -11853,7 +12660,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 362 this -1279366212 +891095110 1 this.numer 1 @@ -11869,7 +12676,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 361 this -1279366212 +891095110 1 this.numer 1 @@ -11878,7 +12685,7 @@ this.denom 2 1 return -1701651320 +2011482127 1 return.toString "1/2" @@ -11888,7 +12695,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 363 this -510850432 +1489092624 1 this.numer 1 @@ -11897,7 +12704,7 @@ this.denom 2 1 arg -2074255826 +1027007693 1 arg.numer 1 @@ -11943,7 +12750,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 364 this -1614008141 +905735620 1 this.numer 3 @@ -11962,7 +12769,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 363 this -510850432 +1489092624 1 this.numer 1 @@ -11971,7 +12778,7 @@ this.denom 2 1 arg -2074255826 +1027007693 1 arg.numer 1 @@ -11980,7 +12787,7 @@ arg.denom 1 1 return -1614008141 +905735620 1 return.numer 3 @@ -11993,7 +12800,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 366 this -1614008141 +905735620 1 this.numer 3 @@ -12006,7 +12813,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 367 this -1614008141 +905735620 1 this.numer 3 @@ -12019,7 +12826,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 367 this -1614008141 +905735620 1 this.numer 3 @@ -12035,7 +12842,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 366 this -1614008141 +905735620 1 this.numer 3 @@ -12044,7 +12851,7 @@ this.denom 2 1 return -1768880530 +2145970759 1 return.toString "3/2" @@ -12054,7 +12861,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 368 this -510850432 +1489092624 1 this.numer 1 @@ -12063,7 +12870,7 @@ this.denom 2 1 arg -510850432 +1489092624 1 arg.numer 1 @@ -12109,7 +12916,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 369 this -1958942289 +577405636 1 this.numer 1 @@ -12128,7 +12935,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 368 this -510850432 +1489092624 1 this.numer 1 @@ -12137,7 +12944,7 @@ this.denom 2 1 arg -510850432 +1489092624 1 arg.numer 1 @@ -12146,7 +12953,7 @@ arg.denom 2 1 return -1958942289 +577405636 1 return.numer 1 @@ -12159,7 +12966,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 371 this -1958942289 +577405636 1 this.numer 1 @@ -12172,7 +12979,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 372 this -1958942289 +577405636 1 this.numer 1 @@ -12185,7 +12992,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 372 this -1958942289 +577405636 1 this.numer 1 @@ -12201,7 +13008,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 371 this -1958942289 +577405636 1 this.numer 1 @@ -12210,7 +13017,7 @@ this.denom 1 1 return -871259066 +1931444790 1 return.toString "1" @@ -12220,7 +13027,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 373 this -510850432 +1489092624 1 this.numer 1 @@ -12229,7 +13036,7 @@ this.denom 2 1 arg -223589918 +192881625 1 arg.numer 1 @@ -12275,7 +13082,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 374 this -1707617016 +626742236 1 this.numer 5 @@ -12294,7 +13101,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 373 this -510850432 +1489092624 1 this.numer 1 @@ -12303,7 +13110,7 @@ this.denom 2 1 arg -223589918 +192881625 1 arg.numer 1 @@ -12312,7 +13119,7 @@ arg.denom 3 1 return -1707617016 +626742236 1 return.numer 5 @@ -12325,7 +13132,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 376 this -1707617016 +626742236 1 this.numer 5 @@ -12338,7 +13145,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 377 this -1707617016 +626742236 1 this.numer 5 @@ -12351,7 +13158,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 377 this -1707617016 +626742236 1 this.numer 5 @@ -12367,7 +13174,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 376 this -1707617016 +626742236 1 this.numer 5 @@ -12376,7 +13183,7 @@ this.denom 6 1 return -947729404 +500772834 1 return.toString "5/6" @@ -12386,7 +13193,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 378 this -510850432 +1489092624 1 this.numer 1 @@ -12395,7 +13202,7 @@ this.denom 2 1 arg -1915625831 +1783047508 1 arg.numer -1 @@ -12441,7 +13248,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 379 this -601883229 +1800659519 1 this.numer -1 @@ -12460,7 +13267,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 378 this -510850432 +1489092624 1 this.numer 1 @@ -12469,7 +13276,7 @@ this.denom 2 1 arg -1915625831 +1783047508 1 arg.numer -1 @@ -12478,7 +13285,7 @@ arg.denom 1 1 return -601883229 +1800659519 1 return.numer -1 @@ -12491,7 +13298,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 381 this -601883229 +1800659519 1 this.numer -1 @@ -12504,7 +13311,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 382 this -601883229 +1800659519 1 this.numer -1 @@ -12517,7 +13324,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 382 this -601883229 +1800659519 1 this.numer -1 @@ -12533,7 +13340,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 381 this -601883229 +1800659519 1 this.numer -1 @@ -12542,7 +13349,7 @@ this.denom 2 1 return -1203452433 +1691538257 1 return.toString "-1/2" @@ -12552,7 +13359,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 383 this -510850432 +1489092624 1 this.numer 1 @@ -12561,7 +13368,7 @@ this.denom 2 1 arg -848505793 +2146608740 1 arg.numer 2 @@ -12607,7 +13414,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 384 this -1424053985 +459848100 1 this.numer 5 @@ -12626,7 +13433,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 383 this -510850432 +1489092624 1 this.numer 1 @@ -12635,7 +13442,7 @@ this.denom 2 1 arg -848505793 +2146608740 1 arg.numer 2 @@ -12644,7 +13451,7 @@ arg.denom 1 1 return -1424053985 +459848100 1 return.numer 5 @@ -12657,7 +13464,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 386 this -1424053985 +459848100 1 this.numer 5 @@ -12670,7 +13477,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 387 this -1424053985 +459848100 1 this.numer 5 @@ -12683,7 +13490,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 387 this -1424053985 +459848100 1 this.numer 5 @@ -12699,7 +13506,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 386 this -1424053985 +459848100 1 this.numer 5 @@ -12708,7 +13515,7 @@ this.denom 2 1 return -370080080 +1335505684 1 return.toString "5/2" @@ -12718,7 +13525,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 388 this -510850432 +1489092624 1 this.numer 1 @@ -12727,7 +13534,7 @@ this.denom 2 1 arg -568722201 +1773638882 1 arg.numer 2 @@ -12773,7 +13580,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 389 this -823262848 +992768706 1 this.numer 7 @@ -12792,7 +13599,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 388 this -510850432 +1489092624 1 this.numer 1 @@ -12801,7 +13608,7 @@ this.denom 2 1 arg -568722201 +1773638882 1 arg.numer 2 @@ -12810,7 +13617,7 @@ arg.denom 3 1 return -823262848 +992768706 1 return.numer 7 @@ -12823,7 +13630,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 391 this -823262848 +992768706 1 this.numer 7 @@ -12836,7 +13643,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 392 this -823262848 +992768706 1 this.numer 7 @@ -12849,7 +13656,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 392 this -823262848 +992768706 1 this.numer 7 @@ -12865,7 +13672,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 391 this -823262848 +992768706 1 this.numer 7 @@ -12874,7 +13681,7 @@ this.denom 6 1 return -341548715 +1226204845 1 return.toString "7/6" @@ -12884,7 +13691,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 393 this -510850432 +1489092624 1 this.numer 1 @@ -12893,7 +13700,7 @@ this.denom 2 1 arg -64319410 +1059063940 1 arg.numer 3 @@ -12939,7 +13746,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 394 this -185464574 +393040818 1 this.numer 5 @@ -12958,7 +13765,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 393 this -510850432 +1489092624 1 this.numer 1 @@ -12967,7 +13774,7 @@ this.denom 2 1 arg -64319410 +1059063940 1 arg.numer 3 @@ -12976,7 +13783,7 @@ arg.denom 4 1 return -185464574 +393040818 1 return.numer 5 @@ -12989,7 +13796,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 396 this -185464574 +393040818 1 this.numer 5 @@ -13002,7 +13809,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 397 this -185464574 +393040818 1 this.numer 5 @@ -13015,7 +13822,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 397 this -185464574 +393040818 1 this.numer 5 @@ -13031,7 +13838,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 396 this -185464574 +393040818 1 this.numer 5 @@ -13040,7 +13847,7 @@ this.denom 4 1 return -1104323421 +158453976 1 return.toString "5/4" @@ -13050,7 +13857,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 398 this -223589918 +192881625 1 this.numer 1 @@ -13059,7 +13866,7 @@ this.denom 3 1 arg -492177889 +1889248251 1 arg.numer 0 @@ -13105,7 +13912,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 399 this -1810059373 +1368594774 1 this.numer 1 @@ -13124,7 +13931,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 398 this -223589918 +192881625 1 this.numer 1 @@ -13133,7 +13940,7 @@ this.denom 3 1 arg -492177889 +1889248251 1 arg.numer 0 @@ -13142,7 +13949,7 @@ arg.denom 1 1 return -1810059373 +1368594774 1 return.numer 1 @@ -13155,7 +13962,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 401 this -1810059373 +1368594774 1 this.numer 1 @@ -13168,7 +13975,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 402 this -1810059373 +1368594774 1 this.numer 1 @@ -13181,7 +13988,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 402 this -1810059373 +1368594774 1 this.numer 1 @@ -13197,7 +14004,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 401 this -1810059373 +1368594774 1 this.numer 1 @@ -13206,7 +14013,7 @@ this.denom 3 1 return -414538609 +726281927 1 return.toString "1/3" @@ -13216,7 +14023,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 403 this -223589918 +192881625 1 this.numer 1 @@ -13225,7 +14032,7 @@ this.denom 3 1 arg -568722201 +1773638882 1 arg.numer 2 @@ -13271,7 +14078,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 404 this -713450595 +1447499999 1 this.numer 1 @@ -13290,7 +14097,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 403 this -223589918 +192881625 1 this.numer 1 @@ -13299,7 +14106,7 @@ this.denom 3 1 arg -568722201 +1773638882 1 arg.numer 2 @@ -13308,7 +14115,7 @@ arg.denom 3 1 return -713450595 +1447499999 1 return.numer 1 @@ -13321,7 +14128,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 406 this -713450595 +1447499999 1 this.numer 1 @@ -13334,7 +14141,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 407 this -713450595 +1447499999 1 this.numer 1 @@ -13347,7 +14154,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 407 this -713450595 +1447499999 1 this.numer 1 @@ -13363,7 +14170,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 406 this -713450595 +1447499999 1 this.numer 1 @@ -13372,7 +14179,7 @@ this.denom 1 1 return -1562948964 +1371006431 1 return.toString "1" @@ -13382,7 +14189,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 408 this -223589918 +192881625 1 this.numer 1 @@ -13391,7 +14198,7 @@ this.denom 3 1 arg -64319410 +1059063940 1 arg.numer 3 @@ -13437,7 +14244,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 409 this -463267844 +413601558 1 this.numer 13 @@ -13456,7 +14263,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 408 this -223589918 +192881625 1 this.numer 1 @@ -13465,7 +14272,7 @@ this.denom 3 1 arg -64319410 +1059063940 1 arg.numer 3 @@ -13474,7 +14281,7 @@ arg.denom 4 1 return -463267844 +413601558 1 return.numer 13 @@ -13487,7 +14294,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 411 this -463267844 +413601558 1 this.numer 13 @@ -13500,7 +14307,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 412 this -463267844 +413601558 1 this.numer 13 @@ -13513,7 +14320,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 412 this -463267844 +413601558 1 this.numer 13 @@ -13529,7 +14336,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 411 this -463267844 +413601558 1 this.numer 13 @@ -13538,7 +14345,7 @@ this.denom 12 1 return -1514433733 +1658926803 1 return.toString "13/12" @@ -13555,7 +14362,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 413 this -1111566287 +210652080 1 this.numer 0 @@ -13578,7 +14385,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 414 this -1134340356 +1652149987 1 this.numer 1 @@ -13601,7 +14408,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 415 this -1646028873 +1107730949 1 this.numer -1 @@ -13624,7 +14431,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 416 this -922927857 +700072760 1 this.numer 2 @@ -13647,7 +14454,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 417 this -374110318 +1461149300 1 this.numer 3 @@ -13696,7 +14503,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 418 this -1987479857 +2075495587 1 this.numer 1 @@ -13748,7 +14555,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 420 this -1613311161 +206835546 1 this.numer 1 @@ -13800,7 +14607,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 422 this -792155905 +1997287019 1 this.numer 1 @@ -13852,7 +14659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 424 this -1513167582 +436546048 1 this.numer 2 @@ -13904,7 +14711,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 426 this -1306202900 +1300393335 1 this.numer 3 @@ -13956,7 +14763,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 428 this -1774300666 +1627428162 1 this.numer 5 @@ -14008,7 +14815,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 430 this -713371220 +2011791487 1 this.numer 6 @@ -14060,7 +14867,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 432 this -228893339 +1150284200 1 this.numer 8 @@ -14112,7 +14919,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 434 this -867136796 +439928219 1 this.numer -1 @@ -14164,7 +14971,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 436 this -1144101830 +2138564891 1 this.numer 3 @@ -14193,7 +15000,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 438 this -350881572 +1151755506 1 this.numer 1 @@ -14222,7 +15029,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 439 this -276485942 +2141179775 1 this.numer -1 @@ -14251,7 +15058,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 440 this -1892098733 +592959754 1 this.numer 100 @@ -14280,7 +15087,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 441 this -565560755 +1663619914 1 this.numer 2 @@ -14309,7 +15116,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 442 this -616987663 +341748265 1 this.numer -2 @@ -14338,7 +15145,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 443 this -1660604325 +364604394 1 this.numer 9 @@ -14357,7 +15164,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 444 this -1144101830 +2138564891 1 this.numer 3 @@ -14366,7 +15173,7 @@ this.denom 2 1 arg -1987479857 +2075495587 1 arg.numer 1 @@ -14412,7 +15219,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 445 this -1079413863 +146370526 1 this.numer 2 @@ -14431,7 +15238,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 444 this -1144101830 +2138564891 1 this.numer 3 @@ -14440,7 +15247,7 @@ this.denom 2 1 arg -1987479857 +2075495587 1 arg.numer 1 @@ -14449,7 +15256,7 @@ arg.denom 2 1 return -1079413863 +146370526 1 return.numer 2 @@ -14462,7 +15269,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 447 this -1079413863 +146370526 1 this.numer 2 @@ -14475,7 +15282,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 448 this -1079413863 +146370526 1 this.numer 2 @@ -14488,7 +15295,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 448 this -1079413863 +146370526 1 this.numer 2 @@ -14504,7 +15311,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 447 this -1079413863 +146370526 1 this.numer 2 @@ -14513,7 +15320,7 @@ this.denom 1 1 return -1914429232 +758013696 1 return.toString "2" @@ -14523,7 +15330,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 449 this -1144101830 +2138564891 1 this.numer 3 @@ -14532,7 +15339,7 @@ this.denom 2 1 arg -1613311161 +206835546 1 arg.numer 1 @@ -14578,7 +15385,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 450 this -64619223 +1279309678 1 this.numer 11 @@ -14597,7 +15404,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 449 this -1144101830 +2138564891 1 this.numer 3 @@ -14606,7 +15413,7 @@ this.denom 2 1 arg -1613311161 +206835546 1 arg.numer 1 @@ -14615,7 +15422,7 @@ arg.denom 3 1 return -64619223 +1279309678 1 return.numer 11 @@ -14628,7 +15435,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 452 this -64619223 +1279309678 1 this.numer 11 @@ -14641,7 +15448,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 453 this -64619223 +1279309678 1 this.numer 11 @@ -14654,7 +15461,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 453 this -64619223 +1279309678 1 this.numer 11 @@ -14670,7 +15477,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 452 this -64619223 +1279309678 1 this.numer 11 @@ -14679,7 +15486,7 @@ this.denom 6 1 return -1576039226 +48914743 1 return.toString "11/6" @@ -14689,7 +15496,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 454 this -1306202900 +1300393335 1 this.numer 3 @@ -14698,7 +15505,7 @@ this.denom 4 1 arg -1306202900 +1300393335 1 arg.numer 3 @@ -14744,7 +15551,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 455 this -1427969284 +1106131243 1 this.numer 3 @@ -14763,7 +15570,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 454 this -1306202900 +1300393335 1 this.numer 3 @@ -14772,7 +15579,7 @@ this.denom 4 1 arg -1306202900 +1300393335 1 arg.numer 3 @@ -14781,7 +15588,7 @@ arg.denom 4 1 return -1427969284 +1106131243 1 return.numer 3 @@ -14794,7 +15601,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 457 this -1427969284 +1106131243 1 this.numer 3 @@ -14807,7 +15614,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 458 this -1427969284 +1106131243 1 this.numer 3 @@ -14820,7 +15627,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 458 this -1427969284 +1106131243 1 this.numer 3 @@ -14836,7 +15643,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 457 this -1427969284 +1106131243 1 this.numer 3 @@ -14845,7 +15652,7 @@ this.denom 2 1 return -1750000963 +510109769 1 return.toString "3/2" @@ -14855,7 +15662,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 459 this -1144101830 +2138564891 1 this.numer 3 @@ -14864,7 +15671,7 @@ this.denom 2 1 arg -1144101830 +2138564891 1 arg.numer 3 @@ -14910,7 +15717,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 460 this -330155829 +1473611564 1 this.numer 3 @@ -14929,7 +15736,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 459 this -1144101830 +2138564891 1 this.numer 3 @@ -14938,7 +15745,7 @@ this.denom 2 1 arg -1144101830 +2138564891 1 arg.numer 3 @@ -14947,7 +15754,7 @@ arg.denom 2 1 return -330155829 +1473611564 1 return.numer 3 @@ -14960,7 +15767,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 462 this -330155829 +1473611564 1 this.numer 3 @@ -14973,7 +15780,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 463 this -330155829 +1473611564 1 this.numer 3 @@ -14986,7 +15793,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 463 this -330155829 +1473611564 1 this.numer 3 @@ -15002,7 +15809,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 462 this -330155829 +1473611564 1 this.numer 3 @@ -15011,7 +15818,7 @@ this.denom 1 1 return -1978757802 +107456312 1 return.toString "3" @@ -15028,7 +15835,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 464 this -1050620772 +921760190 1 this.numer 0 @@ -15051,7 +15858,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 465 this -1172769370 +360067785 1 this.numer 1 @@ -15074,7 +15881,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 466 this -1129889424 +1860250540 1 this.numer -1 @@ -15097,7 +15904,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 467 this -2001142394 +1426329391 1 this.numer 2 @@ -15120,7 +15927,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 468 this -1458820291 +1690859824 1 this.numer 3 @@ -15169,7 +15976,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 469 this -571833038 +1074593562 1 this.numer 1 @@ -15221,7 +16028,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 471 this -808549341 +660017404 1 this.numer 1 @@ -15273,7 +16080,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 473 this -12255971 +1381965390 1 this.numer 1 @@ -15325,7 +16132,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 475 this -1975158132 +1979313356 1 this.numer 2 @@ -15377,7 +16184,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 477 this -680509198 +1386883398 1 this.numer 3 @@ -15429,7 +16236,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 479 this -1967670511 +1306854175 1 this.numer 5 @@ -15481,7 +16288,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 481 this -1537598224 +1742920067 1 this.numer 6 @@ -15533,7 +16340,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 483 this -1742626417 +1564984895 1 this.numer 8 @@ -15585,7 +16392,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 485 this -940212733 +1587819720 1 this.numer -1 @@ -15637,7 +16444,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 487 this -970728905 +1002191352 1 this.numer 3 @@ -15666,7 +16473,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 489 this -607440076 +1256440269 1 this.numer 1 @@ -15695,7 +16502,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 490 this -108099494 +704024720 1 this.numer -1 @@ -15724,7 +16531,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 491 this -57030296 +1452012306 1 this.numer 100 @@ -15753,7 +16560,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 492 this -730478310 +211968962 1 this.numer 2 @@ -15782,7 +16589,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 493 this -2132429918 +1486566962 1 this.numer -2 @@ -15811,7 +16618,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 494 this -395047043 +1173643169 1 this.numer 9 @@ -15830,7 +16637,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 495 this -1050620772 +921760190 1 this.numer 0 @@ -15839,7 +16646,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -15862,7 +16669,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 496 this -1683698824 +1282287470 1 this.numer 1 @@ -15881,7 +16688,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 495 this -1050620772 +921760190 1 this.numer 0 @@ -15890,7 +16697,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -15899,7 +16706,7 @@ arg.denom 0 1 return -1683698824 +1282287470 1 return.numer 1 @@ -15912,7 +16719,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 497 this -1683698824 +1282287470 1 this.numer 1 @@ -15925,7 +16732,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 498 this -1683698824 +1282287470 1 this.numer 1 @@ -15938,7 +16745,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 498 this -1683698824 +1282287470 1 this.numer 1 @@ -15954,7 +16761,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 497 this -1683698824 +1282287470 1 this.numer 1 @@ -15963,7 +16770,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -15973,7 +16780,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 499 this -607440076 +1256440269 1 this.numer 1 @@ -15982,7 +16789,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16005,7 +16812,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 500 this -534118449 +1397616978 1 this.numer 1 @@ -16024,7 +16831,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 499 this -607440076 +1256440269 1 this.numer 1 @@ -16033,7 +16840,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16042,7 +16849,7 @@ arg.denom 1 1 return -534118449 +1397616978 1 return.numer 1 @@ -16055,7 +16862,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 501 this -534118449 +1397616978 1 this.numer 1 @@ -16068,7 +16875,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 502 this -534118449 +1397616978 1 this.numer 1 @@ -16081,7 +16888,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 502 this -534118449 +1397616978 1 this.numer 1 @@ -16097,7 +16904,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 501 this -534118449 +1397616978 1 this.numer 1 @@ -16106,7 +16913,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16116,7 +16923,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 503 this -1050620772 +921760190 1 this.numer 0 @@ -16125,7 +16932,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -16148,7 +16955,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 504 this -447127883 +1390835631 1 this.numer -1 @@ -16167,7 +16974,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 503 this -1050620772 +921760190 1 this.numer 0 @@ -16176,7 +16983,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -16185,7 +16992,7 @@ arg.denom 0 1 return -447127883 +1390835631 1 return.numer -1 @@ -16198,7 +17005,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 505 this -447127883 +1390835631 1 this.numer -1 @@ -16211,7 +17018,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 506 this -447127883 +1390835631 1 this.numer -1 @@ -16224,7 +17031,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 506 this -447127883 +1390835631 1 this.numer -1 @@ -16240,7 +17047,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 505 this -447127883 +1390835631 1 this.numer -1 @@ -16249,7 +17056,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16259,7 +17066,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 507 this -108099494 +704024720 1 this.numer -1 @@ -16268,7 +17075,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16291,7 +17098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 508 this -833048728 +889729797 1 this.numer -1 @@ -16310,7 +17117,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 507 this -108099494 +704024720 1 this.numer -1 @@ -16319,7 +17126,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16328,7 +17135,7 @@ arg.denom 1 1 return -833048728 +889729797 1 return.numer -1 @@ -16341,7 +17148,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 509 this -833048728 +889729797 1 this.numer -1 @@ -16354,7 +17161,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 510 this -833048728 +889729797 1 this.numer -1 @@ -16367,7 +17174,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 510 this -833048728 +889729797 1 this.numer -1 @@ -16383,7 +17190,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 509 this -833048728 +889729797 1 this.numer -1 @@ -16392,7 +17199,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16402,7 +17209,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 511 this -1050620772 +921760190 1 this.numer 0 @@ -16411,7 +17218,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -16434,7 +17241,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 512 this -1604076703 +148912029 1 this.numer 100 @@ -16453,7 +17260,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 511 this -1050620772 +921760190 1 this.numer 0 @@ -16462,7 +17269,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -16471,7 +17278,7 @@ arg.denom 0 1 return -1604076703 +148912029 1 return.numer 100 @@ -16484,7 +17291,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 513 this -1604076703 +148912029 1 this.numer 100 @@ -16497,7 +17304,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 514 this -1604076703 +148912029 1 this.numer 100 @@ -16510,7 +17317,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 514 this -1604076703 +148912029 1 this.numer 100 @@ -16526,7 +17333,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 513 this -1604076703 +148912029 1 this.numer 100 @@ -16535,7 +17342,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16545,7 +17352,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 515 this -57030296 +1452012306 1 this.numer 100 @@ -16554,7 +17361,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16577,7 +17384,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 516 this -207442883 +874217650 1 this.numer 100 @@ -16596,7 +17403,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 515 this -57030296 +1452012306 1 this.numer 100 @@ -16605,7 +17412,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16614,7 +17421,7 @@ arg.denom 1 1 return -207442883 +874217650 1 return.numer 100 @@ -16627,7 +17434,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 517 this -207442883 +874217650 1 this.numer 100 @@ -16640,7 +17447,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 518 this -207442883 +874217650 1 this.numer 100 @@ -16653,7 +17460,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 518 this -207442883 +874217650 1 this.numer 100 @@ -16669,7 +17476,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 517 this -207442883 +874217650 1 this.numer 100 @@ -16678,7 +17485,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16688,7 +17495,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 519 this -1050620772 +921760190 1 this.numer 0 @@ -16697,7 +17504,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -16720,7 +17527,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 520 this -1126575500 +1436664465 1 this.numer 2 @@ -16739,7 +17546,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 519 this -1050620772 +921760190 1 this.numer 0 @@ -16748,7 +17555,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -16757,7 +17564,7 @@ arg.denom 0 1 return -1126575500 +1436664465 1 return.numer 2 @@ -16770,7 +17577,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 521 this -1126575500 +1436664465 1 this.numer 2 @@ -16783,7 +17590,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 522 this -1126575500 +1436664465 1 this.numer 2 @@ -16796,7 +17603,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 522 this -1126575500 +1436664465 1 this.numer 2 @@ -16812,7 +17619,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 521 this -1126575500 +1436664465 1 this.numer 2 @@ -16821,7 +17628,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16831,7 +17638,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 523 this -730478310 +211968962 1 this.numer 2 @@ -16840,7 +17647,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16863,7 +17670,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 524 this -2138596548 +558187323 1 this.numer 2 @@ -16882,7 +17689,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 523 this -730478310 +211968962 1 this.numer 2 @@ -16891,7 +17698,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -16900,7 +17707,7 @@ arg.denom 1 1 return -2138596548 +558187323 1 return.numer 2 @@ -16913,7 +17720,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 525 this -2138596548 +558187323 1 this.numer 2 @@ -16926,7 +17733,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 526 this -2138596548 +558187323 1 this.numer 2 @@ -16939,7 +17746,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 526 this -2138596548 +558187323 1 this.numer 2 @@ -16955,7 +17762,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 525 this -2138596548 +558187323 1 this.numer 2 @@ -16964,7 +17771,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -16974,7 +17781,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 527 this -1050620772 +921760190 1 this.numer 0 @@ -16983,7 +17790,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -17006,7 +17813,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 528 this -958382397 +680576081 1 this.numer -2 @@ -17025,7 +17832,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 527 this -1050620772 +921760190 1 this.numer 0 @@ -17034,7 +17841,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -17043,7 +17850,7 @@ arg.denom 0 1 return -958382397 +680576081 1 return.numer -2 @@ -17056,7 +17863,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 529 this -958382397 +680576081 1 this.numer -2 @@ -17069,7 +17876,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 530 this -958382397 +680576081 1 this.numer -2 @@ -17082,7 +17889,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 530 this -958382397 +680576081 1 this.numer -2 @@ -17098,7 +17905,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 529 this -958382397 +680576081 1 this.numer -2 @@ -17107,7 +17914,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17117,7 +17924,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 531 this -2132429918 +1486566962 1 this.numer -2 @@ -17126,7 +17933,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -17149,7 +17956,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 532 this -1405593879 +1088872417 1 this.numer -2 @@ -17168,7 +17975,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 531 this -2132429918 +1486566962 1 this.numer -2 @@ -17177,7 +17984,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -17186,7 +17993,7 @@ arg.denom 1 1 return -1405593879 +1088872417 1 return.numer -2 @@ -17199,7 +18006,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 533 this -1405593879 +1088872417 1 this.numer -2 @@ -17212,7 +18019,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 534 this -1405593879 +1088872417 1 this.numer -2 @@ -17225,7 +18032,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 534 this -1405593879 +1088872417 1 this.numer -2 @@ -17241,7 +18048,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 533 this -1405593879 +1088872417 1 this.numer -2 @@ -17250,7 +18057,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17260,7 +18067,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 535 this -1050620772 +921760190 1 this.numer 0 @@ -17269,7 +18076,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -17292,7 +18099,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 536 this -1496207353 +453523494 1 this.numer 9 @@ -17311,7 +18118,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 535 this -1050620772 +921760190 1 this.numer 0 @@ -17320,7 +18127,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -17329,7 +18136,7 @@ arg.denom 0 1 return -1496207353 +453523494 1 return.numer 9 @@ -17342,7 +18149,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 537 this -1496207353 +453523494 1 this.numer 9 @@ -17355,7 +18162,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 538 this -1496207353 +453523494 1 this.numer 9 @@ -17368,7 +18175,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 538 this -1496207353 +453523494 1 this.numer 9 @@ -17384,7 +18191,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 537 this -1496207353 +453523494 1 this.numer 9 @@ -17393,7 +18200,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17403,7 +18210,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 539 this -395047043 +1173643169 1 this.numer 9 @@ -17412,7 +18219,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -17435,7 +18242,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 540 this -1870959148 +274722023 1 this.numer 9 @@ -17454,7 +18261,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 539 this -395047043 +1173643169 1 this.numer 9 @@ -17463,7 +18270,7 @@ this.denom 0 1 arg -1050620772 +921760190 1 arg.numer 0 @@ -17472,7 +18279,7 @@ arg.denom 1 1 return -1870959148 +274722023 1 return.numer 9 @@ -17485,7 +18292,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 541 this -1870959148 +274722023 1 this.numer 9 @@ -17498,7 +18305,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 542 this -1870959148 +274722023 1 this.numer 9 @@ -17511,7 +18318,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 542 this -1870959148 +274722023 1 this.numer 9 @@ -17527,7 +18334,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 541 this -1870959148 +274722023 1 this.numer 9 @@ -17536,7 +18343,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17546,7 +18353,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 543 this -1172769370 +360067785 1 this.numer 1 @@ -17555,7 +18362,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -17578,7 +18385,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 544 this -1754841062 +1052967153 1 this.numer 1 @@ -17597,7 +18404,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 543 this -1172769370 +360067785 1 this.numer 1 @@ -17606,7 +18413,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -17615,7 +18422,7 @@ arg.denom 0 1 return -1754841062 +1052967153 1 return.numer 1 @@ -17628,7 +18435,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 545 this -1754841062 +1052967153 1 this.numer 1 @@ -17641,7 +18448,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 546 this -1754841062 +1052967153 1 this.numer 1 @@ -17654,7 +18461,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 546 this -1754841062 +1052967153 1 this.numer 1 @@ -17670,7 +18477,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 545 this -1754841062 +1052967153 1 this.numer 1 @@ -17679,7 +18486,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17689,7 +18496,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 547 this -607440076 +1256440269 1 this.numer 1 @@ -17698,7 +18505,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -17721,7 +18528,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 548 this -73321136 +1210898719 1 this.numer 1 @@ -17740,7 +18547,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 547 this -607440076 +1256440269 1 this.numer 1 @@ -17749,7 +18556,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -17758,7 +18565,7 @@ arg.denom 1 1 return -73321136 +1210898719 1 return.numer 1 @@ -17771,7 +18578,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 549 this -73321136 +1210898719 1 this.numer 1 @@ -17784,7 +18591,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 550 this -73321136 +1210898719 1 this.numer 1 @@ -17797,7 +18604,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 550 this -73321136 +1210898719 1 this.numer 1 @@ -17813,7 +18620,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 549 this -73321136 +1210898719 1 this.numer 1 @@ -17822,7 +18629,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17832,7 +18639,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 551 this -1172769370 +360067785 1 this.numer 1 @@ -17841,7 +18648,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -17864,7 +18671,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 552 this -1800203021 +306123060 1 this.numer -1 @@ -17883,7 +18690,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 551 this -1172769370 +360067785 1 this.numer 1 @@ -17892,7 +18699,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -17901,7 +18708,7 @@ arg.denom 0 1 return -1800203021 +306123060 1 return.numer -1 @@ -17914,7 +18721,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 553 this -1800203021 +306123060 1 this.numer -1 @@ -17927,7 +18734,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 554 this -1800203021 +306123060 1 this.numer -1 @@ -17940,7 +18747,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 554 this -1800203021 +306123060 1 this.numer -1 @@ -17956,7 +18763,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 553 this -1800203021 +306123060 1 this.numer -1 @@ -17965,7 +18772,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -17975,7 +18782,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 555 this -108099494 +704024720 1 this.numer -1 @@ -17984,7 +18791,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18007,7 +18814,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 556 this -115071364 +2104028992 1 this.numer -1 @@ -18026,7 +18833,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 555 this -108099494 +704024720 1 this.numer -1 @@ -18035,7 +18842,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18044,7 +18851,7 @@ arg.denom 1 1 return -115071364 +2104028992 1 return.numer -1 @@ -18057,7 +18864,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 557 this -115071364 +2104028992 1 this.numer -1 @@ -18070,7 +18877,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 558 this -115071364 +2104028992 1 this.numer -1 @@ -18083,7 +18890,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 558 this -115071364 +2104028992 1 this.numer -1 @@ -18099,7 +18906,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 557 this -115071364 +2104028992 1 this.numer -1 @@ -18108,7 +18915,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18118,7 +18925,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 559 this -1172769370 +360067785 1 this.numer 1 @@ -18127,7 +18934,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -18150,7 +18957,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 560 this -1269132448 +1527430292 1 this.numer 100 @@ -18169,7 +18976,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 559 this -1172769370 +360067785 1 this.numer 1 @@ -18178,7 +18985,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -18187,7 +18994,7 @@ arg.denom 0 1 return -1269132448 +1527430292 1 return.numer 100 @@ -18200,7 +19007,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 561 this -1269132448 +1527430292 1 this.numer 100 @@ -18213,7 +19020,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 562 this -1269132448 +1527430292 1 this.numer 100 @@ -18226,7 +19033,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 562 this -1269132448 +1527430292 1 this.numer 100 @@ -18242,7 +19049,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 561 this -1269132448 +1527430292 1 this.numer 100 @@ -18251,7 +19058,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18261,7 +19068,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 563 this -57030296 +1452012306 1 this.numer 100 @@ -18270,7 +19077,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18293,7 +19100,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 564 this -1501471532 +1975546571 1 this.numer 100 @@ -18312,7 +19119,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 563 this -57030296 +1452012306 1 this.numer 100 @@ -18321,7 +19128,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18330,7 +19137,7 @@ arg.denom 1 1 return -1501471532 +1975546571 1 return.numer 100 @@ -18343,7 +19150,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 565 this -1501471532 +1975546571 1 this.numer 100 @@ -18356,7 +19163,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 566 this -1501471532 +1975546571 1 this.numer 100 @@ -18369,7 +19176,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 566 this -1501471532 +1975546571 1 this.numer 100 @@ -18385,7 +19192,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 565 this -1501471532 +1975546571 1 this.numer 100 @@ -18394,7 +19201,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18404,7 +19211,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 567 this -1172769370 +360067785 1 this.numer 1 @@ -18413,7 +19220,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -18436,7 +19243,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 568 this -151702427 +521960438 1 this.numer 2 @@ -18455,7 +19262,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 567 this -1172769370 +360067785 1 this.numer 1 @@ -18464,7 +19271,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -18473,7 +19280,7 @@ arg.denom 0 1 return -151702427 +521960438 1 return.numer 2 @@ -18486,7 +19293,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 569 this -151702427 +521960438 1 this.numer 2 @@ -18499,7 +19306,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 570 this -151702427 +521960438 1 this.numer 2 @@ -18512,7 +19319,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 570 this -151702427 +521960438 1 this.numer 2 @@ -18528,7 +19335,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 569 this -151702427 +521960438 1 this.numer 2 @@ -18537,7 +19344,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18547,7 +19354,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 571 this -730478310 +211968962 1 this.numer 2 @@ -18556,7 +19363,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18579,7 +19386,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 572 this -599601600 +632587706 1 this.numer 2 @@ -18598,7 +19405,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 571 this -730478310 +211968962 1 this.numer 2 @@ -18607,7 +19414,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18616,7 +19423,7 @@ arg.denom 1 1 return -599601600 +632587706 1 return.numer 2 @@ -18629,7 +19436,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 573 this -599601600 +632587706 1 this.numer 2 @@ -18642,7 +19449,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 574 this -599601600 +632587706 1 this.numer 2 @@ -18655,7 +19462,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 574 this -599601600 +632587706 1 this.numer 2 @@ -18671,7 +19478,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 573 this -599601600 +632587706 1 this.numer 2 @@ -18680,7 +19487,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18690,7 +19497,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 575 this -1172769370 +360067785 1 this.numer 1 @@ -18699,7 +19506,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -18722,7 +19529,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 576 this -1510819476 +726950788 1 this.numer -2 @@ -18741,7 +19548,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 575 this -1172769370 +360067785 1 this.numer 1 @@ -18750,7 +19557,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -18759,7 +19566,7 @@ arg.denom 0 1 return -1510819476 +726950788 1 return.numer -2 @@ -18772,7 +19579,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 577 this -1510819476 +726950788 1 this.numer -2 @@ -18785,7 +19592,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 578 this -1510819476 +726950788 1 this.numer -2 @@ -18798,7 +19605,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 578 this -1510819476 +726950788 1 this.numer -2 @@ -18814,7 +19621,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 577 this -1510819476 +726950788 1 this.numer -2 @@ -18823,7 +19630,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18833,7 +19640,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 579 this -2132429918 +1486566962 1 this.numer -2 @@ -18842,7 +19649,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18865,7 +19672,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 580 this -496291004 +1567885839 1 this.numer -2 @@ -18884,7 +19691,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 579 this -2132429918 +1486566962 1 this.numer -2 @@ -18893,7 +19700,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -18902,7 +19709,7 @@ arg.denom 1 1 return -496291004 +1567885839 1 return.numer -2 @@ -18915,7 +19722,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 581 this -496291004 +1567885839 1 this.numer -2 @@ -18928,7 +19735,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 582 this -496291004 +1567885839 1 this.numer -2 @@ -18941,7 +19748,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 582 this -496291004 +1567885839 1 this.numer -2 @@ -18957,7 +19764,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 581 this -496291004 +1567885839 1 this.numer -2 @@ -18966,7 +19773,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -18976,7 +19783,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 583 this -1172769370 +360067785 1 this.numer 1 @@ -18985,7 +19792,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -19008,7 +19815,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 584 this -336419280 +558569884 1 this.numer 9 @@ -19027,7 +19834,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 583 this -1172769370 +360067785 1 this.numer 1 @@ -19036,7 +19843,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -19045,7 +19852,7 @@ arg.denom 0 1 return -336419280 +558569884 1 return.numer 9 @@ -19058,7 +19865,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 585 this -336419280 +558569884 1 this.numer 9 @@ -19071,7 +19878,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 586 this -336419280 +558569884 1 this.numer 9 @@ -19084,7 +19891,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 586 this -336419280 +558569884 1 this.numer 9 @@ -19100,7 +19907,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 585 this -336419280 +558569884 1 this.numer 9 @@ -19109,7 +19916,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19119,7 +19926,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 587 this -395047043 +1173643169 1 this.numer 9 @@ -19128,7 +19935,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -19151,7 +19958,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 588 this -2021880056 +550752602 1 this.numer 9 @@ -19170,7 +19977,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 587 this -395047043 +1173643169 1 this.numer 9 @@ -19179,7 +19986,7 @@ this.denom 0 1 arg -1172769370 +360067785 1 arg.numer 1 @@ -19188,7 +19995,7 @@ arg.denom 1 1 return -2021880056 +550752602 1 return.numer 9 @@ -19201,7 +20008,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 589 this -2021880056 +550752602 1 this.numer 9 @@ -19214,7 +20021,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 590 this -2021880056 +550752602 1 this.numer 9 @@ -19227,7 +20034,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 590 this -2021880056 +550752602 1 this.numer 9 @@ -19243,7 +20050,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 589 this -2021880056 +550752602 1 this.numer 9 @@ -19252,7 +20059,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19262,7 +20069,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 591 this -1129889424 +1860250540 1 this.numer -1 @@ -19271,7 +20078,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -19294,7 +20101,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 592 this -2104354711 +680779399 1 this.numer 1 @@ -19313,7 +20120,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 591 this -1129889424 +1860250540 1 this.numer -1 @@ -19322,7 +20129,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -19331,7 +20138,7 @@ arg.denom 0 1 return -2104354711 +680779399 1 return.numer 1 @@ -19344,7 +20151,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 593 this -2104354711 +680779399 1 this.numer 1 @@ -19357,7 +20164,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 594 this -2104354711 +680779399 1 this.numer 1 @@ -19370,7 +20177,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 594 this -2104354711 +680779399 1 this.numer 1 @@ -19386,7 +20193,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 593 this -2104354711 +680779399 1 this.numer 1 @@ -19395,7 +20202,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19405,7 +20212,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 595 this -607440076 +1256440269 1 this.numer 1 @@ -19414,7 +20221,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -19437,7 +20244,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 596 this -981445334 +1439337960 1 this.numer 1 @@ -19456,7 +20263,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 595 this -607440076 +1256440269 1 this.numer 1 @@ -19465,7 +20272,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -19474,7 +20281,7 @@ arg.denom 1 1 return -981445334 +1439337960 1 return.numer 1 @@ -19487,7 +20294,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 597 this -981445334 +1439337960 1 this.numer 1 @@ -19500,7 +20307,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 598 this -981445334 +1439337960 1 this.numer 1 @@ -19513,7 +20320,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 598 this -981445334 +1439337960 1 this.numer 1 @@ -19529,7 +20336,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 597 this -981445334 +1439337960 1 this.numer 1 @@ -19538,7 +20345,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19548,7 +20355,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 599 this -1129889424 +1860250540 1 this.numer -1 @@ -19557,7 +20364,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -19580,7 +20387,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 600 this -329835931 +741669172 1 this.numer -1 @@ -19599,7 +20406,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 599 this -1129889424 +1860250540 1 this.numer -1 @@ -19608,7 +20415,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -19617,7 +20424,7 @@ arg.denom 0 1 return -329835931 +741669172 1 return.numer -1 @@ -19630,7 +20437,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 601 this -329835931 +741669172 1 this.numer -1 @@ -19643,7 +20450,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 602 this -329835931 +741669172 1 this.numer -1 @@ -19656,7 +20463,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 602 this -329835931 +741669172 1 this.numer -1 @@ -19672,7 +20479,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 601 this -329835931 +741669172 1 this.numer -1 @@ -19681,7 +20488,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19691,7 +20498,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 603 this -108099494 +704024720 1 this.numer -1 @@ -19700,7 +20507,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -19723,7 +20530,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 604 this -897199410 +315860201 1 this.numer -1 @@ -19742,7 +20549,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 603 this -108099494 +704024720 1 this.numer -1 @@ -19751,7 +20558,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -19760,7 +20567,7 @@ arg.denom 1 1 return -897199410 +315860201 1 return.numer -1 @@ -19773,7 +20580,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 605 this -897199410 +315860201 1 this.numer -1 @@ -19786,7 +20593,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 606 this -897199410 +315860201 1 this.numer -1 @@ -19799,7 +20606,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 606 this -897199410 +315860201 1 this.numer -1 @@ -19815,7 +20622,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 605 this -897199410 +315860201 1 this.numer -1 @@ -19824,7 +20631,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19834,7 +20641,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 607 this -1129889424 +1860250540 1 this.numer -1 @@ -19843,7 +20650,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -19866,7 +20673,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 608 this -1747798283 +604125138 1 this.numer 100 @@ -19885,7 +20692,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 607 this -1129889424 +1860250540 1 this.numer -1 @@ -19894,7 +20701,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -19903,7 +20710,7 @@ arg.denom 0 1 return -1747798283 +604125138 1 return.numer 100 @@ -19916,7 +20723,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 609 this -1747798283 +604125138 1 this.numer 100 @@ -19929,7 +20736,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 610 this -1747798283 +604125138 1 this.numer 100 @@ -19942,7 +20749,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 610 this -1747798283 +604125138 1 this.numer 100 @@ -19958,7 +20765,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 609 this -1747798283 +604125138 1 this.numer 100 @@ -19967,7 +20774,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -19977,7 +20784,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 611 this -57030296 +1452012306 1 this.numer 100 @@ -19986,7 +20793,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20009,7 +20816,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 612 this -1964418715 +631659383 1 this.numer 100 @@ -20028,7 +20835,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 611 this -57030296 +1452012306 1 this.numer 100 @@ -20037,7 +20844,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20046,7 +20853,7 @@ arg.denom 1 1 return -1964418715 +631659383 1 return.numer 100 @@ -20059,7 +20866,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 613 this -1964418715 +631659383 1 this.numer 100 @@ -20072,7 +20879,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 614 this -1964418715 +631659383 1 this.numer 100 @@ -20085,7 +20892,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 614 this -1964418715 +631659383 1 this.numer 100 @@ -20101,7 +20908,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 613 this -1964418715 +631659383 1 this.numer 100 @@ -20110,7 +20917,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20120,7 +20927,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 615 this -1129889424 +1860250540 1 this.numer -1 @@ -20129,7 +20936,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -20152,7 +20959,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 616 this -571754027 +785447854 1 this.numer 2 @@ -20171,7 +20978,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 615 this -1129889424 +1860250540 1 this.numer -1 @@ -20180,7 +20987,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -20189,7 +20996,7 @@ arg.denom 0 1 return -571754027 +785447854 1 return.numer 2 @@ -20202,7 +21009,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 617 this -571754027 +785447854 1 this.numer 2 @@ -20215,7 +21022,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 618 this -571754027 +785447854 1 this.numer 2 @@ -20228,7 +21035,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 618 this -571754027 +785447854 1 this.numer 2 @@ -20244,7 +21051,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 617 this -571754027 +785447854 1 this.numer 2 @@ -20253,7 +21060,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20263,7 +21070,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 619 this -730478310 +211968962 1 this.numer 2 @@ -20272,7 +21079,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20295,7 +21102,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 620 this -1628095111 +556529265 1 this.numer 2 @@ -20314,7 +21121,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 619 this -730478310 +211968962 1 this.numer 2 @@ -20323,7 +21130,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20332,7 +21139,7 @@ arg.denom 1 1 return -1628095111 +556529265 1 return.numer 2 @@ -20345,7 +21152,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 621 this -1628095111 +556529265 1 this.numer 2 @@ -20358,7 +21165,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 622 this -1628095111 +556529265 1 this.numer 2 @@ -20371,7 +21178,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 622 this -1628095111 +556529265 1 this.numer 2 @@ -20387,7 +21194,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 621 this -1628095111 +556529265 1 this.numer 2 @@ -20396,7 +21203,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20406,7 +21213,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 623 this -1129889424 +1860250540 1 this.numer -1 @@ -20415,7 +21222,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -20438,7 +21245,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 624 this -157900503 +346224929 1 this.numer -2 @@ -20457,7 +21264,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 623 this -1129889424 +1860250540 1 this.numer -1 @@ -20466,7 +21273,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -20475,7 +21282,7 @@ arg.denom 0 1 return -157900503 +346224929 1 return.numer -2 @@ -20488,7 +21295,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 625 this -157900503 +346224929 1 this.numer -2 @@ -20501,7 +21308,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 626 this -157900503 +346224929 1 this.numer -2 @@ -20514,7 +21321,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 626 this -157900503 +346224929 1 this.numer -2 @@ -20530,7 +21337,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 625 this -157900503 +346224929 1 this.numer -2 @@ -20539,7 +21346,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20549,7 +21356,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 627 this -2132429918 +1486566962 1 this.numer -2 @@ -20558,7 +21365,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20581,7 +21388,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 628 this -1691449876 +63468833 1 this.numer -2 @@ -20600,7 +21407,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 627 this -2132429918 +1486566962 1 this.numer -2 @@ -20609,7 +21416,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20618,7 +21425,7 @@ arg.denom 1 1 return -1691449876 +63468833 1 return.numer -2 @@ -20631,7 +21438,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 629 this -1691449876 +63468833 1 this.numer -2 @@ -20644,7 +21451,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 630 this -1691449876 +63468833 1 this.numer -2 @@ -20657,7 +21464,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 630 this -1691449876 +63468833 1 this.numer -2 @@ -20673,7 +21480,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 629 this -1691449876 +63468833 1 this.numer -2 @@ -20682,7 +21489,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20692,7 +21499,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 631 this -1129889424 +1860250540 1 this.numer -1 @@ -20701,7 +21508,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -20724,7 +21531,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 632 this -1957030593 +720167805 1 this.numer 9 @@ -20743,7 +21550,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 631 this -1129889424 +1860250540 1 this.numer -1 @@ -20752,7 +21559,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -20761,7 +21568,7 @@ arg.denom 0 1 return -1957030593 +720167805 1 return.numer 9 @@ -20774,7 +21581,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 633 this -1957030593 +720167805 1 this.numer 9 @@ -20787,7 +21594,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 634 this -1957030593 +720167805 1 this.numer 9 @@ -20800,7 +21607,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 634 this -1957030593 +720167805 1 this.numer 9 @@ -20816,7 +21623,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 633 this -1957030593 +720167805 1 this.numer 9 @@ -20825,7 +21632,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20835,7 +21642,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 635 this -395047043 +1173643169 1 this.numer 9 @@ -20844,7 +21651,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20867,7 +21674,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 636 this -953639099 +1418334255 1 this.numer 9 @@ -20886,7 +21693,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 635 this -395047043 +1173643169 1 this.numer 9 @@ -20895,7 +21702,7 @@ this.denom 0 1 arg -1129889424 +1860250540 1 arg.numer -1 @@ -20904,7 +21711,7 @@ arg.denom 1 1 return -953639099 +1418334255 1 return.numer 9 @@ -20917,7 +21724,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 637 this -953639099 +1418334255 1 this.numer 9 @@ -20930,7 +21737,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 638 this -953639099 +1418334255 1 this.numer 9 @@ -20943,7 +21750,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 638 this -953639099 +1418334255 1 this.numer 9 @@ -20959,7 +21766,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 637 this -953639099 +1418334255 1 this.numer 9 @@ -20968,7 +21775,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -20978,7 +21785,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 639 this -2001142394 +1426329391 1 this.numer 2 @@ -20987,7 +21794,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -21010,7 +21817,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 640 this -1141879332 +1466073198 1 this.numer 1 @@ -21029,7 +21836,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 639 this -2001142394 +1426329391 1 this.numer 2 @@ -21038,7 +21845,7 @@ this.denom 1 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -21047,7 +21854,7 @@ arg.denom 0 1 return -1141879332 +1466073198 1 return.numer 1 @@ -21060,7 +21867,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 641 this -1141879332 +1466073198 1 this.numer 1 @@ -21073,7 +21880,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 642 this -1141879332 +1466073198 1 this.numer 1 @@ -21086,7 +21893,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 642 this -1141879332 +1466073198 1 this.numer 1 @@ -21102,7 +21909,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 641 this -1141879332 +1466073198 1 this.numer 1 @@ -21111,7 +21918,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21121,7 +21928,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 643 this -607440076 +1256440269 1 this.numer 1 @@ -21130,7 +21937,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -21153,7 +21960,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 644 this -1652063332 +398690014 1 this.numer 1 @@ -21172,7 +21979,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 643 this -607440076 +1256440269 1 this.numer 1 @@ -21181,7 +21988,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -21190,7 +21997,7 @@ arg.denom 1 1 return -1652063332 +398690014 1 return.numer 1 @@ -21203,7 +22010,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 645 this -1652063332 +398690014 1 this.numer 1 @@ -21216,7 +22023,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 646 this -1652063332 +398690014 1 this.numer 1 @@ -21229,7 +22036,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 646 this -1652063332 +398690014 1 this.numer 1 @@ -21245,7 +22052,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 645 this -1652063332 +398690014 1 this.numer 1 @@ -21254,7 +22061,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21264,7 +22071,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 647 this -2001142394 +1426329391 1 this.numer 2 @@ -21273,7 +22080,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -21296,7 +22103,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 648 this -1412348861 +1526298704 1 this.numer -1 @@ -21315,7 +22122,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 647 this -2001142394 +1426329391 1 this.numer 2 @@ -21324,7 +22131,7 @@ this.denom 1 1 arg -108099494 +704024720 1 arg.numer -1 @@ -21333,7 +22140,7 @@ arg.denom 0 1 return -1412348861 +1526298704 1 return.numer -1 @@ -21346,7 +22153,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 649 this -1412348861 +1526298704 1 this.numer -1 @@ -21359,7 +22166,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 650 this -1412348861 +1526298704 1 this.numer -1 @@ -21372,7 +22179,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 650 this -1412348861 +1526298704 1 this.numer -1 @@ -21388,7 +22195,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 649 this -1412348861 +1526298704 1 this.numer -1 @@ -21397,7 +22204,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21407,7 +22214,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 651 this -108099494 +704024720 1 this.numer -1 @@ -21416,7 +22223,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -21439,7 +22246,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 652 this -1210556536 +1593180232 1 this.numer -1 @@ -21458,7 +22265,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 651 this -108099494 +704024720 1 this.numer -1 @@ -21467,7 +22274,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -21476,7 +22283,7 @@ arg.denom 1 1 return -1210556536 +1593180232 1 return.numer -1 @@ -21489,7 +22296,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 653 this -1210556536 +1593180232 1 this.numer -1 @@ -21502,7 +22309,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 654 this -1210556536 +1593180232 1 this.numer -1 @@ -21515,7 +22322,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 654 this -1210556536 +1593180232 1 this.numer -1 @@ -21531,7 +22338,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 653 this -1210556536 +1593180232 1 this.numer -1 @@ -21540,7 +22347,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21550,7 +22357,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 655 this -2001142394 +1426329391 1 this.numer 2 @@ -21559,7 +22366,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -21582,7 +22389,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 656 this -563628874 +492079624 1 this.numer 100 @@ -21601,7 +22408,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 655 this -2001142394 +1426329391 1 this.numer 2 @@ -21610,7 +22417,7 @@ this.denom 1 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -21619,7 +22426,7 @@ arg.denom 0 1 return -563628874 +492079624 1 return.numer 100 @@ -21632,7 +22439,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 657 this -563628874 +492079624 1 this.numer 100 @@ -21645,7 +22452,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 658 this -563628874 +492079624 1 this.numer 100 @@ -21658,7 +22465,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 658 this -563628874 +492079624 1 this.numer 100 @@ -21674,7 +22481,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 657 this -563628874 +492079624 1 this.numer 100 @@ -21683,7 +22490,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21693,7 +22500,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 659 this -57030296 +1452012306 1 this.numer 100 @@ -21702,7 +22509,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -21725,7 +22532,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 660 this -360118401 +380242442 1 this.numer 100 @@ -21744,7 +22551,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 659 this -57030296 +1452012306 1 this.numer 100 @@ -21753,7 +22560,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -21762,7 +22569,7 @@ arg.denom 1 1 return -360118401 +380242442 1 return.numer 100 @@ -21775,7 +22582,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 661 this -360118401 +380242442 1 this.numer 100 @@ -21788,7 +22595,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 662 this -360118401 +380242442 1 this.numer 100 @@ -21801,7 +22608,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 662 this -360118401 +380242442 1 this.numer 100 @@ -21817,7 +22624,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 661 this -360118401 +380242442 1 this.numer 100 @@ -21826,7 +22633,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21836,7 +22643,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 663 this -2001142394 +1426329391 1 this.numer 2 @@ -21845,7 +22652,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -21868,7 +22675,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 664 this -901048361 +125881207 1 this.numer 2 @@ -21887,7 +22694,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 663 this -2001142394 +1426329391 1 this.numer 2 @@ -21896,7 +22703,7 @@ this.denom 1 1 arg -730478310 +211968962 1 arg.numer 2 @@ -21905,7 +22712,7 @@ arg.denom 0 1 return -901048361 +125881207 1 return.numer 2 @@ -21918,7 +22725,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 665 this -901048361 +125881207 1 this.numer 2 @@ -21931,7 +22738,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 666 this -901048361 +125881207 1 this.numer 2 @@ -21944,7 +22751,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 666 this -901048361 +125881207 1 this.numer 2 @@ -21960,7 +22767,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 665 this -901048361 +125881207 1 this.numer 2 @@ -21969,7 +22776,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -21979,7 +22786,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 667 this -730478310 +211968962 1 this.numer 2 @@ -21988,7 +22795,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -22011,7 +22818,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 668 this -2012608330 +1763344271 1 this.numer 2 @@ -22030,7 +22837,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 667 this -730478310 +211968962 1 this.numer 2 @@ -22039,7 +22846,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -22048,7 +22855,7 @@ arg.denom 1 1 return -2012608330 +1763344271 1 return.numer 2 @@ -22061,7 +22868,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 669 this -2012608330 +1763344271 1 this.numer 2 @@ -22074,7 +22881,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 670 this -2012608330 +1763344271 1 this.numer 2 @@ -22087,7 +22894,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 670 this -2012608330 +1763344271 1 this.numer 2 @@ -22103,7 +22910,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 669 this -2012608330 +1763344271 1 this.numer 2 @@ -22112,7 +22919,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22122,7 +22929,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 671 this -2001142394 +1426329391 1 this.numer 2 @@ -22131,7 +22938,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -22154,7 +22961,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 672 this -893278413 +1353170030 1 this.numer -2 @@ -22173,7 +22980,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 671 this -2001142394 +1426329391 1 this.numer 2 @@ -22182,7 +22989,7 @@ this.denom 1 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -22191,7 +22998,7 @@ arg.denom 0 1 return -893278413 +1353170030 1 return.numer -2 @@ -22204,7 +23011,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 673 this -893278413 +1353170030 1 this.numer -2 @@ -22217,7 +23024,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 674 this -893278413 +1353170030 1 this.numer -2 @@ -22230,7 +23037,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 674 this -893278413 +1353170030 1 this.numer -2 @@ -22246,7 +23053,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 673 this -893278413 +1353170030 1 this.numer -2 @@ -22255,7 +23062,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22265,7 +23072,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 675 this -2132429918 +1486566962 1 this.numer -2 @@ -22274,7 +23081,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -22297,7 +23104,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 676 this -272111114 +370869802 1 this.numer -2 @@ -22316,7 +23123,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 675 this -2132429918 +1486566962 1 this.numer -2 @@ -22325,7 +23132,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -22334,7 +23141,7 @@ arg.denom 1 1 return -272111114 +370869802 1 return.numer -2 @@ -22347,7 +23154,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 677 this -272111114 +370869802 1 this.numer -2 @@ -22360,7 +23167,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 678 this -272111114 +370869802 1 this.numer -2 @@ -22373,7 +23180,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 678 this -272111114 +370869802 1 this.numer -2 @@ -22389,7 +23196,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 677 this -272111114 +370869802 1 this.numer -2 @@ -22398,7 +23205,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22408,7 +23215,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 679 this -2001142394 +1426329391 1 this.numer 2 @@ -22417,7 +23224,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -22440,7 +23247,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 680 this -1378808535 +398572781 1 this.numer 9 @@ -22459,7 +23266,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 679 this -2001142394 +1426329391 1 this.numer 2 @@ -22468,7 +23275,7 @@ this.denom 1 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -22477,7 +23284,7 @@ arg.denom 0 1 return -1378808535 +398572781 1 return.numer 9 @@ -22490,7 +23297,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 681 this -1378808535 +398572781 1 this.numer 9 @@ -22503,7 +23310,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 682 this -1378808535 +398572781 1 this.numer 9 @@ -22516,7 +23323,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 682 this -1378808535 +398572781 1 this.numer 9 @@ -22532,7 +23339,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 681 this -1378808535 +398572781 1 this.numer 9 @@ -22541,7 +23348,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22551,7 +23358,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 683 this -395047043 +1173643169 1 this.numer 9 @@ -22560,7 +23367,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -22583,7 +23390,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 684 this -139012968 +765284253 1 this.numer 9 @@ -22602,7 +23409,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 683 this -395047043 +1173643169 1 this.numer 9 @@ -22611,7 +23418,7 @@ this.denom 0 1 arg -2001142394 +1426329391 1 arg.numer 2 @@ -22620,7 +23427,7 @@ arg.denom 1 1 return -139012968 +765284253 1 return.numer 9 @@ -22633,7 +23440,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 685 this -139012968 +765284253 1 this.numer 9 @@ -22646,7 +23453,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 686 this -139012968 +765284253 1 this.numer 9 @@ -22659,7 +23466,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 686 this -139012968 +765284253 1 this.numer 9 @@ -22675,7 +23482,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 685 this -139012968 +765284253 1 this.numer 9 @@ -22684,7 +23491,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22694,7 +23501,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 687 this -571833038 +1074593562 1 this.numer 1 @@ -22703,7 +23510,7 @@ this.denom 2 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -22726,7 +23533,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 688 this -2076228887 +1077199500 1 this.numer 2 @@ -22745,7 +23552,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 687 this -571833038 +1074593562 1 this.numer 1 @@ -22754,7 +23561,7 @@ this.denom 2 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -22763,7 +23570,7 @@ arg.denom 0 1 return -2076228887 +1077199500 1 return.numer 2 @@ -22776,7 +23583,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 689 this -2076228887 +1077199500 1 this.numer 2 @@ -22789,7 +23596,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 690 this -2076228887 +1077199500 1 this.numer 2 @@ -22802,7 +23609,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 690 this -2076228887 +1077199500 1 this.numer 2 @@ -22818,7 +23625,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 689 this -2076228887 +1077199500 1 this.numer 2 @@ -22827,7 +23634,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22837,7 +23644,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 691 this -607440076 +1256440269 1 this.numer 1 @@ -22846,7 +23653,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -22869,7 +23676,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 692 this -717123706 +240166646 1 this.numer 2 @@ -22888,7 +23695,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 691 this -607440076 +1256440269 1 this.numer 1 @@ -22897,7 +23704,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -22906,7 +23713,7 @@ arg.denom 2 1 return -717123706 +240166646 1 return.numer 2 @@ -22919,7 +23726,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 693 this -717123706 +240166646 1 this.numer 2 @@ -22932,7 +23739,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 694 this -717123706 +240166646 1 this.numer 2 @@ -22945,7 +23752,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 694 this -717123706 +240166646 1 this.numer 2 @@ -22961,7 +23768,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 693 this -717123706 +240166646 1 this.numer 2 @@ -22970,7 +23777,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -22980,7 +23787,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 695 this -571833038 +1074593562 1 this.numer 1 @@ -22989,7 +23796,7 @@ this.denom 2 1 arg -108099494 +704024720 1 arg.numer -1 @@ -23012,7 +23819,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 696 this -1019899778 +351028485 1 this.numer -2 @@ -23031,7 +23838,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 695 this -571833038 +1074593562 1 this.numer 1 @@ -23040,7 +23847,7 @@ this.denom 2 1 arg -108099494 +704024720 1 arg.numer -1 @@ -23049,7 +23856,7 @@ arg.denom 0 1 return -1019899778 +351028485 1 return.numer -2 @@ -23062,7 +23869,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 697 this -1019899778 +351028485 1 this.numer -2 @@ -23075,7 +23882,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 698 this -1019899778 +351028485 1 this.numer -2 @@ -23088,7 +23895,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 698 this -1019899778 +351028485 1 this.numer -2 @@ -23104,7 +23911,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 697 this -1019899778 +351028485 1 this.numer -2 @@ -23113,7 +23920,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23123,7 +23930,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 699 this -108099494 +704024720 1 this.numer -1 @@ -23132,7 +23939,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -23155,7 +23962,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 700 this -241098492 +1405747618 1 this.numer -2 @@ -23174,7 +23981,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 699 this -108099494 +704024720 1 this.numer -1 @@ -23183,7 +23990,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -23192,7 +23999,7 @@ arg.denom 2 1 return -241098492 +1405747618 1 return.numer -2 @@ -23205,7 +24012,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 701 this -241098492 +1405747618 1 this.numer -2 @@ -23218,7 +24025,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 702 this -241098492 +1405747618 1 this.numer -2 @@ -23231,7 +24038,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 702 this -241098492 +1405747618 1 this.numer -2 @@ -23247,7 +24054,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 701 this -241098492 +1405747618 1 this.numer -2 @@ -23256,7 +24063,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23266,7 +24073,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 703 this -571833038 +1074593562 1 this.numer 1 @@ -23275,7 +24082,7 @@ this.denom 2 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -23298,7 +24105,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 704 this -1988196802 +898406901 1 this.numer 200 @@ -23317,7 +24124,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 703 this -571833038 +1074593562 1 this.numer 1 @@ -23326,7 +24133,7 @@ this.denom 2 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -23335,7 +24142,7 @@ arg.denom 0 1 return -1988196802 +898406901 1 return.numer 200 @@ -23348,7 +24155,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 705 this -1988196802 +898406901 1 this.numer 200 @@ -23361,7 +24168,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 706 this -1988196802 +898406901 1 this.numer 200 @@ -23374,7 +24181,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 706 this -1988196802 +898406901 1 this.numer 200 @@ -23390,7 +24197,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 705 this -1988196802 +898406901 1 this.numer 200 @@ -23399,7 +24206,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23409,7 +24216,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 707 this -57030296 +1452012306 1 this.numer 100 @@ -23418,7 +24225,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -23441,7 +24248,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 708 this -778103894 +1054932644 1 this.numer 200 @@ -23460,7 +24267,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 707 this -57030296 +1452012306 1 this.numer 100 @@ -23469,7 +24276,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -23478,7 +24285,7 @@ arg.denom 2 1 return -778103894 +1054932644 1 return.numer 200 @@ -23491,7 +24298,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 709 this -778103894 +1054932644 1 this.numer 200 @@ -23504,7 +24311,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 710 this -778103894 +1054932644 1 this.numer 200 @@ -23517,7 +24324,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 710 this -778103894 +1054932644 1 this.numer 200 @@ -23533,7 +24340,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 709 this -778103894 +1054932644 1 this.numer 200 @@ -23542,7 +24349,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23552,7 +24359,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 711 this -571833038 +1074593562 1 this.numer 1 @@ -23561,7 +24368,7 @@ this.denom 2 1 arg -730478310 +211968962 1 arg.numer 2 @@ -23584,7 +24391,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 712 this -1564219875 +1213349904 1 this.numer 4 @@ -23603,7 +24410,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 711 this -571833038 +1074593562 1 this.numer 1 @@ -23612,7 +24419,7 @@ this.denom 2 1 arg -730478310 +211968962 1 arg.numer 2 @@ -23621,7 +24428,7 @@ arg.denom 0 1 return -1564219875 +1213349904 1 return.numer 4 @@ -23634,7 +24441,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 713 this -1564219875 +1213349904 1 this.numer 4 @@ -23647,7 +24454,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 714 this -1564219875 +1213349904 1 this.numer 4 @@ -23660,7 +24467,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 714 this -1564219875 +1213349904 1 this.numer 4 @@ -23676,7 +24483,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 713 this -1564219875 +1213349904 1 this.numer 4 @@ -23685,7 +24492,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23695,7 +24502,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 715 this -730478310 +211968962 1 this.numer 2 @@ -23704,7 +24511,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -23727,7 +24534,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 716 this -348632551 +1259769769 1 this.numer 4 @@ -23746,7 +24553,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 715 this -730478310 +211968962 1 this.numer 2 @@ -23755,7 +24562,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -23764,7 +24571,7 @@ arg.denom 2 1 return -348632551 +1259769769 1 return.numer 4 @@ -23777,7 +24584,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 717 this -348632551 +1259769769 1 this.numer 4 @@ -23790,7 +24597,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 718 this -348632551 +1259769769 1 this.numer 4 @@ -23803,7 +24610,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 718 this -348632551 +1259769769 1 this.numer 4 @@ -23819,7 +24626,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 717 this -348632551 +1259769769 1 this.numer 4 @@ -23828,7 +24635,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23838,7 +24645,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 719 this -571833038 +1074593562 1 this.numer 1 @@ -23847,7 +24654,7 @@ this.denom 2 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -23870,7 +24677,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 720 this -1131895641 +444920847 1 this.numer -4 @@ -23889,7 +24696,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 719 this -571833038 +1074593562 1 this.numer 1 @@ -23898,7 +24705,7 @@ this.denom 2 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -23907,7 +24714,7 @@ arg.denom 0 1 return -1131895641 +444920847 1 return.numer -4 @@ -23920,7 +24727,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 721 this -1131895641 +444920847 1 this.numer -4 @@ -23933,7 +24740,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 722 this -1131895641 +444920847 1 this.numer -4 @@ -23946,7 +24753,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 722 this -1131895641 +444920847 1 this.numer -4 @@ -23962,7 +24769,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 721 this -1131895641 +444920847 1 this.numer -4 @@ -23971,7 +24778,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -23981,7 +24788,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 723 this -2132429918 +1486566962 1 this.numer -2 @@ -23990,7 +24797,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -24013,7 +24820,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 724 this -1359893161 +589835301 1 this.numer -4 @@ -24032,7 +24839,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 723 this -2132429918 +1486566962 1 this.numer -2 @@ -24041,7 +24848,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -24050,7 +24857,7 @@ arg.denom 2 1 return -1359893161 +589835301 1 return.numer -4 @@ -24063,7 +24870,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 725 this -1359893161 +589835301 1 this.numer -4 @@ -24076,7 +24883,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 726 this -1359893161 +589835301 1 this.numer -4 @@ -24089,7 +24896,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 726 this -1359893161 +589835301 1 this.numer -4 @@ -24105,7 +24912,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 725 this -1359893161 +589835301 1 this.numer -4 @@ -24114,7 +24921,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24124,7 +24931,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 727 this -571833038 +1074593562 1 this.numer 1 @@ -24133,7 +24940,7 @@ this.denom 2 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -24156,7 +24963,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 728 this -55901906 +2032188048 1 this.numer 18 @@ -24175,7 +24982,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 727 this -571833038 +1074593562 1 this.numer 1 @@ -24184,7 +24991,7 @@ this.denom 2 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -24193,7 +25000,7 @@ arg.denom 0 1 return -55901906 +2032188048 1 return.numer 18 @@ -24206,7 +25013,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 729 this -55901906 +2032188048 1 this.numer 18 @@ -24219,7 +25026,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 730 this -55901906 +2032188048 1 this.numer 18 @@ -24232,7 +25039,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 730 this -55901906 +2032188048 1 this.numer 18 @@ -24248,7 +25055,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 729 this -55901906 +2032188048 1 this.numer 18 @@ -24257,7 +25064,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24267,7 +25074,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 731 this -395047043 +1173643169 1 this.numer 9 @@ -24276,7 +25083,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -24299,7 +25106,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 732 this -1092980403 +112466394 1 this.numer 18 @@ -24318,7 +25125,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 731 this -395047043 +1173643169 1 this.numer 9 @@ -24327,7 +25134,7 @@ this.denom 0 1 arg -571833038 +1074593562 1 arg.numer 1 @@ -24336,7 +25143,7 @@ arg.denom 2 1 return -1092980403 +112466394 1 return.numer 18 @@ -24349,7 +25156,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 733 this -1092980403 +112466394 1 this.numer 18 @@ -24362,7 +25169,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 734 this -1092980403 +112466394 1 this.numer 18 @@ -24375,7 +25182,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 734 this -1092980403 +112466394 1 this.numer 18 @@ -24391,7 +25198,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 733 this -1092980403 +112466394 1 this.numer 18 @@ -24400,7 +25207,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24410,7 +25217,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 735 this -940212733 +1587819720 1 this.numer -1 @@ -24419,7 +25226,7 @@ this.denom 2 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -24442,7 +25249,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 736 this -146516783 +992846223 1 this.numer 2 @@ -24461,7 +25268,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 735 this -940212733 +1587819720 1 this.numer -1 @@ -24470,7 +25277,7 @@ this.denom 2 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -24479,7 +25286,7 @@ arg.denom 0 1 return -146516783 +992846223 1 return.numer 2 @@ -24492,7 +25299,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 737 this -146516783 +992846223 1 this.numer 2 @@ -24505,7 +25312,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 738 this -146516783 +992846223 1 this.numer 2 @@ -24518,7 +25325,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 738 this -146516783 +992846223 1 this.numer 2 @@ -24534,7 +25341,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 737 this -146516783 +992846223 1 this.numer 2 @@ -24543,7 +25350,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24553,7 +25360,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 739 this -607440076 +1256440269 1 this.numer 1 @@ -24562,7 +25369,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -24585,7 +25392,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 740 this -1491312419 +1493625803 1 this.numer 2 @@ -24604,7 +25411,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 739 this -607440076 +1256440269 1 this.numer 1 @@ -24613,7 +25420,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -24622,7 +25429,7 @@ arg.denom 2 1 return -1491312419 +1493625803 1 return.numer 2 @@ -24635,7 +25442,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 741 this -1491312419 +1493625803 1 this.numer 2 @@ -24648,7 +25455,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 742 this -1491312419 +1493625803 1 this.numer 2 @@ -24661,7 +25468,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 742 this -1491312419 +1493625803 1 this.numer 2 @@ -24677,7 +25484,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 741 this -1491312419 +1493625803 1 this.numer 2 @@ -24686,7 +25493,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24696,7 +25503,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 743 this -940212733 +1587819720 1 this.numer -1 @@ -24705,7 +25512,7 @@ this.denom 2 1 arg -108099494 +704024720 1 arg.numer -1 @@ -24728,7 +25535,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 744 this -1206181996 +630074945 1 this.numer -2 @@ -24747,7 +25554,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 743 this -940212733 +1587819720 1 this.numer -1 @@ -24756,7 +25563,7 @@ this.denom 2 1 arg -108099494 +704024720 1 arg.numer -1 @@ -24765,7 +25572,7 @@ arg.denom 0 1 return -1206181996 +630074945 1 return.numer -2 @@ -24778,7 +25585,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 745 this -1206181996 +630074945 1 this.numer -2 @@ -24791,7 +25598,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 746 this -1206181996 +630074945 1 this.numer -2 @@ -24804,7 +25611,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 746 this -1206181996 +630074945 1 this.numer -2 @@ -24820,7 +25627,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 745 this -1206181996 +630074945 1 this.numer -2 @@ -24829,7 +25636,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24839,7 +25646,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 747 this -108099494 +704024720 1 this.numer -1 @@ -24848,7 +25655,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -24871,7 +25678,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 748 this -55179092 +64133603 1 this.numer -2 @@ -24890,7 +25697,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 747 this -108099494 +704024720 1 this.numer -1 @@ -24899,7 +25706,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -24908,7 +25715,7 @@ arg.denom 2 1 return -55179092 +64133603 1 return.numer -2 @@ -24921,7 +25728,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 749 this -55179092 +64133603 1 this.numer -2 @@ -24934,7 +25741,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 750 this -55179092 +64133603 1 this.numer -2 @@ -24947,7 +25754,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 750 this -55179092 +64133603 1 this.numer -2 @@ -24963,7 +25770,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 749 this -55179092 +64133603 1 this.numer -2 @@ -24972,7 +25779,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -24982,7 +25789,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 751 this -940212733 +1587819720 1 this.numer -1 @@ -24991,7 +25798,7 @@ this.denom 2 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -25014,7 +25821,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 752 this -1829547387 +1436901839 1 this.numer 200 @@ -25033,7 +25840,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 751 this -940212733 +1587819720 1 this.numer -1 @@ -25042,7 +25849,7 @@ this.denom 2 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -25051,7 +25858,7 @@ arg.denom 0 1 return -1829547387 +1436901839 1 return.numer 200 @@ -25064,7 +25871,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 753 this -1829547387 +1436901839 1 this.numer 200 @@ -25077,7 +25884,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 754 this -1829547387 +1436901839 1 this.numer 200 @@ -25090,7 +25897,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 754 this -1829547387 +1436901839 1 this.numer 200 @@ -25106,7 +25913,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 753 this -1829547387 +1436901839 1 this.numer 200 @@ -25115,7 +25922,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25125,7 +25932,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 755 this -57030296 +1452012306 1 this.numer 100 @@ -25134,7 +25941,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -25157,7 +25964,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 756 this -1532075563 +999522307 1 this.numer 200 @@ -25176,7 +25983,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 755 this -57030296 +1452012306 1 this.numer 100 @@ -25185,7 +25992,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -25194,7 +26001,7 @@ arg.denom 2 1 return -1532075563 +999522307 1 return.numer 200 @@ -25207,7 +26014,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 757 this -1532075563 +999522307 1 this.numer 200 @@ -25220,7 +26027,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 758 this -1532075563 +999522307 1 this.numer 200 @@ -25233,7 +26040,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 758 this -1532075563 +999522307 1 this.numer 200 @@ -25249,7 +26056,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 757 this -1532075563 +999522307 1 this.numer 200 @@ -25258,7 +26065,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25268,7 +26075,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 759 this -940212733 +1587819720 1 this.numer -1 @@ -25277,7 +26084,7 @@ this.denom 2 1 arg -730478310 +211968962 1 arg.numer 2 @@ -25300,7 +26107,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 760 this -1265059811 +1866161430 1 this.numer 4 @@ -25319,7 +26126,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 759 this -940212733 +1587819720 1 this.numer -1 @@ -25328,7 +26135,7 @@ this.denom 2 1 arg -730478310 +211968962 1 arg.numer 2 @@ -25337,7 +26144,7 @@ arg.denom 0 1 return -1265059811 +1866161430 1 return.numer 4 @@ -25350,7 +26157,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 761 this -1265059811 +1866161430 1 this.numer 4 @@ -25363,7 +26170,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 762 this -1265059811 +1866161430 1 this.numer 4 @@ -25376,7 +26183,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 762 this -1265059811 +1866161430 1 this.numer 4 @@ -25392,7 +26199,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 761 this -1265059811 +1866161430 1 this.numer 4 @@ -25401,7 +26208,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25411,7 +26218,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 763 this -730478310 +211968962 1 this.numer 2 @@ -25420,7 +26227,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -25443,7 +26250,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 764 this -1772138177 +2024918163 1 this.numer 4 @@ -25462,7 +26269,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 763 this -730478310 +211968962 1 this.numer 2 @@ -25471,7 +26278,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -25480,7 +26287,7 @@ arg.denom 2 1 return -1772138177 +2024918163 1 return.numer 4 @@ -25493,7 +26300,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 765 this -1772138177 +2024918163 1 this.numer 4 @@ -25506,7 +26313,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 766 this -1772138177 +2024918163 1 this.numer 4 @@ -25519,7 +26326,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 766 this -1772138177 +2024918163 1 this.numer 4 @@ -25535,7 +26342,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 765 this -1772138177 +2024918163 1 this.numer 4 @@ -25544,7 +26351,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25554,7 +26361,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 767 this -940212733 +1587819720 1 this.numer -1 @@ -25563,7 +26370,7 @@ this.denom 2 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -25586,7 +26393,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 768 this -875640596 +107241811 1 this.numer -4 @@ -25605,7 +26412,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 767 this -940212733 +1587819720 1 this.numer -1 @@ -25614,7 +26421,7 @@ this.denom 2 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -25623,7 +26430,7 @@ arg.denom 0 1 return -875640596 +107241811 1 return.numer -4 @@ -25636,7 +26443,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 769 this -875640596 +107241811 1 this.numer -4 @@ -25649,7 +26456,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 770 this -875640596 +107241811 1 this.numer -4 @@ -25662,7 +26469,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 770 this -875640596 +107241811 1 this.numer -4 @@ -25678,7 +26485,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 769 this -875640596 +107241811 1 this.numer -4 @@ -25687,7 +26494,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25697,7 +26504,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 771 this -2132429918 +1486566962 1 this.numer -2 @@ -25706,7 +26513,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -25729,7 +26536,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 772 this -186064081 +558922244 1 this.numer -4 @@ -25748,7 +26555,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 771 this -2132429918 +1486566962 1 this.numer -2 @@ -25757,7 +26564,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -25766,7 +26573,7 @@ arg.denom 2 1 return -186064081 +558922244 1 return.numer -4 @@ -25779,7 +26586,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 773 this -186064081 +558922244 1 this.numer -4 @@ -25792,7 +26599,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 774 this -186064081 +558922244 1 this.numer -4 @@ -25805,7 +26612,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 774 this -186064081 +558922244 1 this.numer -4 @@ -25821,7 +26628,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 773 this -186064081 +558922244 1 this.numer -4 @@ -25830,7 +26637,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25840,7 +26647,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 775 this -940212733 +1587819720 1 this.numer -1 @@ -25849,7 +26656,7 @@ this.denom 2 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -25872,7 +26679,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 776 this -442819335 +339099861 1 this.numer 18 @@ -25891,7 +26698,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 775 this -940212733 +1587819720 1 this.numer -1 @@ -25900,7 +26707,7 @@ this.denom 2 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -25909,7 +26716,7 @@ arg.denom 0 1 return -442819335 +339099861 1 return.numer 18 @@ -25922,7 +26729,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 777 this -442819335 +339099861 1 this.numer 18 @@ -25935,7 +26742,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 778 this -442819335 +339099861 1 this.numer 18 @@ -25948,7 +26755,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 778 this -442819335 +339099861 1 this.numer 18 @@ -25964,7 +26771,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 777 this -442819335 +339099861 1 this.numer 18 @@ -25973,7 +26780,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -25983,7 +26790,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 779 this -395047043 +1173643169 1 this.numer 9 @@ -25992,7 +26799,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -26015,7 +26822,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 780 this -1433726490 +1653986196 1 this.numer 18 @@ -26034,7 +26841,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 779 this -395047043 +1173643169 1 this.numer 9 @@ -26043,7 +26850,7 @@ this.denom 0 1 arg -940212733 +1587819720 1 arg.numer -1 @@ -26052,7 +26859,7 @@ arg.denom 2 1 return -1433726490 +1653986196 1 return.numer 18 @@ -26065,7 +26872,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 781 this -1433726490 +1653986196 1 this.numer 18 @@ -26078,7 +26885,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 782 this -1433726490 +1653986196 1 this.numer 18 @@ -26091,7 +26898,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 782 this -1433726490 +1653986196 1 this.numer 18 @@ -26107,7 +26914,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 781 this -1433726490 +1653986196 1 this.numer 18 @@ -26116,7 +26923,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26126,7 +26933,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 783 this -970728905 +1002191352 1 this.numer 3 @@ -26135,7 +26942,7 @@ this.denom 2 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -26158,7 +26965,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 784 this -1874598090 +1197365356 1 this.numer 2 @@ -26177,7 +26984,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 783 this -970728905 +1002191352 1 this.numer 3 @@ -26186,7 +26993,7 @@ this.denom 2 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -26195,7 +27002,7 @@ arg.denom 0 1 return -1874598090 +1197365356 1 return.numer 2 @@ -26208,7 +27015,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 785 this -1874598090 +1197365356 1 this.numer 2 @@ -26221,7 +27028,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 786 this -1874598090 +1197365356 1 this.numer 2 @@ -26234,7 +27041,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 786 this -1874598090 +1197365356 1 this.numer 2 @@ -26250,7 +27057,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 785 this -1874598090 +1197365356 1 this.numer 2 @@ -26259,7 +27066,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26269,7 +27076,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 787 this -607440076 +1256440269 1 this.numer 1 @@ -26278,7 +27085,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -26301,7 +27108,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 788 this -637513493 +1702660825 1 this.numer 2 @@ -26320,7 +27127,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 787 this -607440076 +1256440269 1 this.numer 1 @@ -26329,7 +27136,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -26338,7 +27145,7 @@ arg.denom 2 1 return -637513493 +1702660825 1 return.numer 2 @@ -26351,7 +27158,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 789 this -637513493 +1702660825 1 this.numer 2 @@ -26364,7 +27171,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 790 this -637513493 +1702660825 1 this.numer 2 @@ -26377,7 +27184,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 790 this -637513493 +1702660825 1 this.numer 2 @@ -26393,7 +27200,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 789 this -637513493 +1702660825 1 this.numer 2 @@ -26402,7 +27209,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26412,7 +27219,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 791 this -970728905 +1002191352 1 this.numer 3 @@ -26421,7 +27228,7 @@ this.denom 2 1 arg -108099494 +704024720 1 arg.numer -1 @@ -26444,7 +27251,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 792 this -893361968 +1131040331 1 this.numer -2 @@ -26463,7 +27270,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 791 this -970728905 +1002191352 1 this.numer 3 @@ -26472,7 +27279,7 @@ this.denom 2 1 arg -108099494 +704024720 1 arg.numer -1 @@ -26481,7 +27288,7 @@ arg.denom 0 1 return -893361968 +1131040331 1 return.numer -2 @@ -26494,7 +27301,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 793 this -893361968 +1131040331 1 this.numer -2 @@ -26507,7 +27314,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 794 this -893361968 +1131040331 1 this.numer -2 @@ -26520,7 +27327,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 794 this -893361968 +1131040331 1 this.numer -2 @@ -26536,7 +27343,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 793 this -893361968 +1131040331 1 this.numer -2 @@ -26545,7 +27352,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26555,7 +27362,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 795 this -108099494 +704024720 1 this.numer -1 @@ -26564,7 +27371,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -26587,7 +27394,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 796 this -1676419999 +254749889 1 this.numer -2 @@ -26606,7 +27413,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 795 this -108099494 +704024720 1 this.numer -1 @@ -26615,7 +27422,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -26624,7 +27431,7 @@ arg.denom 2 1 return -1676419999 +254749889 1 return.numer -2 @@ -26637,7 +27444,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 797 this -1676419999 +254749889 1 this.numer -2 @@ -26650,7 +27457,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 798 this -1676419999 +254749889 1 this.numer -2 @@ -26663,7 +27470,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 798 this -1676419999 +254749889 1 this.numer -2 @@ -26679,7 +27486,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 797 this -1676419999 +254749889 1 this.numer -2 @@ -26688,7 +27495,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26698,7 +27505,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 799 this -970728905 +1002191352 1 this.numer 3 @@ -26707,7 +27514,7 @@ this.denom 2 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -26730,7 +27537,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 800 this -605474553 +973576304 1 this.numer 200 @@ -26749,7 +27556,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 799 this -970728905 +1002191352 1 this.numer 3 @@ -26758,7 +27565,7 @@ this.denom 2 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -26767,7 +27574,7 @@ arg.denom 0 1 return -605474553 +973576304 1 return.numer 200 @@ -26780,7 +27587,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 801 this -605474553 +973576304 1 this.numer 200 @@ -26793,7 +27600,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 802 this -605474553 +973576304 1 this.numer 200 @@ -26806,7 +27613,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 802 this -605474553 +973576304 1 this.numer 200 @@ -26822,7 +27629,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 801 this -605474553 +973576304 1 this.numer 200 @@ -26831,7 +27638,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26841,7 +27648,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 803 this -57030296 +1452012306 1 this.numer 100 @@ -26850,7 +27657,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -26873,7 +27680,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 804 this -1433292785 +992802731 1 this.numer 200 @@ -26892,7 +27699,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 803 this -57030296 +1452012306 1 this.numer 100 @@ -26901,7 +27708,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -26910,7 +27717,7 @@ arg.denom 2 1 return -1433292785 +992802731 1 return.numer 200 @@ -26923,7 +27730,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 805 this -1433292785 +992802731 1 this.numer 200 @@ -26936,7 +27743,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 806 this -1433292785 +992802731 1 this.numer 200 @@ -26949,7 +27756,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 806 this -1433292785 +992802731 1 this.numer 200 @@ -26965,7 +27772,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 805 this -1433292785 +992802731 1 this.numer 200 @@ -26974,7 +27781,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -26984,7 +27791,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 807 this -970728905 +1002191352 1 this.numer 3 @@ -26993,7 +27800,7 @@ this.denom 2 1 arg -730478310 +211968962 1 arg.numer 2 @@ -27016,7 +27823,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 808 this -1027769096 +715521683 1 this.numer 4 @@ -27035,7 +27842,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 807 this -970728905 +1002191352 1 this.numer 3 @@ -27044,7 +27851,7 @@ this.denom 2 1 arg -730478310 +211968962 1 arg.numer 2 @@ -27053,7 +27860,7 @@ arg.denom 0 1 return -1027769096 +715521683 1 return.numer 4 @@ -27066,7 +27873,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 809 this -1027769096 +715521683 1 this.numer 4 @@ -27079,7 +27886,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 810 this -1027769096 +715521683 1 this.numer 4 @@ -27092,7 +27899,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 810 this -1027769096 +715521683 1 this.numer 4 @@ -27108,7 +27915,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 809 this -1027769096 +715521683 1 this.numer 4 @@ -27117,7 +27924,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27127,7 +27934,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 811 this -730478310 +211968962 1 this.numer 2 @@ -27136,7 +27943,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -27159,7 +27966,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 812 this -1504223651 +1545242146 1 this.numer 4 @@ -27178,7 +27985,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 811 this -730478310 +211968962 1 this.numer 2 @@ -27187,7 +27994,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -27196,7 +28003,7 @@ arg.denom 2 1 return -1504223651 +1545242146 1 return.numer 4 @@ -27209,7 +28016,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 813 this -1504223651 +1545242146 1 this.numer 4 @@ -27222,7 +28029,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 814 this -1504223651 +1545242146 1 this.numer 4 @@ -27235,7 +28042,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 814 this -1504223651 +1545242146 1 this.numer 4 @@ -27251,7 +28058,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 813 this -1504223651 +1545242146 1 this.numer 4 @@ -27260,7 +28067,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27270,7 +28077,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 815 this -970728905 +1002191352 1 this.numer 3 @@ -27279,7 +28086,7 @@ this.denom 2 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -27302,7 +28109,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 816 this -1309409873 +1524126153 1 this.numer -4 @@ -27321,7 +28128,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 815 this -970728905 +1002191352 1 this.numer 3 @@ -27330,7 +28137,7 @@ this.denom 2 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -27339,7 +28146,7 @@ arg.denom 0 1 return -1309409873 +1524126153 1 return.numer -4 @@ -27352,7 +28159,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 817 this -1309409873 +1524126153 1 this.numer -4 @@ -27365,7 +28172,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 818 this -1309409873 +1524126153 1 this.numer -4 @@ -27378,7 +28185,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 818 this -1309409873 +1524126153 1 this.numer -4 @@ -27394,7 +28201,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 817 this -1309409873 +1524126153 1 this.numer -4 @@ -27403,7 +28210,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27413,7 +28220,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 819 this -2132429918 +1486566962 1 this.numer -2 @@ -27422,7 +28229,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -27445,7 +28252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 820 this -1986804702 +102065302 1 this.numer -4 @@ -27464,7 +28271,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 819 this -2132429918 +1486566962 1 this.numer -2 @@ -27473,7 +28280,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -27482,7 +28289,7 @@ arg.denom 2 1 return -1986804702 +102065302 1 return.numer -4 @@ -27495,7 +28302,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 821 this -1986804702 +102065302 1 this.numer -4 @@ -27508,7 +28315,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 822 this -1986804702 +102065302 1 this.numer -4 @@ -27521,7 +28328,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 822 this -1986804702 +102065302 1 this.numer -4 @@ -27537,7 +28344,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 821 this -1986804702 +102065302 1 this.numer -4 @@ -27546,7 +28353,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27556,7 +28363,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 823 this -970728905 +1002191352 1 this.numer 3 @@ -27565,7 +28372,7 @@ this.denom 2 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -27588,7 +28395,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 824 this -1003399311 +63001505 1 this.numer 18 @@ -27607,7 +28414,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 823 this -970728905 +1002191352 1 this.numer 3 @@ -27616,7 +28423,7 @@ this.denom 2 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -27625,7 +28432,7 @@ arg.denom 0 1 return -1003399311 +63001505 1 return.numer 18 @@ -27638,7 +28445,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 825 this -1003399311 +63001505 1 this.numer 18 @@ -27651,7 +28458,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 826 this -1003399311 +63001505 1 this.numer 18 @@ -27664,7 +28471,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 826 this -1003399311 +63001505 1 this.numer 18 @@ -27680,7 +28487,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 825 this -1003399311 +63001505 1 this.numer 18 @@ -27689,7 +28496,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27699,7 +28506,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 827 this -395047043 +1173643169 1 this.numer 9 @@ -27708,7 +28515,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -27731,7 +28538,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 828 this -2090623733 +191037037 1 this.numer 18 @@ -27750,7 +28557,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 827 this -395047043 +1173643169 1 this.numer 9 @@ -27759,7 +28566,7 @@ this.denom 0 1 arg -970728905 +1002191352 1 arg.numer 3 @@ -27768,7 +28575,7 @@ arg.denom 2 1 return -2090623733 +191037037 1 return.numer 18 @@ -27781,7 +28588,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 829 this -2090623733 +191037037 1 this.numer 18 @@ -27794,7 +28601,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 830 this -2090623733 +191037037 1 this.numer 18 @@ -27807,7 +28614,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 830 this -2090623733 +191037037 1 this.numer 18 @@ -27823,7 +28630,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 829 this -2090623733 +191037037 1 this.numer 18 @@ -27832,7 +28639,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27842,7 +28649,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 831 this -607440076 +1256440269 1 this.numer 1 @@ -27851,7 +28658,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -27874,7 +28681,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 832 this -2133131964 +330084561 1 this.numer 0 @@ -27893,7 +28700,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 831 this -607440076 +1256440269 1 this.numer 1 @@ -27902,7 +28709,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -27911,7 +28718,7 @@ arg.denom 0 1 return -2133131964 +330084561 1 return.numer 0 @@ -27924,7 +28731,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 833 this -2133131964 +330084561 1 this.numer 0 @@ -27937,7 +28744,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 834 this -2133131964 +330084561 1 this.numer 0 @@ -27950,7 +28757,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 834 this -2133131964 +330084561 1 this.numer 0 @@ -27966,7 +28773,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 833 this -2133131964 +330084561 1 this.numer 0 @@ -27975,7 +28782,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -27985,7 +28792,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 835 this -607440076 +1256440269 1 this.numer 1 @@ -27994,7 +28801,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28017,7 +28824,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 836 this -1456915930 +1043351526 1 this.numer 0 @@ -28036,7 +28843,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 835 this -607440076 +1256440269 1 this.numer 1 @@ -28045,7 +28852,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28054,7 +28861,7 @@ arg.denom 0 1 return -1456915930 +1043351526 1 return.numer 0 @@ -28067,7 +28874,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 837 this -1456915930 +1043351526 1 this.numer 0 @@ -28080,7 +28887,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 838 this -1456915930 +1043351526 1 this.numer 0 @@ -28093,7 +28900,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 838 this -1456915930 +1043351526 1 this.numer 0 @@ -28109,7 +28916,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 837 this -1456915930 +1043351526 1 this.numer 0 @@ -28118,7 +28925,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28128,7 +28935,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 839 this -607440076 +1256440269 1 this.numer 1 @@ -28137,7 +28944,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -28160,7 +28967,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 840 this -777492416 +937773018 1 this.numer 0 @@ -28179,7 +28986,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 839 this -607440076 +1256440269 1 this.numer 1 @@ -28188,7 +28995,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -28197,7 +29004,7 @@ arg.denom 0 1 return -777492416 +937773018 1 return.numer 0 @@ -28210,7 +29017,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 841 this -777492416 +937773018 1 this.numer 0 @@ -28223,7 +29030,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 842 this -777492416 +937773018 1 this.numer 0 @@ -28236,7 +29043,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 842 this -777492416 +937773018 1 this.numer 0 @@ -28252,7 +29059,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 841 this -777492416 +937773018 1 this.numer 0 @@ -28261,7 +29068,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28271,7 +29078,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 843 this -108099494 +704024720 1 this.numer -1 @@ -28280,7 +29087,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28303,7 +29110,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 844 this -2024527364 +728258269 1 this.numer 0 @@ -28322,7 +29129,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 843 this -108099494 +704024720 1 this.numer -1 @@ -28331,7 +29138,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28340,7 +29147,7 @@ arg.denom 0 1 return -2024527364 +728258269 1 return.numer 0 @@ -28353,7 +29160,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 845 this -2024527364 +728258269 1 this.numer 0 @@ -28366,7 +29173,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 846 this -2024527364 +728258269 1 this.numer 0 @@ -28379,7 +29186,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 846 this -2024527364 +728258269 1 this.numer 0 @@ -28395,7 +29202,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 845 this -2024527364 +728258269 1 this.numer 0 @@ -28404,7 +29211,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28414,7 +29221,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 847 this -607440076 +1256440269 1 this.numer 1 @@ -28423,7 +29230,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -28446,7 +29253,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 848 this -1500503680 +1572098393 1 this.numer 0 @@ -28465,7 +29272,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 847 this -607440076 +1256440269 1 this.numer 1 @@ -28474,7 +29281,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -28483,7 +29290,7 @@ arg.denom 0 1 return -1500503680 +1572098393 1 return.numer 0 @@ -28496,7 +29303,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 849 this -1500503680 +1572098393 1 this.numer 0 @@ -28509,7 +29316,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 850 this -1500503680 +1572098393 1 this.numer 0 @@ -28522,7 +29329,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 850 this -1500503680 +1572098393 1 this.numer 0 @@ -28538,7 +29345,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 849 this -1500503680 +1572098393 1 this.numer 0 @@ -28547,7 +29354,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28557,7 +29364,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 851 this -57030296 +1452012306 1 this.numer 100 @@ -28566,7 +29373,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28589,7 +29396,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 852 this -1064883039 +1627857534 1 this.numer 0 @@ -28608,7 +29415,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 851 this -57030296 +1452012306 1 this.numer 100 @@ -28617,7 +29424,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28626,7 +29433,7 @@ arg.denom 0 1 return -1064883039 +1627857534 1 return.numer 0 @@ -28639,7 +29446,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 853 this -1064883039 +1627857534 1 this.numer 0 @@ -28652,7 +29459,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 854 this -1064883039 +1627857534 1 this.numer 0 @@ -28665,7 +29472,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 854 this -1064883039 +1627857534 1 this.numer 0 @@ -28681,7 +29488,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 853 this -1064883039 +1627857534 1 this.numer 0 @@ -28690,7 +29497,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28700,7 +29507,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 855 this -607440076 +1256440269 1 this.numer 1 @@ -28709,7 +29516,7 @@ this.denom 0 1 arg -730478310 +211968962 1 arg.numer 2 @@ -28732,7 +29539,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 856 this -360522375 +2084663827 1 this.numer 0 @@ -28751,7 +29558,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 855 this -607440076 +1256440269 1 this.numer 1 @@ -28760,7 +29567,7 @@ this.denom 0 1 arg -730478310 +211968962 1 arg.numer 2 @@ -28769,7 +29576,7 @@ arg.denom 0 1 return -360522375 +2084663827 1 return.numer 0 @@ -28782,7 +29589,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 857 this -360522375 +2084663827 1 this.numer 0 @@ -28795,7 +29602,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 858 this -360522375 +2084663827 1 this.numer 0 @@ -28808,7 +29615,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 858 this -360522375 +2084663827 1 this.numer 0 @@ -28824,7 +29631,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 857 this -360522375 +2084663827 1 this.numer 0 @@ -28833,7 +29640,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28843,7 +29650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 859 this -730478310 +211968962 1 this.numer 2 @@ -28852,7 +29659,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28875,7 +29682,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 860 this -1248188438 +360062456 1 this.numer 0 @@ -28894,7 +29701,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 859 this -730478310 +211968962 1 this.numer 2 @@ -28903,7 +29710,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -28912,7 +29719,7 @@ arg.denom 0 1 return -1248188438 +360062456 1 return.numer 0 @@ -28925,7 +29732,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 861 this -1248188438 +360062456 1 this.numer 0 @@ -28938,7 +29745,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 862 this -1248188438 +360062456 1 this.numer 0 @@ -28951,7 +29758,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 862 this -1248188438 +360062456 1 this.numer 0 @@ -28967,7 +29774,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 861 this -1248188438 +360062456 1 this.numer 0 @@ -28976,7 +29783,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -28986,7 +29793,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 863 this -607440076 +1256440269 1 this.numer 1 @@ -28995,7 +29802,7 @@ this.denom 0 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -29018,7 +29825,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 864 this -1682813570 +1790421142 1 this.numer 0 @@ -29037,7 +29844,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 863 this -607440076 +1256440269 1 this.numer 1 @@ -29046,7 +29853,7 @@ this.denom 0 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -29055,7 +29862,7 @@ arg.denom 0 1 return -1682813570 +1790421142 1 return.numer 0 @@ -29068,7 +29875,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 865 this -1682813570 +1790421142 1 this.numer 0 @@ -29081,7 +29888,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 866 this -1682813570 +1790421142 1 this.numer 0 @@ -29094,7 +29901,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 866 this -1682813570 +1790421142 1 this.numer 0 @@ -29110,7 +29917,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 865 this -1682813570 +1790421142 1 this.numer 0 @@ -29119,7 +29926,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29129,7 +29936,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 867 this -2132429918 +1486566962 1 this.numer -2 @@ -29138,7 +29945,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -29161,7 +29968,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 868 this -688040000 +846947180 1 this.numer 0 @@ -29180,7 +29987,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 867 this -2132429918 +1486566962 1 this.numer -2 @@ -29189,7 +29996,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -29198,7 +30005,7 @@ arg.denom 0 1 return -688040000 +846947180 1 return.numer 0 @@ -29211,7 +30018,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 869 this -688040000 +846947180 1 this.numer 0 @@ -29224,7 +30031,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 870 this -688040000 +846947180 1 this.numer 0 @@ -29237,7 +30044,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 870 this -688040000 +846947180 1 this.numer 0 @@ -29253,7 +30060,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 869 this -688040000 +846947180 1 this.numer 0 @@ -29262,7 +30069,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29272,7 +30079,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 871 this -607440076 +1256440269 1 this.numer 1 @@ -29281,7 +30088,7 @@ this.denom 0 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -29304,7 +30111,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 872 this -1836324552 +1172131546 1 this.numer 0 @@ -29323,7 +30130,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 871 this -607440076 +1256440269 1 this.numer 1 @@ -29332,7 +30139,7 @@ this.denom 0 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -29341,7 +30148,7 @@ arg.denom 0 1 return -1836324552 +1172131546 1 return.numer 0 @@ -29354,7 +30161,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 873 this -1836324552 +1172131546 1 this.numer 0 @@ -29367,7 +30174,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 874 this -1836324552 +1172131546 1 this.numer 0 @@ -29380,7 +30187,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 874 this -1836324552 +1172131546 1 this.numer 0 @@ -29396,7 +30203,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 873 this -1836324552 +1172131546 1 this.numer 0 @@ -29405,7 +30212,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29415,7 +30222,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 875 this -395047043 +1173643169 1 this.numer 9 @@ -29424,7 +30231,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -29447,7 +30254,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 876 this -1619254427 +1616974404 1 this.numer 0 @@ -29466,7 +30273,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 875 this -395047043 +1173643169 1 this.numer 9 @@ -29475,7 +30282,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -29484,7 +30291,7 @@ arg.denom 0 1 return -1619254427 +1616974404 1 return.numer 0 @@ -29497,7 +30304,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 877 this -1619254427 +1616974404 1 this.numer 0 @@ -29510,7 +30317,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 878 this -1619254427 +1616974404 1 this.numer 0 @@ -29523,7 +30330,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 878 this -1619254427 +1616974404 1 this.numer 0 @@ -29539,7 +30346,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 877 this -1619254427 +1616974404 1 this.numer 0 @@ -29548,7 +30355,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29558,7 +30365,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 879 this -108099494 +704024720 1 this.numer -1 @@ -29567,7 +30374,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -29590,7 +30397,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 880 this -1896379805 +927327686 1 this.numer 0 @@ -29609,7 +30416,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 879 this -108099494 +704024720 1 this.numer -1 @@ -29618,7 +30425,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -29627,7 +30434,7 @@ arg.denom 0 1 return -1896379805 +927327686 1 return.numer 0 @@ -29640,7 +30447,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 881 this -1896379805 +927327686 1 this.numer 0 @@ -29653,7 +30460,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 882 this -1896379805 +927327686 1 this.numer 0 @@ -29666,7 +30473,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 882 this -1896379805 +927327686 1 this.numer 0 @@ -29682,7 +30489,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 881 this -1896379805 +927327686 1 this.numer 0 @@ -29691,7 +30498,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29701,7 +30508,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 883 this -607440076 +1256440269 1 this.numer 1 @@ -29710,7 +30517,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -29733,7 +30540,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 884 this -1650577508 +1582071873 1 this.numer 0 @@ -29752,7 +30559,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 883 this -607440076 +1256440269 1 this.numer 1 @@ -29761,7 +30568,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -29770,7 +30577,7 @@ arg.denom 0 1 return -1650577508 +1582071873 1 return.numer 0 @@ -29783,7 +30590,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 885 this -1650577508 +1582071873 1 this.numer 0 @@ -29796,7 +30603,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 886 this -1650577508 +1582071873 1 this.numer 0 @@ -29809,7 +30616,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 886 this -1650577508 +1582071873 1 this.numer 0 @@ -29825,7 +30632,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 885 this -1650577508 +1582071873 1 this.numer 0 @@ -29834,7 +30641,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29844,7 +30651,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 887 this -108099494 +704024720 1 this.numer -1 @@ -29853,7 +30660,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -29876,7 +30683,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 888 this -62425010 +1908981452 1 this.numer 0 @@ -29895,7 +30702,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 887 this -108099494 +704024720 1 this.numer -1 @@ -29904,7 +30711,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -29913,7 +30720,7 @@ arg.denom 0 1 return -62425010 +1908981452 1 return.numer 0 @@ -29926,7 +30733,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 889 this -62425010 +1908981452 1 this.numer 0 @@ -29939,7 +30746,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 890 this -62425010 +1908981452 1 this.numer 0 @@ -29952,7 +30759,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 890 this -62425010 +1908981452 1 this.numer 0 @@ -29968,7 +30775,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 889 this -62425010 +1908981452 1 this.numer 0 @@ -29977,7 +30784,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -29987,7 +30794,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 891 this -108099494 +704024720 1 this.numer -1 @@ -29996,7 +30803,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30019,7 +30826,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 892 this -1205123334 +433287555 1 this.numer 0 @@ -30038,7 +30845,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 891 this -108099494 +704024720 1 this.numer -1 @@ -30047,7 +30854,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30056,7 +30863,7 @@ arg.denom 0 1 return -1205123334 +433287555 1 return.numer 0 @@ -30069,7 +30876,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 893 this -1205123334 +433287555 1 this.numer 0 @@ -30082,7 +30889,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 894 this -1205123334 +433287555 1 this.numer 0 @@ -30095,7 +30902,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 894 this -1205123334 +433287555 1 this.numer 0 @@ -30111,7 +30918,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 893 this -1205123334 +433287555 1 this.numer 0 @@ -30120,7 +30927,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30130,7 +30937,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 895 this -108099494 +704024720 1 this.numer -1 @@ -30139,7 +30946,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -30162,7 +30969,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 896 this -1589599681 +27319466 1 this.numer 0 @@ -30181,7 +30988,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 895 this -108099494 +704024720 1 this.numer -1 @@ -30190,7 +30997,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -30199,7 +31006,7 @@ arg.denom 0 1 return -1589599681 +27319466 1 return.numer 0 @@ -30212,7 +31019,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 897 this -1589599681 +27319466 1 this.numer 0 @@ -30225,7 +31032,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 898 this -1589599681 +27319466 1 this.numer 0 @@ -30238,7 +31045,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 898 this -1589599681 +27319466 1 this.numer 0 @@ -30254,7 +31061,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 897 this -1589599681 +27319466 1 this.numer 0 @@ -30263,7 +31070,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30273,7 +31080,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 899 this -57030296 +1452012306 1 this.numer 100 @@ -30282,7 +31089,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30305,7 +31112,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 900 this -1705269887 +1003752023 1 this.numer 0 @@ -30324,7 +31131,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 899 this -57030296 +1452012306 1 this.numer 100 @@ -30333,7 +31140,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30342,7 +31149,7 @@ arg.denom 0 1 return -1705269887 +1003752023 1 return.numer 0 @@ -30355,7 +31162,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 901 this -1705269887 +1003752023 1 this.numer 0 @@ -30368,7 +31175,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 902 this -1705269887 +1003752023 1 this.numer 0 @@ -30381,7 +31188,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 902 this -1705269887 +1003752023 1 this.numer 0 @@ -30397,7 +31204,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 901 this -1705269887 +1003752023 1 this.numer 0 @@ -30406,7 +31213,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30416,7 +31223,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 903 this -108099494 +704024720 1 this.numer -1 @@ -30425,7 +31232,7 @@ this.denom 0 1 arg -730478310 +211968962 1 arg.numer 2 @@ -30448,7 +31255,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 904 this -154237947 +266272063 1 this.numer 0 @@ -30467,7 +31274,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 903 this -108099494 +704024720 1 this.numer -1 @@ -30476,7 +31283,7 @@ this.denom 0 1 arg -730478310 +211968962 1 arg.numer 2 @@ -30485,7 +31292,7 @@ arg.denom 0 1 return -154237947 +266272063 1 return.numer 0 @@ -30498,7 +31305,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 905 this -154237947 +266272063 1 this.numer 0 @@ -30511,7 +31318,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 906 this -154237947 +266272063 1 this.numer 0 @@ -30524,7 +31331,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 906 this -154237947 +266272063 1 this.numer 0 @@ -30540,7 +31347,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 905 this -154237947 +266272063 1 this.numer 0 @@ -30549,7 +31356,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30559,7 +31366,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 907 this -730478310 +211968962 1 this.numer 2 @@ -30568,7 +31375,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30591,7 +31398,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 908 this -264413300 +226744878 1 this.numer 0 @@ -30610,7 +31417,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 907 this -730478310 +211968962 1 this.numer 2 @@ -30619,7 +31426,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30628,7 +31435,7 @@ arg.denom 0 1 return -264413300 +226744878 1 return.numer 0 @@ -30641,7 +31448,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 909 this -264413300 +226744878 1 this.numer 0 @@ -30654,7 +31461,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 910 this -264413300 +226744878 1 this.numer 0 @@ -30667,7 +31474,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 910 this -264413300 +226744878 1 this.numer 0 @@ -30683,7 +31490,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 909 this -264413300 +226744878 1 this.numer 0 @@ -30692,7 +31499,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30702,7 +31509,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 911 this -108099494 +704024720 1 this.numer -1 @@ -30711,7 +31518,7 @@ this.denom 0 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -30734,7 +31541,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 912 this -850667457 +172032696 1 this.numer 0 @@ -30753,7 +31560,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 911 this -108099494 +704024720 1 this.numer -1 @@ -30762,7 +31569,7 @@ this.denom 0 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -30771,7 +31578,7 @@ arg.denom 0 1 return -850667457 +172032696 1 return.numer 0 @@ -30784,7 +31591,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 913 this -850667457 +172032696 1 this.numer 0 @@ -30797,7 +31604,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 914 this -850667457 +172032696 1 this.numer 0 @@ -30810,7 +31617,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 914 this -850667457 +172032696 1 this.numer 0 @@ -30826,7 +31633,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 913 this -850667457 +172032696 1 this.numer 0 @@ -30835,7 +31642,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30845,7 +31652,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 915 this -2132429918 +1486566962 1 this.numer -2 @@ -30854,7 +31661,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30877,7 +31684,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 916 this -1369311720 +299644693 1 this.numer 0 @@ -30896,7 +31703,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 915 this -2132429918 +1486566962 1 this.numer -2 @@ -30905,7 +31712,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -30914,7 +31721,7 @@ arg.denom 0 1 return -1369311720 +299644693 1 return.numer 0 @@ -30927,7 +31734,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 917 this -1369311720 +299644693 1 this.numer 0 @@ -30940,7 +31747,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 918 this -1369311720 +299644693 1 this.numer 0 @@ -30953,7 +31760,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 918 this -1369311720 +299644693 1 this.numer 0 @@ -30969,7 +31776,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 917 this -1369311720 +299644693 1 this.numer 0 @@ -30978,7 +31785,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -30988,7 +31795,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 919 this -108099494 +704024720 1 this.numer -1 @@ -30997,7 +31804,7 @@ this.denom 0 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -31020,7 +31827,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 920 this -1587316788 +1771243284 1 this.numer 0 @@ -31039,7 +31846,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 919 this -108099494 +704024720 1 this.numer -1 @@ -31048,7 +31855,7 @@ this.denom 0 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -31057,7 +31864,7 @@ arg.denom 0 1 return -1587316788 +1771243284 1 return.numer 0 @@ -31070,7 +31877,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 921 this -1587316788 +1771243284 1 this.numer 0 @@ -31083,7 +31890,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 922 this -1587316788 +1771243284 1 this.numer 0 @@ -31096,7 +31903,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 922 this -1587316788 +1771243284 1 this.numer 0 @@ -31112,7 +31919,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 921 this -1587316788 +1771243284 1 this.numer 0 @@ -31121,7 +31928,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31131,7 +31938,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 923 this -395047043 +1173643169 1 this.numer 9 @@ -31140,7 +31947,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -31163,7 +31970,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 924 this -1991392882 +2052256418 1 this.numer 0 @@ -31182,7 +31989,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 923 this -395047043 +1173643169 1 this.numer 9 @@ -31191,7 +31998,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -31200,7 +32007,7 @@ arg.denom 0 1 return -1991392882 +2052256418 1 return.numer 0 @@ -31213,7 +32020,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 925 this -1991392882 +2052256418 1 this.numer 0 @@ -31226,7 +32033,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 926 this -1991392882 +2052256418 1 this.numer 0 @@ -31239,7 +32046,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 926 this -1991392882 +2052256418 1 this.numer 0 @@ -31255,7 +32062,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 925 this -1991392882 +2052256418 1 this.numer 0 @@ -31264,7 +32071,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31274,7 +32081,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 927 this -57030296 +1452012306 1 this.numer 100 @@ -31283,7 +32090,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -31306,7 +32113,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 928 this -807529279 +2013559698 1 this.numer 0 @@ -31325,7 +32132,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 927 this -57030296 +1452012306 1 this.numer 100 @@ -31334,7 +32141,7 @@ this.denom 0 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -31343,7 +32150,7 @@ arg.denom 0 1 return -807529279 +2013559698 1 return.numer 0 @@ -31356,7 +32163,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 929 this -807529279 +2013559698 1 this.numer 0 @@ -31369,7 +32176,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 930 this -807529279 +2013559698 1 this.numer 0 @@ -31382,7 +32189,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 930 this -807529279 +2013559698 1 this.numer 0 @@ -31398,7 +32205,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 929 this -807529279 +2013559698 1 this.numer 0 @@ -31407,7 +32214,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31417,7 +32224,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 931 this -607440076 +1256440269 1 this.numer 1 @@ -31426,7 +32233,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -31449,7 +32256,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 932 this -47943113 +143695640 1 this.numer 0 @@ -31468,7 +32275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 931 this -607440076 +1256440269 1 this.numer 1 @@ -31477,7 +32284,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -31486,7 +32293,7 @@ arg.denom 0 1 return -47943113 +143695640 1 return.numer 0 @@ -31499,7 +32306,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 933 this -47943113 +143695640 1 this.numer 0 @@ -31512,7 +32319,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 934 this -47943113 +143695640 1 this.numer 0 @@ -31525,7 +32332,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 934 this -47943113 +143695640 1 this.numer 0 @@ -31541,7 +32348,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 933 this -47943113 +143695640 1 this.numer 0 @@ -31550,7 +32357,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31560,7 +32367,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 935 this -57030296 +1452012306 1 this.numer 100 @@ -31569,7 +32376,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -31592,7 +32399,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 936 this -473532566 +2043318969 1 this.numer 0 @@ -31611,7 +32418,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 935 this -57030296 +1452012306 1 this.numer 100 @@ -31620,7 +32427,7 @@ this.denom 0 1 arg -108099494 +704024720 1 arg.numer -1 @@ -31629,7 +32436,7 @@ arg.denom 0 1 return -473532566 +2043318969 1 return.numer 0 @@ -31642,7 +32449,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 937 this -473532566 +2043318969 1 this.numer 0 @@ -31655,7 +32462,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 938 this -473532566 +2043318969 1 this.numer 0 @@ -31668,7 +32475,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 938 this -473532566 +2043318969 1 this.numer 0 @@ -31684,7 +32491,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 937 this -473532566 +2043318969 1 this.numer 0 @@ -31693,7 +32500,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31703,7 +32510,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 939 this -108099494 +704024720 1 this.numer -1 @@ -31712,7 +32519,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -31735,7 +32542,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 940 this -87440980 +341878976 1 this.numer 0 @@ -31754,7 +32561,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 939 this -108099494 +704024720 1 this.numer -1 @@ -31763,7 +32570,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -31772,7 +32579,7 @@ arg.denom 0 1 return -87440980 +341878976 1 return.numer 0 @@ -31785,7 +32592,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 941 this -87440980 +341878976 1 this.numer 0 @@ -31798,7 +32605,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 942 this -87440980 +341878976 1 this.numer 0 @@ -31811,7 +32618,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 942 this -87440980 +341878976 1 this.numer 0 @@ -31827,7 +32634,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 941 this -87440980 +341878976 1 this.numer 0 @@ -31836,7 +32643,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31846,7 +32653,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 943 this -57030296 +1452012306 1 this.numer 100 @@ -31855,7 +32662,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -31878,7 +32685,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 944 this -741736312 +1331923253 1 this.numer 0 @@ -31897,7 +32704,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 943 this -57030296 +1452012306 1 this.numer 100 @@ -31906,7 +32713,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -31915,7 +32722,7 @@ arg.denom 0 1 return -741736312 +1331923253 1 return.numer 0 @@ -31928,7 +32735,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 945 this -741736312 +1331923253 1 this.numer 0 @@ -31941,7 +32748,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 946 this -741736312 +1331923253 1 this.numer 0 @@ -31954,7 +32761,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 946 this -741736312 +1331923253 1 this.numer 0 @@ -31970,7 +32777,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 945 this -741736312 +1331923253 1 this.numer 0 @@ -31979,7 +32786,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -31989,7 +32796,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 947 this -57030296 +1452012306 1 this.numer 100 @@ -31998,7 +32805,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32021,7 +32828,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 948 this -219624949 +1132967838 1 this.numer 0 @@ -32040,7 +32847,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 947 this -57030296 +1452012306 1 this.numer 100 @@ -32049,7 +32856,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32058,7 +32865,7 @@ arg.denom 0 1 return -219624949 +1132967838 1 return.numer 0 @@ -32071,7 +32878,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 949 this -219624949 +1132967838 1 this.numer 0 @@ -32084,7 +32891,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 950 this -219624949 +1132967838 1 this.numer 0 @@ -32097,7 +32904,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 950 this -219624949 +1132967838 1 this.numer 0 @@ -32113,7 +32920,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 949 this -219624949 +1132967838 1 this.numer 0 @@ -32122,7 +32929,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32132,7 +32939,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 951 this -57030296 +1452012306 1 this.numer 100 @@ -32141,7 +32948,7 @@ this.denom 0 1 arg -730478310 +211968962 1 arg.numer 2 @@ -32164,7 +32971,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 952 this -1859612297 +1853205005 1 this.numer 0 @@ -32183,7 +32990,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 951 this -57030296 +1452012306 1 this.numer 100 @@ -32192,7 +32999,7 @@ this.denom 0 1 arg -730478310 +211968962 1 arg.numer 2 @@ -32201,7 +33008,7 @@ arg.denom 0 1 return -1859612297 +1853205005 1 return.numer 0 @@ -32214,7 +33021,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 953 this -1859612297 +1853205005 1 this.numer 0 @@ -32227,7 +33034,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 954 this -1859612297 +1853205005 1 this.numer 0 @@ -32240,7 +33047,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 954 this -1859612297 +1853205005 1 this.numer 0 @@ -32256,7 +33063,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 953 this -1859612297 +1853205005 1 this.numer 0 @@ -32265,7 +33072,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32275,7 +33082,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 955 this -730478310 +211968962 1 this.numer 2 @@ -32284,7 +33091,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32307,7 +33114,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 956 this -26877241 +2143431083 1 this.numer 0 @@ -32326,7 +33133,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 955 this -730478310 +211968962 1 this.numer 2 @@ -32335,7 +33142,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32344,7 +33151,7 @@ arg.denom 0 1 return -26877241 +2143431083 1 return.numer 0 @@ -32357,7 +33164,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 957 this -26877241 +2143431083 1 this.numer 0 @@ -32370,7 +33177,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 958 this -26877241 +2143431083 1 this.numer 0 @@ -32383,7 +33190,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 958 this -26877241 +2143431083 1 this.numer 0 @@ -32399,7 +33206,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 957 this -26877241 +2143431083 1 this.numer 0 @@ -32408,7 +33215,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32418,7 +33225,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 959 this -57030296 +1452012306 1 this.numer 100 @@ -32427,7 +33234,7 @@ this.denom 0 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -32450,7 +33257,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 960 this -754223617 +750468423 1 this.numer 0 @@ -32469,7 +33276,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 959 this -57030296 +1452012306 1 this.numer 100 @@ -32478,7 +33285,7 @@ this.denom 0 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -32487,7 +33294,7 @@ arg.denom 0 1 return -754223617 +750468423 1 return.numer 0 @@ -32500,7 +33307,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 961 this -754223617 +750468423 1 this.numer 0 @@ -32513,7 +33320,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 962 this -754223617 +750468423 1 this.numer 0 @@ -32526,7 +33333,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 962 this -754223617 +750468423 1 this.numer 0 @@ -32542,7 +33349,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 961 this -754223617 +750468423 1 this.numer 0 @@ -32551,7 +33358,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32561,7 +33368,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 963 this -2132429918 +1486566962 1 this.numer -2 @@ -32570,7 +33377,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32593,7 +33400,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 964 this -1787846325 +1384010761 1 this.numer 0 @@ -32612,7 +33419,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 963 this -2132429918 +1486566962 1 this.numer -2 @@ -32621,7 +33428,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32630,7 +33437,7 @@ arg.denom 0 1 return -1787846325 +1384010761 1 return.numer 0 @@ -32643,7 +33450,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 965 this -1787846325 +1384010761 1 this.numer 0 @@ -32656,7 +33463,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 966 this -1787846325 +1384010761 1 this.numer 0 @@ -32669,7 +33476,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 966 this -1787846325 +1384010761 1 this.numer 0 @@ -32685,7 +33492,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 965 this -1787846325 +1384010761 1 this.numer 0 @@ -32694,7 +33501,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32704,7 +33511,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 967 this -57030296 +1452012306 1 this.numer 100 @@ -32713,7 +33520,7 @@ this.denom 0 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -32736,7 +33543,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 968 this -741995451 +295221641 1 this.numer 0 @@ -32755,7 +33562,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 967 this -57030296 +1452012306 1 this.numer 100 @@ -32764,7 +33571,7 @@ this.denom 0 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -32773,7 +33580,7 @@ arg.denom 0 1 return -741995451 +295221641 1 return.numer 0 @@ -32786,7 +33593,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 969 this -741995451 +295221641 1 this.numer 0 @@ -32799,7 +33606,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 970 this -741995451 +295221641 1 this.numer 0 @@ -32812,7 +33619,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 970 this -741995451 +295221641 1 this.numer 0 @@ -32828,7 +33635,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 969 this -741995451 +295221641 1 this.numer 0 @@ -32837,7 +33644,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32847,7 +33654,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 971 this -395047043 +1173643169 1 this.numer 9 @@ -32856,7 +33663,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32879,7 +33686,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 972 this -280006828 +2147046752 1 this.numer 0 @@ -32898,7 +33705,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 971 this -395047043 +1173643169 1 this.numer 9 @@ -32907,7 +33714,7 @@ this.denom 0 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -32916,7 +33723,7 @@ arg.denom 0 1 return -280006828 +2147046752 1 return.numer 0 @@ -32929,7 +33736,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 973 this -280006828 +2147046752 1 this.numer 0 @@ -32942,7 +33749,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 974 this -280006828 +2147046752 1 this.numer 0 @@ -32955,7 +33762,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 974 this -280006828 +2147046752 1 this.numer 0 @@ -32971,7 +33778,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 973 this -280006828 +2147046752 1 this.numer 0 @@ -32980,7 +33787,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -32990,7 +33797,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 975 this -1742626417 +1564984895 1 this.numer 8 @@ -32999,7 +33806,7 @@ this.denom 7 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -33022,7 +33829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 976 this -938087619 +182259421 1 this.numer 7 @@ -33041,7 +33848,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 975 this -1742626417 +1564984895 1 this.numer 8 @@ -33050,7 +33857,7 @@ this.denom 7 1 arg -607440076 +1256440269 1 arg.numer 1 @@ -33059,7 +33866,7 @@ arg.denom 0 1 return -938087619 +182259421 1 return.numer 7 @@ -33072,7 +33879,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 977 this -938087619 +182259421 1 this.numer 7 @@ -33085,7 +33892,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 978 this -938087619 +182259421 1 this.numer 7 @@ -33098,7 +33905,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 978 this -938087619 +182259421 1 this.numer 7 @@ -33114,7 +33921,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 977 this -938087619 +182259421 1 this.numer 7 @@ -33123,7 +33930,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33133,7 +33940,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 979 this -607440076 +1256440269 1 this.numer 1 @@ -33142,7 +33949,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -33165,7 +33972,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 980 this -1761159906 +715378067 1 this.numer 7 @@ -33184,7 +33991,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 979 this -607440076 +1256440269 1 this.numer 1 @@ -33193,7 +34000,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -33202,7 +34009,7 @@ arg.denom 7 1 return -1761159906 +715378067 1 return.numer 7 @@ -33215,7 +34022,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 981 this -1761159906 +715378067 1 this.numer 7 @@ -33228,7 +34035,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 982 this -1761159906 +715378067 1 this.numer 7 @@ -33241,7 +34048,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 982 this -1761159906 +715378067 1 this.numer 7 @@ -33257,7 +34064,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 981 this -1761159906 +715378067 1 this.numer 7 @@ -33266,7 +34073,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33276,7 +34083,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 983 this -1742626417 +1564984895 1 this.numer 8 @@ -33285,7 +34092,7 @@ this.denom 7 1 arg -108099494 +704024720 1 arg.numer -1 @@ -33308,7 +34115,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 984 this -1047433541 +2124643775 1 this.numer -7 @@ -33327,7 +34134,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 983 this -1742626417 +1564984895 1 this.numer 8 @@ -33336,7 +34143,7 @@ this.denom 7 1 arg -108099494 +704024720 1 arg.numer -1 @@ -33345,7 +34152,7 @@ arg.denom 0 1 return -1047433541 +2124643775 1 return.numer -7 @@ -33358,7 +34165,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 985 this -1047433541 +2124643775 1 this.numer -7 @@ -33371,7 +34178,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 986 this -1047433541 +2124643775 1 this.numer -7 @@ -33384,7 +34191,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 986 this -1047433541 +2124643775 1 this.numer -7 @@ -33400,7 +34207,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 985 this -1047433541 +2124643775 1 this.numer -7 @@ -33409,7 +34216,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33419,7 +34226,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 987 this -108099494 +704024720 1 this.numer -1 @@ -33428,7 +34235,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -33451,7 +34258,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 988 this -1292069128 +1262773598 1 this.numer -7 @@ -33470,7 +34277,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 987 this -108099494 +704024720 1 this.numer -1 @@ -33479,7 +34286,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -33488,7 +34295,7 @@ arg.denom 7 1 return -1292069128 +1262773598 1 return.numer -7 @@ -33501,7 +34308,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 989 this -1292069128 +1262773598 1 this.numer -7 @@ -33514,7 +34321,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 990 this -1292069128 +1262773598 1 this.numer -7 @@ -33527,7 +34334,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 990 this -1292069128 +1262773598 1 this.numer -7 @@ -33543,7 +34350,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 989 this -1292069128 +1262773598 1 this.numer -7 @@ -33552,7 +34359,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33562,7 +34369,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 991 this -1742626417 +1564984895 1 this.numer 8 @@ -33571,7 +34378,7 @@ this.denom 7 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -33594,7 +34401,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 992 this -451195832 +688726285 1 this.numer 700 @@ -33613,7 +34420,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 991 this -1742626417 +1564984895 1 this.numer 8 @@ -33622,7 +34429,7 @@ this.denom 7 1 arg -57030296 +1452012306 1 arg.numer 100 @@ -33631,7 +34438,7 @@ arg.denom 0 1 return -451195832 +688726285 1 return.numer 700 @@ -33644,7 +34451,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 993 this -451195832 +688726285 1 this.numer 700 @@ -33657,7 +34464,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 994 this -451195832 +688726285 1 this.numer 700 @@ -33670,7 +34477,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 994 this -451195832 +688726285 1 this.numer 700 @@ -33686,7 +34493,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 993 this -451195832 +688726285 1 this.numer 700 @@ -33695,7 +34502,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33705,7 +34512,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 995 this -57030296 +1452012306 1 this.numer 100 @@ -33714,7 +34521,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -33737,7 +34544,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 996 this -483590867 +494317290 1 this.numer 700 @@ -33756,7 +34563,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 995 this -57030296 +1452012306 1 this.numer 100 @@ -33765,7 +34572,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -33774,7 +34581,7 @@ arg.denom 7 1 return -483590867 +494317290 1 return.numer 700 @@ -33787,7 +34594,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 997 this -483590867 +494317290 1 this.numer 700 @@ -33800,7 +34607,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 998 this -483590867 +494317290 1 this.numer 700 @@ -33813,7 +34620,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 998 this -483590867 +494317290 1 this.numer 700 @@ -33829,7 +34636,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 997 this -483590867 +494317290 1 this.numer 700 @@ -33838,7 +34645,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33848,7 +34655,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 999 this -1742626417 +1564984895 1 this.numer 8 @@ -33857,7 +34664,7 @@ this.denom 7 1 arg -730478310 +211968962 1 arg.numer 2 @@ -33880,7 +34687,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1000 this -1633581421 +2027775614 1 this.numer 14 @@ -33899,7 +34706,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 999 this -1742626417 +1564984895 1 this.numer 8 @@ -33908,7 +34715,7 @@ this.denom 7 1 arg -730478310 +211968962 1 arg.numer 2 @@ -33917,7 +34724,7 @@ arg.denom 0 1 return -1633581421 +2027775614 1 return.numer 14 @@ -33930,7 +34737,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1001 this -1633581421 +2027775614 1 this.numer 14 @@ -33943,7 +34750,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1002 this -1633581421 +2027775614 1 this.numer 14 @@ -33956,7 +34763,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1002 this -1633581421 +2027775614 1 this.numer 14 @@ -33972,7 +34779,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1001 this -1633581421 +2027775614 1 this.numer 14 @@ -33981,7 +34788,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -33991,7 +34798,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1003 this -730478310 +211968962 1 this.numer 2 @@ -34000,7 +34807,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -34023,7 +34830,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1004 this -24515852 +282821294 1 this.numer 14 @@ -34042,7 +34849,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1003 this -730478310 +211968962 1 this.numer 2 @@ -34051,7 +34858,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -34060,7 +34867,7 @@ arg.denom 7 1 return -24515852 +282821294 1 return.numer 14 @@ -34073,7 +34880,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1005 this -24515852 +282821294 1 this.numer 14 @@ -34086,7 +34893,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1006 this -24515852 +282821294 1 this.numer 14 @@ -34099,7 +34906,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1006 this -24515852 +282821294 1 this.numer 14 @@ -34115,7 +34922,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1005 this -24515852 +282821294 1 this.numer 14 @@ -34124,7 +34931,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -34134,7 +34941,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1007 this -1742626417 +1564984895 1 this.numer 8 @@ -34143,7 +34950,7 @@ this.denom 7 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -34166,7 +34973,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1008 this -1868547987 +1344199921 1 this.numer -14 @@ -34185,7 +34992,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1007 this -1742626417 +1564984895 1 this.numer 8 @@ -34194,7 +35001,7 @@ this.denom 7 1 arg -2132429918 +1486566962 1 arg.numer -2 @@ -34203,7 +35010,7 @@ arg.denom 0 1 return -1868547987 +1344199921 1 return.numer -14 @@ -34216,7 +35023,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1009 this -1868547987 +1344199921 1 this.numer -14 @@ -34229,7 +35036,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1010 this -1868547987 +1344199921 1 this.numer -14 @@ -34242,7 +35049,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1010 this -1868547987 +1344199921 1 this.numer -14 @@ -34258,7 +35065,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1009 this -1868547987 +1344199921 1 this.numer -14 @@ -34267,7 +35074,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -34277,7 +35084,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1011 this -2132429918 +1486566962 1 this.numer -2 @@ -34286,7 +35093,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -34309,7 +35116,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1012 this -2032647428 +2025269734 1 this.numer -14 @@ -34328,7 +35135,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1011 this -2132429918 +1486566962 1 this.numer -2 @@ -34337,7 +35144,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -34346,7 +35153,7 @@ arg.denom 7 1 return -2032647428 +2025269734 1 return.numer -14 @@ -34359,7 +35166,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1013 this -2032647428 +2025269734 1 this.numer -14 @@ -34372,7 +35179,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1014 this -2032647428 +2025269734 1 this.numer -14 @@ -34385,7 +35192,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1014 this -2032647428 +2025269734 1 this.numer -14 @@ -34401,7 +35208,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1013 this -2032647428 +2025269734 1 this.numer -14 @@ -34410,7 +35217,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -34420,7 +35227,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1015 this -1742626417 +1564984895 1 this.numer 8 @@ -34429,7 +35236,7 @@ this.denom 7 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -34452,7 +35259,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1016 this -535465920 +1800031768 1 this.numer 63 @@ -34471,7 +35278,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1015 this -1742626417 +1564984895 1 this.numer 8 @@ -34480,7 +35287,7 @@ this.denom 7 1 arg -395047043 +1173643169 1 arg.numer 9 @@ -34489,7 +35296,7 @@ arg.denom 0 1 return -535465920 +1800031768 1 return.numer 63 @@ -34502,7 +35309,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1017 this -535465920 +1800031768 1 this.numer 63 @@ -34515,7 +35322,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1018 this -535465920 +1800031768 1 this.numer 63 @@ -34528,7 +35335,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1018 this -535465920 +1800031768 1 this.numer 63 @@ -34544,7 +35351,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1017 this -535465920 +1800031768 1 this.numer 63 @@ -34553,7 +35360,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -34563,7 +35370,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1019 this -395047043 +1173643169 1 this.numer 9 @@ -34572,7 +35379,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -34595,7 +35402,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1020 this -1619236510 +667447085 1 this.numer 63 @@ -34614,7 +35421,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1019 this -395047043 +1173643169 1 this.numer 9 @@ -34623,7 +35430,7 @@ this.denom 0 1 arg -1742626417 +1564984895 1 arg.numer 8 @@ -34632,7 +35439,7 @@ arg.denom 7 1 return -1619236510 +667447085 1 return.numer 63 @@ -34645,7 +35452,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1021 this -1619236510 +667447085 1 this.numer 63 @@ -34658,7 +35465,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1022 this -1619236510 +667447085 1 this.numer 63 @@ -34671,7 +35478,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1022 this -1619236510 +667447085 1 this.numer 63 @@ -34687,7 +35494,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1021 this -1619236510 +667447085 1 this.numer 63 @@ -34696,7 +35503,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -34713,7 +35520,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1023 this -1595248786 +26728049 1 this.numer 0 @@ -34736,7 +35543,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1024 this -13013507 +1076770748 1 this.numer 1 @@ -34759,7 +35566,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1025 this -1822163802 +2041416495 1 this.numer -1 @@ -34782,7 +35589,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1026 this -1990213994 +502800944 1 this.numer 2 @@ -34805,7 +35612,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1027 this -321311486 +576936864 1 this.numer 3 @@ -34854,7 +35661,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1028 this -1508256644 +331418503 1 this.numer 1 @@ -34906,7 +35713,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1030 this -372446520 +111156771 1 this.numer 1 @@ -34958,7 +35765,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1032 this -1941314282 +1519736165 1 this.numer 1 @@ -35010,7 +35817,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1034 this -950088703 +1653844940 1 this.numer 2 @@ -35062,7 +35869,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1036 this -1599915876 +2039810346 1 this.numer 3 @@ -35114,7 +35921,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1038 this -1143383845 +2143437117 1 this.numer 5 @@ -35166,7 +35973,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1040 this -1168609559 +260840925 1 this.numer 6 @@ -35218,7 +36025,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1042 this -2082906298 +1891502635 1 this.numer 8 @@ -35270,7 +36077,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1044 this -1275220739 +557023567 1 this.numer -1 @@ -35322,7 +36129,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1046 this -748163313 +1276504061 1 this.numer 3 @@ -35351,7 +36158,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1048 this -864048406 +597190999 1 this.numer 1 @@ -35380,7 +36187,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1049 this -777138628 +603443293 1 this.numer -1 @@ -35409,7 +36216,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1050 this -373379742 +510854293 1 this.numer 100 @@ -35438,7 +36245,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1051 this -446107260 +2100961961 1 this.numer 2 @@ -35467,7 +36274,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1052 this -859307143 +487075464 1 this.numer -2 @@ -35496,7 +36303,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1053 this -547626326 +6320204 1 this.numer 9 @@ -35515,7 +36322,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1054 this -13013507 +1076770748 1 this.numer 1 @@ -35524,7 +36331,7 @@ this.denom 1 1 arg -13013507 +1076770748 1 arg.numer 1 @@ -35570,7 +36377,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1055 this -1988233687 +112302969 1 this.numer 2 @@ -35589,7 +36396,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1054 this -13013507 +1076770748 1 this.numer 1 @@ -35598,7 +36405,7 @@ this.denom 1 1 arg -13013507 +1076770748 1 arg.numer 1 @@ -35607,7 +36414,7 @@ arg.denom 1 1 return -1988233687 +112302969 1 return.numer 2 @@ -35620,7 +36427,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1057 this -1988233687 +112302969 1 this.numer 2 @@ -35629,7 +36436,7 @@ this.denom 1 1 arg -13013507 +1076770748 1 arg.numer 1 @@ -35675,7 +36482,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1058 this -1398030089 +707976812 1 this.numer 3 @@ -35694,7 +36501,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1057 this -1988233687 +112302969 1 this.numer 2 @@ -35703,7 +36510,7 @@ this.denom 1 1 arg -13013507 +1076770748 1 arg.numer 1 @@ -35712,7 +36519,7 @@ arg.denom 1 1 return -1398030089 +707976812 1 return.numer 3 @@ -35725,7 +36532,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1060 this -1398030089 +707976812 1 this.numer 3 @@ -35738,7 +36545,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1061 this -1398030089 +707976812 1 this.numer 3 @@ -35751,7 +36558,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1061 this -1398030089 +707976812 1 this.numer 3 @@ -35767,7 +36574,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1060 this -1398030089 +707976812 1 this.numer 3 @@ -35776,7 +36583,7 @@ this.denom 1 1 return -1073123996 +1989335500 1 return.toString "3" @@ -35786,7 +36593,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1062 this -13013507 +1076770748 1 this.numer 1 @@ -35795,7 +36602,7 @@ this.denom 1 1 arg -13013507 +1076770748 1 arg.numer 1 @@ -35841,7 +36648,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1063 this -1427333266 +1978869058 1 this.numer 2 @@ -35860,7 +36667,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1062 this -13013507 +1076770748 1 this.numer 1 @@ -35869,7 +36676,7 @@ this.denom 1 1 arg -13013507 +1076770748 1 arg.numer 1 @@ -35878,7 +36685,7 @@ arg.denom 1 1 return -1427333266 +1978869058 1 return.numer 2 @@ -35891,7 +36698,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1065 this -13013507 +1076770748 1 this.numer 1 @@ -35900,7 +36707,7 @@ this.denom 1 1 arg -1427333266 +1978869058 1 arg.numer 2 @@ -35946,7 +36753,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1066 this -1797864672 +2131952342 1 this.numer 3 @@ -35965,7 +36772,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1065 this -13013507 +1076770748 1 this.numer 1 @@ -35974,7 +36781,7 @@ this.denom 1 1 arg -1427333266 +1978869058 1 arg.numer 2 @@ -35983,7 +36790,7 @@ arg.denom 1 1 return -1797864672 +2131952342 1 return.numer 3 @@ -35996,7 +36803,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1068 this -1797864672 +2131952342 1 this.numer 3 @@ -36009,7 +36816,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1069 this -1797864672 +2131952342 1 this.numer 3 @@ -36022,7 +36829,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1069 this -1797864672 +2131952342 1 this.numer 3 @@ -36038,7 +36845,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1068 this -1797864672 +2131952342 1 this.numer 3 @@ -36047,7 +36854,7 @@ this.denom 1 1 return -1616629014 +1139700454 1 return.toString "3" @@ -36057,7 +36864,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1070 this -1595248786 +26728049 1 this.numer 0 @@ -36066,7 +36873,7 @@ this.denom 1 1 arg -1595248786 +26728049 1 arg.numer 0 @@ -36112,7 +36919,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1071 this -720736454 +592617454 1 this.numer 0 @@ -36131,7 +36938,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1070 this -1595248786 +26728049 1 this.numer 0 @@ -36140,7 +36947,7 @@ this.denom 1 1 arg -1595248786 +26728049 1 arg.numer 0 @@ -36149,7 +36956,7 @@ arg.denom 1 1 return -720736454 +592617454 1 return.numer 0 @@ -36162,7 +36969,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1073 this -720736454 +592617454 1 this.numer 0 @@ -36171,7 +36978,7 @@ this.denom 1 1 arg -1595248786 +26728049 1 arg.numer 0 @@ -36217,7 +37024,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1074 this -1609813298 +1340565491 1 this.numer 0 @@ -36236,7 +37043,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1073 this -720736454 +592617454 1 this.numer 0 @@ -36245,7 +37052,7 @@ this.denom 1 1 arg -1595248786 +26728049 1 arg.numer 0 @@ -36254,7 +37061,7 @@ arg.denom 1 1 return -1609813298 +1340565491 1 return.numer 0 @@ -36267,7 +37074,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1076 this -1609813298 +1340565491 1 this.numer 0 @@ -36280,7 +37087,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1077 this -1609813298 +1340565491 1 this.numer 0 @@ -36293,7 +37100,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1077 this -1609813298 +1340565491 1 this.numer 0 @@ -36309,7 +37116,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1076 this -1609813298 +1340565491 1 this.numer 0 @@ -36318,7 +37125,7 @@ this.denom 1 1 return -2133114580 +671467883 1 return.toString "0" @@ -36328,7 +37135,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1078 this -1595248786 +26728049 1 this.numer 0 @@ -36337,7 +37144,7 @@ this.denom 1 1 arg -1595248786 +26728049 1 arg.numer 0 @@ -36383,7 +37190,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1079 this -1164743042 +407697359 1 this.numer 0 @@ -36402,7 +37209,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1078 this -1595248786 +26728049 1 this.numer 0 @@ -36411,7 +37218,7 @@ this.denom 1 1 arg -1595248786 +26728049 1 arg.numer 0 @@ -36420,7 +37227,7 @@ arg.denom 1 1 return -1164743042 +407697359 1 return.numer 0 @@ -36433,7 +37240,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1081 this -1595248786 +26728049 1 this.numer 0 @@ -36442,7 +37249,7 @@ this.denom 1 1 arg -1164743042 +407697359 1 arg.numer 0 @@ -36488,7 +37295,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1082 this -1522864489 +802600647 1 this.numer 0 @@ -36507,7 +37314,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1081 this -1595248786 +26728049 1 this.numer 0 @@ -36516,7 +37323,7 @@ this.denom 1 1 arg -1164743042 +407697359 1 arg.numer 0 @@ -36525,7 +37332,7 @@ arg.denom 1 1 return -1522864489 +802600647 1 return.numer 0 @@ -36538,7 +37345,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1084 this -1522864489 +802600647 1 this.numer 0 @@ -36551,7 +37358,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1085 this -1522864489 +802600647 1 this.numer 0 @@ -36564,7 +37371,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1085 this -1522864489 +802600647 1 this.numer 0 @@ -36580,7 +37387,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1084 this -1522864489 +802600647 1 this.numer 0 @@ -36589,7 +37396,7 @@ this.denom 1 1 return -1073361677 +1543148593 1 return.toString "0" @@ -36599,7 +37406,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1086 this -13013507 +1076770748 1 this.numer 1 @@ -36608,7 +37415,7 @@ this.denom 1 1 arg -1990213994 +502800944 1 arg.numer 2 @@ -36654,7 +37461,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1087 this -1127070539 +1571967156 1 this.numer 3 @@ -36673,7 +37480,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1086 this -13013507 +1076770748 1 this.numer 1 @@ -36682,7 +37489,7 @@ this.denom 1 1 arg -1990213994 +502800944 1 arg.numer 2 @@ -36691,7 +37498,7 @@ arg.denom 1 1 return -1127070539 +1571967156 1 return.numer 3 @@ -36704,7 +37511,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1089 this -1127070539 +1571967156 1 this.numer 3 @@ -36713,7 +37520,7 @@ this.denom 1 1 arg -321311486 +576936864 1 arg.numer 3 @@ -36759,7 +37566,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1090 this -1868782433 +574568002 1 this.numer 6 @@ -36778,7 +37585,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1089 this -1127070539 +1571967156 1 this.numer 3 @@ -36787,7 +37594,7 @@ this.denom 1 1 arg -321311486 +576936864 1 arg.numer 3 @@ -36796,7 +37603,7 @@ arg.denom 1 1 return -1868782433 +574568002 1 return.numer 6 @@ -36809,7 +37616,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1092 this -1868782433 +574568002 1 this.numer 6 @@ -36822,7 +37629,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1093 this -1868782433 +574568002 1 this.numer 6 @@ -36835,7 +37642,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1093 this -1868782433 +574568002 1 this.numer 6 @@ -36851,7 +37658,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1092 this -1868782433 +574568002 1 this.numer 6 @@ -36860,7 +37667,7 @@ this.denom 1 1 return -1678014056 +952486988 1 return.toString "6" @@ -36870,7 +37677,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1094 this -1990213994 +502800944 1 this.numer 2 @@ -36879,7 +37686,7 @@ this.denom 1 1 arg -321311486 +576936864 1 arg.numer 3 @@ -36925,7 +37732,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1095 this -1626986788 +932285561 1 this.numer 5 @@ -36944,7 +37751,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1094 this -1990213994 +502800944 1 this.numer 2 @@ -36953,7 +37760,7 @@ this.denom 1 1 arg -321311486 +576936864 1 arg.numer 3 @@ -36962,7 +37769,7 @@ arg.denom 1 1 return -1626986788 +932285561 1 return.numer 5 @@ -36975,7 +37782,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1097 this -13013507 +1076770748 1 this.numer 1 @@ -36984,7 +37791,7 @@ this.denom 1 1 arg -1626986788 +932285561 1 arg.numer 5 @@ -37030,7 +37837,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1098 this -857668665 +2028555727 1 this.numer 6 @@ -37049,7 +37856,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1097 this -13013507 +1076770748 1 this.numer 1 @@ -37058,7 +37865,7 @@ this.denom 1 1 arg -1626986788 +932285561 1 arg.numer 5 @@ -37067,7 +37874,7 @@ arg.denom 1 1 return -857668665 +2028555727 1 return.numer 6 @@ -37080,7 +37887,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1100 this -857668665 +2028555727 1 this.numer 6 @@ -37093,7 +37900,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1101 this -857668665 +2028555727 1 this.numer 6 @@ -37106,7 +37913,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1101 this -857668665 +2028555727 1 this.numer 6 @@ -37122,7 +37929,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1100 this -857668665 +2028555727 1 this.numer 6 @@ -37131,7 +37938,7 @@ this.denom 1 1 return -927013991 +591391158 1 return.toString "6" @@ -37141,7 +37948,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1102 this -372446520 +111156771 1 this.numer 1 @@ -37150,7 +37957,7 @@ this.denom 3 1 arg -372446520 +111156771 1 arg.numer 1 @@ -37196,7 +38003,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1103 this -330287752 +898557489 1 this.numer 2 @@ -37215,7 +38022,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1102 this -372446520 +111156771 1 this.numer 1 @@ -37224,7 +38031,7 @@ this.denom 3 1 arg -372446520 +111156771 1 arg.numer 1 @@ -37233,7 +38040,7 @@ arg.denom 3 1 return -330287752 +898557489 1 return.numer 2 @@ -37246,7 +38053,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1105 this -330287752 +898557489 1 this.numer 2 @@ -37255,7 +38062,7 @@ this.denom 3 1 arg -372446520 +111156771 1 arg.numer 1 @@ -37301,7 +38108,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1106 this -2048504016 +247944893 1 this.numer 1 @@ -37320,7 +38127,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1105 this -330287752 +898557489 1 this.numer 2 @@ -37329,7 +38136,7 @@ this.denom 3 1 arg -372446520 +111156771 1 arg.numer 1 @@ -37338,7 +38145,7 @@ arg.denom 3 1 return -2048504016 +247944893 1 return.numer 1 @@ -37351,7 +38158,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1108 this -2048504016 +247944893 1 this.numer 1 @@ -37364,7 +38171,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1109 this -2048504016 +247944893 1 this.numer 1 @@ -37377,7 +38184,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1109 this -2048504016 +247944893 1 this.numer 1 @@ -37393,7 +38200,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1108 this -2048504016 +247944893 1 this.numer 1 @@ -37402,7 +38209,7 @@ this.denom 1 1 return -749168208 +1014166943 1 return.toString "1" @@ -37412,7 +38219,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1110 this -372446520 +111156771 1 this.numer 1 @@ -37421,7 +38228,7 @@ this.denom 3 1 arg -372446520 +111156771 1 arg.numer 1 @@ -37467,7 +38274,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1111 this -573449495 +1625082366 1 this.numer 2 @@ -37486,7 +38293,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1110 this -372446520 +111156771 1 this.numer 1 @@ -37495,7 +38302,7 @@ this.denom 3 1 arg -372446520 +111156771 1 arg.numer 1 @@ -37504,7 +38311,7 @@ arg.denom 3 1 return -573449495 +1625082366 1 return.numer 2 @@ -37517,7 +38324,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1113 this -372446520 +111156771 1 this.numer 1 @@ -37526,7 +38333,7 @@ this.denom 3 1 arg -573449495 +1625082366 1 arg.numer 2 @@ -37572,7 +38379,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1114 this -59054729 +572593338 1 this.numer 1 @@ -37591,7 +38398,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1113 this -372446520 +111156771 1 this.numer 1 @@ -37600,7 +38407,7 @@ this.denom 3 1 arg -573449495 +1625082366 1 arg.numer 2 @@ -37609,7 +38416,7 @@ arg.denom 3 1 return -59054729 +572593338 1 return.numer 1 @@ -37622,7 +38429,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1116 this -59054729 +572593338 1 this.numer 1 @@ -37635,7 +38442,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1117 this -59054729 +572593338 1 this.numer 1 @@ -37648,7 +38455,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1117 this -59054729 +572593338 1 this.numer 1 @@ -37664,7 +38471,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1116 this -59054729 +572593338 1 this.numer 1 @@ -37673,7 +38480,7 @@ this.denom 1 1 return -395385389 +384294141 1 return.toString "1" @@ -37683,7 +38490,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1118 this -864048406 +597190999 1 this.numer 1 @@ -37692,7 +38499,7 @@ this.denom 0 1 arg -864048406 +597190999 1 arg.numer 1 @@ -37715,7 +38522,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1119 this -927829105 +1024597427 1 this.numer 0 @@ -37734,7 +38541,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1118 this -864048406 +597190999 1 this.numer 1 @@ -37743,7 +38550,7 @@ this.denom 0 1 arg -864048406 +597190999 1 arg.numer 1 @@ -37752,7 +38559,7 @@ arg.denom 0 1 return -927829105 +1024597427 1 return.numer 0 @@ -37765,7 +38572,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1120 this -927829105 +1024597427 1 this.numer 0 @@ -37774,7 +38581,7 @@ this.denom 0 1 arg -864048406 +597190999 1 arg.numer 1 @@ -37797,7 +38604,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1121 this -1145006868 +990355670 1 this.numer 0 @@ -37816,7 +38623,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1120 this -927829105 +1024597427 1 this.numer 0 @@ -37825,7 +38632,7 @@ this.denom 0 1 arg -864048406 +597190999 1 arg.numer 1 @@ -37834,7 +38641,7 @@ arg.denom 0 1 return -1145006868 +990355670 1 return.numer 0 @@ -37847,7 +38654,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1122 this -1145006868 +990355670 1 this.numer 0 @@ -37860,7 +38667,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1123 this -1145006868 +990355670 1 this.numer 0 @@ -37873,7 +38680,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1123 this -1145006868 +990355670 1 this.numer 0 @@ -37889,7 +38696,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1122 this -1145006868 +990355670 1 this.numer 0 @@ -37898,7 +38705,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -37908,7 +38715,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1124 this -864048406 +597190999 1 this.numer 1 @@ -37917,7 +38724,7 @@ this.denom 0 1 arg -864048406 +597190999 1 arg.numer 1 @@ -37940,7 +38747,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1125 this -529469709 +296347592 1 this.numer 0 @@ -37959,7 +38766,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1124 this -864048406 +597190999 1 this.numer 1 @@ -37968,7 +38775,7 @@ this.denom 0 1 arg -864048406 +597190999 1 arg.numer 1 @@ -37977,7 +38784,7 @@ arg.denom 0 1 return -529469709 +296347592 1 return.numer 0 @@ -37990,7 +38797,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1126 this -864048406 +597190999 1 this.numer 1 @@ -37999,7 +38806,7 @@ this.denom 0 1 arg -529469709 +296347592 1 arg.numer 0 @@ -38022,7 +38829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1127 this -1772649642 +956420404 1 this.numer 0 @@ -38041,7 +38848,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1126 this -864048406 +597190999 1 this.numer 1 @@ -38050,7 +38857,7 @@ this.denom 0 1 arg -529469709 +296347592 1 arg.numer 0 @@ -38059,7 +38866,7 @@ arg.denom 0 1 return -1772649642 +956420404 1 return.numer 0 @@ -38072,7 +38879,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1128 this -1772649642 +956420404 1 this.numer 0 @@ -38085,7 +38892,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1129 this -1772649642 +956420404 1 this.numer 0 @@ -38098,7 +38905,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1129 this -1772649642 +956420404 1 this.numer 0 @@ -38114,7 +38921,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1128 this -1772649642 +956420404 1 this.numer 0 @@ -38123,7 +38930,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -38133,7 +38940,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1130 this -1508256644 +331418503 1 this.numer 1 @@ -38142,7 +38949,7 @@ this.denom 2 1 arg -372446520 +111156771 1 arg.numer 1 @@ -38188,7 +38995,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1131 this -881898263 +349420578 1 this.numer 5 @@ -38207,7 +39014,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1130 this -1508256644 +331418503 1 this.numer 1 @@ -38216,7 +39023,7 @@ this.denom 2 1 arg -372446520 +111156771 1 arg.numer 1 @@ -38225,7 +39032,7 @@ arg.denom 3 1 return -881898263 +349420578 1 return.numer 5 @@ -38238,7 +39045,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1133 this -881898263 +349420578 1 this.numer 5 @@ -38247,7 +39054,7 @@ this.denom 6 1 arg -1941314282 +1519736165 1 arg.numer 1 @@ -38293,7 +39100,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1134 this -131974647 +315932542 1 this.numer 13 @@ -38312,7 +39119,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1133 this -881898263 +349420578 1 this.numer 5 @@ -38321,7 +39128,7 @@ this.denom 6 1 arg -1941314282 +1519736165 1 arg.numer 1 @@ -38330,7 +39137,7 @@ arg.denom 4 1 return -131974647 +315932542 1 return.numer 13 @@ -38343,7 +39150,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1136 this -131974647 +315932542 1 this.numer 13 @@ -38356,7 +39163,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1137 this -131974647 +315932542 1 this.numer 13 @@ -38369,7 +39176,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1137 this -131974647 +315932542 1 this.numer 13 @@ -38385,7 +39192,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1136 this -131974647 +315932542 1 this.numer 13 @@ -38394,7 +39201,7 @@ this.denom 12 1 return -1894768425 +1277009227 1 return.toString "13/12" @@ -38404,7 +39211,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1138 this -372446520 +111156771 1 this.numer 1 @@ -38413,7 +39220,7 @@ this.denom 3 1 arg -1941314282 +1519736165 1 arg.numer 1 @@ -38459,7 +39266,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1139 this -337917612 +2065857933 1 this.numer 7 @@ -38478,7 +39285,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1138 this -372446520 +111156771 1 this.numer 1 @@ -38487,7 +39294,7 @@ this.denom 3 1 arg -1941314282 +1519736165 1 arg.numer 1 @@ -38496,7 +39303,7 @@ arg.denom 4 1 return -337917612 +2065857933 1 return.numer 7 @@ -38509,7 +39316,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1141 this -1508256644 +331418503 1 this.numer 1 @@ -38518,7 +39325,7 @@ this.denom 2 1 arg -337917612 +2065857933 1 arg.numer 7 @@ -38564,7 +39371,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1142 this -1434542216 +1914301543 1 this.numer 13 @@ -38583,7 +39390,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1141 this -1508256644 +331418503 1 this.numer 1 @@ -38592,7 +39399,7 @@ this.denom 2 1 arg -337917612 +2065857933 1 arg.numer 7 @@ -38601,7 +39408,7 @@ arg.denom 12 1 return -1434542216 +1914301543 1 return.numer 13 @@ -38614,7 +39421,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1144 this -1434542216 +1914301543 1 this.numer 13 @@ -38627,7 +39434,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1145 this -1434542216 +1914301543 1 this.numer 13 @@ -38640,7 +39447,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1145 this -1434542216 +1914301543 1 this.numer 13 @@ -38656,7 +39463,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1144 this -1434542216 +1914301543 1 this.numer 13 @@ -38665,7 +39472,7 @@ this.denom 12 1 return -552119443 +1157726741 1 return.toString "13/12" @@ -38682,7 +39489,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1146 this -194639814 +1708570683 1 this.numer 0 @@ -38705,7 +39512,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1147 this -693759517 +225472281 1 this.numer 1 @@ -38728,7 +39535,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1148 this -1327482656 +817348612 1 this.numer -1 @@ -38751,7 +39558,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1149 this -793390709 +2045766957 1 this.numer 2 @@ -38774,7 +39581,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1150 this -791681940 +690521419 1 this.numer 3 @@ -38823,7 +39630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1151 this -2137172415 +665726928 1 this.numer 1 @@ -38875,7 +39682,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1153 this -645299183 +689401025 1 this.numer 1 @@ -38927,7 +39734,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1155 this -750951331 +790067787 1 this.numer 1 @@ -38979,7 +39786,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1157 this -477626698 +1115201599 1 this.numer 2 @@ -39031,7 +39838,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1159 this -178040800 +343856911 1 this.numer 3 @@ -39083,7 +39890,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1161 this -887005329 +102617125 1 this.numer 5 @@ -39135,7 +39942,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1163 this -67087029 +306980751 1 this.numer 6 @@ -39187,7 +39994,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1165 this -102781728 +363988129 1 this.numer 8 @@ -39239,7 +40046,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1167 this -875650308 +1997963191 1 this.numer -1 @@ -39291,7 +40098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1169 this -349293665 +534906248 1 this.numer 3 @@ -39320,7 +40127,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1171 this -1505820404 +1826699684 1 this.numer 1 @@ -39349,7 +40156,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1172 this -228750133 +1769193365 1 this.numer -1 @@ -39378,7 +40185,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1173 this -607757201 +769429195 1 this.numer 100 @@ -39407,7 +40214,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1174 this -1143052075 +580718781 1 this.numer 2 @@ -39436,7 +40243,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1175 this -2035002110 +1196695891 1 this.numer -2 @@ -39465,7 +40272,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1176 this -1455900648 +867148091 1 this.numer 9 @@ -39484,7 +40291,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1177 this -194639814 +1708570683 1 this.numer 0 @@ -39493,7 +40300,7 @@ this.denom 1 1 arg -693759517 +225472281 1 arg.numer 1 @@ -39506,7 +40313,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1178 this -693759517 +225472281 1 this.numer 1 @@ -39552,7 +40359,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1179 this -893517018 +2051853139 1 this.numer -1 @@ -39571,7 +40378,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1178 this -693759517 +225472281 1 this.numer 1 @@ -39580,7 +40387,7 @@ this.denom 1 1 return -893517018 +2051853139 1 return.numer -1 @@ -39593,7 +40400,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1181 this -194639814 +1708570683 1 this.numer 0 @@ -39602,7 +40409,7 @@ this.denom 1 1 arg -893517018 +2051853139 1 arg.numer -1 @@ -39648,7 +40455,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1182 this -2134861702 +815674463 1 this.numer -1 @@ -39667,7 +40474,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1181 this -194639814 +1708570683 1 this.numer 0 @@ -39676,7 +40483,7 @@ this.denom 1 1 arg -893517018 +2051853139 1 arg.numer -1 @@ -39685,7 +40492,7 @@ arg.denom 1 1 return -2134861702 +815674463 1 return.numer -1 @@ -39698,7 +40505,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1177 this -194639814 +1708570683 1 this.numer 0 @@ -39707,7 +40514,7 @@ this.denom 1 1 arg -693759517 +225472281 1 arg.numer 1 @@ -39716,7 +40523,7 @@ arg.denom 1 1 return -2134861702 +815674463 1 return.numer -1 @@ -39729,7 +40536,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1184 this -2134861702 +815674463 1 this.numer -1 @@ -39742,7 +40549,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1185 this -2134861702 +815674463 1 this.numer -1 @@ -39755,7 +40562,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1185 this -2134861702 +815674463 1 this.numer -1 @@ -39771,7 +40578,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1184 this -2134861702 +815674463 1 this.numer -1 @@ -39780,7 +40587,7 @@ this.denom 1 1 return -463851438 +1453774246 1 return.toString "-1" @@ -39790,7 +40597,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1186 this -194639814 +1708570683 1 this.numer 0 @@ -39799,7 +40606,7 @@ this.denom 1 1 arg -194639814 +1708570683 1 arg.numer 0 @@ -39812,7 +40619,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1187 this -194639814 +1708570683 1 this.numer 0 @@ -39858,7 +40665,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1188 this -585479856 +416153648 1 this.numer 0 @@ -39877,7 +40684,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1187 this -194639814 +1708570683 1 this.numer 0 @@ -39886,7 +40693,7 @@ this.denom 1 1 return -585479856 +416153648 1 return.numer 0 @@ -39899,7 +40706,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1190 this -194639814 +1708570683 1 this.numer 0 @@ -39908,7 +40715,7 @@ this.denom 1 1 arg -585479856 +416153648 1 arg.numer 0 @@ -39954,7 +40761,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1191 this -389869238 +71587369 1 this.numer 0 @@ -39973,7 +40780,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1190 this -194639814 +1708570683 1 this.numer 0 @@ -39982,7 +40789,7 @@ this.denom 1 1 arg -585479856 +416153648 1 arg.numer 0 @@ -39991,7 +40798,7 @@ arg.denom 1 1 return -389869238 +71587369 1 return.numer 0 @@ -40004,7 +40811,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1186 this -194639814 +1708570683 1 this.numer 0 @@ -40013,7 +40820,7 @@ this.denom 1 1 arg -194639814 +1708570683 1 arg.numer 0 @@ -40022,7 +40829,7 @@ arg.denom 1 1 return -389869238 +71587369 1 return.numer 0 @@ -40035,7 +40842,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1193 this -389869238 +71587369 1 this.numer 0 @@ -40048,7 +40855,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1194 this -389869238 +71587369 1 this.numer 0 @@ -40061,7 +40868,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1194 this -389869238 +71587369 1 this.numer 0 @@ -40077,7 +40884,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1193 this -389869238 +71587369 1 this.numer 0 @@ -40086,7 +40893,7 @@ this.denom 1 1 return -559676069 +1169794610 1 return.toString "0" @@ -40096,7 +40903,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1195 this -693759517 +225472281 1 this.numer 1 @@ -40105,7 +40912,7 @@ this.denom 1 1 arg -194639814 +1708570683 1 arg.numer 0 @@ -40118,7 +40925,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1196 this -194639814 +1708570683 1 this.numer 0 @@ -40164,7 +40971,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1197 this -497317823 +634540230 1 this.numer 0 @@ -40183,7 +40990,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1196 this -194639814 +1708570683 1 this.numer 0 @@ -40192,7 +40999,7 @@ this.denom 1 1 return -497317823 +634540230 1 return.numer 0 @@ -40205,7 +41012,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1199 this -693759517 +225472281 1 this.numer 1 @@ -40214,7 +41021,7 @@ this.denom 1 1 arg -497317823 +634540230 1 arg.numer 0 @@ -40260,7 +41067,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1200 this -414297037 +1307904972 1 this.numer 1 @@ -40279,7 +41086,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1199 this -693759517 +225472281 1 this.numer 1 @@ -40288,7 +41095,7 @@ this.denom 1 1 arg -497317823 +634540230 1 arg.numer 0 @@ -40297,7 +41104,7 @@ arg.denom 1 1 return -414297037 +1307904972 1 return.numer 1 @@ -40310,7 +41117,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1195 this -693759517 +225472281 1 this.numer 1 @@ -40319,7 +41126,7 @@ this.denom 1 1 arg -194639814 +1708570683 1 arg.numer 0 @@ -40328,7 +41135,7 @@ arg.denom 1 1 return -414297037 +1307904972 1 return.numer 1 @@ -40341,7 +41148,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1202 this -414297037 +1307904972 1 this.numer 1 @@ -40354,7 +41161,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1203 this -414297037 +1307904972 1 this.numer 1 @@ -40367,7 +41174,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1203 this -414297037 +1307904972 1 this.numer 1 @@ -40383,7 +41190,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1202 this -414297037 +1307904972 1 this.numer 1 @@ -40392,7 +41199,7 @@ this.denom 1 1 return -948317285 +1797712197 1 return.toString "1" @@ -40402,7 +41209,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1204 this -693759517 +225472281 1 this.numer 1 @@ -40411,7 +41218,7 @@ this.denom 1 1 arg -693759517 +225472281 1 arg.numer 1 @@ -40424,7 +41231,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1205 this -693759517 +225472281 1 this.numer 1 @@ -40470,7 +41277,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1206 this -1892464608 +1671846437 1 this.numer -1 @@ -40489,7 +41296,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1205 this -693759517 +225472281 1 this.numer 1 @@ -40498,7 +41305,7 @@ this.denom 1 1 return -1892464608 +1671846437 1 return.numer -1 @@ -40511,7 +41318,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1208 this -693759517 +225472281 1 this.numer 1 @@ -40520,7 +41327,7 @@ this.denom 1 1 arg -1892464608 +1671846437 1 arg.numer -1 @@ -40566,7 +41373,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1209 this -272370939 +1422222071 1 this.numer 0 @@ -40585,7 +41392,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1208 this -693759517 +225472281 1 this.numer 1 @@ -40594,7 +41401,7 @@ this.denom 1 1 arg -1892464608 +1671846437 1 arg.numer -1 @@ -40603,7 +41410,7 @@ arg.denom 1 1 return -272370939 +1422222071 1 return.numer 0 @@ -40616,7 +41423,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1204 this -693759517 +225472281 1 this.numer 1 @@ -40625,7 +41432,7 @@ this.denom 1 1 arg -693759517 +225472281 1 arg.numer 1 @@ -40634,7 +41441,7 @@ arg.denom 1 1 return -272370939 +1422222071 1 return.numer 0 @@ -40647,7 +41454,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1211 this -272370939 +1422222071 1 this.numer 0 @@ -40660,7 +41467,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1212 this -272370939 +1422222071 1 this.numer 0 @@ -40673,7 +41480,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1212 this -272370939 +1422222071 1 this.numer 0 @@ -40689,7 +41496,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1211 this -272370939 +1422222071 1 this.numer 0 @@ -40698,7 +41505,7 @@ this.denom 1 1 return -1450720016 +831236296 1 return.toString "0" @@ -40708,7 +41515,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1213 this -793390709 +2045766957 1 this.numer 2 @@ -40717,7 +41524,7 @@ this.denom 1 1 arg -693759517 +225472281 1 arg.numer 1 @@ -40730,7 +41537,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1214 this -693759517 +225472281 1 this.numer 1 @@ -40776,7 +41583,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1215 this -1869464521 +1840976765 1 this.numer -1 @@ -40795,7 +41602,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1214 this -693759517 +225472281 1 this.numer 1 @@ -40804,7 +41611,7 @@ this.denom 1 1 return -1869464521 +1840976765 1 return.numer -1 @@ -40817,7 +41624,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1217 this -793390709 +2045766957 1 this.numer 2 @@ -40826,7 +41633,7 @@ this.denom 1 1 arg -1869464521 +1840976765 1 arg.numer -1 @@ -40872,7 +41679,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1218 this -256965190 +1016925085 1 this.numer 1 @@ -40891,7 +41698,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1217 this -793390709 +2045766957 1 this.numer 2 @@ -40900,7 +41707,7 @@ this.denom 1 1 arg -1869464521 +1840976765 1 arg.numer -1 @@ -40909,7 +41716,7 @@ arg.denom 1 1 return -256965190 +1016925085 1 return.numer 1 @@ -40922,7 +41729,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1213 this -793390709 +2045766957 1 this.numer 2 @@ -40931,7 +41738,7 @@ this.denom 1 1 arg -693759517 +225472281 1 arg.numer 1 @@ -40940,7 +41747,7 @@ arg.denom 1 1 return -256965190 +1016925085 1 return.numer 1 @@ -40953,7 +41760,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1220 this -256965190 +1016925085 1 this.numer 1 @@ -40966,7 +41773,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1221 this -256965190 +1016925085 1 this.numer 1 @@ -40979,7 +41786,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1221 this -256965190 +1016925085 1 this.numer 1 @@ -40995,7 +41802,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1220 this -256965190 +1016925085 1 this.numer 1 @@ -41004,7 +41811,7 @@ this.denom 1 1 return -224334213 +1127224355 1 return.toString "1" @@ -41014,7 +41821,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1222 this -693759517 +225472281 1 this.numer 1 @@ -41023,7 +41830,7 @@ this.denom 1 1 arg -1327482656 +817348612 1 arg.numer -1 @@ -41036,7 +41843,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1223 this -1327482656 +817348612 1 this.numer -1 @@ -41082,7 +41889,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1224 this -1551317406 +789653861 1 this.numer 1 @@ -41101,7 +41908,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1223 this -1327482656 +817348612 1 this.numer -1 @@ -41110,7 +41917,7 @@ this.denom 1 1 return -1551317406 +789653861 1 return.numer 1 @@ -41123,7 +41930,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1226 this -693759517 +225472281 1 this.numer 1 @@ -41132,7 +41939,7 @@ this.denom 1 1 arg -1551317406 +789653861 1 arg.numer 1 @@ -41178,7 +41985,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1227 this -392684415 +436532993 1 this.numer 2 @@ -41197,7 +42004,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1226 this -693759517 +225472281 1 this.numer 1 @@ -41206,7 +42013,7 @@ this.denom 1 1 arg -1551317406 +789653861 1 arg.numer 1 @@ -41215,7 +42022,7 @@ arg.denom 1 1 return -392684415 +436532993 1 return.numer 2 @@ -41228,7 +42035,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1222 this -693759517 +225472281 1 this.numer 1 @@ -41237,7 +42044,7 @@ this.denom 1 1 arg -1327482656 +817348612 1 arg.numer -1 @@ -41246,7 +42053,7 @@ arg.denom 1 1 return -392684415 +436532993 1 return.numer 2 @@ -41259,7 +42066,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1229 this -392684415 +436532993 1 this.numer 2 @@ -41272,7 +42079,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1230 this -392684415 +436532993 1 this.numer 2 @@ -41285,7 +42092,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1230 this -392684415 +436532993 1 this.numer 2 @@ -41301,7 +42108,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1229 this -392684415 +436532993 1 this.numer 2 @@ -41310,7 +42117,7 @@ this.denom 1 1 return -629715674 +1318180415 1 return.toString "2" @@ -41320,7 +42127,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1231 this -693759517 +225472281 1 this.numer 1 @@ -41329,7 +42136,7 @@ this.denom 1 1 arg -793390709 +2045766957 1 arg.numer 2 @@ -41342,7 +42149,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1232 this -793390709 +2045766957 1 this.numer 2 @@ -41388,7 +42195,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1233 this -831920502 +222511810 1 this.numer -2 @@ -41407,7 +42214,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1232 this -793390709 +2045766957 1 this.numer 2 @@ -41416,7 +42223,7 @@ this.denom 1 1 return -831920502 +222511810 1 return.numer -2 @@ -41429,7 +42236,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1235 this -693759517 +225472281 1 this.numer 1 @@ -41438,7 +42245,7 @@ this.denom 1 1 arg -831920502 +222511810 1 arg.numer -2 @@ -41484,7 +42291,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1236 this -1969335144 +733943822 1 this.numer -1 @@ -41503,7 +42310,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1235 this -693759517 +225472281 1 this.numer 1 @@ -41512,7 +42319,7 @@ this.denom 1 1 arg -831920502 +222511810 1 arg.numer -2 @@ -41521,7 +42328,7 @@ arg.denom 1 1 return -1969335144 +733943822 1 return.numer -1 @@ -41534,7 +42341,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1231 this -693759517 +225472281 1 this.numer 1 @@ -41543,7 +42350,7 @@ this.denom 1 1 arg -793390709 +2045766957 1 arg.numer 2 @@ -41552,7 +42359,7 @@ arg.denom 1 1 return -1969335144 +733943822 1 return.numer -1 @@ -41565,7 +42372,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1238 this -1969335144 +733943822 1 this.numer -1 @@ -41578,7 +42385,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1239 this -1969335144 +733943822 1 this.numer -1 @@ -41591,7 +42398,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1239 this -1969335144 +733943822 1 this.numer -1 @@ -41607,7 +42414,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1238 this -1969335144 +733943822 1 this.numer -1 @@ -41616,7 +42423,7 @@ this.denom 1 1 return -1597797644 +373182087 1 return.toString "-1" @@ -41626,7 +42433,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1240 this -693759517 +225472281 1 this.numer 1 @@ -41635,7 +42442,7 @@ this.denom 1 1 arg -791681940 +690521419 1 arg.numer 3 @@ -41648,7 +42455,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1241 this -791681940 +690521419 1 this.numer 3 @@ -41694,7 +42501,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1242 this -2049480620 +1457410641 1 this.numer -3 @@ -41713,7 +42520,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1241 this -791681940 +690521419 1 this.numer 3 @@ -41722,7 +42529,7 @@ this.denom 1 1 return -2049480620 +1457410641 1 return.numer -3 @@ -41735,7 +42542,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1244 this -693759517 +225472281 1 this.numer 1 @@ -41744,7 +42551,7 @@ this.denom 1 1 arg -2049480620 +1457410641 1 arg.numer -3 @@ -41790,7 +42597,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1245 this -2130566107 +1100767002 1 this.numer -2 @@ -41809,7 +42616,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1244 this -693759517 +225472281 1 this.numer 1 @@ -41818,7 +42625,7 @@ this.denom 1 1 arg -2049480620 +1457410641 1 arg.numer -3 @@ -41827,7 +42634,7 @@ arg.denom 1 1 return -2130566107 +1100767002 1 return.numer -2 @@ -41840,7 +42647,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1240 this -693759517 +225472281 1 this.numer 1 @@ -41849,7 +42656,7 @@ this.denom 1 1 arg -791681940 +690521419 1 arg.numer 3 @@ -41858,7 +42665,7 @@ arg.denom 1 1 return -2130566107 +1100767002 1 return.numer -2 @@ -41871,7 +42678,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1247 this -2130566107 +1100767002 1 this.numer -2 @@ -41884,7 +42691,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1248 this -2130566107 +1100767002 1 this.numer -2 @@ -41897,7 +42704,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1248 this -2130566107 +1100767002 1 this.numer -2 @@ -41913,7 +42720,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1247 this -2130566107 +1100767002 1 this.numer -2 @@ -41922,7 +42729,7 @@ this.denom 1 1 return -1282230271 +313540687 1 return.toString "-2" @@ -41939,7 +42746,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1249 this -445767052 +1990098664 1 this.numer 0 @@ -41962,7 +42769,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1250 this -1583882228 +1383524016 1 this.numer 1 @@ -41985,7 +42792,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1251 this -101317784 +1907431275 1 this.numer -1 @@ -42008,7 +42815,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1252 this -2040947264 +1637061418 1 this.numer 2 @@ -42031,7 +42838,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1253 this -444372517 +1686100174 1 this.numer 3 @@ -42080,7 +42887,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1254 this -1768252600 +22671767 1 this.numer 1 @@ -42132,7 +42939,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1256 this -2142741014 +2024453272 1 this.numer 1 @@ -42184,7 +42991,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1258 this -1894945755 +98394724 1 this.numer 1 @@ -42236,7 +43043,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1260 this -1170819275 +536765369 1 this.numer 2 @@ -42288,7 +43095,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1262 this -566897464 +1374026904 1 this.numer 3 @@ -42340,7 +43147,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1264 this -1608219356 +2085002312 1 this.numer 5 @@ -42392,7 +43199,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1266 this -1113535150 +317071334 1 this.numer 6 @@ -42444,7 +43251,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1268 this -2012766092 +2129221032 1 this.numer 8 @@ -42496,7 +43303,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1270 this -1397300700 +1472465 1 this.numer -1 @@ -42548,7 +43355,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1272 this -1699184955 +1224347463 1 this.numer 3 @@ -42577,7 +43384,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1274 this -964000879 +1791045777 1 this.numer 1 @@ -42606,7 +43413,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1275 this -1346140385 +1580297332 1 this.numer -1 @@ -42635,7 +43442,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1276 this -841229550 +1831477404 1 this.numer 100 @@ -42664,7 +43471,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1277 this -1660198649 +1966250569 1 this.numer 2 @@ -42693,7 +43500,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1278 this -703668272 +370440646 1 this.numer -2 @@ -42722,7 +43529,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1279 this -360203475 +1125381564 1 this.numer 9 @@ -42741,7 +43548,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1280 this -1583882228 +1383524016 1 this.numer 1 @@ -42750,7 +43557,7 @@ this.denom 1 1 arg -1768252600 +22671767 1 arg.numer 1 @@ -42763,7 +43570,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1281 this -1768252600 +22671767 1 this.numer 1 @@ -42809,7 +43616,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1282 this -183403432 +2130772866 1 this.numer -1 @@ -42828,7 +43635,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1281 this -1768252600 +22671767 1 this.numer 1 @@ -42837,7 +43644,7 @@ this.denom 2 1 return -183403432 +2130772866 1 return.numer -1 @@ -42850,7 +43657,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1284 this -1583882228 +1383524016 1 this.numer 1 @@ -42859,7 +43666,7 @@ this.denom 1 1 arg -183403432 +2130772866 1 arg.numer -1 @@ -42905,7 +43712,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1285 this -822448179 +511717113 1 this.numer 1 @@ -42924,7 +43731,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1284 this -1583882228 +1383524016 1 this.numer 1 @@ -42933,7 +43740,7 @@ this.denom 1 1 arg -183403432 +2130772866 1 arg.numer -1 @@ -42942,7 +43749,7 @@ arg.denom 2 1 return -822448179 +511717113 1 return.numer 1 @@ -42955,7 +43762,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1280 this -1583882228 +1383524016 1 this.numer 1 @@ -42964,7 +43771,7 @@ this.denom 1 1 arg -1768252600 +22671767 1 arg.numer 1 @@ -42973,7 +43780,7 @@ arg.denom 2 1 return -822448179 +511717113 1 return.numer 1 @@ -42986,7 +43793,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1287 this -822448179 +511717113 1 this.numer 1 @@ -42999,7 +43806,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1288 this -822448179 +511717113 1 this.numer 1 @@ -43012,7 +43819,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1288 this -822448179 +511717113 1 this.numer 1 @@ -43028,7 +43835,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1287 this -822448179 +511717113 1 this.numer 1 @@ -43037,7 +43844,7 @@ this.denom 2 1 return -1681792361 +728739494 1 return.toString "1/2" @@ -43047,7 +43854,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1289 this -1768252600 +22671767 1 this.numer 1 @@ -43056,7 +43863,7 @@ this.denom 2 1 arg -1583882228 +1383524016 1 arg.numer 1 @@ -43069,7 +43876,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1290 this -1583882228 +1383524016 1 this.numer 1 @@ -43115,7 +43922,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1291 this -704449513 +2005733474 1 this.numer -1 @@ -43134,7 +43941,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1290 this -1583882228 +1383524016 1 this.numer 1 @@ -43143,7 +43950,7 @@ this.denom 1 1 return -704449513 +2005733474 1 return.numer -1 @@ -43156,7 +43963,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1293 this -1768252600 +22671767 1 this.numer 1 @@ -43165,7 +43972,7 @@ this.denom 2 1 arg -704449513 +2005733474 1 arg.numer -1 @@ -43211,7 +44018,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1294 this -605619080 +6750210 1 this.numer -1 @@ -43230,7 +44037,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1293 this -1768252600 +22671767 1 this.numer 1 @@ -43239,7 +44046,7 @@ this.denom 2 1 arg -704449513 +2005733474 1 arg.numer -1 @@ -43248,7 +44055,7 @@ arg.denom 1 1 return -605619080 +6750210 1 return.numer -1 @@ -43261,7 +44068,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1289 this -1768252600 +22671767 1 this.numer 1 @@ -43270,7 +44077,7 @@ this.denom 2 1 arg -1583882228 +1383524016 1 arg.numer 1 @@ -43279,7 +44086,7 @@ arg.denom 1 1 return -605619080 +6750210 1 return.numer -1 @@ -43292,7 +44099,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1296 this -605619080 +6750210 1 this.numer -1 @@ -43305,7 +44112,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1297 this -605619080 +6750210 1 this.numer -1 @@ -43318,7 +44125,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1297 this -605619080 +6750210 1 this.numer -1 @@ -43334,7 +44141,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1296 this -605619080 +6750210 1 this.numer -1 @@ -43343,7 +44150,7 @@ this.denom 2 1 return -1714874427 +521081105 1 return.toString "-1/2" @@ -43353,7 +44160,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1298 this -1768252600 +22671767 1 this.numer 1 @@ -43362,7 +44169,7 @@ this.denom 2 1 arg -445767052 +1990098664 1 arg.numer 0 @@ -43375,7 +44182,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1299 this -445767052 +1990098664 1 this.numer 0 @@ -43421,7 +44228,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1300 this -516468202 +1237550792 1 this.numer 0 @@ -43440,7 +44247,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1299 this -445767052 +1990098664 1 this.numer 0 @@ -43449,7 +44256,7 @@ this.denom 1 1 return -516468202 +1237550792 1 return.numer 0 @@ -43462,7 +44269,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1302 this -1768252600 +22671767 1 this.numer 1 @@ -43471,7 +44278,7 @@ this.denom 2 1 arg -516468202 +1237550792 1 arg.numer 0 @@ -43517,7 +44324,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1303 this -152169840 +1448247698 1 this.numer 1 @@ -43536,7 +44343,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1302 this -1768252600 +22671767 1 this.numer 1 @@ -43545,7 +44352,7 @@ this.denom 2 1 arg -516468202 +1237550792 1 arg.numer 0 @@ -43554,7 +44361,7 @@ arg.denom 1 1 return -152169840 +1448247698 1 return.numer 1 @@ -43567,7 +44374,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1298 this -1768252600 +22671767 1 this.numer 1 @@ -43576,7 +44383,7 @@ this.denom 2 1 arg -445767052 +1990098664 1 arg.numer 0 @@ -43585,7 +44392,7 @@ arg.denom 1 1 return -152169840 +1448247698 1 return.numer 1 @@ -43598,7 +44405,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1305 this -152169840 +1448247698 1 this.numer 1 @@ -43611,7 +44418,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1306 this -152169840 +1448247698 1 this.numer 1 @@ -43624,7 +44431,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1306 this -152169840 +1448247698 1 this.numer 1 @@ -43640,7 +44447,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1305 this -152169840 +1448247698 1 this.numer 1 @@ -43649,7 +44456,7 @@ this.denom 2 1 return -2012960950 +1846406218 1 return.toString "1/2" @@ -43659,7 +44466,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1307 this -1768252600 +22671767 1 this.numer 1 @@ -43668,7 +44475,7 @@ this.denom 2 1 arg -1170819275 +536765369 1 arg.numer 2 @@ -43681,7 +44488,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1308 this -1170819275 +536765369 1 this.numer 2 @@ -43727,7 +44534,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1309 this -377311812 +158199555 1 this.numer -2 @@ -43746,7 +44553,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1308 this -1170819275 +536765369 1 this.numer 2 @@ -43755,7 +44562,7 @@ this.denom 3 1 return -377311812 +158199555 1 return.numer -2 @@ -43768,7 +44575,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1311 this -1768252600 +22671767 1 this.numer 1 @@ -43777,7 +44584,7 @@ this.denom 2 1 arg -377311812 +158199555 1 arg.numer -2 @@ -43823,7 +44630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1312 this -2107898340 +1556995360 1 this.numer -1 @@ -43842,7 +44649,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1311 this -1768252600 +22671767 1 this.numer 1 @@ -43851,7 +44658,7 @@ this.denom 2 1 arg -377311812 +158199555 1 arg.numer -2 @@ -43860,7 +44667,7 @@ arg.denom 3 1 return -2107898340 +1556995360 1 return.numer -1 @@ -43873,7 +44680,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1307 this -1768252600 +22671767 1 this.numer 1 @@ -43882,7 +44689,7 @@ this.denom 2 1 arg -1170819275 +536765369 1 arg.numer 2 @@ -43891,7 +44698,7 @@ arg.denom 3 1 return -2107898340 +1556995360 1 return.numer -1 @@ -43904,7 +44711,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1314 this -2107898340 +1556995360 1 this.numer -1 @@ -43917,7 +44724,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1315 this -2107898340 +1556995360 1 this.numer -1 @@ -43930,7 +44737,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1315 this -2107898340 +1556995360 1 this.numer -1 @@ -43946,7 +44753,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1314 this -2107898340 +1556995360 1 this.numer -1 @@ -43955,7 +44762,7 @@ this.denom 6 1 return -409675821 +517052730 1 return.toString "-1/6" @@ -43965,7 +44772,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1316 this -1768252600 +22671767 1 this.numer 1 @@ -43974,7 +44781,7 @@ this.denom 2 1 arg -566897464 +1374026904 1 arg.numer 3 @@ -43987,7 +44794,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1317 this -566897464 +1374026904 1 this.numer 3 @@ -44033,7 +44840,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1318 this -588951265 +524241174 1 this.numer -3 @@ -44052,7 +44859,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1317 this -566897464 +1374026904 1 this.numer 3 @@ -44061,7 +44868,7 @@ this.denom 4 1 return -588951265 +524241174 1 return.numer -3 @@ -44074,7 +44881,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1320 this -1768252600 +22671767 1 this.numer 1 @@ -44083,7 +44890,7 @@ this.denom 2 1 arg -588951265 +524241174 1 arg.numer -3 @@ -44129,7 +44936,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1321 this -751781832 +2035070981 1 this.numer -1 @@ -44148,7 +44955,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1320 this -1768252600 +22671767 1 this.numer 1 @@ -44157,7 +44964,7 @@ this.denom 2 1 arg -588951265 +524241174 1 arg.numer -3 @@ -44166,7 +44973,7 @@ arg.denom 4 1 return -751781832 +2035070981 1 return.numer -1 @@ -44179,7 +44986,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1316 this -1768252600 +22671767 1 this.numer 1 @@ -44188,7 +44995,7 @@ this.denom 2 1 arg -566897464 +1374026904 1 arg.numer 3 @@ -44197,7 +45004,7 @@ arg.denom 4 1 return -751781832 +2035070981 1 return.numer -1 @@ -44210,7 +45017,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1323 this -751781832 +2035070981 1 this.numer -1 @@ -44223,7 +45030,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1324 this -751781832 +2035070981 1 this.numer -1 @@ -44236,7 +45043,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1324 this -751781832 +2035070981 1 this.numer -1 @@ -44252,7 +45059,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1323 this -751781832 +2035070981 1 this.numer -1 @@ -44261,7 +45068,7 @@ this.denom 4 1 return -1550955123 +1264213713 1 return.toString "-1/4" @@ -44278,7 +45085,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1325 this -746244975 +1506809545 1 this.numer 0 @@ -44301,7 +45108,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1326 this -834796345 +1019384604 1 this.numer 1 @@ -44324,7 +45131,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1327 this -911504564 +550668305 1 this.numer -1 @@ -44347,7 +45154,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1328 this -1656353097 +963110412 1 this.numer 2 @@ -44370,7 +45177,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1329 this -495985218 +1624820151 1 this.numer 3 @@ -44419,7 +45226,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1330 this -1639524919 +1219161283 1 this.numer 1 @@ -44471,7 +45278,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1332 this -1132638976 +2081191879 1 this.numer 1 @@ -44523,7 +45330,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1334 this -968222624 +2061347276 1 this.numer 1 @@ -44575,7 +45382,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1336 this -1434048249 +1559122513 1 this.numer 2 @@ -44627,7 +45434,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1338 this -839950662 +1128096251 1 this.numer 3 @@ -44679,7 +45486,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1340 this -1640764503 +1552978964 1 this.numer 5 @@ -44731,7 +45538,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1342 this -491490794 +1259652483 1 this.numer 6 @@ -44783,7 +45590,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1344 this -1263668396 +1699113578 1 this.numer 8 @@ -44835,7 +45642,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1346 this -2008946389 +1306324352 1 this.numer -1 @@ -44887,7 +45694,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1348 this -1624061789 +355790875 1 this.numer 3 @@ -44916,7 +45723,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1350 this -1089334353 +2028017635 1 this.numer 1 @@ -44945,7 +45752,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1351 this -1144380196 +782378927 1 this.numer -1 @@ -44974,7 +45781,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1352 this -734411640 +70807318 1 this.numer 100 @@ -45003,7 +45810,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1353 this -1667914171 +910091170 1 this.numer 2 @@ -45032,7 +45839,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1354 this -1529427706 +1183888521 1 this.numer -2 @@ -45061,7 +45868,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1355 this -1859683799 +2041605291 1 this.numer 9 @@ -45080,7 +45887,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1356 this -1624061789 +355790875 1 this.numer 3 @@ -45089,7 +45896,7 @@ this.denom 2 1 arg -1639524919 +1219161283 1 arg.numer 1 @@ -45102,7 +45909,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1357 this -1639524919 +1219161283 1 this.numer 1 @@ -45148,7 +45955,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1358 this -1228611355 +1052245076 1 this.numer -1 @@ -45167,7 +45974,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1357 this -1639524919 +1219161283 1 this.numer 1 @@ -45176,7 +45983,7 @@ this.denom 2 1 return -1228611355 +1052245076 1 return.numer -1 @@ -45189,7 +45996,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1360 this -1624061789 +355790875 1 this.numer 3 @@ -45198,7 +46005,7 @@ this.denom 2 1 arg -1228611355 +1052245076 1 arg.numer -1 @@ -45244,7 +46051,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1361 this -1215777580 +2136288211 1 this.numer 1 @@ -45263,7 +46070,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1360 this -1624061789 +355790875 1 this.numer 3 @@ -45272,7 +46079,7 @@ this.denom 2 1 arg -1228611355 +1052245076 1 arg.numer -1 @@ -45281,7 +46088,7 @@ arg.denom 2 1 return -1215777580 +2136288211 1 return.numer 1 @@ -45294,7 +46101,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1356 this -1624061789 +355790875 1 this.numer 3 @@ -45303,7 +46110,7 @@ this.denom 2 1 arg -1639524919 +1219161283 1 arg.numer 1 @@ -45312,7 +46119,7 @@ arg.denom 2 1 return -1215777580 +2136288211 1 return.numer 1 @@ -45325,7 +46132,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1363 this -1215777580 +2136288211 1 this.numer 1 @@ -45338,7 +46145,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1364 this -1215777580 +2136288211 1 this.numer 1 @@ -45351,7 +46158,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1364 this -1215777580 +2136288211 1 this.numer 1 @@ -45367,7 +46174,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1363 this -1215777580 +2136288211 1 this.numer 1 @@ -45376,7 +46183,7 @@ this.denom 1 1 return -266885855 +1008925772 1 return.toString "1" @@ -45386,7 +46193,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1365 this -1624061789 +355790875 1 this.numer 3 @@ -45395,7 +46202,7 @@ this.denom 2 1 arg -1132638976 +2081191879 1 arg.numer 1 @@ -45408,7 +46215,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1366 this -1132638976 +2081191879 1 this.numer 1 @@ -45454,7 +46261,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1367 this -1604710049 +1175259735 1 this.numer -1 @@ -45473,7 +46280,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1366 this -1132638976 +2081191879 1 this.numer 1 @@ -45482,7 +46289,7 @@ this.denom 3 1 return -1604710049 +1175259735 1 return.numer -1 @@ -45495,7 +46302,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1369 this -1624061789 +355790875 1 this.numer 3 @@ -45504,7 +46311,7 @@ this.denom 2 1 arg -1604710049 +1175259735 1 arg.numer -1 @@ -45550,7 +46357,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1370 this -114670870 +1205406622 1 this.numer 7 @@ -45569,7 +46376,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1369 this -1624061789 +355790875 1 this.numer 3 @@ -45578,7 +46385,7 @@ this.denom 2 1 arg -1604710049 +1175259735 1 arg.numer -1 @@ -45587,7 +46394,7 @@ arg.denom 3 1 return -114670870 +1205406622 1 return.numer 7 @@ -45600,7 +46407,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1365 this -1624061789 +355790875 1 this.numer 3 @@ -45609,7 +46416,7 @@ this.denom 2 1 arg -1132638976 +2081191879 1 arg.numer 1 @@ -45618,7 +46425,7 @@ arg.denom 3 1 return -114670870 +1205406622 1 return.numer 7 @@ -45631,7 +46438,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1372 this -114670870 +1205406622 1 this.numer 7 @@ -45644,7 +46451,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1373 this -114670870 +1205406622 1 this.numer 7 @@ -45657,7 +46464,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1373 this -114670870 +1205406622 1 this.numer 7 @@ -45673,7 +46480,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1372 this -114670870 +1205406622 1 this.numer 7 @@ -45682,7 +46489,7 @@ this.denom 6 1 return -980480731 +293907205 1 return.toString "7/6" @@ -45699,7 +46506,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1374 this -1297622486 +988800485 1 this.numer 0 @@ -45722,7 +46529,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1375 this -1444686917 +345902941 1 this.numer 1 @@ -45745,7 +46552,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1376 this -1402901037 +454325163 1 this.numer -1 @@ -45768,7 +46575,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1377 this -1334768446 +796667727 1 this.numer 2 @@ -45791,7 +46598,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1378 this -839095360 +1794717576 1 this.numer 3 @@ -45840,7 +46647,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1379 this -150605671 +251210093 1 this.numer 1 @@ -45892,7 +46699,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1381 this -1493776331 +919112242 1 this.numer 1 @@ -45944,7 +46751,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1383 this -1814961687 +2021707251 1 this.numer 1 @@ -45996,7 +46803,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1385 this -1203351421 +1541857308 1 this.numer 2 @@ -46048,7 +46855,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1387 this -1873828948 +479397964 1 this.numer 3 @@ -46100,7 +46907,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1389 this -595445781 +1861781750 1 this.numer 5 @@ -46152,7 +46959,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1391 this -383446247 +283717519 1 this.numer 6 @@ -46204,7 +47011,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1393 this -2130132329 +2095303566 1 this.numer 8 @@ -46256,7 +47063,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1395 this -434174366 +2025221430 1 this.numer -1 @@ -46308,7 +47115,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1397 this -19136856 +1378084334 1 this.numer 3 @@ -46337,7 +47144,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1399 this -1658075389 +200224114 1 this.numer 1 @@ -46366,7 +47173,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1400 this -1525259451 +1773283386 1 this.numer -1 @@ -46395,7 +47202,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1401 this -523298718 +581318631 1 this.numer 100 @@ -46424,7 +47231,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1402 this -1136018961 +1877453512 1 this.numer 2 @@ -46453,7 +47260,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1403 this -1941055697 +487694075 1 this.numer -2 @@ -46482,7 +47289,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1404 this -899017902 +1704629915 1 this.numer 9 @@ -46501,7 +47308,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1405 this -1297622486 +988800485 1 this.numer 0 @@ -46510,7 +47317,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -46523,7 +47330,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1406 this -1658075389 +200224114 1 this.numer 1 @@ -46546,7 +47353,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1407 this -98938622 +1989184704 1 this.numer -1 @@ -46565,7 +47372,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1406 this -1658075389 +200224114 1 this.numer 1 @@ -46574,7 +47381,7 @@ this.denom 0 1 return -98938622 +1989184704 1 return.numer -1 @@ -46587,7 +47394,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1408 this -1297622486 +988800485 1 this.numer 0 @@ -46596,7 +47403,7 @@ this.denom 1 1 arg -98938622 +1989184704 1 arg.numer -1 @@ -46619,7 +47426,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1409 this -709077176 +611572016 1 this.numer -1 @@ -46638,7 +47445,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1408 this -1297622486 +988800485 1 this.numer 0 @@ -46647,7 +47454,7 @@ this.denom 1 1 arg -98938622 +1989184704 1 arg.numer -1 @@ -46656,7 +47463,7 @@ arg.denom 0 1 return -709077176 +611572016 1 return.numer -1 @@ -46669,7 +47476,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1405 this -1297622486 +988800485 1 this.numer 0 @@ -46678,7 +47485,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -46687,7 +47494,7 @@ arg.denom 0 1 return -709077176 +611572016 1 return.numer -1 @@ -46700,7 +47507,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1410 this -709077176 +611572016 1 this.numer -1 @@ -46713,7 +47520,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1411 this -709077176 +611572016 1 this.numer -1 @@ -46726,7 +47533,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1411 this -709077176 +611572016 1 this.numer -1 @@ -46742,7 +47549,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1410 this -709077176 +611572016 1 this.numer -1 @@ -46751,7 +47558,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -46761,7 +47568,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1412 this -1658075389 +200224114 1 this.numer 1 @@ -46770,7 +47577,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -46783,7 +47590,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1413 this -1297622486 +988800485 1 this.numer 0 @@ -46829,7 +47636,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1414 this -1073339829 +889486595 1 this.numer 0 @@ -46848,7 +47655,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1413 this -1297622486 +988800485 1 this.numer 0 @@ -46857,7 +47664,7 @@ this.denom 1 1 return -1073339829 +889486595 1 return.numer 0 @@ -46870,7 +47677,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1416 this -1658075389 +200224114 1 this.numer 1 @@ -46879,7 +47686,7 @@ this.denom 0 1 arg -1073339829 +889486595 1 arg.numer 0 @@ -46902,7 +47709,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1417 this -759871203 +77269878 1 this.numer 1 @@ -46921,7 +47728,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1416 this -1658075389 +200224114 1 this.numer 1 @@ -46930,7 +47737,7 @@ this.denom 0 1 arg -1073339829 +889486595 1 arg.numer 0 @@ -46939,7 +47746,7 @@ arg.denom 1 1 return -759871203 +77269878 1 return.numer 1 @@ -46952,7 +47759,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1412 this -1658075389 +200224114 1 this.numer 1 @@ -46961,7 +47768,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -46970,7 +47777,7 @@ arg.denom 1 1 return -759871203 +77269878 1 return.numer 1 @@ -46983,7 +47790,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1418 this -759871203 +77269878 1 this.numer 1 @@ -46996,7 +47803,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1419 this -759871203 +77269878 1 this.numer 1 @@ -47009,7 +47816,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1419 this -759871203 +77269878 1 this.numer 1 @@ -47025,7 +47832,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1418 this -759871203 +77269878 1 this.numer 1 @@ -47034,7 +47841,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -47044,7 +47851,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1420 this -1297622486 +988800485 1 this.numer 0 @@ -47053,7 +47860,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -47066,7 +47873,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1421 this -1525259451 +1773283386 1 this.numer -1 @@ -47089,7 +47896,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1422 this -70060112 +1990160809 1 this.numer 1 @@ -47108,7 +47915,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1421 this -1525259451 +1773283386 1 this.numer -1 @@ -47117,7 +47924,7 @@ this.denom 0 1 return -70060112 +1990160809 1 return.numer 1 @@ -47130,7 +47937,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1423 this -1297622486 +988800485 1 this.numer 0 @@ -47139,7 +47946,7 @@ this.denom 1 1 arg -70060112 +1990160809 1 arg.numer 1 @@ -47162,7 +47969,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1424 this -679263828 +1285524499 1 this.numer 1 @@ -47181,7 +47988,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1423 this -1297622486 +988800485 1 this.numer 0 @@ -47190,7 +47997,7 @@ this.denom 1 1 arg -70060112 +1990160809 1 arg.numer 1 @@ -47199,7 +48006,7 @@ arg.denom 0 1 return -679263828 +1285524499 1 return.numer 1 @@ -47212,7 +48019,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1420 this -1297622486 +988800485 1 this.numer 0 @@ -47221,7 +48028,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -47230,7 +48037,7 @@ arg.denom 0 1 return -679263828 +1285524499 1 return.numer 1 @@ -47243,7 +48050,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1425 this -679263828 +1285524499 1 this.numer 1 @@ -47256,7 +48063,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1426 this -679263828 +1285524499 1 this.numer 1 @@ -47269,7 +48076,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1426 this -679263828 +1285524499 1 this.numer 1 @@ -47285,7 +48092,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1425 this -679263828 +1285524499 1 this.numer 1 @@ -47294,7 +48101,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -47304,7 +48111,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1427 this -1525259451 +1773283386 1 this.numer -1 @@ -47313,7 +48120,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -47326,7 +48133,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1428 this -1297622486 +988800485 1 this.numer 0 @@ -47372,7 +48179,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1429 this -364089744 +1524960486 1 this.numer 0 @@ -47391,7 +48198,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1428 this -1297622486 +988800485 1 this.numer 0 @@ -47400,7 +48207,7 @@ this.denom 1 1 return -364089744 +1524960486 1 return.numer 0 @@ -47413,7 +48220,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1431 this -1525259451 +1773283386 1 this.numer -1 @@ -47422,7 +48229,7 @@ this.denom 0 1 arg -364089744 +1524960486 1 arg.numer 0 @@ -47445,7 +48252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1432 this -1075417105 +117009527 1 this.numer -1 @@ -47464,7 +48271,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1431 this -1525259451 +1773283386 1 this.numer -1 @@ -47473,7 +48280,7 @@ this.denom 0 1 arg -364089744 +1524960486 1 arg.numer 0 @@ -47482,7 +48289,7 @@ arg.denom 1 1 return -1075417105 +117009527 1 return.numer -1 @@ -47495,7 +48302,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1427 this -1525259451 +1773283386 1 this.numer -1 @@ -47504,7 +48311,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -47513,7 +48320,7 @@ arg.denom 1 1 return -1075417105 +117009527 1 return.numer -1 @@ -47526,7 +48333,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1433 this -1075417105 +117009527 1 this.numer -1 @@ -47539,7 +48346,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1434 this -1075417105 +117009527 1 this.numer -1 @@ -47552,7 +48359,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1434 this -1075417105 +117009527 1 this.numer -1 @@ -47568,7 +48375,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1433 this -1075417105 +117009527 1 this.numer -1 @@ -47577,7 +48384,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -47587,7 +48394,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1435 this -1297622486 +988800485 1 this.numer 0 @@ -47596,7 +48403,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -47609,7 +48416,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1436 this -523298718 +581318631 1 this.numer 100 @@ -47632,7 +48439,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1437 this -1312910583 +199640888 1 this.numer -100 @@ -47651,7 +48458,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1436 this -523298718 +581318631 1 this.numer 100 @@ -47660,7 +48467,7 @@ this.denom 0 1 return -1312910583 +199640888 1 return.numer -100 @@ -47673,7 +48480,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1438 this -1297622486 +988800485 1 this.numer 0 @@ -47682,7 +48489,7 @@ this.denom 1 1 arg -1312910583 +199640888 1 arg.numer -100 @@ -47705,7 +48512,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1439 this -693695556 +1000975683 1 this.numer -100 @@ -47724,7 +48531,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1438 this -1297622486 +988800485 1 this.numer 0 @@ -47733,7 +48540,7 @@ this.denom 1 1 arg -1312910583 +199640888 1 arg.numer -100 @@ -47742,7 +48549,7 @@ arg.denom 0 1 return -693695556 +1000975683 1 return.numer -100 @@ -47755,7 +48562,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1435 this -1297622486 +988800485 1 this.numer 0 @@ -47764,7 +48571,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -47773,7 +48580,7 @@ arg.denom 0 1 return -693695556 +1000975683 1 return.numer -100 @@ -47786,7 +48593,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1440 this -693695556 +1000975683 1 this.numer -100 @@ -47799,7 +48606,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1441 this -693695556 +1000975683 1 this.numer -100 @@ -47812,7 +48619,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1441 this -693695556 +1000975683 1 this.numer -100 @@ -47828,7 +48635,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1440 this -693695556 +1000975683 1 this.numer -100 @@ -47837,7 +48644,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -47847,7 +48654,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1442 this -523298718 +581318631 1 this.numer 100 @@ -47856,7 +48663,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -47869,7 +48676,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1443 this -1297622486 +988800485 1 this.numer 0 @@ -47915,7 +48722,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1444 this -252490129 +1238959340 1 this.numer 0 @@ -47934,7 +48741,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1443 this -1297622486 +988800485 1 this.numer 0 @@ -47943,7 +48750,7 @@ this.denom 1 1 return -252490129 +1238959340 1 return.numer 0 @@ -47956,7 +48763,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1446 this -523298718 +581318631 1 this.numer 100 @@ -47965,7 +48772,7 @@ this.denom 0 1 arg -252490129 +1238959340 1 arg.numer 0 @@ -47988,7 +48795,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1447 this -173911631 +76432244 1 this.numer 100 @@ -48007,7 +48814,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1446 this -523298718 +581318631 1 this.numer 100 @@ -48016,7 +48823,7 @@ this.denom 0 1 arg -252490129 +1238959340 1 arg.numer 0 @@ -48025,7 +48832,7 @@ arg.denom 1 1 return -173911631 +76432244 1 return.numer 100 @@ -48038,7 +48845,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1442 this -523298718 +581318631 1 this.numer 100 @@ -48047,7 +48854,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -48056,7 +48863,7 @@ arg.denom 1 1 return -173911631 +76432244 1 return.numer 100 @@ -48069,7 +48876,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1448 this -173911631 +76432244 1 this.numer 100 @@ -48082,7 +48889,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1449 this -173911631 +76432244 1 this.numer 100 @@ -48095,7 +48902,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1449 this -173911631 +76432244 1 this.numer 100 @@ -48111,7 +48918,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1448 this -173911631 +76432244 1 this.numer 100 @@ -48120,7 +48927,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -48130,7 +48937,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1450 this -1297622486 +988800485 1 this.numer 0 @@ -48139,7 +48946,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -48152,7 +48959,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1451 this -1136018961 +1877453512 1 this.numer 2 @@ -48175,7 +48982,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1452 this -207538650 +1030228826 1 this.numer -2 @@ -48194,7 +49001,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1451 this -1136018961 +1877453512 1 this.numer 2 @@ -48203,7 +49010,7 @@ this.denom 0 1 return -207538650 +1030228826 1 return.numer -2 @@ -48216,7 +49023,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1453 this -1297622486 +988800485 1 this.numer 0 @@ -48225,7 +49032,7 @@ this.denom 1 1 arg -207538650 +1030228826 1 arg.numer -2 @@ -48248,7 +49055,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1454 this -588647822 +1264413185 1 this.numer -2 @@ -48267,7 +49074,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1453 this -1297622486 +988800485 1 this.numer 0 @@ -48276,7 +49083,7 @@ this.denom 1 1 arg -207538650 +1030228826 1 arg.numer -2 @@ -48285,7 +49092,7 @@ arg.denom 0 1 return -588647822 +1264413185 1 return.numer -2 @@ -48298,7 +49105,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1450 this -1297622486 +988800485 1 this.numer 0 @@ -48307,7 +49114,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -48316,7 +49123,7 @@ arg.denom 0 1 return -588647822 +1264413185 1 return.numer -2 @@ -48329,7 +49136,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1455 this -588647822 +1264413185 1 this.numer -2 @@ -48342,7 +49149,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1456 this -588647822 +1264413185 1 this.numer -2 @@ -48355,7 +49162,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1456 this -588647822 +1264413185 1 this.numer -2 @@ -48371,7 +49178,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1455 this -588647822 +1264413185 1 this.numer -2 @@ -48380,7 +49187,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -48390,7 +49197,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1457 this -1136018961 +1877453512 1 this.numer 2 @@ -48399,7 +49206,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -48412,7 +49219,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1458 this -1297622486 +988800485 1 this.numer 0 @@ -48458,7 +49265,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1459 this -2094266272 +1243806178 1 this.numer 0 @@ -48477,7 +49284,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1458 this -1297622486 +988800485 1 this.numer 0 @@ -48486,7 +49293,7 @@ this.denom 1 1 return -2094266272 +1243806178 1 return.numer 0 @@ -48499,7 +49306,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1461 this -1136018961 +1877453512 1 this.numer 2 @@ -48508,7 +49315,7 @@ this.denom 0 1 arg -2094266272 +1243806178 1 arg.numer 0 @@ -48531,7 +49338,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1462 this -1076259174 +1010931249 1 this.numer 2 @@ -48550,7 +49357,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1461 this -1136018961 +1877453512 1 this.numer 2 @@ -48559,7 +49366,7 @@ this.denom 0 1 arg -2094266272 +1243806178 1 arg.numer 0 @@ -48568,7 +49375,7 @@ arg.denom 1 1 return -1076259174 +1010931249 1 return.numer 2 @@ -48581,7 +49388,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1457 this -1136018961 +1877453512 1 this.numer 2 @@ -48590,7 +49397,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -48599,7 +49406,7 @@ arg.denom 1 1 return -1076259174 +1010931249 1 return.numer 2 @@ -48612,7 +49419,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1463 this -1076259174 +1010931249 1 this.numer 2 @@ -48625,7 +49432,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1464 this -1076259174 +1010931249 1 this.numer 2 @@ -48638,7 +49445,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1464 this -1076259174 +1010931249 1 this.numer 2 @@ -48654,7 +49461,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1463 this -1076259174 +1010931249 1 this.numer 2 @@ -48663,7 +49470,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -48673,7 +49480,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1465 this -1297622486 +988800485 1 this.numer 0 @@ -48682,7 +49489,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -48695,7 +49502,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1466 this -1941055697 +487694075 1 this.numer -2 @@ -48718,7 +49525,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1467 this -433178737 +1099855928 1 this.numer 2 @@ -48737,7 +49544,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1466 this -1941055697 +487694075 1 this.numer -2 @@ -48746,7 +49553,7 @@ this.denom 0 1 return -433178737 +1099855928 1 return.numer 2 @@ -48759,7 +49566,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1468 this -1297622486 +988800485 1 this.numer 0 @@ -48768,7 +49575,7 @@ this.denom 1 1 arg -433178737 +1099855928 1 arg.numer 2 @@ -48791,7 +49598,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1469 this -465469429 +1629687658 1 this.numer 2 @@ -48810,7 +49617,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1468 this -1297622486 +988800485 1 this.numer 0 @@ -48819,7 +49626,7 @@ this.denom 1 1 arg -433178737 +1099855928 1 arg.numer 2 @@ -48828,7 +49635,7 @@ arg.denom 0 1 return -465469429 +1629687658 1 return.numer 2 @@ -48841,7 +49648,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1465 this -1297622486 +988800485 1 this.numer 0 @@ -48850,7 +49657,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -48859,7 +49666,7 @@ arg.denom 0 1 return -465469429 +1629687658 1 return.numer 2 @@ -48872,7 +49679,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1470 this -465469429 +1629687658 1 this.numer 2 @@ -48885,7 +49692,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1471 this -465469429 +1629687658 1 this.numer 2 @@ -48898,7 +49705,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1471 this -465469429 +1629687658 1 this.numer 2 @@ -48914,7 +49721,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1470 this -465469429 +1629687658 1 this.numer 2 @@ -48923,7 +49730,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -48933,7 +49740,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1472 this -1941055697 +487694075 1 this.numer -2 @@ -48942,7 +49749,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -48955,7 +49762,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1473 this -1297622486 +988800485 1 this.numer 0 @@ -49001,7 +49808,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1474 this -2009250829 +1007880005 1 this.numer 0 @@ -49020,7 +49827,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1473 this -1297622486 +988800485 1 this.numer 0 @@ -49029,7 +49836,7 @@ this.denom 1 1 return -2009250829 +1007880005 1 return.numer 0 @@ -49042,7 +49849,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1476 this -1941055697 +487694075 1 this.numer -2 @@ -49051,7 +49858,7 @@ this.denom 0 1 arg -2009250829 +1007880005 1 arg.numer 0 @@ -49074,7 +49881,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1477 this -298333928 +215219944 1 this.numer -2 @@ -49093,7 +49900,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1476 this -1941055697 +487694075 1 this.numer -2 @@ -49102,7 +49909,7 @@ this.denom 0 1 arg -2009250829 +1007880005 1 arg.numer 0 @@ -49111,7 +49918,7 @@ arg.denom 1 1 return -298333928 +215219944 1 return.numer -2 @@ -49124,7 +49931,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1472 this -1941055697 +487694075 1 this.numer -2 @@ -49133,7 +49940,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -49142,7 +49949,7 @@ arg.denom 1 1 return -298333928 +215219944 1 return.numer -2 @@ -49155,7 +49962,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1478 this -298333928 +215219944 1 this.numer -2 @@ -49168,7 +49975,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1479 this -298333928 +215219944 1 this.numer -2 @@ -49181,7 +49988,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1479 this -298333928 +215219944 1 this.numer -2 @@ -49197,7 +50004,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1478 this -298333928 +215219944 1 this.numer -2 @@ -49206,7 +50013,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -49216,7 +50023,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1480 this -1297622486 +988800485 1 this.numer 0 @@ -49225,7 +50032,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -49238,7 +50045,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1481 this -899017902 +1704629915 1 this.numer 9 @@ -49261,7 +50068,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1482 this -1871495798 +1043208434 1 this.numer -9 @@ -49280,7 +50087,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1481 this -899017902 +1704629915 1 this.numer 9 @@ -49289,7 +50096,7 @@ this.denom 0 1 return -1871495798 +1043208434 1 return.numer -9 @@ -49302,7 +50109,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1483 this -1297622486 +988800485 1 this.numer 0 @@ -49311,7 +50118,7 @@ this.denom 1 1 arg -1871495798 +1043208434 1 arg.numer -9 @@ -49334,7 +50141,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1484 this -36899377 +1192171522 1 this.numer -9 @@ -49353,7 +50160,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1483 this -1297622486 +988800485 1 this.numer 0 @@ -49362,7 +50169,7 @@ this.denom 1 1 arg -1871495798 +1043208434 1 arg.numer -9 @@ -49371,7 +50178,7 @@ arg.denom 0 1 return -36899377 +1192171522 1 return.numer -9 @@ -49384,7 +50191,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1480 this -1297622486 +988800485 1 this.numer 0 @@ -49393,7 +50200,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -49402,7 +50209,7 @@ arg.denom 0 1 return -36899377 +1192171522 1 return.numer -9 @@ -49415,7 +50222,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1485 this -36899377 +1192171522 1 this.numer -9 @@ -49428,7 +50235,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1486 this -36899377 +1192171522 1 this.numer -9 @@ -49441,7 +50248,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1486 this -36899377 +1192171522 1 this.numer -9 @@ -49457,7 +50264,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1485 this -36899377 +1192171522 1 this.numer -9 @@ -49466,7 +50273,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -49476,7 +50283,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1487 this -899017902 +1704629915 1 this.numer 9 @@ -49485,7 +50292,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -49498,7 +50305,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1488 this -1297622486 +988800485 1 this.numer 0 @@ -49544,7 +50351,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1489 this -1692538903 +1661081225 1 this.numer 0 @@ -49563,7 +50370,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1488 this -1297622486 +988800485 1 this.numer 0 @@ -49572,7 +50379,7 @@ this.denom 1 1 return -1692538903 +1661081225 1 return.numer 0 @@ -49585,7 +50392,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1491 this -899017902 +1704629915 1 this.numer 9 @@ -49594,7 +50401,7 @@ this.denom 0 1 arg -1692538903 +1661081225 1 arg.numer 0 @@ -49617,7 +50424,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1492 this -932954559 +1882554559 1 this.numer 9 @@ -49636,7 +50443,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1491 this -899017902 +1704629915 1 this.numer 9 @@ -49645,7 +50452,7 @@ this.denom 0 1 arg -1692538903 +1661081225 1 arg.numer 0 @@ -49654,7 +50461,7 @@ arg.denom 1 1 return -932954559 +1882554559 1 return.numer 9 @@ -49667,7 +50474,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1487 this -899017902 +1704629915 1 this.numer 9 @@ -49676,7 +50483,7 @@ this.denom 0 1 arg -1297622486 +988800485 1 arg.numer 0 @@ -49685,7 +50492,7 @@ arg.denom 1 1 return -932954559 +1882554559 1 return.numer 9 @@ -49698,7 +50505,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1493 this -932954559 +1882554559 1 this.numer 9 @@ -49711,7 +50518,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1494 this -932954559 +1882554559 1 this.numer 9 @@ -49724,7 +50531,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1494 this -932954559 +1882554559 1 this.numer 9 @@ -49740,7 +50547,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1493 this -932954559 +1882554559 1 this.numer 9 @@ -49749,7 +50556,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -49759,7 +50566,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1495 this -1444686917 +345902941 1 this.numer 1 @@ -49768,7 +50575,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -49781,7 +50588,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1496 this -1658075389 +200224114 1 this.numer 1 @@ -49804,7 +50611,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1497 this -1389166366 +1049817027 1 this.numer -1 @@ -49823,7 +50630,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1496 this -1658075389 +200224114 1 this.numer 1 @@ -49832,7 +50639,7 @@ this.denom 0 1 return -1389166366 +1049817027 1 return.numer -1 @@ -49845,7 +50652,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1498 this -1444686917 +345902941 1 this.numer 1 @@ -49854,7 +50661,7 @@ this.denom 1 1 arg -1389166366 +1049817027 1 arg.numer -1 @@ -49877,7 +50684,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1499 this -276903178 +23211803 1 this.numer -1 @@ -49896,7 +50703,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1498 this -1444686917 +345902941 1 this.numer 1 @@ -49905,7 +50712,7 @@ this.denom 1 1 arg -1389166366 +1049817027 1 arg.numer -1 @@ -49914,7 +50721,7 @@ arg.denom 0 1 return -276903178 +23211803 1 return.numer -1 @@ -49927,7 +50734,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1495 this -1444686917 +345902941 1 this.numer 1 @@ -49936,7 +50743,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -49945,7 +50752,7 @@ arg.denom 0 1 return -276903178 +23211803 1 return.numer -1 @@ -49958,7 +50765,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1500 this -276903178 +23211803 1 this.numer -1 @@ -49971,7 +50778,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1501 this -276903178 +23211803 1 this.numer -1 @@ -49984,7 +50791,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1501 this -276903178 +23211803 1 this.numer -1 @@ -50000,7 +50807,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1500 this -276903178 +23211803 1 this.numer -1 @@ -50009,7 +50816,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -50019,7 +50826,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1502 this -1658075389 +200224114 1 this.numer 1 @@ -50028,7 +50835,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -50041,7 +50848,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1503 this -1444686917 +345902941 1 this.numer 1 @@ -50087,7 +50894,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1504 this -314649597 +1923598304 1 this.numer -1 @@ -50106,7 +50913,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1503 this -1444686917 +345902941 1 this.numer 1 @@ -50115,7 +50922,7 @@ this.denom 1 1 return -314649597 +1923598304 1 return.numer -1 @@ -50128,7 +50935,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1506 this -1658075389 +200224114 1 this.numer 1 @@ -50137,7 +50944,7 @@ this.denom 0 1 arg -314649597 +1923598304 1 arg.numer -1 @@ -50160,7 +50967,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1507 this -1211037865 +776700275 1 this.numer 1 @@ -50179,7 +50986,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1506 this -1658075389 +200224114 1 this.numer 1 @@ -50188,7 +50995,7 @@ this.denom 0 1 arg -314649597 +1923598304 1 arg.numer -1 @@ -50197,7 +51004,7 @@ arg.denom 1 1 return -1211037865 +776700275 1 return.numer 1 @@ -50210,7 +51017,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1502 this -1658075389 +200224114 1 this.numer 1 @@ -50219,7 +51026,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -50228,7 +51035,7 @@ arg.denom 1 1 return -1211037865 +776700275 1 return.numer 1 @@ -50241,7 +51048,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1508 this -1211037865 +776700275 1 this.numer 1 @@ -50254,7 +51061,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1509 this -1211037865 +776700275 1 this.numer 1 @@ -50267,7 +51074,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1509 this -1211037865 +776700275 1 this.numer 1 @@ -50283,7 +51090,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1508 this -1211037865 +776700275 1 this.numer 1 @@ -50292,7 +51099,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -50302,7 +51109,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1510 this -1444686917 +345902941 1 this.numer 1 @@ -50311,7 +51118,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -50324,7 +51131,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1511 this -1525259451 +1773283386 1 this.numer -1 @@ -50347,7 +51154,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1512 this -63390789 +118394766 1 this.numer 1 @@ -50366,7 +51173,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1511 this -1525259451 +1773283386 1 this.numer -1 @@ -50375,7 +51182,7 @@ this.denom 0 1 return -63390789 +118394766 1 return.numer 1 @@ -50388,7 +51195,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1513 this -1444686917 +345902941 1 this.numer 1 @@ -50397,7 +51204,7 @@ this.denom 1 1 arg -63390789 +118394766 1 arg.numer 1 @@ -50420,7 +51227,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1514 this -257101811 +386163331 1 this.numer 1 @@ -50439,7 +51246,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1513 this -1444686917 +345902941 1 this.numer 1 @@ -50448,7 +51255,7 @@ this.denom 1 1 arg -63390789 +118394766 1 arg.numer 1 @@ -50457,7 +51264,7 @@ arg.denom 0 1 return -257101811 +386163331 1 return.numer 1 @@ -50470,7 +51277,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1510 this -1444686917 +345902941 1 this.numer 1 @@ -50479,7 +51286,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -50488,7 +51295,7 @@ arg.denom 0 1 return -257101811 +386163331 1 return.numer 1 @@ -50501,7 +51308,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1515 this -257101811 +386163331 1 this.numer 1 @@ -50514,7 +51321,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1516 this -257101811 +386163331 1 this.numer 1 @@ -50527,7 +51334,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1516 this -257101811 +386163331 1 this.numer 1 @@ -50543,7 +51350,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1515 this -257101811 +386163331 1 this.numer 1 @@ -50552,7 +51359,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -50562,7 +51369,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1517 this -1525259451 +1773283386 1 this.numer -1 @@ -50571,7 +51378,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -50584,7 +51391,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1518 this -1444686917 +345902941 1 this.numer 1 @@ -50630,7 +51437,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1519 this -373039713 +1540374340 1 this.numer -1 @@ -50649,7 +51456,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1518 this -1444686917 +345902941 1 this.numer 1 @@ -50658,7 +51465,7 @@ this.denom 1 1 return -373039713 +1540374340 1 return.numer -1 @@ -50671,7 +51478,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1521 this -1525259451 +1773283386 1 this.numer -1 @@ -50680,7 +51487,7 @@ this.denom 0 1 arg -373039713 +1540374340 1 arg.numer -1 @@ -50703,7 +51510,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1522 this -1173690798 +694316372 1 this.numer -1 @@ -50722,7 +51529,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1521 this -1525259451 +1773283386 1 this.numer -1 @@ -50731,7 +51538,7 @@ this.denom 0 1 arg -373039713 +1540374340 1 arg.numer -1 @@ -50740,7 +51547,7 @@ arg.denom 1 1 return -1173690798 +694316372 1 return.numer -1 @@ -50753,7 +51560,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1517 this -1525259451 +1773283386 1 this.numer -1 @@ -50762,7 +51569,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -50771,7 +51578,7 @@ arg.denom 1 1 return -1173690798 +694316372 1 return.numer -1 @@ -50784,7 +51591,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1523 this -1173690798 +694316372 1 this.numer -1 @@ -50797,7 +51604,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1524 this -1173690798 +694316372 1 this.numer -1 @@ -50810,7 +51617,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1524 this -1173690798 +694316372 1 this.numer -1 @@ -50826,7 +51633,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1523 this -1173690798 +694316372 1 this.numer -1 @@ -50835,7 +51642,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -50845,7 +51652,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1525 this -1444686917 +345902941 1 this.numer 1 @@ -50854,7 +51661,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -50867,7 +51674,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1526 this -523298718 +581318631 1 this.numer 100 @@ -50890,7 +51697,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1527 this -1583944291 +1516500233 1 this.numer -100 @@ -50909,7 +51716,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1526 this -523298718 +581318631 1 this.numer 100 @@ -50918,7 +51725,7 @@ this.denom 0 1 return -1583944291 +1516500233 1 return.numer -100 @@ -50931,7 +51738,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1528 this -1444686917 +345902941 1 this.numer 1 @@ -50940,7 +51747,7 @@ this.denom 1 1 arg -1583944291 +1516500233 1 arg.numer -100 @@ -50963,7 +51770,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1529 this -1144410625 +1850180796 1 this.numer -100 @@ -50982,7 +51789,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1528 this -1444686917 +345902941 1 this.numer 1 @@ -50991,7 +51798,7 @@ this.denom 1 1 arg -1583944291 +1516500233 1 arg.numer -100 @@ -51000,7 +51807,7 @@ arg.denom 0 1 return -1144410625 +1850180796 1 return.numer -100 @@ -51013,7 +51820,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1525 this -1444686917 +345902941 1 this.numer 1 @@ -51022,7 +51829,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -51031,7 +51838,7 @@ arg.denom 0 1 return -1144410625 +1850180796 1 return.numer -100 @@ -51044,7 +51851,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1530 this -1144410625 +1850180796 1 this.numer -100 @@ -51057,7 +51864,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1531 this -1144410625 +1850180796 1 this.numer -100 @@ -51070,7 +51877,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1531 this -1144410625 +1850180796 1 this.numer -100 @@ -51086,7 +51893,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1530 this -1144410625 +1850180796 1 this.numer -100 @@ -51095,7 +51902,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -51105,7 +51912,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1532 this -523298718 +581318631 1 this.numer 100 @@ -51114,7 +51921,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -51127,7 +51934,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1533 this -1444686917 +345902941 1 this.numer 1 @@ -51173,7 +51980,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1534 this -1245831843 +884452399 1 this.numer -1 @@ -51192,7 +51999,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1533 this -1444686917 +345902941 1 this.numer 1 @@ -51201,7 +52008,7 @@ this.denom 1 1 return -1245831843 +884452399 1 return.numer -1 @@ -51214,7 +52021,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1536 this -523298718 +581318631 1 this.numer 100 @@ -51223,7 +52030,7 @@ this.denom 0 1 arg -1245831843 +884452399 1 arg.numer -1 @@ -51246,7 +52053,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1537 this -730227051 +235237152 1 this.numer 100 @@ -51265,7 +52072,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1536 this -523298718 +581318631 1 this.numer 100 @@ -51274,7 +52081,7 @@ this.denom 0 1 arg -1245831843 +884452399 1 arg.numer -1 @@ -51283,7 +52090,7 @@ arg.denom 1 1 return -730227051 +235237152 1 return.numer 100 @@ -51296,7 +52103,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1532 this -523298718 +581318631 1 this.numer 100 @@ -51305,7 +52112,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -51314,7 +52121,7 @@ arg.denom 1 1 return -730227051 +235237152 1 return.numer 100 @@ -51327,7 +52134,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1538 this -730227051 +235237152 1 this.numer 100 @@ -51340,7 +52147,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1539 this -730227051 +235237152 1 this.numer 100 @@ -51353,7 +52160,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1539 this -730227051 +235237152 1 this.numer 100 @@ -51369,7 +52176,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1538 this -730227051 +235237152 1 this.numer 100 @@ -51378,7 +52185,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -51388,7 +52195,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1540 this -1444686917 +345902941 1 this.numer 1 @@ -51397,7 +52204,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -51410,7 +52217,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1541 this -1136018961 +1877453512 1 this.numer 2 @@ -51433,7 +52240,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1542 this -57003552 +1259014228 1 this.numer -2 @@ -51452,7 +52259,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1541 this -1136018961 +1877453512 1 this.numer 2 @@ -51461,7 +52268,7 @@ this.denom 0 1 return -57003552 +1259014228 1 return.numer -2 @@ -51474,7 +52281,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1543 this -1444686917 +345902941 1 this.numer 1 @@ -51483,7 +52290,7 @@ this.denom 1 1 arg -57003552 +1259014228 1 arg.numer -2 @@ -51506,7 +52313,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1544 this -280991902 +431687661 1 this.numer -2 @@ -51525,7 +52332,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1543 this -1444686917 +345902941 1 this.numer 1 @@ -51534,7 +52341,7 @@ this.denom 1 1 arg -57003552 +1259014228 1 arg.numer -2 @@ -51543,7 +52350,7 @@ arg.denom 0 1 return -280991902 +431687661 1 return.numer -2 @@ -51556,7 +52363,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1540 this -1444686917 +345902941 1 this.numer 1 @@ -51565,7 +52372,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -51574,7 +52381,7 @@ arg.denom 0 1 return -280991902 +431687661 1 return.numer -2 @@ -51587,7 +52394,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1545 this -280991902 +431687661 1 this.numer -2 @@ -51600,7 +52407,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1546 this -280991902 +431687661 1 this.numer -2 @@ -51613,7 +52420,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1546 this -280991902 +431687661 1 this.numer -2 @@ -51629,7 +52436,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1545 this -280991902 +431687661 1 this.numer -2 @@ -51638,7 +52445,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -51648,7 +52455,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1547 this -1136018961 +1877453512 1 this.numer 2 @@ -51657,7 +52464,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -51670,7 +52477,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1548 this -1444686917 +345902941 1 this.numer 1 @@ -51716,7 +52523,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1549 this -314357161 +283383329 1 this.numer -1 @@ -51735,7 +52542,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1548 this -1444686917 +345902941 1 this.numer 1 @@ -51744,7 +52551,7 @@ this.denom 1 1 return -314357161 +283383329 1 return.numer -1 @@ -51757,7 +52564,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1551 this -1136018961 +1877453512 1 this.numer 2 @@ -51766,7 +52573,7 @@ this.denom 0 1 arg -314357161 +283383329 1 arg.numer -1 @@ -51789,7 +52596,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1552 this -591033307 +893192050 1 this.numer 2 @@ -51808,7 +52615,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1551 this -1136018961 +1877453512 1 this.numer 2 @@ -51817,7 +52624,7 @@ this.denom 0 1 arg -314357161 +283383329 1 arg.numer -1 @@ -51826,7 +52633,7 @@ arg.denom 1 1 return -591033307 +893192050 1 return.numer 2 @@ -51839,7 +52646,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1547 this -1136018961 +1877453512 1 this.numer 2 @@ -51848,7 +52655,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -51857,7 +52664,7 @@ arg.denom 1 1 return -591033307 +893192050 1 return.numer 2 @@ -51870,7 +52677,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1553 this -591033307 +893192050 1 this.numer 2 @@ -51883,7 +52690,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1554 this -591033307 +893192050 1 this.numer 2 @@ -51896,7 +52703,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1554 this -591033307 +893192050 1 this.numer 2 @@ -51912,7 +52719,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1553 this -591033307 +893192050 1 this.numer 2 @@ -51921,7 +52728,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -51931,7 +52738,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1555 this -1444686917 +345902941 1 this.numer 1 @@ -51940,7 +52747,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -51953,7 +52760,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1556 this -1941055697 +487694075 1 this.numer -2 @@ -51976,7 +52783,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1557 this -1384923374 +644345897 1 this.numer 2 @@ -51995,7 +52802,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1556 this -1941055697 +487694075 1 this.numer -2 @@ -52004,7 +52811,7 @@ this.denom 0 1 return -1384923374 +644345897 1 return.numer 2 @@ -52017,7 +52824,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1558 this -1444686917 +345902941 1 this.numer 1 @@ -52026,7 +52833,7 @@ this.denom 1 1 arg -1384923374 +644345897 1 arg.numer 2 @@ -52049,7 +52856,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1559 this -1979380632 +1738674023 1 this.numer 2 @@ -52068,7 +52875,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1558 this -1444686917 +345902941 1 this.numer 1 @@ -52077,7 +52884,7 @@ this.denom 1 1 arg -1384923374 +644345897 1 arg.numer 2 @@ -52086,7 +52893,7 @@ arg.denom 0 1 return -1979380632 +1738674023 1 return.numer 2 @@ -52099,7 +52906,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1555 this -1444686917 +345902941 1 this.numer 1 @@ -52108,7 +52915,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -52117,7 +52924,7 @@ arg.denom 0 1 return -1979380632 +1738674023 1 return.numer 2 @@ -52130,7 +52937,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1560 this -1979380632 +1738674023 1 this.numer 2 @@ -52143,7 +52950,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1561 this -1979380632 +1738674023 1 this.numer 2 @@ -52156,7 +52963,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1561 this -1979380632 +1738674023 1 this.numer 2 @@ -52172,7 +52979,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1560 this -1979380632 +1738674023 1 this.numer 2 @@ -52181,7 +52988,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -52191,7 +52998,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1562 this -1941055697 +487694075 1 this.numer -2 @@ -52200,7 +53007,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -52213,7 +53020,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1563 this -1444686917 +345902941 1 this.numer 1 @@ -52259,7 +53066,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1564 this -781106347 +1472682156 1 this.numer -1 @@ -52278,7 +53085,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1563 this -1444686917 +345902941 1 this.numer 1 @@ -52287,7 +53094,7 @@ this.denom 1 1 return -781106347 +1472682156 1 return.numer -1 @@ -52300,7 +53107,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1566 this -1941055697 +487694075 1 this.numer -2 @@ -52309,7 +53116,7 @@ this.denom 0 1 arg -781106347 +1472682156 1 arg.numer -1 @@ -52332,7 +53139,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1567 this -486839918 +178049969 1 this.numer -2 @@ -52351,7 +53158,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1566 this -1941055697 +487694075 1 this.numer -2 @@ -52360,7 +53167,7 @@ this.denom 0 1 arg -781106347 +1472682156 1 arg.numer -1 @@ -52369,7 +53176,7 @@ arg.denom 1 1 return -486839918 +178049969 1 return.numer -2 @@ -52382,7 +53189,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1562 this -1941055697 +487694075 1 this.numer -2 @@ -52391,7 +53198,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -52400,7 +53207,7 @@ arg.denom 1 1 return -486839918 +178049969 1 return.numer -2 @@ -52413,7 +53220,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1568 this -486839918 +178049969 1 this.numer -2 @@ -52426,7 +53233,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1569 this -486839918 +178049969 1 this.numer -2 @@ -52439,7 +53246,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1569 this -486839918 +178049969 1 this.numer -2 @@ -52455,7 +53262,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1568 this -486839918 +178049969 1 this.numer -2 @@ -52464,7 +53271,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -52474,7 +53281,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1570 this -1444686917 +345902941 1 this.numer 1 @@ -52483,7 +53290,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -52496,7 +53303,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1571 this -899017902 +1704629915 1 this.numer 9 @@ -52519,7 +53326,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1572 this -405806756 +333683827 1 this.numer -9 @@ -52538,7 +53345,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1571 this -899017902 +1704629915 1 this.numer 9 @@ -52547,7 +53354,7 @@ this.denom 0 1 return -405806756 +333683827 1 return.numer -9 @@ -52560,7 +53367,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1573 this -1444686917 +345902941 1 this.numer 1 @@ -52569,7 +53376,7 @@ this.denom 1 1 arg -405806756 +333683827 1 arg.numer -9 @@ -52592,7 +53399,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1574 this -2133568867 +1691185247 1 this.numer -9 @@ -52611,7 +53418,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1573 this -1444686917 +345902941 1 this.numer 1 @@ -52620,7 +53427,7 @@ this.denom 1 1 arg -405806756 +333683827 1 arg.numer -9 @@ -52629,7 +53436,7 @@ arg.denom 0 1 return -2133568867 +1691185247 1 return.numer -9 @@ -52642,7 +53449,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1570 this -1444686917 +345902941 1 this.numer 1 @@ -52651,7 +53458,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -52660,7 +53467,7 @@ arg.denom 0 1 return -2133568867 +1691185247 1 return.numer -9 @@ -52673,7 +53480,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1575 this -2133568867 +1691185247 1 this.numer -9 @@ -52686,7 +53493,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1576 this -2133568867 +1691185247 1 this.numer -9 @@ -52699,7 +53506,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1576 this -2133568867 +1691185247 1 this.numer -9 @@ -52715,7 +53522,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1575 this -2133568867 +1691185247 1 this.numer -9 @@ -52724,7 +53531,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -52734,7 +53541,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1577 this -899017902 +1704629915 1 this.numer 9 @@ -52743,7 +53550,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -52756,7 +53563,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1578 this -1444686917 +345902941 1 this.numer 1 @@ -52802,7 +53609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1579 this -210010063 +153245266 1 this.numer -1 @@ -52821,7 +53628,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1578 this -1444686917 +345902941 1 this.numer 1 @@ -52830,7 +53637,7 @@ this.denom 1 1 return -210010063 +153245266 1 return.numer -1 @@ -52843,7 +53650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1581 this -899017902 +1704629915 1 this.numer 9 @@ -52852,7 +53659,7 @@ this.denom 0 1 arg -210010063 +153245266 1 arg.numer -1 @@ -52875,7 +53682,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1582 this -1323496820 +1699679644 1 this.numer 9 @@ -52894,7 +53701,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1581 this -899017902 +1704629915 1 this.numer 9 @@ -52903,7 +53710,7 @@ this.denom 0 1 arg -210010063 +153245266 1 arg.numer -1 @@ -52912,7 +53719,7 @@ arg.denom 1 1 return -1323496820 +1699679644 1 return.numer 9 @@ -52925,7 +53732,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1577 this -899017902 +1704629915 1 this.numer 9 @@ -52934,7 +53741,7 @@ this.denom 0 1 arg -1444686917 +345902941 1 arg.numer 1 @@ -52943,7 +53750,7 @@ arg.denom 1 1 return -1323496820 +1699679644 1 return.numer 9 @@ -52956,7 +53763,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1583 this -1323496820 +1699679644 1 this.numer 9 @@ -52969,7 +53776,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1584 this -1323496820 +1699679644 1 this.numer 9 @@ -52982,7 +53789,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1584 this -1323496820 +1699679644 1 this.numer 9 @@ -52998,7 +53805,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1583 this -1323496820 +1699679644 1 this.numer 9 @@ -53007,7 +53814,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -53017,7 +53824,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1585 this -1402901037 +454325163 1 this.numer -1 @@ -53026,7 +53833,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -53039,7 +53846,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1586 this -1658075389 +200224114 1 this.numer 1 @@ -53062,7 +53869,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1587 this -375438114 +1782580546 1 this.numer -1 @@ -53081,7 +53888,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1586 this -1658075389 +200224114 1 this.numer 1 @@ -53090,7 +53897,7 @@ this.denom 0 1 return -375438114 +1782580546 1 return.numer -1 @@ -53103,7 +53910,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1588 this -1402901037 +454325163 1 this.numer -1 @@ -53112,7 +53919,7 @@ this.denom 1 1 arg -375438114 +1782580546 1 arg.numer -1 @@ -53135,7 +53942,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1589 this -681427112 +1702940637 1 this.numer -1 @@ -53154,7 +53961,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1588 this -1402901037 +454325163 1 this.numer -1 @@ -53163,7 +53970,7 @@ this.denom 1 1 arg -375438114 +1782580546 1 arg.numer -1 @@ -53172,7 +53979,7 @@ arg.denom 0 1 return -681427112 +1702940637 1 return.numer -1 @@ -53185,7 +53992,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1585 this -1402901037 +454325163 1 this.numer -1 @@ -53194,7 +54001,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -53203,7 +54010,7 @@ arg.denom 0 1 return -681427112 +1702940637 1 return.numer -1 @@ -53216,7 +54023,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1590 this -681427112 +1702940637 1 this.numer -1 @@ -53229,7 +54036,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1591 this -681427112 +1702940637 1 this.numer -1 @@ -53242,7 +54049,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1591 this -681427112 +1702940637 1 this.numer -1 @@ -53258,7 +54065,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1590 this -681427112 +1702940637 1 this.numer -1 @@ -53267,7 +54074,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -53277,7 +54084,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1592 this -1658075389 +200224114 1 this.numer 1 @@ -53286,7 +54093,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -53299,7 +54106,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1593 this -1402901037 +454325163 1 this.numer -1 @@ -53345,7 +54152,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1594 this -215181933 +2114684409 1 this.numer 1 @@ -53364,7 +54171,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1593 this -1402901037 +454325163 1 this.numer -1 @@ -53373,7 +54180,7 @@ this.denom 1 1 return -215181933 +2114684409 1 return.numer 1 @@ -53386,7 +54193,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1596 this -1658075389 +200224114 1 this.numer 1 @@ -53395,7 +54202,7 @@ this.denom 0 1 arg -215181933 +2114684409 1 arg.numer 1 @@ -53418,7 +54225,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1597 this -200286383 +1664439369 1 this.numer 1 @@ -53437,7 +54244,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1596 this -1658075389 +200224114 1 this.numer 1 @@ -53446,7 +54253,7 @@ this.denom 0 1 arg -215181933 +2114684409 1 arg.numer 1 @@ -53455,7 +54262,7 @@ arg.denom 1 1 return -200286383 +1664439369 1 return.numer 1 @@ -53468,7 +54275,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1592 this -1658075389 +200224114 1 this.numer 1 @@ -53477,7 +54284,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -53486,7 +54293,7 @@ arg.denom 1 1 return -200286383 +1664439369 1 return.numer 1 @@ -53499,7 +54306,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1598 this -200286383 +1664439369 1 this.numer 1 @@ -53512,7 +54319,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1599 this -200286383 +1664439369 1 this.numer 1 @@ -53525,7 +54332,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1599 this -200286383 +1664439369 1 this.numer 1 @@ -53541,7 +54348,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1598 this -200286383 +1664439369 1 this.numer 1 @@ -53550,7 +54357,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -53560,7 +54367,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1600 this -1402901037 +454325163 1 this.numer -1 @@ -53569,7 +54376,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -53582,7 +54389,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1601 this -1525259451 +1773283386 1 this.numer -1 @@ -53605,7 +54412,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1602 this -1106364232 +154482552 1 this.numer 1 @@ -53624,7 +54431,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1601 this -1525259451 +1773283386 1 this.numer -1 @@ -53633,7 +54440,7 @@ this.denom 0 1 return -1106364232 +154482552 1 return.numer 1 @@ -53646,7 +54453,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1603 this -1402901037 +454325163 1 this.numer -1 @@ -53655,7 +54462,7 @@ this.denom 1 1 arg -1106364232 +154482552 1 arg.numer 1 @@ -53678,7 +54485,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1604 this -1750231498 +1781071780 1 this.numer 1 @@ -53697,7 +54504,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1603 this -1402901037 +454325163 1 this.numer -1 @@ -53706,7 +54513,7 @@ this.denom 1 1 arg -1106364232 +154482552 1 arg.numer 1 @@ -53715,7 +54522,7 @@ arg.denom 0 1 return -1750231498 +1781071780 1 return.numer 1 @@ -53728,7 +54535,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1600 this -1402901037 +454325163 1 this.numer -1 @@ -53737,7 +54544,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -53746,7 +54553,7 @@ arg.denom 0 1 return -1750231498 +1781071780 1 return.numer 1 @@ -53759,7 +54566,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1605 this -1750231498 +1781071780 1 this.numer 1 @@ -53772,7 +54579,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1606 this -1750231498 +1781071780 1 this.numer 1 @@ -53785,7 +54592,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1606 this -1750231498 +1781071780 1 this.numer 1 @@ -53801,7 +54608,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1605 this -1750231498 +1781071780 1 this.numer 1 @@ -53810,7 +54617,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -53820,7 +54627,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1607 this -1525259451 +1773283386 1 this.numer -1 @@ -53829,7 +54636,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -53842,7 +54649,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1608 this -1402901037 +454325163 1 this.numer -1 @@ -53888,7 +54695,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1609 this -2057273927 +1219402581 1 this.numer 1 @@ -53907,7 +54714,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1608 this -1402901037 +454325163 1 this.numer -1 @@ -53916,7 +54723,7 @@ this.denom 1 1 return -2057273927 +1219402581 1 return.numer 1 @@ -53929,7 +54736,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1611 this -1525259451 +1773283386 1 this.numer -1 @@ -53938,7 +54745,7 @@ this.denom 0 1 arg -2057273927 +1219402581 1 arg.numer 1 @@ -53961,7 +54768,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1612 this -2116174389 +24119573 1 this.numer -1 @@ -53980,7 +54787,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1611 this -1525259451 +1773283386 1 this.numer -1 @@ -53989,7 +54796,7 @@ this.denom 0 1 arg -2057273927 +1219402581 1 arg.numer 1 @@ -53998,7 +54805,7 @@ arg.denom 1 1 return -2116174389 +24119573 1 return.numer -1 @@ -54011,7 +54818,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1607 this -1525259451 +1773283386 1 this.numer -1 @@ -54020,7 +54827,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -54029,7 +54836,7 @@ arg.denom 1 1 return -2116174389 +24119573 1 return.numer -1 @@ -54042,7 +54849,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1613 this -2116174389 +24119573 1 this.numer -1 @@ -54055,7 +54862,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1614 this -2116174389 +24119573 1 this.numer -1 @@ -54068,7 +54875,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1614 this -2116174389 +24119573 1 this.numer -1 @@ -54084,7 +54891,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1613 this -2116174389 +24119573 1 this.numer -1 @@ -54093,7 +54900,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -54103,7 +54910,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1615 this -1402901037 +454325163 1 this.numer -1 @@ -54112,7 +54919,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -54125,7 +54932,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1616 this -523298718 +581318631 1 this.numer 100 @@ -54148,7 +54955,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1617 this -2066277956 +568221876 1 this.numer -100 @@ -54167,7 +54974,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1616 this -523298718 +581318631 1 this.numer 100 @@ -54176,7 +54983,7 @@ this.denom 0 1 return -2066277956 +568221876 1 return.numer -100 @@ -54189,7 +54996,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1618 this -1402901037 +454325163 1 this.numer -1 @@ -54198,7 +55005,7 @@ this.denom 1 1 arg -2066277956 +568221876 1 arg.numer -100 @@ -54221,7 +55028,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1619 this -975550855 +203849460 1 this.numer -100 @@ -54240,7 +55047,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1618 this -1402901037 +454325163 1 this.numer -1 @@ -54249,7 +55056,7 @@ this.denom 1 1 arg -2066277956 +568221876 1 arg.numer -100 @@ -54258,7 +55065,7 @@ arg.denom 0 1 return -975550855 +203849460 1 return.numer -100 @@ -54271,7 +55078,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1615 this -1402901037 +454325163 1 this.numer -1 @@ -54280,7 +55087,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -54289,7 +55096,7 @@ arg.denom 0 1 return -975550855 +203849460 1 return.numer -100 @@ -54302,7 +55109,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1620 this -975550855 +203849460 1 this.numer -100 @@ -54315,7 +55122,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1621 this -975550855 +203849460 1 this.numer -100 @@ -54328,7 +55135,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1621 this -975550855 +203849460 1 this.numer -100 @@ -54344,7 +55151,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1620 this -975550855 +203849460 1 this.numer -100 @@ -54353,7 +55160,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -54363,7 +55170,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1622 this -523298718 +581318631 1 this.numer 100 @@ -54372,7 +55179,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -54385,7 +55192,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1623 this -1402901037 +454325163 1 this.numer -1 @@ -54431,7 +55238,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1624 this -45575140 +820914198 1 this.numer 1 @@ -54450,7 +55257,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1623 this -1402901037 +454325163 1 this.numer -1 @@ -54459,7 +55266,7 @@ this.denom 1 1 return -45575140 +820914198 1 return.numer 1 @@ -54472,7 +55279,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1626 this -523298718 +581318631 1 this.numer 100 @@ -54481,7 +55288,7 @@ this.denom 0 1 arg -45575140 +820914198 1 arg.numer 1 @@ -54504,7 +55311,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1627 this -1477199648 +836220863 1 this.numer 100 @@ -54523,7 +55330,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1626 this -523298718 +581318631 1 this.numer 100 @@ -54532,7 +55339,7 @@ this.denom 0 1 arg -45575140 +820914198 1 arg.numer 1 @@ -54541,7 +55348,7 @@ arg.denom 1 1 return -1477199648 +836220863 1 return.numer 100 @@ -54554,7 +55361,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1622 this -523298718 +581318631 1 this.numer 100 @@ -54563,7 +55370,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -54572,7 +55379,7 @@ arg.denom 1 1 return -1477199648 +836220863 1 return.numer 100 @@ -54585,7 +55392,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1628 this -1477199648 +836220863 1 this.numer 100 @@ -54598,7 +55405,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1629 this -1477199648 +836220863 1 this.numer 100 @@ -54611,7 +55418,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1629 this -1477199648 +836220863 1 this.numer 100 @@ -54627,7 +55434,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1628 this -1477199648 +836220863 1 this.numer 100 @@ -54636,7 +55443,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -54646,7 +55453,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1630 this -1402901037 +454325163 1 this.numer -1 @@ -54655,7 +55462,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -54668,7 +55475,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1631 this -1136018961 +1877453512 1 this.numer 2 @@ -54691,7 +55498,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1632 this -236040969 +1667148529 1 this.numer -2 @@ -54710,7 +55517,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1631 this -1136018961 +1877453512 1 this.numer 2 @@ -54719,7 +55526,7 @@ this.denom 0 1 return -236040969 +1667148529 1 return.numer -2 @@ -54732,7 +55539,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1633 this -1402901037 +454325163 1 this.numer -1 @@ -54741,7 +55548,7 @@ this.denom 1 1 arg -236040969 +1667148529 1 arg.numer -2 @@ -54764,7 +55571,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1634 this -738269974 +1546693040 1 this.numer -2 @@ -54783,7 +55590,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1633 this -1402901037 +454325163 1 this.numer -1 @@ -54792,7 +55599,7 @@ this.denom 1 1 arg -236040969 +1667148529 1 arg.numer -2 @@ -54801,7 +55608,7 @@ arg.denom 0 1 return -738269974 +1546693040 1 return.numer -2 @@ -54814,7 +55621,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1630 this -1402901037 +454325163 1 this.numer -1 @@ -54823,7 +55630,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -54832,7 +55639,7 @@ arg.denom 0 1 return -738269974 +1546693040 1 return.numer -2 @@ -54845,7 +55652,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1635 this -738269974 +1546693040 1 this.numer -2 @@ -54858,7 +55665,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1636 this -738269974 +1546693040 1 this.numer -2 @@ -54871,7 +55678,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1636 this -738269974 +1546693040 1 this.numer -2 @@ -54887,7 +55694,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1635 this -738269974 +1546693040 1 this.numer -2 @@ -54896,7 +55703,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -54906,7 +55713,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1637 this -1136018961 +1877453512 1 this.numer 2 @@ -54915,7 +55722,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -54928,7 +55735,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1638 this -1402901037 +454325163 1 this.numer -1 @@ -54974,7 +55781,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1639 this -2090424299 +501187768 1 this.numer 1 @@ -54993,7 +55800,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1638 this -1402901037 +454325163 1 this.numer -1 @@ -55002,7 +55809,7 @@ this.denom 1 1 return -2090424299 +501187768 1 return.numer 1 @@ -55015,7 +55822,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1641 this -1136018961 +1877453512 1 this.numer 2 @@ -55024,7 +55831,7 @@ this.denom 0 1 arg -2090424299 +501187768 1 arg.numer 1 @@ -55047,7 +55854,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1642 this -928728373 +288994035 1 this.numer 2 @@ -55066,7 +55873,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1641 this -1136018961 +1877453512 1 this.numer 2 @@ -55075,7 +55882,7 @@ this.denom 0 1 arg -2090424299 +501187768 1 arg.numer 1 @@ -55084,7 +55891,7 @@ arg.denom 1 1 return -928728373 +288994035 1 return.numer 2 @@ -55097,7 +55904,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1637 this -1136018961 +1877453512 1 this.numer 2 @@ -55106,7 +55913,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -55115,7 +55922,7 @@ arg.denom 1 1 return -928728373 +288994035 1 return.numer 2 @@ -55128,7 +55935,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1643 this -928728373 +288994035 1 this.numer 2 @@ -55141,7 +55948,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1644 this -928728373 +288994035 1 this.numer 2 @@ -55154,7 +55961,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1644 this -928728373 +288994035 1 this.numer 2 @@ -55170,7 +55977,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1643 this -928728373 +288994035 1 this.numer 2 @@ -55179,7 +55986,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -55189,7 +55996,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1645 this -1402901037 +454325163 1 this.numer -1 @@ -55198,7 +56005,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -55211,7 +56018,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1646 this -1941055697 +487694075 1 this.numer -2 @@ -55234,7 +56041,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1647 this -1226618615 +128359175 1 this.numer 2 @@ -55253,7 +56060,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1646 this -1941055697 +487694075 1 this.numer -2 @@ -55262,7 +56069,7 @@ this.denom 0 1 return -1226618615 +128359175 1 return.numer 2 @@ -55275,7 +56082,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1648 this -1402901037 +454325163 1 this.numer -1 @@ -55284,7 +56091,7 @@ this.denom 1 1 arg -1226618615 +128359175 1 arg.numer 2 @@ -55307,7 +56114,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1649 this -2083534752 +1585635178 1 this.numer 2 @@ -55326,7 +56133,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1648 this -1402901037 +454325163 1 this.numer -1 @@ -55335,7 +56142,7 @@ this.denom 1 1 arg -1226618615 +128359175 1 arg.numer 2 @@ -55344,7 +56151,7 @@ arg.denom 0 1 return -2083534752 +1585635178 1 return.numer 2 @@ -55357,7 +56164,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1645 this -1402901037 +454325163 1 this.numer -1 @@ -55366,7 +56173,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -55375,7 +56182,7 @@ arg.denom 0 1 return -2083534752 +1585635178 1 return.numer 2 @@ -55388,7 +56195,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1650 this -2083534752 +1585635178 1 this.numer 2 @@ -55401,7 +56208,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1651 this -2083534752 +1585635178 1 this.numer 2 @@ -55414,7 +56221,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1651 this -2083534752 +1585635178 1 this.numer 2 @@ -55430,7 +56237,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1650 this -2083534752 +1585635178 1 this.numer 2 @@ -55439,7 +56246,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -55449,7 +56256,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1652 this -1941055697 +487694075 1 this.numer -2 @@ -55458,7 +56265,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -55471,7 +56278,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1653 this -1402901037 +454325163 1 this.numer -1 @@ -55517,7 +56324,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1654 this -1100228882 +1058634310 1 this.numer 1 @@ -55536,7 +56343,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1653 this -1402901037 +454325163 1 this.numer -1 @@ -55545,7 +56352,7 @@ this.denom 1 1 return -1100228882 +1058634310 1 return.numer 1 @@ -55558,7 +56365,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1656 this -1941055697 +487694075 1 this.numer -2 @@ -55567,7 +56374,7 @@ this.denom 0 1 arg -1100228882 +1058634310 1 arg.numer 1 @@ -55590,7 +56397,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1657 this -1712619104 +1668016508 1 this.numer -2 @@ -55609,7 +56416,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1656 this -1941055697 +487694075 1 this.numer -2 @@ -55618,7 +56425,7 @@ this.denom 0 1 arg -1100228882 +1058634310 1 arg.numer 1 @@ -55627,7 +56434,7 @@ arg.denom 1 1 return -1712619104 +1668016508 1 return.numer -2 @@ -55640,7 +56447,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1652 this -1941055697 +487694075 1 this.numer -2 @@ -55649,7 +56456,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -55658,7 +56465,7 @@ arg.denom 1 1 return -1712619104 +1668016508 1 return.numer -2 @@ -55671,7 +56478,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1658 this -1712619104 +1668016508 1 this.numer -2 @@ -55684,7 +56491,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1659 this -1712619104 +1668016508 1 this.numer -2 @@ -55697,7 +56504,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1659 this -1712619104 +1668016508 1 this.numer -2 @@ -55713,7 +56520,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1658 this -1712619104 +1668016508 1 this.numer -2 @@ -55722,7 +56529,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -55732,7 +56539,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1660 this -1402901037 +454325163 1 this.numer -1 @@ -55741,7 +56548,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -55754,7 +56561,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1661 this -899017902 +1704629915 1 this.numer 9 @@ -55777,7 +56584,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1662 this -1265960187 +1353070773 1 this.numer -9 @@ -55796,7 +56603,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1661 this -899017902 +1704629915 1 this.numer 9 @@ -55805,7 +56612,7 @@ this.denom 0 1 return -1265960187 +1353070773 1 return.numer -9 @@ -55818,7 +56625,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1663 this -1402901037 +454325163 1 this.numer -1 @@ -55827,7 +56634,7 @@ this.denom 1 1 arg -1265960187 +1353070773 1 arg.numer -9 @@ -55850,7 +56657,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1664 this -1872372080 +404214852 1 this.numer -9 @@ -55869,7 +56676,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1663 this -1402901037 +454325163 1 this.numer -1 @@ -55878,7 +56685,7 @@ this.denom 1 1 arg -1265960187 +1353070773 1 arg.numer -9 @@ -55887,7 +56694,7 @@ arg.denom 0 1 return -1872372080 +404214852 1 return.numer -9 @@ -55900,7 +56707,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1660 this -1402901037 +454325163 1 this.numer -1 @@ -55909,7 +56716,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -55918,7 +56725,7 @@ arg.denom 0 1 return -1872372080 +404214852 1 return.numer -9 @@ -55931,7 +56738,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1665 this -1872372080 +404214852 1 this.numer -9 @@ -55944,7 +56751,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1666 this -1872372080 +404214852 1 this.numer -9 @@ -55957,7 +56764,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1666 this -1872372080 +404214852 1 this.numer -9 @@ -55973,7 +56780,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1665 this -1872372080 +404214852 1 this.numer -9 @@ -55982,7 +56789,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -55992,7 +56799,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1667 this -899017902 +1704629915 1 this.numer 9 @@ -56001,7 +56808,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -56014,7 +56821,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1668 this -1402901037 +454325163 1 this.numer -1 @@ -56060,7 +56867,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1669 this -1879669069 +1822971466 1 this.numer 1 @@ -56079,7 +56886,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1668 this -1402901037 +454325163 1 this.numer -1 @@ -56088,7 +56895,7 @@ this.denom 1 1 return -1879669069 +1822971466 1 return.numer 1 @@ -56101,7 +56908,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1671 this -899017902 +1704629915 1 this.numer 9 @@ -56110,7 +56917,7 @@ this.denom 0 1 arg -1879669069 +1822971466 1 arg.numer 1 @@ -56133,7 +56940,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1672 this -2113595313 +1354003114 1 this.numer 9 @@ -56152,7 +56959,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1671 this -899017902 +1704629915 1 this.numer 9 @@ -56161,7 +56968,7 @@ this.denom 0 1 arg -1879669069 +1822971466 1 arg.numer 1 @@ -56170,7 +56977,7 @@ arg.denom 1 1 return -2113595313 +1354003114 1 return.numer 9 @@ -56183,7 +56990,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1667 this -899017902 +1704629915 1 this.numer 9 @@ -56192,7 +56999,7 @@ this.denom 0 1 arg -1402901037 +454325163 1 arg.numer -1 @@ -56201,7 +57008,7 @@ arg.denom 1 1 return -2113595313 +1354003114 1 return.numer 9 @@ -56214,7 +57021,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1673 this -2113595313 +1354003114 1 this.numer 9 @@ -56227,7 +57034,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1674 this -2113595313 +1354003114 1 this.numer 9 @@ -56240,7 +57047,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1674 this -2113595313 +1354003114 1 this.numer 9 @@ -56256,7 +57063,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1673 this -2113595313 +1354003114 1 this.numer 9 @@ -56265,7 +57072,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -56275,7 +57082,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1675 this -1334768446 +796667727 1 this.numer 2 @@ -56284,7 +57091,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -56297,7 +57104,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1676 this -1658075389 +200224114 1 this.numer 1 @@ -56320,7 +57127,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1677 this -1669420564 +825658265 1 this.numer -1 @@ -56339,7 +57146,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1676 this -1658075389 +200224114 1 this.numer 1 @@ -56348,7 +57155,7 @@ this.denom 0 1 return -1669420564 +825658265 1 return.numer -1 @@ -56361,7 +57168,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1678 this -1334768446 +796667727 1 this.numer 2 @@ -56370,7 +57177,7 @@ this.denom 1 1 arg -1669420564 +825658265 1 arg.numer -1 @@ -56393,7 +57200,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1679 this -1077571093 +388357135 1 this.numer -1 @@ -56412,7 +57219,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1678 this -1334768446 +796667727 1 this.numer 2 @@ -56421,7 +57228,7 @@ this.denom 1 1 arg -1669420564 +825658265 1 arg.numer -1 @@ -56430,7 +57237,7 @@ arg.denom 0 1 return -1077571093 +388357135 1 return.numer -1 @@ -56443,7 +57250,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1675 this -1334768446 +796667727 1 this.numer 2 @@ -56452,7 +57259,7 @@ this.denom 1 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -56461,7 +57268,7 @@ arg.denom 0 1 return -1077571093 +388357135 1 return.numer -1 @@ -56474,7 +57281,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1680 this -1077571093 +388357135 1 this.numer -1 @@ -56487,7 +57294,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1681 this -1077571093 +388357135 1 this.numer -1 @@ -56500,7 +57307,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1681 this -1077571093 +388357135 1 this.numer -1 @@ -56516,7 +57323,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1680 this -1077571093 +388357135 1 this.numer -1 @@ -56525,7 +57332,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -56535,7 +57342,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1682 this -1658075389 +200224114 1 this.numer 1 @@ -56544,7 +57351,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -56557,7 +57364,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1683 this -1334768446 +796667727 1 this.numer 2 @@ -56603,7 +57410,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1684 this -1007764900 +957465255 1 this.numer -2 @@ -56622,7 +57429,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1683 this -1334768446 +796667727 1 this.numer 2 @@ -56631,7 +57438,7 @@ this.denom 1 1 return -1007764900 +957465255 1 return.numer -2 @@ -56644,7 +57451,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1686 this -1658075389 +200224114 1 this.numer 1 @@ -56653,7 +57460,7 @@ this.denom 0 1 arg -1007764900 +957465255 1 arg.numer -2 @@ -56676,7 +57483,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1687 this -301150411 +1254344205 1 this.numer 1 @@ -56695,7 +57502,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1686 this -1658075389 +200224114 1 this.numer 1 @@ -56704,7 +57511,7 @@ this.denom 0 1 arg -1007764900 +957465255 1 arg.numer -2 @@ -56713,7 +57520,7 @@ arg.denom 1 1 return -301150411 +1254344205 1 return.numer 1 @@ -56726,7 +57533,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1682 this -1658075389 +200224114 1 this.numer 1 @@ -56735,7 +57542,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -56744,7 +57551,7 @@ arg.denom 1 1 return -301150411 +1254344205 1 return.numer 1 @@ -56757,7 +57564,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1688 this -301150411 +1254344205 1 this.numer 1 @@ -56770,7 +57577,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1689 this -301150411 +1254344205 1 this.numer 1 @@ -56783,7 +57590,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1689 this -301150411 +1254344205 1 this.numer 1 @@ -56799,7 +57606,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1688 this -301150411 +1254344205 1 this.numer 1 @@ -56808,7 +57615,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -56818,7 +57625,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1690 this -1334768446 +796667727 1 this.numer 2 @@ -56827,7 +57634,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -56840,7 +57647,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1691 this -1525259451 +1773283386 1 this.numer -1 @@ -56863,7 +57670,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1692 this -1963485345 +1336735375 1 this.numer 1 @@ -56882,7 +57689,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1691 this -1525259451 +1773283386 1 this.numer -1 @@ -56891,7 +57698,7 @@ this.denom 0 1 return -1963485345 +1336735375 1 return.numer 1 @@ -56904,7 +57711,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1693 this -1334768446 +796667727 1 this.numer 2 @@ -56913,7 +57720,7 @@ this.denom 1 1 arg -1963485345 +1336735375 1 arg.numer 1 @@ -56936,7 +57743,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1694 this -2064473613 +1984990929 1 this.numer 1 @@ -56955,7 +57762,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1693 this -1334768446 +796667727 1 this.numer 2 @@ -56964,7 +57771,7 @@ this.denom 1 1 arg -1963485345 +1336735375 1 arg.numer 1 @@ -56973,7 +57780,7 @@ arg.denom 0 1 return -2064473613 +1984990929 1 return.numer 1 @@ -56986,7 +57793,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1690 this -1334768446 +796667727 1 this.numer 2 @@ -56995,7 +57802,7 @@ this.denom 1 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -57004,7 +57811,7 @@ arg.denom 0 1 return -2064473613 +1984990929 1 return.numer 1 @@ -57017,7 +57824,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1695 this -2064473613 +1984990929 1 this.numer 1 @@ -57030,7 +57837,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1696 this -2064473613 +1984990929 1 this.numer 1 @@ -57043,7 +57850,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1696 this -2064473613 +1984990929 1 this.numer 1 @@ -57059,7 +57866,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1695 this -2064473613 +1984990929 1 this.numer 1 @@ -57068,7 +57875,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -57078,7 +57885,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1697 this -1525259451 +1773283386 1 this.numer -1 @@ -57087,7 +57894,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -57100,7 +57907,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1698 this -1334768446 +796667727 1 this.numer 2 @@ -57146,7 +57953,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1699 this -714729112 +1105423942 1 this.numer -2 @@ -57165,7 +57972,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1698 this -1334768446 +796667727 1 this.numer 2 @@ -57174,7 +57981,7 @@ this.denom 1 1 return -714729112 +1105423942 1 return.numer -2 @@ -57187,7 +57994,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1701 this -1525259451 +1773283386 1 this.numer -1 @@ -57196,7 +58003,7 @@ this.denom 0 1 arg -714729112 +1105423942 1 arg.numer -2 @@ -57219,7 +58026,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1702 this -1576147713 +365181913 1 this.numer -1 @@ -57238,7 +58045,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1701 this -1525259451 +1773283386 1 this.numer -1 @@ -57247,7 +58054,7 @@ this.denom 0 1 arg -714729112 +1105423942 1 arg.numer -2 @@ -57256,7 +58063,7 @@ arg.denom 1 1 return -1576147713 +365181913 1 return.numer -1 @@ -57269,7 +58076,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1697 this -1525259451 +1773283386 1 this.numer -1 @@ -57278,7 +58085,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -57287,7 +58094,7 @@ arg.denom 1 1 return -1576147713 +365181913 1 return.numer -1 @@ -57300,7 +58107,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1703 this -1576147713 +365181913 1 this.numer -1 @@ -57313,7 +58120,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1704 this -1576147713 +365181913 1 this.numer -1 @@ -57326,7 +58133,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1704 this -1576147713 +365181913 1 this.numer -1 @@ -57342,7 +58149,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1703 this -1576147713 +365181913 1 this.numer -1 @@ -57351,7 +58158,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -57361,7 +58168,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1705 this -1334768446 +796667727 1 this.numer 2 @@ -57370,7 +58177,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -57383,7 +58190,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1706 this -523298718 +581318631 1 this.numer 100 @@ -57406,7 +58213,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1707 this -1103826646 +1031061344 1 this.numer -100 @@ -57425,7 +58232,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1706 this -523298718 +581318631 1 this.numer 100 @@ -57434,7 +58241,7 @@ this.denom 0 1 return -1103826646 +1031061344 1 return.numer -100 @@ -57447,7 +58254,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1708 this -1334768446 +796667727 1 this.numer 2 @@ -57456,7 +58263,7 @@ this.denom 1 1 arg -1103826646 +1031061344 1 arg.numer -100 @@ -57479,7 +58286,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1709 this -2050696536 +1327536153 1 this.numer -100 @@ -57498,7 +58305,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1708 this -1334768446 +796667727 1 this.numer 2 @@ -57507,7 +58314,7 @@ this.denom 1 1 arg -1103826646 +1031061344 1 arg.numer -100 @@ -57516,7 +58323,7 @@ arg.denom 0 1 return -2050696536 +1327536153 1 return.numer -100 @@ -57529,7 +58336,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1705 this -1334768446 +796667727 1 this.numer 2 @@ -57538,7 +58345,7 @@ this.denom 1 1 arg -523298718 +581318631 1 arg.numer 100 @@ -57547,7 +58354,7 @@ arg.denom 0 1 return -2050696536 +1327536153 1 return.numer -100 @@ -57560,7 +58367,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1710 this -2050696536 +1327536153 1 this.numer -100 @@ -57573,7 +58380,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1711 this -2050696536 +1327536153 1 this.numer -100 @@ -57586,7 +58393,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1711 this -2050696536 +1327536153 1 this.numer -100 @@ -57602,7 +58409,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1710 this -2050696536 +1327536153 1 this.numer -100 @@ -57611,7 +58418,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -57621,7 +58428,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1712 this -523298718 +581318631 1 this.numer 100 @@ -57630,7 +58437,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -57643,7 +58450,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1713 this -1334768446 +796667727 1 this.numer 2 @@ -57689,7 +58496,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1714 this -1091629849 +367746789 1 this.numer -2 @@ -57708,7 +58515,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1713 this -1334768446 +796667727 1 this.numer 2 @@ -57717,7 +58524,7 @@ this.denom 1 1 return -1091629849 +367746789 1 return.numer -2 @@ -57730,7 +58537,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1716 this -523298718 +581318631 1 this.numer 100 @@ -57739,7 +58546,7 @@ this.denom 0 1 arg -1091629849 +367746789 1 arg.numer -2 @@ -57762,7 +58569,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1717 this -1070075822 +558216562 1 this.numer 100 @@ -57781,7 +58588,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1716 this -523298718 +581318631 1 this.numer 100 @@ -57790,7 +58597,7 @@ this.denom 0 1 arg -1091629849 +367746789 1 arg.numer -2 @@ -57799,7 +58606,7 @@ arg.denom 1 1 return -1070075822 +558216562 1 return.numer 100 @@ -57812,7 +58619,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1712 this -523298718 +581318631 1 this.numer 100 @@ -57821,7 +58628,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -57830,7 +58637,7 @@ arg.denom 1 1 return -1070075822 +558216562 1 return.numer 100 @@ -57843,7 +58650,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1718 this -1070075822 +558216562 1 this.numer 100 @@ -57856,7 +58663,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1719 this -1070075822 +558216562 1 this.numer 100 @@ -57869,7 +58676,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1719 this -1070075822 +558216562 1 this.numer 100 @@ -57885,7 +58692,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1718 this -1070075822 +558216562 1 this.numer 100 @@ -57894,7 +58701,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -57904,7 +58711,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1720 this -1334768446 +796667727 1 this.numer 2 @@ -57913,7 +58720,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -57926,7 +58733,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1721 this -1136018961 +1877453512 1 this.numer 2 @@ -57949,7 +58756,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1722 this -1736280376 +961712517 1 this.numer -2 @@ -57968,7 +58775,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1721 this -1136018961 +1877453512 1 this.numer 2 @@ -57977,7 +58784,7 @@ this.denom 0 1 return -1736280376 +961712517 1 return.numer -2 @@ -57990,7 +58797,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1723 this -1334768446 +796667727 1 this.numer 2 @@ -57999,7 +58806,7 @@ this.denom 1 1 arg -1736280376 +961712517 1 arg.numer -2 @@ -58022,7 +58829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1724 this -1656483996 +1928931046 1 this.numer -2 @@ -58041,7 +58848,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1723 this -1334768446 +796667727 1 this.numer 2 @@ -58050,7 +58857,7 @@ this.denom 1 1 arg -1736280376 +961712517 1 arg.numer -2 @@ -58059,7 +58866,7 @@ arg.denom 0 1 return -1656483996 +1928931046 1 return.numer -2 @@ -58072,7 +58879,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1720 this -1334768446 +796667727 1 this.numer 2 @@ -58081,7 +58888,7 @@ this.denom 1 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -58090,7 +58897,7 @@ arg.denom 0 1 return -1656483996 +1928931046 1 return.numer -2 @@ -58103,7 +58910,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1725 this -1656483996 +1928931046 1 this.numer -2 @@ -58116,7 +58923,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1726 this -1656483996 +1928931046 1 this.numer -2 @@ -58129,7 +58936,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1726 this -1656483996 +1928931046 1 this.numer -2 @@ -58145,7 +58952,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1725 this -1656483996 +1928931046 1 this.numer -2 @@ -58154,7 +58961,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -58164,7 +58971,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1727 this -1136018961 +1877453512 1 this.numer 2 @@ -58173,7 +58980,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -58186,7 +58993,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1728 this -1334768446 +796667727 1 this.numer 2 @@ -58232,7 +59039,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1729 this -548521064 +1034568234 1 this.numer -2 @@ -58251,7 +59058,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1728 this -1334768446 +796667727 1 this.numer 2 @@ -58260,7 +59067,7 @@ this.denom 1 1 return -548521064 +1034568234 1 return.numer -2 @@ -58273,7 +59080,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1731 this -1136018961 +1877453512 1 this.numer 2 @@ -58282,7 +59089,7 @@ this.denom 0 1 arg -548521064 +1034568234 1 arg.numer -2 @@ -58305,7 +59112,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1732 this -1993709724 +835227336 1 this.numer 2 @@ -58324,7 +59131,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1731 this -1136018961 +1877453512 1 this.numer 2 @@ -58333,7 +59140,7 @@ this.denom 0 1 arg -548521064 +1034568234 1 arg.numer -2 @@ -58342,7 +59149,7 @@ arg.denom 1 1 return -1993709724 +835227336 1 return.numer 2 @@ -58355,7 +59162,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1727 this -1136018961 +1877453512 1 this.numer 2 @@ -58364,7 +59171,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -58373,7 +59180,7 @@ arg.denom 1 1 return -1993709724 +835227336 1 return.numer 2 @@ -58386,7 +59193,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1733 this -1993709724 +835227336 1 this.numer 2 @@ -58399,7 +59206,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1734 this -1993709724 +835227336 1 this.numer 2 @@ -58412,7 +59219,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1734 this -1993709724 +835227336 1 this.numer 2 @@ -58428,7 +59235,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1733 this -1993709724 +835227336 1 this.numer 2 @@ -58437,7 +59244,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -58447,7 +59254,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1735 this -1334768446 +796667727 1 this.numer 2 @@ -58456,7 +59263,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -58469,7 +59276,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1736 this -1941055697 +487694075 1 this.numer -2 @@ -58492,7 +59299,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1737 this -1091987127 +482082765 1 this.numer 2 @@ -58511,7 +59318,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1736 this -1941055697 +487694075 1 this.numer -2 @@ -58520,7 +59327,7 @@ this.denom 0 1 return -1091987127 +482082765 1 return.numer 2 @@ -58533,7 +59340,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1738 this -1334768446 +796667727 1 this.numer 2 @@ -58542,7 +59349,7 @@ this.denom 1 1 arg -1091987127 +482082765 1 arg.numer 2 @@ -58565,7 +59372,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1739 this -632396227 +667821226 1 this.numer 2 @@ -58584,7 +59391,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1738 this -1334768446 +796667727 1 this.numer 2 @@ -58593,7 +59400,7 @@ this.denom 1 1 arg -1091987127 +482082765 1 arg.numer 2 @@ -58602,7 +59409,7 @@ arg.denom 0 1 return -632396227 +667821226 1 return.numer 2 @@ -58615,7 +59422,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1735 this -1334768446 +796667727 1 this.numer 2 @@ -58624,7 +59431,7 @@ this.denom 1 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -58633,7 +59440,7 @@ arg.denom 0 1 return -632396227 +667821226 1 return.numer 2 @@ -58646,7 +59453,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1740 this -632396227 +667821226 1 this.numer 2 @@ -58659,7 +59466,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1741 this -632396227 +667821226 1 this.numer 2 @@ -58672,7 +59479,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1741 this -632396227 +667821226 1 this.numer 2 @@ -58688,7 +59495,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1740 this -632396227 +667821226 1 this.numer 2 @@ -58697,7 +59504,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -58707,7 +59514,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1742 this -1941055697 +487694075 1 this.numer -2 @@ -58716,7 +59523,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -58729,7 +59536,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1743 this -1334768446 +796667727 1 this.numer 2 @@ -58775,7 +59582,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1744 this -786818186 +1209702763 1 this.numer -2 @@ -58794,7 +59601,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1743 this -1334768446 +796667727 1 this.numer 2 @@ -58803,7 +59610,7 @@ this.denom 1 1 return -786818186 +1209702763 1 return.numer -2 @@ -58816,7 +59623,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1746 this -1941055697 +487694075 1 this.numer -2 @@ -58825,7 +59632,7 @@ this.denom 0 1 arg -786818186 +1209702763 1 arg.numer -2 @@ -58848,7 +59655,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1747 this -1996437523 +1028780142 1 this.numer -2 @@ -58867,7 +59674,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1746 this -1941055697 +487694075 1 this.numer -2 @@ -58876,7 +59683,7 @@ this.denom 0 1 arg -786818186 +1209702763 1 arg.numer -2 @@ -58885,7 +59692,7 @@ arg.denom 1 1 return -1996437523 +1028780142 1 return.numer -2 @@ -58898,7 +59705,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1742 this -1941055697 +487694075 1 this.numer -2 @@ -58907,7 +59714,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -58916,7 +59723,7 @@ arg.denom 1 1 return -1996437523 +1028780142 1 return.numer -2 @@ -58929,7 +59736,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1748 this -1996437523 +1028780142 1 this.numer -2 @@ -58942,7 +59749,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1749 this -1996437523 +1028780142 1 this.numer -2 @@ -58955,7 +59762,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1749 this -1996437523 +1028780142 1 this.numer -2 @@ -58971,7 +59778,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1748 this -1996437523 +1028780142 1 this.numer -2 @@ -58980,7 +59787,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -58990,7 +59797,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1750 this -1334768446 +796667727 1 this.numer 2 @@ -58999,7 +59806,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -59012,7 +59819,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1751 this -899017902 +1704629915 1 this.numer 9 @@ -59035,7 +59842,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1752 this -1840948333 +2128029086 1 this.numer -9 @@ -59054,7 +59861,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1751 this -899017902 +1704629915 1 this.numer 9 @@ -59063,7 +59870,7 @@ this.denom 0 1 return -1840948333 +2128029086 1 return.numer -9 @@ -59076,7 +59883,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1753 this -1334768446 +796667727 1 this.numer 2 @@ -59085,7 +59892,7 @@ this.denom 1 1 arg -1840948333 +2128029086 1 arg.numer -9 @@ -59108,7 +59915,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1754 this -2021730402 +686466458 1 this.numer -9 @@ -59127,7 +59934,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1753 this -1334768446 +796667727 1 this.numer 2 @@ -59136,7 +59943,7 @@ this.denom 1 1 arg -1840948333 +2128029086 1 arg.numer -9 @@ -59145,7 +59952,7 @@ arg.denom 0 1 return -2021730402 +686466458 1 return.numer -9 @@ -59158,7 +59965,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1750 this -1334768446 +796667727 1 this.numer 2 @@ -59167,7 +59974,7 @@ this.denom 1 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -59176,7 +59983,7 @@ arg.denom 0 1 return -2021730402 +686466458 1 return.numer -9 @@ -59189,7 +59996,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1755 this -2021730402 +686466458 1 this.numer -9 @@ -59202,7 +60009,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1756 this -2021730402 +686466458 1 this.numer -9 @@ -59215,7 +60022,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1756 this -2021730402 +686466458 1 this.numer -9 @@ -59231,7 +60038,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1755 this -2021730402 +686466458 1 this.numer -9 @@ -59240,7 +60047,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -59250,7 +60057,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1757 this -899017902 +1704629915 1 this.numer 9 @@ -59259,7 +60066,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -59272,7 +60079,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1758 this -1334768446 +796667727 1 this.numer 2 @@ -59318,7 +60125,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1759 this -1736603580 +875016237 1 this.numer -2 @@ -59337,7 +60144,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1758 this -1334768446 +796667727 1 this.numer 2 @@ -59346,7 +60153,7 @@ this.denom 1 1 return -1736603580 +875016237 1 return.numer -2 @@ -59359,7 +60166,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1761 this -899017902 +1704629915 1 this.numer 9 @@ -59368,7 +60175,7 @@ this.denom 0 1 arg -1736603580 +875016237 1 arg.numer -2 @@ -59391,7 +60198,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1762 this -646122683 +105374791 1 this.numer 9 @@ -59410,7 +60217,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1761 this -899017902 +1704629915 1 this.numer 9 @@ -59419,7 +60226,7 @@ this.denom 0 1 arg -1736603580 +875016237 1 arg.numer -2 @@ -59428,7 +60235,7 @@ arg.denom 1 1 return -646122683 +105374791 1 return.numer 9 @@ -59441,7 +60248,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1757 this -899017902 +1704629915 1 this.numer 9 @@ -59450,7 +60257,7 @@ this.denom 0 1 arg -1334768446 +796667727 1 arg.numer 2 @@ -59459,7 +60266,7 @@ arg.denom 1 1 return -646122683 +105374791 1 return.numer 9 @@ -59472,7 +60279,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1763 this -646122683 +105374791 1 this.numer 9 @@ -59485,7 +60292,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1764 this -646122683 +105374791 1 this.numer 9 @@ -59498,7 +60305,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1764 this -646122683 +105374791 1 this.numer 9 @@ -59514,7 +60321,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1763 this -646122683 +105374791 1 this.numer 9 @@ -59523,7 +60330,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -59533,7 +60340,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1765 this -150605671 +251210093 1 this.numer 1 @@ -59542,7 +60349,7 @@ this.denom 2 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -59555,7 +60362,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1766 this -1658075389 +200224114 1 this.numer 1 @@ -59578,7 +60385,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1767 this -1706613949 +1107024580 1 this.numer -1 @@ -59597,7 +60404,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1766 this -1658075389 +200224114 1 this.numer 1 @@ -59606,7 +60413,7 @@ this.denom 0 1 return -1706613949 +1107024580 1 return.numer -1 @@ -59619,7 +60426,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1768 this -150605671 +251210093 1 this.numer 1 @@ -59628,7 +60435,7 @@ this.denom 2 1 arg -1706613949 +1107024580 1 arg.numer -1 @@ -59651,7 +60458,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1769 this -1269051511 +1010856212 1 this.numer -2 @@ -59670,7 +60477,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1768 this -150605671 +251210093 1 this.numer 1 @@ -59679,7 +60486,7 @@ this.denom 2 1 arg -1706613949 +1107024580 1 arg.numer -1 @@ -59688,7 +60495,7 @@ arg.denom 0 1 return -1269051511 +1010856212 1 return.numer -2 @@ -59701,7 +60508,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1765 this -150605671 +251210093 1 this.numer 1 @@ -59710,7 +60517,7 @@ this.denom 2 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -59719,7 +60526,7 @@ arg.denom 0 1 return -1269051511 +1010856212 1 return.numer -2 @@ -59732,7 +60539,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1770 this -1269051511 +1010856212 1 this.numer -2 @@ -59745,7 +60552,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1771 this -1269051511 +1010856212 1 this.numer -2 @@ -59758,7 +60565,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1771 this -1269051511 +1010856212 1 this.numer -2 @@ -59774,7 +60581,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1770 this -1269051511 +1010856212 1 this.numer -2 @@ -59783,7 +60590,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -59793,7 +60600,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1772 this -1658075389 +200224114 1 this.numer 1 @@ -59802,7 +60609,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -59815,7 +60622,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1773 this -150605671 +251210093 1 this.numer 1 @@ -59861,7 +60668,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1774 this -141163373 +904861801 1 this.numer -1 @@ -59880,7 +60687,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1773 this -150605671 +251210093 1 this.numer 1 @@ -59889,7 +60696,7 @@ this.denom 2 1 return -141163373 +904861801 1 return.numer -1 @@ -59902,7 +60709,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1776 this -1658075389 +200224114 1 this.numer 1 @@ -59911,7 +60718,7 @@ this.denom 0 1 arg -141163373 +904861801 1 arg.numer -1 @@ -59934,7 +60741,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1777 this -1710863723 +204715855 1 this.numer 2 @@ -59953,7 +60760,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1776 this -1658075389 +200224114 1 this.numer 1 @@ -59962,7 +60769,7 @@ this.denom 0 1 arg -141163373 +904861801 1 arg.numer -1 @@ -59971,7 +60778,7 @@ arg.denom 2 1 return -1710863723 +204715855 1 return.numer 2 @@ -59984,7 +60791,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1772 this -1658075389 +200224114 1 this.numer 1 @@ -59993,7 +60800,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -60002,7 +60809,7 @@ arg.denom 2 1 return -1710863723 +204715855 1 return.numer 2 @@ -60015,7 +60822,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1778 this -1710863723 +204715855 1 this.numer 2 @@ -60028,7 +60835,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1779 this -1710863723 +204715855 1 this.numer 2 @@ -60041,7 +60848,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1779 this -1710863723 +204715855 1 this.numer 2 @@ -60057,7 +60864,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1778 this -1710863723 +204715855 1 this.numer 2 @@ -60066,7 +60873,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -60076,7 +60883,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1780 this -150605671 +251210093 1 this.numer 1 @@ -60085,7 +60892,7 @@ this.denom 2 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -60098,7 +60905,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1781 this -1525259451 +1773283386 1 this.numer -1 @@ -60121,7 +60928,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1782 this -1828042778 +318857719 1 this.numer 1 @@ -60140,7 +60947,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1781 this -1525259451 +1773283386 1 this.numer -1 @@ -60149,7 +60956,7 @@ this.denom 0 1 return -1828042778 +318857719 1 return.numer 1 @@ -60162,7 +60969,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1783 this -150605671 +251210093 1 this.numer 1 @@ -60171,7 +60978,7 @@ this.denom 2 1 arg -1828042778 +318857719 1 arg.numer 1 @@ -60194,7 +61001,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1784 this -2013915864 +745962066 1 this.numer 2 @@ -60213,7 +61020,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1783 this -150605671 +251210093 1 this.numer 1 @@ -60222,7 +61029,7 @@ this.denom 2 1 arg -1828042778 +318857719 1 arg.numer 1 @@ -60231,7 +61038,7 @@ arg.denom 0 1 return -2013915864 +745962066 1 return.numer 2 @@ -60244,7 +61051,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1780 this -150605671 +251210093 1 this.numer 1 @@ -60253,7 +61060,7 @@ this.denom 2 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -60262,7 +61069,7 @@ arg.denom 0 1 return -2013915864 +745962066 1 return.numer 2 @@ -60275,7 +61082,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1785 this -2013915864 +745962066 1 this.numer 2 @@ -60288,7 +61095,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1786 this -2013915864 +745962066 1 this.numer 2 @@ -60301,7 +61108,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1786 this -2013915864 +745962066 1 this.numer 2 @@ -60317,7 +61124,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1785 this -2013915864 +745962066 1 this.numer 2 @@ -60326,7 +61133,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -60336,7 +61143,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1787 this -1525259451 +1773283386 1 this.numer -1 @@ -60345,7 +61152,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -60358,7 +61165,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1788 this -150605671 +251210093 1 this.numer 1 @@ -60404,7 +61211,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1789 this -1394165881 +1637290981 1 this.numer -1 @@ -60423,7 +61230,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1788 this -150605671 +251210093 1 this.numer 1 @@ -60432,7 +61239,7 @@ this.denom 2 1 return -1394165881 +1637290981 1 return.numer -1 @@ -60445,7 +61252,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1791 this -1525259451 +1773283386 1 this.numer -1 @@ -60454,7 +61261,7 @@ this.denom 0 1 arg -1394165881 +1637290981 1 arg.numer -1 @@ -60477,7 +61284,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1792 this -551889550 +1888442711 1 this.numer -2 @@ -60496,7 +61303,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1791 this -1525259451 +1773283386 1 this.numer -1 @@ -60505,7 +61312,7 @@ this.denom 0 1 arg -1394165881 +1637290981 1 arg.numer -1 @@ -60514,7 +61321,7 @@ arg.denom 2 1 return -551889550 +1888442711 1 return.numer -2 @@ -60527,7 +61334,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1787 this -1525259451 +1773283386 1 this.numer -1 @@ -60536,7 +61343,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -60545,7 +61352,7 @@ arg.denom 2 1 return -551889550 +1888442711 1 return.numer -2 @@ -60558,7 +61365,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1793 this -551889550 +1888442711 1 this.numer -2 @@ -60571,7 +61378,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1794 this -551889550 +1888442711 1 this.numer -2 @@ -60584,7 +61391,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1794 this -551889550 +1888442711 1 this.numer -2 @@ -60600,7 +61407,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1793 this -551889550 +1888442711 1 this.numer -2 @@ -60609,7 +61416,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -60619,7 +61426,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1795 this -150605671 +251210093 1 this.numer 1 @@ -60628,7 +61435,7 @@ this.denom 2 1 arg -523298718 +581318631 1 arg.numer 100 @@ -60641,7 +61448,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1796 this -523298718 +581318631 1 this.numer 100 @@ -60664,7 +61471,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1797 this -625795457 +1754894440 1 this.numer -100 @@ -60683,7 +61490,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1796 this -523298718 +581318631 1 this.numer 100 @@ -60692,7 +61499,7 @@ this.denom 0 1 return -625795457 +1754894440 1 return.numer -100 @@ -60705,7 +61512,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1798 this -150605671 +251210093 1 this.numer 1 @@ -60714,7 +61521,7 @@ this.denom 2 1 arg -625795457 +1754894440 1 arg.numer -100 @@ -60737,7 +61544,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1799 this -1516826440 +1998767043 1 this.numer -200 @@ -60756,7 +61563,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1798 this -150605671 +251210093 1 this.numer 1 @@ -60765,7 +61572,7 @@ this.denom 2 1 arg -625795457 +1754894440 1 arg.numer -100 @@ -60774,7 +61581,7 @@ arg.denom 0 1 return -1516826440 +1998767043 1 return.numer -200 @@ -60787,7 +61594,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1795 this -150605671 +251210093 1 this.numer 1 @@ -60796,7 +61603,7 @@ this.denom 2 1 arg -523298718 +581318631 1 arg.numer 100 @@ -60805,7 +61612,7 @@ arg.denom 0 1 return -1516826440 +1998767043 1 return.numer -200 @@ -60818,7 +61625,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1800 this -1516826440 +1998767043 1 this.numer -200 @@ -60831,7 +61638,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1801 this -1516826440 +1998767043 1 this.numer -200 @@ -60844,7 +61651,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1801 this -1516826440 +1998767043 1 this.numer -200 @@ -60860,7 +61667,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1800 this -1516826440 +1998767043 1 this.numer -200 @@ -60869,7 +61676,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -60879,7 +61686,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1802 this -523298718 +581318631 1 this.numer 100 @@ -60888,7 +61695,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -60901,7 +61708,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1803 this -150605671 +251210093 1 this.numer 1 @@ -60947,7 +61754,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1804 this -523603543 +787738361 1 this.numer -1 @@ -60966,7 +61773,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1803 this -150605671 +251210093 1 this.numer 1 @@ -60975,7 +61782,7 @@ this.denom 2 1 return -523603543 +787738361 1 return.numer -1 @@ -60988,7 +61795,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1806 this -523298718 +581318631 1 this.numer 100 @@ -60997,7 +61804,7 @@ this.denom 0 1 arg -523603543 +787738361 1 arg.numer -1 @@ -61020,7 +61827,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1807 this -1964245442 +607932305 1 this.numer 200 @@ -61039,7 +61846,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1806 this -523298718 +581318631 1 this.numer 100 @@ -61048,7 +61855,7 @@ this.denom 0 1 arg -523603543 +787738361 1 arg.numer -1 @@ -61057,7 +61864,7 @@ arg.denom 2 1 return -1964245442 +607932305 1 return.numer 200 @@ -61070,7 +61877,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1802 this -523298718 +581318631 1 this.numer 100 @@ -61079,7 +61886,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -61088,7 +61895,7 @@ arg.denom 2 1 return -1964245442 +607932305 1 return.numer 200 @@ -61101,7 +61908,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1808 this -1964245442 +607932305 1 this.numer 200 @@ -61114,7 +61921,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1809 this -1964245442 +607932305 1 this.numer 200 @@ -61127,7 +61934,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1809 this -1964245442 +607932305 1 this.numer 200 @@ -61143,7 +61950,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1808 this -1964245442 +607932305 1 this.numer 200 @@ -61152,7 +61959,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -61162,7 +61969,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1810 this -150605671 +251210093 1 this.numer 1 @@ -61171,7 +61978,7 @@ this.denom 2 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -61184,7 +61991,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1811 this -1136018961 +1877453512 1 this.numer 2 @@ -61207,7 +62014,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1812 this -1954522010 +168366 1 this.numer -2 @@ -61226,7 +62033,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1811 this -1136018961 +1877453512 1 this.numer 2 @@ -61235,7 +62042,7 @@ this.denom 0 1 return -1954522010 +168366 1 return.numer -2 @@ -61248,7 +62055,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1813 this -150605671 +251210093 1 this.numer 1 @@ -61257,7 +62064,7 @@ this.denom 2 1 arg -1954522010 +168366 1 arg.numer -2 @@ -61280,7 +62087,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1814 this -1741557558 +1642030774 1 this.numer -4 @@ -61299,7 +62106,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1813 this -150605671 +251210093 1 this.numer 1 @@ -61308,7 +62115,7 @@ this.denom 2 1 arg -1954522010 +168366 1 arg.numer -2 @@ -61317,7 +62124,7 @@ arg.denom 0 1 return -1741557558 +1642030774 1 return.numer -4 @@ -61330,7 +62137,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1810 this -150605671 +251210093 1 this.numer 1 @@ -61339,7 +62146,7 @@ this.denom 2 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -61348,7 +62155,7 @@ arg.denom 0 1 return -1741557558 +1642030774 1 return.numer -4 @@ -61361,7 +62168,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1815 this -1741557558 +1642030774 1 this.numer -4 @@ -61374,7 +62181,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1816 this -1741557558 +1642030774 1 this.numer -4 @@ -61387,7 +62194,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1816 this -1741557558 +1642030774 1 this.numer -4 @@ -61403,7 +62210,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1815 this -1741557558 +1642030774 1 this.numer -4 @@ -61412,7 +62219,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -61422,7 +62229,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1817 this -1136018961 +1877453512 1 this.numer 2 @@ -61431,7 +62238,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -61444,7 +62251,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1818 this -150605671 +251210093 1 this.numer 1 @@ -61490,7 +62297,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1819 this -155768696 +1357563986 1 this.numer -1 @@ -61509,7 +62316,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1818 this -150605671 +251210093 1 this.numer 1 @@ -61518,7 +62325,7 @@ this.denom 2 1 return -155768696 +1357563986 1 return.numer -1 @@ -61531,7 +62338,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1821 this -1136018961 +1877453512 1 this.numer 2 @@ -61540,7 +62347,7 @@ this.denom 0 1 arg -155768696 +1357563986 1 arg.numer -1 @@ -61563,7 +62370,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1822 this -221907979 +384587033 1 this.numer 4 @@ -61582,7 +62389,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1821 this -1136018961 +1877453512 1 this.numer 2 @@ -61591,7 +62398,7 @@ this.denom 0 1 arg -155768696 +1357563986 1 arg.numer -1 @@ -61600,7 +62407,7 @@ arg.denom 2 1 return -221907979 +384587033 1 return.numer 4 @@ -61613,7 +62420,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1817 this -1136018961 +1877453512 1 this.numer 2 @@ -61622,7 +62429,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -61631,7 +62438,7 @@ arg.denom 2 1 return -221907979 +384587033 1 return.numer 4 @@ -61644,7 +62451,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1823 this -221907979 +384587033 1 this.numer 4 @@ -61657,7 +62464,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1824 this -221907979 +384587033 1 this.numer 4 @@ -61670,7 +62477,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1824 this -221907979 +384587033 1 this.numer 4 @@ -61686,7 +62493,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1823 this -221907979 +384587033 1 this.numer 4 @@ -61695,7 +62502,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -61705,7 +62512,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1825 this -150605671 +251210093 1 this.numer 1 @@ -61714,7 +62521,7 @@ this.denom 2 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -61727,7 +62534,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1826 this -1941055697 +487694075 1 this.numer -2 @@ -61750,7 +62557,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1827 this -1575791861 +49752459 1 this.numer 2 @@ -61769,7 +62576,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1826 this -1941055697 +487694075 1 this.numer -2 @@ -61778,7 +62585,7 @@ this.denom 0 1 return -1575791861 +49752459 1 return.numer 2 @@ -61791,7 +62598,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1828 this -150605671 +251210093 1 this.numer 1 @@ -61800,7 +62607,7 @@ this.denom 2 1 arg -1575791861 +49752459 1 arg.numer 2 @@ -61823,7 +62630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1829 this -1565473023 +411506101 1 this.numer 4 @@ -61842,7 +62649,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1828 this -150605671 +251210093 1 this.numer 1 @@ -61851,7 +62658,7 @@ this.denom 2 1 arg -1575791861 +49752459 1 arg.numer 2 @@ -61860,7 +62667,7 @@ arg.denom 0 1 return -1565473023 +411506101 1 return.numer 4 @@ -61873,7 +62680,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1825 this -150605671 +251210093 1 this.numer 1 @@ -61882,7 +62689,7 @@ this.denom 2 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -61891,7 +62698,7 @@ arg.denom 0 1 return -1565473023 +411506101 1 return.numer 4 @@ -61904,7 +62711,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1830 this -1565473023 +411506101 1 this.numer 4 @@ -61917,7 +62724,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1831 this -1565473023 +411506101 1 this.numer 4 @@ -61930,7 +62737,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1831 this -1565473023 +411506101 1 this.numer 4 @@ -61946,7 +62753,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1830 this -1565473023 +411506101 1 this.numer 4 @@ -61955,7 +62762,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -61965,7 +62772,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1832 this -1941055697 +487694075 1 this.numer -2 @@ -61974,7 +62781,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -61987,7 +62794,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1833 this -150605671 +251210093 1 this.numer 1 @@ -62033,7 +62840,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1834 this -2082938164 +514455215 1 this.numer -1 @@ -62052,7 +62859,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1833 this -150605671 +251210093 1 this.numer 1 @@ -62061,7 +62868,7 @@ this.denom 2 1 return -2082938164 +514455215 1 return.numer -1 @@ -62074,7 +62881,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1836 this -1941055697 +487694075 1 this.numer -2 @@ -62083,7 +62890,7 @@ this.denom 0 1 arg -2082938164 +514455215 1 arg.numer -1 @@ -62106,7 +62913,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1837 this -1810792601 +1780034814 1 this.numer -4 @@ -62125,7 +62932,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1836 this -1941055697 +487694075 1 this.numer -2 @@ -62134,7 +62941,7 @@ this.denom 0 1 arg -2082938164 +514455215 1 arg.numer -1 @@ -62143,7 +62950,7 @@ arg.denom 2 1 return -1810792601 +1780034814 1 return.numer -4 @@ -62156,7 +62963,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1832 this -1941055697 +487694075 1 this.numer -2 @@ -62165,7 +62972,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -62174,7 +62981,7 @@ arg.denom 2 1 return -1810792601 +1780034814 1 return.numer -4 @@ -62187,7 +62994,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1838 this -1810792601 +1780034814 1 this.numer -4 @@ -62200,7 +63007,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1839 this -1810792601 +1780034814 1 this.numer -4 @@ -62213,7 +63020,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1839 this -1810792601 +1780034814 1 this.numer -4 @@ -62229,7 +63036,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1838 this -1810792601 +1780034814 1 this.numer -4 @@ -62238,7 +63045,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -62248,7 +63055,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1840 this -150605671 +251210093 1 this.numer 1 @@ -62257,7 +63064,7 @@ this.denom 2 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -62270,7 +63077,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1841 this -899017902 +1704629915 1 this.numer 9 @@ -62293,7 +63100,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1842 this -2000483370 +1360657223 1 this.numer -9 @@ -62312,7 +63119,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1841 this -899017902 +1704629915 1 this.numer 9 @@ -62321,7 +63128,7 @@ this.denom 0 1 return -2000483370 +1360657223 1 return.numer -9 @@ -62334,7 +63141,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1843 this -150605671 +251210093 1 this.numer 1 @@ -62343,7 +63150,7 @@ this.denom 2 1 arg -2000483370 +1360657223 1 arg.numer -9 @@ -62366,7 +63173,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1844 this -1120022158 +1905485420 1 this.numer -18 @@ -62385,7 +63192,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1843 this -150605671 +251210093 1 this.numer 1 @@ -62394,7 +63201,7 @@ this.denom 2 1 arg -2000483370 +1360657223 1 arg.numer -9 @@ -62403,7 +63210,7 @@ arg.denom 0 1 return -1120022158 +1905485420 1 return.numer -18 @@ -62416,7 +63223,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1840 this -150605671 +251210093 1 this.numer 1 @@ -62425,7 +63232,7 @@ this.denom 2 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -62434,7 +63241,7 @@ arg.denom 0 1 return -1120022158 +1905485420 1 return.numer -18 @@ -62447,7 +63254,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1845 this -1120022158 +1905485420 1 this.numer -18 @@ -62460,7 +63267,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1846 this -1120022158 +1905485420 1 this.numer -18 @@ -62473,7 +63280,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1846 this -1120022158 +1905485420 1 this.numer -18 @@ -62489,7 +63296,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1845 this -1120022158 +1905485420 1 this.numer -18 @@ -62498,7 +63305,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -62508,7 +63315,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1847 this -899017902 +1704629915 1 this.numer 9 @@ -62517,7 +63324,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -62530,7 +63337,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1848 this -150605671 +251210093 1 this.numer 1 @@ -62576,7 +63383,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1849 this -1518243551 +551479935 1 this.numer -1 @@ -62595,7 +63402,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1848 this -150605671 +251210093 1 this.numer 1 @@ -62604,7 +63411,7 @@ this.denom 2 1 return -1518243551 +551479935 1 return.numer -1 @@ -62617,7 +63424,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1851 this -899017902 +1704629915 1 this.numer 9 @@ -62626,7 +63433,7 @@ this.denom 0 1 arg -1518243551 +551479935 1 arg.numer -1 @@ -62649,7 +63456,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1852 this -718668003 +58940486 1 this.numer 18 @@ -62668,7 +63475,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1851 this -899017902 +1704629915 1 this.numer 9 @@ -62677,7 +63484,7 @@ this.denom 0 1 arg -1518243551 +551479935 1 arg.numer -1 @@ -62686,7 +63493,7 @@ arg.denom 2 1 return -718668003 +58940486 1 return.numer 18 @@ -62699,7 +63506,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1847 this -899017902 +1704629915 1 this.numer 9 @@ -62708,7 +63515,7 @@ this.denom 0 1 arg -150605671 +251210093 1 arg.numer 1 @@ -62717,7 +63524,7 @@ arg.denom 2 1 return -718668003 +58940486 1 return.numer 18 @@ -62730,7 +63537,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1853 this -718668003 +58940486 1 this.numer 18 @@ -62743,7 +63550,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1854 this -718668003 +58940486 1 this.numer 18 @@ -62756,7 +63563,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1854 this -718668003 +58940486 1 this.numer 18 @@ -62772,7 +63579,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1853 this -718668003 +58940486 1 this.numer 18 @@ -62781,7 +63588,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -62791,7 +63598,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1855 this -434174366 +2025221430 1 this.numer -1 @@ -62800,7 +63607,7 @@ this.denom 2 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -62813,7 +63620,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1856 this -1658075389 +200224114 1 this.numer 1 @@ -62836,7 +63643,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1857 this -1205095693 +501107890 1 this.numer -1 @@ -62855,7 +63662,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1856 this -1658075389 +200224114 1 this.numer 1 @@ -62864,7 +63671,7 @@ this.denom 0 1 return -1205095693 +501107890 1 return.numer -1 @@ -62877,7 +63684,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1858 this -434174366 +2025221430 1 this.numer -1 @@ -62886,7 +63693,7 @@ this.denom 2 1 arg -1205095693 +501107890 1 arg.numer -1 @@ -62909,7 +63716,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1859 this -1125037394 +1997859171 1 this.numer -2 @@ -62928,7 +63735,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1858 this -434174366 +2025221430 1 this.numer -1 @@ -62937,7 +63744,7 @@ this.denom 2 1 arg -1205095693 +501107890 1 arg.numer -1 @@ -62946,7 +63753,7 @@ arg.denom 0 1 return -1125037394 +1997859171 1 return.numer -2 @@ -62959,7 +63766,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1855 this -434174366 +2025221430 1 this.numer -1 @@ -62968,7 +63775,7 @@ this.denom 2 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -62977,7 +63784,7 @@ arg.denom 0 1 return -1125037394 +1997859171 1 return.numer -2 @@ -62990,7 +63797,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1860 this -1125037394 +1997859171 1 this.numer -2 @@ -63003,7 +63810,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1861 this -1125037394 +1997859171 1 this.numer -2 @@ -63016,7 +63823,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1861 this -1125037394 +1997859171 1 this.numer -2 @@ -63032,7 +63839,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1860 this -1125037394 +1997859171 1 this.numer -2 @@ -63041,7 +63848,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -63051,7 +63858,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1862 this -1658075389 +200224114 1 this.numer 1 @@ -63060,7 +63867,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -63073,7 +63880,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1863 this -434174366 +2025221430 1 this.numer -1 @@ -63119,7 +63926,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1864 this -2057452770 +550402284 1 this.numer 1 @@ -63138,7 +63945,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1863 this -434174366 +2025221430 1 this.numer -1 @@ -63147,7 +63954,7 @@ this.denom 2 1 return -2057452770 +550402284 1 return.numer 1 @@ -63160,7 +63967,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1866 this -1658075389 +200224114 1 this.numer 1 @@ -63169,7 +63976,7 @@ this.denom 0 1 arg -2057452770 +550402284 1 arg.numer 1 @@ -63192,7 +63999,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1867 this -827021396 +959869407 1 this.numer 2 @@ -63211,7 +64018,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1866 this -1658075389 +200224114 1 this.numer 1 @@ -63220,7 +64027,7 @@ this.denom 0 1 arg -2057452770 +550402284 1 arg.numer 1 @@ -63229,7 +64036,7 @@ arg.denom 2 1 return -827021396 +959869407 1 return.numer 2 @@ -63242,7 +64049,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1862 this -1658075389 +200224114 1 this.numer 1 @@ -63251,7 +64058,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -63260,7 +64067,7 @@ arg.denom 2 1 return -827021396 +959869407 1 return.numer 2 @@ -63273,7 +64080,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1868 this -827021396 +959869407 1 this.numer 2 @@ -63286,7 +64093,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1869 this -827021396 +959869407 1 this.numer 2 @@ -63299,7 +64106,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1869 this -827021396 +959869407 1 this.numer 2 @@ -63315,7 +64122,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1868 this -827021396 +959869407 1 this.numer 2 @@ -63324,7 +64131,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -63334,7 +64141,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1870 this -434174366 +2025221430 1 this.numer -1 @@ -63343,7 +64150,7 @@ this.denom 2 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -63356,7 +64163,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1871 this -1525259451 +1773283386 1 this.numer -1 @@ -63379,7 +64186,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1872 this -1234439188 +1449263511 1 this.numer 1 @@ -63398,7 +64205,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1871 this -1525259451 +1773283386 1 this.numer -1 @@ -63407,7 +64214,7 @@ this.denom 0 1 return -1234439188 +1449263511 1 return.numer 1 @@ -63420,7 +64227,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1873 this -434174366 +2025221430 1 this.numer -1 @@ -63429,7 +64236,7 @@ this.denom 2 1 arg -1234439188 +1449263511 1 arg.numer 1 @@ -63452,7 +64259,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1874 this -379919049 +116237769 1 this.numer 2 @@ -63471,7 +64278,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1873 this -434174366 +2025221430 1 this.numer -1 @@ -63480,7 +64287,7 @@ this.denom 2 1 arg -1234439188 +1449263511 1 arg.numer 1 @@ -63489,7 +64296,7 @@ arg.denom 0 1 return -379919049 +116237769 1 return.numer 2 @@ -63502,7 +64309,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1870 this -434174366 +2025221430 1 this.numer -1 @@ -63511,7 +64318,7 @@ this.denom 2 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -63520,7 +64327,7 @@ arg.denom 0 1 return -379919049 +116237769 1 return.numer 2 @@ -63533,7 +64340,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1875 this -379919049 +116237769 1 this.numer 2 @@ -63546,7 +64353,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1876 this -379919049 +116237769 1 this.numer 2 @@ -63559,7 +64366,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1876 this -379919049 +116237769 1 this.numer 2 @@ -63575,7 +64382,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1875 this -379919049 +116237769 1 this.numer 2 @@ -63584,7 +64391,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -63594,7 +64401,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1877 this -1525259451 +1773283386 1 this.numer -1 @@ -63603,7 +64410,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -63616,7 +64423,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1878 this -434174366 +2025221430 1 this.numer -1 @@ -63662,7 +64469,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1879 this -830574012 +1438098656 1 this.numer 1 @@ -63681,7 +64488,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1878 this -434174366 +2025221430 1 this.numer -1 @@ -63690,7 +64497,7 @@ this.denom 2 1 return -830574012 +1438098656 1 return.numer 1 @@ -63703,7 +64510,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1881 this -1525259451 +1773283386 1 this.numer -1 @@ -63712,7 +64519,7 @@ this.denom 0 1 arg -830574012 +1438098656 1 arg.numer 1 @@ -63735,7 +64542,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1882 this -813714184 +1594199808 1 this.numer -2 @@ -63754,7 +64561,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1881 this -1525259451 +1773283386 1 this.numer -1 @@ -63763,7 +64570,7 @@ this.denom 0 1 arg -830574012 +1438098656 1 arg.numer 1 @@ -63772,7 +64579,7 @@ arg.denom 2 1 return -813714184 +1594199808 1 return.numer -2 @@ -63785,7 +64592,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1877 this -1525259451 +1773283386 1 this.numer -1 @@ -63794,7 +64601,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -63803,7 +64610,7 @@ arg.denom 2 1 return -813714184 +1594199808 1 return.numer -2 @@ -63816,7 +64623,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1883 this -813714184 +1594199808 1 this.numer -2 @@ -63829,7 +64636,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1884 this -813714184 +1594199808 1 this.numer -2 @@ -63842,7 +64649,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1884 this -813714184 +1594199808 1 this.numer -2 @@ -63858,7 +64665,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1883 this -813714184 +1594199808 1 this.numer -2 @@ -63867,7 +64674,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -63877,7 +64684,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1885 this -434174366 +2025221430 1 this.numer -1 @@ -63886,7 +64693,7 @@ this.denom 2 1 arg -523298718 +581318631 1 arg.numer 100 @@ -63899,7 +64706,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1886 this -523298718 +581318631 1 this.numer 100 @@ -63922,7 +64729,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1887 this -918426392 +422396878 1 this.numer -100 @@ -63941,7 +64748,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1886 this -523298718 +581318631 1 this.numer 100 @@ -63950,7 +64757,7 @@ this.denom 0 1 return -918426392 +422396878 1 return.numer -100 @@ -63963,7 +64770,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1888 this -434174366 +2025221430 1 this.numer -1 @@ -63972,7 +64779,7 @@ this.denom 2 1 arg -918426392 +422396878 1 arg.numer -100 @@ -63995,7 +64802,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1889 this -2027399355 +1912962767 1 this.numer -200 @@ -64014,7 +64821,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1888 this -434174366 +2025221430 1 this.numer -1 @@ -64023,7 +64830,7 @@ this.denom 2 1 arg -918426392 +422396878 1 arg.numer -100 @@ -64032,7 +64839,7 @@ arg.denom 0 1 return -2027399355 +1912962767 1 return.numer -200 @@ -64045,7 +64852,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1885 this -434174366 +2025221430 1 this.numer -1 @@ -64054,7 +64861,7 @@ this.denom 2 1 arg -523298718 +581318631 1 arg.numer 100 @@ -64063,7 +64870,7 @@ arg.denom 0 1 return -2027399355 +1912962767 1 return.numer -200 @@ -64076,7 +64883,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1890 this -2027399355 +1912962767 1 this.numer -200 @@ -64089,7 +64896,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1891 this -2027399355 +1912962767 1 this.numer -200 @@ -64102,7 +64909,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1891 this -2027399355 +1912962767 1 this.numer -200 @@ -64118,7 +64925,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1890 this -2027399355 +1912962767 1 this.numer -200 @@ -64127,7 +64934,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -64137,7 +64944,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1892 this -523298718 +581318631 1 this.numer 100 @@ -64146,7 +64953,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -64159,7 +64966,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1893 this -434174366 +2025221430 1 this.numer -1 @@ -64205,7 +65012,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1894 this -377932536 +452805835 1 this.numer 1 @@ -64224,7 +65031,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1893 this -434174366 +2025221430 1 this.numer -1 @@ -64233,7 +65040,7 @@ this.denom 2 1 return -377932536 +452805835 1 return.numer 1 @@ -64246,7 +65053,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1896 this -523298718 +581318631 1 this.numer 100 @@ -64255,7 +65062,7 @@ this.denom 0 1 arg -377932536 +452805835 1 arg.numer 1 @@ -64278,7 +65085,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1897 this -1802988373 +1769190683 1 this.numer 200 @@ -64297,7 +65104,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1896 this -523298718 +581318631 1 this.numer 100 @@ -64306,7 +65113,7 @@ this.denom 0 1 arg -377932536 +452805835 1 arg.numer 1 @@ -64315,7 +65122,7 @@ arg.denom 2 1 return -1802988373 +1769190683 1 return.numer 200 @@ -64328,7 +65135,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1892 this -523298718 +581318631 1 this.numer 100 @@ -64337,7 +65144,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -64346,7 +65153,7 @@ arg.denom 2 1 return -1802988373 +1769190683 1 return.numer 200 @@ -64359,7 +65166,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1898 this -1802988373 +1769190683 1 this.numer 200 @@ -64372,7 +65179,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1899 this -1802988373 +1769190683 1 this.numer 200 @@ -64385,7 +65192,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1899 this -1802988373 +1769190683 1 this.numer 200 @@ -64401,7 +65208,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1898 this -1802988373 +1769190683 1 this.numer 200 @@ -64410,7 +65217,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -64420,7 +65227,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1900 this -434174366 +2025221430 1 this.numer -1 @@ -64429,7 +65236,7 @@ this.denom 2 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -64442,7 +65249,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1901 this -1136018961 +1877453512 1 this.numer 2 @@ -64465,7 +65272,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1902 this -1831325841 +447981768 1 this.numer -2 @@ -64484,7 +65291,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1901 this -1136018961 +1877453512 1 this.numer 2 @@ -64493,7 +65300,7 @@ this.denom 0 1 return -1831325841 +447981768 1 return.numer -2 @@ -64506,7 +65313,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1903 this -434174366 +2025221430 1 this.numer -1 @@ -64515,7 +65322,7 @@ this.denom 2 1 arg -1831325841 +447981768 1 arg.numer -2 @@ -64538,7 +65345,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1904 this -1357780883 +1125736023 1 this.numer -4 @@ -64557,7 +65364,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1903 this -434174366 +2025221430 1 this.numer -1 @@ -64566,7 +65373,7 @@ this.denom 2 1 arg -1831325841 +447981768 1 arg.numer -2 @@ -64575,7 +65382,7 @@ arg.denom 0 1 return -1357780883 +1125736023 1 return.numer -4 @@ -64588,7 +65395,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1900 this -434174366 +2025221430 1 this.numer -1 @@ -64597,7 +65404,7 @@ this.denom 2 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -64606,7 +65413,7 @@ arg.denom 0 1 return -1357780883 +1125736023 1 return.numer -4 @@ -64619,7 +65426,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1905 this -1357780883 +1125736023 1 this.numer -4 @@ -64632,7 +65439,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1906 this -1357780883 +1125736023 1 this.numer -4 @@ -64645,7 +65452,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1906 this -1357780883 +1125736023 1 this.numer -4 @@ -64661,7 +65468,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1905 this -1357780883 +1125736023 1 this.numer -4 @@ -64670,7 +65477,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -64680,7 +65487,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1907 this -1136018961 +1877453512 1 this.numer 2 @@ -64689,7 +65496,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -64702,7 +65509,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1908 this -434174366 +2025221430 1 this.numer -1 @@ -64748,7 +65555,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1909 this -1062067559 +858952163 1 this.numer 1 @@ -64767,7 +65574,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1908 this -434174366 +2025221430 1 this.numer -1 @@ -64776,7 +65583,7 @@ this.denom 2 1 return -1062067559 +858952163 1 return.numer 1 @@ -64789,7 +65596,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1911 this -1136018961 +1877453512 1 this.numer 2 @@ -64798,7 +65605,7 @@ this.denom 0 1 arg -1062067559 +858952163 1 arg.numer 1 @@ -64821,7 +65628,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1912 this -285390249 +1201484275 1 this.numer 4 @@ -64840,7 +65647,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1911 this -1136018961 +1877453512 1 this.numer 2 @@ -64849,7 +65656,7 @@ this.denom 0 1 arg -1062067559 +858952163 1 arg.numer 1 @@ -64858,7 +65665,7 @@ arg.denom 2 1 return -285390249 +1201484275 1 return.numer 4 @@ -64871,7 +65678,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1907 this -1136018961 +1877453512 1 this.numer 2 @@ -64880,7 +65687,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -64889,7 +65696,7 @@ arg.denom 2 1 return -285390249 +1201484275 1 return.numer 4 @@ -64902,7 +65709,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1913 this -285390249 +1201484275 1 this.numer 4 @@ -64915,7 +65722,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1914 this -285390249 +1201484275 1 this.numer 4 @@ -64928,7 +65735,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1914 this -285390249 +1201484275 1 this.numer 4 @@ -64944,7 +65751,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1913 this -285390249 +1201484275 1 this.numer 4 @@ -64953,7 +65760,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -64963,7 +65770,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1915 this -434174366 +2025221430 1 this.numer -1 @@ -64972,7 +65779,7 @@ this.denom 2 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -64985,7 +65792,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1916 this -1941055697 +487694075 1 this.numer -2 @@ -65008,7 +65815,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1917 this -1222931192 +1089418272 1 this.numer 2 @@ -65027,7 +65834,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1916 this -1941055697 +487694075 1 this.numer -2 @@ -65036,7 +65843,7 @@ this.denom 0 1 return -1222931192 +1089418272 1 return.numer 2 @@ -65049,7 +65856,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1918 this -434174366 +2025221430 1 this.numer -1 @@ -65058,7 +65865,7 @@ this.denom 2 1 arg -1222931192 +1089418272 1 arg.numer 2 @@ -65081,7 +65888,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1919 this -238558507 +1233990028 1 this.numer 4 @@ -65100,7 +65907,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1918 this -434174366 +2025221430 1 this.numer -1 @@ -65109,7 +65916,7 @@ this.denom 2 1 arg -1222931192 +1089418272 1 arg.numer 2 @@ -65118,7 +65925,7 @@ arg.denom 0 1 return -238558507 +1233990028 1 return.numer 4 @@ -65131,7 +65938,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1915 this -434174366 +2025221430 1 this.numer -1 @@ -65140,7 +65947,7 @@ this.denom 2 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -65149,7 +65956,7 @@ arg.denom 0 1 return -238558507 +1233990028 1 return.numer 4 @@ -65162,7 +65969,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1920 this -238558507 +1233990028 1 this.numer 4 @@ -65175,7 +65982,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1921 this -238558507 +1233990028 1 this.numer 4 @@ -65188,7 +65995,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1921 this -238558507 +1233990028 1 this.numer 4 @@ -65204,7 +66011,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1920 this -238558507 +1233990028 1 this.numer 4 @@ -65213,7 +66020,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -65223,7 +66030,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1922 this -1941055697 +487694075 1 this.numer -2 @@ -65232,7 +66039,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -65245,7 +66052,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1923 this -434174366 +2025221430 1 this.numer -1 @@ -65291,7 +66098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1924 this -100858200 +1847008471 1 this.numer 1 @@ -65310,7 +66117,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1923 this -434174366 +2025221430 1 this.numer -1 @@ -65319,7 +66126,7 @@ this.denom 2 1 return -100858200 +1847008471 1 return.numer 1 @@ -65332,7 +66139,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1926 this -1941055697 +487694075 1 this.numer -2 @@ -65341,7 +66148,7 @@ this.denom 0 1 arg -100858200 +1847008471 1 arg.numer 1 @@ -65364,7 +66171,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1927 this -759169917 +1076607567 1 this.numer -4 @@ -65383,7 +66190,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1926 this -1941055697 +487694075 1 this.numer -2 @@ -65392,7 +66199,7 @@ this.denom 0 1 arg -100858200 +1847008471 1 arg.numer 1 @@ -65401,7 +66208,7 @@ arg.denom 2 1 return -759169917 +1076607567 1 return.numer -4 @@ -65414,7 +66221,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1922 this -1941055697 +487694075 1 this.numer -2 @@ -65423,7 +66230,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -65432,7 +66239,7 @@ arg.denom 2 1 return -759169917 +1076607567 1 return.numer -4 @@ -65445,7 +66252,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1928 this -759169917 +1076607567 1 this.numer -4 @@ -65458,7 +66265,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1929 this -759169917 +1076607567 1 this.numer -4 @@ -65471,7 +66278,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1929 this -759169917 +1076607567 1 this.numer -4 @@ -65487,7 +66294,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1928 this -759169917 +1076607567 1 this.numer -4 @@ -65496,7 +66303,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -65506,7 +66313,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1930 this -434174366 +2025221430 1 this.numer -1 @@ -65515,7 +66322,7 @@ this.denom 2 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -65528,7 +66335,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1931 this -899017902 +1704629915 1 this.numer 9 @@ -65551,7 +66358,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1932 this -1168448192 +2036127838 1 this.numer -9 @@ -65570,7 +66377,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1931 this -899017902 +1704629915 1 this.numer 9 @@ -65579,7 +66386,7 @@ this.denom 0 1 return -1168448192 +2036127838 1 return.numer -9 @@ -65592,7 +66399,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1933 this -434174366 +2025221430 1 this.numer -1 @@ -65601,7 +66408,7 @@ this.denom 2 1 arg -1168448192 +2036127838 1 arg.numer -9 @@ -65624,7 +66431,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1934 this -1518294776 +1509791656 1 this.numer -18 @@ -65643,7 +66450,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1933 this -434174366 +2025221430 1 this.numer -1 @@ -65652,7 +66459,7 @@ this.denom 2 1 arg -1168448192 +2036127838 1 arg.numer -9 @@ -65661,7 +66468,7 @@ arg.denom 0 1 return -1518294776 +1509791656 1 return.numer -18 @@ -65674,7 +66481,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1930 this -434174366 +2025221430 1 this.numer -1 @@ -65683,7 +66490,7 @@ this.denom 2 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -65692,7 +66499,7 @@ arg.denom 0 1 return -1518294776 +1509791656 1 return.numer -18 @@ -65705,7 +66512,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1935 this -1518294776 +1509791656 1 this.numer -18 @@ -65718,7 +66525,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1936 this -1518294776 +1509791656 1 this.numer -18 @@ -65731,7 +66538,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1936 this -1518294776 +1509791656 1 this.numer -18 @@ -65747,7 +66554,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1935 this -1518294776 +1509791656 1 this.numer -18 @@ -65756,7 +66563,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -65766,7 +66573,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1937 this -899017902 +1704629915 1 this.numer 9 @@ -65775,7 +66582,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -65788,7 +66595,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1938 this -434174366 +2025221430 1 this.numer -1 @@ -65834,7 +66641,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1939 this -1579606578 +257608164 1 this.numer 1 @@ -65853,7 +66660,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1938 this -434174366 +2025221430 1 this.numer -1 @@ -65862,7 +66669,7 @@ this.denom 2 1 return -1579606578 +257608164 1 return.numer 1 @@ -65875,7 +66682,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1941 this -899017902 +1704629915 1 this.numer 9 @@ -65884,7 +66691,7 @@ this.denom 0 1 arg -1579606578 +257608164 1 arg.numer 1 @@ -65907,7 +66714,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1942 this -1254912232 +306115458 1 this.numer 18 @@ -65926,7 +66733,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1941 this -899017902 +1704629915 1 this.numer 9 @@ -65935,7 +66742,7 @@ this.denom 0 1 arg -1579606578 +257608164 1 arg.numer 1 @@ -65944,7 +66751,7 @@ arg.denom 2 1 return -1254912232 +306115458 1 return.numer 18 @@ -65957,7 +66764,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1937 this -899017902 +1704629915 1 this.numer 9 @@ -65966,7 +66773,7 @@ this.denom 0 1 arg -434174366 +2025221430 1 arg.numer -1 @@ -65975,7 +66782,7 @@ arg.denom 2 1 return -1254912232 +306115458 1 return.numer 18 @@ -65988,7 +66795,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1943 this -1254912232 +306115458 1 this.numer 18 @@ -66001,7 +66808,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1944 this -1254912232 +306115458 1 this.numer 18 @@ -66014,7 +66821,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1944 this -1254912232 +306115458 1 this.numer 18 @@ -66030,7 +66837,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1943 this -1254912232 +306115458 1 this.numer 18 @@ -66039,7 +66846,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -66049,7 +66856,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1945 this -19136856 +1378084334 1 this.numer 3 @@ -66058,7 +66865,7 @@ this.denom 2 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -66071,7 +66878,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1946 this -1658075389 +200224114 1 this.numer 1 @@ -66094,7 +66901,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1947 this -872986037 +230643635 1 this.numer -1 @@ -66113,7 +66920,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1946 this -1658075389 +200224114 1 this.numer 1 @@ -66122,7 +66929,7 @@ this.denom 0 1 return -872986037 +230643635 1 return.numer -1 @@ -66135,7 +66942,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1948 this -19136856 +1378084334 1 this.numer 3 @@ -66144,7 +66951,7 @@ this.denom 2 1 arg -872986037 +230643635 1 arg.numer -1 @@ -66167,7 +66974,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1949 this -668047555 +944427387 1 this.numer -2 @@ -66186,7 +66993,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1948 this -19136856 +1378084334 1 this.numer 3 @@ -66195,7 +67002,7 @@ this.denom 2 1 arg -872986037 +230643635 1 arg.numer -1 @@ -66204,7 +67011,7 @@ arg.denom 0 1 return -668047555 +944427387 1 return.numer -2 @@ -66217,7 +67024,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1945 this -19136856 +1378084334 1 this.numer 3 @@ -66226,7 +67033,7 @@ this.denom 2 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -66235,7 +67042,7 @@ arg.denom 0 1 return -668047555 +944427387 1 return.numer -2 @@ -66248,7 +67055,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1950 this -668047555 +944427387 1 this.numer -2 @@ -66261,7 +67068,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1951 this -668047555 +944427387 1 this.numer -2 @@ -66274,7 +67081,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1951 this -668047555 +944427387 1 this.numer -2 @@ -66290,7 +67097,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1950 this -668047555 +944427387 1 this.numer -2 @@ -66299,7 +67106,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -66309,7 +67116,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1952 this -1658075389 +200224114 1 this.numer 1 @@ -66318,7 +67125,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -66331,7 +67138,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1953 this -19136856 +1378084334 1 this.numer 3 @@ -66377,7 +67184,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1954 this -830750369 +1636182655 1 this.numer -3 @@ -66396,7 +67203,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1953 this -19136856 +1378084334 1 this.numer 3 @@ -66405,7 +67212,7 @@ this.denom 2 1 return -830750369 +1636182655 1 return.numer -3 @@ -66418,7 +67225,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1956 this -1658075389 +200224114 1 this.numer 1 @@ -66427,7 +67234,7 @@ this.denom 0 1 arg -830750369 +1636182655 1 arg.numer -3 @@ -66450,7 +67257,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1957 this -1630262636 +71399214 1 this.numer 2 @@ -66469,7 +67276,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1956 this -1658075389 +200224114 1 this.numer 1 @@ -66478,7 +67285,7 @@ this.denom 0 1 arg -830750369 +1636182655 1 arg.numer -3 @@ -66487,7 +67294,7 @@ arg.denom 2 1 return -1630262636 +71399214 1 return.numer 2 @@ -66500,7 +67307,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1952 this -1658075389 +200224114 1 this.numer 1 @@ -66509,7 +67316,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -66518,7 +67325,7 @@ arg.denom 2 1 return -1630262636 +71399214 1 return.numer 2 @@ -66531,7 +67338,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1958 this -1630262636 +71399214 1 this.numer 2 @@ -66544,7 +67351,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1959 this -1630262636 +71399214 1 this.numer 2 @@ -66557,7 +67364,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1959 this -1630262636 +71399214 1 this.numer 2 @@ -66573,7 +67380,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1958 this -1630262636 +71399214 1 this.numer 2 @@ -66582,7 +67389,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -66592,7 +67399,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1960 this -19136856 +1378084334 1 this.numer 3 @@ -66601,7 +67408,7 @@ this.denom 2 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -66614,7 +67421,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1961 this -1525259451 +1773283386 1 this.numer -1 @@ -66637,7 +67444,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1962 this -80271179 +1932831450 1 this.numer 1 @@ -66656,7 +67463,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1961 this -1525259451 +1773283386 1 this.numer -1 @@ -66665,7 +67472,7 @@ this.denom 0 1 return -80271179 +1932831450 1 return.numer 1 @@ -66678,7 +67485,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1963 this -19136856 +1378084334 1 this.numer 3 @@ -66687,7 +67494,7 @@ this.denom 2 1 arg -80271179 +1932831450 1 arg.numer 1 @@ -66710,7 +67517,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1964 this -497975137 +496729294 1 this.numer 2 @@ -66729,7 +67536,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1963 this -19136856 +1378084334 1 this.numer 3 @@ -66738,7 +67545,7 @@ this.denom 2 1 arg -80271179 +1932831450 1 arg.numer 1 @@ -66747,7 +67554,7 @@ arg.denom 0 1 return -497975137 +496729294 1 return.numer 2 @@ -66760,7 +67567,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1960 this -19136856 +1378084334 1 this.numer 3 @@ -66769,7 +67576,7 @@ this.denom 2 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -66778,7 +67585,7 @@ arg.denom 0 1 return -497975137 +496729294 1 return.numer 2 @@ -66791,7 +67598,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1965 this -497975137 +496729294 1 this.numer 2 @@ -66804,7 +67611,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1966 this -497975137 +496729294 1 this.numer 2 @@ -66817,7 +67624,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1966 this -497975137 +496729294 1 this.numer 2 @@ -66833,7 +67640,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1965 this -497975137 +496729294 1 this.numer 2 @@ -66842,7 +67649,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -66852,7 +67659,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1967 this -1525259451 +1773283386 1 this.numer -1 @@ -66861,7 +67668,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -66874,7 +67681,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1968 this -19136856 +1378084334 1 this.numer 3 @@ -66920,7 +67727,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1969 this -724355200 +1302227152 1 this.numer -3 @@ -66939,7 +67746,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1968 this -19136856 +1378084334 1 this.numer 3 @@ -66948,7 +67755,7 @@ this.denom 2 1 return -724355200 +1302227152 1 return.numer -3 @@ -66961,7 +67768,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1971 this -1525259451 +1773283386 1 this.numer -1 @@ -66970,7 +67777,7 @@ this.denom 0 1 arg -724355200 +1302227152 1 arg.numer -3 @@ -66993,7 +67800,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1972 this -153051557 +1122606666 1 this.numer -2 @@ -67012,7 +67819,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1971 this -1525259451 +1773283386 1 this.numer -1 @@ -67021,7 +67828,7 @@ this.denom 0 1 arg -724355200 +1302227152 1 arg.numer -3 @@ -67030,7 +67837,7 @@ arg.denom 2 1 return -153051557 +1122606666 1 return.numer -2 @@ -67043,7 +67850,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1967 this -1525259451 +1773283386 1 this.numer -1 @@ -67052,7 +67859,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -67061,7 +67868,7 @@ arg.denom 2 1 return -153051557 +1122606666 1 return.numer -2 @@ -67074,7 +67881,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1973 this -153051557 +1122606666 1 this.numer -2 @@ -67087,7 +67894,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1974 this -153051557 +1122606666 1 this.numer -2 @@ -67100,7 +67907,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1974 this -153051557 +1122606666 1 this.numer -2 @@ -67116,7 +67923,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1973 this -153051557 +1122606666 1 this.numer -2 @@ -67125,7 +67932,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -67135,7 +67942,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1975 this -19136856 +1378084334 1 this.numer 3 @@ -67144,7 +67951,7 @@ this.denom 2 1 arg -523298718 +581318631 1 arg.numer 100 @@ -67157,7 +67964,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1976 this -523298718 +581318631 1 this.numer 100 @@ -67180,7 +67987,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1977 this -1799593040 +350068407 1 this.numer -100 @@ -67199,7 +68006,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1976 this -523298718 +581318631 1 this.numer 100 @@ -67208,7 +68015,7 @@ this.denom 0 1 return -1799593040 +350068407 1 return.numer -100 @@ -67221,7 +68028,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1978 this -19136856 +1378084334 1 this.numer 3 @@ -67230,7 +68037,7 @@ this.denom 2 1 arg -1799593040 +350068407 1 arg.numer -100 @@ -67253,7 +68060,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1979 this -600538932 +1390869998 1 this.numer -200 @@ -67272,7 +68079,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1978 this -19136856 +1378084334 1 this.numer 3 @@ -67281,7 +68088,7 @@ this.denom 2 1 arg -1799593040 +350068407 1 arg.numer -100 @@ -67290,7 +68097,7 @@ arg.denom 0 1 return -600538932 +1390869998 1 return.numer -200 @@ -67303,7 +68110,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1975 this -19136856 +1378084334 1 this.numer 3 @@ -67312,7 +68119,7 @@ this.denom 2 1 arg -523298718 +581318631 1 arg.numer 100 @@ -67321,7 +68128,7 @@ arg.denom 0 1 return -600538932 +1390869998 1 return.numer -200 @@ -67334,7 +68141,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1980 this -600538932 +1390869998 1 this.numer -200 @@ -67347,7 +68154,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1981 this -600538932 +1390869998 1 this.numer -200 @@ -67360,7 +68167,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1981 this -600538932 +1390869998 1 this.numer -200 @@ -67376,7 +68183,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1980 this -600538932 +1390869998 1 this.numer -200 @@ -67385,7 +68192,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -67395,7 +68202,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1982 this -523298718 +581318631 1 this.numer 100 @@ -67404,7 +68211,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -67417,7 +68224,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1983 this -19136856 +1378084334 1 this.numer 3 @@ -67463,7 +68270,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1984 this -84689224 +1820383114 1 this.numer -3 @@ -67482,7 +68289,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1983 this -19136856 +1378084334 1 this.numer 3 @@ -67491,7 +68298,7 @@ this.denom 2 1 return -84689224 +1820383114 1 return.numer -3 @@ -67504,7 +68311,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1986 this -523298718 +581318631 1 this.numer 100 @@ -67513,7 +68320,7 @@ this.denom 0 1 arg -84689224 +1820383114 1 arg.numer -3 @@ -67536,7 +68343,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1987 this -1737613454 +1645547422 1 this.numer 200 @@ -67555,7 +68362,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1986 this -523298718 +581318631 1 this.numer 100 @@ -67564,7 +68371,7 @@ this.denom 0 1 arg -84689224 +1820383114 1 arg.numer -3 @@ -67573,7 +68380,7 @@ arg.denom 2 1 return -1737613454 +1645547422 1 return.numer 200 @@ -67586,7 +68393,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1982 this -523298718 +581318631 1 this.numer 100 @@ -67595,7 +68402,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -67604,7 +68411,7 @@ arg.denom 2 1 return -1737613454 +1645547422 1 return.numer 200 @@ -67617,7 +68424,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1988 this -1737613454 +1645547422 1 this.numer 200 @@ -67630,7 +68437,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1989 this -1737613454 +1645547422 1 this.numer 200 @@ -67643,7 +68450,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1989 this -1737613454 +1645547422 1 this.numer 200 @@ -67659,7 +68466,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1988 this -1737613454 +1645547422 1 this.numer 200 @@ -67668,7 +68475,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -67678,7 +68485,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1990 this -19136856 +1378084334 1 this.numer 3 @@ -67687,7 +68494,7 @@ this.denom 2 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -67700,7 +68507,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1991 this -1136018961 +1877453512 1 this.numer 2 @@ -67723,7 +68530,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1992 this -439205825 +440737101 1 this.numer -2 @@ -67742,7 +68549,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1991 this -1136018961 +1877453512 1 this.numer 2 @@ -67751,7 +68558,7 @@ this.denom 0 1 return -439205825 +440737101 1 return.numer -2 @@ -67764,7 +68571,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1993 this -19136856 +1378084334 1 this.numer 3 @@ -67773,7 +68580,7 @@ this.denom 2 1 arg -439205825 +440737101 1 arg.numer -2 @@ -67796,7 +68603,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1994 this -831006036 +2141817446 1 this.numer -4 @@ -67815,7 +68622,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1993 this -19136856 +1378084334 1 this.numer 3 @@ -67824,7 +68631,7 @@ this.denom 2 1 arg -439205825 +440737101 1 arg.numer -2 @@ -67833,7 +68640,7 @@ arg.denom 0 1 return -831006036 +2141817446 1 return.numer -4 @@ -67846,7 +68653,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1990 this -19136856 +1378084334 1 this.numer 3 @@ -67855,7 +68662,7 @@ this.denom 2 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -67864,7 +68671,7 @@ arg.denom 0 1 return -831006036 +2141817446 1 return.numer -4 @@ -67877,7 +68684,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1995 this -831006036 +2141817446 1 this.numer -4 @@ -67890,7 +68697,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1996 this -831006036 +2141817446 1 this.numer -4 @@ -67903,7 +68710,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1996 this -831006036 +2141817446 1 this.numer -4 @@ -67919,7 +68726,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1995 this -831006036 +2141817446 1 this.numer -4 @@ -67928,7 +68735,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -67938,7 +68745,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1997 this -1136018961 +1877453512 1 this.numer 2 @@ -67947,7 +68754,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -67960,7 +68767,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1998 this -19136856 +1378084334 1 this.numer 3 @@ -68006,7 +68813,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1999 this -1632290611 +369049246 1 this.numer -3 @@ -68025,7 +68832,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1998 this -19136856 +1378084334 1 this.numer 3 @@ -68034,7 +68841,7 @@ this.denom 2 1 return -1632290611 +369049246 1 return.numer -3 @@ -68047,7 +68854,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2001 this -1136018961 +1877453512 1 this.numer 2 @@ -68056,7 +68863,7 @@ this.denom 0 1 arg -1632290611 +369049246 1 arg.numer -3 @@ -68079,7 +68886,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2002 this -1952192299 +1608297024 1 this.numer 4 @@ -68098,7 +68905,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2001 this -1136018961 +1877453512 1 this.numer 2 @@ -68107,7 +68914,7 @@ this.denom 0 1 arg -1632290611 +369049246 1 arg.numer -3 @@ -68116,7 +68923,7 @@ arg.denom 2 1 return -1952192299 +1608297024 1 return.numer 4 @@ -68129,7 +68936,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1997 this -1136018961 +1877453512 1 this.numer 2 @@ -68138,7 +68945,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -68147,7 +68954,7 @@ arg.denom 2 1 return -1952192299 +1608297024 1 return.numer 4 @@ -68160,7 +68967,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2003 this -1952192299 +1608297024 1 this.numer 4 @@ -68173,7 +68980,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2004 this -1952192299 +1608297024 1 this.numer 4 @@ -68186,7 +68993,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2004 this -1952192299 +1608297024 1 this.numer 4 @@ -68202,7 +69009,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2003 this -1952192299 +1608297024 1 this.numer 4 @@ -68211,7 +69018,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -68221,7 +69028,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2005 this -19136856 +1378084334 1 this.numer 3 @@ -68230,7 +69037,7 @@ this.denom 2 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -68243,7 +69050,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2006 this -1941055697 +487694075 1 this.numer -2 @@ -68266,7 +69073,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2007 this -1240810427 +1841396611 1 this.numer 2 @@ -68285,7 +69092,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2006 this -1941055697 +487694075 1 this.numer -2 @@ -68294,7 +69101,7 @@ this.denom 0 1 return -1240810427 +1841396611 1 return.numer 2 @@ -68307,7 +69114,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2008 this -19136856 +1378084334 1 this.numer 3 @@ -68316,7 +69123,7 @@ this.denom 2 1 arg -1240810427 +1841396611 1 arg.numer 2 @@ -68339,7 +69146,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2009 this -87150572 +1577592551 1 this.numer 4 @@ -68358,7 +69165,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2008 this -19136856 +1378084334 1 this.numer 3 @@ -68367,7 +69174,7 @@ this.denom 2 1 arg -1240810427 +1841396611 1 arg.numer 2 @@ -68376,7 +69183,7 @@ arg.denom 0 1 return -87150572 +1577592551 1 return.numer 4 @@ -68389,7 +69196,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2005 this -19136856 +1378084334 1 this.numer 3 @@ -68398,7 +69205,7 @@ this.denom 2 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -68407,7 +69214,7 @@ arg.denom 0 1 return -87150572 +1577592551 1 return.numer 4 @@ -68420,7 +69227,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2010 this -87150572 +1577592551 1 this.numer 4 @@ -68433,7 +69240,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2011 this -87150572 +1577592551 1 this.numer 4 @@ -68446,7 +69253,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2011 this -87150572 +1577592551 1 this.numer 4 @@ -68462,7 +69269,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2010 this -87150572 +1577592551 1 this.numer 4 @@ -68471,7 +69278,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -68481,7 +69288,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2012 this -1941055697 +487694075 1 this.numer -2 @@ -68490,7 +69297,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -68503,7 +69310,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2013 this -19136856 +1378084334 1 this.numer 3 @@ -68549,7 +69356,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2014 this -155816350 +854587510 1 this.numer -3 @@ -68568,7 +69375,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2013 this -19136856 +1378084334 1 this.numer 3 @@ -68577,7 +69384,7 @@ this.denom 2 1 return -155816350 +854587510 1 return.numer -3 @@ -68590,7 +69397,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2016 this -1941055697 +487694075 1 this.numer -2 @@ -68599,7 +69406,7 @@ this.denom 0 1 arg -155816350 +854587510 1 arg.numer -3 @@ -68622,7 +69429,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2017 this -1022828757 +148626113 1 this.numer -4 @@ -68641,7 +69448,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2016 this -1941055697 +487694075 1 this.numer -2 @@ -68650,7 +69457,7 @@ this.denom 0 1 arg -155816350 +854587510 1 arg.numer -3 @@ -68659,7 +69466,7 @@ arg.denom 2 1 return -1022828757 +148626113 1 return.numer -4 @@ -68672,7 +69479,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2012 this -1941055697 +487694075 1 this.numer -2 @@ -68681,7 +69488,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -68690,7 +69497,7 @@ arg.denom 2 1 return -1022828757 +148626113 1 return.numer -4 @@ -68703,7 +69510,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2018 this -1022828757 +148626113 1 this.numer -4 @@ -68716,7 +69523,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2019 this -1022828757 +148626113 1 this.numer -4 @@ -68729,7 +69536,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2019 this -1022828757 +148626113 1 this.numer -4 @@ -68745,7 +69552,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2018 this -1022828757 +148626113 1 this.numer -4 @@ -68754,7 +69561,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -68764,7 +69571,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2020 this -19136856 +1378084334 1 this.numer 3 @@ -68773,7 +69580,7 @@ this.denom 2 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -68786,7 +69593,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2021 this -899017902 +1704629915 1 this.numer 9 @@ -68809,7 +69616,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2022 this -76324664 +1847637306 1 this.numer -9 @@ -68828,7 +69635,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2021 this -899017902 +1704629915 1 this.numer 9 @@ -68837,7 +69644,7 @@ this.denom 0 1 return -76324664 +1847637306 1 return.numer -9 @@ -68850,7 +69657,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2023 this -19136856 +1378084334 1 this.numer 3 @@ -68859,7 +69666,7 @@ this.denom 2 1 arg -76324664 +1847637306 1 arg.numer -9 @@ -68882,7 +69689,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2024 this -740890589 +1904253191 1 this.numer -18 @@ -68901,7 +69708,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2023 this -19136856 +1378084334 1 this.numer 3 @@ -68910,7 +69717,7 @@ this.denom 2 1 arg -76324664 +1847637306 1 arg.numer -9 @@ -68919,7 +69726,7 @@ arg.denom 0 1 return -740890589 +1904253191 1 return.numer -18 @@ -68932,7 +69739,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2020 this -19136856 +1378084334 1 this.numer 3 @@ -68941,7 +69748,7 @@ this.denom 2 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -68950,7 +69757,7 @@ arg.denom 0 1 return -740890589 +1904253191 1 return.numer -18 @@ -68963,7 +69770,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2025 this -740890589 +1904253191 1 this.numer -18 @@ -68976,7 +69783,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2026 this -740890589 +1904253191 1 this.numer -18 @@ -68989,7 +69796,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2026 this -740890589 +1904253191 1 this.numer -18 @@ -69005,7 +69812,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2025 this -740890589 +1904253191 1 this.numer -18 @@ -69014,7 +69821,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -69024,7 +69831,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2027 this -899017902 +1704629915 1 this.numer 9 @@ -69033,7 +69840,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -69046,7 +69853,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2028 this -19136856 +1378084334 1 this.numer 3 @@ -69092,7 +69899,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2029 this -1037944017 +1021436681 1 this.numer -3 @@ -69111,7 +69918,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2028 this -19136856 +1378084334 1 this.numer 3 @@ -69120,7 +69927,7 @@ this.denom 2 1 return -1037944017 +1021436681 1 return.numer -3 @@ -69133,7 +69940,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2031 this -899017902 +1704629915 1 this.numer 9 @@ -69142,7 +69949,7 @@ this.denom 0 1 arg -1037944017 +1021436681 1 arg.numer -3 @@ -69165,7 +69972,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2032 this -715429138 +1790585734 1 this.numer 18 @@ -69184,7 +69991,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2031 this -899017902 +1704629915 1 this.numer 9 @@ -69193,7 +70000,7 @@ this.denom 0 1 arg -1037944017 +1021436681 1 arg.numer -3 @@ -69202,7 +70009,7 @@ arg.denom 2 1 return -715429138 +1790585734 1 return.numer 18 @@ -69215,7 +70022,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2027 this -899017902 +1704629915 1 this.numer 9 @@ -69224,7 +70031,7 @@ this.denom 0 1 arg -19136856 +1378084334 1 arg.numer 3 @@ -69233,7 +70040,7 @@ arg.denom 2 1 return -715429138 +1790585734 1 return.numer 18 @@ -69246,7 +70053,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2033 this -715429138 +1790585734 1 this.numer 18 @@ -69259,7 +70066,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2034 this -715429138 +1790585734 1 this.numer 18 @@ -69272,7 +70079,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2034 this -715429138 +1790585734 1 this.numer 18 @@ -69288,7 +70095,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2033 this -715429138 +1790585734 1 this.numer 18 @@ -69297,7 +70104,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -69307,7 +70114,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2035 this -1658075389 +200224114 1 this.numer 1 @@ -69316,7 +70123,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -69329,7 +70136,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2036 this -1658075389 +200224114 1 this.numer 1 @@ -69352,7 +70159,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2037 this -456582813 +22600334 1 this.numer -1 @@ -69371,7 +70178,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2036 this -1658075389 +200224114 1 this.numer 1 @@ -69380,7 +70187,7 @@ this.denom 0 1 return -456582813 +22600334 1 return.numer -1 @@ -69393,7 +70200,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2038 this -1658075389 +200224114 1 this.numer 1 @@ -69402,7 +70209,7 @@ this.denom 0 1 arg -456582813 +22600334 1 arg.numer -1 @@ -69425,7 +70232,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2039 this -828267360 +1961173763 1 this.numer 0 @@ -69444,7 +70251,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2038 this -1658075389 +200224114 1 this.numer 1 @@ -69453,7 +70260,7 @@ this.denom 0 1 arg -456582813 +22600334 1 arg.numer -1 @@ -69462,7 +70269,7 @@ arg.denom 0 1 return -828267360 +1961173763 1 return.numer 0 @@ -69475,7 +70282,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2035 this -1658075389 +200224114 1 this.numer 1 @@ -69484,7 +70291,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -69493,7 +70300,7 @@ arg.denom 0 1 return -828267360 +1961173763 1 return.numer 0 @@ -69506,7 +70313,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2040 this -828267360 +1961173763 1 this.numer 0 @@ -69519,7 +70326,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2041 this -828267360 +1961173763 1 this.numer 0 @@ -69532,7 +70339,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2041 this -828267360 +1961173763 1 this.numer 0 @@ -69548,7 +70355,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2040 this -828267360 +1961173763 1 this.numer 0 @@ -69557,7 +70364,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -69567,7 +70374,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2042 this -1658075389 +200224114 1 this.numer 1 @@ -69576,7 +70383,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -69589,7 +70396,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2043 this -1658075389 +200224114 1 this.numer 1 @@ -69612,7 +70419,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2044 this -700519666 +1202683709 1 this.numer -1 @@ -69631,7 +70438,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2043 this -1658075389 +200224114 1 this.numer 1 @@ -69640,7 +70447,7 @@ this.denom 0 1 return -700519666 +1202683709 1 return.numer -1 @@ -69653,7 +70460,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2045 this -1658075389 +200224114 1 this.numer 1 @@ -69662,7 +70469,7 @@ this.denom 0 1 arg -700519666 +1202683709 1 arg.numer -1 @@ -69685,7 +70492,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2046 this -1128673608 +2087885397 1 this.numer 0 @@ -69704,7 +70511,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2045 this -1658075389 +200224114 1 this.numer 1 @@ -69713,7 +70520,7 @@ this.denom 0 1 arg -700519666 +1202683709 1 arg.numer -1 @@ -69722,7 +70529,7 @@ arg.denom 0 1 return -1128673608 +2087885397 1 return.numer 0 @@ -69735,7 +70542,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2042 this -1658075389 +200224114 1 this.numer 1 @@ -69744,7 +70551,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -69753,7 +70560,7 @@ arg.denom 0 1 return -1128673608 +2087885397 1 return.numer 0 @@ -69766,7 +70573,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2047 this -1128673608 +2087885397 1 this.numer 0 @@ -69779,7 +70586,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2048 this -1128673608 +2087885397 1 this.numer 0 @@ -69792,7 +70599,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2048 this -1128673608 +2087885397 1 this.numer 0 @@ -69808,7 +70615,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2047 this -1128673608 +2087885397 1 this.numer 0 @@ -69817,7 +70624,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -69827,7 +70634,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2049 this -1658075389 +200224114 1 this.numer 1 @@ -69836,7 +70643,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -69849,7 +70656,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2050 this -1525259451 +1773283386 1 this.numer -1 @@ -69872,7 +70679,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2051 this -894275705 +1002021887 1 this.numer 1 @@ -69891,7 +70698,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2050 this -1525259451 +1773283386 1 this.numer -1 @@ -69900,7 +70707,7 @@ this.denom 0 1 return -894275705 +1002021887 1 return.numer 1 @@ -69913,7 +70720,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2052 this -1658075389 +200224114 1 this.numer 1 @@ -69922,7 +70729,7 @@ this.denom 0 1 arg -894275705 +1002021887 1 arg.numer 1 @@ -69945,7 +70752,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2053 this -2001212229 +1712943792 1 this.numer 0 @@ -69964,7 +70771,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2052 this -1658075389 +200224114 1 this.numer 1 @@ -69973,7 +70780,7 @@ this.denom 0 1 arg -894275705 +1002021887 1 arg.numer 1 @@ -69982,7 +70789,7 @@ arg.denom 0 1 return -2001212229 +1712943792 1 return.numer 0 @@ -69995,7 +70802,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2049 this -1658075389 +200224114 1 this.numer 1 @@ -70004,7 +70811,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -70013,7 +70820,7 @@ arg.denom 0 1 return -2001212229 +1712943792 1 return.numer 0 @@ -70026,7 +70833,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2054 this -2001212229 +1712943792 1 this.numer 0 @@ -70039,7 +70846,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2055 this -2001212229 +1712943792 1 this.numer 0 @@ -70052,7 +70859,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2055 this -2001212229 +1712943792 1 this.numer 0 @@ -70068,7 +70875,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2054 this -2001212229 +1712943792 1 this.numer 0 @@ -70077,7 +70884,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -70087,7 +70894,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2056 this -1525259451 +1773283386 1 this.numer -1 @@ -70096,7 +70903,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -70109,7 +70916,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2057 this -1658075389 +200224114 1 this.numer 1 @@ -70132,7 +70939,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2058 this -485053489 +1525919705 1 this.numer -1 @@ -70151,7 +70958,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2057 this -1658075389 +200224114 1 this.numer 1 @@ -70160,7 +70967,7 @@ this.denom 0 1 return -485053489 +1525919705 1 return.numer -1 @@ -70173,7 +70980,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2059 this -1525259451 +1773283386 1 this.numer -1 @@ -70182,7 +70989,7 @@ this.denom 0 1 arg -485053489 +1525919705 1 arg.numer -1 @@ -70205,7 +71012,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2060 this -446065611 +842741472 1 this.numer 0 @@ -70224,7 +71031,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2059 this -1525259451 +1773283386 1 this.numer -1 @@ -70233,7 +71040,7 @@ this.denom 0 1 arg -485053489 +1525919705 1 arg.numer -1 @@ -70242,7 +71049,7 @@ arg.denom 0 1 return -446065611 +842741472 1 return.numer 0 @@ -70255,7 +71062,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2056 this -1525259451 +1773283386 1 this.numer -1 @@ -70264,7 +71071,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -70273,7 +71080,7 @@ arg.denom 0 1 return -446065611 +842741472 1 return.numer 0 @@ -70286,7 +71093,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2061 this -446065611 +842741472 1 this.numer 0 @@ -70299,7 +71106,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2062 this -446065611 +842741472 1 this.numer 0 @@ -70312,7 +71119,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2062 this -446065611 +842741472 1 this.numer 0 @@ -70328,7 +71135,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2061 this -446065611 +842741472 1 this.numer 0 @@ -70337,7 +71144,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -70347,7 +71154,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2063 this -1658075389 +200224114 1 this.numer 1 @@ -70356,7 +71163,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -70369,7 +71176,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2064 this -523298718 +581318631 1 this.numer 100 @@ -70392,7 +71199,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2065 this -159312400 +1156304131 1 this.numer -100 @@ -70411,7 +71218,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2064 this -523298718 +581318631 1 this.numer 100 @@ -70420,7 +71227,7 @@ this.denom 0 1 return -159312400 +1156304131 1 return.numer -100 @@ -70433,7 +71240,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2066 this -1658075389 +200224114 1 this.numer 1 @@ -70442,7 +71249,7 @@ this.denom 0 1 arg -159312400 +1156304131 1 arg.numer -100 @@ -70465,7 +71272,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2067 this -1798882638 +1766505436 1 this.numer 0 @@ -70484,7 +71291,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2066 this -1658075389 +200224114 1 this.numer 1 @@ -70493,7 +71300,7 @@ this.denom 0 1 arg -159312400 +1156304131 1 arg.numer -100 @@ -70502,7 +71309,7 @@ arg.denom 0 1 return -1798882638 +1766505436 1 return.numer 0 @@ -70515,7 +71322,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2063 this -1658075389 +200224114 1 this.numer 1 @@ -70524,7 +71331,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -70533,7 +71340,7 @@ arg.denom 0 1 return -1798882638 +1766505436 1 return.numer 0 @@ -70546,7 +71353,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2068 this -1798882638 +1766505436 1 this.numer 0 @@ -70559,7 +71366,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2069 this -1798882638 +1766505436 1 this.numer 0 @@ -70572,7 +71379,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2069 this -1798882638 +1766505436 1 this.numer 0 @@ -70588,7 +71395,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2068 this -1798882638 +1766505436 1 this.numer 0 @@ -70597,7 +71404,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -70607,7 +71414,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2070 this -523298718 +581318631 1 this.numer 100 @@ -70616,7 +71423,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -70629,7 +71436,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2071 this -1658075389 +200224114 1 this.numer 1 @@ -70652,7 +71459,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2072 this -1545714400 +771775563 1 this.numer -1 @@ -70671,7 +71478,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2071 this -1658075389 +200224114 1 this.numer 1 @@ -70680,7 +71487,7 @@ this.denom 0 1 return -1545714400 +771775563 1 return.numer -1 @@ -70693,7 +71500,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2073 this -523298718 +581318631 1 this.numer 100 @@ -70702,7 +71509,7 @@ this.denom 0 1 arg -1545714400 +771775563 1 arg.numer -1 @@ -70725,7 +71532,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2074 this -712243041 +1164440413 1 this.numer 0 @@ -70744,7 +71551,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2073 this -523298718 +581318631 1 this.numer 100 @@ -70753,7 +71560,7 @@ this.denom 0 1 arg -1545714400 +771775563 1 arg.numer -1 @@ -70762,7 +71569,7 @@ arg.denom 0 1 return -712243041 +1164440413 1 return.numer 0 @@ -70775,7 +71582,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2070 this -523298718 +581318631 1 this.numer 100 @@ -70784,7 +71591,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -70793,7 +71600,7 @@ arg.denom 0 1 return -712243041 +1164440413 1 return.numer 0 @@ -70806,7 +71613,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2075 this -712243041 +1164440413 1 this.numer 0 @@ -70819,7 +71626,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2076 this -712243041 +1164440413 1 this.numer 0 @@ -70832,7 +71639,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2076 this -712243041 +1164440413 1 this.numer 0 @@ -70848,7 +71655,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2075 this -712243041 +1164440413 1 this.numer 0 @@ -70857,7 +71664,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -70867,7 +71674,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2077 this -1658075389 +200224114 1 this.numer 1 @@ -70876,7 +71683,7 @@ this.denom 0 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -70889,7 +71696,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2078 this -1136018961 +1877453512 1 this.numer 2 @@ -70912,7 +71719,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2079 this -594941709 +1610525991 1 this.numer -2 @@ -70931,7 +71738,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2078 this -1136018961 +1877453512 1 this.numer 2 @@ -70940,7 +71747,7 @@ this.denom 0 1 return -594941709 +1610525991 1 return.numer -2 @@ -70953,7 +71760,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2080 this -1658075389 +200224114 1 this.numer 1 @@ -70962,7 +71769,7 @@ this.denom 0 1 arg -594941709 +1610525991 1 arg.numer -2 @@ -70985,7 +71792,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2081 this -501442731 +1666607455 1 this.numer 0 @@ -71004,7 +71811,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2080 this -1658075389 +200224114 1 this.numer 1 @@ -71013,7 +71820,7 @@ this.denom 0 1 arg -594941709 +1610525991 1 arg.numer -2 @@ -71022,7 +71829,7 @@ arg.denom 0 1 return -501442731 +1666607455 1 return.numer 0 @@ -71035,7 +71842,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2077 this -1658075389 +200224114 1 this.numer 1 @@ -71044,7 +71851,7 @@ this.denom 0 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -71053,7 +71860,7 @@ arg.denom 0 1 return -501442731 +1666607455 1 return.numer 0 @@ -71066,7 +71873,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2082 this -501442731 +1666607455 1 this.numer 0 @@ -71079,7 +71886,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2083 this -501442731 +1666607455 1 this.numer 0 @@ -71092,7 +71899,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2083 this -501442731 +1666607455 1 this.numer 0 @@ -71108,7 +71915,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2082 this -501442731 +1666607455 1 this.numer 0 @@ -71117,7 +71924,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -71127,7 +71934,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2084 this -1136018961 +1877453512 1 this.numer 2 @@ -71136,7 +71943,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -71149,7 +71956,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2085 this -1658075389 +200224114 1 this.numer 1 @@ -71172,7 +71979,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2086 this -1022149089 +1327006586 1 this.numer -1 @@ -71191,7 +71998,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2085 this -1658075389 +200224114 1 this.numer 1 @@ -71200,7 +72007,7 @@ this.denom 0 1 return -1022149089 +1327006586 1 return.numer -1 @@ -71213,7 +72020,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2087 this -1136018961 +1877453512 1 this.numer 2 @@ -71222,7 +72029,7 @@ this.denom 0 1 arg -1022149089 +1327006586 1 arg.numer -1 @@ -71245,7 +72052,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2088 this -1538046470 +899644639 1 this.numer 0 @@ -71264,7 +72071,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2087 this -1136018961 +1877453512 1 this.numer 2 @@ -71273,7 +72080,7 @@ this.denom 0 1 arg -1022149089 +1327006586 1 arg.numer -1 @@ -71282,7 +72089,7 @@ arg.denom 0 1 return -1538046470 +899644639 1 return.numer 0 @@ -71295,7 +72102,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2084 this -1136018961 +1877453512 1 this.numer 2 @@ -71304,7 +72111,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -71313,7 +72120,7 @@ arg.denom 0 1 return -1538046470 +899644639 1 return.numer 0 @@ -71326,7 +72133,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2089 this -1538046470 +899644639 1 this.numer 0 @@ -71339,7 +72146,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2090 this -1538046470 +899644639 1 this.numer 0 @@ -71352,7 +72159,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2090 this -1538046470 +899644639 1 this.numer 0 @@ -71368,7 +72175,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2089 this -1538046470 +899644639 1 this.numer 0 @@ -71377,7 +72184,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -71387,7 +72194,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2091 this -1658075389 +200224114 1 this.numer 1 @@ -71396,7 +72203,7 @@ this.denom 0 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -71409,7 +72216,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2092 this -1941055697 +487694075 1 this.numer -2 @@ -71432,7 +72239,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2093 this -686362351 +530737374 1 this.numer 2 @@ -71451,7 +72258,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2092 this -1941055697 +487694075 1 this.numer -2 @@ -71460,7 +72267,7 @@ this.denom 0 1 return -686362351 +530737374 1 return.numer 2 @@ -71473,7 +72280,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2094 this -1658075389 +200224114 1 this.numer 1 @@ -71482,7 +72289,7 @@ this.denom 0 1 arg -686362351 +530737374 1 arg.numer 2 @@ -71505,7 +72312,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2095 this -1557365220 +1332668132 1 this.numer 0 @@ -71524,7 +72331,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2094 this -1658075389 +200224114 1 this.numer 1 @@ -71533,7 +72340,7 @@ this.denom 0 1 arg -686362351 +530737374 1 arg.numer 2 @@ -71542,7 +72349,7 @@ arg.denom 0 1 return -1557365220 +1332668132 1 return.numer 0 @@ -71555,7 +72362,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2091 this -1658075389 +200224114 1 this.numer 1 @@ -71564,7 +72371,7 @@ this.denom 0 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -71573,7 +72380,7 @@ arg.denom 0 1 return -1557365220 +1332668132 1 return.numer 0 @@ -71586,7 +72393,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2096 this -1557365220 +1332668132 1 this.numer 0 @@ -71599,7 +72406,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2097 this -1557365220 +1332668132 1 this.numer 0 @@ -71612,7 +72419,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2097 this -1557365220 +1332668132 1 this.numer 0 @@ -71628,7 +72435,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2096 this -1557365220 +1332668132 1 this.numer 0 @@ -71637,7 +72444,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -71647,7 +72454,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2098 this -1941055697 +487694075 1 this.numer -2 @@ -71656,7 +72463,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -71669,7 +72476,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2099 this -1658075389 +200224114 1 this.numer 1 @@ -71692,7 +72499,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2100 this -1106562904 +1147580192 1 this.numer -1 @@ -71711,7 +72518,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2099 this -1658075389 +200224114 1 this.numer 1 @@ -71720,7 +72527,7 @@ this.denom 0 1 return -1106562904 +1147580192 1 return.numer -1 @@ -71733,7 +72540,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2101 this -1941055697 +487694075 1 this.numer -2 @@ -71742,7 +72549,7 @@ this.denom 0 1 arg -1106562904 +1147580192 1 arg.numer -1 @@ -71765,7 +72572,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2102 this -794344508 +173099767 1 this.numer 0 @@ -71784,7 +72591,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2101 this -1941055697 +487694075 1 this.numer -2 @@ -71793,7 +72600,7 @@ this.denom 0 1 arg -1106562904 +1147580192 1 arg.numer -1 @@ -71802,7 +72609,7 @@ arg.denom 0 1 return -794344508 +173099767 1 return.numer 0 @@ -71815,7 +72622,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2098 this -1941055697 +487694075 1 this.numer -2 @@ -71824,7 +72631,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -71833,7 +72640,7 @@ arg.denom 0 1 return -794344508 +173099767 1 return.numer 0 @@ -71846,7 +72653,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2103 this -794344508 +173099767 1 this.numer 0 @@ -71859,7 +72666,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2104 this -794344508 +173099767 1 this.numer 0 @@ -71872,7 +72679,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2104 this -794344508 +173099767 1 this.numer 0 @@ -71888,7 +72695,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2103 this -794344508 +173099767 1 this.numer 0 @@ -71897,7 +72704,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -71907,7 +72714,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2105 this -1658075389 +200224114 1 this.numer 1 @@ -71916,7 +72723,7 @@ this.denom 0 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -71929,7 +72736,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2106 this -899017902 +1704629915 1 this.numer 9 @@ -71952,7 +72759,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2107 this -1789796204 +112797691 1 this.numer -9 @@ -71971,7 +72778,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2106 this -899017902 +1704629915 1 this.numer 9 @@ -71980,7 +72787,7 @@ this.denom 0 1 return -1789796204 +112797691 1 return.numer -9 @@ -71993,7 +72800,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2108 this -1658075389 +200224114 1 this.numer 1 @@ -72002,7 +72809,7 @@ this.denom 0 1 arg -1789796204 +112797691 1 arg.numer -9 @@ -72025,7 +72832,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2109 this -1301357099 +1045997582 1 this.numer 0 @@ -72044,7 +72851,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2108 this -1658075389 +200224114 1 this.numer 1 @@ -72053,7 +72860,7 @@ this.denom 0 1 arg -1789796204 +112797691 1 arg.numer -9 @@ -72062,7 +72869,7 @@ arg.denom 0 1 return -1301357099 +1045997582 1 return.numer 0 @@ -72075,7 +72882,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2105 this -1658075389 +200224114 1 this.numer 1 @@ -72084,7 +72891,7 @@ this.denom 0 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -72093,7 +72900,7 @@ arg.denom 0 1 return -1301357099 +1045997582 1 return.numer 0 @@ -72106,7 +72913,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2110 this -1301357099 +1045997582 1 this.numer 0 @@ -72119,7 +72926,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2111 this -1301357099 +1045997582 1 this.numer 0 @@ -72132,7 +72939,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2111 this -1301357099 +1045997582 1 this.numer 0 @@ -72148,7 +72955,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2110 this -1301357099 +1045997582 1 this.numer 0 @@ -72157,7 +72964,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -72167,7 +72974,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2112 this -899017902 +1704629915 1 this.numer 9 @@ -72176,7 +72983,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -72189,7 +72996,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2113 this -1658075389 +200224114 1 this.numer 1 @@ -72212,7 +73019,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2114 this -1935301845 +1337335626 1 this.numer -1 @@ -72231,7 +73038,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2113 this -1658075389 +200224114 1 this.numer 1 @@ -72240,7 +73047,7 @@ this.denom 0 1 return -1935301845 +1337335626 1 return.numer -1 @@ -72253,7 +73060,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2115 this -899017902 +1704629915 1 this.numer 9 @@ -72262,7 +73069,7 @@ this.denom 0 1 arg -1935301845 +1337335626 1 arg.numer -1 @@ -72285,7 +73092,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2116 this -830791453 +1336996537 1 this.numer 0 @@ -72304,7 +73111,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2115 this -899017902 +1704629915 1 this.numer 9 @@ -72313,7 +73120,7 @@ this.denom 0 1 arg -1935301845 +1337335626 1 arg.numer -1 @@ -72322,7 +73129,7 @@ arg.denom 0 1 return -830791453 +1336996537 1 return.numer 0 @@ -72335,7 +73142,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2112 this -899017902 +1704629915 1 this.numer 9 @@ -72344,7 +73151,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -72353,7 +73160,7 @@ arg.denom 0 1 return -830791453 +1336996537 1 return.numer 0 @@ -72366,7 +73173,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2117 this -830791453 +1336996537 1 this.numer 0 @@ -72379,7 +73186,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2118 this -830791453 +1336996537 1 this.numer 0 @@ -72392,7 +73199,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2118 this -830791453 +1336996537 1 this.numer 0 @@ -72408,7 +73215,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2117 this -830791453 +1336996537 1 this.numer 0 @@ -72417,7 +73224,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -72427,7 +73234,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2119 this -1525259451 +1773283386 1 this.numer -1 @@ -72436,7 +73243,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -72449,7 +73256,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2120 this -1658075389 +200224114 1 this.numer 1 @@ -72472,7 +73279,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2121 this -173277777 +7967307 1 this.numer -1 @@ -72491,7 +73298,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2120 this -1658075389 +200224114 1 this.numer 1 @@ -72500,7 +73307,7 @@ this.denom 0 1 return -173277777 +7967307 1 return.numer -1 @@ -72513,7 +73320,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2122 this -1525259451 +1773283386 1 this.numer -1 @@ -72522,7 +73329,7 @@ this.denom 0 1 arg -173277777 +7967307 1 arg.numer -1 @@ -72545,7 +73352,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2123 this -291772707 +2073707154 1 this.numer 0 @@ -72564,7 +73371,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2122 this -1525259451 +1773283386 1 this.numer -1 @@ -72573,7 +73380,7 @@ this.denom 0 1 arg -173277777 +7967307 1 arg.numer -1 @@ -72582,7 +73389,7 @@ arg.denom 0 1 return -291772707 +2073707154 1 return.numer 0 @@ -72595,7 +73402,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2119 this -1525259451 +1773283386 1 this.numer -1 @@ -72604,7 +73411,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -72613,7 +73420,7 @@ arg.denom 0 1 return -291772707 +2073707154 1 return.numer 0 @@ -72626,7 +73433,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2124 this -291772707 +2073707154 1 this.numer 0 @@ -72639,7 +73446,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2125 this -291772707 +2073707154 1 this.numer 0 @@ -72652,7 +73459,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2125 this -291772707 +2073707154 1 this.numer 0 @@ -72668,7 +73475,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2124 this -291772707 +2073707154 1 this.numer 0 @@ -72677,7 +73484,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -72687,7 +73494,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2126 this -1658075389 +200224114 1 this.numer 1 @@ -72696,7 +73503,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -72709,7 +73516,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2127 this -1525259451 +1773283386 1 this.numer -1 @@ -72732,7 +73539,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2128 this -1118720448 +78204644 1 this.numer 1 @@ -72751,7 +73558,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2127 this -1525259451 +1773283386 1 this.numer -1 @@ -72760,7 +73567,7 @@ this.denom 0 1 return -1118720448 +78204644 1 return.numer 1 @@ -72773,7 +73580,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2129 this -1658075389 +200224114 1 this.numer 1 @@ -72782,7 +73589,7 @@ this.denom 0 1 arg -1118720448 +78204644 1 arg.numer 1 @@ -72805,7 +73612,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2130 this -1115240051 +1287934450 1 this.numer 0 @@ -72824,7 +73631,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2129 this -1658075389 +200224114 1 this.numer 1 @@ -72833,7 +73640,7 @@ this.denom 0 1 arg -1118720448 +78204644 1 arg.numer 1 @@ -72842,7 +73649,7 @@ arg.denom 0 1 return -1115240051 +1287934450 1 return.numer 0 @@ -72855,7 +73662,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2126 this -1658075389 +200224114 1 this.numer 1 @@ -72864,7 +73671,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -72873,7 +73680,7 @@ arg.denom 0 1 return -1115240051 +1287934450 1 return.numer 0 @@ -72886,7 +73693,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2131 this -1115240051 +1287934450 1 this.numer 0 @@ -72899,7 +73706,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2132 this -1115240051 +1287934450 1 this.numer 0 @@ -72912,7 +73719,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2132 this -1115240051 +1287934450 1 this.numer 0 @@ -72928,7 +73735,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2131 this -1115240051 +1287934450 1 this.numer 0 @@ -72937,7 +73744,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -72947,7 +73754,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2133 this -1525259451 +1773283386 1 this.numer -1 @@ -72956,7 +73763,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -72969,7 +73776,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2134 this -1525259451 +1773283386 1 this.numer -1 @@ -72992,7 +73799,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2135 this -602266141 +6519275 1 this.numer 1 @@ -73011,7 +73818,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2134 this -1525259451 +1773283386 1 this.numer -1 @@ -73020,7 +73827,7 @@ this.denom 0 1 return -602266141 +6519275 1 return.numer 1 @@ -73033,7 +73840,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2136 this -1525259451 +1773283386 1 this.numer -1 @@ -73042,7 +73849,7 @@ this.denom 0 1 arg -602266141 +6519275 1 arg.numer 1 @@ -73065,7 +73872,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2137 this -1196603476 +692331943 1 this.numer 0 @@ -73084,7 +73891,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2136 this -1525259451 +1773283386 1 this.numer -1 @@ -73093,7 +73900,7 @@ this.denom 0 1 arg -602266141 +6519275 1 arg.numer 1 @@ -73102,7 +73909,7 @@ arg.denom 0 1 return -1196603476 +692331943 1 return.numer 0 @@ -73115,7 +73922,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2133 this -1525259451 +1773283386 1 this.numer -1 @@ -73124,7 +73931,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -73133,7 +73940,7 @@ arg.denom 0 1 return -1196603476 +692331943 1 return.numer 0 @@ -73146,7 +73953,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2138 this -1196603476 +692331943 1 this.numer 0 @@ -73159,7 +73966,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2139 this -1196603476 +692331943 1 this.numer 0 @@ -73172,7 +73979,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2139 this -1196603476 +692331943 1 this.numer 0 @@ -73188,7 +73995,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2138 this -1196603476 +692331943 1 this.numer 0 @@ -73197,7 +74004,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -73207,7 +74014,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2140 this -1525259451 +1773283386 1 this.numer -1 @@ -73216,7 +74023,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -73229,7 +74036,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2141 this -1525259451 +1773283386 1 this.numer -1 @@ -73252,7 +74059,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2142 this -130266977 +1741979653 1 this.numer 1 @@ -73271,7 +74078,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2141 this -1525259451 +1773283386 1 this.numer -1 @@ -73280,7 +74087,7 @@ this.denom 0 1 return -130266977 +1741979653 1 return.numer 1 @@ -73293,7 +74100,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2143 this -1525259451 +1773283386 1 this.numer -1 @@ -73302,7 +74109,7 @@ this.denom 0 1 arg -130266977 +1741979653 1 arg.numer 1 @@ -73325,7 +74132,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2144 this -1111246146 +166794956 1 this.numer 0 @@ -73344,7 +74151,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2143 this -1525259451 +1773283386 1 this.numer -1 @@ -73353,7 +74160,7 @@ this.denom 0 1 arg -130266977 +1741979653 1 arg.numer 1 @@ -73362,7 +74169,7 @@ arg.denom 0 1 return -1111246146 +166794956 1 return.numer 0 @@ -73375,7 +74182,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2140 this -1525259451 +1773283386 1 this.numer -1 @@ -73384,7 +74191,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -73393,7 +74200,7 @@ arg.denom 0 1 return -1111246146 +166794956 1 return.numer 0 @@ -73406,7 +74213,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2145 this -1111246146 +166794956 1 this.numer 0 @@ -73419,7 +74226,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2146 this -1111246146 +166794956 1 this.numer 0 @@ -73432,7 +74239,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2146 this -1111246146 +166794956 1 this.numer 0 @@ -73448,7 +74255,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2145 this -1111246146 +166794956 1 this.numer 0 @@ -73457,7 +74264,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -73467,7 +74274,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2147 this -1525259451 +1773283386 1 this.numer -1 @@ -73476,7 +74283,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -73489,7 +74296,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2148 this -523298718 +581318631 1 this.numer 100 @@ -73512,7 +74319,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2149 this -48697863 +306612792 1 this.numer -100 @@ -73531,7 +74338,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2148 this -523298718 +581318631 1 this.numer 100 @@ -73540,7 +74347,7 @@ this.denom 0 1 return -48697863 +306612792 1 return.numer -100 @@ -73553,7 +74360,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2150 this -1525259451 +1773283386 1 this.numer -1 @@ -73562,7 +74369,7 @@ this.denom 0 1 arg -48697863 +306612792 1 arg.numer -100 @@ -73585,7 +74392,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2151 this -273713934 +447212746 1 this.numer 0 @@ -73604,7 +74411,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2150 this -1525259451 +1773283386 1 this.numer -1 @@ -73613,7 +74420,7 @@ this.denom 0 1 arg -48697863 +306612792 1 arg.numer -100 @@ -73622,7 +74429,7 @@ arg.denom 0 1 return -273713934 +447212746 1 return.numer 0 @@ -73635,7 +74442,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2147 this -1525259451 +1773283386 1 this.numer -1 @@ -73644,7 +74451,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -73653,7 +74460,7 @@ arg.denom 0 1 return -273713934 +447212746 1 return.numer 0 @@ -73666,7 +74473,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2152 this -273713934 +447212746 1 this.numer 0 @@ -73679,7 +74486,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2153 this -273713934 +447212746 1 this.numer 0 @@ -73692,7 +74499,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2153 this -273713934 +447212746 1 this.numer 0 @@ -73708,7 +74515,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2152 this -273713934 +447212746 1 this.numer 0 @@ -73717,7 +74524,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -73727,7 +74534,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2154 this -523298718 +581318631 1 this.numer 100 @@ -73736,7 +74543,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -73749,7 +74556,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2155 this -1525259451 +1773283386 1 this.numer -1 @@ -73772,7 +74579,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2156 this -400116864 +1496355635 1 this.numer 1 @@ -73791,7 +74598,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2155 this -1525259451 +1773283386 1 this.numer -1 @@ -73800,7 +74607,7 @@ this.denom 0 1 return -400116864 +1496355635 1 return.numer 1 @@ -73813,7 +74620,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2157 this -523298718 +581318631 1 this.numer 100 @@ -73822,7 +74629,7 @@ this.denom 0 1 arg -400116864 +1496355635 1 arg.numer 1 @@ -73845,7 +74652,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2158 this -992834491 +1484171695 1 this.numer 0 @@ -73864,7 +74671,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2157 this -523298718 +581318631 1 this.numer 100 @@ -73873,7 +74680,7 @@ this.denom 0 1 arg -400116864 +1496355635 1 arg.numer 1 @@ -73882,7 +74689,7 @@ arg.denom 0 1 return -992834491 +1484171695 1 return.numer 0 @@ -73895,7 +74702,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2154 this -523298718 +581318631 1 this.numer 100 @@ -73904,7 +74711,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -73913,7 +74720,7 @@ arg.denom 0 1 return -992834491 +1484171695 1 return.numer 0 @@ -73926,7 +74733,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2159 this -992834491 +1484171695 1 this.numer 0 @@ -73939,7 +74746,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2160 this -992834491 +1484171695 1 this.numer 0 @@ -73952,7 +74759,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2160 this -992834491 +1484171695 1 this.numer 0 @@ -73968,7 +74775,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2159 this -992834491 +1484171695 1 this.numer 0 @@ -73977,7 +74784,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -73987,7 +74794,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2161 this -1525259451 +1773283386 1 this.numer -1 @@ -73996,7 +74803,7 @@ this.denom 0 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -74009,7 +74816,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2162 this -1136018961 +1877453512 1 this.numer 2 @@ -74032,7 +74839,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2163 this -621353047 +2127036371 1 this.numer -2 @@ -74051,7 +74858,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2162 this -1136018961 +1877453512 1 this.numer 2 @@ -74060,7 +74867,7 @@ this.denom 0 1 return -621353047 +2127036371 1 return.numer -2 @@ -74073,7 +74880,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2164 this -1525259451 +1773283386 1 this.numer -1 @@ -74082,7 +74889,7 @@ this.denom 0 1 arg -621353047 +2127036371 1 arg.numer -2 @@ -74105,7 +74912,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2165 this -2015169215 +1529060733 1 this.numer 0 @@ -74124,7 +74931,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2164 this -1525259451 +1773283386 1 this.numer -1 @@ -74133,7 +74940,7 @@ this.denom 0 1 arg -621353047 +2127036371 1 arg.numer -2 @@ -74142,7 +74949,7 @@ arg.denom 0 1 return -2015169215 +1529060733 1 return.numer 0 @@ -74155,7 +74962,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2161 this -1525259451 +1773283386 1 this.numer -1 @@ -74164,7 +74971,7 @@ this.denom 0 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -74173,7 +74980,7 @@ arg.denom 0 1 return -2015169215 +1529060733 1 return.numer 0 @@ -74186,7 +74993,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2166 this -2015169215 +1529060733 1 this.numer 0 @@ -74199,7 +75006,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2167 this -2015169215 +1529060733 1 this.numer 0 @@ -74212,7 +75019,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2167 this -2015169215 +1529060733 1 this.numer 0 @@ -74228,7 +75035,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2166 this -2015169215 +1529060733 1 this.numer 0 @@ -74237,7 +75044,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -74247,7 +75054,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2168 this -1136018961 +1877453512 1 this.numer 2 @@ -74256,7 +75063,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -74269,7 +75076,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2169 this -1525259451 +1773283386 1 this.numer -1 @@ -74292,7 +75099,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2170 this -984399668 +106374177 1 this.numer 1 @@ -74311,7 +75118,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2169 this -1525259451 +1773283386 1 this.numer -1 @@ -74320,7 +75127,7 @@ this.denom 0 1 return -984399668 +106374177 1 return.numer 1 @@ -74333,7 +75140,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2171 this -1136018961 +1877453512 1 this.numer 2 @@ -74342,7 +75149,7 @@ this.denom 0 1 arg -984399668 +106374177 1 arg.numer 1 @@ -74365,7 +75172,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2172 this -591203588 +1803669141 1 this.numer 0 @@ -74384,7 +75191,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2171 this -1136018961 +1877453512 1 this.numer 2 @@ -74393,7 +75200,7 @@ this.denom 0 1 arg -984399668 +106374177 1 arg.numer 1 @@ -74402,7 +75209,7 @@ arg.denom 0 1 return -591203588 +1803669141 1 return.numer 0 @@ -74415,7 +75222,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2168 this -1136018961 +1877453512 1 this.numer 2 @@ -74424,7 +75231,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -74433,7 +75240,7 @@ arg.denom 0 1 return -591203588 +1803669141 1 return.numer 0 @@ -74446,7 +75253,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2173 this -591203588 +1803669141 1 this.numer 0 @@ -74459,7 +75266,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2174 this -591203588 +1803669141 1 this.numer 0 @@ -74472,7 +75279,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2174 this -591203588 +1803669141 1 this.numer 0 @@ -74488,7 +75295,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2173 this -591203588 +1803669141 1 this.numer 0 @@ -74497,7 +75304,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -74507,7 +75314,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2175 this -1525259451 +1773283386 1 this.numer -1 @@ -74516,7 +75323,7 @@ this.denom 0 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -74529,7 +75336,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2176 this -1941055697 +487694075 1 this.numer -2 @@ -74552,7 +75359,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2177 this -2099352494 +712609105 1 this.numer 2 @@ -74571,7 +75378,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2176 this -1941055697 +487694075 1 this.numer -2 @@ -74580,7 +75387,7 @@ this.denom 0 1 return -2099352494 +712609105 1 return.numer 2 @@ -74593,7 +75400,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2178 this -1525259451 +1773283386 1 this.numer -1 @@ -74602,7 +75409,7 @@ this.denom 0 1 arg -2099352494 +712609105 1 arg.numer 2 @@ -74625,7 +75432,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2179 this -661046448 +1836463382 1 this.numer 0 @@ -74644,7 +75451,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2178 this -1525259451 +1773283386 1 this.numer -1 @@ -74653,7 +75460,7 @@ this.denom 0 1 arg -2099352494 +712609105 1 arg.numer 2 @@ -74662,7 +75469,7 @@ arg.denom 0 1 return -661046448 +1836463382 1 return.numer 0 @@ -74675,7 +75482,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2175 this -1525259451 +1773283386 1 this.numer -1 @@ -74684,7 +75491,7 @@ this.denom 0 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -74693,7 +75500,7 @@ arg.denom 0 1 return -661046448 +1836463382 1 return.numer 0 @@ -74706,7 +75513,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2180 this -661046448 +1836463382 1 this.numer 0 @@ -74719,7 +75526,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2181 this -661046448 +1836463382 1 this.numer 0 @@ -74732,7 +75539,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2181 this -661046448 +1836463382 1 this.numer 0 @@ -74748,7 +75555,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2180 this -661046448 +1836463382 1 this.numer 0 @@ -74757,7 +75564,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -74767,7 +75574,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2182 this -1941055697 +487694075 1 this.numer -2 @@ -74776,7 +75583,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -74789,7 +75596,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2183 this -1525259451 +1773283386 1 this.numer -1 @@ -74812,7 +75619,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2184 this -1274745605 +1388278453 1 this.numer 1 @@ -74831,7 +75638,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2183 this -1525259451 +1773283386 1 this.numer -1 @@ -74840,7 +75647,7 @@ this.denom 0 1 return -1274745605 +1388278453 1 return.numer 1 @@ -74853,7 +75660,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2185 this -1941055697 +487694075 1 this.numer -2 @@ -74862,7 +75669,7 @@ this.denom 0 1 arg -1274745605 +1388278453 1 arg.numer 1 @@ -74885,7 +75692,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2186 this -1352520763 +934275857 1 this.numer 0 @@ -74904,7 +75711,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2185 this -1941055697 +487694075 1 this.numer -2 @@ -74913,7 +75720,7 @@ this.denom 0 1 arg -1274745605 +1388278453 1 arg.numer 1 @@ -74922,7 +75729,7 @@ arg.denom 0 1 return -1352520763 +934275857 1 return.numer 0 @@ -74935,7 +75742,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2182 this -1941055697 +487694075 1 this.numer -2 @@ -74944,7 +75751,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -74953,7 +75760,7 @@ arg.denom 0 1 return -1352520763 +934275857 1 return.numer 0 @@ -74966,7 +75773,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2187 this -1352520763 +934275857 1 this.numer 0 @@ -74979,7 +75786,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2188 this -1352520763 +934275857 1 this.numer 0 @@ -74992,7 +75799,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2188 this -1352520763 +934275857 1 this.numer 0 @@ -75008,7 +75815,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2187 this -1352520763 +934275857 1 this.numer 0 @@ -75017,7 +75824,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -75027,7 +75834,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2189 this -1525259451 +1773283386 1 this.numer -1 @@ -75036,7 +75843,7 @@ this.denom 0 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -75049,7 +75856,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2190 this -899017902 +1704629915 1 this.numer 9 @@ -75072,7 +75879,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2191 this -702060246 +1364913072 1 this.numer -9 @@ -75091,7 +75898,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2190 this -899017902 +1704629915 1 this.numer 9 @@ -75100,7 +75907,7 @@ this.denom 0 1 return -702060246 +1364913072 1 return.numer -9 @@ -75113,7 +75920,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2192 this -1525259451 +1773283386 1 this.numer -1 @@ -75122,7 +75929,7 @@ this.denom 0 1 arg -702060246 +1364913072 1 arg.numer -9 @@ -75145,7 +75952,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2193 this -1251397904 +232307208 1 this.numer 0 @@ -75164,7 +75971,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2192 this -1525259451 +1773283386 1 this.numer -1 @@ -75173,7 +75980,7 @@ this.denom 0 1 arg -702060246 +1364913072 1 arg.numer -9 @@ -75182,7 +75989,7 @@ arg.denom 0 1 return -1251397904 +232307208 1 return.numer 0 @@ -75195,7 +76002,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2189 this -1525259451 +1773283386 1 this.numer -1 @@ -75204,7 +76011,7 @@ this.denom 0 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -75213,7 +76020,7 @@ arg.denom 0 1 return -1251397904 +232307208 1 return.numer 0 @@ -75226,7 +76033,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2194 this -1251397904 +232307208 1 this.numer 0 @@ -75239,7 +76046,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2195 this -1251397904 +232307208 1 this.numer 0 @@ -75252,7 +76059,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2195 this -1251397904 +232307208 1 this.numer 0 @@ -75268,7 +76075,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2194 this -1251397904 +232307208 1 this.numer 0 @@ -75277,7 +76084,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -75287,7 +76094,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2196 this -899017902 +1704629915 1 this.numer 9 @@ -75296,7 +76103,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -75309,7 +76116,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2197 this -1525259451 +1773283386 1 this.numer -1 @@ -75332,7 +76139,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2198 this -1937217457 +609962972 1 this.numer 1 @@ -75351,7 +76158,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2197 this -1525259451 +1773283386 1 this.numer -1 @@ -75360,7 +76167,7 @@ this.denom 0 1 return -1937217457 +609962972 1 return.numer 1 @@ -75373,7 +76180,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2199 this -899017902 +1704629915 1 this.numer 9 @@ -75382,7 +76189,7 @@ this.denom 0 1 arg -1937217457 +609962972 1 arg.numer 1 @@ -75405,7 +76212,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2200 this -814227632 +1818544933 1 this.numer 0 @@ -75424,7 +76231,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2199 this -899017902 +1704629915 1 this.numer 9 @@ -75433,7 +76240,7 @@ this.denom 0 1 arg -1937217457 +609962972 1 arg.numer 1 @@ -75442,7 +76249,7 @@ arg.denom 0 1 return -814227632 +1818544933 1 return.numer 0 @@ -75455,7 +76262,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2196 this -899017902 +1704629915 1 this.numer 9 @@ -75464,7 +76271,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -75473,7 +76280,7 @@ arg.denom 0 1 return -814227632 +1818544933 1 return.numer 0 @@ -75486,7 +76293,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2201 this -814227632 +1818544933 1 this.numer 0 @@ -75499,7 +76306,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2202 this -814227632 +1818544933 1 this.numer 0 @@ -75512,7 +76319,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2202 this -814227632 +1818544933 1 this.numer 0 @@ -75528,7 +76335,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2201 this -814227632 +1818544933 1 this.numer 0 @@ -75537,7 +76344,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -75547,7 +76354,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2203 this -523298718 +581318631 1 this.numer 100 @@ -75556,7 +76363,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -75569,7 +76376,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2204 this -1658075389 +200224114 1 this.numer 1 @@ -75592,7 +76399,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2205 this -958012340 +1793436274 1 this.numer -1 @@ -75611,7 +76418,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2204 this -1658075389 +200224114 1 this.numer 1 @@ -75620,7 +76427,7 @@ this.denom 0 1 return -958012340 +1793436274 1 return.numer -1 @@ -75633,7 +76440,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2206 this -523298718 +581318631 1 this.numer 100 @@ -75642,7 +76449,7 @@ this.denom 0 1 arg -958012340 +1793436274 1 arg.numer -1 @@ -75665,7 +76472,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2207 this -1628496821 +572868060 1 this.numer 0 @@ -75684,7 +76491,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2206 this -523298718 +581318631 1 this.numer 100 @@ -75693,7 +76500,7 @@ this.denom 0 1 arg -958012340 +1793436274 1 arg.numer -1 @@ -75702,7 +76509,7 @@ arg.denom 0 1 return -1628496821 +572868060 1 return.numer 0 @@ -75715,7 +76522,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2203 this -523298718 +581318631 1 this.numer 100 @@ -75724,7 +76531,7 @@ this.denom 0 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -75733,7 +76540,7 @@ arg.denom 0 1 return -1628496821 +572868060 1 return.numer 0 @@ -75746,7 +76553,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2208 this -1628496821 +572868060 1 this.numer 0 @@ -75759,7 +76566,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2209 this -1628496821 +572868060 1 this.numer 0 @@ -75772,7 +76579,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2209 this -1628496821 +572868060 1 this.numer 0 @@ -75788,7 +76595,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2208 this -1628496821 +572868060 1 this.numer 0 @@ -75797,7 +76604,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -75807,7 +76614,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2210 this -1658075389 +200224114 1 this.numer 1 @@ -75816,7 +76623,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -75829,7 +76636,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2211 this -523298718 +581318631 1 this.numer 100 @@ -75852,7 +76659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2212 this -466989532 +1549725679 1 this.numer -100 @@ -75871,7 +76678,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2211 this -523298718 +581318631 1 this.numer 100 @@ -75880,7 +76687,7 @@ this.denom 0 1 return -466989532 +1549725679 1 return.numer -100 @@ -75893,7 +76700,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2213 this -1658075389 +200224114 1 this.numer 1 @@ -75902,7 +76709,7 @@ this.denom 0 1 arg -466989532 +1549725679 1 arg.numer -100 @@ -75925,7 +76732,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2214 this -1787818186 +371800738 1 this.numer 0 @@ -75944,7 +76751,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2213 this -1658075389 +200224114 1 this.numer 1 @@ -75953,7 +76760,7 @@ this.denom 0 1 arg -466989532 +1549725679 1 arg.numer -100 @@ -75962,7 +76769,7 @@ arg.denom 0 1 return -1787818186 +371800738 1 return.numer 0 @@ -75975,7 +76782,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2210 this -1658075389 +200224114 1 this.numer 1 @@ -75984,7 +76791,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -75993,7 +76800,7 @@ arg.denom 0 1 return -1787818186 +371800738 1 return.numer 0 @@ -76006,7 +76813,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2215 this -1787818186 +371800738 1 this.numer 0 @@ -76019,7 +76826,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2216 this -1787818186 +371800738 1 this.numer 0 @@ -76032,7 +76839,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2216 this -1787818186 +371800738 1 this.numer 0 @@ -76048,7 +76855,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2215 this -1787818186 +371800738 1 this.numer 0 @@ -76057,7 +76864,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -76067,7 +76874,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2217 this -523298718 +581318631 1 this.numer 100 @@ -76076,7 +76883,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -76089,7 +76896,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2218 this -1525259451 +1773283386 1 this.numer -1 @@ -76112,7 +76919,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2219 this -269063278 +1364767791 1 this.numer 1 @@ -76131,7 +76938,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2218 this -1525259451 +1773283386 1 this.numer -1 @@ -76140,7 +76947,7 @@ this.denom 0 1 return -269063278 +1364767791 1 return.numer 1 @@ -76153,7 +76960,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2220 this -523298718 +581318631 1 this.numer 100 @@ -76162,7 +76969,7 @@ this.denom 0 1 arg -269063278 +1364767791 1 arg.numer 1 @@ -76185,7 +76992,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2221 this -1693436411 +1499136125 1 this.numer 0 @@ -76204,7 +77011,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2220 this -523298718 +581318631 1 this.numer 100 @@ -76213,7 +77020,7 @@ this.denom 0 1 arg -269063278 +1364767791 1 arg.numer 1 @@ -76222,7 +77029,7 @@ arg.denom 0 1 return -1693436411 +1499136125 1 return.numer 0 @@ -76235,7 +77042,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2217 this -523298718 +581318631 1 this.numer 100 @@ -76244,7 +77051,7 @@ this.denom 0 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -76253,7 +77060,7 @@ arg.denom 0 1 return -1693436411 +1499136125 1 return.numer 0 @@ -76266,7 +77073,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2222 this -1693436411 +1499136125 1 this.numer 0 @@ -76279,7 +77086,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2223 this -1693436411 +1499136125 1 this.numer 0 @@ -76292,7 +77099,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2223 this -1693436411 +1499136125 1 this.numer 0 @@ -76308,7 +77115,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2222 this -1693436411 +1499136125 1 this.numer 0 @@ -76317,7 +77124,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -76327,7 +77134,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2224 this -1525259451 +1773283386 1 this.numer -1 @@ -76336,7 +77143,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -76349,7 +77156,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2225 this -523298718 +581318631 1 this.numer 100 @@ -76372,7 +77179,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2226 this -984985986 +1926343982 1 this.numer -100 @@ -76391,7 +77198,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2225 this -523298718 +581318631 1 this.numer 100 @@ -76400,7 +77207,7 @@ this.denom 0 1 return -984985986 +1926343982 1 return.numer -100 @@ -76413,7 +77220,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2227 this -1525259451 +1773283386 1 this.numer -1 @@ -76422,7 +77229,7 @@ this.denom 0 1 arg -984985986 +1926343982 1 arg.numer -100 @@ -76445,7 +77252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2228 this -1855515626 +762476028 1 this.numer 0 @@ -76464,7 +77271,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2227 this -1525259451 +1773283386 1 this.numer -1 @@ -76473,7 +77280,7 @@ this.denom 0 1 arg -984985986 +1926343982 1 arg.numer -100 @@ -76482,7 +77289,7 @@ arg.denom 0 1 return -1855515626 +762476028 1 return.numer 0 @@ -76495,7 +77302,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2224 this -1525259451 +1773283386 1 this.numer -1 @@ -76504,7 +77311,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -76513,7 +77320,7 @@ arg.denom 0 1 return -1855515626 +762476028 1 return.numer 0 @@ -76526,7 +77333,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2229 this -1855515626 +762476028 1 this.numer 0 @@ -76539,7 +77346,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2230 this -1855515626 +762476028 1 this.numer 0 @@ -76552,7 +77359,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2230 this -1855515626 +762476028 1 this.numer 0 @@ -76568,7 +77375,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2229 this -1855515626 +762476028 1 this.numer 0 @@ -76577,7 +77384,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -76587,7 +77394,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2231 this -523298718 +581318631 1 this.numer 100 @@ -76596,7 +77403,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -76609,7 +77416,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2232 this -523298718 +581318631 1 this.numer 100 @@ -76632,7 +77439,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2233 this -2041088095 +966739377 1 this.numer -100 @@ -76651,7 +77458,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2232 this -523298718 +581318631 1 this.numer 100 @@ -76660,7 +77467,7 @@ this.denom 0 1 return -2041088095 +966739377 1 return.numer -100 @@ -76673,7 +77480,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2234 this -523298718 +581318631 1 this.numer 100 @@ -76682,7 +77489,7 @@ this.denom 0 1 arg -2041088095 +966739377 1 arg.numer -100 @@ -76705,7 +77512,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2235 this -663835487 +952562199 1 this.numer 0 @@ -76724,7 +77531,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2234 this -523298718 +581318631 1 this.numer 100 @@ -76733,7 +77540,7 @@ this.denom 0 1 arg -2041088095 +966739377 1 arg.numer -100 @@ -76742,7 +77549,7 @@ arg.denom 0 1 return -663835487 +952562199 1 return.numer 0 @@ -76755,7 +77562,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2231 this -523298718 +581318631 1 this.numer 100 @@ -76764,7 +77571,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -76773,7 +77580,7 @@ arg.denom 0 1 return -663835487 +952562199 1 return.numer 0 @@ -76786,7 +77593,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2236 this -663835487 +952562199 1 this.numer 0 @@ -76799,7 +77606,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2237 this -663835487 +952562199 1 this.numer 0 @@ -76812,7 +77619,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2237 this -663835487 +952562199 1 this.numer 0 @@ -76828,7 +77635,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2236 this -663835487 +952562199 1 this.numer 0 @@ -76837,7 +77644,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -76847,7 +77654,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2238 this -523298718 +581318631 1 this.numer 100 @@ -76856,7 +77663,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -76869,7 +77676,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2239 this -523298718 +581318631 1 this.numer 100 @@ -76892,7 +77699,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2240 this -905483844 +1199673596 1 this.numer -100 @@ -76911,7 +77718,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2239 this -523298718 +581318631 1 this.numer 100 @@ -76920,7 +77727,7 @@ this.denom 0 1 return -905483844 +1199673596 1 return.numer -100 @@ -76933,7 +77740,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2241 this -523298718 +581318631 1 this.numer 100 @@ -76942,7 +77749,7 @@ this.denom 0 1 arg -905483844 +1199673596 1 arg.numer -100 @@ -76965,7 +77772,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2242 this -1397843466 +2044903525 1 this.numer 0 @@ -76984,7 +77791,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2241 this -523298718 +581318631 1 this.numer 100 @@ -76993,7 +77800,7 @@ this.denom 0 1 arg -905483844 +1199673596 1 arg.numer -100 @@ -77002,7 +77809,7 @@ arg.denom 0 1 return -1397843466 +2044903525 1 return.numer 0 @@ -77015,7 +77822,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2238 this -523298718 +581318631 1 this.numer 100 @@ -77024,7 +77831,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -77033,7 +77840,7 @@ arg.denom 0 1 return -1397843466 +2044903525 1 return.numer 0 @@ -77046,7 +77853,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2243 this -1397843466 +2044903525 1 this.numer 0 @@ -77059,7 +77866,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2244 this -1397843466 +2044903525 1 this.numer 0 @@ -77072,7 +77879,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2244 this -1397843466 +2044903525 1 this.numer 0 @@ -77088,7 +77895,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2243 this -1397843466 +2044903525 1 this.numer 0 @@ -77097,7 +77904,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -77107,7 +77914,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2245 this -523298718 +581318631 1 this.numer 100 @@ -77116,7 +77923,7 @@ this.denom 0 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -77129,7 +77936,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2246 this -1136018961 +1877453512 1 this.numer 2 @@ -77152,7 +77959,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2247 this -84034882 +982757413 1 this.numer -2 @@ -77171,7 +77978,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2246 this -1136018961 +1877453512 1 this.numer 2 @@ -77180,7 +77987,7 @@ this.denom 0 1 return -84034882 +982757413 1 return.numer -2 @@ -77193,7 +78000,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2248 this -523298718 +581318631 1 this.numer 100 @@ -77202,7 +78009,7 @@ this.denom 0 1 arg -84034882 +982757413 1 arg.numer -2 @@ -77225,7 +78032,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2249 this -1477505695 +902478634 1 this.numer 0 @@ -77244,7 +78051,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2248 this -523298718 +581318631 1 this.numer 100 @@ -77253,7 +78060,7 @@ this.denom 0 1 arg -84034882 +982757413 1 arg.numer -2 @@ -77262,7 +78069,7 @@ arg.denom 0 1 return -1477505695 +902478634 1 return.numer 0 @@ -77275,7 +78082,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2245 this -523298718 +581318631 1 this.numer 100 @@ -77284,7 +78091,7 @@ this.denom 0 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -77293,7 +78100,7 @@ arg.denom 0 1 return -1477505695 +902478634 1 return.numer 0 @@ -77306,7 +78113,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2250 this -1477505695 +902478634 1 this.numer 0 @@ -77319,7 +78126,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2251 this -1477505695 +902478634 1 this.numer 0 @@ -77332,7 +78139,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2251 this -1477505695 +902478634 1 this.numer 0 @@ -77348,7 +78155,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2250 this -1477505695 +902478634 1 this.numer 0 @@ -77357,7 +78164,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -77367,7 +78174,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2252 this -1136018961 +1877453512 1 this.numer 2 @@ -77376,7 +78183,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -77389,7 +78196,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2253 this -523298718 +581318631 1 this.numer 100 @@ -77412,7 +78219,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2254 this -1084805604 +2114444063 1 this.numer -100 @@ -77431,7 +78238,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2253 this -523298718 +581318631 1 this.numer 100 @@ -77440,7 +78247,7 @@ this.denom 0 1 return -1084805604 +2114444063 1 return.numer -100 @@ -77453,7 +78260,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2255 this -1136018961 +1877453512 1 this.numer 2 @@ -77462,7 +78269,7 @@ this.denom 0 1 arg -1084805604 +2114444063 1 arg.numer -100 @@ -77485,7 +78292,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2256 this -191623398 +294247762 1 this.numer 0 @@ -77504,7 +78311,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2255 this -1136018961 +1877453512 1 this.numer 2 @@ -77513,7 +78320,7 @@ this.denom 0 1 arg -1084805604 +2114444063 1 arg.numer -100 @@ -77522,7 +78329,7 @@ arg.denom 0 1 return -191623398 +294247762 1 return.numer 0 @@ -77535,7 +78342,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2252 this -1136018961 +1877453512 1 this.numer 2 @@ -77544,7 +78351,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -77553,7 +78360,7 @@ arg.denom 0 1 return -191623398 +294247762 1 return.numer 0 @@ -77566,7 +78373,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2257 this -191623398 +294247762 1 this.numer 0 @@ -77579,7 +78386,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2258 this -191623398 +294247762 1 this.numer 0 @@ -77592,7 +78399,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2258 this -191623398 +294247762 1 this.numer 0 @@ -77608,7 +78415,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2257 this -191623398 +294247762 1 this.numer 0 @@ -77617,7 +78424,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -77627,7 +78434,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2259 this -523298718 +581318631 1 this.numer 100 @@ -77636,7 +78443,7 @@ this.denom 0 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -77649,7 +78456,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2260 this -1941055697 +487694075 1 this.numer -2 @@ -77672,7 +78479,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2261 this -1536463333 +918312414 1 this.numer 2 @@ -77691,7 +78498,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2260 this -1941055697 +487694075 1 this.numer -2 @@ -77700,7 +78507,7 @@ this.denom 0 1 return -1536463333 +918312414 1 return.numer 2 @@ -77713,7 +78520,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2262 this -523298718 +581318631 1 this.numer 100 @@ -77722,7 +78529,7 @@ this.denom 0 1 arg -1536463333 +918312414 1 arg.numer 2 @@ -77745,7 +78552,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2263 this -1995866203 +1448061896 1 this.numer 0 @@ -77764,7 +78571,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2262 this -523298718 +581318631 1 this.numer 100 @@ -77773,7 +78580,7 @@ this.denom 0 1 arg -1536463333 +918312414 1 arg.numer 2 @@ -77782,7 +78589,7 @@ arg.denom 0 1 return -1995866203 +1448061896 1 return.numer 0 @@ -77795,7 +78602,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2259 this -523298718 +581318631 1 this.numer 100 @@ -77804,7 +78611,7 @@ this.denom 0 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -77813,7 +78620,7 @@ arg.denom 0 1 return -1995866203 +1448061896 1 return.numer 0 @@ -77826,7 +78633,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2264 this -1995866203 +1448061896 1 this.numer 0 @@ -77839,7 +78646,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2265 this -1995866203 +1448061896 1 this.numer 0 @@ -77852,7 +78659,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2265 this -1995866203 +1448061896 1 this.numer 0 @@ -77868,7 +78675,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2264 this -1995866203 +1448061896 1 this.numer 0 @@ -77877,7 +78684,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -77887,7 +78694,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2266 this -1941055697 +487694075 1 this.numer -2 @@ -77896,7 +78703,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -77909,7 +78716,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2267 this -523298718 +581318631 1 this.numer 100 @@ -77932,7 +78739,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2268 this -828707681 +382750013 1 this.numer -100 @@ -77951,7 +78758,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2267 this -523298718 +581318631 1 this.numer 100 @@ -77960,7 +78767,7 @@ this.denom 0 1 return -828707681 +382750013 1 return.numer -100 @@ -77973,7 +78780,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2269 this -1941055697 +487694075 1 this.numer -2 @@ -77982,7 +78789,7 @@ this.denom 0 1 arg -828707681 +382750013 1 arg.numer -100 @@ -78005,7 +78812,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2270 this -1658543772 +1240232440 1 this.numer 0 @@ -78024,7 +78831,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2269 this -1941055697 +487694075 1 this.numer -2 @@ -78033,7 +78840,7 @@ this.denom 0 1 arg -828707681 +382750013 1 arg.numer -100 @@ -78042,7 +78849,7 @@ arg.denom 0 1 return -1658543772 +1240232440 1 return.numer 0 @@ -78055,7 +78862,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2266 this -1941055697 +487694075 1 this.numer -2 @@ -78064,7 +78871,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -78073,7 +78880,7 @@ arg.denom 0 1 return -1658543772 +1240232440 1 return.numer 0 @@ -78086,7 +78893,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2271 this -1658543772 +1240232440 1 this.numer 0 @@ -78099,7 +78906,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2272 this -1658543772 +1240232440 1 this.numer 0 @@ -78112,7 +78919,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2272 this -1658543772 +1240232440 1 this.numer 0 @@ -78128,7 +78935,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2271 this -1658543772 +1240232440 1 this.numer 0 @@ -78137,7 +78944,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -78147,7 +78954,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2273 this -523298718 +581318631 1 this.numer 100 @@ -78156,7 +78963,7 @@ this.denom 0 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -78169,7 +78976,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2274 this -899017902 +1704629915 1 this.numer 9 @@ -78192,7 +78999,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2275 this -807437944 +489349054 1 this.numer -9 @@ -78211,7 +79018,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2274 this -899017902 +1704629915 1 this.numer 9 @@ -78220,7 +79027,7 @@ this.denom 0 1 return -807437944 +489349054 1 return.numer -9 @@ -78233,7 +79040,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2276 this -523298718 +581318631 1 this.numer 100 @@ -78242,7 +79049,7 @@ this.denom 0 1 arg -807437944 +489349054 1 arg.numer -9 @@ -78265,7 +79072,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2277 this -660359415 +915416632 1 this.numer 0 @@ -78284,7 +79091,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2276 this -523298718 +581318631 1 this.numer 100 @@ -78293,7 +79100,7 @@ this.denom 0 1 arg -807437944 +489349054 1 arg.numer -9 @@ -78302,7 +79109,7 @@ arg.denom 0 1 return -660359415 +915416632 1 return.numer 0 @@ -78315,7 +79122,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2273 this -523298718 +581318631 1 this.numer 100 @@ -78324,7 +79131,7 @@ this.denom 0 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -78333,7 +79140,7 @@ arg.denom 0 1 return -660359415 +915416632 1 return.numer 0 @@ -78346,7 +79153,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2278 this -660359415 +915416632 1 this.numer 0 @@ -78359,7 +79166,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2279 this -660359415 +915416632 1 this.numer 0 @@ -78372,7 +79179,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2279 this -660359415 +915416632 1 this.numer 0 @@ -78388,7 +79195,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2278 this -660359415 +915416632 1 this.numer 0 @@ -78397,7 +79204,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -78407,7 +79214,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2280 this -899017902 +1704629915 1 this.numer 9 @@ -78416,7 +79223,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -78429,7 +79236,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2281 this -523298718 +581318631 1 this.numer 100 @@ -78452,7 +79259,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2282 this -465200209 +574434418 1 this.numer -100 @@ -78471,7 +79278,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2281 this -523298718 +581318631 1 this.numer 100 @@ -78480,7 +79287,7 @@ this.denom 0 1 return -465200209 +574434418 1 return.numer -100 @@ -78493,7 +79300,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2283 this -899017902 +1704629915 1 this.numer 9 @@ -78502,7 +79309,7 @@ this.denom 0 1 arg -465200209 +574434418 1 arg.numer -100 @@ -78525,7 +79332,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2284 this -1779437583 +150268540 1 this.numer 0 @@ -78544,7 +79351,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2283 this -899017902 +1704629915 1 this.numer 9 @@ -78553,7 +79360,7 @@ this.denom 0 1 arg -465200209 +574434418 1 arg.numer -100 @@ -78562,7 +79369,7 @@ arg.denom 0 1 return -1779437583 +150268540 1 return.numer 0 @@ -78575,7 +79382,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2280 this -899017902 +1704629915 1 this.numer 9 @@ -78584,7 +79391,7 @@ this.denom 0 1 arg -523298718 +581318631 1 arg.numer 100 @@ -78593,7 +79400,7 @@ arg.denom 0 1 return -1779437583 +150268540 1 return.numer 0 @@ -78606,7 +79413,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2285 this -1779437583 +150268540 1 this.numer 0 @@ -78619,7 +79426,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2286 this -1779437583 +150268540 1 this.numer 0 @@ -78632,7 +79439,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2286 this -1779437583 +150268540 1 this.numer 0 @@ -78648,7 +79455,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2285 this -1779437583 +150268540 1 this.numer 0 @@ -78657,7 +79464,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -78667,7 +79474,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2287 this -2130132329 +2095303566 1 this.numer 8 @@ -78676,7 +79483,7 @@ this.denom 7 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -78689,7 +79496,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2288 this -1658075389 +200224114 1 this.numer 1 @@ -78712,7 +79519,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2289 this -1150189359 +1130894323 1 this.numer -1 @@ -78731,7 +79538,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2288 this -1658075389 +200224114 1 this.numer 1 @@ -78740,7 +79547,7 @@ this.denom 0 1 return -1150189359 +1130894323 1 return.numer -1 @@ -78753,7 +79560,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2290 this -2130132329 +2095303566 1 this.numer 8 @@ -78762,7 +79569,7 @@ this.denom 7 1 arg -1150189359 +1130894323 1 arg.numer -1 @@ -78785,7 +79592,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2291 this -1732250066 +1962826816 1 this.numer -7 @@ -78804,7 +79611,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2290 this -2130132329 +2095303566 1 this.numer 8 @@ -78813,7 +79620,7 @@ this.denom 7 1 arg -1150189359 +1130894323 1 arg.numer -1 @@ -78822,7 +79629,7 @@ arg.denom 0 1 return -1732250066 +1962826816 1 return.numer -7 @@ -78835,7 +79642,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2287 this -2130132329 +2095303566 1 this.numer 8 @@ -78844,7 +79651,7 @@ this.denom 7 1 arg -1658075389 +200224114 1 arg.numer 1 @@ -78853,7 +79660,7 @@ arg.denom 0 1 return -1732250066 +1962826816 1 return.numer -7 @@ -78866,7 +79673,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2292 this -1732250066 +1962826816 1 this.numer -7 @@ -78879,7 +79686,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2293 this -1732250066 +1962826816 1 this.numer -7 @@ -78892,7 +79699,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2293 this -1732250066 +1962826816 1 this.numer -7 @@ -78908,7 +79715,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2292 this -1732250066 +1962826816 1 this.numer -7 @@ -78917,7 +79724,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -78927,7 +79734,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2294 this -1658075389 +200224114 1 this.numer 1 @@ -78936,7 +79743,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -78949,7 +79756,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2295 this -2130132329 +2095303566 1 this.numer 8 @@ -78995,7 +79802,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2296 this -491056883 +1072410641 1 this.numer -8 @@ -79014,7 +79821,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2295 this -2130132329 +2095303566 1 this.numer 8 @@ -79023,7 +79830,7 @@ this.denom 7 1 return -491056883 +1072410641 1 return.numer -8 @@ -79036,7 +79843,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2298 this -1658075389 +200224114 1 this.numer 1 @@ -79045,7 +79852,7 @@ this.denom 0 1 arg -491056883 +1072410641 1 arg.numer -8 @@ -79068,7 +79875,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2299 this -413377160 +283318938 1 this.numer 7 @@ -79087,7 +79894,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2298 this -1658075389 +200224114 1 this.numer 1 @@ -79096,7 +79903,7 @@ this.denom 0 1 arg -491056883 +1072410641 1 arg.numer -8 @@ -79105,7 +79912,7 @@ arg.denom 7 1 return -413377160 +283318938 1 return.numer 7 @@ -79118,7 +79925,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2294 this -1658075389 +200224114 1 this.numer 1 @@ -79127,7 +79934,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -79136,7 +79943,7 @@ arg.denom 7 1 return -413377160 +283318938 1 return.numer 7 @@ -79149,7 +79956,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2300 this -413377160 +283318938 1 this.numer 7 @@ -79162,7 +79969,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2301 this -413377160 +283318938 1 this.numer 7 @@ -79175,7 +79982,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2301 this -413377160 +283318938 1 this.numer 7 @@ -79191,7 +79998,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2300 this -413377160 +283318938 1 this.numer 7 @@ -79200,7 +80007,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -79210,7 +80017,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2302 this -2130132329 +2095303566 1 this.numer 8 @@ -79219,7 +80026,7 @@ this.denom 7 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -79232,7 +80039,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2303 this -1525259451 +1773283386 1 this.numer -1 @@ -79255,7 +80062,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2304 this -520330075 +320304382 1 this.numer 1 @@ -79274,7 +80081,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2303 this -1525259451 +1773283386 1 this.numer -1 @@ -79283,7 +80090,7 @@ this.denom 0 1 return -520330075 +320304382 1 return.numer 1 @@ -79296,7 +80103,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2305 this -2130132329 +2095303566 1 this.numer 8 @@ -79305,7 +80112,7 @@ this.denom 7 1 arg -520330075 +320304382 1 arg.numer 1 @@ -79328,7 +80135,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2306 this -634159941 +361571968 1 this.numer 7 @@ -79347,7 +80154,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2305 this -2130132329 +2095303566 1 this.numer 8 @@ -79356,7 +80163,7 @@ this.denom 7 1 arg -520330075 +320304382 1 arg.numer 1 @@ -79365,7 +80172,7 @@ arg.denom 0 1 return -634159941 +361571968 1 return.numer 7 @@ -79378,7 +80185,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2302 this -2130132329 +2095303566 1 this.numer 8 @@ -79387,7 +80194,7 @@ this.denom 7 1 arg -1525259451 +1773283386 1 arg.numer -1 @@ -79396,7 +80203,7 @@ arg.denom 0 1 return -634159941 +361571968 1 return.numer 7 @@ -79409,7 +80216,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2307 this -634159941 +361571968 1 this.numer 7 @@ -79422,7 +80229,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2308 this -634159941 +361571968 1 this.numer 7 @@ -79435,7 +80242,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2308 this -634159941 +361571968 1 this.numer 7 @@ -79451,7 +80258,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2307 this -634159941 +361571968 1 this.numer 7 @@ -79460,7 +80267,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -79470,7 +80277,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2309 this -1525259451 +1773283386 1 this.numer -1 @@ -79479,7 +80286,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -79492,7 +80299,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2310 this -2130132329 +2095303566 1 this.numer 8 @@ -79538,7 +80345,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2311 this -364788326 +2005169944 1 this.numer -8 @@ -79557,7 +80364,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2310 this -2130132329 +2095303566 1 this.numer 8 @@ -79566,7 +80373,7 @@ this.denom 7 1 return -364788326 +2005169944 1 return.numer -8 @@ -79579,7 +80386,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2313 this -1525259451 +1773283386 1 this.numer -1 @@ -79588,7 +80395,7 @@ this.denom 0 1 arg -364788326 +2005169944 1 arg.numer -8 @@ -79611,7 +80418,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2314 this -2079066544 +2134607032 1 this.numer -7 @@ -79630,7 +80437,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2313 this -1525259451 +1773283386 1 this.numer -1 @@ -79639,7 +80446,7 @@ this.denom 0 1 arg -364788326 +2005169944 1 arg.numer -8 @@ -79648,7 +80455,7 @@ arg.denom 7 1 return -2079066544 +2134607032 1 return.numer -7 @@ -79661,7 +80468,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2309 this -1525259451 +1773283386 1 this.numer -1 @@ -79670,7 +80477,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -79679,7 +80486,7 @@ arg.denom 7 1 return -2079066544 +2134607032 1 return.numer -7 @@ -79692,7 +80499,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2315 this -2079066544 +2134607032 1 this.numer -7 @@ -79705,7 +80512,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2316 this -2079066544 +2134607032 1 this.numer -7 @@ -79718,7 +80525,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2316 this -2079066544 +2134607032 1 this.numer -7 @@ -79734,7 +80541,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2315 this -2079066544 +2134607032 1 this.numer -7 @@ -79743,7 +80550,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -79753,7 +80560,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2317 this -2130132329 +2095303566 1 this.numer 8 @@ -79762,7 +80569,7 @@ this.denom 7 1 arg -523298718 +581318631 1 arg.numer 100 @@ -79775,7 +80582,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2318 this -523298718 +581318631 1 this.numer 100 @@ -79798,7 +80605,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2319 this -1164984671 +1470344997 1 this.numer -100 @@ -79817,7 +80624,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2318 this -523298718 +581318631 1 this.numer 100 @@ -79826,7 +80633,7 @@ this.denom 0 1 return -1164984671 +1470344997 1 return.numer -100 @@ -79839,7 +80646,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2320 this -2130132329 +2095303566 1 this.numer 8 @@ -79848,7 +80655,7 @@ this.denom 7 1 arg -1164984671 +1470344997 1 arg.numer -100 @@ -79871,7 +80678,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2321 this -1288955798 +728115831 1 this.numer -700 @@ -79890,7 +80697,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2320 this -2130132329 +2095303566 1 this.numer 8 @@ -79899,7 +80706,7 @@ this.denom 7 1 arg -1164984671 +1470344997 1 arg.numer -100 @@ -79908,7 +80715,7 @@ arg.denom 0 1 return -1288955798 +728115831 1 return.numer -700 @@ -79921,7 +80728,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2317 this -2130132329 +2095303566 1 this.numer 8 @@ -79930,7 +80737,7 @@ this.denom 7 1 arg -523298718 +581318631 1 arg.numer 100 @@ -79939,7 +80746,7 @@ arg.denom 0 1 return -1288955798 +728115831 1 return.numer -700 @@ -79952,7 +80759,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2322 this -1288955798 +728115831 1 this.numer -700 @@ -79965,7 +80772,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2323 this -1288955798 +728115831 1 this.numer -700 @@ -79978,7 +80785,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2323 this -1288955798 +728115831 1 this.numer -700 @@ -79994,7 +80801,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2322 this -1288955798 +728115831 1 this.numer -700 @@ -80003,7 +80810,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -80013,7 +80820,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2324 this -523298718 +581318631 1 this.numer 100 @@ -80022,7 +80829,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -80035,7 +80842,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2325 this -2130132329 +2095303566 1 this.numer 8 @@ -80081,7 +80888,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2326 this -1812549697 +2131670196 1 this.numer -8 @@ -80100,7 +80907,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2325 this -2130132329 +2095303566 1 this.numer 8 @@ -80109,7 +80916,7 @@ this.denom 7 1 return -1812549697 +2131670196 1 return.numer -8 @@ -80122,7 +80929,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2328 this -523298718 +581318631 1 this.numer 100 @@ -80131,7 +80938,7 @@ this.denom 0 1 arg -1812549697 +2131670196 1 arg.numer -8 @@ -80154,7 +80961,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2329 this -1467224784 +1546908073 1 this.numer 700 @@ -80173,7 +80980,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2328 this -523298718 +581318631 1 this.numer 100 @@ -80182,7 +80989,7 @@ this.denom 0 1 arg -1812549697 +2131670196 1 arg.numer -8 @@ -80191,7 +80998,7 @@ arg.denom 7 1 return -1467224784 +1546908073 1 return.numer 700 @@ -80204,7 +81011,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2324 this -523298718 +581318631 1 this.numer 100 @@ -80213,7 +81020,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -80222,7 +81029,7 @@ arg.denom 7 1 return -1467224784 +1546908073 1 return.numer 700 @@ -80235,7 +81042,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2330 this -1467224784 +1546908073 1 this.numer 700 @@ -80248,7 +81055,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2331 this -1467224784 +1546908073 1 this.numer 700 @@ -80261,7 +81068,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2331 this -1467224784 +1546908073 1 this.numer 700 @@ -80277,7 +81084,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2330 this -1467224784 +1546908073 1 this.numer 700 @@ -80286,7 +81093,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -80296,7 +81103,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2332 this -2130132329 +2095303566 1 this.numer 8 @@ -80305,7 +81112,7 @@ this.denom 7 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -80318,7 +81125,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2333 this -1136018961 +1877453512 1 this.numer 2 @@ -80341,7 +81148,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2334 this -92226187 +371439501 1 this.numer -2 @@ -80360,7 +81167,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2333 this -1136018961 +1877453512 1 this.numer 2 @@ -80369,7 +81176,7 @@ this.denom 0 1 return -92226187 +371439501 1 return.numer -2 @@ -80382,7 +81189,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2335 this -2130132329 +2095303566 1 this.numer 8 @@ -80391,7 +81198,7 @@ this.denom 7 1 arg -92226187 +371439501 1 arg.numer -2 @@ -80414,7 +81221,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2336 this -1709815422 +210506412 1 this.numer -14 @@ -80433,7 +81240,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2335 this -2130132329 +2095303566 1 this.numer 8 @@ -80442,7 +81249,7 @@ this.denom 7 1 arg -92226187 +371439501 1 arg.numer -2 @@ -80451,7 +81258,7 @@ arg.denom 0 1 return -1709815422 +210506412 1 return.numer -14 @@ -80464,7 +81271,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2332 this -2130132329 +2095303566 1 this.numer 8 @@ -80473,7 +81280,7 @@ this.denom 7 1 arg -1136018961 +1877453512 1 arg.numer 2 @@ -80482,7 +81289,7 @@ arg.denom 0 1 return -1709815422 +210506412 1 return.numer -14 @@ -80495,7 +81302,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2337 this -1709815422 +210506412 1 this.numer -14 @@ -80508,7 +81315,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2338 this -1709815422 +210506412 1 this.numer -14 @@ -80521,7 +81328,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2338 this -1709815422 +210506412 1 this.numer -14 @@ -80537,7 +81344,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2337 this -1709815422 +210506412 1 this.numer -14 @@ -80546,7 +81353,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -80556,7 +81363,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2339 this -1136018961 +1877453512 1 this.numer 2 @@ -80565,7 +81372,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -80578,7 +81385,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2340 this -2130132329 +2095303566 1 this.numer 8 @@ -80624,7 +81431,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2341 this -1389117047 +112049309 1 this.numer -8 @@ -80643,7 +81450,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2340 this -2130132329 +2095303566 1 this.numer 8 @@ -80652,7 +81459,7 @@ this.denom 7 1 return -1389117047 +112049309 1 return.numer -8 @@ -80665,7 +81472,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2343 this -1136018961 +1877453512 1 this.numer 2 @@ -80674,7 +81481,7 @@ this.denom 0 1 arg -1389117047 +112049309 1 arg.numer -8 @@ -80697,7 +81504,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2344 this -1595482392 +1162918744 1 this.numer 14 @@ -80716,7 +81523,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2343 this -1136018961 +1877453512 1 this.numer 2 @@ -80725,7 +81532,7 @@ this.denom 0 1 arg -1389117047 +112049309 1 arg.numer -8 @@ -80734,7 +81541,7 @@ arg.denom 7 1 return -1595482392 +1162918744 1 return.numer 14 @@ -80747,7 +81554,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2339 this -1136018961 +1877453512 1 this.numer 2 @@ -80756,7 +81563,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -80765,7 +81572,7 @@ arg.denom 7 1 return -1595482392 +1162918744 1 return.numer 14 @@ -80778,7 +81585,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2345 this -1595482392 +1162918744 1 this.numer 14 @@ -80791,7 +81598,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2346 this -1595482392 +1162918744 1 this.numer 14 @@ -80804,7 +81611,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2346 this -1595482392 +1162918744 1 this.numer 14 @@ -80820,7 +81627,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2345 this -1595482392 +1162918744 1 this.numer 14 @@ -80829,7 +81636,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -80839,7 +81646,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2347 this -2130132329 +2095303566 1 this.numer 8 @@ -80848,7 +81655,7 @@ this.denom 7 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -80861,7 +81668,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2348 this -1941055697 +487694075 1 this.numer -2 @@ -80884,7 +81691,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2349 this -1791745902 +1321530272 1 this.numer 2 @@ -80903,7 +81710,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2348 this -1941055697 +487694075 1 this.numer -2 @@ -80912,7 +81719,7 @@ this.denom 0 1 return -1791745902 +1321530272 1 return.numer 2 @@ -80925,7 +81732,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2350 this -2130132329 +2095303566 1 this.numer 8 @@ -80934,7 +81741,7 @@ this.denom 7 1 arg -1791745902 +1321530272 1 arg.numer 2 @@ -80957,7 +81764,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2351 this -1857676680 +573673894 1 this.numer 14 @@ -80976,7 +81783,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2350 this -2130132329 +2095303566 1 this.numer 8 @@ -80985,7 +81792,7 @@ this.denom 7 1 arg -1791745902 +1321530272 1 arg.numer 2 @@ -80994,7 +81801,7 @@ arg.denom 0 1 return -1857676680 +573673894 1 return.numer 14 @@ -81007,7 +81814,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2347 this -2130132329 +2095303566 1 this.numer 8 @@ -81016,7 +81823,7 @@ this.denom 7 1 arg -1941055697 +487694075 1 arg.numer -2 @@ -81025,7 +81832,7 @@ arg.denom 0 1 return -1857676680 +573673894 1 return.numer 14 @@ -81038,7 +81845,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2352 this -1857676680 +573673894 1 this.numer 14 @@ -81051,7 +81858,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2353 this -1857676680 +573673894 1 this.numer 14 @@ -81064,7 +81871,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2353 this -1857676680 +573673894 1 this.numer 14 @@ -81080,7 +81887,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2352 this -1857676680 +573673894 1 this.numer 14 @@ -81089,7 +81896,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -81099,7 +81906,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2354 this -1941055697 +487694075 1 this.numer -2 @@ -81108,7 +81915,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -81121,7 +81928,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2355 this -2130132329 +2095303566 1 this.numer 8 @@ -81167,7 +81974,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2356 this -1854700674 +1226020905 1 this.numer -8 @@ -81186,7 +81993,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2355 this -2130132329 +2095303566 1 this.numer 8 @@ -81195,7 +82002,7 @@ this.denom 7 1 return -1854700674 +1226020905 1 return.numer -8 @@ -81208,7 +82015,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2358 this -1941055697 +487694075 1 this.numer -2 @@ -81217,7 +82024,7 @@ this.denom 0 1 arg -1854700674 +1226020905 1 arg.numer -8 @@ -81240,7 +82047,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2359 this -1229091713 +156856360 1 this.numer -14 @@ -81259,7 +82066,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2358 this -1941055697 +487694075 1 this.numer -2 @@ -81268,7 +82075,7 @@ this.denom 0 1 arg -1854700674 +1226020905 1 arg.numer -8 @@ -81277,7 +82084,7 @@ arg.denom 7 1 return -1229091713 +156856360 1 return.numer -14 @@ -81290,7 +82097,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2354 this -1941055697 +487694075 1 this.numer -2 @@ -81299,7 +82106,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -81308,7 +82115,7 @@ arg.denom 7 1 return -1229091713 +156856360 1 return.numer -14 @@ -81321,7 +82128,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2360 this -1229091713 +156856360 1 this.numer -14 @@ -81334,7 +82141,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2361 this -1229091713 +156856360 1 this.numer -14 @@ -81347,7 +82154,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2361 this -1229091713 +156856360 1 this.numer -14 @@ -81363,7 +82170,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2360 this -1229091713 +156856360 1 this.numer -14 @@ -81372,7 +82179,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -81382,7 +82189,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2362 this -2130132329 +2095303566 1 this.numer 8 @@ -81391,7 +82198,7 @@ this.denom 7 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -81404,7 +82211,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2363 this -899017902 +1704629915 1 this.numer 9 @@ -81427,7 +82234,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2364 this -699219898 +1617550160 1 this.numer -9 @@ -81446,7 +82253,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2363 this -899017902 +1704629915 1 this.numer 9 @@ -81455,7 +82262,7 @@ this.denom 0 1 return -699219898 +1617550160 1 return.numer -9 @@ -81468,7 +82275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2365 this -2130132329 +2095303566 1 this.numer 8 @@ -81477,7 +82284,7 @@ this.denom 7 1 arg -699219898 +1617550160 1 arg.numer -9 @@ -81500,7 +82307,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2366 this -758309302 +1325124186 1 this.numer -63 @@ -81519,7 +82326,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2365 this -2130132329 +2095303566 1 this.numer 8 @@ -81528,7 +82335,7 @@ this.denom 7 1 arg -699219898 +1617550160 1 arg.numer -9 @@ -81537,7 +82344,7 @@ arg.denom 0 1 return -758309302 +1325124186 1 return.numer -63 @@ -81550,7 +82357,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2362 this -2130132329 +2095303566 1 this.numer 8 @@ -81559,7 +82366,7 @@ this.denom 7 1 arg -899017902 +1704629915 1 arg.numer 9 @@ -81568,7 +82375,7 @@ arg.denom 0 1 return -758309302 +1325124186 1 return.numer -63 @@ -81581,7 +82388,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2367 this -758309302 +1325124186 1 this.numer -63 @@ -81594,7 +82401,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2368 this -758309302 +1325124186 1 this.numer -63 @@ -81607,7 +82414,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2368 this -758309302 +1325124186 1 this.numer -63 @@ -81623,7 +82430,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2367 this -758309302 +1325124186 1 this.numer -63 @@ -81632,7 +82439,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -81642,7 +82449,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2369 this -899017902 +1704629915 1 this.numer 9 @@ -81651,7 +82458,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -81664,7 +82471,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2370 this -2130132329 +2095303566 1 this.numer 8 @@ -81710,7 +82517,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2371 this -1736477416 +461160828 1 this.numer -8 @@ -81729,7 +82536,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2370 this -2130132329 +2095303566 1 this.numer 8 @@ -81738,7 +82545,7 @@ this.denom 7 1 return -1736477416 +461160828 1 return.numer -8 @@ -81751,7 +82558,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2373 this -899017902 +1704629915 1 this.numer 9 @@ -81760,7 +82567,7 @@ this.denom 0 1 arg -1736477416 +461160828 1 arg.numer -8 @@ -81783,7 +82590,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2374 this -673167982 +1499867659 1 this.numer 63 @@ -81802,7 +82609,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2373 this -899017902 +1704629915 1 this.numer 9 @@ -81811,7 +82618,7 @@ this.denom 0 1 arg -1736477416 +461160828 1 arg.numer -8 @@ -81820,7 +82627,7 @@ arg.denom 7 1 return -673167982 +1499867659 1 return.numer 63 @@ -81833,7 +82640,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2369 this -899017902 +1704629915 1 this.numer 9 @@ -81842,7 +82649,7 @@ this.denom 0 1 arg -2130132329 +2095303566 1 arg.numer 8 @@ -81851,7 +82658,7 @@ arg.denom 7 1 return -673167982 +1499867659 1 return.numer 63 @@ -81864,7 +82671,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2375 this -673167982 +1499867659 1 this.numer 63 @@ -81877,7 +82684,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2376 this -673167982 +1499867659 1 this.numer 63 @@ -81890,7 +82697,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2376 this -673167982 +1499867659 1 this.numer 63 @@ -81906,7 +82713,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2375 this -673167982 +1499867659 1 this.numer 63 @@ -81915,7 +82722,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -81932,7 +82739,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2377 this -990421078 +2012993836 1 this.numer 0 @@ -81955,7 +82762,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2378 this -861310049 +1740797075 1 this.numer 1 @@ -81978,7 +82785,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2379 this -1998212763 +440938038 1 this.numer -1 @@ -82001,7 +82808,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2380 this -1612635955 +1922464006 1 this.numer 2 @@ -82024,7 +82831,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2381 this -181386898 +1536031937 1 this.numer 3 @@ -82073,7 +82880,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2382 this -1290299593 +798981583 1 this.numer 1 @@ -82125,7 +82932,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2384 this -775392145 +1954406292 1 this.numer 1 @@ -82177,7 +82984,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2386 this -1085011019 +904058452 1 this.numer 1 @@ -82229,7 +83036,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2388 this -1496549656 +29183965 1 this.numer 2 @@ -82281,7 +83088,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2390 this -1181594728 +1427651360 1 this.numer 3 @@ -82333,7 +83140,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2392 this -1281309687 +1334042472 1 this.numer 5 @@ -82385,7 +83192,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2394 this -5897293 +1827725498 1 this.numer 6 @@ -82437,7 +83244,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2396 this -331555689 +131635550 1 this.numer 8 @@ -82489,7 +83296,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2398 this -1883884705 +319644606 1 this.numer -1 @@ -82541,7 +83348,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2400 this -2098829214 +1118078504 1 this.numer 3 @@ -82570,7 +83377,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2402 this -456214076 +691690486 1 this.numer 1 @@ -82599,7 +83406,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2403 this -1073355542 +1793799654 1 this.numer -1 @@ -82628,7 +83435,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2404 this -1023959594 +310623126 1 this.numer 100 @@ -82657,7 +83464,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2405 this -1902432947 +1961945640 1 this.numer 2 @@ -82686,7 +83493,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2406 this -306520046 +258931371 1 this.numer -2 @@ -82715,7 +83522,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2407 this -2016627616 +1008315045 1 this.numer 9 @@ -82734,7 +83541,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2408 this -861310049 +1740797075 1 this.numer 1 @@ -82743,7 +83550,7 @@ this.denom 1 1 arg -861310049 +1740797075 1 arg.numer 1 @@ -82756,7 +83563,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2409 this -861310049 +1740797075 1 this.numer 1 @@ -82802,7 +83609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2410 this -1873425158 +860481979 1 this.numer -1 @@ -82821,7 +83628,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2409 this -861310049 +1740797075 1 this.numer 1 @@ -82830,7 +83637,7 @@ this.denom 1 1 return -1873425158 +860481979 1 return.numer -1 @@ -82843,7 +83650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2412 this -861310049 +1740797075 1 this.numer 1 @@ -82852,7 +83659,7 @@ this.denom 1 1 arg -1873425158 +860481979 1 arg.numer -1 @@ -82898,7 +83705,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2413 this -251398192 +1083962448 1 this.numer 0 @@ -82917,7 +83724,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2412 this -861310049 +1740797075 1 this.numer 1 @@ -82926,7 +83733,7 @@ this.denom 1 1 arg -1873425158 +860481979 1 arg.numer -1 @@ -82935,7 +83742,7 @@ arg.denom 1 1 return -251398192 +1083962448 1 return.numer 0 @@ -82948,7 +83755,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2408 this -861310049 +1740797075 1 this.numer 1 @@ -82957,7 +83764,7 @@ this.denom 1 1 arg -861310049 +1740797075 1 arg.numer 1 @@ -82966,7 +83773,7 @@ arg.denom 1 1 return -251398192 +1083962448 1 return.numer 0 @@ -82979,7 +83786,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2415 this -251398192 +1083962448 1 this.numer 0 @@ -82988,7 +83795,7 @@ this.denom 1 1 arg -861310049 +1740797075 1 arg.numer 1 @@ -83001,7 +83808,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2416 this -861310049 +1740797075 1 this.numer 1 @@ -83047,7 +83854,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2417 this -1149079295 +953742666 1 this.numer -1 @@ -83066,7 +83873,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2416 this -861310049 +1740797075 1 this.numer 1 @@ -83075,7 +83882,7 @@ this.denom 1 1 return -1149079295 +953742666 1 return.numer -1 @@ -83088,7 +83895,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2419 this -251398192 +1083962448 1 this.numer 0 @@ -83097,7 +83904,7 @@ this.denom 1 1 arg -1149079295 +953742666 1 arg.numer -1 @@ -83143,7 +83950,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2420 this -255273594 +1239759990 1 this.numer -1 @@ -83162,7 +83969,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2419 this -251398192 +1083962448 1 this.numer 0 @@ -83171,7 +83978,7 @@ this.denom 1 1 arg -1149079295 +953742666 1 arg.numer -1 @@ -83180,7 +83987,7 @@ arg.denom 1 1 return -255273594 +1239759990 1 return.numer -1 @@ -83193,7 +84000,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2415 this -251398192 +1083962448 1 this.numer 0 @@ -83202,7 +84009,7 @@ this.denom 1 1 arg -861310049 +1740797075 1 arg.numer 1 @@ -83211,7 +84018,7 @@ arg.denom 1 1 return -255273594 +1239759990 1 return.numer -1 @@ -83224,7 +84031,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2422 this -255273594 +1239759990 1 this.numer -1 @@ -83237,7 +84044,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2423 this -255273594 +1239759990 1 this.numer -1 @@ -83250,7 +84057,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2423 this -255273594 +1239759990 1 this.numer -1 @@ -83266,7 +84073,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2422 this -255273594 +1239759990 1 this.numer -1 @@ -83275,7 +84082,7 @@ this.denom 1 1 return -1858451299 +891093184 1 return.toString "-1" @@ -83285,7 +84092,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2424 this -861310049 +1740797075 1 this.numer 1 @@ -83294,7 +84101,7 @@ this.denom 1 1 arg -861310049 +1740797075 1 arg.numer 1 @@ -83307,7 +84114,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2425 this -861310049 +1740797075 1 this.numer 1 @@ -83353,7 +84160,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2426 this -1988820325 +708533063 1 this.numer -1 @@ -83372,7 +84179,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2425 this -861310049 +1740797075 1 this.numer 1 @@ -83381,7 +84188,7 @@ this.denom 1 1 return -1988820325 +708533063 1 return.numer -1 @@ -83394,7 +84201,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2428 this -861310049 +1740797075 1 this.numer 1 @@ -83403,7 +84210,7 @@ this.denom 1 1 arg -1988820325 +708533063 1 arg.numer -1 @@ -83449,7 +84256,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2429 this -520236720 +1438030319 1 this.numer 0 @@ -83468,7 +84275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2428 this -861310049 +1740797075 1 this.numer 1 @@ -83477,7 +84284,7 @@ this.denom 1 1 arg -1988820325 +708533063 1 arg.numer -1 @@ -83486,7 +84293,7 @@ arg.denom 1 1 return -520236720 +1438030319 1 return.numer 0 @@ -83499,7 +84306,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2424 this -861310049 +1740797075 1 this.numer 1 @@ -83508,7 +84315,7 @@ this.denom 1 1 arg -861310049 +1740797075 1 arg.numer 1 @@ -83517,7 +84324,7 @@ arg.denom 1 1 return -520236720 +1438030319 1 return.numer 0 @@ -83530,7 +84337,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2431 this -861310049 +1740797075 1 this.numer 1 @@ -83539,7 +84346,7 @@ this.denom 1 1 arg -520236720 +1438030319 1 arg.numer 0 @@ -83552,7 +84359,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2432 this -520236720 +1438030319 1 this.numer 0 @@ -83598,7 +84405,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2433 this -1212626103 +902830499 1 this.numer 0 @@ -83617,7 +84424,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2432 this -520236720 +1438030319 1 this.numer 0 @@ -83626,7 +84433,7 @@ this.denom 1 1 return -1212626103 +902830499 1 return.numer 0 @@ -83639,7 +84446,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2435 this -861310049 +1740797075 1 this.numer 1 @@ -83648,7 +84455,7 @@ this.denom 1 1 arg -1212626103 +902830499 1 arg.numer 0 @@ -83694,7 +84501,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2436 this -987103091 +1754662105 1 this.numer 1 @@ -83713,7 +84520,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2435 this -861310049 +1740797075 1 this.numer 1 @@ -83722,7 +84529,7 @@ this.denom 1 1 arg -1212626103 +902830499 1 arg.numer 0 @@ -83731,7 +84538,7 @@ arg.denom 1 1 return -987103091 +1754662105 1 return.numer 1 @@ -83744,7 +84551,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2431 this -861310049 +1740797075 1 this.numer 1 @@ -83753,7 +84560,7 @@ this.denom 1 1 arg -520236720 +1438030319 1 arg.numer 0 @@ -83762,7 +84569,7 @@ arg.denom 1 1 return -987103091 +1754662105 1 return.numer 1 @@ -83775,7 +84582,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2438 this -987103091 +1754662105 1 this.numer 1 @@ -83788,7 +84595,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2439 this -987103091 +1754662105 1 this.numer 1 @@ -83801,7 +84608,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2439 this -987103091 +1754662105 1 this.numer 1 @@ -83817,7 +84624,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2438 this -987103091 +1754662105 1 this.numer 1 @@ -83826,7 +84633,7 @@ this.denom 1 1 return -930477362 +403147759 1 return.toString "1" @@ -83836,7 +84643,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2440 this -990421078 +2012993836 1 this.numer 0 @@ -83845,7 +84652,7 @@ this.denom 1 1 arg -990421078 +2012993836 1 arg.numer 0 @@ -83858,7 +84665,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2441 this -990421078 +2012993836 1 this.numer 0 @@ -83904,7 +84711,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2442 this -557105680 +2040467681 1 this.numer 0 @@ -83923,7 +84730,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2441 this -990421078 +2012993836 1 this.numer 0 @@ -83932,7 +84739,7 @@ this.denom 1 1 return -557105680 +2040467681 1 return.numer 0 @@ -83945,7 +84752,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2444 this -990421078 +2012993836 1 this.numer 0 @@ -83954,7 +84761,7 @@ this.denom 1 1 arg -557105680 +2040467681 1 arg.numer 0 @@ -84000,7 +84807,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2445 this -246462840 +1278677872 1 this.numer 0 @@ -84019,7 +84826,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2444 this -990421078 +2012993836 1 this.numer 0 @@ -84028,7 +84835,7 @@ this.denom 1 1 arg -557105680 +2040467681 1 arg.numer 0 @@ -84037,7 +84844,7 @@ arg.denom 1 1 return -246462840 +1278677872 1 return.numer 0 @@ -84050,7 +84857,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2440 this -990421078 +2012993836 1 this.numer 0 @@ -84059,7 +84866,7 @@ this.denom 1 1 arg -990421078 +2012993836 1 arg.numer 0 @@ -84068,7 +84875,7 @@ arg.denom 1 1 return -246462840 +1278677872 1 return.numer 0 @@ -84081,7 +84888,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2447 this -246462840 +1278677872 1 this.numer 0 @@ -84090,7 +84897,7 @@ this.denom 1 1 arg -990421078 +2012993836 1 arg.numer 0 @@ -84103,7 +84910,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2448 this -990421078 +2012993836 1 this.numer 0 @@ -84149,7 +84956,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2449 this -1952480464 +341796579 1 this.numer 0 @@ -84168,7 +84975,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2448 this -990421078 +2012993836 1 this.numer 0 @@ -84177,7 +84984,7 @@ this.denom 1 1 return -1952480464 +341796579 1 return.numer 0 @@ -84190,7 +84997,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2451 this -246462840 +1278677872 1 this.numer 0 @@ -84199,7 +85006,7 @@ this.denom 1 1 arg -1952480464 +341796579 1 arg.numer 0 @@ -84245,7 +85052,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2452 this -1789032288 +807657332 1 this.numer 0 @@ -84264,7 +85071,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2451 this -246462840 +1278677872 1 this.numer 0 @@ -84273,7 +85080,7 @@ this.denom 1 1 arg -1952480464 +341796579 1 arg.numer 0 @@ -84282,7 +85089,7 @@ arg.denom 1 1 return -1789032288 +807657332 1 return.numer 0 @@ -84295,7 +85102,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2447 this -246462840 +1278677872 1 this.numer 0 @@ -84304,7 +85111,7 @@ this.denom 1 1 arg -990421078 +2012993836 1 arg.numer 0 @@ -84313,7 +85120,7 @@ arg.denom 1 1 return -1789032288 +807657332 1 return.numer 0 @@ -84326,7 +85133,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2454 this -1789032288 +807657332 1 this.numer 0 @@ -84339,7 +85146,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2455 this -1789032288 +807657332 1 this.numer 0 @@ -84352,7 +85159,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2455 this -1789032288 +807657332 1 this.numer 0 @@ -84368,7 +85175,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2454 this -1789032288 +807657332 1 this.numer 0 @@ -84377,7 +85184,7 @@ this.denom 1 1 return -1347122769 +825936265 1 return.toString "0" @@ -84387,7 +85194,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2456 this -990421078 +2012993836 1 this.numer 0 @@ -84396,7 +85203,7 @@ this.denom 1 1 arg -990421078 +2012993836 1 arg.numer 0 @@ -84409,7 +85216,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2457 this -990421078 +2012993836 1 this.numer 0 @@ -84455,7 +85262,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2458 this -172288262 +1164107853 1 this.numer 0 @@ -84474,7 +85281,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2457 this -990421078 +2012993836 1 this.numer 0 @@ -84483,7 +85290,7 @@ this.denom 1 1 return -172288262 +1164107853 1 return.numer 0 @@ -84496,7 +85303,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2460 this -990421078 +2012993836 1 this.numer 0 @@ -84505,7 +85312,7 @@ this.denom 1 1 arg -172288262 +1164107853 1 arg.numer 0 @@ -84551,7 +85358,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2461 this -840863278 +711327356 1 this.numer 0 @@ -84570,7 +85377,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2460 this -990421078 +2012993836 1 this.numer 0 @@ -84579,7 +85386,7 @@ this.denom 1 1 arg -172288262 +1164107853 1 arg.numer 0 @@ -84588,7 +85395,7 @@ arg.denom 1 1 return -840863278 +711327356 1 return.numer 0 @@ -84601,7 +85408,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2456 this -990421078 +2012993836 1 this.numer 0 @@ -84610,7 +85417,7 @@ this.denom 1 1 arg -990421078 +2012993836 1 arg.numer 0 @@ -84619,7 +85426,7 @@ arg.denom 1 1 return -840863278 +711327356 1 return.numer 0 @@ -84632,7 +85439,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2463 this -990421078 +2012993836 1 this.numer 0 @@ -84641,7 +85448,7 @@ this.denom 1 1 arg -840863278 +711327356 1 arg.numer 0 @@ -84654,7 +85461,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2464 this -840863278 +711327356 1 this.numer 0 @@ -84700,7 +85507,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2465 this -1946716086 +68377659 1 this.numer 0 @@ -84719,7 +85526,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2464 this -840863278 +711327356 1 this.numer 0 @@ -84728,7 +85535,7 @@ this.denom 1 1 return -1946716086 +68377659 1 return.numer 0 @@ -84741,7 +85548,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2467 this -990421078 +2012993836 1 this.numer 0 @@ -84750,7 +85557,7 @@ this.denom 1 1 arg -1946716086 +68377659 1 arg.numer 0 @@ -84796,7 +85603,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2468 this -1543895357 +1661123505 1 this.numer 0 @@ -84815,7 +85622,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2467 this -990421078 +2012993836 1 this.numer 0 @@ -84824,7 +85631,7 @@ this.denom 1 1 arg -1946716086 +68377659 1 arg.numer 0 @@ -84833,7 +85640,7 @@ arg.denom 1 1 return -1543895357 +1661123505 1 return.numer 0 @@ -84846,7 +85653,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2463 this -990421078 +2012993836 1 this.numer 0 @@ -84855,7 +85662,7 @@ this.denom 1 1 arg -840863278 +711327356 1 arg.numer 0 @@ -84864,7 +85671,7 @@ arg.denom 1 1 return -1543895357 +1661123505 1 return.numer 0 @@ -84877,7 +85684,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2470 this -1543895357 +1661123505 1 this.numer 0 @@ -84890,7 +85697,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2471 this -1543895357 +1661123505 1 this.numer 0 @@ -84903,7 +85710,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2471 this -1543895357 +1661123505 1 this.numer 0 @@ -84919,7 +85726,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2470 this -1543895357 +1661123505 1 this.numer 0 @@ -84928,7 +85735,7 @@ this.denom 1 1 return -204358398 +825249556 1 return.toString "0" @@ -84938,7 +85745,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2472 this -861310049 +1740797075 1 this.numer 1 @@ -84947,7 +85754,7 @@ this.denom 1 1 arg -1612635955 +1922464006 1 arg.numer 2 @@ -84960,7 +85767,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2473 this -1612635955 +1922464006 1 this.numer 2 @@ -85006,7 +85813,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2474 this -825243633 +883151184 1 this.numer -2 @@ -85025,7 +85832,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2473 this -1612635955 +1922464006 1 this.numer 2 @@ -85034,7 +85841,7 @@ this.denom 1 1 return -825243633 +883151184 1 return.numer -2 @@ -85047,7 +85854,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2476 this -861310049 +1740797075 1 this.numer 1 @@ -85056,7 +85863,7 @@ this.denom 1 1 arg -825243633 +883151184 1 arg.numer -2 @@ -85102,7 +85909,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2477 this -1420347505 +709865851 1 this.numer -1 @@ -85121,7 +85928,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2476 this -861310049 +1740797075 1 this.numer 1 @@ -85130,7 +85937,7 @@ this.denom 1 1 arg -825243633 +883151184 1 arg.numer -2 @@ -85139,7 +85946,7 @@ arg.denom 1 1 return -1420347505 +709865851 1 return.numer -1 @@ -85152,7 +85959,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2472 this -861310049 +1740797075 1 this.numer 1 @@ -85161,7 +85968,7 @@ this.denom 1 1 arg -1612635955 +1922464006 1 arg.numer 2 @@ -85170,7 +85977,7 @@ arg.denom 1 1 return -1420347505 +709865851 1 return.numer -1 @@ -85183,7 +85990,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2479 this -1420347505 +709865851 1 this.numer -1 @@ -85192,7 +85999,7 @@ this.denom 1 1 arg -181386898 +1536031937 1 arg.numer 3 @@ -85205,7 +86012,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2480 this -181386898 +1536031937 1 this.numer 3 @@ -85251,7 +86058,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2481 this -352296483 +1550207152 1 this.numer -3 @@ -85270,7 +86077,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2480 this -181386898 +1536031937 1 this.numer 3 @@ -85279,7 +86086,7 @@ this.denom 1 1 return -352296483 +1550207152 1 return.numer -3 @@ -85292,7 +86099,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2483 this -1420347505 +709865851 1 this.numer -1 @@ -85301,7 +86108,7 @@ this.denom 1 1 arg -352296483 +1550207152 1 arg.numer -3 @@ -85347,7 +86154,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2484 this -434575002 +1864230087 1 this.numer -4 @@ -85366,7 +86173,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2483 this -1420347505 +709865851 1 this.numer -1 @@ -85375,7 +86182,7 @@ this.denom 1 1 arg -352296483 +1550207152 1 arg.numer -3 @@ -85384,7 +86191,7 @@ arg.denom 1 1 return -434575002 +1864230087 1 return.numer -4 @@ -85397,7 +86204,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2479 this -1420347505 +709865851 1 this.numer -1 @@ -85406,7 +86213,7 @@ this.denom 1 1 arg -181386898 +1536031937 1 arg.numer 3 @@ -85415,7 +86222,7 @@ arg.denom 1 1 return -434575002 +1864230087 1 return.numer -4 @@ -85428,7 +86235,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2486 this -434575002 +1864230087 1 this.numer -4 @@ -85441,7 +86248,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2487 this -434575002 +1864230087 1 this.numer -4 @@ -85454,7 +86261,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2487 this -434575002 +1864230087 1 this.numer -4 @@ -85470,7 +86277,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2486 this -434575002 +1864230087 1 this.numer -4 @@ -85479,7 +86286,7 @@ this.denom 1 1 return -310175167 +1168019749 1 return.toString "-4" @@ -85489,7 +86296,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2488 this -1612635955 +1922464006 1 this.numer 2 @@ -85498,7 +86305,7 @@ this.denom 1 1 arg -181386898 +1536031937 1 arg.numer 3 @@ -85511,7 +86318,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2489 this -181386898 +1536031937 1 this.numer 3 @@ -85557,7 +86364,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2490 this -1171220500 +311239812 1 this.numer -3 @@ -85576,7 +86383,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2489 this -181386898 +1536031937 1 this.numer 3 @@ -85585,7 +86392,7 @@ this.denom 1 1 return -1171220500 +311239812 1 return.numer -3 @@ -85598,7 +86405,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2492 this -1612635955 +1922464006 1 this.numer 2 @@ -85607,7 +86414,7 @@ this.denom 1 1 arg -1171220500 +311239812 1 arg.numer -3 @@ -85653,7 +86460,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2493 this -867835098 +2093010349 1 this.numer -1 @@ -85672,7 +86479,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2492 this -1612635955 +1922464006 1 this.numer 2 @@ -85681,7 +86488,7 @@ this.denom 1 1 arg -1171220500 +311239812 1 arg.numer -3 @@ -85690,7 +86497,7 @@ arg.denom 1 1 return -867835098 +2093010349 1 return.numer -1 @@ -85703,7 +86510,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2488 this -1612635955 +1922464006 1 this.numer 2 @@ -85712,7 +86519,7 @@ this.denom 1 1 arg -181386898 +1536031937 1 arg.numer 3 @@ -85721,7 +86528,7 @@ arg.denom 1 1 return -867835098 +2093010349 1 return.numer -1 @@ -85734,7 +86541,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2495 this -861310049 +1740797075 1 this.numer 1 @@ -85743,7 +86550,7 @@ this.denom 1 1 arg -867835098 +2093010349 1 arg.numer -1 @@ -85756,7 +86563,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2496 this -867835098 +2093010349 1 this.numer -1 @@ -85802,7 +86609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2497 this -2143045309 +2088445230 1 this.numer 1 @@ -85821,7 +86628,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2496 this -867835098 +2093010349 1 this.numer -1 @@ -85830,7 +86637,7 @@ this.denom 1 1 return -2143045309 +2088445230 1 return.numer 1 @@ -85843,7 +86650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2499 this -861310049 +1740797075 1 this.numer 1 @@ -85852,7 +86659,7 @@ this.denom 1 1 arg -2143045309 +2088445230 1 arg.numer 1 @@ -85898,7 +86705,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2500 this -566780879 +1297978429 1 this.numer 2 @@ -85917,7 +86724,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2499 this -861310049 +1740797075 1 this.numer 1 @@ -85926,7 +86733,7 @@ this.denom 1 1 arg -2143045309 +2088445230 1 arg.numer 1 @@ -85935,7 +86742,7 @@ arg.denom 1 1 return -566780879 +1297978429 1 return.numer 2 @@ -85948,7 +86755,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2495 this -861310049 +1740797075 1 this.numer 1 @@ -85957,7 +86764,7 @@ this.denom 1 1 arg -867835098 +2093010349 1 arg.numer -1 @@ -85966,7 +86773,7 @@ arg.denom 1 1 return -566780879 +1297978429 1 return.numer 2 @@ -85979,7 +86786,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2502 this -566780879 +1297978429 1 this.numer 2 @@ -85992,7 +86799,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2503 this -566780879 +1297978429 1 this.numer 2 @@ -86005,7 +86812,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2503 this -566780879 +1297978429 1 this.numer 2 @@ -86021,7 +86828,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2502 this -566780879 +1297978429 1 this.numer 2 @@ -86030,7 +86837,7 @@ this.denom 1 1 return -1796258908 +915349526 1 return.toString "2" @@ -86040,7 +86847,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2504 this -775392145 +1954406292 1 this.numer 1 @@ -86049,7 +86856,7 @@ this.denom 3 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -86062,7 +86869,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2505 this -775392145 +1954406292 1 this.numer 1 @@ -86108,7 +86915,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2506 this -398357230 +1280851663 1 this.numer -1 @@ -86127,7 +86934,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2505 this -775392145 +1954406292 1 this.numer 1 @@ -86136,7 +86943,7 @@ this.denom 3 1 return -398357230 +1280851663 1 return.numer -1 @@ -86149,7 +86956,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2508 this -775392145 +1954406292 1 this.numer 1 @@ -86158,7 +86965,7 @@ this.denom 3 1 arg -398357230 +1280851663 1 arg.numer -1 @@ -86204,7 +87011,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2509 this -1483436911 +1764696127 1 this.numer 0 @@ -86223,7 +87030,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2508 this -775392145 +1954406292 1 this.numer 1 @@ -86232,7 +87039,7 @@ this.denom 3 1 arg -398357230 +1280851663 1 arg.numer -1 @@ -86241,7 +87048,7 @@ arg.denom 3 1 return -1483436911 +1764696127 1 return.numer 0 @@ -86254,7 +87061,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2504 this -775392145 +1954406292 1 this.numer 1 @@ -86263,7 +87070,7 @@ this.denom 3 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -86272,7 +87079,7 @@ arg.denom 3 1 return -1483436911 +1764696127 1 return.numer 0 @@ -86285,7 +87092,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2511 this -1483436911 +1764696127 1 this.numer 0 @@ -86294,7 +87101,7 @@ this.denom 1 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -86307,7 +87114,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2512 this -775392145 +1954406292 1 this.numer 1 @@ -86353,7 +87160,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2513 this -1986505154 +1223867739 1 this.numer -1 @@ -86372,7 +87179,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2512 this -775392145 +1954406292 1 this.numer 1 @@ -86381,7 +87188,7 @@ this.denom 3 1 return -1986505154 +1223867739 1 return.numer -1 @@ -86394,7 +87201,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2515 this -1483436911 +1764696127 1 this.numer 0 @@ -86403,7 +87210,7 @@ this.denom 1 1 arg -1986505154 +1223867739 1 arg.numer -1 @@ -86449,7 +87256,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2516 this -263863369 +129153987 1 this.numer -1 @@ -86468,7 +87275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2515 this -1483436911 +1764696127 1 this.numer 0 @@ -86477,7 +87284,7 @@ this.denom 1 1 arg -1986505154 +1223867739 1 arg.numer -1 @@ -86486,7 +87293,7 @@ arg.denom 3 1 return -263863369 +129153987 1 return.numer -1 @@ -86499,7 +87306,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2511 this -1483436911 +1764696127 1 this.numer 0 @@ -86508,7 +87315,7 @@ this.denom 1 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -86517,7 +87324,7 @@ arg.denom 3 1 return -263863369 +129153987 1 return.numer -1 @@ -86530,7 +87337,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2518 this -263863369 +129153987 1 this.numer -1 @@ -86543,7 +87350,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2519 this -263863369 +129153987 1 this.numer -1 @@ -86556,7 +87363,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2519 this -263863369 +129153987 1 this.numer -1 @@ -86572,7 +87379,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2518 this -263863369 +129153987 1 this.numer -1 @@ -86581,7 +87388,7 @@ this.denom 3 1 return -197911728 +168907708 1 return.toString "-1/3" @@ -86591,7 +87398,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2520 this -775392145 +1954406292 1 this.numer 1 @@ -86600,7 +87407,7 @@ this.denom 3 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -86613,7 +87420,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2521 this -775392145 +1954406292 1 this.numer 1 @@ -86659,7 +87466,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2522 this -1997726940 +447718425 1 this.numer -1 @@ -86678,7 +87485,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2521 this -775392145 +1954406292 1 this.numer 1 @@ -86687,7 +87494,7 @@ this.denom 3 1 return -1997726940 +447718425 1 return.numer -1 @@ -86700,7 +87507,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2524 this -775392145 +1954406292 1 this.numer 1 @@ -86709,7 +87516,7 @@ this.denom 3 1 arg -1997726940 +447718425 1 arg.numer -1 @@ -86755,7 +87562,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2525 this -2037343382 +1206569586 1 this.numer 0 @@ -86774,7 +87581,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2524 this -775392145 +1954406292 1 this.numer 1 @@ -86783,7 +87590,7 @@ this.denom 3 1 arg -1997726940 +447718425 1 arg.numer -1 @@ -86792,7 +87599,7 @@ arg.denom 3 1 return -2037343382 +1206569586 1 return.numer 0 @@ -86805,7 +87612,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2520 this -775392145 +1954406292 1 this.numer 1 @@ -86814,7 +87621,7 @@ this.denom 3 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -86823,7 +87630,7 @@ arg.denom 3 1 return -2037343382 +1206569586 1 return.numer 0 @@ -86836,7 +87643,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2527 this -775392145 +1954406292 1 this.numer 1 @@ -86845,7 +87652,7 @@ this.denom 3 1 arg -2037343382 +1206569586 1 arg.numer 0 @@ -86858,7 +87665,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2528 this -2037343382 +1206569586 1 this.numer 0 @@ -86904,7 +87711,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2529 this -3469859 +1427381743 1 this.numer 0 @@ -86923,7 +87730,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2528 this -2037343382 +1206569586 1 this.numer 0 @@ -86932,7 +87739,7 @@ this.denom 1 1 return -3469859 +1427381743 1 return.numer 0 @@ -86945,7 +87752,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2531 this -775392145 +1954406292 1 this.numer 1 @@ -86954,7 +87761,7 @@ this.denom 3 1 arg -3469859 +1427381743 1 arg.numer 0 @@ -87000,7 +87807,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2532 this -335861744 +1427646530 1 this.numer 1 @@ -87019,7 +87826,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2531 this -775392145 +1954406292 1 this.numer 1 @@ -87028,7 +87835,7 @@ this.denom 3 1 arg -3469859 +1427381743 1 arg.numer 0 @@ -87037,7 +87844,7 @@ arg.denom 1 1 return -335861744 +1427646530 1 return.numer 1 @@ -87050,7 +87857,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2527 this -775392145 +1954406292 1 this.numer 1 @@ -87059,7 +87866,7 @@ this.denom 3 1 arg -2037343382 +1206569586 1 arg.numer 0 @@ -87068,7 +87875,7 @@ arg.denom 1 1 return -335861744 +1427646530 1 return.numer 1 @@ -87081,7 +87888,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2534 this -335861744 +1427646530 1 this.numer 1 @@ -87094,7 +87901,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2535 this -335861744 +1427646530 1 this.numer 1 @@ -87107,7 +87914,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2535 this -335861744 +1427646530 1 this.numer 1 @@ -87123,7 +87930,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2534 this -335861744 +1427646530 1 this.numer 1 @@ -87132,7 +87939,7 @@ this.denom 3 1 return -1241307092 +846254484 1 return.toString "1/3" @@ -87142,7 +87949,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2536 this -456214076 +691690486 1 this.numer 1 @@ -87151,7 +87958,7 @@ this.denom 0 1 arg -456214076 +691690486 1 arg.numer 1 @@ -87164,7 +87971,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2537 this -456214076 +691690486 1 this.numer 1 @@ -87187,7 +87994,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2538 this -1992148286 +592983282 1 this.numer -1 @@ -87206,7 +88013,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2537 this -456214076 +691690486 1 this.numer 1 @@ -87215,7 +88022,7 @@ this.denom 0 1 return -1992148286 +592983282 1 return.numer -1 @@ -87228,7 +88035,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2539 this -456214076 +691690486 1 this.numer 1 @@ -87237,7 +88044,7 @@ this.denom 0 1 arg -1992148286 +592983282 1 arg.numer -1 @@ -87260,7 +88067,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2540 this -618702425 +1448525331 1 this.numer 0 @@ -87279,7 +88086,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2539 this -456214076 +691690486 1 this.numer 1 @@ -87288,7 +88095,7 @@ this.denom 0 1 arg -1992148286 +592983282 1 arg.numer -1 @@ -87297,7 +88104,7 @@ arg.denom 0 1 return -618702425 +1448525331 1 return.numer 0 @@ -87310,7 +88117,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2536 this -456214076 +691690486 1 this.numer 1 @@ -87319,7 +88126,7 @@ this.denom 0 1 arg -456214076 +691690486 1 arg.numer 1 @@ -87328,7 +88135,7 @@ arg.denom 0 1 return -618702425 +1448525331 1 return.numer 0 @@ -87341,7 +88148,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2541 this -618702425 +1448525331 1 this.numer 0 @@ -87350,7 +88157,7 @@ this.denom 0 1 arg -456214076 +691690486 1 arg.numer 1 @@ -87363,7 +88170,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2542 this -456214076 +691690486 1 this.numer 1 @@ -87386,7 +88193,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2543 this -415838201 +1108924067 1 this.numer -1 @@ -87405,7 +88212,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2542 this -456214076 +691690486 1 this.numer 1 @@ -87414,7 +88221,7 @@ this.denom 0 1 return -415838201 +1108924067 1 return.numer -1 @@ -87427,7 +88234,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2544 this -618702425 +1448525331 1 this.numer 0 @@ -87436,7 +88243,7 @@ this.denom 0 1 arg -415838201 +1108924067 1 arg.numer -1 @@ -87459,7 +88266,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2545 this -1080856869 +1984975621 1 this.numer 0 @@ -87478,7 +88285,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2544 this -618702425 +1448525331 1 this.numer 0 @@ -87487,7 +88294,7 @@ this.denom 0 1 arg -415838201 +1108924067 1 arg.numer -1 @@ -87496,7 +88303,7 @@ arg.denom 0 1 return -1080856869 +1984975621 1 return.numer 0 @@ -87509,7 +88316,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2541 this -618702425 +1448525331 1 this.numer 0 @@ -87518,7 +88325,7 @@ this.denom 0 1 arg -456214076 +691690486 1 arg.numer 1 @@ -87527,7 +88334,7 @@ arg.denom 0 1 return -1080856869 +1984975621 1 return.numer 0 @@ -87540,7 +88347,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2546 this -1080856869 +1984975621 1 this.numer 0 @@ -87553,7 +88360,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2547 this -1080856869 +1984975621 1 this.numer 0 @@ -87566,7 +88373,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2547 this -1080856869 +1984975621 1 this.numer 0 @@ -87582,7 +88389,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2546 this -1080856869 +1984975621 1 this.numer 0 @@ -87591,7 +88398,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -87601,7 +88408,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2548 this -456214076 +691690486 1 this.numer 1 @@ -87610,7 +88417,7 @@ this.denom 0 1 arg -456214076 +691690486 1 arg.numer 1 @@ -87623,7 +88430,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2549 this -456214076 +691690486 1 this.numer 1 @@ -87646,7 +88453,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2550 this -397227310 +348984985 1 this.numer -1 @@ -87665,7 +88472,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2549 this -456214076 +691690486 1 this.numer 1 @@ -87674,7 +88481,7 @@ this.denom 0 1 return -397227310 +348984985 1 return.numer -1 @@ -87687,7 +88494,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2551 this -456214076 +691690486 1 this.numer 1 @@ -87696,7 +88503,7 @@ this.denom 0 1 arg -397227310 +348984985 1 arg.numer -1 @@ -87719,7 +88526,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2552 this -1820224294 +2005435445 1 this.numer 0 @@ -87738,7 +88545,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2551 this -456214076 +691690486 1 this.numer 1 @@ -87747,7 +88554,7 @@ this.denom 0 1 arg -397227310 +348984985 1 arg.numer -1 @@ -87756,7 +88563,7 @@ arg.denom 0 1 return -1820224294 +2005435445 1 return.numer 0 @@ -87769,7 +88576,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2548 this -456214076 +691690486 1 this.numer 1 @@ -87778,7 +88585,7 @@ this.denom 0 1 arg -456214076 +691690486 1 arg.numer 1 @@ -87787,7 +88594,7 @@ arg.denom 0 1 return -1820224294 +2005435445 1 return.numer 0 @@ -87800,7 +88607,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2553 this -456214076 +691690486 1 this.numer 1 @@ -87809,7 +88616,7 @@ this.denom 0 1 arg -1820224294 +2005435445 1 arg.numer 0 @@ -87822,7 +88629,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2554 this -1820224294 +2005435445 1 this.numer 0 @@ -87845,7 +88652,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2555 this -1605157743 +1939990953 1 this.numer 0 @@ -87864,7 +88671,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2554 this -1820224294 +2005435445 1 this.numer 0 @@ -87873,7 +88680,7 @@ this.denom 0 1 return -1605157743 +1939990953 1 return.numer 0 @@ -87886,7 +88693,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2556 this -456214076 +691690486 1 this.numer 1 @@ -87895,7 +88702,7 @@ this.denom 0 1 arg -1605157743 +1939990953 1 arg.numer 0 @@ -87918,7 +88725,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2557 this -1196612987 +119358627 1 this.numer 0 @@ -87937,7 +88744,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2556 this -456214076 +691690486 1 this.numer 1 @@ -87946,7 +88753,7 @@ this.denom 0 1 arg -1605157743 +1939990953 1 arg.numer 0 @@ -87955,7 +88762,7 @@ arg.denom 0 1 return -1196612987 +119358627 1 return.numer 0 @@ -87968,7 +88775,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2553 this -456214076 +691690486 1 this.numer 1 @@ -87977,7 +88784,7 @@ this.denom 0 1 arg -1820224294 +2005435445 1 arg.numer 0 @@ -87986,7 +88793,7 @@ arg.denom 0 1 return -1196612987 +119358627 1 return.numer 0 @@ -87999,7 +88806,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2558 this -1196612987 +119358627 1 this.numer 0 @@ -88012,7 +88819,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2559 this -1196612987 +119358627 1 this.numer 0 @@ -88025,7 +88832,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2559 this -1196612987 +119358627 1 this.numer 0 @@ -88041,7 +88848,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2558 this -1196612987 +119358627 1 this.numer 0 @@ -88050,7 +88857,7 @@ this.denom 0 1 return -1539131108 +1738236591 1 return.toString "NaN" @@ -88060,7 +88867,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2560 this -1290299593 +798981583 1 this.numer 1 @@ -88069,7 +88876,7 @@ this.denom 2 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -88082,7 +88889,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2561 this -775392145 +1954406292 1 this.numer 1 @@ -88128,7 +88935,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2562 this -290118354 +2073621255 1 this.numer -1 @@ -88147,7 +88954,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2561 this -775392145 +1954406292 1 this.numer 1 @@ -88156,7 +88963,7 @@ this.denom 3 1 return -290118354 +2073621255 1 return.numer -1 @@ -88169,7 +88976,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2564 this -1290299593 +798981583 1 this.numer 1 @@ -88178,7 +88985,7 @@ this.denom 2 1 arg -290118354 +2073621255 1 arg.numer -1 @@ -88224,7 +89031,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2565 this -1231296988 +1208121709 1 this.numer 1 @@ -88243,7 +89050,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2564 this -1290299593 +798981583 1 this.numer 1 @@ -88252,7 +89059,7 @@ this.denom 2 1 arg -290118354 +2073621255 1 arg.numer -1 @@ -88261,7 +89068,7 @@ arg.denom 3 1 return -1231296988 +1208121709 1 return.numer 1 @@ -88274,7 +89081,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2560 this -1290299593 +798981583 1 this.numer 1 @@ -88283,7 +89090,7 @@ this.denom 2 1 arg -775392145 +1954406292 1 arg.numer 1 @@ -88292,7 +89099,7 @@ arg.denom 3 1 return -1231296988 +1208121709 1 return.numer 1 @@ -88305,7 +89112,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2567 this -1231296988 +1208121709 1 this.numer 1 @@ -88314,7 +89121,7 @@ this.denom 6 1 arg -1085011019 +904058452 1 arg.numer 1 @@ -88327,7 +89134,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2568 this -1085011019 +904058452 1 this.numer 1 @@ -88373,7 +89180,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2569 this -1256054824 +873610597 1 this.numer -1 @@ -88392,7 +89199,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2568 this -1085011019 +904058452 1 this.numer 1 @@ -88401,7 +89208,7 @@ this.denom 4 1 return -1256054824 +873610597 1 return.numer -1 @@ -88414,7 +89221,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2571 this -1231296988 +1208121709 1 this.numer 1 @@ -88423,7 +89230,7 @@ this.denom 6 1 arg -1256054824 +873610597 1 arg.numer -1 @@ -88469,7 +89276,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2572 this -749176958 +1497845528 1 this.numer -1 @@ -88488,7 +89295,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2571 this -1231296988 +1208121709 1 this.numer 1 @@ -88497,7 +89304,7 @@ this.denom 6 1 arg -1256054824 +873610597 1 arg.numer -1 @@ -88506,7 +89313,7 @@ arg.denom 4 1 return -749176958 +1497845528 1 return.numer -1 @@ -88519,7 +89326,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2567 this -1231296988 +1208121709 1 this.numer 1 @@ -88528,7 +89335,7 @@ this.denom 6 1 arg -1085011019 +904058452 1 arg.numer 1 @@ -88537,7 +89344,7 @@ arg.denom 4 1 return -749176958 +1497845528 1 return.numer -1 @@ -88550,7 +89357,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2574 this -749176958 +1497845528 1 this.numer -1 @@ -88563,7 +89370,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2575 this -749176958 +1497845528 1 this.numer -1 @@ -88576,7 +89383,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2575 this -749176958 +1497845528 1 this.numer -1 @@ -88592,7 +89399,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2574 this -749176958 +1497845528 1 this.numer -1 @@ -88601,7 +89408,7 @@ this.denom 12 1 return -720510745 +1710989308 1 return.toString "-1/12" @@ -88611,7 +89418,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2576 this -775392145 +1954406292 1 this.numer 1 @@ -88620,7 +89427,7 @@ this.denom 3 1 arg -1085011019 +904058452 1 arg.numer 1 @@ -88633,7 +89440,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2577 this -1085011019 +904058452 1 this.numer 1 @@ -88679,7 +89486,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2578 this -2111289429 +1047087935 1 this.numer -1 @@ -88698,7 +89505,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2577 this -1085011019 +904058452 1 this.numer 1 @@ -88707,7 +89514,7 @@ this.denom 4 1 return -2111289429 +1047087935 1 return.numer -1 @@ -88720,7 +89527,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2580 this -775392145 +1954406292 1 this.numer 1 @@ -88729,7 +89536,7 @@ this.denom 3 1 arg -2111289429 +1047087935 1 arg.numer -1 @@ -88775,7 +89582,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2581 this -1569133822 +464887938 1 this.numer 1 @@ -88794,7 +89601,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2580 this -775392145 +1954406292 1 this.numer 1 @@ -88803,7 +89610,7 @@ this.denom 3 1 arg -2111289429 +1047087935 1 arg.numer -1 @@ -88812,7 +89619,7 @@ arg.denom 4 1 return -1569133822 +464887938 1 return.numer 1 @@ -88825,7 +89632,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2576 this -775392145 +1954406292 1 this.numer 1 @@ -88834,7 +89641,7 @@ this.denom 3 1 arg -1085011019 +904058452 1 arg.numer 1 @@ -88843,7 +89650,7 @@ arg.denom 4 1 return -1569133822 +464887938 1 return.numer 1 @@ -88856,7 +89663,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2583 this -1290299593 +798981583 1 this.numer 1 @@ -88865,7 +89672,7 @@ this.denom 2 1 arg -1569133822 +464887938 1 arg.numer 1 @@ -88878,7 +89685,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2584 this -1569133822 +464887938 1 this.numer 1 @@ -88924,7 +89731,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2585 this -1332961194 +2020152163 1 this.numer -1 @@ -88943,7 +89750,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2584 this -1569133822 +464887938 1 this.numer 1 @@ -88952,7 +89759,7 @@ this.denom 12 1 return -1332961194 +2020152163 1 return.numer -1 @@ -88965,7 +89772,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2587 this -1290299593 +798981583 1 this.numer 1 @@ -88974,7 +89781,7 @@ this.denom 2 1 arg -1332961194 +2020152163 1 arg.numer -1 @@ -89020,7 +89827,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2588 this -529382054 +1104443373 1 this.numer 5 @@ -89039,7 +89846,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2587 this -1290299593 +798981583 1 this.numer 1 @@ -89048,7 +89855,7 @@ this.denom 2 1 arg -1332961194 +2020152163 1 arg.numer -1 @@ -89057,7 +89864,7 @@ arg.denom 12 1 return -529382054 +1104443373 1 return.numer 5 @@ -89070,7 +89877,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2583 this -1290299593 +798981583 1 this.numer 1 @@ -89079,7 +89886,7 @@ this.denom 2 1 arg -1569133822 +464887938 1 arg.numer 1 @@ -89088,7 +89895,7 @@ arg.denom 12 1 return -529382054 +1104443373 1 return.numer 5 @@ -89101,7 +89908,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2590 this -529382054 +1104443373 1 this.numer 5 @@ -89114,7 +89921,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2591 this -529382054 +1104443373 1 this.numer 5 @@ -89127,7 +89934,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2591 this -529382054 +1104443373 1 this.numer 5 @@ -89143,7 +89950,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2590 this -529382054 +1104443373 1 this.numer 5 @@ -89152,7 +89959,7 @@ this.denom 12 1 return -299432057 +898694235 1 return.toString "5/12" @@ -89169,7 +89976,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2592 this -1000397078 +60292059 1 this.numer 0 @@ -89192,7 +89999,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2593 this -1024217583 +869601985 1 this.numer 1 @@ -89215,7 +90022,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2594 this -1943486776 +1365008457 1 this.numer -1 @@ -89238,7 +90045,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2595 this -955973362 +1671179293 1 this.numer 2 @@ -89261,7 +90068,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2596 this -1719131927 +1609124502 1 this.numer 3 @@ -89310,7 +90117,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2597 this -1205310351 +1144068272 1 this.numer 1 @@ -89362,7 +90169,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2599 this -437827106 +1985836631 1 this.numer 1 @@ -89414,7 +90221,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2601 this -1281195920 +1948471365 1 this.numer 1 @@ -89466,7 +90273,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2603 this -241298971 +1636506029 1 this.numer 2 @@ -89518,7 +90325,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2605 this -1062680061 +758348212 1 this.numer 3 @@ -89570,7 +90377,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2607 this -1989776775 +817978763 1 this.numer 5 @@ -89622,7 +90429,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2609 this -1562906341 +1578009262 1 this.numer 6 @@ -89674,7 +90481,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2611 this -1894386730 +1735507635 1 this.numer 8 @@ -89726,7 +90533,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2613 this -365220688 +1362728240 1 this.numer -1 @@ -89778,7 +90585,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2615 this -755840090 +1798219673 1 this.numer 3 @@ -89807,7 +90614,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2617 this -1038620625 +1092572064 1 this.numer 1 @@ -89836,7 +90643,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2618 this -1349761559 +728885526 1 this.numer -1 @@ -89865,7 +90672,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2619 this -1572758852 +922511709 1 this.numer 100 @@ -89894,7 +90701,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2620 this -2129298288 +678433396 1 this.numer 2 @@ -89923,7 +90730,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2621 this -1448832808 +331994761 1 this.numer -2 @@ -89952,7 +90759,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2622 this -215930723 +928294079 1 this.numer 9 @@ -89971,7 +90778,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2623 this -1000397078 +60292059 1 this.numer 0 @@ -89980,7 +90787,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90026,7 +90833,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2624 this -2047781678 +1647809929 1 this.numer 0 @@ -90045,7 +90852,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2623 this -1000397078 +60292059 1 this.numer 0 @@ -90054,7 +90861,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90063,7 +90870,7 @@ arg.denom 1 1 return -2047781678 +1647809929 1 return.numer 0 @@ -90076,7 +90883,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2626 this -2047781678 +1647809929 1 this.numer 0 @@ -90089,7 +90896,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2627 this -2047781678 +1647809929 1 this.numer 0 @@ -90102,7 +90909,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2627 this -2047781678 +1647809929 1 this.numer 0 @@ -90118,7 +90925,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2626 this -2047781678 +1647809929 1 this.numer 0 @@ -90127,7 +90934,7 @@ this.denom 1 1 return -1493735324 +1258084361 1 return.toString "0" @@ -90137,7 +90944,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2628 this -1000397078 +60292059 1 this.numer 0 @@ -90146,7 +90953,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90192,7 +90999,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2629 this -1125757038 +391914049 1 this.numer 0 @@ -90211,7 +91018,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2628 this -1000397078 +60292059 1 this.numer 0 @@ -90220,7 +91027,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90229,7 +91036,7 @@ arg.denom 1 1 return -1125757038 +391914049 1 return.numer 0 @@ -90242,7 +91049,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2631 this -1125757038 +391914049 1 this.numer 0 @@ -90255,7 +91062,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2632 this -1125757038 +391914049 1 this.numer 0 @@ -90268,7 +91075,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2632 this -1125757038 +391914049 1 this.numer 0 @@ -90284,7 +91091,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2631 this -1125757038 +391914049 1 this.numer 0 @@ -90293,7 +91100,7 @@ this.denom 1 1 return -1267607596 +96406857 1 return.toString "0" @@ -90303,7 +91110,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2633 this -1000397078 +60292059 1 this.numer 0 @@ -90312,7 +91119,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -90358,7 +91165,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2634 this -1643087732 +1534745514 1 this.numer 0 @@ -90377,7 +91184,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2633 this -1000397078 +60292059 1 this.numer 0 @@ -90386,7 +91193,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -90395,7 +91202,7 @@ arg.denom 1 1 return -1643087732 +1534745514 1 return.numer 0 @@ -90408,7 +91215,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2636 this -1643087732 +1534745514 1 this.numer 0 @@ -90421,7 +91228,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2637 this -1643087732 +1534745514 1 this.numer 0 @@ -90434,7 +91241,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2637 this -1643087732 +1534745514 1 this.numer 0 @@ -90450,7 +91257,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2636 this -1643087732 +1534745514 1 this.numer 0 @@ -90459,7 +91266,7 @@ this.denom 1 1 return -883294951 +2003496028 1 return.toString "0" @@ -90469,7 +91276,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2638 this -1024217583 +869601985 1 this.numer 1 @@ -90478,7 +91285,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90524,7 +91331,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2639 this -2131273393 +30578394 1 this.numer 0 @@ -90543,7 +91350,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2638 this -1024217583 +869601985 1 this.numer 1 @@ -90552,7 +91359,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90561,7 +91368,7 @@ arg.denom 1 1 return -2131273393 +30578394 1 return.numer 0 @@ -90574,7 +91381,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2641 this -2131273393 +30578394 1 this.numer 0 @@ -90587,7 +91394,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2642 this -2131273393 +30578394 1 this.numer 0 @@ -90600,7 +91407,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2642 this -2131273393 +30578394 1 this.numer 0 @@ -90616,7 +91423,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2641 this -2131273393 +30578394 1 this.numer 0 @@ -90625,7 +91432,7 @@ this.denom 1 1 return -284684191 +2088371948 1 return.toString "0" @@ -90635,7 +91442,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2643 this -1000397078 +60292059 1 this.numer 0 @@ -90644,7 +91451,7 @@ this.denom 1 1 arg -1943486776 +1365008457 1 arg.numer -1 @@ -90690,7 +91497,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2644 this -93632621 +1976870338 1 this.numer 0 @@ -90709,7 +91516,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2643 this -1000397078 +60292059 1 this.numer 0 @@ -90718,7 +91525,7 @@ this.denom 1 1 arg -1943486776 +1365008457 1 arg.numer -1 @@ -90727,7 +91534,7 @@ arg.denom 1 1 return -93632621 +1976870338 1 return.numer 0 @@ -90740,7 +91547,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2646 this -93632621 +1976870338 1 this.numer 0 @@ -90753,7 +91560,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2647 this -93632621 +1976870338 1 this.numer 0 @@ -90766,7 +91573,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2647 this -93632621 +1976870338 1 this.numer 0 @@ -90782,7 +91589,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2646 this -93632621 +1976870338 1 this.numer 0 @@ -90791,7 +91598,7 @@ this.denom 1 1 return -1725431543 +1434234664 1 return.toString "0" @@ -90801,7 +91608,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2648 this -1943486776 +1365008457 1 this.numer -1 @@ -90810,7 +91617,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90856,7 +91663,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2649 this -1856257760 +1083021083 1 this.numer 0 @@ -90875,7 +91682,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2648 this -1943486776 +1365008457 1 this.numer -1 @@ -90884,7 +91691,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -90893,7 +91700,7 @@ arg.denom 1 1 return -1856257760 +1083021083 1 return.numer 0 @@ -90906,7 +91713,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2651 this -1856257760 +1083021083 1 this.numer 0 @@ -90919,7 +91726,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2652 this -1856257760 +1083021083 1 this.numer 0 @@ -90932,7 +91739,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2652 this -1856257760 +1083021083 1 this.numer 0 @@ -90948,7 +91755,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2651 this -1856257760 +1083021083 1 this.numer 0 @@ -90957,7 +91764,7 @@ this.denom 1 1 return -1629232351 +1819063424 1 return.toString "0" @@ -90967,7 +91774,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2653 this -1000397078 +60292059 1 this.numer 0 @@ -90976,7 +91783,7 @@ this.denom 1 1 arg -955973362 +1671179293 1 arg.numer 2 @@ -91022,7 +91829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2654 this -2091624007 +1011279482 1 this.numer 0 @@ -91041,7 +91848,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2653 this -1000397078 +60292059 1 this.numer 0 @@ -91050,7 +91857,7 @@ this.denom 1 1 arg -955973362 +1671179293 1 arg.numer 2 @@ -91059,7 +91866,7 @@ arg.denom 1 1 return -2091624007 +1011279482 1 return.numer 0 @@ -91072,7 +91879,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2656 this -2091624007 +1011279482 1 this.numer 0 @@ -91085,7 +91892,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2657 this -2091624007 +1011279482 1 this.numer 0 @@ -91098,7 +91905,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2657 this -2091624007 +1011279482 1 this.numer 0 @@ -91114,7 +91921,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2656 this -2091624007 +1011279482 1 this.numer 0 @@ -91123,7 +91930,7 @@ this.denom 1 1 return -1764867906 +208866101 1 return.toString "0" @@ -91133,7 +91940,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2658 this -955973362 +1671179293 1 this.numer 2 @@ -91142,7 +91949,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -91188,7 +91995,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2659 this -1090763778 +543846639 1 this.numer 0 @@ -91207,7 +92014,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2658 this -955973362 +1671179293 1 this.numer 2 @@ -91216,7 +92023,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -91225,7 +92032,7 @@ arg.denom 1 1 return -1090763778 +543846639 1 return.numer 0 @@ -91238,7 +92045,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2661 this -1090763778 +543846639 1 this.numer 0 @@ -91251,7 +92058,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2662 this -1090763778 +543846639 1 this.numer 0 @@ -91264,7 +92071,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2662 this -1090763778 +543846639 1 this.numer 0 @@ -91280,7 +92087,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2661 this -1090763778 +543846639 1 this.numer 0 @@ -91289,7 +92096,7 @@ this.denom 1 1 return -1546406054 +690686166 1 return.toString "0" @@ -91299,7 +92106,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2663 this -1000397078 +60292059 1 this.numer 0 @@ -91308,7 +92115,7 @@ this.denom 1 1 arg -1205310351 +1144068272 1 arg.numer 1 @@ -91354,7 +92161,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2664 this -1599453584 +576020159 1 this.numer 0 @@ -91373,7 +92180,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2663 this -1000397078 +60292059 1 this.numer 0 @@ -91382,7 +92189,7 @@ this.denom 1 1 arg -1205310351 +1144068272 1 arg.numer 1 @@ -91391,7 +92198,7 @@ arg.denom 2 1 return -1599453584 +576020159 1 return.numer 0 @@ -91404,7 +92211,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2666 this -1599453584 +576020159 1 this.numer 0 @@ -91417,7 +92224,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2667 this -1599453584 +576020159 1 this.numer 0 @@ -91430,7 +92237,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2667 this -1599453584 +576020159 1 this.numer 0 @@ -91446,7 +92253,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2666 this -1599453584 +576020159 1 this.numer 0 @@ -91455,7 +92262,7 @@ this.denom 1 1 return -1963576789 +921420643 1 return.toString "0" @@ -91465,7 +92272,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2668 this -1205310351 +1144068272 1 this.numer 1 @@ -91474,7 +92281,7 @@ this.denom 2 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -91520,7 +92327,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2669 this -1453889274 +1165303897 1 this.numer 0 @@ -91539,7 +92346,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2668 this -1205310351 +1144068272 1 this.numer 1 @@ -91548,7 +92355,7 @@ this.denom 2 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -91557,7 +92364,7 @@ arg.denom 1 1 return -1453889274 +1165303897 1 return.numer 0 @@ -91570,7 +92377,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2671 this -1453889274 +1165303897 1 this.numer 0 @@ -91583,7 +92390,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2672 this -1453889274 +1165303897 1 this.numer 0 @@ -91596,7 +92403,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2672 this -1453889274 +1165303897 1 this.numer 0 @@ -91612,7 +92419,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2671 this -1453889274 +1165303897 1 this.numer 0 @@ -91621,7 +92428,7 @@ this.denom 1 1 return -1448092552 +887750041 1 return.toString "0" @@ -91631,7 +92438,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2673 this -1000397078 +60292059 1 this.numer 0 @@ -91640,7 +92447,7 @@ this.denom 1 1 arg -755840090 +1798219673 1 arg.numer 3 @@ -91686,7 +92493,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2674 this -659350013 +1010953501 1 this.numer 0 @@ -91705,7 +92512,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2673 this -1000397078 +60292059 1 this.numer 0 @@ -91714,7 +92521,7 @@ this.denom 1 1 arg -755840090 +1798219673 1 arg.numer 3 @@ -91723,7 +92530,7 @@ arg.denom 2 1 return -659350013 +1010953501 1 return.numer 0 @@ -91736,7 +92543,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2676 this -659350013 +1010953501 1 this.numer 0 @@ -91749,7 +92556,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2677 this -659350013 +1010953501 1 this.numer 0 @@ -91762,7 +92569,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2677 this -659350013 +1010953501 1 this.numer 0 @@ -91778,7 +92585,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2676 this -659350013 +1010953501 1 this.numer 0 @@ -91787,7 +92594,7 @@ this.denom 1 1 return -680049971 +1423561005 1 return.toString "0" @@ -91797,7 +92604,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2678 this -755840090 +1798219673 1 this.numer 3 @@ -91806,7 +92613,7 @@ this.denom 2 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -91852,7 +92659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2679 this -691893263 +943870983 1 this.numer 0 @@ -91871,7 +92678,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2678 this -755840090 +1798219673 1 this.numer 3 @@ -91880,7 +92687,7 @@ this.denom 2 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -91889,7 +92696,7 @@ arg.denom 1 1 return -691893263 +943870983 1 return.numer 0 @@ -91902,7 +92709,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2681 this -691893263 +943870983 1 this.numer 0 @@ -91915,7 +92722,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2682 this -691893263 +943870983 1 this.numer 0 @@ -91928,7 +92735,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2682 this -691893263 +943870983 1 this.numer 0 @@ -91944,7 +92751,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2681 this -691893263 +943870983 1 this.numer 0 @@ -91953,7 +92760,7 @@ this.denom 1 1 return -26122736 +1136419747 1 return.toString "0" @@ -91963,7 +92770,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2683 this -1000397078 +60292059 1 this.numer 0 @@ -91972,7 +92779,7 @@ this.denom 1 1 arg -1281195920 +1948471365 1 arg.numer 1 @@ -92018,7 +92825,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2684 this -958159964 +1881561036 1 this.numer 0 @@ -92037,7 +92844,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2683 this -1000397078 +60292059 1 this.numer 0 @@ -92046,7 +92853,7 @@ this.denom 1 1 arg -1281195920 +1948471365 1 arg.numer 1 @@ -92055,7 +92862,7 @@ arg.denom 4 1 return -958159964 +1881561036 1 return.numer 0 @@ -92068,7 +92875,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2686 this -958159964 +1881561036 1 this.numer 0 @@ -92081,7 +92888,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2687 this -958159964 +1881561036 1 this.numer 0 @@ -92094,7 +92901,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2687 this -958159964 +1881561036 1 this.numer 0 @@ -92110,7 +92917,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2686 this -958159964 +1881561036 1 this.numer 0 @@ -92119,7 +92926,7 @@ this.denom 1 1 return -1962129742 +1785507932 1 return.toString "0" @@ -92129,7 +92936,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2688 this -1281195920 +1948471365 1 this.numer 1 @@ -92138,7 +92945,7 @@ this.denom 4 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -92184,7 +92991,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2689 this -755690462 +1084502906 1 this.numer 0 @@ -92203,7 +93010,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2688 this -1281195920 +1948471365 1 this.numer 1 @@ -92212,7 +93019,7 @@ this.denom 4 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -92221,7 +93028,7 @@ arg.denom 1 1 return -755690462 +1084502906 1 return.numer 0 @@ -92234,7 +93041,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2691 this -755690462 +1084502906 1 this.numer 0 @@ -92247,7 +93054,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2692 this -755690462 +1084502906 1 this.numer 0 @@ -92260,7 +93067,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2692 this -755690462 +1084502906 1 this.numer 0 @@ -92276,7 +93083,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2691 this -755690462 +1084502906 1 this.numer 0 @@ -92285,7 +93092,7 @@ this.denom 1 1 return -671306476 +1613095350 1 return.toString "0" @@ -92295,7 +93102,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2693 this -1000397078 +60292059 1 this.numer 0 @@ -92304,7 +93111,7 @@ this.denom 1 1 arg -437827106 +1985836631 1 arg.numer 1 @@ -92350,7 +93157,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2694 this -1916344441 +587153993 1 this.numer 0 @@ -92369,7 +93176,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2693 this -1000397078 +60292059 1 this.numer 0 @@ -92378,7 +93185,7 @@ this.denom 1 1 arg -437827106 +1985836631 1 arg.numer 1 @@ -92387,7 +93194,7 @@ arg.denom 3 1 return -1916344441 +587153993 1 return.numer 0 @@ -92400,7 +93207,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2696 this -1916344441 +587153993 1 this.numer 0 @@ -92413,7 +93220,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2697 this -1916344441 +587153993 1 this.numer 0 @@ -92426,7 +93233,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2697 this -1916344441 +587153993 1 this.numer 0 @@ -92442,7 +93249,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2696 this -1916344441 +587153993 1 this.numer 0 @@ -92451,7 +93258,7 @@ this.denom 1 1 return -41282181 +757004314 1 return.toString "0" @@ -92461,7 +93268,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2698 this -437827106 +1985836631 1 this.numer 1 @@ -92470,7 +93277,7 @@ this.denom 3 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -92516,7 +93323,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2699 this -192398086 +1279271200 1 this.numer 0 @@ -92535,7 +93342,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2698 this -437827106 +1985836631 1 this.numer 1 @@ -92544,7 +93351,7 @@ this.denom 3 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -92553,7 +93360,7 @@ arg.denom 1 1 return -192398086 +1279271200 1 return.numer 0 @@ -92566,7 +93373,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2701 this -192398086 +1279271200 1 this.numer 0 @@ -92579,7 +93386,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2702 this -192398086 +1279271200 1 this.numer 0 @@ -92592,7 +93399,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2702 this -192398086 +1279271200 1 this.numer 0 @@ -92608,7 +93415,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2701 this -192398086 +1279271200 1 this.numer 0 @@ -92617,7 +93424,7 @@ this.denom 1 1 return -1671742667 +52908367 1 return.toString "0" @@ -92627,7 +93434,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2703 this -1000397078 +60292059 1 this.numer 0 @@ -92636,7 +93443,7 @@ this.denom 1 1 arg -1989776775 +817978763 1 arg.numer 5 @@ -92682,7 +93489,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2704 this -1450450568 +1527953000 1 this.numer 0 @@ -92701,7 +93508,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2703 this -1000397078 +60292059 1 this.numer 0 @@ -92710,7 +93517,7 @@ this.denom 1 1 arg -1989776775 +817978763 1 arg.numer 5 @@ -92719,7 +93526,7 @@ arg.denom 6 1 return -1450450568 +1527953000 1 return.numer 0 @@ -92732,7 +93539,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2706 this -1450450568 +1527953000 1 this.numer 0 @@ -92745,7 +93552,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2707 this -1450450568 +1527953000 1 this.numer 0 @@ -92758,7 +93565,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2707 this -1450450568 +1527953000 1 this.numer 0 @@ -92774,7 +93581,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2706 this -1450450568 +1527953000 1 this.numer 0 @@ -92783,7 +93590,7 @@ this.denom 1 1 return -1635819279 +18242360 1 return.toString "0" @@ -92793,7 +93600,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2708 this -1989776775 +817978763 1 this.numer 5 @@ -92802,7 +93609,7 @@ this.denom 6 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -92848,7 +93655,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2709 this -1128973259 +1276261147 1 this.numer 0 @@ -92867,7 +93674,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2708 this -1989776775 +817978763 1 this.numer 5 @@ -92876,7 +93683,7 @@ this.denom 6 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -92885,7 +93692,7 @@ arg.denom 1 1 return -1128973259 +1276261147 1 return.numer 0 @@ -92898,7 +93705,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2711 this -1128973259 +1276261147 1 this.numer 0 @@ -92911,7 +93718,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2712 this -1128973259 +1276261147 1 this.numer 0 @@ -92924,7 +93731,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2712 this -1128973259 +1276261147 1 this.numer 0 @@ -92940,7 +93747,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2711 this -1128973259 +1276261147 1 this.numer 0 @@ -92949,7 +93756,7 @@ this.denom 1 1 return -1635542768 +1971764991 1 return.toString "0" @@ -92959,7 +93766,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2713 this -1000397078 +60292059 1 this.numer 0 @@ -92968,7 +93775,7 @@ this.denom 1 1 arg -1562906341 +1578009262 1 arg.numer 6 @@ -93014,7 +93821,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2714 this -776620176 +996796369 1 this.numer 0 @@ -93033,7 +93840,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2713 this -1000397078 +60292059 1 this.numer 0 @@ -93042,7 +93849,7 @@ this.denom 1 1 arg -1562906341 +1578009262 1 arg.numer 6 @@ -93051,7 +93858,7 @@ arg.denom 5 1 return -776620176 +996796369 1 return.numer 0 @@ -93064,7 +93871,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2716 this -776620176 +996796369 1 this.numer 0 @@ -93077,7 +93884,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2717 this -776620176 +996796369 1 this.numer 0 @@ -93090,7 +93897,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2717 this -776620176 +996796369 1 this.numer 0 @@ -93106,7 +93913,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2716 this -776620176 +996796369 1 this.numer 0 @@ -93115,7 +93922,7 @@ this.denom 1 1 return -249691566 +135640095 1 return.toString "0" @@ -93125,7 +93932,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2718 this -1562906341 +1578009262 1 this.numer 6 @@ -93134,7 +93941,7 @@ this.denom 5 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -93180,7 +93987,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2719 this -383103524 +1430439149 1 this.numer 0 @@ -93199,7 +94006,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2718 this -1562906341 +1578009262 1 this.numer 6 @@ -93208,7 +94015,7 @@ this.denom 5 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -93217,7 +94024,7 @@ arg.denom 1 1 return -383103524 +1430439149 1 return.numer 0 @@ -93230,7 +94037,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2721 this -383103524 +1430439149 1 this.numer 0 @@ -93243,7 +94050,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2722 this -383103524 +1430439149 1 this.numer 0 @@ -93256,7 +94063,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2722 this -383103524 +1430439149 1 this.numer 0 @@ -93272,7 +94079,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2721 this -383103524 +1430439149 1 this.numer 0 @@ -93281,7 +94088,7 @@ this.denom 1 1 return -664954162 +359922172 1 return.toString "0" @@ -93291,7 +94098,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2723 this -1000397078 +60292059 1 this.numer 0 @@ -93300,7 +94107,7 @@ this.denom 1 1 arg -1894386730 +1735507635 1 arg.numer 8 @@ -93346,7 +94153,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2724 this -379701746 +1632682988 1 this.numer 0 @@ -93365,7 +94172,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2723 this -1000397078 +60292059 1 this.numer 0 @@ -93374,7 +94181,7 @@ this.denom 1 1 arg -1894386730 +1735507635 1 arg.numer 8 @@ -93383,7 +94190,7 @@ arg.denom 7 1 return -379701746 +1632682988 1 return.numer 0 @@ -93396,7 +94203,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2726 this -379701746 +1632682988 1 this.numer 0 @@ -93409,7 +94216,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2727 this -379701746 +1632682988 1 this.numer 0 @@ -93422,7 +94229,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2727 this -379701746 +1632682988 1 this.numer 0 @@ -93438,7 +94245,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2726 this -379701746 +1632682988 1 this.numer 0 @@ -93447,7 +94254,7 @@ this.denom 1 1 return -1473329785 +1153447573 1 return.toString "0" @@ -93457,7 +94264,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2728 this -1894386730 +1735507635 1 this.numer 8 @@ -93466,7 +94273,7 @@ this.denom 7 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -93512,7 +94319,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2729 this -1767246585 +132577100 1 this.numer 0 @@ -93531,7 +94338,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2728 this -1894386730 +1735507635 1 this.numer 8 @@ -93540,7 +94347,7 @@ this.denom 7 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -93549,7 +94356,7 @@ arg.denom 1 1 return -1767246585 +132577100 1 return.numer 0 @@ -93562,7 +94369,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2731 this -1767246585 +132577100 1 this.numer 0 @@ -93575,7 +94382,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2732 this -1767246585 +132577100 1 this.numer 0 @@ -93588,7 +94395,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2732 this -1767246585 +132577100 1 this.numer 0 @@ -93604,7 +94411,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2731 this -1767246585 +132577100 1 this.numer 0 @@ -93613,7 +94420,7 @@ this.denom 1 1 return -267032438 +231756373 1 return.toString "0" @@ -93623,7 +94430,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2733 this -1024217583 +869601985 1 this.numer 1 @@ -93632,7 +94439,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -93678,7 +94485,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2734 this -1920846883 +1786294176 1 this.numer 0 @@ -93697,7 +94504,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2733 this -1024217583 +869601985 1 this.numer 1 @@ -93706,7 +94513,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -93715,7 +94522,7 @@ arg.denom 1 1 return -1920846883 +1786294176 1 return.numer 0 @@ -93728,7 +94535,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2736 this -1000397078 +60292059 1 this.numer 0 @@ -93741,7 +94548,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2737 this -1000397078 +60292059 1 this.numer 0 @@ -93754,7 +94561,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2737 this -1000397078 +60292059 1 this.numer 0 @@ -93770,7 +94577,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2736 this -1000397078 +60292059 1 this.numer 0 @@ -93779,7 +94586,7 @@ this.denom 1 1 return -551897230 +793331940 1 return.toString "0" @@ -93789,7 +94596,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2738 this -1920846883 +1786294176 1 this.numer 0 @@ -93802,7 +94609,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2739 this -1920846883 +1786294176 1 this.numer 0 @@ -93815,7 +94622,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2739 this -1920846883 +1786294176 1 this.numer 0 @@ -93831,7 +94638,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2738 this -1920846883 +1786294176 1 this.numer 0 @@ -93840,7 +94647,7 @@ this.denom 1 1 return -754873217 +522553046 1 return.toString "0" @@ -93850,7 +94657,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2740 this -1000397078 +60292059 1 this.numer 0 @@ -93859,7 +94666,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -93905,7 +94712,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2741 this -1968255290 +275266973 1 this.numer 0 @@ -93924,7 +94731,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2740 this -1000397078 +60292059 1 this.numer 0 @@ -93933,7 +94740,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -93942,7 +94749,7 @@ arg.denom 1 1 return -1968255290 +275266973 1 return.numer 0 @@ -93955,7 +94762,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2743 this -1000397078 +60292059 1 this.numer 0 @@ -93968,7 +94775,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2744 this -1000397078 +60292059 1 this.numer 0 @@ -93981,7 +94788,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2744 this -1000397078 +60292059 1 this.numer 0 @@ -93997,7 +94804,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2743 this -1000397078 +60292059 1 this.numer 0 @@ -94006,7 +94813,7 @@ this.denom 1 1 return -628560642 +1069716895 1 return.toString "0" @@ -94016,7 +94823,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2745 this -1968255290 +275266973 1 this.numer 0 @@ -94029,7 +94836,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2746 this -1968255290 +275266973 1 this.numer 0 @@ -94042,7 +94849,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2746 this -1968255290 +275266973 1 this.numer 0 @@ -94058,7 +94865,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2745 this -1968255290 +275266973 1 this.numer 0 @@ -94067,7 +94874,7 @@ this.denom 1 1 return -746650501 +1521083627 1 return.toString "0" @@ -94077,7 +94884,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2747 this -1024217583 +869601985 1 this.numer 1 @@ -94086,7 +94893,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -94132,7 +94939,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2748 this -1208020886 +1770642014 1 this.numer 1 @@ -94151,7 +94958,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2747 this -1024217583 +869601985 1 this.numer 1 @@ -94160,7 +94967,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -94169,7 +94976,7 @@ arg.denom 1 1 return -1208020886 +1770642014 1 return.numer 1 @@ -94182,7 +94989,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2750 this -1024217583 +869601985 1 this.numer 1 @@ -94195,7 +95002,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2751 this -1024217583 +869601985 1 this.numer 1 @@ -94208,7 +95015,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2751 this -1024217583 +869601985 1 this.numer 1 @@ -94224,7 +95031,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2750 this -1024217583 +869601985 1 this.numer 1 @@ -94233,7 +95040,7 @@ this.denom 1 1 return -896632264 +945591847 1 return.toString "1" @@ -94243,7 +95050,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2752 this -1208020886 +1770642014 1 this.numer 1 @@ -94256,7 +95063,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2753 this -1208020886 +1770642014 1 this.numer 1 @@ -94269,7 +95076,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2753 this -1208020886 +1770642014 1 this.numer 1 @@ -94285,7 +95092,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2752 this -1208020886 +1770642014 1 this.numer 1 @@ -94294,7 +95101,7 @@ this.denom 1 1 return -805710049 +328827614 1 return.toString "1" @@ -94304,7 +95111,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2754 this -1024217583 +869601985 1 this.numer 1 @@ -94313,7 +95120,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -94359,7 +95166,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2755 this -1684399208 +109228794 1 this.numer 1 @@ -94378,7 +95185,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2754 this -1024217583 +869601985 1 this.numer 1 @@ -94387,7 +95194,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -94396,7 +95203,7 @@ arg.denom 1 1 return -1684399208 +109228794 1 return.numer 1 @@ -94409,7 +95216,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2757 this -1024217583 +869601985 1 this.numer 1 @@ -94422,7 +95229,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2758 this -1024217583 +869601985 1 this.numer 1 @@ -94435,7 +95242,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2758 this -1024217583 +869601985 1 this.numer 1 @@ -94451,7 +95258,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2757 this -1024217583 +869601985 1 this.numer 1 @@ -94460,7 +95267,7 @@ this.denom 1 1 return -1568054102 +561959774 1 return.toString "1" @@ -94470,7 +95277,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2759 this -1684399208 +109228794 1 this.numer 1 @@ -94483,7 +95290,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2760 this -1684399208 +109228794 1 this.numer 1 @@ -94496,7 +95303,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2760 this -1684399208 +109228794 1 this.numer 1 @@ -94512,7 +95319,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2759 this -1684399208 +109228794 1 this.numer 1 @@ -94521,7 +95328,7 @@ this.denom 1 1 return -365976330 +2110756088 1 return.toString "1" @@ -94531,7 +95338,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2761 this -1024217583 +869601985 1 this.numer 1 @@ -94540,7 +95347,7 @@ this.denom 1 1 arg -1943486776 +1365008457 1 arg.numer -1 @@ -94586,7 +95393,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2762 this -571013302 +580871917 1 this.numer -1 @@ -94605,7 +95412,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2761 this -1024217583 +869601985 1 this.numer 1 @@ -94614,7 +95421,7 @@ this.denom 1 1 arg -1943486776 +1365008457 1 arg.numer -1 @@ -94623,7 +95430,7 @@ arg.denom 1 1 return -571013302 +580871917 1 return.numer -1 @@ -94636,7 +95443,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2764 this -1943486776 +1365008457 1 this.numer -1 @@ -94649,7 +95456,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2765 this -1943486776 +1365008457 1 this.numer -1 @@ -94662,7 +95469,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2765 this -1943486776 +1365008457 1 this.numer -1 @@ -94678,7 +95485,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2764 this -1943486776 +1365008457 1 this.numer -1 @@ -94687,7 +95494,7 @@ this.denom 1 1 return -2063631918 +823723302 1 return.toString "-1" @@ -94697,7 +95504,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2766 this -571013302 +580871917 1 this.numer -1 @@ -94710,7 +95517,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2767 this -571013302 +580871917 1 this.numer -1 @@ -94723,7 +95530,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2767 this -571013302 +580871917 1 this.numer -1 @@ -94739,7 +95546,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2766 this -571013302 +580871917 1 this.numer -1 @@ -94748,7 +95555,7 @@ this.denom 1 1 return -1600746776 +1714078840 1 return.toString "-1" @@ -94758,7 +95565,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2768 this -1943486776 +1365008457 1 this.numer -1 @@ -94767,7 +95574,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -94813,7 +95620,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2769 this -75934616 +1732502545 1 this.numer -1 @@ -94832,7 +95639,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2768 this -1943486776 +1365008457 1 this.numer -1 @@ -94841,7 +95648,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -94850,7 +95657,7 @@ arg.denom 1 1 return -75934616 +1732502545 1 return.numer -1 @@ -94863,7 +95670,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2771 this -1943486776 +1365008457 1 this.numer -1 @@ -94876,7 +95683,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2772 this -1943486776 +1365008457 1 this.numer -1 @@ -94889,7 +95696,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2772 this -1943486776 +1365008457 1 this.numer -1 @@ -94905,7 +95712,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2771 this -1943486776 +1365008457 1 this.numer -1 @@ -94914,7 +95721,7 @@ this.denom 1 1 return -627804794 +1051876890 1 return.toString "-1" @@ -94924,7 +95731,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2773 this -75934616 +1732502545 1 this.numer -1 @@ -94937,7 +95744,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2774 this -75934616 +1732502545 1 this.numer -1 @@ -94950,7 +95757,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2774 this -75934616 +1732502545 1 this.numer -1 @@ -94966,7 +95773,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2773 this -75934616 +1732502545 1 this.numer -1 @@ -94975,7 +95782,7 @@ this.denom 1 1 return -928015047 +1199262943 1 return.toString "-1" @@ -94985,7 +95792,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2775 this -1024217583 +869601985 1 this.numer 1 @@ -94994,7 +95801,7 @@ this.denom 1 1 arg -955973362 +1671179293 1 arg.numer 2 @@ -95040,7 +95847,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2776 this -2122650415 +2009221452 1 this.numer 2 @@ -95059,7 +95866,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2775 this -1024217583 +869601985 1 this.numer 1 @@ -95068,7 +95875,7 @@ this.denom 1 1 arg -955973362 +1671179293 1 arg.numer 2 @@ -95077,7 +95884,7 @@ arg.denom 1 1 return -2122650415 +2009221452 1 return.numer 2 @@ -95090,7 +95897,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2778 this -955973362 +1671179293 1 this.numer 2 @@ -95103,7 +95910,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2779 this -955973362 +1671179293 1 this.numer 2 @@ -95116,7 +95923,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2779 this -955973362 +1671179293 1 this.numer 2 @@ -95132,7 +95939,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2778 this -955973362 +1671179293 1 this.numer 2 @@ -95141,7 +95948,7 @@ this.denom 1 1 return -1387180941 +257513673 1 return.toString "2" @@ -95151,7 +95958,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2780 this -2122650415 +2009221452 1 this.numer 2 @@ -95164,7 +95971,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2781 this -2122650415 +2009221452 1 this.numer 2 @@ -95177,7 +95984,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2781 this -2122650415 +2009221452 1 this.numer 2 @@ -95193,7 +96000,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2780 this -2122650415 +2009221452 1 this.numer 2 @@ -95202,7 +96009,7 @@ this.denom 1 1 return -1267603555 +590845366 1 return.toString "2" @@ -95212,7 +96019,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2782 this -955973362 +1671179293 1 this.numer 2 @@ -95221,7 +96028,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -95267,7 +96074,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2783 this -1575170645 +1052195003 1 this.numer 2 @@ -95286,7 +96093,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2782 this -955973362 +1671179293 1 this.numer 2 @@ -95295,7 +96102,7 @@ this.denom 1 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -95304,7 +96111,7 @@ arg.denom 1 1 return -1575170645 +1052195003 1 return.numer 2 @@ -95317,7 +96124,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2785 this -955973362 +1671179293 1 this.numer 2 @@ -95330,7 +96137,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2786 this -955973362 +1671179293 1 this.numer 2 @@ -95343,7 +96150,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2786 this -955973362 +1671179293 1 this.numer 2 @@ -95359,7 +96166,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2785 this -955973362 +1671179293 1 this.numer 2 @@ -95368,7 +96175,7 @@ this.denom 1 1 return -1862113946 +1541049864 1 return.toString "2" @@ -95378,7 +96185,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2787 this -1575170645 +1052195003 1 this.numer 2 @@ -95391,7 +96198,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2788 this -1575170645 +1052195003 1 this.numer 2 @@ -95404,7 +96211,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2788 this -1575170645 +1052195003 1 this.numer 2 @@ -95420,7 +96227,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2787 this -1575170645 +1052195003 1 this.numer 2 @@ -95429,7 +96236,7 @@ this.denom 1 1 return -1269902691 +511707818 1 return.toString "2" @@ -95439,7 +96246,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2789 this -1024217583 +869601985 1 this.numer 1 @@ -95448,7 +96255,7 @@ this.denom 1 1 arg -1205310351 +1144068272 1 arg.numer 1 @@ -95494,7 +96301,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2790 this -1562043751 +25536233 1 this.numer 1 @@ -95513,7 +96320,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2789 this -1024217583 +869601985 1 this.numer 1 @@ -95522,7 +96329,7 @@ this.denom 1 1 arg -1205310351 +1144068272 1 arg.numer 1 @@ -95531,7 +96338,7 @@ arg.denom 2 1 return -1562043751 +25536233 1 return.numer 1 @@ -95544,7 +96351,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2792 this -1205310351 +1144068272 1 this.numer 1 @@ -95557,7 +96364,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2793 this -1205310351 +1144068272 1 this.numer 1 @@ -95570,7 +96377,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2793 this -1205310351 +1144068272 1 this.numer 1 @@ -95586,7 +96393,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2792 this -1205310351 +1144068272 1 this.numer 1 @@ -95595,7 +96402,7 @@ this.denom 2 1 return -281738482 +116405378 1 return.toString "1/2" @@ -95605,7 +96412,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2794 this -1562043751 +25536233 1 this.numer 1 @@ -95618,7 +96425,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2795 this -1562043751 +25536233 1 this.numer 1 @@ -95631,7 +96438,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2795 this -1562043751 +25536233 1 this.numer 1 @@ -95647,7 +96454,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2794 this -1562043751 +25536233 1 this.numer 1 @@ -95656,7 +96463,7 @@ this.denom 2 1 return -2124708986 +164974746 1 return.toString "1/2" @@ -95666,7 +96473,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2796 this -1205310351 +1144068272 1 this.numer 1 @@ -95675,7 +96482,7 @@ this.denom 2 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -95721,7 +96528,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2797 this -1625845386 +396283472 1 this.numer 1 @@ -95740,7 +96547,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2796 this -1205310351 +1144068272 1 this.numer 1 @@ -95749,7 +96556,7 @@ this.denom 2 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -95758,7 +96565,7 @@ arg.denom 1 1 return -1625845386 +396283472 1 return.numer 1 @@ -95771,7 +96578,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2799 this -1205310351 +1144068272 1 this.numer 1 @@ -95784,7 +96591,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2800 this -1205310351 +1144068272 1 this.numer 1 @@ -95797,7 +96604,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2800 this -1205310351 +1144068272 1 this.numer 1 @@ -95813,7 +96620,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2799 this -1205310351 +1144068272 1 this.numer 1 @@ -95822,7 +96629,7 @@ this.denom 2 1 return -1001478074 +989892772 1 return.toString "1/2" @@ -95832,7 +96639,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2801 this -1625845386 +396283472 1 this.numer 1 @@ -95845,7 +96652,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2802 this -1625845386 +396283472 1 this.numer 1 @@ -95858,7 +96665,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2802 this -1625845386 +396283472 1 this.numer 1 @@ -95874,7 +96681,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2801 this -1625845386 +396283472 1 this.numer 1 @@ -95883,7 +96690,7 @@ this.denom 2 1 return -2012648179 +1020520290 1 return.toString "1/2" @@ -95893,7 +96700,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2803 this -1024217583 +869601985 1 this.numer 1 @@ -95902,7 +96709,7 @@ this.denom 1 1 arg -755840090 +1798219673 1 arg.numer 3 @@ -95948,7 +96755,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2804 this -1563020556 +530653666 1 this.numer 3 @@ -95967,7 +96774,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2803 this -1024217583 +869601985 1 this.numer 1 @@ -95976,7 +96783,7 @@ this.denom 1 1 arg -755840090 +1798219673 1 arg.numer 3 @@ -95985,7 +96792,7 @@ arg.denom 2 1 return -1563020556 +530653666 1 return.numer 3 @@ -95998,7 +96805,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2806 this -755840090 +1798219673 1 this.numer 3 @@ -96011,7 +96818,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2807 this -755840090 +1798219673 1 this.numer 3 @@ -96024,7 +96831,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2807 this -755840090 +1798219673 1 this.numer 3 @@ -96040,7 +96847,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2806 this -755840090 +1798219673 1 this.numer 3 @@ -96049,7 +96856,7 @@ this.denom 2 1 return -1666514588 +2125238280 1 return.toString "3/2" @@ -96059,7 +96866,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2808 this -1563020556 +530653666 1 this.numer 3 @@ -96072,7 +96879,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2809 this -1563020556 +530653666 1 this.numer 3 @@ -96085,7 +96892,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2809 this -1563020556 +530653666 1 this.numer 3 @@ -96101,7 +96908,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2808 this -1563020556 +530653666 1 this.numer 3 @@ -96110,7 +96917,7 @@ this.denom 2 1 return -1628956342 +1092004553 1 return.toString "3/2" @@ -96120,7 +96927,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2810 this -755840090 +1798219673 1 this.numer 3 @@ -96129,7 +96936,7 @@ this.denom 2 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -96175,7 +96982,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2811 this -1747708038 +1658699134 1 this.numer 3 @@ -96194,7 +97001,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2810 this -755840090 +1798219673 1 this.numer 3 @@ -96203,7 +97010,7 @@ this.denom 2 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -96212,7 +97019,7 @@ arg.denom 1 1 return -1747708038 +1658699134 1 return.numer 3 @@ -96225,7 +97032,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2813 this -755840090 +1798219673 1 this.numer 3 @@ -96238,7 +97045,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2814 this -755840090 +1798219673 1 this.numer 3 @@ -96251,7 +97058,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2814 this -755840090 +1798219673 1 this.numer 3 @@ -96267,7 +97074,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2813 this -755840090 +1798219673 1 this.numer 3 @@ -96276,7 +97083,7 @@ this.denom 2 1 return -447671000 +1961176822 1 return.toString "3/2" @@ -96286,7 +97093,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2815 this -1747708038 +1658699134 1 this.numer 3 @@ -96299,7 +97106,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2816 this -1747708038 +1658699134 1 this.numer 3 @@ -96312,7 +97119,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2816 this -1747708038 +1658699134 1 this.numer 3 @@ -96328,7 +97135,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2815 this -1747708038 +1658699134 1 this.numer 3 @@ -96337,7 +97144,7 @@ this.denom 2 1 return -1371281559 +1859374258 1 return.toString "3/2" @@ -96347,7 +97154,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2817 this -1024217583 +869601985 1 this.numer 1 @@ -96356,7 +97163,7 @@ this.denom 1 1 arg -1281195920 +1948471365 1 arg.numer 1 @@ -96402,7 +97209,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2818 this -334662509 +442987331 1 this.numer 1 @@ -96421,7 +97228,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2817 this -1024217583 +869601985 1 this.numer 1 @@ -96430,7 +97237,7 @@ this.denom 1 1 arg -1281195920 +1948471365 1 arg.numer 1 @@ -96439,7 +97246,7 @@ arg.denom 4 1 return -334662509 +442987331 1 return.numer 1 @@ -96452,7 +97259,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2820 this -1281195920 +1948471365 1 this.numer 1 @@ -96465,7 +97272,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2821 this -1281195920 +1948471365 1 this.numer 1 @@ -96478,7 +97285,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2821 this -1281195920 +1948471365 1 this.numer 1 @@ -96494,7 +97301,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2820 this -1281195920 +1948471365 1 this.numer 1 @@ -96503,7 +97310,7 @@ this.denom 4 1 return -413117270 +366873404 1 return.toString "1/4" @@ -96513,7 +97320,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2822 this -334662509 +442987331 1 this.numer 1 @@ -96526,7 +97333,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2823 this -334662509 +442987331 1 this.numer 1 @@ -96539,7 +97346,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2823 this -334662509 +442987331 1 this.numer 1 @@ -96555,7 +97362,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2822 this -334662509 +442987331 1 this.numer 1 @@ -96564,7 +97371,7 @@ this.denom 4 1 return -447326139 +1217467887 1 return.toString "1/4" @@ -96574,7 +97381,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2824 this -1281195920 +1948471365 1 this.numer 1 @@ -96583,7 +97390,7 @@ this.denom 4 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -96629,7 +97436,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2825 this -2017653673 +945288723 1 this.numer 1 @@ -96648,7 +97455,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2824 this -1281195920 +1948471365 1 this.numer 1 @@ -96657,7 +97464,7 @@ this.denom 4 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -96666,7 +97473,7 @@ arg.denom 1 1 return -2017653673 +945288723 1 return.numer 1 @@ -96679,7 +97486,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2827 this -1281195920 +1948471365 1 this.numer 1 @@ -96692,7 +97499,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2828 this -1281195920 +1948471365 1 this.numer 1 @@ -96705,7 +97512,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2828 this -1281195920 +1948471365 1 this.numer 1 @@ -96721,7 +97528,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2827 this -1281195920 +1948471365 1 this.numer 1 @@ -96730,7 +97537,7 @@ this.denom 4 1 return -1938495981 +428566321 1 return.toString "1/4" @@ -96740,7 +97547,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2829 this -2017653673 +945288723 1 this.numer 1 @@ -96753,7 +97560,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2830 this -2017653673 +945288723 1 this.numer 1 @@ -96766,7 +97573,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2830 this -2017653673 +945288723 1 this.numer 1 @@ -96782,7 +97589,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2829 this -2017653673 +945288723 1 this.numer 1 @@ -96791,7 +97598,7 @@ this.denom 4 1 return -827544030 +2087258327 1 return.toString "1/4" @@ -96801,7 +97608,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2831 this -1024217583 +869601985 1 this.numer 1 @@ -96810,7 +97617,7 @@ this.denom 1 1 arg -437827106 +1985836631 1 arg.numer 1 @@ -96856,7 +97663,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2832 this -1428414238 +1016550616 1 this.numer 1 @@ -96875,7 +97682,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2831 this -1024217583 +869601985 1 this.numer 1 @@ -96884,7 +97691,7 @@ this.denom 1 1 arg -437827106 +1985836631 1 arg.numer 1 @@ -96893,7 +97700,7 @@ arg.denom 3 1 return -1428414238 +1016550616 1 return.numer 1 @@ -96906,7 +97713,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2834 this -437827106 +1985836631 1 this.numer 1 @@ -96919,7 +97726,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2835 this -437827106 +1985836631 1 this.numer 1 @@ -96932,7 +97739,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2835 this -437827106 +1985836631 1 this.numer 1 @@ -96948,7 +97755,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2834 this -437827106 +1985836631 1 this.numer 1 @@ -96957,7 +97764,7 @@ this.denom 3 1 return -638408253 +1006094903 1 return.toString "1/3" @@ -96967,7 +97774,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2836 this -1428414238 +1016550616 1 this.numer 1 @@ -96980,7 +97787,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2837 this -1428414238 +1016550616 1 this.numer 1 @@ -96993,7 +97800,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2837 this -1428414238 +1016550616 1 this.numer 1 @@ -97009,7 +97816,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2836 this -1428414238 +1016550616 1 this.numer 1 @@ -97018,7 +97825,7 @@ this.denom 3 1 return -899207759 +2030538903 1 return.toString "1/3" @@ -97028,7 +97835,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2838 this -437827106 +1985836631 1 this.numer 1 @@ -97037,7 +97844,7 @@ this.denom 3 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -97083,7 +97890,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2839 this -1142381574 +1293680848 1 this.numer 1 @@ -97102,7 +97909,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2838 this -437827106 +1985836631 1 this.numer 1 @@ -97111,7 +97918,7 @@ this.denom 3 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -97120,7 +97927,7 @@ arg.denom 1 1 return -1142381574 +1293680848 1 return.numer 1 @@ -97133,7 +97940,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2841 this -437827106 +1985836631 1 this.numer 1 @@ -97146,7 +97953,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2842 this -437827106 +1985836631 1 this.numer 1 @@ -97159,7 +97966,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2842 this -437827106 +1985836631 1 this.numer 1 @@ -97175,7 +97982,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2841 this -437827106 +1985836631 1 this.numer 1 @@ -97184,7 +97991,7 @@ this.denom 3 1 return -1503310038 +1261153343 1 return.toString "1/3" @@ -97194,7 +98001,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2843 this -1142381574 +1293680848 1 this.numer 1 @@ -97207,7 +98014,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2844 this -1142381574 +1293680848 1 this.numer 1 @@ -97220,7 +98027,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2844 this -1142381574 +1293680848 1 this.numer 1 @@ -97236,7 +98043,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2843 this -1142381574 +1293680848 1 this.numer 1 @@ -97245,7 +98052,7 @@ this.denom 3 1 return -986701711 +1309176095 1 return.toString "1/3" @@ -97255,7 +98062,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2845 this -1024217583 +869601985 1 this.numer 1 @@ -97264,7 +98071,7 @@ this.denom 1 1 arg -1989776775 +817978763 1 arg.numer 5 @@ -97310,7 +98117,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2846 this -626934643 +198099809 1 this.numer 5 @@ -97329,7 +98136,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2845 this -1024217583 +869601985 1 this.numer 1 @@ -97338,7 +98145,7 @@ this.denom 1 1 arg -1989776775 +817978763 1 arg.numer 5 @@ -97347,7 +98154,7 @@ arg.denom 6 1 return -626934643 +198099809 1 return.numer 5 @@ -97360,7 +98167,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2848 this -1989776775 +817978763 1 this.numer 5 @@ -97373,7 +98180,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2849 this -1989776775 +817978763 1 this.numer 5 @@ -97386,7 +98193,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2849 this -1989776775 +817978763 1 this.numer 5 @@ -97402,7 +98209,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2848 this -1989776775 +817978763 1 this.numer 5 @@ -97411,7 +98218,7 @@ this.denom 6 1 return -1335772719 +645482568 1 return.toString "5/6" @@ -97421,7 +98228,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2850 this -626934643 +198099809 1 this.numer 5 @@ -97434,7 +98241,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2851 this -626934643 +198099809 1 this.numer 5 @@ -97447,7 +98254,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2851 this -626934643 +198099809 1 this.numer 5 @@ -97463,7 +98270,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2850 this -626934643 +198099809 1 this.numer 5 @@ -97472,7 +98279,7 @@ this.denom 6 1 return -538042495 +807752428 1 return.toString "5/6" @@ -97482,7 +98289,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2852 this -1989776775 +817978763 1 this.numer 5 @@ -97491,7 +98298,7 @@ this.denom 6 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -97537,7 +98344,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2853 this -1974059595 +1026055550 1 this.numer 5 @@ -97556,7 +98363,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2852 this -1989776775 +817978763 1 this.numer 5 @@ -97565,7 +98372,7 @@ this.denom 6 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -97574,7 +98381,7 @@ arg.denom 1 1 return -1974059595 +1026055550 1 return.numer 5 @@ -97587,7 +98394,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2855 this -1989776775 +817978763 1 this.numer 5 @@ -97600,7 +98407,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2856 this -1989776775 +817978763 1 this.numer 5 @@ -97613,7 +98420,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2856 this -1989776775 +817978763 1 this.numer 5 @@ -97629,7 +98436,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2855 this -1989776775 +817978763 1 this.numer 5 @@ -97638,7 +98445,7 @@ this.denom 6 1 return -1544750662 +1073763441 1 return.toString "5/6" @@ -97648,7 +98455,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2857 this -1974059595 +1026055550 1 this.numer 5 @@ -97661,7 +98468,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2858 this -1974059595 +1026055550 1 this.numer 5 @@ -97674,7 +98481,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2858 this -1974059595 +1026055550 1 this.numer 5 @@ -97690,7 +98497,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2857 this -1974059595 +1026055550 1 this.numer 5 @@ -97699,7 +98506,7 @@ this.denom 6 1 return -1694567651 +752316209 1 return.toString "5/6" @@ -97709,7 +98516,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2859 this -1024217583 +869601985 1 this.numer 1 @@ -97718,7 +98525,7 @@ this.denom 1 1 arg -1562906341 +1578009262 1 arg.numer 6 @@ -97764,7 +98571,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2860 this -670383843 +914356853 1 this.numer 6 @@ -97783,7 +98590,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2859 this -1024217583 +869601985 1 this.numer 1 @@ -97792,7 +98599,7 @@ this.denom 1 1 arg -1562906341 +1578009262 1 arg.numer 6 @@ -97801,7 +98608,7 @@ arg.denom 5 1 return -670383843 +914356853 1 return.numer 6 @@ -97814,7 +98621,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2862 this -1562906341 +1578009262 1 this.numer 6 @@ -97827,7 +98634,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2863 this -1562906341 +1578009262 1 this.numer 6 @@ -97840,7 +98647,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2863 this -1562906341 +1578009262 1 this.numer 6 @@ -97856,7 +98663,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2862 this -1562906341 +1578009262 1 this.numer 6 @@ -97865,7 +98672,7 @@ this.denom 5 1 return -1442037139 +1229161065 1 return.toString "6/5" @@ -97875,7 +98682,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2864 this -670383843 +914356853 1 this.numer 6 @@ -97888,7 +98695,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2865 this -670383843 +914356853 1 this.numer 6 @@ -97901,7 +98708,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2865 this -670383843 +914356853 1 this.numer 6 @@ -97917,7 +98724,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2864 this -670383843 +914356853 1 this.numer 6 @@ -97926,7 +98733,7 @@ this.denom 5 1 return -1965238778 +195228908 1 return.toString "6/5" @@ -97936,7 +98743,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2866 this -1562906341 +1578009262 1 this.numer 6 @@ -97945,7 +98752,7 @@ this.denom 5 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -97991,7 +98798,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2867 this -1469650986 +471579726 1 this.numer 6 @@ -98010,7 +98817,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2866 this -1562906341 +1578009262 1 this.numer 6 @@ -98019,7 +98826,7 @@ this.denom 5 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -98028,7 +98835,7 @@ arg.denom 1 1 return -1469650986 +471579726 1 return.numer 6 @@ -98041,7 +98848,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2869 this -1562906341 +1578009262 1 this.numer 6 @@ -98054,7 +98861,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2870 this -1562906341 +1578009262 1 this.numer 6 @@ -98067,7 +98874,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2870 this -1562906341 +1578009262 1 this.numer 6 @@ -98083,7 +98890,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2869 this -1562906341 +1578009262 1 this.numer 6 @@ -98092,7 +98899,7 @@ this.denom 5 1 return -67213908 +1442726378 1 return.toString "6/5" @@ -98102,7 +98909,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2871 this -1469650986 +471579726 1 this.numer 6 @@ -98115,7 +98922,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2872 this -1469650986 +471579726 1 this.numer 6 @@ -98128,7 +98935,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2872 this -1469650986 +471579726 1 this.numer 6 @@ -98144,7 +98951,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2871 this -1469650986 +471579726 1 this.numer 6 @@ -98153,7 +98960,7 @@ this.denom 5 1 return -87753434 +16503286 1 return.toString "6/5" @@ -98163,7 +98970,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2873 this -1024217583 +869601985 1 this.numer 1 @@ -98172,7 +98979,7 @@ this.denom 1 1 arg -1894386730 +1735507635 1 arg.numer 8 @@ -98218,7 +99025,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2874 this -1698183396 +484589713 1 this.numer 8 @@ -98237,7 +99044,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2873 this -1024217583 +869601985 1 this.numer 1 @@ -98246,7 +99053,7 @@ this.denom 1 1 arg -1894386730 +1735507635 1 arg.numer 8 @@ -98255,7 +99062,7 @@ arg.denom 7 1 return -1698183396 +484589713 1 return.numer 8 @@ -98268,7 +99075,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2876 this -1894386730 +1735507635 1 this.numer 8 @@ -98281,7 +99088,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2877 this -1894386730 +1735507635 1 this.numer 8 @@ -98294,7 +99101,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2877 this -1894386730 +1735507635 1 this.numer 8 @@ -98310,7 +99117,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2876 this -1894386730 +1735507635 1 this.numer 8 @@ -98319,7 +99126,7 @@ this.denom 7 1 return -1310667942 +1574598287 1 return.toString "8/7" @@ -98329,7 +99136,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2878 this -1698183396 +484589713 1 this.numer 8 @@ -98342,7 +99149,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2879 this -1698183396 +484589713 1 this.numer 8 @@ -98355,7 +99162,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2879 this -1698183396 +484589713 1 this.numer 8 @@ -98371,7 +99178,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2878 this -1698183396 +484589713 1 this.numer 8 @@ -98380,7 +99187,7 @@ this.denom 7 1 return -1656333915 +2056031695 1 return.toString "8/7" @@ -98390,7 +99197,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2880 this -1894386730 +1735507635 1 this.numer 8 @@ -98399,7 +99206,7 @@ this.denom 7 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -98445,7 +99252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2881 this -173593344 +606508809 1 this.numer 8 @@ -98464,7 +99271,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2880 this -1894386730 +1735507635 1 this.numer 8 @@ -98473,7 +99280,7 @@ this.denom 7 1 arg -1024217583 +869601985 1 arg.numer 1 @@ -98482,7 +99289,7 @@ arg.denom 1 1 return -173593344 +606508809 1 return.numer 8 @@ -98495,7 +99302,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2883 this -1894386730 +1735507635 1 this.numer 8 @@ -98508,7 +99315,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2884 this -1894386730 +1735507635 1 this.numer 8 @@ -98521,7 +99328,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2884 this -1894386730 +1735507635 1 this.numer 8 @@ -98537,7 +99344,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2883 this -1894386730 +1735507635 1 this.numer 8 @@ -98546,7 +99353,7 @@ this.denom 7 1 return -1300539982 +718187988 1 return.toString "8/7" @@ -98556,7 +99363,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2885 this -173593344 +606508809 1 this.numer 8 @@ -98569,7 +99376,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2886 this -173593344 +606508809 1 this.numer 8 @@ -98582,7 +99389,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2886 this -173593344 +606508809 1 this.numer 8 @@ -98598,7 +99405,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2885 this -173593344 +606508809 1 this.numer 8 @@ -98607,7 +99414,7 @@ this.denom 7 1 return -1086918308 +615438348 1 return.toString "8/7" @@ -98617,7 +99424,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2887 this -1943486776 +1365008457 1 this.numer -1 @@ -98626,7 +99433,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -98672,7 +99479,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2888 this -1340101174 +978508707 1 this.numer 0 @@ -98691,7 +99498,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2887 this -1943486776 +1365008457 1 this.numer -1 @@ -98700,7 +99507,7 @@ this.denom 1 1 arg -1000397078 +60292059 1 arg.numer 0 @@ -98709,7 +99516,7 @@ arg.denom 1 1 return -1340101174 +978508707 1 return.numer 0 @@ -98722,7 +99529,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2890 this -1000397078 +60292059 1 this.numer 0 @@ -98768,7 +99575,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2891 this -271941682 +710708543 1 this.numer 0 @@ -98787,7 +99594,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2890 this -1000397078 +60292059 1 this.numer 0 @@ -98796,7 +99603,7 @@ this.denom 1 1 return -271941682 +710708543 1 return.numer 0 @@ -98809,7 +99616,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2893 this -271941682 +710708543 1 this.numer 0 @@ -98822,7 +99629,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2894 this -271941682 +710708543 1 this.numer 0 @@ -98835,7 +99642,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2894 this -271941682 +710708543 1 this.numer 0 @@ -98851,7 +99658,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2893 this -271941682 +710708543 1 this.numer 0 @@ -98860,7 +99667,7 @@ this.denom 1 1 return -678648558 +1965237677 1 return.toString "0" @@ -98870,7 +99677,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2895 this -1340101174 +978508707 1 this.numer 0 @@ -98883,7 +99690,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2896 this -1340101174 +978508707 1 this.numer 0 @@ -98896,7 +99703,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2896 this -1340101174 +978508707 1 this.numer 0 @@ -98912,7 +99719,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2895 this -1340101174 +978508707 1 this.numer 0 @@ -98921,7 +99728,7 @@ this.denom 1 1 return -760665089 +664792509 1 return.toString "0" @@ -98931,7 +99738,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2897 this -1000397078 +60292059 1 this.numer 0 @@ -98940,7 +99747,7 @@ this.denom 1 1 arg -1943486776 +1365008457 1 arg.numer -1 @@ -98986,7 +99793,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2898 this -528000232 +188523822 1 this.numer 0 @@ -99005,7 +99812,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2897 this -1000397078 +60292059 1 this.numer 0 @@ -99014,7 +99821,7 @@ this.denom 1 1 arg -1943486776 +1365008457 1 arg.numer -1 @@ -99023,7 +99830,7 @@ arg.denom 1 1 return -528000232 +188523822 1 return.numer 0 @@ -99036,7 +99843,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2900 this -1000397078 +60292059 1 this.numer 0 @@ -99082,7 +99889,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2901 this -697469820 +1170727939 1 this.numer 0 @@ -99101,7 +99908,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2900 this -1000397078 +60292059 1 this.numer 0 @@ -99110,7 +99917,7 @@ this.denom 1 1 return -697469820 +1170727939 1 return.numer 0 @@ -99123,7 +99930,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2903 this -697469820 +1170727939 1 this.numer 0 @@ -99136,7 +99943,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2904 this -697469820 +1170727939 1 this.numer 0 @@ -99149,7 +99956,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2904 this -697469820 +1170727939 1 this.numer 0 @@ -99165,7 +99972,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2903 this -697469820 +1170727939 1 this.numer 0 @@ -99174,826 +99981,9 @@ this.denom 1 1 return -1409519414 +690339675 1 return.toString "0" 1 -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2905 -this -528000232 -1 -this.numer -0 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2906 -this -528000232 -1 -this.numer -0 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2906 -this -528000232 -1 -this.numer -0 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2905 -this -528000232 -1 -this.numer -0 -1 -this.denom -1 -1 -return -900681041 -1 -return.toString -"0" -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER -this_invocation_nonce -2907 -this -1943486776 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -1024217583 -1 -arg.numer -1 -1 -arg.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2908 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2909 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2909 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2908 -this -134028384 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 -this_invocation_nonce -2907 -this -1943486776 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -1024217583 -1 -arg.numer -1 -1 -arg.denom -1 -1 -return -134028384 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.negate():::ENTER -this_invocation_nonce -2910 -this -1024217583 -1 -this.numer -1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2911 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2912 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2912 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2911 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.negate():::EXIT147 -this_invocation_nonce -2910 -this -1024217583 -1 -this.numer -1 -1 -this.denom -1 -1 -return -2052187832 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2913 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2914 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2914 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2913 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 -return -386037957 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2915 -this -134028384 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2916 -this -134028384 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2916 -this -134028384 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2915 -this -134028384 -1 -this.numer --1 -1 -this.denom -1 -1 -return -591845712 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER -this_invocation_nonce -2917 -this -1024217583 -1 -this.numer -1 -1 -this.denom -1 -1 -arg -1943486776 -1 -arg.numer --1 -1 -arg.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2918 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2919 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2919 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2918 -this -6628680 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 -this_invocation_nonce -2917 -this -1024217583 -1 -this.numer -1 -1 -this.denom -1 -1 -arg -1943486776 -1 -arg.numer --1 -1 -arg.denom -1 -1 -return -6628680 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.negate():::ENTER -this_invocation_nonce -2920 -this -1024217583 -1 -this.numer -1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2921 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2922 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2922 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2921 -this -1886558763 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.negate():::EXIT147 -this_invocation_nonce -2920 -this -1024217583 -1 -this.numer -1 -1 -this.denom -1 -1 -return -1886558763 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2923 -this -1886558763 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2924 -this -1886558763 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2924 -this -1886558763 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2923 -this -1886558763 -1 -this.numer --1 -1 -this.denom -1 -1 -return -1944565433 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2925 -this -6628680 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2926 -this -6628680 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2926 -this -6628680 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2925 -this -6628680 -1 -this.numer --1 -1 -this.denom -1 -1 -return -1905092385 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER -this_invocation_nonce -2927 -this -1943486776 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -1943486776 -1 -arg.numer --1 -1 -arg.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2928 -n -1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2929 -_a -1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2929 -_a -1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2928 -this -2054021572 -1 -this.numer -1 -1 -this.denom -1 -1 -n -1 -1 -d -1 -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 -this_invocation_nonce -2927 -this -1943486776 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -1943486776 -1 -arg.numer --1 -1 -arg.denom -1 -1 -return -2054021572 -1 -return.numer -1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.negate():::ENTER -this_invocation_nonce -2930 -this -1943486776 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2931 -n -1 -1 -d -1 -1 - diff --git a/tests/daikon-tests/RatNum/RatNum.txt-jaif.goal b/tests/daikon-tests/RatNum/RatNum.txt-jaif.goal index 23fdea8be5..c3c44b3fbb 100644 --- a/tests/daikon-tests/RatNum/RatNum.txt-jaif.goal +++ b/tests/daikon-tests/RatNum/RatNum.txt-jaif.goal @@ -6,55 +6,105 @@ package PolyCalc: class RatNum : // 185420/- obj/class samples field numer : // int field denom : // int + method gcd(II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // _a + parameter #1 : // _b method gcd(II)I : // 11298 samples - return: + return: parameter #0 : // _a parameter #1 : // _b + method parse(Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // ratStr method parse(Ljava/lang/String;)LPolyCalc/RatNum; : // 171 samples - return: + return: parameter #0 : // ratStr + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n method (I)V : // 16856 samples - return: + return: + parameter #0 : // n + method (II)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // n + parameter #1 : // d method (II)V : // 16356 samples - return: + return: parameter #0 : // n parameter #1 : // d + method add(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method add(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 5192 samples - return: + return: parameter #0 : // arg + method approx()V throws Ljava/lang/Throwable; : // 0 samples + return: method approx()D : // 1719 samples - return: + return: + method compareTo(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // rn method compareTo(LPolyCalc/RatNum;)I : // 1887 samples - return: + return: parameter #0 : // rn + method debugPrint()V throws Ljava/lang/Throwable; : // 0 samples + return: method debugPrint()Ljava/lang/String; : // 94 samples - return: + return: + method div(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method div(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 2083 samples - return: + return: parameter #0 : // arg + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj method equals(Ljava/lang/Object;)Z : // 15102 samples - return: + return: parameter #0 : // obj + method hashCode()V throws Ljava/lang/Throwable; : // 0 samples + return: method hashCode()I : // 0 samples - return: + return: + method isNaN()V throws Ljava/lang/Throwable; : // 0 samples + return: method isNaN()Z : // 31457 samples - return: + return: + method isNegative()V throws Ljava/lang/Throwable; : // 0 samples + return: method isNegative()Z : // 2527 samples - return: + return: + method isPositive()V throws Ljava/lang/Throwable; : // 0 samples + return: method isPositive()Z : // 1697 samples - return: + return: + method mul(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method mul(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 2611 samples - return: + return: parameter #0 : // arg + method negate()V throws Ljava/lang/Throwable; : // 0 samples + return: method negate()LPolyCalc/RatNum; : // 5007 samples - return: + return: + method sub(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method sub(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 3226 samples - return: + return: parameter #0 : // arg + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 94 samples - return: + return: + method unparse()V throws Ljava/lang/Throwable; : // 0 samples + return: method unparse()Ljava/lang/String; : // 3408 samples - return: + return: diff --git a/tests/daikon-tests/RatPoly/RatPoly.txt-chicory.goal b/tests/daikon-tests/RatPoly/RatPoly.txt-chicory.goal index 2fc0aaf340..0052fb595c 100644 --- a/tests/daikon-tests/RatPoly/RatPoly.txt-chicory.goal +++ b/tests/daikon-tests/RatPoly/RatPoly.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for PolyCalc.RatNum -// Declarations written Thu Jun 04 13:27:46 PDT 2015 +// Declarations written Mon Jul 31 12:41:10 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt PolyCalc.RatNum.RatNum(int):::ENTER ppt-type enter variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -17,11 +17,42 @@ ppt PolyCalc.RatNum.RatNum(int):::EXIT45 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt PolyCalc.RatNum.RatNum(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer var-kind field numer @@ -38,35 +69,47 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatNum.RatNum(int,\_int):::ENTER ppt-type enter variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable d - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT55 +ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT67 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -84,27 +127,64 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable d - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT67 +ppt PolyCalc.RatNum.RatNum(int,\_int):::EXIT55 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable d + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt PolyCalc.RatNum.RatNum(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer var-kind field numer @@ -121,26 +201,38 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable d - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatNum.isNaN():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -162,10 +254,10 @@ ppt PolyCalc.RatNum.isNaN():::EXIT71 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -183,19 +275,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.isNaN():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.isNegative():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -217,10 +346,10 @@ ppt PolyCalc.RatNum.isNegative():::EXIT77 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -238,19 +367,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.isNegative():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.isPositive():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -272,10 +438,10 @@ ppt PolyCalc.RatNum.isPositive():::EXIT83 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -293,19 +459,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.isPositive():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -323,7 +526,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -341,14 +544,14 @@ variable rn.denom rep-type int comparability 22 -ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT101 +ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT96 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -366,7 +569,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -384,7 +587,7 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 @@ -393,10 +596,10 @@ ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT98 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -414,7 +617,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -432,19 +635,19 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 -ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT96 +ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT101 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -462,7 +665,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -480,7 +683,7 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 @@ -489,10 +692,10 @@ ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXIT94 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -510,7 +713,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable rn - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -528,19 +731,74 @@ variable rn.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatNum.compareTo(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable rn + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable rn.numer + var-kind field numer + enclosing-var rn + dec-type int + rep-type int + comparability 22 +variable rn.denom + var-kind field denom + enclosing-var rn + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.approx():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -562,10 +820,10 @@ ppt PolyCalc.RatNum.approx():::EXIT117 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -583,7 +841,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type double rep-type double comparability 22 @@ -592,10 +850,10 @@ ppt PolyCalc.RatNum.approx():::EXIT120 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -613,19 +871,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type double rep-type double comparability 22 +ppt PolyCalc.RatNum.approx():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.unparse():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -643,14 +938,14 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 -ppt PolyCalc.RatNum.unparse():::EXIT137 +ppt PolyCalc.RatNum.unparse():::EXIT133 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -668,7 +963,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -681,14 +976,14 @@ variable return.toString flags synthetic to_string comparability 22 -ppt PolyCalc.RatNum.unparse():::EXIT133 +ppt PolyCalc.RatNum.unparse():::EXIT135 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -706,7 +1001,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -719,14 +1014,14 @@ variable return.toString flags synthetic to_string comparability 22 -ppt PolyCalc.RatNum.unparse():::EXIT135 +ppt PolyCalc.RatNum.unparse():::EXIT137 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -744,7 +1039,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -757,14 +1052,51 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatNum.unparse():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.negate():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -786,10 +1118,10 @@ ppt PolyCalc.RatNum.negate():::EXIT147 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -807,7 +1139,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -824,14 +1156,51 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.negate():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -849,7 +1218,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -871,10 +1240,10 @@ ppt PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -892,7 +1261,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -910,7 +1279,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -927,14 +1296,69 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.add(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -952,7 +1376,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -974,10 +1398,10 @@ ppt PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -995,7 +1419,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1013,7 +1437,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1030,14 +1454,69 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1055,7 +1534,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1077,10 +1556,10 @@ ppt PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1098,7 +1577,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1116,7 +1595,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1133,14 +1612,69 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1158,7 +1692,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1180,10 +1714,10 @@ ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::EXIT187 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1201,7 +1735,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1219,7 +1753,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1240,10 +1774,10 @@ ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::EXIT189 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1261,7 +1795,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable arg - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode flags is_param @@ -1279,7 +1813,7 @@ variable arg.denom rep-type int comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1296,69 +1830,151 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.div(PolyCalc.RatNum):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable arg + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param + comparability 22 +variable arg.numer + var-kind field numer + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable arg.denom + var-kind field denom + enclosing-var arg + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.gcd(int,\_int):::ENTER ppt-type enter variable _a - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable _b - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT203 +ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT209 ppt-type subexit variable _a - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable _b - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 -ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT209 +ppt PolyCalc.RatNum.gcd(int,\_int):::EXIT203 ppt-type subexit variable _a - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable _b - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatNum.gcd(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable _a + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable _b + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.hashCode():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1380,10 +1996,10 @@ ppt PolyCalc.RatNum.hashCode():::EXIT217 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1401,19 +2017,56 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatNum.hashCode():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.equals(java.lang.Object):::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1431,7 +2084,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1442,17 +2095,17 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT235 +ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT230 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1470,7 +2123,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1481,10 +2134,10 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 @@ -1493,10 +2146,10 @@ ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT232 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1514,7 +2167,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1525,22 +2178,22 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT230 +ppt PolyCalc.RatNum.equals(java.lang.Object):::EXIT235 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1558,7 +2211,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable obj - var-kind variable + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param @@ -1569,22 +2222,73 @@ variable obj.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args obj - flags synthetic classname + flags synthetic classname non_null comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt PolyCalc.RatNum.equals(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.debugPrint():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1606,10 +2310,10 @@ ppt PolyCalc.RatNum.debugPrint():::EXIT241 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1627,7 +2331,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -1640,14 +2344,51 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatNum.debugPrint():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.toString():::ENTER ppt-type enter parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1669,10 +2410,10 @@ ppt PolyCalc.RatNum.toString():::EXIT246 ppt-type subexit parent parent PolyCalc.RatNum:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable this.numer @@ -1690,7 +2431,7 @@ variable this.denom comparability 22 parent PolyCalc.RatNum:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -1703,10 +2444,47 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatNum.toString():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatNum:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatNum + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.numer + var-kind field numer + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable this.denom + var-kind field denom + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatNum:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum.parse(java.lang.String):::ENTER ppt-type enter variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1723,7 +2501,7 @@ variable ratStr.toString ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT273 ppt-type subexit variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1737,7 +2515,7 @@ variable ratStr.toString flags synthetic to_string comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1754,10 +2532,10 @@ variable return.denom rep-type int comparability 22 -ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT267 +ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT264 ppt-type subexit variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1771,7 +2549,7 @@ variable ratStr.toString flags synthetic to_string comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1788,10 +2566,10 @@ variable return.denom rep-type int comparability 22 -ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT264 +ppt PolyCalc.RatNum.parse(java.lang.String):::EXIT267 ppt-type subexit variable ratStr - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -1805,7 +2583,7 @@ variable ratStr.toString flags synthetic to_string comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatNum rep-type hashcode comparability 22 @@ -1822,13 +2600,42 @@ variable return.denom rep-type int comparability 22 +ppt PolyCalc.RatNum.parse(java.lang.String):::EXCEPTIONUNCAUGHT +ppt-type subexit +variable ratStr + var-kind variable + dec-type java.lang.String + rep-type hashcode + flags is_param + comparability 22 +variable ratStr.toString + var-kind function toString() + enclosing-var ratStr + dec-type java.lang.String + rep-type java.lang.String + function-args ratStr + flags synthetic to_string + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatNum:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatNum rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.numer var-kind field numer @@ -1854,7 +2661,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 0 this -365153683 +22756955 1 this.numer 0 @@ -1877,7 +2684,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1 this -631184157 +1640639994 1 this.numer 1 @@ -1900,7 +2707,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2 this -1890394166 +1263793464 1 this.numer -1 @@ -1923,7 +2730,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 3 this -1981674244 +323326911 1 this.numer 2 @@ -1946,7 +2753,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 4 this -675137585 +1270144618 1 this.numer 3 @@ -1995,7 +2802,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 5 this -1881283994 +2074185499 1 this.numer 1 @@ -2047,7 +2854,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 7 this -1338352377 +797925218 1 this.numer 1 @@ -2099,7 +2906,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 9 this -944681561 +275310919 1 this.numer 1 @@ -2151,7 +2958,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 11 this -916393456 +2109874862 1 this.numer 2 @@ -2203,7 +3010,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 13 this -72098708 +183284570 1 this.numer 3 @@ -2255,7 +3062,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 15 this -582208448 +1607305514 1 this.numer 5 @@ -2307,7 +3114,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 17 this -1241889804 +146305349 1 this.numer 6 @@ -2359,7 +3166,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 19 this -1048370635 +1686369710 1 this.numer 8 @@ -2411,7 +3218,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 21 this -2009422457 +194706439 1 this.numer -1 @@ -2463,7 +3270,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 23 this -1035402077 +942518407 1 this.numer 3 @@ -2492,7 +3299,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 25 this -942716498 +1943325854 1 this.numer 1 @@ -2521,7 +3328,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 26 this -101834320 +134310351 1 this.numer -1 @@ -2550,7 +3357,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 27 this -2132433228 +1411892748 1 this.numer 100 @@ -2579,7 +3386,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 28 this -450678213 +22805895 1 this.numer 2 @@ -2608,7 +3415,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 29 this -373902922 +1413378318 1 this.numer -2 @@ -2637,7 +3444,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 30 this -649258932 +1475491159 1 this.numer 9 @@ -2656,7 +3463,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 31 this -365153683 +22756955 1 this.numer 0 @@ -2669,7 +3476,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 32 this -365153683 +22756955 1 this.numer 0 @@ -2682,7 +3489,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 32 this -365153683 +22756955 1 this.numer 0 @@ -2698,7 +3505,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 31 this -365153683 +22756955 1 this.numer 0 @@ -2707,7 +3514,7 @@ this.denom 1 1 return -1819937367 +1024429571 1 return.toString "0" @@ -2717,7 +3524,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 33 this -631184157 +1640639994 1 this.numer 1 @@ -2730,7 +3537,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 34 this -631184157 +1640639994 1 this.numer 1 @@ -2743,7 +3550,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 34 this -631184157 +1640639994 1 this.numer 1 @@ -2759,7 +3566,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 33 this -631184157 +1640639994 1 this.numer 1 @@ -2768,7 +3575,7 @@ this.denom 1 1 return -1077742948 +1667689440 1 return.toString "1" @@ -2785,7 +3592,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 35 this -1748648238 +1157058691 1 this.numer 4 @@ -2801,7 +3608,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 36 this -1748648238 +1157058691 1 this.numer 4 @@ -2814,7 +3621,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 37 this -1748648238 +1157058691 1 this.numer 4 @@ -2827,7 +3634,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 37 this -1748648238 +1157058691 1 this.numer 4 @@ -2843,7 +3650,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 36 this -1748648238 +1157058691 1 this.numer 4 @@ -2852,7 +3659,7 @@ this.denom 1 1 return -1217226871 +40472007 1 return.toString "4" @@ -2862,7 +3669,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 38 this -1890394166 +1263793464 1 this.numer -1 @@ -2875,7 +3682,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 39 this -1890394166 +1263793464 1 this.numer -1 @@ -2888,7 +3695,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 39 this -1890394166 +1263793464 1 this.numer -1 @@ -2904,7 +3711,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 38 this -1890394166 +1263793464 1 this.numer -1 @@ -2913,7 +3720,7 @@ this.denom 1 1 return -1002799575 +1138193439 1 return.toString "-1" @@ -2930,7 +3737,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 40 this -600795369 +398110318 1 this.numer -5 @@ -2946,7 +3753,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 41 this -600795369 +398110318 1 this.numer -5 @@ -2959,7 +3766,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 42 this -600795369 +398110318 1 this.numer -5 @@ -2972,7 +3779,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 42 this -600795369 +398110318 1 this.numer -5 @@ -2988,7 +3795,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 41 this -600795369 +398110318 1 this.numer -5 @@ -2997,7 +3804,7 @@ this.denom 1 1 return -99658589 +1765250898 1 return.toString "-5" @@ -3014,7 +3821,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 43 this -2072144310 +670971910 1 this.numer 0 @@ -3030,7 +3837,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 44 this -2072144310 +670971910 1 this.numer 0 @@ -3043,7 +3850,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 45 this -2072144310 +670971910 1 this.numer 0 @@ -3056,7 +3863,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 45 this -2072144310 +670971910 1 this.numer 0 @@ -3072,7 +3879,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 44 this -2072144310 +670971910 1 this.numer 0 @@ -3081,7 +3888,7 @@ this.denom 1 1 return -787114771 +1601292138 1 return.toString "0" @@ -3098,7 +3905,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 46 this -538690677 +494586676 1 this.numer 0 @@ -3121,7 +3928,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 47 this -2130636234 +1218593486 1 this.numer 1 @@ -3144,7 +3951,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 48 this -313371113 +508198356 1 this.numer -1 @@ -3167,7 +3974,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 49 this -1198393747 +1330754528 1 this.numer 2 @@ -3190,7 +3997,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 50 this -154580616 +79290965 1 this.numer 3 @@ -3239,7 +4046,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 51 this -1728683889 +1582785598 1 this.numer 1 @@ -3291,7 +4098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 53 this -683862160 +322836221 1 this.numer 1 @@ -3343,7 +4150,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 55 this -338844376 +1370651081 1 this.numer 1 @@ -3395,7 +4202,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 57 this -1978279235 +450003680 1 this.numer 2 @@ -3447,7 +4254,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 59 this -1597279791 +2134991632 1 this.numer 3 @@ -3499,7 +4306,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 61 this -1935859837 +480971771 1 this.numer 5 @@ -3551,7 +4358,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 63 this -1619028409 +1586845078 1 this.numer 6 @@ -3603,7 +4410,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 65 this -245178926 +1356728614 1 this.numer 8 @@ -3655,7 +4462,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 67 this -1848574336 +611563982 1 this.numer -1 @@ -3707,7 +4514,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 69 this -1342944003 +1615039080 1 this.numer 3 @@ -3736,7 +4543,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 71 this -806728451 +336484883 1 this.numer 1 @@ -3765,7 +4572,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 72 this -1620812446 +876213901 1 this.numer -1 @@ -3794,7 +4601,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 73 this -164717727 +230528013 1 this.numer 100 @@ -3823,7 +4630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 74 this -304416706 +1909546776 1 this.numer 2 @@ -3852,7 +4659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 75 this -1025530588 +392781299 1 this.numer -2 @@ -3881,7 +4688,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 76 this -388841694 +1822383117 1 this.numer 9 @@ -3933,7 +4740,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 77 this -469613237 +233021551 1 this.numer 1 @@ -3952,7 +4759,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 79 this -469613237 +233021551 1 this.numer 1 @@ -3965,7 +4772,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 80 this -469613237 +233021551 1 this.numer 1 @@ -3978,7 +4785,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 80 this -469613237 +233021551 1 this.numer 1 @@ -3994,7 +4801,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 79 this -469613237 +233021551 1 this.numer 1 @@ -4003,7 +4810,7 @@ this.denom 2 1 return -787271534 +1991313236 1 return.toString "1/2" @@ -4046,7 +4853,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 81 this -1025922771 +736778932 1 this.numer 2 @@ -4065,7 +4872,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 83 this -1025922771 +736778932 1 this.numer 2 @@ -4078,7 +4885,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 84 this -1025922771 +736778932 1 this.numer 2 @@ -4091,7 +4898,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 84 this -1025922771 +736778932 1 this.numer 2 @@ -4107,7 +4914,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 83 this -1025922771 +736778932 1 this.numer 2 @@ -4116,7 +4923,7 @@ this.denom 1 1 return -537810434 +1032000752 1 return.toString "2" @@ -4159,7 +4966,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 85 this -221294015 +770911223 1 this.numer 3 @@ -4178,7 +4985,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 87 this -221294015 +770911223 1 this.numer 3 @@ -4191,7 +4998,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 88 this -221294015 +770911223 1 this.numer 3 @@ -4204,7 +5011,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 88 this -221294015 +770911223 1 this.numer 3 @@ -4220,7 +5027,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 87 this -221294015 +770911223 1 this.numer 3 @@ -4229,7 +5036,7 @@ this.denom 2 1 return -1994317148 +1392906938 1 return.toString "3/2" @@ -4272,7 +5079,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 89 this -563544060 +708890004 1 this.numer -1 @@ -4291,7 +5098,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 91 this -563544060 +708890004 1 this.numer -1 @@ -4304,7 +5111,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 92 this -563544060 +708890004 1 this.numer -1 @@ -4317,7 +5124,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 92 this -563544060 +708890004 1 this.numer -1 @@ -4333,7 +5140,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 91 this -563544060 +708890004 1 this.numer -1 @@ -4342,7 +5149,7 @@ this.denom 13 1 return -1082133150 +255944888 1 return.toString "-1/13" @@ -4385,7 +5192,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 93 this -372845607 +1004095028 1 this.numer 53 @@ -4404,7 +5211,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 95 this -372845607 +1004095028 1 this.numer 53 @@ -4417,7 +5224,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 96 this -372845607 +1004095028 1 this.numer 53 @@ -4430,7 +5237,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 96 this -372845607 +1004095028 1 this.numer 53 @@ -4446,7 +5253,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 95 this -372845607 +1004095028 1 this.numer 53 @@ -4455,7 +5262,7 @@ this.denom 7 1 return -58834903 +1487470647 1 return.toString "53/7" @@ -4498,7 +5305,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 97 this -995737101 +1948863195 1 this.numer 0 @@ -4517,7 +5324,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 99 this -995737101 +1948863195 1 this.numer 0 @@ -4530,7 +5337,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 100 this -995737101 +1948863195 1 this.numer 0 @@ -4543,7 +5350,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 100 this -995737101 +1948863195 1 this.numer 0 @@ -4559,7 +5366,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 99 this -995737101 +1948863195 1 this.numer 0 @@ -4568,7 +5375,7 @@ this.denom 1 1 return -13395436 +1890187342 1 return.toString "0" @@ -4585,7 +5392,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 101 this -1798793564 +19986569 1 this.numer 0 @@ -4608,7 +5415,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 102 this -48647682 +294184992 1 this.numer 1 @@ -4631,7 +5438,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 103 this -1577805514 +793315160 1 this.numer -1 @@ -4654,7 +5461,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 104 this -1049200642 +270397815 1 this.numer 2 @@ -4677,7 +5484,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 105 this -926964577 +376416077 1 this.numer 3 @@ -4726,7 +5533,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 106 this -1647270301 +1089504328 1 this.numer 1 @@ -4778,7 +5585,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 108 this -312771783 +660879561 1 this.numer 1 @@ -4830,7 +5637,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 110 this -1862872672 +1485697819 1 this.numer 1 @@ -4882,7 +5689,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 112 this -1136908691 +867398280 1 this.numer 2 @@ -4934,7 +5741,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 114 this -1862362278 +2007331442 1 this.numer 3 @@ -4986,7 +5793,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 116 this -1148651321 +1904324159 1 this.numer 5 @@ -5038,7 +5845,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 118 this -1652249164 +1176735295 1 this.numer 6 @@ -5090,7 +5897,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 120 this -240659991 +1848415041 1 this.numer 8 @@ -5142,7 +5949,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 122 this -1060761436 +843467284 1 this.numer -1 @@ -5194,7 +6001,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 124 this -1955701105 +1313532469 1 this.numer 3 @@ -5223,7 +6030,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 126 this -83770753 +339924917 1 this.numer 1 @@ -5252,7 +6059,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 127 this -1333256886 +520022247 1 this.numer -1 @@ -5281,7 +6088,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 128 this -1204110204 +518522822 1 this.numer 100 @@ -5310,7 +6117,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 129 this -1741792947 +124407148 1 this.numer 2 @@ -5339,7 +6146,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 130 this -1964467972 +85445963 1 this.numer -2 @@ -5368,7 +6175,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 131 this -1399616426 +1825027294 1 this.numer 9 @@ -5397,7 +6204,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 132 this -1964886191 +852445367 1 this.numer 1 @@ -5416,7 +6223,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 133 this -1964886191 +852445367 1 this.numer 1 @@ -5429,7 +6236,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 134 this -1964886191 +852445367 1 this.numer 1 @@ -5442,7 +6249,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 134 this -1964886191 +852445367 1 this.numer 1 @@ -5458,7 +6265,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 133 this -1964886191 +852445367 1 this.numer 1 @@ -5467,7 +6274,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -5487,7 +6294,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 135 this -1110658958 +1558021762 1 this.numer 2 @@ -5506,7 +6313,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 136 this -1110658958 +1558021762 1 this.numer 2 @@ -5519,7 +6326,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 137 this -1110658958 +1558021762 1 this.numer 2 @@ -5532,7 +6339,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 137 this -1110658958 +1558021762 1 this.numer 2 @@ -5548,7 +6355,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 136 this -1110658958 +1558021762 1 this.numer 2 @@ -5557,7 +6364,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -5577,7 +6384,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 138 this -917247382 +225290371 1 this.numer -1 @@ -5596,7 +6403,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 139 this -917247382 +225290371 1 this.numer -1 @@ -5609,7 +6416,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 140 this -917247382 +225290371 1 this.numer -1 @@ -5622,7 +6429,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 140 this -917247382 +225290371 1 this.numer -1 @@ -5638,7 +6445,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 139 this -917247382 +225290371 1 this.numer -1 @@ -5647,7 +6454,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -5667,7 +6474,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 141 this -1539131108 +1169146729 1 this.numer 0 @@ -5686,7 +6493,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 142 this -1539131108 +1169146729 1 this.numer 0 @@ -5699,7 +6506,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 143 this -1539131108 +1169146729 1 this.numer 0 @@ -5712,7 +6519,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 143 this -1539131108 +1169146729 1 this.numer 0 @@ -5728,7 +6535,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 142 this -1539131108 +1169146729 1 this.numer 0 @@ -5737,7 +6544,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -5757,7 +6564,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 144 this -1736004041 +2040352617 1 this.numer -100 @@ -5776,7 +6583,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 145 this -1736004041 +2040352617 1 this.numer -100 @@ -5789,7 +6596,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 146 this -1736004041 +2040352617 1 this.numer -100 @@ -5802,7 +6609,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 146 this -1736004041 +2040352617 1 this.numer -100 @@ -5818,7 +6625,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 145 this -1736004041 +2040352617 1 this.numer -100 @@ -5827,7 +6634,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -5844,7 +6651,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 147 this -1307088945 +1237598030 1 this.numer 0 @@ -5867,7 +6674,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 148 this -1633673452 +688766789 1 this.numer 1 @@ -5890,7 +6697,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 149 this -1571280869 +302155142 1 this.numer -1 @@ -5913,7 +6720,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 150 this -911158124 +24606376 1 this.numer 2 @@ -5936,7 +6743,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 151 this -128703311 +1772160903 1 this.numer 3 @@ -5985,7 +6792,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 152 this -600515448 +756185697 1 this.numer 1 @@ -6037,7 +6844,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 154 this -1837477283 +733672688 1 this.numer 1 @@ -6089,7 +6896,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 156 this -1665851521 +297927961 1 this.numer 1 @@ -6141,7 +6948,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 158 this -1222207508 +1891546521 1 this.numer 2 @@ -6193,7 +7000,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 160 this -960503401 +1312884893 1 this.numer 3 @@ -6245,7 +7052,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 162 this -546086108 +849373393 1 this.numer 5 @@ -6297,7 +7104,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 164 this -1871593525 +868964689 1 this.numer 6 @@ -6349,7 +7156,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 166 this -1679397066 +912011468 1 this.numer 8 @@ -6401,7 +7208,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 168 this -1248915741 +1881129850 1 this.numer -1 @@ -6453,7 +7260,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 170 this -1021693209 +1095293768 1 this.numer 3 @@ -6482,7 +7289,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 172 this -318522251 +673186785 1 this.numer 1 @@ -6511,7 +7318,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 173 this -1874224233 +2142080121 1 this.numer -1 @@ -6540,7 +7347,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 174 this -796549835 +1906808037 1 this.numer 100 @@ -6569,7 +7376,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 175 this -200021447 +1983025922 1 this.numer 2 @@ -6598,7 +7405,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 176 this -948552174 +1579526446 1 this.numer -2 @@ -6627,7 +7434,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 177 this -1545276737 +1308109015 1 this.numer 9 @@ -6679,7 +7486,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 178 this -1946375588 +11902257 1 this.numer 1 @@ -6698,7 +7505,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 180 this -1946375588 +11902257 1 this.numer 1 @@ -6711,7 +7518,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 181 this -1946375588 +11902257 1 this.numer 1 @@ -6724,7 +7531,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 181 this -1946375588 +11902257 1 this.numer 1 @@ -6740,7 +7547,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 180 this -1946375588 +11902257 1 this.numer 1 @@ -6749,7 +7556,7 @@ this.denom 2 1 return -116112765 +1660794022 1 return.toString "1/2" @@ -6792,7 +7599,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 182 this -1592089879 +300031246 1 this.numer 1 @@ -6811,7 +7618,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 184 this -1592089879 +300031246 1 this.numer 1 @@ -6824,7 +7631,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 185 this -1592089879 +300031246 1 this.numer 1 @@ -6837,7 +7644,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 185 this -1592089879 +300031246 1 this.numer 1 @@ -6853,7 +7660,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 184 this -1592089879 +300031246 1 this.numer 1 @@ -6862,7 +7669,7 @@ this.denom 2 1 return -608354733 +500179317 1 return.toString "1/2" @@ -6905,7 +7712,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 186 this -448354164 +824208363 1 this.numer 3 @@ -6924,7 +7731,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 188 this -448354164 +824208363 1 this.numer 3 @@ -6937,7 +7744,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 189 this -448354164 +824208363 1 this.numer 3 @@ -6950,7 +7757,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 189 this -448354164 +824208363 1 this.numer 3 @@ -6966,7 +7773,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 188 this -448354164 +824208363 1 this.numer 3 @@ -6975,7 +7782,7 @@ this.denom 2 1 return -2115800672 +1048027629 1 return.toString "3/2" @@ -7018,7 +7825,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 190 this -80183631 +1073533248 1 this.numer 27 @@ -7037,7 +7844,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 192 this -80183631 +1073533248 1 this.numer 27 @@ -7050,7 +7857,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 193 this -80183631 +1073533248 1 this.numer 27 @@ -7063,7 +7870,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 193 this -80183631 +1073533248 1 this.numer 27 @@ -7079,7 +7886,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 192 this -80183631 +1073533248 1 this.numer 27 @@ -7088,7 +7895,7 @@ this.denom 13 1 return -1174039548 +599491651 1 return.toString "27/13" @@ -7131,7 +7938,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 194 this -1002934600 +293002476 1 this.numer 1 @@ -7150,7 +7957,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 196 this -1002934600 +293002476 1 this.numer 1 @@ -7163,7 +7970,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 197 this -1002934600 +293002476 1 this.numer 1 @@ -7176,7 +7983,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 197 this -1002934600 +293002476 1 this.numer 1 @@ -7192,7 +7999,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 196 this -1002934600 +293002476 1 this.numer 1 @@ -7201,7 +8008,7 @@ this.denom 1 1 return -722676897 +302870502 1 return.toString "1" @@ -7218,7 +8025,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 198 this -2010584094 +1268959798 1 this.numer 0 @@ -7241,7 +8048,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 199 this -1231682313 +876926621 1 this.numer 1 @@ -7264,7 +8071,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 200 this -1289761158 +326298949 1 this.numer -1 @@ -7287,7 +8094,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 201 this -315849688 +1786364562 1 this.numer 2 @@ -7310,7 +8117,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 202 this -2053614479 +928466577 1 this.numer 3 @@ -7359,7 +8166,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 203 this -741373969 +624271064 1 this.numer 1 @@ -7411,7 +8218,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 205 this -572177089 +564742142 1 this.numer 1 @@ -7463,7 +8270,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 207 this -148563557 +90205195 1 this.numer 1 @@ -7515,7 +8322,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 209 this -1531704685 +135184888 1 this.numer 2 @@ -7567,7 +8374,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 211 this -1474164206 +21257599 1 this.numer 3 @@ -7619,7 +8426,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 213 this -758974803 +1782148126 1 this.numer 5 @@ -7671,7 +8478,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 215 this -36650841 +1816089958 1 this.numer 6 @@ -7723,7 +8530,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 217 this -1810361645 +306206744 1 this.numer 8 @@ -7775,7 +8582,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 219 this -1199856819 +827084938 1 this.numer -1 @@ -7827,7 +8634,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 221 this -1122111603 +280265505 1 this.numer 3 @@ -7856,7 +8663,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 223 this -128323667 +112619572 1 this.numer 1 @@ -7885,7 +8692,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 224 this -662289681 +371619938 1 this.numer -1 @@ -7914,7 +8721,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 225 this -694926166 +1161667116 1 this.numer 100 @@ -7943,7 +8750,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 226 this -1607999576 +1898220577 1 this.numer 2 @@ -7972,7 +8779,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 227 this -1714659984 +1143371233 1 this.numer -2 @@ -8001,7 +8808,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 228 this -1207291995 +1634132079 1 this.numer 9 @@ -8020,7 +8827,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 229 this -2010584094 +1268959798 1 this.numer 0 @@ -8033,7 +8840,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 230 this -2010584094 +1268959798 1 this.numer 0 @@ -8046,7 +8853,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 230 this -2010584094 +1268959798 1 this.numer 0 @@ -8062,7 +8869,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 229 this -2010584094 +1268959798 1 this.numer 0 @@ -8078,7 +8885,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 231 this -1231682313 +876926621 1 this.numer 1 @@ -8091,7 +8898,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 232 this -1231682313 +876926621 1 this.numer 1 @@ -8104,7 +8911,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 232 this -1231682313 +876926621 1 this.numer 1 @@ -8120,7 +8927,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 231 this -1231682313 +876926621 1 this.numer 1 @@ -8136,7 +8943,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 233 this -1289761158 +326298949 1 this.numer -1 @@ -8149,7 +8956,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 234 this -1289761158 +326298949 1 this.numer -1 @@ -8162,7 +8969,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 234 this -1289761158 +326298949 1 this.numer -1 @@ -8178,7 +8985,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 233 this -1289761158 +326298949 1 this.numer -1 @@ -8194,7 +9001,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 235 this -315849688 +1786364562 1 this.numer 2 @@ -8207,7 +9014,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 236 this -315849688 +1786364562 1 this.numer 2 @@ -8220,7 +9027,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 236 this -315849688 +1786364562 1 this.numer 2 @@ -8236,7 +9043,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 235 this -315849688 +1786364562 1 this.numer 2 @@ -8252,7 +9059,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 237 this -741373969 +624271064 1 this.numer 1 @@ -8265,7 +9072,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 238 this -741373969 +624271064 1 this.numer 1 @@ -8278,7 +9085,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 238 this -741373969 +624271064 1 this.numer 1 @@ -8294,7 +9101,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 237 this -741373969 +624271064 1 this.numer 1 @@ -8310,7 +9117,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 239 this -1531704685 +135184888 1 this.numer 2 @@ -8323,7 +9130,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 240 this -1531704685 +135184888 1 this.numer 2 @@ -8336,7 +9143,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 240 this -1531704685 +135184888 1 this.numer 2 @@ -8352,7 +9159,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 239 this -1531704685 +135184888 1 this.numer 2 @@ -8368,7 +9175,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 241 this -1474164206 +21257599 1 this.numer 3 @@ -8381,7 +9188,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 242 this -1474164206 +21257599 1 this.numer 3 @@ -8394,7 +9201,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 242 this -1474164206 +21257599 1 this.numer 3 @@ -8410,7 +9217,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 241 this -1474164206 +21257599 1 this.numer 3 @@ -8426,7 +9233,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 243 this -128323667 +112619572 1 this.numer 1 @@ -8439,7 +9246,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 244 this -128323667 +112619572 1 this.numer 1 @@ -8452,7 +9259,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 244 this -128323667 +112619572 1 this.numer 1 @@ -8468,7 +9275,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 243 this -128323667 +112619572 1 this.numer 1 @@ -8484,7 +9291,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 245 this -662289681 +371619938 1 this.numer -1 @@ -8497,7 +9304,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 246 this -662289681 +371619938 1 this.numer -1 @@ -8510,7 +9317,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 246 this -662289681 +371619938 1 this.numer -1 @@ -8526,7 +9333,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 245 this -662289681 +371619938 1 this.numer -1 @@ -8542,7 +9349,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 247 this -1607999576 +1898220577 1 this.numer 2 @@ -8555,7 +9362,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 248 this -1607999576 +1898220577 1 this.numer 2 @@ -8568,7 +9375,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 248 this -1607999576 +1898220577 1 this.numer 2 @@ -8584,7 +9391,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 247 this -1607999576 +1898220577 1 this.numer 2 @@ -8600,7 +9407,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 249 this -1714659984 +1143371233 1 this.numer -2 @@ -8613,7 +9420,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 250 this -1714659984 +1143371233 1 this.numer -2 @@ -8626,7 +9433,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 250 this -1714659984 +1143371233 1 this.numer -2 @@ -8642,7 +9449,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 249 this -1714659984 +1143371233 1 this.numer -2 @@ -8658,7 +9465,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 251 this -694926166 +1161667116 1 this.numer 100 @@ -8671,7 +9478,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 252 this -694926166 +1161667116 1 this.numer 100 @@ -8684,7 +9491,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 252 this -694926166 +1161667116 1 this.numer 100 @@ -8700,7 +9507,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 251 this -694926166 +1161667116 1 this.numer 100 @@ -8716,7 +9523,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 253 this -662289681 +371619938 1 this.numer -1 @@ -8729,7 +9536,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 254 this -662289681 +371619938 1 this.numer -1 @@ -8742,7 +9549,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 254 this -662289681 +371619938 1 this.numer -1 @@ -8758,7 +9565,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 253 this -662289681 +371619938 1 this.numer -1 @@ -8774,7 +9581,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 255 this -1207291995 +1634132079 1 this.numer 9 @@ -8787,7 +9594,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 256 this -1207291995 +1634132079 1 this.numer 9 @@ -8800,7 +9607,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 256 this -1207291995 +1634132079 1 this.numer 9 @@ -8816,7 +9623,7 @@ PolyCalc.RatNum.approx():::EXIT117 this_invocation_nonce 255 this -1207291995 +1634132079 1 this.numer 9 @@ -8865,7 +9672,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 257 this -554770681 +1239548589 1 this.numer 1 @@ -8884,7 +9691,7 @@ PolyCalc.RatNum.approx():::ENTER this_invocation_nonce 259 this -554770681 +1239548589 1 this.numer 1 @@ -8897,7 +9704,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 260 this -554770681 +1239548589 1 this.numer 1 @@ -8910,7 +9717,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 260 this -554770681 +1239548589 1 this.numer 1 @@ -8926,7 +9733,7 @@ PolyCalc.RatNum.approx():::EXIT120 this_invocation_nonce 259 this -554770681 +1239548589 1 this.numer 1 @@ -8949,7 +9756,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 261 this -1840956687 +477289012 1 this.numer 0 @@ -8972,7 +9779,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 262 this -14652433 +1795960102 1 this.numer 1 @@ -8995,7 +9802,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 263 this -1450305673 +1027591600 1 this.numer -1 @@ -9018,7 +9825,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 264 this -1348052661 +1678854096 1 this.numer 2 @@ -9041,7 +9848,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 265 this -768597577 +1849201180 1 this.numer 3 @@ -9090,7 +9897,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 266 this -705339934 +1691875296 1 this.numer 1 @@ -9142,7 +9949,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 268 this -538539298 +667346055 1 this.numer 1 @@ -9194,7 +10001,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 270 this -1733893028 +1225197672 1 this.numer 1 @@ -9246,7 +10053,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 272 this -187031806 +1669712678 1 this.numer 2 @@ -9298,7 +10105,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 274 this -1674987881 +943081537 1 this.numer 3 @@ -9350,7 +10157,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 276 this -158187444 +683962652 1 this.numer 5 @@ -9402,7 +10209,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 278 this -71616322 +1500608548 1 this.numer 6 @@ -9454,7 +10261,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 280 this -1064681534 +341853399 1 this.numer 8 @@ -9506,7 +10313,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 282 this -1268795134 +513700442 1 this.numer -1 @@ -9558,7 +10365,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 284 this -127202428 +366590980 1 this.numer 3 @@ -9587,7 +10394,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 286 this -1144978631 +1195067075 1 this.numer 1 @@ -9616,7 +10423,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 287 this -54890450 +1366025231 1 this.numer -1 @@ -9645,7 +10452,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 288 this -1273308587 +1007309018 1 this.numer 100 @@ -9674,7 +10481,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 289 this -822879354 +1684792003 1 this.numer 2 @@ -9703,7 +10510,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 290 this -338615998 +2038148563 1 this.numer -2 @@ -9732,7 +10539,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 291 this -287413836 +2008966511 1 this.numer 9 @@ -9751,7 +10558,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 292 this -1840956687 +477289012 1 this.numer 0 @@ -9760,7 +10567,7 @@ this.denom 1 1 arg -1840956687 +477289012 1 arg.numer 0 @@ -9806,7 +10613,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 293 this -873619549 +433874882 1 this.numer 0 @@ -9825,7 +10632,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 292 this -1840956687 +477289012 1 this.numer 0 @@ -9834,7 +10641,7 @@ this.denom 1 1 arg -1840956687 +477289012 1 arg.numer 0 @@ -9843,7 +10650,7 @@ arg.denom 1 1 return -873619549 +433874882 1 return.numer 0 @@ -9856,7 +10663,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 295 this -873619549 +433874882 1 this.numer 0 @@ -9869,7 +10676,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 296 this -873619549 +433874882 1 this.numer 0 @@ -9882,7 +10689,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 296 this -873619549 +433874882 1 this.numer 0 @@ -9898,7 +10705,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 295 this -873619549 +433874882 1 this.numer 0 @@ -9907,7 +10714,7 @@ this.denom 1 1 return -578065504 +572191680 1 return.toString "0" @@ -9917,7 +10724,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 297 this -1840956687 +477289012 1 this.numer 0 @@ -9926,7 +10733,7 @@ this.denom 1 1 arg -14652433 +1795960102 1 arg.numer 1 @@ -9972,7 +10779,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 298 this -330906700 +103536485 1 this.numer 1 @@ -9991,7 +10798,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 297 this -1840956687 +477289012 1 this.numer 0 @@ -10000,7 +10807,7 @@ this.denom 1 1 arg -14652433 +1795960102 1 arg.numer 1 @@ -10009,7 +10816,7 @@ arg.denom 1 1 return -330906700 +103536485 1 return.numer 1 @@ -10022,7 +10829,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 300 this -330906700 +103536485 1 this.numer 1 @@ -10035,7 +10842,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 301 this -330906700 +103536485 1 this.numer 1 @@ -10048,7 +10855,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 301 this -330906700 +103536485 1 this.numer 1 @@ -10064,7 +10871,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 300 this -330906700 +103536485 1 this.numer 1 @@ -10073,7 +10880,7 @@ this.denom 1 1 return -1713744817 +37380050 1 return.toString "1" @@ -10083,7 +10890,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 302 this -14652433 +1795960102 1 this.numer 1 @@ -10092,7 +10899,7 @@ this.denom 1 1 arg -1840956687 +477289012 1 arg.numer 0 @@ -10138,7 +10945,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 303 this -858465755 +2023938592 1 this.numer 1 @@ -10157,7 +10964,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 302 this -14652433 +1795960102 1 this.numer 1 @@ -10166,7 +10973,7 @@ this.denom 1 1 arg -1840956687 +477289012 1 arg.numer 0 @@ -10175,7 +10982,7 @@ arg.denom 1 1 return -858465755 +2023938592 1 return.numer 1 @@ -10188,7 +10995,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 305 this -858465755 +2023938592 1 this.numer 1 @@ -10201,7 +11008,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 306 this -858465755 +2023938592 1 this.numer 1 @@ -10214,7 +11021,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 306 this -858465755 +2023938592 1 this.numer 1 @@ -10230,7 +11037,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 305 this -858465755 +2023938592 1 this.numer 1 @@ -10239,7 +11046,7 @@ this.denom 1 1 return -1438803739 +231977479 1 return.toString "1" @@ -10249,7 +11056,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 307 this -14652433 +1795960102 1 this.numer 1 @@ -10258,7 +11065,7 @@ this.denom 1 1 arg -14652433 +1795960102 1 arg.numer 1 @@ -10304,7 +11111,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 308 this -1308576153 +1427889191 1 this.numer 2 @@ -10323,7 +11130,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 307 this -14652433 +1795960102 1 this.numer 1 @@ -10332,7 +11139,7 @@ this.denom 1 1 arg -14652433 +1795960102 1 arg.numer 1 @@ -10341,7 +11148,7 @@ arg.denom 1 1 return -1308576153 +1427889191 1 return.numer 2 @@ -10354,7 +11161,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 310 this -1308576153 +1427889191 1 this.numer 2 @@ -10367,7 +11174,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 311 this -1308576153 +1427889191 1 this.numer 2 @@ -10380,7 +11187,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 311 this -1308576153 +1427889191 1 this.numer 2 @@ -10396,7 +11203,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 310 this -1308576153 +1427889191 1 this.numer 2 @@ -10405,7 +11212,7 @@ this.denom 1 1 return -859374544 +93314457 1 return.toString "2" @@ -10415,7 +11222,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 312 this -14652433 +1795960102 1 this.numer 1 @@ -10424,7 +11231,7 @@ this.denom 1 1 arg -1450305673 +1027591600 1 arg.numer -1 @@ -10470,7 +11277,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 313 this -1680434933 +1796371666 1 this.numer 0 @@ -10489,7 +11296,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 312 this -14652433 +1795960102 1 this.numer 1 @@ -10498,7 +11305,7 @@ this.denom 1 1 arg -1450305673 +1027591600 1 arg.numer -1 @@ -10507,7 +11314,7 @@ arg.denom 1 1 return -1680434933 +1796371666 1 return.numer 0 @@ -10520,7 +11327,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 315 this -1680434933 +1796371666 1 this.numer 0 @@ -10533,7 +11340,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 316 this -1680434933 +1796371666 1 this.numer 0 @@ -10546,7 +11353,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 316 this -1680434933 +1796371666 1 this.numer 0 @@ -10562,7 +11369,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 315 this -1680434933 +1796371666 1 this.numer 0 @@ -10571,7 +11378,7 @@ this.denom 1 1 return -1512477234 +2076287037 1 return.toString "0" @@ -10581,7 +11388,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 317 this -14652433 +1795960102 1 this.numer 1 @@ -10590,7 +11397,7 @@ this.denom 1 1 arg -1348052661 +1678854096 1 arg.numer 2 @@ -10636,7 +11443,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 318 this -440942299 +1890627974 1 this.numer 3 @@ -10655,7 +11462,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 317 this -14652433 +1795960102 1 this.numer 1 @@ -10664,7 +11471,7 @@ this.denom 1 1 arg -1348052661 +1678854096 1 arg.numer 2 @@ -10673,7 +11480,7 @@ arg.denom 1 1 return -440942299 +1890627974 1 return.numer 3 @@ -10686,7 +11493,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 320 this -440942299 +1890627974 1 this.numer 3 @@ -10699,7 +11506,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 321 this -440942299 +1890627974 1 this.numer 3 @@ -10712,7 +11519,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 321 this -440942299 +1890627974 1 this.numer 3 @@ -10728,7 +11535,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 320 this -440942299 +1890627974 1 this.numer 3 @@ -10737,7 +11544,7 @@ this.denom 1 1 return -2098637143 +195615004 1 return.toString "3" @@ -10747,7 +11554,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 322 this -1348052661 +1678854096 1 this.numer 2 @@ -10756,7 +11563,7 @@ this.denom 1 1 arg -1348052661 +1678854096 1 arg.numer 2 @@ -10802,7 +11609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 323 this -1523044073 +1935972447 1 this.numer 4 @@ -10821,7 +11628,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 322 this -1348052661 +1678854096 1 this.numer 2 @@ -10830,7 +11637,7 @@ this.denom 1 1 arg -1348052661 +1678854096 1 arg.numer 2 @@ -10839,7 +11646,7 @@ arg.denom 1 1 return -1523044073 +1935972447 1 return.numer 4 @@ -10852,7 +11659,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 325 this -1523044073 +1935972447 1 this.numer 4 @@ -10865,7 +11672,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 326 this -1523044073 +1935972447 1 this.numer 4 @@ -10878,7 +11685,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 326 this -1523044073 +1935972447 1 this.numer 4 @@ -10894,7 +11701,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 325 this -1523044073 +1935972447 1 this.numer 4 @@ -10903,7 +11710,7 @@ this.denom 1 1 return -1944146318 +97652294 1 return.toString "4" @@ -10920,7 +11727,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 327 this -1303477521 +1889248251 1 this.numer 0 @@ -10943,7 +11750,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 328 this -1066012400 +1027007693 1 this.numer 1 @@ -10966,7 +11773,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 329 this -14339879 +1783047508 1 this.numer -1 @@ -10989,7 +11796,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 330 this -492177889 +2146608740 1 this.numer 2 @@ -11012,7 +11819,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 331 this -2074255826 +1381713434 1 this.numer 3 @@ -11061,7 +11868,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 332 this -1915625831 +1489092624 1 this.numer 1 @@ -11113,7 +11920,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 334 this -848505793 +192881625 1 this.numer 1 @@ -11165,7 +11972,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 336 this -1545446871 +1641313620 1 this.numer 1 @@ -11217,7 +12024,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 338 this -510850432 +1773638882 1 this.numer 2 @@ -11269,7 +12076,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 340 this -223589918 +1059063940 1 this.numer 3 @@ -11321,7 +12128,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 342 this -1926853223 +1295226194 1 this.numer 5 @@ -11373,7 +12180,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 344 this -568722201 +252651381 1 this.numer 6 @@ -11425,7 +12232,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 346 this -64319410 +1514840818 1 this.numer 8 @@ -11477,7 +12284,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 348 this -832049429 +1704064279 1 this.numer -1 @@ -11529,7 +12336,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 350 this -1988727586 +878274034 1 this.numer 3 @@ -11558,7 +12365,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 352 this -1109055994 +1117509763 1 this.numer 1 @@ -11587,7 +12394,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 353 this -1893518845 +1296674576 1 this.numer -1 @@ -11616,7 +12423,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 354 this -811063022 +664457955 1 this.numer 100 @@ -11645,7 +12452,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 355 this -1457503245 +1477657879 1 this.numer 2 @@ -11674,7 +12481,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 356 this -2058561033 +1146147158 1 this.numer -2 @@ -11703,7 +12510,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 357 this -126244814 +1147258851 1 this.numer 9 @@ -11722,7 +12529,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 358 this -1915625831 +1489092624 1 this.numer 1 @@ -11731,7 +12538,7 @@ this.denom 2 1 arg -1303477521 +1889248251 1 arg.numer 0 @@ -11777,7 +12584,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 359 this -82745662 +891095110 1 this.numer 1 @@ -11796,7 +12603,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 358 this -1915625831 +1489092624 1 this.numer 1 @@ -11805,7 +12612,7 @@ this.denom 2 1 arg -1303477521 +1889248251 1 arg.numer 0 @@ -11814,7 +12621,7 @@ arg.denom 1 1 return -82745662 +891095110 1 return.numer 1 @@ -11827,7 +12634,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 361 this -82745662 +891095110 1 this.numer 1 @@ -11840,7 +12647,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 362 this -82745662 +891095110 1 this.numer 1 @@ -11853,7 +12660,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 362 this -82745662 +891095110 1 this.numer 1 @@ -11869,7 +12676,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 361 this -82745662 +891095110 1 this.numer 1 @@ -11878,7 +12685,7 @@ this.denom 2 1 return -1284421625 +2011482127 1 return.toString "1/2" @@ -11888,7 +12695,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 363 this -1915625831 +1489092624 1 this.numer 1 @@ -11897,7 +12704,7 @@ this.denom 2 1 arg -1066012400 +1027007693 1 arg.numer 1 @@ -11943,7 +12750,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 364 this -768631731 +905735620 1 this.numer 3 @@ -11962,7 +12769,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 363 this -1915625831 +1489092624 1 this.numer 1 @@ -11971,7 +12778,7 @@ this.denom 2 1 arg -1066012400 +1027007693 1 arg.numer 1 @@ -11980,7 +12787,7 @@ arg.denom 1 1 return -768631731 +905735620 1 return.numer 3 @@ -11993,7 +12800,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 366 this -768631731 +905735620 1 this.numer 3 @@ -12006,7 +12813,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 367 this -768631731 +905735620 1 this.numer 3 @@ -12019,7 +12826,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 367 this -768631731 +905735620 1 this.numer 3 @@ -12035,7 +12842,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 366 this -768631731 +905735620 1 this.numer 3 @@ -12044,7 +12851,7 @@ this.denom 2 1 return -1279366212 +2145970759 1 return.toString "3/2" @@ -12054,7 +12861,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 368 this -1915625831 +1489092624 1 this.numer 1 @@ -12063,7 +12870,7 @@ this.denom 2 1 arg -1915625831 +1489092624 1 arg.numer 1 @@ -12109,7 +12916,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 369 this -1701651320 +577405636 1 this.numer 1 @@ -12128,7 +12935,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 368 this -1915625831 +1489092624 1 this.numer 1 @@ -12137,7 +12944,7 @@ this.denom 2 1 arg -1915625831 +1489092624 1 arg.numer 1 @@ -12146,7 +12953,7 @@ arg.denom 2 1 return -1701651320 +577405636 1 return.numer 1 @@ -12159,7 +12966,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 371 this -1701651320 +577405636 1 this.numer 1 @@ -12172,7 +12979,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 372 this -1701651320 +577405636 1 this.numer 1 @@ -12185,7 +12992,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 372 this -1701651320 +577405636 1 this.numer 1 @@ -12201,7 +13008,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 371 this -1701651320 +577405636 1 this.numer 1 @@ -12210,7 +13017,7 @@ this.denom 1 1 return -1614008141 +1931444790 1 return.toString "1" @@ -12220,7 +13027,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 373 this -1915625831 +1489092624 1 this.numer 1 @@ -12229,7 +13036,7 @@ this.denom 2 1 arg -848505793 +192881625 1 arg.numer 1 @@ -12275,7 +13082,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 374 this -1768880530 +626742236 1 this.numer 5 @@ -12294,7 +13101,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 373 this -1915625831 +1489092624 1 this.numer 1 @@ -12303,7 +13110,7 @@ this.denom 2 1 arg -848505793 +192881625 1 arg.numer 1 @@ -12312,7 +13119,7 @@ arg.denom 3 1 return -1768880530 +626742236 1 return.numer 5 @@ -12325,7 +13132,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 376 this -1768880530 +626742236 1 this.numer 5 @@ -12338,7 +13145,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 377 this -1768880530 +626742236 1 this.numer 5 @@ -12351,7 +13158,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 377 this -1768880530 +626742236 1 this.numer 5 @@ -12367,7 +13174,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 376 this -1768880530 +626742236 1 this.numer 5 @@ -12376,7 +13183,7 @@ this.denom 6 1 return -1958942289 +500772834 1 return.toString "5/6" @@ -12386,7 +13193,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 378 this -1915625831 +1489092624 1 this.numer 1 @@ -12395,7 +13202,7 @@ this.denom 2 1 arg -14339879 +1783047508 1 arg.numer -1 @@ -12441,7 +13248,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 379 this -871259066 +1800659519 1 this.numer -1 @@ -12460,7 +13267,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 378 this -1915625831 +1489092624 1 this.numer 1 @@ -12469,7 +13276,7 @@ this.denom 2 1 arg -14339879 +1783047508 1 arg.numer -1 @@ -12478,7 +13285,7 @@ arg.denom 1 1 return -871259066 +1800659519 1 return.numer -1 @@ -12491,7 +13298,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 381 this -871259066 +1800659519 1 this.numer -1 @@ -12504,7 +13311,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 382 this -871259066 +1800659519 1 this.numer -1 @@ -12517,7 +13324,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 382 this -871259066 +1800659519 1 this.numer -1 @@ -12533,7 +13340,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 381 this -871259066 +1800659519 1 this.numer -1 @@ -12542,7 +13349,7 @@ this.denom 2 1 return -1707617016 +1691538257 1 return.toString "-1/2" @@ -12552,7 +13359,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 383 this -1915625831 +1489092624 1 this.numer 1 @@ -12561,7 +13368,7 @@ this.denom 2 1 arg -492177889 +2146608740 1 arg.numer 2 @@ -12607,7 +13414,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 384 this -947729404 +459848100 1 this.numer 5 @@ -12626,7 +13433,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 383 this -1915625831 +1489092624 1 this.numer 1 @@ -12635,7 +13442,7 @@ this.denom 2 1 arg -492177889 +2146608740 1 arg.numer 2 @@ -12644,7 +13451,7 @@ arg.denom 1 1 return -947729404 +459848100 1 return.numer 5 @@ -12657,7 +13464,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 386 this -947729404 +459848100 1 this.numer 5 @@ -12670,7 +13477,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 387 this -947729404 +459848100 1 this.numer 5 @@ -12683,7 +13490,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 387 this -947729404 +459848100 1 this.numer 5 @@ -12699,7 +13506,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 386 this -947729404 +459848100 1 this.numer 5 @@ -12708,7 +13515,7 @@ this.denom 2 1 return -601883229 +1335505684 1 return.toString "5/2" @@ -12718,7 +13525,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 388 this -1915625831 +1489092624 1 this.numer 1 @@ -12727,7 +13534,7 @@ this.denom 2 1 arg -510850432 +1773638882 1 arg.numer 2 @@ -12773,7 +13580,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 389 this -1203452433 +992768706 1 this.numer 7 @@ -12792,7 +13599,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 388 this -1915625831 +1489092624 1 this.numer 1 @@ -12801,7 +13608,7 @@ this.denom 2 1 arg -510850432 +1773638882 1 arg.numer 2 @@ -12810,7 +13617,7 @@ arg.denom 3 1 return -1203452433 +992768706 1 return.numer 7 @@ -12823,7 +13630,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 391 this -1203452433 +992768706 1 this.numer 7 @@ -12836,7 +13643,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 392 this -1203452433 +992768706 1 this.numer 7 @@ -12849,7 +13656,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 392 this -1203452433 +992768706 1 this.numer 7 @@ -12865,7 +13672,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 391 this -1203452433 +992768706 1 this.numer 7 @@ -12874,7 +13681,7 @@ this.denom 6 1 return -1424053985 +1226204845 1 return.toString "7/6" @@ -12884,7 +13691,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 393 this -1915625831 +1489092624 1 this.numer 1 @@ -12893,7 +13700,7 @@ this.denom 2 1 arg -223589918 +1059063940 1 arg.numer 3 @@ -12939,7 +13746,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 394 this -370080080 +393040818 1 this.numer 5 @@ -12958,7 +13765,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 393 this -1915625831 +1489092624 1 this.numer 1 @@ -12967,7 +13774,7 @@ this.denom 2 1 arg -223589918 +1059063940 1 arg.numer 3 @@ -12976,7 +13783,7 @@ arg.denom 4 1 return -370080080 +393040818 1 return.numer 5 @@ -12989,7 +13796,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 396 this -370080080 +393040818 1 this.numer 5 @@ -13002,7 +13809,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 397 this -370080080 +393040818 1 this.numer 5 @@ -13015,7 +13822,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 397 this -370080080 +393040818 1 this.numer 5 @@ -13031,7 +13838,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 396 this -370080080 +393040818 1 this.numer 5 @@ -13040,7 +13847,7 @@ this.denom 4 1 return -823262848 +158453976 1 return.toString "5/4" @@ -13050,7 +13857,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 398 this -848505793 +192881625 1 this.numer 1 @@ -13059,7 +13866,7 @@ this.denom 3 1 arg -1303477521 +1889248251 1 arg.numer 0 @@ -13105,7 +13912,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 399 this -341548715 +1368594774 1 this.numer 1 @@ -13124,7 +13931,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 398 this -848505793 +192881625 1 this.numer 1 @@ -13133,7 +13940,7 @@ this.denom 3 1 arg -1303477521 +1889248251 1 arg.numer 0 @@ -13142,7 +13949,7 @@ arg.denom 1 1 return -341548715 +1368594774 1 return.numer 1 @@ -13155,7 +13962,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 401 this -341548715 +1368594774 1 this.numer 1 @@ -13168,7 +13975,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 402 this -341548715 +1368594774 1 this.numer 1 @@ -13181,7 +13988,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 402 this -341548715 +1368594774 1 this.numer 1 @@ -13197,7 +14004,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 401 this -341548715 +1368594774 1 this.numer 1 @@ -13206,7 +14013,7 @@ this.denom 3 1 return -185464574 +726281927 1 return.toString "1/3" @@ -13216,7 +14023,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 403 this -848505793 +192881625 1 this.numer 1 @@ -13225,7 +14032,7 @@ this.denom 3 1 arg -510850432 +1773638882 1 arg.numer 2 @@ -13271,7 +14078,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 404 this -1104323421 +1447499999 1 this.numer 1 @@ -13290,7 +14097,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 403 this -848505793 +192881625 1 this.numer 1 @@ -13299,7 +14106,7 @@ this.denom 3 1 arg -510850432 +1773638882 1 arg.numer 2 @@ -13308,7 +14115,7 @@ arg.denom 3 1 return -1104323421 +1447499999 1 return.numer 1 @@ -13321,7 +14128,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 406 this -1104323421 +1447499999 1 this.numer 1 @@ -13334,7 +14141,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 407 this -1104323421 +1447499999 1 this.numer 1 @@ -13347,7 +14154,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 407 this -1104323421 +1447499999 1 this.numer 1 @@ -13363,7 +14170,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 406 this -1104323421 +1447499999 1 this.numer 1 @@ -13372,7 +14179,7 @@ this.denom 1 1 return -1810059373 +1371006431 1 return.toString "1" @@ -13382,7 +14189,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 408 this -848505793 +192881625 1 this.numer 1 @@ -13391,7 +14198,7 @@ this.denom 3 1 arg -223589918 +1059063940 1 arg.numer 3 @@ -13437,7 +14244,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 409 this -414538609 +413601558 1 this.numer 13 @@ -13456,7 +14263,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 408 this -848505793 +192881625 1 this.numer 1 @@ -13465,7 +14272,7 @@ this.denom 3 1 arg -223589918 +1059063940 1 arg.numer 3 @@ -13474,7 +14281,7 @@ arg.denom 4 1 return -414538609 +413601558 1 return.numer 13 @@ -13487,7 +14294,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 411 this -414538609 +413601558 1 this.numer 13 @@ -13500,7 +14307,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 412 this -414538609 +413601558 1 this.numer 13 @@ -13513,7 +14320,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 412 this -414538609 +413601558 1 this.numer 13 @@ -13529,7 +14336,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 411 this -414538609 +413601558 1 this.numer 13 @@ -13538,7 +14345,7 @@ this.denom 12 1 return -713450595 +1658926803 1 return.toString "13/12" @@ -13555,7 +14362,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 413 this -1562948964 +210652080 1 this.numer 0 @@ -13578,7 +14385,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 414 this -463267844 +1652149987 1 this.numer 1 @@ -13601,7 +14408,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 415 this -1514433733 +1107730949 1 this.numer -1 @@ -13624,7 +14431,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 416 this -1111566287 +700072760 1 this.numer 2 @@ -13647,7 +14454,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 417 this -1134340356 +1461149300 1 this.numer 3 @@ -13696,7 +14503,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 418 this -1646028873 +2075495587 1 this.numer 1 @@ -13748,7 +14555,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 420 this -922927857 +206835546 1 this.numer 1 @@ -13800,7 +14607,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 422 this -374110318 +1997287019 1 this.numer 1 @@ -13852,7 +14659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 424 this -1987479857 +436546048 1 this.numer 2 @@ -13904,7 +14711,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 426 this -1613311161 +1300393335 1 this.numer 3 @@ -13956,7 +14763,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 428 this -792155905 +1627428162 1 this.numer 5 @@ -14008,7 +14815,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 430 this -1513167582 +2011791487 1 this.numer 6 @@ -14060,7 +14867,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 432 this -1306202900 +1150284200 1 this.numer 8 @@ -14112,7 +14919,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 434 this -1774300666 +439928219 1 this.numer -1 @@ -14164,7 +14971,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 436 this -713371220 +2138564891 1 this.numer 3 @@ -14193,7 +15000,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 438 this -228893339 +1151755506 1 this.numer 1 @@ -14222,7 +15029,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 439 this -867136796 +2141179775 1 this.numer -1 @@ -14251,7 +15058,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 440 this -1144101830 +592959754 1 this.numer 100 @@ -14280,7 +15087,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 441 this -350881572 +1663619914 1 this.numer 2 @@ -14309,7 +15116,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 442 this -276485942 +341748265 1 this.numer -2 @@ -14338,7 +15145,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 443 this -1892098733 +364604394 1 this.numer 9 @@ -14357,7 +15164,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 444 this -713371220 +2138564891 1 this.numer 3 @@ -14366,7 +15173,7 @@ this.denom 2 1 arg -1646028873 +2075495587 1 arg.numer 1 @@ -14412,7 +15219,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 445 this -565560755 +146370526 1 this.numer 2 @@ -14431,7 +15238,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 444 this -713371220 +2138564891 1 this.numer 3 @@ -14440,7 +15247,7 @@ this.denom 2 1 arg -1646028873 +2075495587 1 arg.numer 1 @@ -14449,7 +15256,7 @@ arg.denom 2 1 return -565560755 +146370526 1 return.numer 2 @@ -14462,7 +15269,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 447 this -565560755 +146370526 1 this.numer 2 @@ -14475,7 +15282,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 448 this -565560755 +146370526 1 this.numer 2 @@ -14488,7 +15295,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 448 this -565560755 +146370526 1 this.numer 2 @@ -14504,7 +15311,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 447 this -565560755 +146370526 1 this.numer 2 @@ -14513,7 +15320,7 @@ this.denom 1 1 return -616987663 +758013696 1 return.toString "2" @@ -14523,7 +15330,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 449 this -713371220 +2138564891 1 this.numer 3 @@ -14532,7 +15339,7 @@ this.denom 2 1 arg -922927857 +206835546 1 arg.numer 1 @@ -14578,7 +15385,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 450 this -1660604325 +1279309678 1 this.numer 11 @@ -14597,7 +15404,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 449 this -713371220 +2138564891 1 this.numer 3 @@ -14606,7 +15413,7 @@ this.denom 2 1 arg -922927857 +206835546 1 arg.numer 1 @@ -14615,7 +15422,7 @@ arg.denom 3 1 return -1660604325 +1279309678 1 return.numer 11 @@ -14628,7 +15435,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 452 this -1660604325 +1279309678 1 this.numer 11 @@ -14641,7 +15448,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 453 this -1660604325 +1279309678 1 this.numer 11 @@ -14654,7 +15461,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 453 this -1660604325 +1279309678 1 this.numer 11 @@ -14670,7 +15477,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 452 this -1660604325 +1279309678 1 this.numer 11 @@ -14679,7 +15486,7 @@ this.denom 6 1 return -1079413863 +48914743 1 return.toString "11/6" @@ -14689,7 +15496,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 454 this -1613311161 +1300393335 1 this.numer 3 @@ -14698,7 +15505,7 @@ this.denom 4 1 arg -1613311161 +1300393335 1 arg.numer 3 @@ -14744,7 +15551,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 455 this -1914429232 +1106131243 1 this.numer 3 @@ -14763,7 +15570,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 454 this -1613311161 +1300393335 1 this.numer 3 @@ -14772,7 +15579,7 @@ this.denom 4 1 arg -1613311161 +1300393335 1 arg.numer 3 @@ -14781,7 +15588,7 @@ arg.denom 4 1 return -1914429232 +1106131243 1 return.numer 3 @@ -14794,7 +15601,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 457 this -1914429232 +1106131243 1 this.numer 3 @@ -14807,7 +15614,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 458 this -1914429232 +1106131243 1 this.numer 3 @@ -14820,7 +15627,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 458 this -1914429232 +1106131243 1 this.numer 3 @@ -14836,7 +15643,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 457 this -1914429232 +1106131243 1 this.numer 3 @@ -14845,7 +15652,7 @@ this.denom 2 1 return -64619223 +510109769 1 return.toString "3/2" @@ -14855,7 +15662,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 459 this -713371220 +2138564891 1 this.numer 3 @@ -14864,7 +15671,7 @@ this.denom 2 1 arg -713371220 +2138564891 1 arg.numer 3 @@ -14910,7 +15717,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 460 this -1576039226 +1473611564 1 this.numer 3 @@ -14929,7 +15736,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 459 this -713371220 +2138564891 1 this.numer 3 @@ -14938,7 +15745,7 @@ this.denom 2 1 arg -713371220 +2138564891 1 arg.numer 3 @@ -14947,7 +15754,7 @@ arg.denom 2 1 return -1576039226 +1473611564 1 return.numer 3 @@ -14960,7 +15767,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 462 this -1576039226 +1473611564 1 this.numer 3 @@ -14973,7 +15780,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 463 this -1576039226 +1473611564 1 this.numer 3 @@ -14986,7 +15793,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 463 this -1576039226 +1473611564 1 this.numer 3 @@ -15002,7 +15809,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 462 this -1576039226 +1473611564 1 this.numer 3 @@ -15011,7 +15818,7 @@ this.denom 1 1 return -1427969284 +107456312 1 return.toString "3" @@ -15028,7 +15835,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 464 this -1750000963 +921760190 1 this.numer 0 @@ -15051,7 +15858,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 465 this -330155829 +360067785 1 this.numer 1 @@ -15074,7 +15881,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 466 this -1978757802 +1860250540 1 this.numer -1 @@ -15097,7 +15904,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 467 this -1050620772 +1426329391 1 this.numer 2 @@ -15120,7 +15927,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 468 this -1172769370 +1690859824 1 this.numer 3 @@ -15169,7 +15976,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 469 this -1129889424 +1074593562 1 this.numer 1 @@ -15221,7 +16028,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 471 this -2001142394 +660017404 1 this.numer 1 @@ -15273,7 +16080,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 473 this -1458820291 +1381965390 1 this.numer 1 @@ -15325,7 +16132,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 475 this -571833038 +1979313356 1 this.numer 2 @@ -15377,7 +16184,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 477 this -808549341 +1386883398 1 this.numer 3 @@ -15429,7 +16236,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 479 this -12255971 +1306854175 1 this.numer 5 @@ -15481,7 +16288,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 481 this -1975158132 +1742920067 1 this.numer 6 @@ -15533,7 +16340,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 483 this -680509198 +1564984895 1 this.numer 8 @@ -15585,7 +16392,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 485 this -1967670511 +1587819720 1 this.numer -1 @@ -15637,7 +16444,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 487 this -1537598224 +1002191352 1 this.numer 3 @@ -15666,7 +16473,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 489 this -1742626417 +1256440269 1 this.numer 1 @@ -15695,7 +16502,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 490 this -940212733 +704024720 1 this.numer -1 @@ -15724,7 +16531,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 491 this -970728905 +1452012306 1 this.numer 100 @@ -15753,7 +16560,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 492 this -607440076 +211968962 1 this.numer 2 @@ -15782,7 +16589,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 493 this -108099494 +1486566962 1 this.numer -2 @@ -15811,7 +16618,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 494 this -57030296 +1173643169 1 this.numer 9 @@ -15830,7 +16637,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 495 this -1750000963 +921760190 1 this.numer 0 @@ -15839,7 +16646,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -15862,7 +16669,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 496 this -730478310 +1282287470 1 this.numer 1 @@ -15881,7 +16688,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 495 this -1750000963 +921760190 1 this.numer 0 @@ -15890,7 +16697,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -15899,7 +16706,7 @@ arg.denom 0 1 return -730478310 +1282287470 1 return.numer 1 @@ -15912,7 +16719,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 497 this -730478310 +1282287470 1 this.numer 1 @@ -15925,7 +16732,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 498 this -730478310 +1282287470 1 this.numer 1 @@ -15938,7 +16745,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 498 this -730478310 +1282287470 1 this.numer 1 @@ -15954,7 +16761,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 497 this -730478310 +1282287470 1 this.numer 1 @@ -15963,7 +16770,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -15973,7 +16780,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 499 this -1742626417 +1256440269 1 this.numer 1 @@ -15982,7 +16789,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16005,7 +16812,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 500 this -2132429918 +1397616978 1 this.numer 1 @@ -16024,7 +16831,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 499 this -1742626417 +1256440269 1 this.numer 1 @@ -16033,7 +16840,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16042,7 +16849,7 @@ arg.denom 1 1 return -2132429918 +1397616978 1 return.numer 1 @@ -16055,7 +16862,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 501 this -2132429918 +1397616978 1 this.numer 1 @@ -16068,7 +16875,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 502 this -2132429918 +1397616978 1 this.numer 1 @@ -16081,7 +16888,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 502 this -2132429918 +1397616978 1 this.numer 1 @@ -16097,7 +16904,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 501 this -2132429918 +1397616978 1 this.numer 1 @@ -16106,7 +16913,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16116,7 +16923,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 503 this -1750000963 +921760190 1 this.numer 0 @@ -16125,7 +16932,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -16148,7 +16955,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 504 this -395047043 +1390835631 1 this.numer -1 @@ -16167,7 +16974,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 503 this -1750000963 +921760190 1 this.numer 0 @@ -16176,7 +16983,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -16185,7 +16992,7 @@ arg.denom 0 1 return -395047043 +1390835631 1 return.numer -1 @@ -16198,7 +17005,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 505 this -395047043 +1390835631 1 this.numer -1 @@ -16211,7 +17018,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 506 this -395047043 +1390835631 1 this.numer -1 @@ -16224,7 +17031,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 506 this -395047043 +1390835631 1 this.numer -1 @@ -16240,7 +17047,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 505 this -395047043 +1390835631 1 this.numer -1 @@ -16249,7 +17056,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16259,7 +17066,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 507 this -940212733 +704024720 1 this.numer -1 @@ -16268,7 +17075,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16291,7 +17098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 508 this -1683698824 +889729797 1 this.numer -1 @@ -16310,7 +17117,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 507 this -940212733 +704024720 1 this.numer -1 @@ -16319,7 +17126,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16328,7 +17135,7 @@ arg.denom 1 1 return -1683698824 +889729797 1 return.numer -1 @@ -16341,7 +17148,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 509 this -1683698824 +889729797 1 this.numer -1 @@ -16354,7 +17161,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 510 this -1683698824 +889729797 1 this.numer -1 @@ -16367,7 +17174,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 510 this -1683698824 +889729797 1 this.numer -1 @@ -16383,7 +17190,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 509 this -1683698824 +889729797 1 this.numer -1 @@ -16392,7 +17199,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16402,7 +17209,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 511 this -1750000963 +921760190 1 this.numer 0 @@ -16411,7 +17218,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -16434,7 +17241,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 512 this -534118449 +148912029 1 this.numer 100 @@ -16453,7 +17260,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 511 this -1750000963 +921760190 1 this.numer 0 @@ -16462,7 +17269,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -16471,7 +17278,7 @@ arg.denom 0 1 return -534118449 +148912029 1 return.numer 100 @@ -16484,7 +17291,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 513 this -534118449 +148912029 1 this.numer 100 @@ -16497,7 +17304,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 514 this -534118449 +148912029 1 this.numer 100 @@ -16510,7 +17317,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 514 this -534118449 +148912029 1 this.numer 100 @@ -16526,7 +17333,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 513 this -534118449 +148912029 1 this.numer 100 @@ -16535,7 +17342,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16545,7 +17352,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 515 this -970728905 +1452012306 1 this.numer 100 @@ -16554,7 +17361,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16577,7 +17384,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 516 this -447127883 +874217650 1 this.numer 100 @@ -16596,7 +17403,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 515 this -970728905 +1452012306 1 this.numer 100 @@ -16605,7 +17412,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16614,7 +17421,7 @@ arg.denom 1 1 return -447127883 +874217650 1 return.numer 100 @@ -16627,7 +17434,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 517 this -447127883 +874217650 1 this.numer 100 @@ -16640,7 +17447,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 518 this -447127883 +874217650 1 this.numer 100 @@ -16653,7 +17460,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 518 this -447127883 +874217650 1 this.numer 100 @@ -16669,7 +17476,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 517 this -447127883 +874217650 1 this.numer 100 @@ -16678,7 +17485,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16688,7 +17495,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 519 this -1750000963 +921760190 1 this.numer 0 @@ -16697,7 +17504,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -16720,7 +17527,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 520 this -833048728 +1436664465 1 this.numer 2 @@ -16739,7 +17546,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 519 this -1750000963 +921760190 1 this.numer 0 @@ -16748,7 +17555,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -16757,7 +17564,7 @@ arg.denom 0 1 return -833048728 +1436664465 1 return.numer 2 @@ -16770,7 +17577,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 521 this -833048728 +1436664465 1 this.numer 2 @@ -16783,7 +17590,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 522 this -833048728 +1436664465 1 this.numer 2 @@ -16796,7 +17603,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 522 this -833048728 +1436664465 1 this.numer 2 @@ -16812,7 +17619,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 521 this -833048728 +1436664465 1 this.numer 2 @@ -16821,7 +17628,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16831,7 +17638,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 523 this -607440076 +211968962 1 this.numer 2 @@ -16840,7 +17647,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16863,7 +17670,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 524 this -1604076703 +558187323 1 this.numer 2 @@ -16882,7 +17689,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 523 this -607440076 +211968962 1 this.numer 2 @@ -16891,7 +17698,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -16900,7 +17707,7 @@ arg.denom 1 1 return -1604076703 +558187323 1 return.numer 2 @@ -16913,7 +17720,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 525 this -1604076703 +558187323 1 this.numer 2 @@ -16926,7 +17733,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 526 this -1604076703 +558187323 1 this.numer 2 @@ -16939,7 +17746,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 526 this -1604076703 +558187323 1 this.numer 2 @@ -16955,7 +17762,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 525 this -1604076703 +558187323 1 this.numer 2 @@ -16964,7 +17771,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -16974,7 +17781,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 527 this -1750000963 +921760190 1 this.numer 0 @@ -16983,7 +17790,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -17006,7 +17813,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 528 this -207442883 +680576081 1 this.numer -2 @@ -17025,7 +17832,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 527 this -1750000963 +921760190 1 this.numer 0 @@ -17034,7 +17841,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -17043,7 +17850,7 @@ arg.denom 0 1 return -207442883 +680576081 1 return.numer -2 @@ -17056,7 +17863,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 529 this -207442883 +680576081 1 this.numer -2 @@ -17069,7 +17876,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 530 this -207442883 +680576081 1 this.numer -2 @@ -17082,7 +17889,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 530 this -207442883 +680576081 1 this.numer -2 @@ -17098,7 +17905,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 529 this -207442883 +680576081 1 this.numer -2 @@ -17107,7 +17914,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17117,7 +17924,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 531 this -108099494 +1486566962 1 this.numer -2 @@ -17126,7 +17933,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -17149,7 +17956,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 532 this -1126575500 +1088872417 1 this.numer -2 @@ -17168,7 +17975,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 531 this -108099494 +1486566962 1 this.numer -2 @@ -17177,7 +17984,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -17186,7 +17993,7 @@ arg.denom 1 1 return -1126575500 +1088872417 1 return.numer -2 @@ -17199,7 +18006,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 533 this -1126575500 +1088872417 1 this.numer -2 @@ -17212,7 +18019,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 534 this -1126575500 +1088872417 1 this.numer -2 @@ -17225,7 +18032,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 534 this -1126575500 +1088872417 1 this.numer -2 @@ -17241,7 +18048,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 533 this -1126575500 +1088872417 1 this.numer -2 @@ -17250,7 +18057,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17260,7 +18067,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 535 this -1750000963 +921760190 1 this.numer 0 @@ -17269,7 +18076,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -17292,7 +18099,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 536 this -2138596548 +453523494 1 this.numer 9 @@ -17311,7 +18118,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 535 this -1750000963 +921760190 1 this.numer 0 @@ -17320,7 +18127,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -17329,7 +18136,7 @@ arg.denom 0 1 return -2138596548 +453523494 1 return.numer 9 @@ -17342,7 +18149,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 537 this -2138596548 +453523494 1 this.numer 9 @@ -17355,7 +18162,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 538 this -2138596548 +453523494 1 this.numer 9 @@ -17368,7 +18175,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 538 this -2138596548 +453523494 1 this.numer 9 @@ -17384,7 +18191,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 537 this -2138596548 +453523494 1 this.numer 9 @@ -17393,7 +18200,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17403,7 +18210,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 539 this -57030296 +1173643169 1 this.numer 9 @@ -17412,7 +18219,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -17435,7 +18242,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 540 this -958382397 +274722023 1 this.numer 9 @@ -17454,7 +18261,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 539 this -57030296 +1173643169 1 this.numer 9 @@ -17463,7 +18270,7 @@ this.denom 0 1 arg -1750000963 +921760190 1 arg.numer 0 @@ -17472,7 +18279,7 @@ arg.denom 1 1 return -958382397 +274722023 1 return.numer 9 @@ -17485,7 +18292,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 541 this -958382397 +274722023 1 this.numer 9 @@ -17498,7 +18305,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 542 this -958382397 +274722023 1 this.numer 9 @@ -17511,7 +18318,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 542 this -958382397 +274722023 1 this.numer 9 @@ -17527,7 +18334,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 541 this -958382397 +274722023 1 this.numer 9 @@ -17536,7 +18343,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17546,7 +18353,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 543 this -330155829 +360067785 1 this.numer 1 @@ -17555,7 +18362,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -17578,7 +18385,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 544 this -1405593879 +1052967153 1 this.numer 1 @@ -17597,7 +18404,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 543 this -330155829 +360067785 1 this.numer 1 @@ -17606,7 +18413,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -17615,7 +18422,7 @@ arg.denom 0 1 return -1405593879 +1052967153 1 return.numer 1 @@ -17628,7 +18435,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 545 this -1405593879 +1052967153 1 this.numer 1 @@ -17641,7 +18448,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 546 this -1405593879 +1052967153 1 this.numer 1 @@ -17654,7 +18461,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 546 this -1405593879 +1052967153 1 this.numer 1 @@ -17670,7 +18477,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 545 this -1405593879 +1052967153 1 this.numer 1 @@ -17679,7 +18486,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17689,7 +18496,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 547 this -1742626417 +1256440269 1 this.numer 1 @@ -17698,7 +18505,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -17721,7 +18528,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 548 this -1496207353 +1210898719 1 this.numer 1 @@ -17740,7 +18547,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 547 this -1742626417 +1256440269 1 this.numer 1 @@ -17749,7 +18556,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -17758,7 +18565,7 @@ arg.denom 1 1 return -1496207353 +1210898719 1 return.numer 1 @@ -17771,7 +18578,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 549 this -1496207353 +1210898719 1 this.numer 1 @@ -17784,7 +18591,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 550 this -1496207353 +1210898719 1 this.numer 1 @@ -17797,7 +18604,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 550 this -1496207353 +1210898719 1 this.numer 1 @@ -17813,7 +18620,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 549 this -1496207353 +1210898719 1 this.numer 1 @@ -17822,7 +18629,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17832,7 +18639,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 551 this -330155829 +360067785 1 this.numer 1 @@ -17841,7 +18648,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -17864,7 +18671,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 552 this -1870959148 +306123060 1 this.numer -1 @@ -17883,7 +18690,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 551 this -330155829 +360067785 1 this.numer 1 @@ -17892,7 +18699,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -17901,7 +18708,7 @@ arg.denom 0 1 return -1870959148 +306123060 1 return.numer -1 @@ -17914,7 +18721,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 553 this -1870959148 +306123060 1 this.numer -1 @@ -17927,7 +18734,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 554 this -1870959148 +306123060 1 this.numer -1 @@ -17940,7 +18747,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 554 this -1870959148 +306123060 1 this.numer -1 @@ -17956,7 +18763,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 553 this -1870959148 +306123060 1 this.numer -1 @@ -17965,7 +18772,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -17975,7 +18782,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 555 this -940212733 +704024720 1 this.numer -1 @@ -17984,7 +18791,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18007,7 +18814,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 556 this -1754841062 +2104028992 1 this.numer -1 @@ -18026,7 +18833,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 555 this -940212733 +704024720 1 this.numer -1 @@ -18035,7 +18842,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18044,7 +18851,7 @@ arg.denom 1 1 return -1754841062 +2104028992 1 return.numer -1 @@ -18057,7 +18864,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 557 this -1754841062 +2104028992 1 this.numer -1 @@ -18070,7 +18877,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 558 this -1754841062 +2104028992 1 this.numer -1 @@ -18083,7 +18890,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 558 this -1754841062 +2104028992 1 this.numer -1 @@ -18099,7 +18906,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 557 this -1754841062 +2104028992 1 this.numer -1 @@ -18108,7 +18915,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18118,7 +18925,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 559 this -330155829 +360067785 1 this.numer 1 @@ -18127,7 +18934,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -18150,7 +18957,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 560 this -73321136 +1527430292 1 this.numer 100 @@ -18169,7 +18976,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 559 this -330155829 +360067785 1 this.numer 1 @@ -18178,7 +18985,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -18187,7 +18994,7 @@ arg.denom 0 1 return -73321136 +1527430292 1 return.numer 100 @@ -18200,7 +19007,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 561 this -73321136 +1527430292 1 this.numer 100 @@ -18213,7 +19020,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 562 this -73321136 +1527430292 1 this.numer 100 @@ -18226,7 +19033,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 562 this -73321136 +1527430292 1 this.numer 100 @@ -18242,7 +19049,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 561 this -73321136 +1527430292 1 this.numer 100 @@ -18251,7 +19058,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18261,7 +19068,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 563 this -970728905 +1452012306 1 this.numer 100 @@ -18270,7 +19077,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18293,7 +19100,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 564 this -1800203021 +1975546571 1 this.numer 100 @@ -18312,7 +19119,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 563 this -970728905 +1452012306 1 this.numer 100 @@ -18321,7 +19128,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18330,7 +19137,7 @@ arg.denom 1 1 return -1800203021 +1975546571 1 return.numer 100 @@ -18343,7 +19150,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 565 this -1800203021 +1975546571 1 this.numer 100 @@ -18356,7 +19163,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 566 this -1800203021 +1975546571 1 this.numer 100 @@ -18369,7 +19176,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 566 this -1800203021 +1975546571 1 this.numer 100 @@ -18385,7 +19192,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 565 this -1800203021 +1975546571 1 this.numer 100 @@ -18394,7 +19201,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18404,7 +19211,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 567 this -330155829 +360067785 1 this.numer 1 @@ -18413,7 +19220,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -18436,7 +19243,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 568 this -115071364 +521960438 1 this.numer 2 @@ -18455,7 +19262,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 567 this -330155829 +360067785 1 this.numer 1 @@ -18464,7 +19271,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -18473,7 +19280,7 @@ arg.denom 0 1 return -115071364 +521960438 1 return.numer 2 @@ -18486,7 +19293,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 569 this -115071364 +521960438 1 this.numer 2 @@ -18499,7 +19306,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 570 this -115071364 +521960438 1 this.numer 2 @@ -18512,7 +19319,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 570 this -115071364 +521960438 1 this.numer 2 @@ -18528,7 +19335,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 569 this -115071364 +521960438 1 this.numer 2 @@ -18537,7 +19344,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18547,7 +19354,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 571 this -607440076 +211968962 1 this.numer 2 @@ -18556,7 +19363,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18579,7 +19386,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 572 this -1269132448 +632587706 1 this.numer 2 @@ -18598,7 +19405,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 571 this -607440076 +211968962 1 this.numer 2 @@ -18607,7 +19414,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18616,7 +19423,7 @@ arg.denom 1 1 return -1269132448 +632587706 1 return.numer 2 @@ -18629,7 +19436,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 573 this -1269132448 +632587706 1 this.numer 2 @@ -18642,7 +19449,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 574 this -1269132448 +632587706 1 this.numer 2 @@ -18655,7 +19462,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 574 this -1269132448 +632587706 1 this.numer 2 @@ -18671,7 +19478,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 573 this -1269132448 +632587706 1 this.numer 2 @@ -18680,7 +19487,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18690,7 +19497,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 575 this -330155829 +360067785 1 this.numer 1 @@ -18699,7 +19506,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -18722,7 +19529,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 576 this -1501471532 +726950788 1 this.numer -2 @@ -18741,7 +19548,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 575 this -330155829 +360067785 1 this.numer 1 @@ -18750,7 +19557,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -18759,7 +19566,7 @@ arg.denom 0 1 return -1501471532 +726950788 1 return.numer -2 @@ -18772,7 +19579,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 577 this -1501471532 +726950788 1 this.numer -2 @@ -18785,7 +19592,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 578 this -1501471532 +726950788 1 this.numer -2 @@ -18798,7 +19605,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 578 this -1501471532 +726950788 1 this.numer -2 @@ -18814,7 +19621,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 577 this -1501471532 +726950788 1 this.numer -2 @@ -18823,7 +19630,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18833,7 +19640,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 579 this -108099494 +1486566962 1 this.numer -2 @@ -18842,7 +19649,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18865,7 +19672,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 580 this -151702427 +1567885839 1 this.numer -2 @@ -18884,7 +19691,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 579 this -108099494 +1486566962 1 this.numer -2 @@ -18893,7 +19700,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -18902,7 +19709,7 @@ arg.denom 1 1 return -151702427 +1567885839 1 return.numer -2 @@ -18915,7 +19722,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 581 this -151702427 +1567885839 1 this.numer -2 @@ -18928,7 +19735,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 582 this -151702427 +1567885839 1 this.numer -2 @@ -18941,7 +19748,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 582 this -151702427 +1567885839 1 this.numer -2 @@ -18957,7 +19764,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 581 this -151702427 +1567885839 1 this.numer -2 @@ -18966,7 +19773,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -18976,7 +19783,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 583 this -330155829 +360067785 1 this.numer 1 @@ -18985,7 +19792,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -19008,7 +19815,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 584 this -599601600 +558569884 1 this.numer 9 @@ -19027,7 +19834,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 583 this -330155829 +360067785 1 this.numer 1 @@ -19036,7 +19843,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -19045,7 +19852,7 @@ arg.denom 0 1 return -599601600 +558569884 1 return.numer 9 @@ -19058,7 +19865,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 585 this -599601600 +558569884 1 this.numer 9 @@ -19071,7 +19878,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 586 this -599601600 +558569884 1 this.numer 9 @@ -19084,7 +19891,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 586 this -599601600 +558569884 1 this.numer 9 @@ -19100,7 +19907,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 585 this -599601600 +558569884 1 this.numer 9 @@ -19109,7 +19916,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19119,7 +19926,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 587 this -57030296 +1173643169 1 this.numer 9 @@ -19128,7 +19935,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -19151,7 +19958,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 588 this -1510819476 +550752602 1 this.numer 9 @@ -19170,7 +19977,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 587 this -57030296 +1173643169 1 this.numer 9 @@ -19179,7 +19986,7 @@ this.denom 0 1 arg -330155829 +360067785 1 arg.numer 1 @@ -19188,7 +19995,7 @@ arg.denom 1 1 return -1510819476 +550752602 1 return.numer 9 @@ -19201,7 +20008,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 589 this -1510819476 +550752602 1 this.numer 9 @@ -19214,7 +20021,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 590 this -1510819476 +550752602 1 this.numer 9 @@ -19227,7 +20034,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 590 this -1510819476 +550752602 1 this.numer 9 @@ -19243,7 +20050,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 589 this -1510819476 +550752602 1 this.numer 9 @@ -19252,7 +20059,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19262,7 +20069,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 591 this -1978757802 +1860250540 1 this.numer -1 @@ -19271,7 +20078,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -19294,7 +20101,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 592 this -496291004 +680779399 1 this.numer 1 @@ -19313,7 +20120,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 591 this -1978757802 +1860250540 1 this.numer -1 @@ -19322,7 +20129,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -19331,7 +20138,7 @@ arg.denom 0 1 return -496291004 +680779399 1 return.numer 1 @@ -19344,7 +20151,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 593 this -496291004 +680779399 1 this.numer 1 @@ -19357,7 +20164,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 594 this -496291004 +680779399 1 this.numer 1 @@ -19370,7 +20177,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 594 this -496291004 +680779399 1 this.numer 1 @@ -19386,7 +20193,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 593 this -496291004 +680779399 1 this.numer 1 @@ -19395,7 +20202,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19405,7 +20212,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 595 this -1742626417 +1256440269 1 this.numer 1 @@ -19414,7 +20221,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -19437,7 +20244,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 596 this -336419280 +1439337960 1 this.numer 1 @@ -19456,7 +20263,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 595 this -1742626417 +1256440269 1 this.numer 1 @@ -19465,7 +20272,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -19474,7 +20281,7 @@ arg.denom 1 1 return -336419280 +1439337960 1 return.numer 1 @@ -19487,7 +20294,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 597 this -336419280 +1439337960 1 this.numer 1 @@ -19500,7 +20307,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 598 this -336419280 +1439337960 1 this.numer 1 @@ -19513,7 +20320,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 598 this -336419280 +1439337960 1 this.numer 1 @@ -19529,7 +20336,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 597 this -336419280 +1439337960 1 this.numer 1 @@ -19538,7 +20345,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19548,7 +20355,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 599 this -1978757802 +1860250540 1 this.numer -1 @@ -19557,7 +20364,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -19580,7 +20387,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 600 this -2021880056 +741669172 1 this.numer -1 @@ -19599,7 +20406,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 599 this -1978757802 +1860250540 1 this.numer -1 @@ -19608,7 +20415,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -19617,7 +20424,7 @@ arg.denom 0 1 return -2021880056 +741669172 1 return.numer -1 @@ -19630,7 +20437,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 601 this -2021880056 +741669172 1 this.numer -1 @@ -19643,7 +20450,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 602 this -2021880056 +741669172 1 this.numer -1 @@ -19656,7 +20463,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 602 this -2021880056 +741669172 1 this.numer -1 @@ -19672,7 +20479,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 601 this -2021880056 +741669172 1 this.numer -1 @@ -19681,7 +20488,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19691,7 +20498,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 603 this -940212733 +704024720 1 this.numer -1 @@ -19700,7 +20507,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -19723,7 +20530,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 604 this -2104354711 +315860201 1 this.numer -1 @@ -19742,7 +20549,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 603 this -940212733 +704024720 1 this.numer -1 @@ -19751,7 +20558,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -19760,7 +20567,7 @@ arg.denom 1 1 return -2104354711 +315860201 1 return.numer -1 @@ -19773,7 +20580,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 605 this -2104354711 +315860201 1 this.numer -1 @@ -19786,7 +20593,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 606 this -2104354711 +315860201 1 this.numer -1 @@ -19799,7 +20606,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 606 this -2104354711 +315860201 1 this.numer -1 @@ -19815,7 +20622,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 605 this -2104354711 +315860201 1 this.numer -1 @@ -19824,7 +20631,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19834,7 +20641,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 607 this -1978757802 +1860250540 1 this.numer -1 @@ -19843,7 +20650,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -19866,7 +20673,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 608 this -981445334 +604125138 1 this.numer 100 @@ -19885,7 +20692,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 607 this -1978757802 +1860250540 1 this.numer -1 @@ -19894,7 +20701,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -19903,7 +20710,7 @@ arg.denom 0 1 return -981445334 +604125138 1 return.numer 100 @@ -19916,7 +20723,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 609 this -981445334 +604125138 1 this.numer 100 @@ -19929,7 +20736,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 610 this -981445334 +604125138 1 this.numer 100 @@ -19942,7 +20749,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 610 this -981445334 +604125138 1 this.numer 100 @@ -19958,7 +20765,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 609 this -981445334 +604125138 1 this.numer 100 @@ -19967,7 +20774,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -19977,7 +20784,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 611 this -970728905 +1452012306 1 this.numer 100 @@ -19986,7 +20793,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20009,7 +20816,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 612 this -329835931 +631659383 1 this.numer 100 @@ -20028,7 +20835,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 611 this -970728905 +1452012306 1 this.numer 100 @@ -20037,7 +20844,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20046,7 +20853,7 @@ arg.denom 1 1 return -329835931 +631659383 1 return.numer 100 @@ -20059,7 +20866,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 613 this -329835931 +631659383 1 this.numer 100 @@ -20072,7 +20879,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 614 this -329835931 +631659383 1 this.numer 100 @@ -20085,7 +20892,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 614 this -329835931 +631659383 1 this.numer 100 @@ -20101,7 +20908,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 613 this -329835931 +631659383 1 this.numer 100 @@ -20110,7 +20917,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20120,7 +20927,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 615 this -1978757802 +1860250540 1 this.numer -1 @@ -20129,7 +20936,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -20152,7 +20959,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 616 this -897199410 +785447854 1 this.numer 2 @@ -20171,7 +20978,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 615 this -1978757802 +1860250540 1 this.numer -1 @@ -20180,7 +20987,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -20189,7 +20996,7 @@ arg.denom 0 1 return -897199410 +785447854 1 return.numer 2 @@ -20202,7 +21009,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 617 this -897199410 +785447854 1 this.numer 2 @@ -20215,7 +21022,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 618 this -897199410 +785447854 1 this.numer 2 @@ -20228,7 +21035,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 618 this -897199410 +785447854 1 this.numer 2 @@ -20244,7 +21051,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 617 this -897199410 +785447854 1 this.numer 2 @@ -20253,7 +21060,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20263,7 +21070,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 619 this -607440076 +211968962 1 this.numer 2 @@ -20272,7 +21079,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20295,7 +21102,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 620 this -1747798283 +556529265 1 this.numer 2 @@ -20314,7 +21121,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 619 this -607440076 +211968962 1 this.numer 2 @@ -20323,7 +21130,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20332,7 +21139,7 @@ arg.denom 1 1 return -1747798283 +556529265 1 return.numer 2 @@ -20345,7 +21152,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 621 this -1747798283 +556529265 1 this.numer 2 @@ -20358,7 +21165,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 622 this -1747798283 +556529265 1 this.numer 2 @@ -20371,7 +21178,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 622 this -1747798283 +556529265 1 this.numer 2 @@ -20387,7 +21194,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 621 this -1747798283 +556529265 1 this.numer 2 @@ -20396,7 +21203,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20406,7 +21213,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 623 this -1978757802 +1860250540 1 this.numer -1 @@ -20415,7 +21222,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -20438,7 +21245,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 624 this -1964418715 +346224929 1 this.numer -2 @@ -20457,7 +21264,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 623 this -1978757802 +1860250540 1 this.numer -1 @@ -20466,7 +21273,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -20475,7 +21282,7 @@ arg.denom 0 1 return -1964418715 +346224929 1 return.numer -2 @@ -20488,7 +21295,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 625 this -1964418715 +346224929 1 this.numer -2 @@ -20501,7 +21308,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 626 this -1964418715 +346224929 1 this.numer -2 @@ -20514,7 +21321,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 626 this -1964418715 +346224929 1 this.numer -2 @@ -20530,7 +21337,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 625 this -1964418715 +346224929 1 this.numer -2 @@ -20539,7 +21346,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20549,7 +21356,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 627 this -108099494 +1486566962 1 this.numer -2 @@ -20558,7 +21365,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20581,7 +21388,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 628 this -571754027 +63468833 1 this.numer -2 @@ -20600,7 +21407,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 627 this -108099494 +1486566962 1 this.numer -2 @@ -20609,7 +21416,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20618,7 +21425,7 @@ arg.denom 1 1 return -571754027 +63468833 1 return.numer -2 @@ -20631,7 +21438,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 629 this -571754027 +63468833 1 this.numer -2 @@ -20644,7 +21451,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 630 this -571754027 +63468833 1 this.numer -2 @@ -20657,7 +21464,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 630 this -571754027 +63468833 1 this.numer -2 @@ -20673,7 +21480,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 629 this -571754027 +63468833 1 this.numer -2 @@ -20682,7 +21489,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20692,7 +21499,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 631 this -1978757802 +1860250540 1 this.numer -1 @@ -20701,7 +21508,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -20724,7 +21531,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 632 this -1628095111 +720167805 1 this.numer 9 @@ -20743,7 +21550,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 631 this -1978757802 +1860250540 1 this.numer -1 @@ -20752,7 +21559,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -20761,7 +21568,7 @@ arg.denom 0 1 return -1628095111 +720167805 1 return.numer 9 @@ -20774,7 +21581,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 633 this -1628095111 +720167805 1 this.numer 9 @@ -20787,7 +21594,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 634 this -1628095111 +720167805 1 this.numer 9 @@ -20800,7 +21607,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 634 this -1628095111 +720167805 1 this.numer 9 @@ -20816,7 +21623,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 633 this -1628095111 +720167805 1 this.numer 9 @@ -20825,7 +21632,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20835,7 +21642,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 635 this -57030296 +1173643169 1 this.numer 9 @@ -20844,7 +21651,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20867,7 +21674,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 636 this -157900503 +1418334255 1 this.numer 9 @@ -20886,7 +21693,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 635 this -57030296 +1173643169 1 this.numer 9 @@ -20895,7 +21702,7 @@ this.denom 0 1 arg -1978757802 +1860250540 1 arg.numer -1 @@ -20904,7 +21711,7 @@ arg.denom 1 1 return -157900503 +1418334255 1 return.numer 9 @@ -20917,7 +21724,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 637 this -157900503 +1418334255 1 this.numer 9 @@ -20930,7 +21737,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 638 this -157900503 +1418334255 1 this.numer 9 @@ -20943,7 +21750,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 638 this -157900503 +1418334255 1 this.numer 9 @@ -20959,7 +21766,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 637 this -157900503 +1418334255 1 this.numer 9 @@ -20968,7 +21775,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -20978,7 +21785,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 639 this -1050620772 +1426329391 1 this.numer 2 @@ -20987,7 +21794,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -21010,7 +21817,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 640 this -1691449876 +1466073198 1 this.numer 1 @@ -21029,7 +21836,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 639 this -1050620772 +1426329391 1 this.numer 2 @@ -21038,7 +21845,7 @@ this.denom 1 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -21047,7 +21854,7 @@ arg.denom 0 1 return -1691449876 +1466073198 1 return.numer 1 @@ -21060,7 +21867,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 641 this -1691449876 +1466073198 1 this.numer 1 @@ -21073,7 +21880,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 642 this -1691449876 +1466073198 1 this.numer 1 @@ -21086,7 +21893,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 642 this -1691449876 +1466073198 1 this.numer 1 @@ -21102,7 +21909,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 641 this -1691449876 +1466073198 1 this.numer 1 @@ -21111,7 +21918,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21121,7 +21928,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 643 this -1742626417 +1256440269 1 this.numer 1 @@ -21130,7 +21937,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -21153,7 +21960,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 644 this -1957030593 +398690014 1 this.numer 1 @@ -21172,7 +21979,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 643 this -1742626417 +1256440269 1 this.numer 1 @@ -21181,7 +21988,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -21190,7 +21997,7 @@ arg.denom 1 1 return -1957030593 +398690014 1 return.numer 1 @@ -21203,7 +22010,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 645 this -1957030593 +398690014 1 this.numer 1 @@ -21216,7 +22023,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 646 this -1957030593 +398690014 1 this.numer 1 @@ -21229,7 +22036,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 646 this -1957030593 +398690014 1 this.numer 1 @@ -21245,7 +22052,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 645 this -1957030593 +398690014 1 this.numer 1 @@ -21254,7 +22061,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21264,7 +22071,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 647 this -1050620772 +1426329391 1 this.numer 2 @@ -21273,7 +22080,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -21296,7 +22103,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 648 this -953639099 +1526298704 1 this.numer -1 @@ -21315,7 +22122,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 647 this -1050620772 +1426329391 1 this.numer 2 @@ -21324,7 +22131,7 @@ this.denom 1 1 arg -940212733 +704024720 1 arg.numer -1 @@ -21333,7 +22140,7 @@ arg.denom 0 1 return -953639099 +1526298704 1 return.numer -1 @@ -21346,7 +22153,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 649 this -953639099 +1526298704 1 this.numer -1 @@ -21359,7 +22166,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 650 this -953639099 +1526298704 1 this.numer -1 @@ -21372,7 +22179,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 650 this -953639099 +1526298704 1 this.numer -1 @@ -21388,7 +22195,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 649 this -953639099 +1526298704 1 this.numer -1 @@ -21397,7 +22204,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21407,7 +22214,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 651 this -940212733 +704024720 1 this.numer -1 @@ -21416,7 +22223,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -21439,7 +22246,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 652 this -1141879332 +1593180232 1 this.numer -1 @@ -21458,7 +22265,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 651 this -940212733 +704024720 1 this.numer -1 @@ -21467,7 +22274,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -21476,7 +22283,7 @@ arg.denom 1 1 return -1141879332 +1593180232 1 return.numer -1 @@ -21489,7 +22296,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 653 this -1141879332 +1593180232 1 this.numer -1 @@ -21502,7 +22309,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 654 this -1141879332 +1593180232 1 this.numer -1 @@ -21515,7 +22322,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 654 this -1141879332 +1593180232 1 this.numer -1 @@ -21531,7 +22338,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 653 this -1141879332 +1593180232 1 this.numer -1 @@ -21540,7 +22347,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21550,7 +22357,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 655 this -1050620772 +1426329391 1 this.numer 2 @@ -21559,7 +22366,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -21582,7 +22389,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 656 this -1652063332 +492079624 1 this.numer 100 @@ -21601,7 +22408,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 655 this -1050620772 +1426329391 1 this.numer 2 @@ -21610,7 +22417,7 @@ this.denom 1 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -21619,7 +22426,7 @@ arg.denom 0 1 return -1652063332 +492079624 1 return.numer 100 @@ -21632,7 +22439,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 657 this -1652063332 +492079624 1 this.numer 100 @@ -21645,7 +22452,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 658 this -1652063332 +492079624 1 this.numer 100 @@ -21658,7 +22465,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 658 this -1652063332 +492079624 1 this.numer 100 @@ -21674,7 +22481,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 657 this -1652063332 +492079624 1 this.numer 100 @@ -21683,7 +22490,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21693,7 +22500,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 659 this -970728905 +1452012306 1 this.numer 100 @@ -21702,7 +22509,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -21725,7 +22532,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 660 this -1412348861 +380242442 1 this.numer 100 @@ -21744,7 +22551,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 659 this -970728905 +1452012306 1 this.numer 100 @@ -21753,7 +22560,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -21762,7 +22569,7 @@ arg.denom 1 1 return -1412348861 +380242442 1 return.numer 100 @@ -21775,7 +22582,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 661 this -1412348861 +380242442 1 this.numer 100 @@ -21788,7 +22595,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 662 this -1412348861 +380242442 1 this.numer 100 @@ -21801,7 +22608,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 662 this -1412348861 +380242442 1 this.numer 100 @@ -21817,7 +22624,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 661 this -1412348861 +380242442 1 this.numer 100 @@ -21826,7 +22633,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21836,7 +22643,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 663 this -1050620772 +1426329391 1 this.numer 2 @@ -21845,7 +22652,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -21868,7 +22675,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 664 this -1210556536 +125881207 1 this.numer 2 @@ -21887,7 +22694,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 663 this -1050620772 +1426329391 1 this.numer 2 @@ -21896,7 +22703,7 @@ this.denom 1 1 arg -607440076 +211968962 1 arg.numer 2 @@ -21905,7 +22712,7 @@ arg.denom 0 1 return -1210556536 +125881207 1 return.numer 2 @@ -21918,7 +22725,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 665 this -1210556536 +125881207 1 this.numer 2 @@ -21931,7 +22738,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 666 this -1210556536 +125881207 1 this.numer 2 @@ -21944,7 +22751,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 666 this -1210556536 +125881207 1 this.numer 2 @@ -21960,7 +22767,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 665 this -1210556536 +125881207 1 this.numer 2 @@ -21969,7 +22776,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -21979,7 +22786,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 667 this -607440076 +211968962 1 this.numer 2 @@ -21988,7 +22795,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -22011,7 +22818,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 668 this -563628874 +1763344271 1 this.numer 2 @@ -22030,7 +22837,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 667 this -607440076 +211968962 1 this.numer 2 @@ -22039,7 +22846,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -22048,7 +22855,7 @@ arg.denom 1 1 return -563628874 +1763344271 1 return.numer 2 @@ -22061,7 +22868,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 669 this -563628874 +1763344271 1 this.numer 2 @@ -22074,7 +22881,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 670 this -563628874 +1763344271 1 this.numer 2 @@ -22087,7 +22894,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 670 this -563628874 +1763344271 1 this.numer 2 @@ -22103,7 +22910,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 669 this -563628874 +1763344271 1 this.numer 2 @@ -22112,7 +22919,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22122,7 +22929,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 671 this -1050620772 +1426329391 1 this.numer 2 @@ -22131,7 +22938,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -22154,7 +22961,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 672 this -360118401 +1353170030 1 this.numer -2 @@ -22173,7 +22980,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 671 this -1050620772 +1426329391 1 this.numer 2 @@ -22182,7 +22989,7 @@ this.denom 1 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -22191,7 +22998,7 @@ arg.denom 0 1 return -360118401 +1353170030 1 return.numer -2 @@ -22204,7 +23011,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 673 this -360118401 +1353170030 1 this.numer -2 @@ -22217,7 +23024,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 674 this -360118401 +1353170030 1 this.numer -2 @@ -22230,7 +23037,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 674 this -360118401 +1353170030 1 this.numer -2 @@ -22246,7 +23053,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 673 this -360118401 +1353170030 1 this.numer -2 @@ -22255,7 +23062,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22265,7 +23072,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 675 this -108099494 +1486566962 1 this.numer -2 @@ -22274,7 +23081,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -22297,7 +23104,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 676 this -901048361 +370869802 1 this.numer -2 @@ -22316,7 +23123,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 675 this -108099494 +1486566962 1 this.numer -2 @@ -22325,7 +23132,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -22334,7 +23141,7 @@ arg.denom 1 1 return -901048361 +370869802 1 return.numer -2 @@ -22347,7 +23154,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 677 this -901048361 +370869802 1 this.numer -2 @@ -22360,7 +23167,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 678 this -901048361 +370869802 1 this.numer -2 @@ -22373,7 +23180,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 678 this -901048361 +370869802 1 this.numer -2 @@ -22389,7 +23196,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 677 this -901048361 +370869802 1 this.numer -2 @@ -22398,7 +23205,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22408,7 +23215,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 679 this -1050620772 +1426329391 1 this.numer 2 @@ -22417,7 +23224,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -22440,7 +23247,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 680 this -2012608330 +398572781 1 this.numer 9 @@ -22459,7 +23266,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 679 this -1050620772 +1426329391 1 this.numer 2 @@ -22468,7 +23275,7 @@ this.denom 1 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -22477,7 +23284,7 @@ arg.denom 0 1 return -2012608330 +398572781 1 return.numer 9 @@ -22490,7 +23297,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 681 this -2012608330 +398572781 1 this.numer 9 @@ -22503,7 +23310,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 682 this -2012608330 +398572781 1 this.numer 9 @@ -22516,7 +23323,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 682 this -2012608330 +398572781 1 this.numer 9 @@ -22532,7 +23339,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 681 this -2012608330 +398572781 1 this.numer 9 @@ -22541,7 +23348,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22551,7 +23358,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 683 this -57030296 +1173643169 1 this.numer 9 @@ -22560,7 +23367,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -22583,7 +23390,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 684 this -893278413 +765284253 1 this.numer 9 @@ -22602,7 +23409,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 683 this -57030296 +1173643169 1 this.numer 9 @@ -22611,7 +23418,7 @@ this.denom 0 1 arg -1050620772 +1426329391 1 arg.numer 2 @@ -22620,7 +23427,7 @@ arg.denom 1 1 return -893278413 +765284253 1 return.numer 9 @@ -22633,7 +23440,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 685 this -893278413 +765284253 1 this.numer 9 @@ -22646,7 +23453,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 686 this -893278413 +765284253 1 this.numer 9 @@ -22659,7 +23466,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 686 this -893278413 +765284253 1 this.numer 9 @@ -22675,7 +23482,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 685 this -893278413 +765284253 1 this.numer 9 @@ -22684,7 +23491,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22694,7 +23501,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 687 this -1129889424 +1074593562 1 this.numer 1 @@ -22703,7 +23510,7 @@ this.denom 2 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -22726,7 +23533,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 688 this -272111114 +1077199500 1 this.numer 2 @@ -22745,7 +23552,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 687 this -1129889424 +1074593562 1 this.numer 1 @@ -22754,7 +23561,7 @@ this.denom 2 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -22763,7 +23570,7 @@ arg.denom 0 1 return -272111114 +1077199500 1 return.numer 2 @@ -22776,7 +23583,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 689 this -272111114 +1077199500 1 this.numer 2 @@ -22789,7 +23596,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 690 this -272111114 +1077199500 1 this.numer 2 @@ -22802,7 +23609,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 690 this -272111114 +1077199500 1 this.numer 2 @@ -22818,7 +23625,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 689 this -272111114 +1077199500 1 this.numer 2 @@ -22827,7 +23634,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22837,7 +23644,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 691 this -1742626417 +1256440269 1 this.numer 1 @@ -22846,7 +23653,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -22869,7 +23676,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 692 this -1378808535 +240166646 1 this.numer 2 @@ -22888,7 +23695,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 691 this -1742626417 +1256440269 1 this.numer 1 @@ -22897,7 +23704,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -22906,7 +23713,7 @@ arg.denom 2 1 return -1378808535 +240166646 1 return.numer 2 @@ -22919,7 +23726,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 693 this -1378808535 +240166646 1 this.numer 2 @@ -22932,7 +23739,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 694 this -1378808535 +240166646 1 this.numer 2 @@ -22945,7 +23752,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 694 this -1378808535 +240166646 1 this.numer 2 @@ -22961,7 +23768,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 693 this -1378808535 +240166646 1 this.numer 2 @@ -22970,7 +23777,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -22980,7 +23787,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 695 this -1129889424 +1074593562 1 this.numer 1 @@ -22989,7 +23796,7 @@ this.denom 2 1 arg -940212733 +704024720 1 arg.numer -1 @@ -23012,7 +23819,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 696 this -139012968 +351028485 1 this.numer -2 @@ -23031,7 +23838,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 695 this -1129889424 +1074593562 1 this.numer 1 @@ -23040,7 +23847,7 @@ this.denom 2 1 arg -940212733 +704024720 1 arg.numer -1 @@ -23049,7 +23856,7 @@ arg.denom 0 1 return -139012968 +351028485 1 return.numer -2 @@ -23062,7 +23869,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 697 this -139012968 +351028485 1 this.numer -2 @@ -23075,7 +23882,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 698 this -139012968 +351028485 1 this.numer -2 @@ -23088,7 +23895,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 698 this -139012968 +351028485 1 this.numer -2 @@ -23104,7 +23911,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 697 this -139012968 +351028485 1 this.numer -2 @@ -23113,7 +23920,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23123,7 +23930,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 699 this -940212733 +704024720 1 this.numer -1 @@ -23132,7 +23939,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -23155,7 +23962,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 700 this -2076228887 +1405747618 1 this.numer -2 @@ -23174,7 +23981,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 699 this -940212733 +704024720 1 this.numer -1 @@ -23183,7 +23990,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -23192,7 +23999,7 @@ arg.denom 2 1 return -2076228887 +1405747618 1 return.numer -2 @@ -23205,7 +24012,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 701 this -2076228887 +1405747618 1 this.numer -2 @@ -23218,7 +24025,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 702 this -2076228887 +1405747618 1 this.numer -2 @@ -23231,7 +24038,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 702 this -2076228887 +1405747618 1 this.numer -2 @@ -23247,7 +24054,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 701 this -2076228887 +1405747618 1 this.numer -2 @@ -23256,7 +24063,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23266,7 +24073,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 703 this -1129889424 +1074593562 1 this.numer 1 @@ -23275,7 +24082,7 @@ this.denom 2 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -23298,7 +24105,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 704 this -717123706 +898406901 1 this.numer 200 @@ -23317,7 +24124,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 703 this -1129889424 +1074593562 1 this.numer 1 @@ -23326,7 +24133,7 @@ this.denom 2 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -23335,7 +24142,7 @@ arg.denom 0 1 return -717123706 +898406901 1 return.numer 200 @@ -23348,7 +24155,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 705 this -717123706 +898406901 1 this.numer 200 @@ -23361,7 +24168,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 706 this -717123706 +898406901 1 this.numer 200 @@ -23374,7 +24181,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 706 this -717123706 +898406901 1 this.numer 200 @@ -23390,7 +24197,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 705 this -717123706 +898406901 1 this.numer 200 @@ -23399,7 +24206,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23409,7 +24216,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 707 this -970728905 +1452012306 1 this.numer 100 @@ -23418,7 +24225,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -23441,7 +24248,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 708 this -1019899778 +1054932644 1 this.numer 200 @@ -23460,7 +24267,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 707 this -970728905 +1452012306 1 this.numer 100 @@ -23469,7 +24276,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -23478,7 +24285,7 @@ arg.denom 2 1 return -1019899778 +1054932644 1 return.numer 200 @@ -23491,7 +24298,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 709 this -1019899778 +1054932644 1 this.numer 200 @@ -23504,7 +24311,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 710 this -1019899778 +1054932644 1 this.numer 200 @@ -23517,7 +24324,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 710 this -1019899778 +1054932644 1 this.numer 200 @@ -23533,7 +24340,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 709 this -1019899778 +1054932644 1 this.numer 200 @@ -23542,7 +24349,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23552,7 +24359,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 711 this -1129889424 +1074593562 1 this.numer 1 @@ -23561,7 +24368,7 @@ this.denom 2 1 arg -607440076 +211968962 1 arg.numer 2 @@ -23584,7 +24391,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 712 this -241098492 +1213349904 1 this.numer 4 @@ -23603,7 +24410,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 711 this -1129889424 +1074593562 1 this.numer 1 @@ -23612,7 +24419,7 @@ this.denom 2 1 arg -607440076 +211968962 1 arg.numer 2 @@ -23621,7 +24428,7 @@ arg.denom 0 1 return -241098492 +1213349904 1 return.numer 4 @@ -23634,7 +24441,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 713 this -241098492 +1213349904 1 this.numer 4 @@ -23647,7 +24454,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 714 this -241098492 +1213349904 1 this.numer 4 @@ -23660,7 +24467,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 714 this -241098492 +1213349904 1 this.numer 4 @@ -23676,7 +24483,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 713 this -241098492 +1213349904 1 this.numer 4 @@ -23685,7 +24492,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23695,7 +24502,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 715 this -607440076 +211968962 1 this.numer 2 @@ -23704,7 +24511,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -23727,7 +24534,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 716 this -1988196802 +1259769769 1 this.numer 4 @@ -23746,7 +24553,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 715 this -607440076 +211968962 1 this.numer 2 @@ -23755,7 +24562,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -23764,7 +24571,7 @@ arg.denom 2 1 return -1988196802 +1259769769 1 return.numer 4 @@ -23777,7 +24584,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 717 this -1988196802 +1259769769 1 this.numer 4 @@ -23790,7 +24597,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 718 this -1988196802 +1259769769 1 this.numer 4 @@ -23803,7 +24610,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 718 this -1988196802 +1259769769 1 this.numer 4 @@ -23819,7 +24626,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 717 this -1988196802 +1259769769 1 this.numer 4 @@ -23828,7 +24635,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23838,7 +24645,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 719 this -1129889424 +1074593562 1 this.numer 1 @@ -23847,7 +24654,7 @@ this.denom 2 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -23870,7 +24677,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 720 this -778103894 +444920847 1 this.numer -4 @@ -23889,7 +24696,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 719 this -1129889424 +1074593562 1 this.numer 1 @@ -23898,7 +24705,7 @@ this.denom 2 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -23907,7 +24714,7 @@ arg.denom 0 1 return -778103894 +444920847 1 return.numer -4 @@ -23920,7 +24727,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 721 this -778103894 +444920847 1 this.numer -4 @@ -23933,7 +24740,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 722 this -778103894 +444920847 1 this.numer -4 @@ -23946,7 +24753,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 722 this -778103894 +444920847 1 this.numer -4 @@ -23962,7 +24769,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 721 this -778103894 +444920847 1 this.numer -4 @@ -23971,7 +24778,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -23981,7 +24788,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 723 this -108099494 +1486566962 1 this.numer -2 @@ -23990,7 +24797,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -24013,7 +24820,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 724 this -1564219875 +589835301 1 this.numer -4 @@ -24032,7 +24839,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 723 this -108099494 +1486566962 1 this.numer -2 @@ -24041,7 +24848,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -24050,7 +24857,7 @@ arg.denom 2 1 return -1564219875 +589835301 1 return.numer -4 @@ -24063,7 +24870,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 725 this -1564219875 +589835301 1 this.numer -4 @@ -24076,7 +24883,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 726 this -1564219875 +589835301 1 this.numer -4 @@ -24089,7 +24896,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 726 this -1564219875 +589835301 1 this.numer -4 @@ -24105,7 +24912,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 725 this -1564219875 +589835301 1 this.numer -4 @@ -24114,7 +24921,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24124,7 +24931,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 727 this -1129889424 +1074593562 1 this.numer 1 @@ -24133,7 +24940,7 @@ this.denom 2 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -24156,7 +24963,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 728 this -348632551 +2032188048 1 this.numer 18 @@ -24175,7 +24982,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 727 this -1129889424 +1074593562 1 this.numer 1 @@ -24184,7 +24991,7 @@ this.denom 2 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -24193,7 +25000,7 @@ arg.denom 0 1 return -348632551 +2032188048 1 return.numer 18 @@ -24206,7 +25013,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 729 this -348632551 +2032188048 1 this.numer 18 @@ -24219,7 +25026,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 730 this -348632551 +2032188048 1 this.numer 18 @@ -24232,7 +25039,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 730 this -348632551 +2032188048 1 this.numer 18 @@ -24248,7 +25055,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 729 this -348632551 +2032188048 1 this.numer 18 @@ -24257,7 +25064,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24267,7 +25074,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 731 this -57030296 +1173643169 1 this.numer 9 @@ -24276,7 +25083,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -24299,7 +25106,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 732 this -1131895641 +112466394 1 this.numer 18 @@ -24318,7 +25125,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 731 this -57030296 +1173643169 1 this.numer 9 @@ -24327,7 +25134,7 @@ this.denom 0 1 arg -1129889424 +1074593562 1 arg.numer 1 @@ -24336,7 +25143,7 @@ arg.denom 2 1 return -1131895641 +112466394 1 return.numer 18 @@ -24349,7 +25156,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 733 this -1131895641 +112466394 1 this.numer 18 @@ -24362,7 +25169,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 734 this -1131895641 +112466394 1 this.numer 18 @@ -24375,7 +25182,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 734 this -1131895641 +112466394 1 this.numer 18 @@ -24391,7 +25198,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 733 this -1131895641 +112466394 1 this.numer 18 @@ -24400,7 +25207,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24410,7 +25217,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 735 this -1967670511 +1587819720 1 this.numer -1 @@ -24419,7 +25226,7 @@ this.denom 2 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -24442,7 +25249,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 736 this -1359893161 +992846223 1 this.numer 2 @@ -24461,7 +25268,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 735 this -1967670511 +1587819720 1 this.numer -1 @@ -24470,7 +25277,7 @@ this.denom 2 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -24479,7 +25286,7 @@ arg.denom 0 1 return -1359893161 +992846223 1 return.numer 2 @@ -24492,7 +25299,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 737 this -1359893161 +992846223 1 this.numer 2 @@ -24505,7 +25312,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 738 this -1359893161 +992846223 1 this.numer 2 @@ -24518,7 +25325,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 738 this -1359893161 +992846223 1 this.numer 2 @@ -24534,7 +25341,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 737 this -1359893161 +992846223 1 this.numer 2 @@ -24543,7 +25350,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24553,7 +25360,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 739 this -1742626417 +1256440269 1 this.numer 1 @@ -24562,7 +25369,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -24585,7 +25392,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 740 this -55901906 +1493625803 1 this.numer 2 @@ -24604,7 +25411,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 739 this -1742626417 +1256440269 1 this.numer 1 @@ -24613,7 +25420,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -24622,7 +25429,7 @@ arg.denom 2 1 return -55901906 +1493625803 1 return.numer 2 @@ -24635,7 +25442,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 741 this -55901906 +1493625803 1 this.numer 2 @@ -24648,7 +25455,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 742 this -55901906 +1493625803 1 this.numer 2 @@ -24661,7 +25468,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 742 this -55901906 +1493625803 1 this.numer 2 @@ -24677,7 +25484,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 741 this -55901906 +1493625803 1 this.numer 2 @@ -24686,7 +25493,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24696,7 +25503,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 743 this -1967670511 +1587819720 1 this.numer -1 @@ -24705,7 +25512,7 @@ this.denom 2 1 arg -940212733 +704024720 1 arg.numer -1 @@ -24728,7 +25535,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 744 this -1092980403 +630074945 1 this.numer -2 @@ -24747,7 +25554,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 743 this -1967670511 +1587819720 1 this.numer -1 @@ -24756,7 +25563,7 @@ this.denom 2 1 arg -940212733 +704024720 1 arg.numer -1 @@ -24765,7 +25572,7 @@ arg.denom 0 1 return -1092980403 +630074945 1 return.numer -2 @@ -24778,7 +25585,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 745 this -1092980403 +630074945 1 this.numer -2 @@ -24791,7 +25598,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 746 this -1092980403 +630074945 1 this.numer -2 @@ -24804,7 +25611,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 746 this -1092980403 +630074945 1 this.numer -2 @@ -24820,7 +25627,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 745 this -1092980403 +630074945 1 this.numer -2 @@ -24829,7 +25636,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24839,7 +25646,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 747 this -940212733 +704024720 1 this.numer -1 @@ -24848,7 +25655,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -24871,7 +25678,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 748 this -146516783 +64133603 1 this.numer -2 @@ -24890,7 +25697,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 747 this -940212733 +704024720 1 this.numer -1 @@ -24899,7 +25706,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -24908,7 +25715,7 @@ arg.denom 2 1 return -146516783 +64133603 1 return.numer -2 @@ -24921,7 +25728,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 749 this -146516783 +64133603 1 this.numer -2 @@ -24934,7 +25741,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 750 this -146516783 +64133603 1 this.numer -2 @@ -24947,7 +25754,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 750 this -146516783 +64133603 1 this.numer -2 @@ -24963,7 +25770,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 749 this -146516783 +64133603 1 this.numer -2 @@ -24972,7 +25779,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -24982,7 +25789,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 751 this -1967670511 +1587819720 1 this.numer -1 @@ -24991,7 +25798,7 @@ this.denom 2 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -25014,7 +25821,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 752 this -1491312419 +1436901839 1 this.numer 200 @@ -25033,7 +25840,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 751 this -1967670511 +1587819720 1 this.numer -1 @@ -25042,7 +25849,7 @@ this.denom 2 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -25051,7 +25858,7 @@ arg.denom 0 1 return -1491312419 +1436901839 1 return.numer 200 @@ -25064,7 +25871,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 753 this -1491312419 +1436901839 1 this.numer 200 @@ -25077,7 +25884,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 754 this -1491312419 +1436901839 1 this.numer 200 @@ -25090,7 +25897,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 754 this -1491312419 +1436901839 1 this.numer 200 @@ -25106,7 +25913,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 753 this -1491312419 +1436901839 1 this.numer 200 @@ -25115,7 +25922,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25125,7 +25932,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 755 this -970728905 +1452012306 1 this.numer 100 @@ -25134,7 +25941,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -25157,7 +25964,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 756 this -1206181996 +999522307 1 this.numer 200 @@ -25176,7 +25983,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 755 this -970728905 +1452012306 1 this.numer 100 @@ -25185,7 +25992,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -25194,7 +26001,7 @@ arg.denom 2 1 return -1206181996 +999522307 1 return.numer 200 @@ -25207,7 +26014,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 757 this -1206181996 +999522307 1 this.numer 200 @@ -25220,7 +26027,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 758 this -1206181996 +999522307 1 this.numer 200 @@ -25233,7 +26040,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 758 this -1206181996 +999522307 1 this.numer 200 @@ -25249,7 +26056,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 757 this -1206181996 +999522307 1 this.numer 200 @@ -25258,7 +26065,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25268,7 +26075,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 759 this -1967670511 +1587819720 1 this.numer -1 @@ -25277,7 +26084,7 @@ this.denom 2 1 arg -607440076 +211968962 1 arg.numer 2 @@ -25300,7 +26107,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 760 this -55179092 +1866161430 1 this.numer 4 @@ -25319,7 +26126,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 759 this -1967670511 +1587819720 1 this.numer -1 @@ -25328,7 +26135,7 @@ this.denom 2 1 arg -607440076 +211968962 1 arg.numer 2 @@ -25337,7 +26144,7 @@ arg.denom 0 1 return -55179092 +1866161430 1 return.numer 4 @@ -25350,7 +26157,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 761 this -55179092 +1866161430 1 this.numer 4 @@ -25363,7 +26170,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 762 this -55179092 +1866161430 1 this.numer 4 @@ -25376,7 +26183,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 762 this -55179092 +1866161430 1 this.numer 4 @@ -25392,7 +26199,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 761 this -55179092 +1866161430 1 this.numer 4 @@ -25401,7 +26208,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25411,7 +26218,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 763 this -607440076 +211968962 1 this.numer 2 @@ -25420,7 +26227,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -25443,7 +26250,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 764 this -1829547387 +2024918163 1 this.numer 4 @@ -25462,7 +26269,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 763 this -607440076 +211968962 1 this.numer 2 @@ -25471,7 +26278,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -25480,7 +26287,7 @@ arg.denom 2 1 return -1829547387 +2024918163 1 return.numer 4 @@ -25493,7 +26300,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 765 this -1829547387 +2024918163 1 this.numer 4 @@ -25506,7 +26313,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 766 this -1829547387 +2024918163 1 this.numer 4 @@ -25519,7 +26326,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 766 this -1829547387 +2024918163 1 this.numer 4 @@ -25535,7 +26342,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 765 this -1829547387 +2024918163 1 this.numer 4 @@ -25544,7 +26351,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25554,7 +26361,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 767 this -1967670511 +1587819720 1 this.numer -1 @@ -25563,7 +26370,7 @@ this.denom 2 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -25586,7 +26393,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 768 this -1532075563 +107241811 1 this.numer -4 @@ -25605,7 +26412,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 767 this -1967670511 +1587819720 1 this.numer -1 @@ -25614,7 +26421,7 @@ this.denom 2 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -25623,7 +26430,7 @@ arg.denom 0 1 return -1532075563 +107241811 1 return.numer -4 @@ -25636,7 +26443,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 769 this -1532075563 +107241811 1 this.numer -4 @@ -25649,7 +26456,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 770 this -1532075563 +107241811 1 this.numer -4 @@ -25662,7 +26469,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 770 this -1532075563 +107241811 1 this.numer -4 @@ -25678,7 +26485,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 769 this -1532075563 +107241811 1 this.numer -4 @@ -25687,7 +26494,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25697,7 +26504,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 771 this -108099494 +1486566962 1 this.numer -2 @@ -25706,7 +26513,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -25729,7 +26536,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 772 this -1265059811 +558922244 1 this.numer -4 @@ -25748,7 +26555,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 771 this -108099494 +1486566962 1 this.numer -2 @@ -25757,7 +26564,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -25766,7 +26573,7 @@ arg.denom 2 1 return -1265059811 +558922244 1 return.numer -4 @@ -25779,7 +26586,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 773 this -1265059811 +558922244 1 this.numer -4 @@ -25792,7 +26599,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 774 this -1265059811 +558922244 1 this.numer -4 @@ -25805,7 +26612,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 774 this -1265059811 +558922244 1 this.numer -4 @@ -25821,7 +26628,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 773 this -1265059811 +558922244 1 this.numer -4 @@ -25830,7 +26637,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25840,7 +26647,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 775 this -1967670511 +1587819720 1 this.numer -1 @@ -25849,7 +26656,7 @@ this.denom 2 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -25872,7 +26679,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 776 this -1772138177 +339099861 1 this.numer 18 @@ -25891,7 +26698,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 775 this -1967670511 +1587819720 1 this.numer -1 @@ -25900,7 +26707,7 @@ this.denom 2 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -25909,7 +26716,7 @@ arg.denom 0 1 return -1772138177 +339099861 1 return.numer 18 @@ -25922,7 +26729,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 777 this -1772138177 +339099861 1 this.numer 18 @@ -25935,7 +26742,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 778 this -1772138177 +339099861 1 this.numer 18 @@ -25948,7 +26755,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 778 this -1772138177 +339099861 1 this.numer 18 @@ -25964,7 +26771,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 777 this -1772138177 +339099861 1 this.numer 18 @@ -25973,7 +26780,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -25983,7 +26790,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 779 this -57030296 +1173643169 1 this.numer 9 @@ -25992,7 +26799,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -26015,7 +26822,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 780 this -875640596 +1653986196 1 this.numer 18 @@ -26034,7 +26841,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 779 this -57030296 +1173643169 1 this.numer 9 @@ -26043,7 +26850,7 @@ this.denom 0 1 arg -1967670511 +1587819720 1 arg.numer -1 @@ -26052,7 +26859,7 @@ arg.denom 2 1 return -875640596 +1653986196 1 return.numer 18 @@ -26065,7 +26872,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 781 this -875640596 +1653986196 1 this.numer 18 @@ -26078,7 +26885,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 782 this -875640596 +1653986196 1 this.numer 18 @@ -26091,7 +26898,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 782 this -875640596 +1653986196 1 this.numer 18 @@ -26107,7 +26914,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 781 this -875640596 +1653986196 1 this.numer 18 @@ -26116,7 +26923,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26126,7 +26933,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 783 this -1537598224 +1002191352 1 this.numer 3 @@ -26135,7 +26942,7 @@ this.denom 2 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -26158,7 +26965,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 784 this -186064081 +1197365356 1 this.numer 2 @@ -26177,7 +26984,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 783 this -1537598224 +1002191352 1 this.numer 3 @@ -26186,7 +26993,7 @@ this.denom 2 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -26195,7 +27002,7 @@ arg.denom 0 1 return -186064081 +1197365356 1 return.numer 2 @@ -26208,7 +27015,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 785 this -186064081 +1197365356 1 this.numer 2 @@ -26221,7 +27028,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 786 this -186064081 +1197365356 1 this.numer 2 @@ -26234,7 +27041,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 786 this -186064081 +1197365356 1 this.numer 2 @@ -26250,7 +27057,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 785 this -186064081 +1197365356 1 this.numer 2 @@ -26259,7 +27066,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26269,7 +27076,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 787 this -1742626417 +1256440269 1 this.numer 1 @@ -26278,7 +27085,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -26301,7 +27108,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 788 this -442819335 +1702660825 1 this.numer 2 @@ -26320,7 +27127,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 787 this -1742626417 +1256440269 1 this.numer 1 @@ -26329,7 +27136,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -26338,7 +27145,7 @@ arg.denom 2 1 return -442819335 +1702660825 1 return.numer 2 @@ -26351,7 +27158,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 789 this -442819335 +1702660825 1 this.numer 2 @@ -26364,7 +27171,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 790 this -442819335 +1702660825 1 this.numer 2 @@ -26377,7 +27184,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 790 this -442819335 +1702660825 1 this.numer 2 @@ -26393,7 +27200,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 789 this -442819335 +1702660825 1 this.numer 2 @@ -26402,7 +27209,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26412,7 +27219,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 791 this -1537598224 +1002191352 1 this.numer 3 @@ -26421,7 +27228,7 @@ this.denom 2 1 arg -940212733 +704024720 1 arg.numer -1 @@ -26444,7 +27251,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 792 this -1433726490 +1131040331 1 this.numer -2 @@ -26463,7 +27270,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 791 this -1537598224 +1002191352 1 this.numer 3 @@ -26472,7 +27279,7 @@ this.denom 2 1 arg -940212733 +704024720 1 arg.numer -1 @@ -26481,7 +27288,7 @@ arg.denom 0 1 return -1433726490 +1131040331 1 return.numer -2 @@ -26494,7 +27301,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 793 this -1433726490 +1131040331 1 this.numer -2 @@ -26507,7 +27314,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 794 this -1433726490 +1131040331 1 this.numer -2 @@ -26520,7 +27327,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 794 this -1433726490 +1131040331 1 this.numer -2 @@ -26536,7 +27343,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 793 this -1433726490 +1131040331 1 this.numer -2 @@ -26545,7 +27352,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26555,7 +27362,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 795 this -940212733 +704024720 1 this.numer -1 @@ -26564,7 +27371,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -26587,7 +27394,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 796 this -1874598090 +254749889 1 this.numer -2 @@ -26606,7 +27413,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 795 this -940212733 +704024720 1 this.numer -1 @@ -26615,7 +27422,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -26624,7 +27431,7 @@ arg.denom 2 1 return -1874598090 +254749889 1 return.numer -2 @@ -26637,7 +27444,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 797 this -1874598090 +254749889 1 this.numer -2 @@ -26650,7 +27457,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 798 this -1874598090 +254749889 1 this.numer -2 @@ -26663,7 +27470,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 798 this -1874598090 +254749889 1 this.numer -2 @@ -26679,7 +27486,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 797 this -1874598090 +254749889 1 this.numer -2 @@ -26688,7 +27495,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26698,7 +27505,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 799 this -1537598224 +1002191352 1 this.numer 3 @@ -26707,7 +27514,7 @@ this.denom 2 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -26730,7 +27537,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 800 this -637513493 +973576304 1 this.numer 200 @@ -26749,7 +27556,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 799 this -1537598224 +1002191352 1 this.numer 3 @@ -26758,7 +27565,7 @@ this.denom 2 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -26767,7 +27574,7 @@ arg.denom 0 1 return -637513493 +973576304 1 return.numer 200 @@ -26780,7 +27587,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 801 this -637513493 +973576304 1 this.numer 200 @@ -26793,7 +27600,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 802 this -637513493 +973576304 1 this.numer 200 @@ -26806,7 +27613,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 802 this -637513493 +973576304 1 this.numer 200 @@ -26822,7 +27629,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 801 this -637513493 +973576304 1 this.numer 200 @@ -26831,7 +27638,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26841,7 +27648,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 803 this -970728905 +1452012306 1 this.numer 100 @@ -26850,7 +27657,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -26873,7 +27680,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 804 this -893361968 +992802731 1 this.numer 200 @@ -26892,7 +27699,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 803 this -970728905 +1452012306 1 this.numer 100 @@ -26901,7 +27708,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -26910,7 +27717,7 @@ arg.denom 2 1 return -893361968 +992802731 1 return.numer 200 @@ -26923,7 +27730,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 805 this -893361968 +992802731 1 this.numer 200 @@ -26936,7 +27743,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 806 this -893361968 +992802731 1 this.numer 200 @@ -26949,7 +27756,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 806 this -893361968 +992802731 1 this.numer 200 @@ -26965,7 +27772,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 805 this -893361968 +992802731 1 this.numer 200 @@ -26974,7 +27781,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -26984,7 +27791,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 807 this -1537598224 +1002191352 1 this.numer 3 @@ -26993,7 +27800,7 @@ this.denom 2 1 arg -607440076 +211968962 1 arg.numer 2 @@ -27016,7 +27823,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 808 this -1676419999 +715521683 1 this.numer 4 @@ -27035,7 +27842,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 807 this -1537598224 +1002191352 1 this.numer 3 @@ -27044,7 +27851,7 @@ this.denom 2 1 arg -607440076 +211968962 1 arg.numer 2 @@ -27053,7 +27860,7 @@ arg.denom 0 1 return -1676419999 +715521683 1 return.numer 4 @@ -27066,7 +27873,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 809 this -1676419999 +715521683 1 this.numer 4 @@ -27079,7 +27886,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 810 this -1676419999 +715521683 1 this.numer 4 @@ -27092,7 +27899,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 810 this -1676419999 +715521683 1 this.numer 4 @@ -27108,7 +27915,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 809 this -1676419999 +715521683 1 this.numer 4 @@ -27117,7 +27924,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27127,7 +27934,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 811 this -607440076 +211968962 1 this.numer 2 @@ -27136,7 +27943,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -27159,7 +27966,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 812 this -605474553 +1545242146 1 this.numer 4 @@ -27178,7 +27985,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 811 this -607440076 +211968962 1 this.numer 2 @@ -27187,7 +27994,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -27196,7 +28003,7 @@ arg.denom 2 1 return -605474553 +1545242146 1 return.numer 4 @@ -27209,7 +28016,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 813 this -605474553 +1545242146 1 this.numer 4 @@ -27222,7 +28029,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 814 this -605474553 +1545242146 1 this.numer 4 @@ -27235,7 +28042,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 814 this -605474553 +1545242146 1 this.numer 4 @@ -27251,7 +28058,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 813 this -605474553 +1545242146 1 this.numer 4 @@ -27260,7 +28067,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27270,7 +28077,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 815 this -1537598224 +1002191352 1 this.numer 3 @@ -27279,7 +28086,7 @@ this.denom 2 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -27302,7 +28109,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 816 this -1433292785 +1524126153 1 this.numer -4 @@ -27321,7 +28128,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 815 this -1537598224 +1002191352 1 this.numer 3 @@ -27330,7 +28137,7 @@ this.denom 2 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -27339,7 +28146,7 @@ arg.denom 0 1 return -1433292785 +1524126153 1 return.numer -4 @@ -27352,7 +28159,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 817 this -1433292785 +1524126153 1 this.numer -4 @@ -27365,7 +28172,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 818 this -1433292785 +1524126153 1 this.numer -4 @@ -27378,7 +28185,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 818 this -1433292785 +1524126153 1 this.numer -4 @@ -27394,7 +28201,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 817 this -1433292785 +1524126153 1 this.numer -4 @@ -27403,7 +28210,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27413,7 +28220,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 819 this -108099494 +1486566962 1 this.numer -2 @@ -27422,7 +28229,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -27445,7 +28252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 820 this -1027769096 +102065302 1 this.numer -4 @@ -27464,7 +28271,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 819 this -108099494 +1486566962 1 this.numer -2 @@ -27473,7 +28280,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -27482,7 +28289,7 @@ arg.denom 2 1 return -1027769096 +102065302 1 return.numer -4 @@ -27495,7 +28302,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 821 this -1027769096 +102065302 1 this.numer -4 @@ -27508,7 +28315,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 822 this -1027769096 +102065302 1 this.numer -4 @@ -27521,7 +28328,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 822 this -1027769096 +102065302 1 this.numer -4 @@ -27537,7 +28344,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 821 this -1027769096 +102065302 1 this.numer -4 @@ -27546,7 +28353,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27556,7 +28363,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 823 this -1537598224 +1002191352 1 this.numer 3 @@ -27565,7 +28372,7 @@ this.denom 2 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -27588,7 +28395,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 824 this -1504223651 +63001505 1 this.numer 18 @@ -27607,7 +28414,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 823 this -1537598224 +1002191352 1 this.numer 3 @@ -27616,7 +28423,7 @@ this.denom 2 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -27625,7 +28432,7 @@ arg.denom 0 1 return -1504223651 +63001505 1 return.numer 18 @@ -27638,7 +28445,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 825 this -1504223651 +63001505 1 this.numer 18 @@ -27651,7 +28458,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 826 this -1504223651 +63001505 1 this.numer 18 @@ -27664,7 +28471,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 826 this -1504223651 +63001505 1 this.numer 18 @@ -27680,7 +28487,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 825 this -1504223651 +63001505 1 this.numer 18 @@ -27689,7 +28496,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27699,7 +28506,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 827 this -57030296 +1173643169 1 this.numer 9 @@ -27708,7 +28515,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -27731,7 +28538,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 828 this -1309409873 +191037037 1 this.numer 18 @@ -27750,7 +28557,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 827 this -57030296 +1173643169 1 this.numer 9 @@ -27759,7 +28566,7 @@ this.denom 0 1 arg -1537598224 +1002191352 1 arg.numer 3 @@ -27768,7 +28575,7 @@ arg.denom 2 1 return -1309409873 +191037037 1 return.numer 18 @@ -27781,7 +28588,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 829 this -1309409873 +191037037 1 this.numer 18 @@ -27794,7 +28601,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 830 this -1309409873 +191037037 1 this.numer 18 @@ -27807,7 +28614,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 830 this -1309409873 +191037037 1 this.numer 18 @@ -27823,7 +28630,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 829 this -1309409873 +191037037 1 this.numer 18 @@ -27832,7 +28639,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27842,7 +28649,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 831 this -1742626417 +1256440269 1 this.numer 1 @@ -27851,7 +28658,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -27874,7 +28681,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 832 this -1986804702 +330084561 1 this.numer 0 @@ -27893,7 +28700,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 831 this -1742626417 +1256440269 1 this.numer 1 @@ -27902,7 +28709,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -27911,7 +28718,7 @@ arg.denom 0 1 return -1986804702 +330084561 1 return.numer 0 @@ -27924,7 +28731,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 833 this -1986804702 +330084561 1 this.numer 0 @@ -27937,7 +28744,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 834 this -1986804702 +330084561 1 this.numer 0 @@ -27950,7 +28757,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 834 this -1986804702 +330084561 1 this.numer 0 @@ -27966,7 +28773,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 833 this -1986804702 +330084561 1 this.numer 0 @@ -27975,7 +28782,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -27985,7 +28792,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 835 this -1742626417 +1256440269 1 this.numer 1 @@ -27994,7 +28801,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28017,7 +28824,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 836 this -1003399311 +1043351526 1 this.numer 0 @@ -28036,7 +28843,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 835 this -1742626417 +1256440269 1 this.numer 1 @@ -28045,7 +28852,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28054,7 +28861,7 @@ arg.denom 0 1 return -1003399311 +1043351526 1 return.numer 0 @@ -28067,7 +28874,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 837 this -1003399311 +1043351526 1 this.numer 0 @@ -28080,7 +28887,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 838 this -1003399311 +1043351526 1 this.numer 0 @@ -28093,7 +28900,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 838 this -1003399311 +1043351526 1 this.numer 0 @@ -28109,7 +28916,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 837 this -1003399311 +1043351526 1 this.numer 0 @@ -28118,7 +28925,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28128,7 +28935,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 839 this -1742626417 +1256440269 1 this.numer 1 @@ -28137,7 +28944,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -28160,7 +28967,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 840 this -2090623733 +937773018 1 this.numer 0 @@ -28179,7 +28986,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 839 this -1742626417 +1256440269 1 this.numer 1 @@ -28188,7 +28995,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -28197,7 +29004,7 @@ arg.denom 0 1 return -2090623733 +937773018 1 return.numer 0 @@ -28210,7 +29017,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 841 this -2090623733 +937773018 1 this.numer 0 @@ -28223,7 +29030,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 842 this -2090623733 +937773018 1 this.numer 0 @@ -28236,7 +29043,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 842 this -2090623733 +937773018 1 this.numer 0 @@ -28252,7 +29059,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 841 this -2090623733 +937773018 1 this.numer 0 @@ -28261,7 +29068,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28271,7 +29078,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 843 this -940212733 +704024720 1 this.numer -1 @@ -28280,7 +29087,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28303,7 +29110,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 844 this -2133131964 +728258269 1 this.numer 0 @@ -28322,7 +29129,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 843 this -940212733 +704024720 1 this.numer -1 @@ -28331,7 +29138,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28340,7 +29147,7 @@ arg.denom 0 1 return -2133131964 +728258269 1 return.numer 0 @@ -28353,7 +29160,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 845 this -2133131964 +728258269 1 this.numer 0 @@ -28366,7 +29173,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 846 this -2133131964 +728258269 1 this.numer 0 @@ -28379,7 +29186,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 846 this -2133131964 +728258269 1 this.numer 0 @@ -28395,7 +29202,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 845 this -2133131964 +728258269 1 this.numer 0 @@ -28404,7 +29211,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28414,7 +29221,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 847 this -1742626417 +1256440269 1 this.numer 1 @@ -28423,7 +29230,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -28446,7 +29253,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 848 this -1456915930 +1572098393 1 this.numer 0 @@ -28465,7 +29272,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 847 this -1742626417 +1256440269 1 this.numer 1 @@ -28474,7 +29281,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -28483,7 +29290,7 @@ arg.denom 0 1 return -1456915930 +1572098393 1 return.numer 0 @@ -28496,7 +29303,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 849 this -1456915930 +1572098393 1 this.numer 0 @@ -28509,7 +29316,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 850 this -1456915930 +1572098393 1 this.numer 0 @@ -28522,7 +29329,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 850 this -1456915930 +1572098393 1 this.numer 0 @@ -28538,7 +29345,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 849 this -1456915930 +1572098393 1 this.numer 0 @@ -28547,7 +29354,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28557,7 +29364,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 851 this -970728905 +1452012306 1 this.numer 100 @@ -28566,7 +29373,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28589,7 +29396,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 852 this -777492416 +1627857534 1 this.numer 0 @@ -28608,7 +29415,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 851 this -970728905 +1452012306 1 this.numer 100 @@ -28617,7 +29424,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28626,7 +29433,7 @@ arg.denom 0 1 return -777492416 +1627857534 1 return.numer 0 @@ -28639,7 +29446,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 853 this -777492416 +1627857534 1 this.numer 0 @@ -28652,7 +29459,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 854 this -777492416 +1627857534 1 this.numer 0 @@ -28665,7 +29472,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 854 this -777492416 +1627857534 1 this.numer 0 @@ -28681,7 +29488,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 853 this -777492416 +1627857534 1 this.numer 0 @@ -28690,7 +29497,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28700,7 +29507,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 855 this -1742626417 +1256440269 1 this.numer 1 @@ -28709,7 +29516,7 @@ this.denom 0 1 arg -607440076 +211968962 1 arg.numer 2 @@ -28732,7 +29539,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 856 this -2024527364 +2084663827 1 this.numer 0 @@ -28751,7 +29558,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 855 this -1742626417 +1256440269 1 this.numer 1 @@ -28760,7 +29567,7 @@ this.denom 0 1 arg -607440076 +211968962 1 arg.numer 2 @@ -28769,7 +29576,7 @@ arg.denom 0 1 return -2024527364 +2084663827 1 return.numer 0 @@ -28782,7 +29589,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 857 this -2024527364 +2084663827 1 this.numer 0 @@ -28795,7 +29602,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 858 this -2024527364 +2084663827 1 this.numer 0 @@ -28808,7 +29615,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 858 this -2024527364 +2084663827 1 this.numer 0 @@ -28824,7 +29631,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 857 this -2024527364 +2084663827 1 this.numer 0 @@ -28833,7 +29640,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28843,7 +29650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 859 this -607440076 +211968962 1 this.numer 2 @@ -28852,7 +29659,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28875,7 +29682,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 860 this -1500503680 +360062456 1 this.numer 0 @@ -28894,7 +29701,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 859 this -607440076 +211968962 1 this.numer 2 @@ -28903,7 +29710,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -28912,7 +29719,7 @@ arg.denom 0 1 return -1500503680 +360062456 1 return.numer 0 @@ -28925,7 +29732,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 861 this -1500503680 +360062456 1 this.numer 0 @@ -28938,7 +29745,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 862 this -1500503680 +360062456 1 this.numer 0 @@ -28951,7 +29758,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 862 this -1500503680 +360062456 1 this.numer 0 @@ -28967,7 +29774,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 861 this -1500503680 +360062456 1 this.numer 0 @@ -28976,7 +29783,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -28986,7 +29793,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 863 this -1742626417 +1256440269 1 this.numer 1 @@ -28995,7 +29802,7 @@ this.denom 0 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -29018,7 +29825,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 864 this -1064883039 +1790421142 1 this.numer 0 @@ -29037,7 +29844,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 863 this -1742626417 +1256440269 1 this.numer 1 @@ -29046,7 +29853,7 @@ this.denom 0 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -29055,7 +29862,7 @@ arg.denom 0 1 return -1064883039 +1790421142 1 return.numer 0 @@ -29068,7 +29875,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 865 this -1064883039 +1790421142 1 this.numer 0 @@ -29081,7 +29888,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 866 this -1064883039 +1790421142 1 this.numer 0 @@ -29094,7 +29901,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 866 this -1064883039 +1790421142 1 this.numer 0 @@ -29110,7 +29917,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 865 this -1064883039 +1790421142 1 this.numer 0 @@ -29119,7 +29926,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29129,7 +29936,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 867 this -108099494 +1486566962 1 this.numer -2 @@ -29138,7 +29945,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -29161,7 +29968,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 868 this -360522375 +846947180 1 this.numer 0 @@ -29180,7 +29987,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 867 this -108099494 +1486566962 1 this.numer -2 @@ -29189,7 +29996,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -29198,7 +30005,7 @@ arg.denom 0 1 return -360522375 +846947180 1 return.numer 0 @@ -29211,7 +30018,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 869 this -360522375 +846947180 1 this.numer 0 @@ -29224,7 +30031,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 870 this -360522375 +846947180 1 this.numer 0 @@ -29237,7 +30044,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 870 this -360522375 +846947180 1 this.numer 0 @@ -29253,7 +30060,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 869 this -360522375 +846947180 1 this.numer 0 @@ -29262,7 +30069,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29272,7 +30079,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 871 this -1742626417 +1256440269 1 this.numer 1 @@ -29281,7 +30088,7 @@ this.denom 0 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -29304,7 +30111,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 872 this -1248188438 +1172131546 1 this.numer 0 @@ -29323,7 +30130,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 871 this -1742626417 +1256440269 1 this.numer 1 @@ -29332,7 +30139,7 @@ this.denom 0 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -29341,7 +30148,7 @@ arg.denom 0 1 return -1248188438 +1172131546 1 return.numer 0 @@ -29354,7 +30161,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 873 this -1248188438 +1172131546 1 this.numer 0 @@ -29367,7 +30174,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 874 this -1248188438 +1172131546 1 this.numer 0 @@ -29380,7 +30187,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 874 this -1248188438 +1172131546 1 this.numer 0 @@ -29396,7 +30203,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 873 this -1248188438 +1172131546 1 this.numer 0 @@ -29405,7 +30212,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29415,7 +30222,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 875 this -57030296 +1173643169 1 this.numer 9 @@ -29424,7 +30231,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -29447,7 +30254,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 876 this -1682813570 +1616974404 1 this.numer 0 @@ -29466,7 +30273,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 875 this -57030296 +1173643169 1 this.numer 9 @@ -29475,7 +30282,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -29484,7 +30291,7 @@ arg.denom 0 1 return -1682813570 +1616974404 1 return.numer 0 @@ -29497,7 +30304,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 877 this -1682813570 +1616974404 1 this.numer 0 @@ -29510,7 +30317,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 878 this -1682813570 +1616974404 1 this.numer 0 @@ -29523,7 +30330,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 878 this -1682813570 +1616974404 1 this.numer 0 @@ -29539,7 +30346,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 877 this -1682813570 +1616974404 1 this.numer 0 @@ -29548,7 +30355,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29558,7 +30365,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 879 this -940212733 +704024720 1 this.numer -1 @@ -29567,7 +30374,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -29590,7 +30397,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 880 this -688040000 +927327686 1 this.numer 0 @@ -29609,7 +30416,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 879 this -940212733 +704024720 1 this.numer -1 @@ -29618,7 +30425,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -29627,7 +30434,7 @@ arg.denom 0 1 return -688040000 +927327686 1 return.numer 0 @@ -29640,7 +30447,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 881 this -688040000 +927327686 1 this.numer 0 @@ -29653,7 +30460,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 882 this -688040000 +927327686 1 this.numer 0 @@ -29666,7 +30473,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 882 this -688040000 +927327686 1 this.numer 0 @@ -29682,7 +30489,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 881 this -688040000 +927327686 1 this.numer 0 @@ -29691,7 +30498,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29701,7 +30508,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 883 this -1742626417 +1256440269 1 this.numer 1 @@ -29710,7 +30517,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -29733,7 +30540,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 884 this -1836324552 +1582071873 1 this.numer 0 @@ -29752,7 +30559,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 883 this -1742626417 +1256440269 1 this.numer 1 @@ -29761,7 +30568,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -29770,7 +30577,7 @@ arg.denom 0 1 return -1836324552 +1582071873 1 return.numer 0 @@ -29783,7 +30590,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 885 this -1836324552 +1582071873 1 this.numer 0 @@ -29796,7 +30603,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 886 this -1836324552 +1582071873 1 this.numer 0 @@ -29809,7 +30616,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 886 this -1836324552 +1582071873 1 this.numer 0 @@ -29825,7 +30632,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 885 this -1836324552 +1582071873 1 this.numer 0 @@ -29834,7 +30641,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29844,7 +30651,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 887 this -940212733 +704024720 1 this.numer -1 @@ -29853,7 +30660,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -29876,7 +30683,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 888 this -1619254427 +1908981452 1 this.numer 0 @@ -29895,7 +30702,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 887 this -940212733 +704024720 1 this.numer -1 @@ -29904,7 +30711,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -29913,7 +30720,7 @@ arg.denom 0 1 return -1619254427 +1908981452 1 return.numer 0 @@ -29926,7 +30733,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 889 this -1619254427 +1908981452 1 this.numer 0 @@ -29939,7 +30746,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 890 this -1619254427 +1908981452 1 this.numer 0 @@ -29952,7 +30759,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 890 this -1619254427 +1908981452 1 this.numer 0 @@ -29968,7 +30775,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 889 this -1619254427 +1908981452 1 this.numer 0 @@ -29977,7 +30784,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -29987,7 +30794,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 891 this -940212733 +704024720 1 this.numer -1 @@ -29996,7 +30803,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30019,7 +30826,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 892 this -1896379805 +433287555 1 this.numer 0 @@ -30038,7 +30845,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 891 this -940212733 +704024720 1 this.numer -1 @@ -30047,7 +30854,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30056,7 +30863,7 @@ arg.denom 0 1 return -1896379805 +433287555 1 return.numer 0 @@ -30069,7 +30876,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 893 this -1896379805 +433287555 1 this.numer 0 @@ -30082,7 +30889,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 894 this -1896379805 +433287555 1 this.numer 0 @@ -30095,7 +30902,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 894 this -1896379805 +433287555 1 this.numer 0 @@ -30111,7 +30918,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 893 this -1896379805 +433287555 1 this.numer 0 @@ -30120,7 +30927,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30130,7 +30937,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 895 this -940212733 +704024720 1 this.numer -1 @@ -30139,7 +30946,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -30162,7 +30969,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 896 this -1650577508 +27319466 1 this.numer 0 @@ -30181,7 +30988,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 895 this -940212733 +704024720 1 this.numer -1 @@ -30190,7 +30997,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -30199,7 +31006,7 @@ arg.denom 0 1 return -1650577508 +27319466 1 return.numer 0 @@ -30212,7 +31019,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 897 this -1650577508 +27319466 1 this.numer 0 @@ -30225,7 +31032,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 898 this -1650577508 +27319466 1 this.numer 0 @@ -30238,7 +31045,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 898 this -1650577508 +27319466 1 this.numer 0 @@ -30254,7 +31061,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 897 this -1650577508 +27319466 1 this.numer 0 @@ -30263,7 +31070,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30273,7 +31080,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 899 this -970728905 +1452012306 1 this.numer 100 @@ -30282,7 +31089,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30305,7 +31112,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 900 this -62425010 +1003752023 1 this.numer 0 @@ -30324,7 +31131,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 899 this -970728905 +1452012306 1 this.numer 100 @@ -30333,7 +31140,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30342,7 +31149,7 @@ arg.denom 0 1 return -62425010 +1003752023 1 return.numer 0 @@ -30355,7 +31162,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 901 this -62425010 +1003752023 1 this.numer 0 @@ -30368,7 +31175,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 902 this -62425010 +1003752023 1 this.numer 0 @@ -30381,7 +31188,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 902 this -62425010 +1003752023 1 this.numer 0 @@ -30397,7 +31204,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 901 this -62425010 +1003752023 1 this.numer 0 @@ -30406,7 +31213,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30416,7 +31223,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 903 this -940212733 +704024720 1 this.numer -1 @@ -30425,7 +31232,7 @@ this.denom 0 1 arg -607440076 +211968962 1 arg.numer 2 @@ -30448,7 +31255,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 904 this -1205123334 +266272063 1 this.numer 0 @@ -30467,7 +31274,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 903 this -940212733 +704024720 1 this.numer -1 @@ -30476,7 +31283,7 @@ this.denom 0 1 arg -607440076 +211968962 1 arg.numer 2 @@ -30485,7 +31292,7 @@ arg.denom 0 1 return -1205123334 +266272063 1 return.numer 0 @@ -30498,7 +31305,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 905 this -1205123334 +266272063 1 this.numer 0 @@ -30511,7 +31318,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 906 this -1205123334 +266272063 1 this.numer 0 @@ -30524,7 +31331,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 906 this -1205123334 +266272063 1 this.numer 0 @@ -30540,7 +31347,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 905 this -1205123334 +266272063 1 this.numer 0 @@ -30549,7 +31356,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30559,7 +31366,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 907 this -607440076 +211968962 1 this.numer 2 @@ -30568,7 +31375,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30591,7 +31398,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 908 this -1589599681 +226744878 1 this.numer 0 @@ -30610,7 +31417,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 907 this -607440076 +211968962 1 this.numer 2 @@ -30619,7 +31426,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30628,7 +31435,7 @@ arg.denom 0 1 return -1589599681 +226744878 1 return.numer 0 @@ -30641,7 +31448,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 909 this -1589599681 +226744878 1 this.numer 0 @@ -30654,7 +31461,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 910 this -1589599681 +226744878 1 this.numer 0 @@ -30667,7 +31474,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 910 this -1589599681 +226744878 1 this.numer 0 @@ -30683,7 +31490,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 909 this -1589599681 +226744878 1 this.numer 0 @@ -30692,7 +31499,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30702,7 +31509,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 911 this -940212733 +704024720 1 this.numer -1 @@ -30711,7 +31518,7 @@ this.denom 0 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -30734,7 +31541,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 912 this -1705269887 +172032696 1 this.numer 0 @@ -30753,7 +31560,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 911 this -940212733 +704024720 1 this.numer -1 @@ -30762,7 +31569,7 @@ this.denom 0 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -30771,7 +31578,7 @@ arg.denom 0 1 return -1705269887 +172032696 1 return.numer 0 @@ -30784,7 +31591,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 913 this -1705269887 +172032696 1 this.numer 0 @@ -30797,7 +31604,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 914 this -1705269887 +172032696 1 this.numer 0 @@ -30810,7 +31617,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 914 this -1705269887 +172032696 1 this.numer 0 @@ -30826,7 +31633,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 913 this -1705269887 +172032696 1 this.numer 0 @@ -30835,7 +31642,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30845,7 +31652,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 915 this -108099494 +1486566962 1 this.numer -2 @@ -30854,7 +31661,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30877,7 +31684,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 916 this -154237947 +299644693 1 this.numer 0 @@ -30896,7 +31703,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 915 this -108099494 +1486566962 1 this.numer -2 @@ -30905,7 +31712,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -30914,7 +31721,7 @@ arg.denom 0 1 return -154237947 +299644693 1 return.numer 0 @@ -30927,7 +31734,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 917 this -154237947 +299644693 1 this.numer 0 @@ -30940,7 +31747,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 918 this -154237947 +299644693 1 this.numer 0 @@ -30953,7 +31760,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 918 this -154237947 +299644693 1 this.numer 0 @@ -30969,7 +31776,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 917 this -154237947 +299644693 1 this.numer 0 @@ -30978,7 +31785,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -30988,7 +31795,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 919 this -940212733 +704024720 1 this.numer -1 @@ -30997,7 +31804,7 @@ this.denom 0 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -31020,7 +31827,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 920 this -264413300 +1771243284 1 this.numer 0 @@ -31039,7 +31846,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 919 this -940212733 +704024720 1 this.numer -1 @@ -31048,7 +31855,7 @@ this.denom 0 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -31057,7 +31864,7 @@ arg.denom 0 1 return -264413300 +1771243284 1 return.numer 0 @@ -31070,7 +31877,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 921 this -264413300 +1771243284 1 this.numer 0 @@ -31083,7 +31890,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 922 this -264413300 +1771243284 1 this.numer 0 @@ -31096,7 +31903,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 922 this -264413300 +1771243284 1 this.numer 0 @@ -31112,7 +31919,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 921 this -264413300 +1771243284 1 this.numer 0 @@ -31121,7 +31928,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31131,7 +31938,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 923 this -57030296 +1173643169 1 this.numer 9 @@ -31140,7 +31947,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -31163,7 +31970,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 924 this -850667457 +2052256418 1 this.numer 0 @@ -31182,7 +31989,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 923 this -57030296 +1173643169 1 this.numer 9 @@ -31191,7 +31998,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -31200,7 +32007,7 @@ arg.denom 0 1 return -850667457 +2052256418 1 return.numer 0 @@ -31213,7 +32020,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 925 this -850667457 +2052256418 1 this.numer 0 @@ -31226,7 +32033,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 926 this -850667457 +2052256418 1 this.numer 0 @@ -31239,7 +32046,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 926 this -850667457 +2052256418 1 this.numer 0 @@ -31255,7 +32062,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 925 this -850667457 +2052256418 1 this.numer 0 @@ -31264,7 +32071,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31274,7 +32081,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 927 this -970728905 +1452012306 1 this.numer 100 @@ -31283,7 +32090,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -31306,7 +32113,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 928 this -1369311720 +2013559698 1 this.numer 0 @@ -31325,7 +32132,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 927 this -970728905 +1452012306 1 this.numer 100 @@ -31334,7 +32141,7 @@ this.denom 0 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -31343,7 +32150,7 @@ arg.denom 0 1 return -1369311720 +2013559698 1 return.numer 0 @@ -31356,7 +32163,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 929 this -1369311720 +2013559698 1 this.numer 0 @@ -31369,7 +32176,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 930 this -1369311720 +2013559698 1 this.numer 0 @@ -31382,7 +32189,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 930 this -1369311720 +2013559698 1 this.numer 0 @@ -31398,7 +32205,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 929 this -1369311720 +2013559698 1 this.numer 0 @@ -31407,7 +32214,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31417,7 +32224,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 931 this -1742626417 +1256440269 1 this.numer 1 @@ -31426,7 +32233,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -31449,7 +32256,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 932 this -1587316788 +143695640 1 this.numer 0 @@ -31468,7 +32275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 931 this -1742626417 +1256440269 1 this.numer 1 @@ -31477,7 +32284,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -31486,7 +32293,7 @@ arg.denom 0 1 return -1587316788 +143695640 1 return.numer 0 @@ -31499,7 +32306,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 933 this -1587316788 +143695640 1 this.numer 0 @@ -31512,7 +32319,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 934 this -1587316788 +143695640 1 this.numer 0 @@ -31525,7 +32332,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 934 this -1587316788 +143695640 1 this.numer 0 @@ -31541,7 +32348,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 933 this -1587316788 +143695640 1 this.numer 0 @@ -31550,7 +32357,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31560,7 +32367,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 935 this -970728905 +1452012306 1 this.numer 100 @@ -31569,7 +32376,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -31592,7 +32399,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 936 this -1991392882 +2043318969 1 this.numer 0 @@ -31611,7 +32418,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 935 this -970728905 +1452012306 1 this.numer 100 @@ -31620,7 +32427,7 @@ this.denom 0 1 arg -940212733 +704024720 1 arg.numer -1 @@ -31629,7 +32436,7 @@ arg.denom 0 1 return -1991392882 +2043318969 1 return.numer 0 @@ -31642,7 +32449,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 937 this -1991392882 +2043318969 1 this.numer 0 @@ -31655,7 +32462,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 938 this -1991392882 +2043318969 1 this.numer 0 @@ -31668,7 +32475,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 938 this -1991392882 +2043318969 1 this.numer 0 @@ -31684,7 +32491,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 937 this -1991392882 +2043318969 1 this.numer 0 @@ -31693,7 +32500,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31703,7 +32510,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 939 this -940212733 +704024720 1 this.numer -1 @@ -31712,7 +32519,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -31735,7 +32542,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 940 this -807529279 +341878976 1 this.numer 0 @@ -31754,7 +32561,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 939 this -940212733 +704024720 1 this.numer -1 @@ -31763,7 +32570,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -31772,7 +32579,7 @@ arg.denom 0 1 return -807529279 +341878976 1 return.numer 0 @@ -31785,7 +32592,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 941 this -807529279 +341878976 1 this.numer 0 @@ -31798,7 +32605,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 942 this -807529279 +341878976 1 this.numer 0 @@ -31811,7 +32618,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 942 this -807529279 +341878976 1 this.numer 0 @@ -31827,7 +32634,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 941 this -807529279 +341878976 1 this.numer 0 @@ -31836,7 +32643,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31846,7 +32653,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 943 this -970728905 +1452012306 1 this.numer 100 @@ -31855,7 +32662,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -31878,7 +32685,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 944 this -47943113 +1331923253 1 this.numer 0 @@ -31897,7 +32704,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 943 this -970728905 +1452012306 1 this.numer 100 @@ -31906,7 +32713,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -31915,7 +32722,7 @@ arg.denom 0 1 return -47943113 +1331923253 1 return.numer 0 @@ -31928,7 +32735,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 945 this -47943113 +1331923253 1 this.numer 0 @@ -31941,7 +32748,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 946 this -47943113 +1331923253 1 this.numer 0 @@ -31954,7 +32761,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 946 this -47943113 +1331923253 1 this.numer 0 @@ -31970,7 +32777,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 945 this -47943113 +1331923253 1 this.numer 0 @@ -31979,7 +32786,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -31989,7 +32796,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 947 this -970728905 +1452012306 1 this.numer 100 @@ -31998,7 +32805,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32021,7 +32828,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 948 this -473532566 +1132967838 1 this.numer 0 @@ -32040,7 +32847,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 947 this -970728905 +1452012306 1 this.numer 100 @@ -32049,7 +32856,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32058,7 +32865,7 @@ arg.denom 0 1 return -473532566 +1132967838 1 return.numer 0 @@ -32071,7 +32878,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 949 this -473532566 +1132967838 1 this.numer 0 @@ -32084,7 +32891,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 950 this -473532566 +1132967838 1 this.numer 0 @@ -32097,7 +32904,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 950 this -473532566 +1132967838 1 this.numer 0 @@ -32113,7 +32920,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 949 this -473532566 +1132967838 1 this.numer 0 @@ -32122,7 +32929,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32132,7 +32939,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 951 this -970728905 +1452012306 1 this.numer 100 @@ -32141,7 +32948,7 @@ this.denom 0 1 arg -607440076 +211968962 1 arg.numer 2 @@ -32164,7 +32971,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 952 this -87440980 +1853205005 1 this.numer 0 @@ -32183,7 +32990,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 951 this -970728905 +1452012306 1 this.numer 100 @@ -32192,7 +32999,7 @@ this.denom 0 1 arg -607440076 +211968962 1 arg.numer 2 @@ -32201,7 +33008,7 @@ arg.denom 0 1 return -87440980 +1853205005 1 return.numer 0 @@ -32214,7 +33021,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 953 this -87440980 +1853205005 1 this.numer 0 @@ -32227,7 +33034,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 954 this -87440980 +1853205005 1 this.numer 0 @@ -32240,7 +33047,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 954 this -87440980 +1853205005 1 this.numer 0 @@ -32256,7 +33063,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 953 this -87440980 +1853205005 1 this.numer 0 @@ -32265,7 +33072,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32275,7 +33082,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 955 this -607440076 +211968962 1 this.numer 2 @@ -32284,7 +33091,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32307,7 +33114,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 956 this -741736312 +2143431083 1 this.numer 0 @@ -32326,7 +33133,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 955 this -607440076 +211968962 1 this.numer 2 @@ -32335,7 +33142,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32344,7 +33151,7 @@ arg.denom 0 1 return -741736312 +2143431083 1 return.numer 0 @@ -32357,7 +33164,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 957 this -741736312 +2143431083 1 this.numer 0 @@ -32370,7 +33177,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 958 this -741736312 +2143431083 1 this.numer 0 @@ -32383,7 +33190,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 958 this -741736312 +2143431083 1 this.numer 0 @@ -32399,7 +33206,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 957 this -741736312 +2143431083 1 this.numer 0 @@ -32408,7 +33215,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32418,7 +33225,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 959 this -970728905 +1452012306 1 this.numer 100 @@ -32427,7 +33234,7 @@ this.denom 0 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -32450,7 +33257,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 960 this -219624949 +750468423 1 this.numer 0 @@ -32469,7 +33276,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 959 this -970728905 +1452012306 1 this.numer 100 @@ -32478,7 +33285,7 @@ this.denom 0 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -32487,7 +33294,7 @@ arg.denom 0 1 return -219624949 +750468423 1 return.numer 0 @@ -32500,7 +33307,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 961 this -219624949 +750468423 1 this.numer 0 @@ -32513,7 +33320,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 962 this -219624949 +750468423 1 this.numer 0 @@ -32526,7 +33333,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 962 this -219624949 +750468423 1 this.numer 0 @@ -32542,7 +33349,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 961 this -219624949 +750468423 1 this.numer 0 @@ -32551,7 +33358,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32561,7 +33368,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 963 this -108099494 +1486566962 1 this.numer -2 @@ -32570,7 +33377,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32593,7 +33400,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 964 this -1859612297 +1384010761 1 this.numer 0 @@ -32612,7 +33419,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 963 this -108099494 +1486566962 1 this.numer -2 @@ -32621,7 +33428,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32630,7 +33437,7 @@ arg.denom 0 1 return -1859612297 +1384010761 1 return.numer 0 @@ -32643,7 +33450,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 965 this -1859612297 +1384010761 1 this.numer 0 @@ -32656,7 +33463,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 966 this -1859612297 +1384010761 1 this.numer 0 @@ -32669,7 +33476,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 966 this -1859612297 +1384010761 1 this.numer 0 @@ -32685,7 +33492,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 965 this -1859612297 +1384010761 1 this.numer 0 @@ -32694,7 +33501,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32704,7 +33511,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 967 this -970728905 +1452012306 1 this.numer 100 @@ -32713,7 +33520,7 @@ this.denom 0 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -32736,7 +33543,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 968 this -26877241 +295221641 1 this.numer 0 @@ -32755,7 +33562,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 967 this -970728905 +1452012306 1 this.numer 100 @@ -32764,7 +33571,7 @@ this.denom 0 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -32773,7 +33580,7 @@ arg.denom 0 1 return -26877241 +295221641 1 return.numer 0 @@ -32786,7 +33593,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 969 this -26877241 +295221641 1 this.numer 0 @@ -32799,7 +33606,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 970 this -26877241 +295221641 1 this.numer 0 @@ -32812,7 +33619,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 970 this -26877241 +295221641 1 this.numer 0 @@ -32828,7 +33635,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 969 this -26877241 +295221641 1 this.numer 0 @@ -32837,7 +33644,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32847,7 +33654,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 971 this -57030296 +1173643169 1 this.numer 9 @@ -32856,7 +33663,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32879,7 +33686,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 972 this -754223617 +2147046752 1 this.numer 0 @@ -32898,7 +33705,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 971 this -57030296 +1173643169 1 this.numer 9 @@ -32907,7 +33714,7 @@ this.denom 0 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -32916,7 +33723,7 @@ arg.denom 0 1 return -754223617 +2147046752 1 return.numer 0 @@ -32929,7 +33736,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 973 this -754223617 +2147046752 1 this.numer 0 @@ -32942,7 +33749,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 974 this -754223617 +2147046752 1 this.numer 0 @@ -32955,7 +33762,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 974 this -754223617 +2147046752 1 this.numer 0 @@ -32971,7 +33778,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 973 this -754223617 +2147046752 1 this.numer 0 @@ -32980,7 +33787,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -32990,7 +33797,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 975 this -680509198 +1564984895 1 this.numer 8 @@ -32999,7 +33806,7 @@ this.denom 7 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -33022,7 +33829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 976 this -1787846325 +182259421 1 this.numer 7 @@ -33041,7 +33848,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 975 this -680509198 +1564984895 1 this.numer 8 @@ -33050,7 +33857,7 @@ this.denom 7 1 arg -1742626417 +1256440269 1 arg.numer 1 @@ -33059,7 +33866,7 @@ arg.denom 0 1 return -1787846325 +182259421 1 return.numer 7 @@ -33072,7 +33879,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 977 this -1787846325 +182259421 1 this.numer 7 @@ -33085,7 +33892,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 978 this -1787846325 +182259421 1 this.numer 7 @@ -33098,7 +33905,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 978 this -1787846325 +182259421 1 this.numer 7 @@ -33114,7 +33921,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 977 this -1787846325 +182259421 1 this.numer 7 @@ -33123,7 +33930,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33133,7 +33940,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 979 this -1742626417 +1256440269 1 this.numer 1 @@ -33142,7 +33949,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -33165,7 +33972,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 980 this -741995451 +715378067 1 this.numer 7 @@ -33184,7 +33991,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 979 this -1742626417 +1256440269 1 this.numer 1 @@ -33193,7 +34000,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -33202,7 +34009,7 @@ arg.denom 7 1 return -741995451 +715378067 1 return.numer 7 @@ -33215,7 +34022,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 981 this -741995451 +715378067 1 this.numer 7 @@ -33228,7 +34035,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 982 this -741995451 +715378067 1 this.numer 7 @@ -33241,7 +34048,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 982 this -741995451 +715378067 1 this.numer 7 @@ -33257,7 +34064,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 981 this -741995451 +715378067 1 this.numer 7 @@ -33266,7 +34073,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33276,7 +34083,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 983 this -680509198 +1564984895 1 this.numer 8 @@ -33285,7 +34092,7 @@ this.denom 7 1 arg -940212733 +704024720 1 arg.numer -1 @@ -33308,7 +34115,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 984 this -280006828 +2124643775 1 this.numer -7 @@ -33327,7 +34134,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 983 this -680509198 +1564984895 1 this.numer 8 @@ -33336,7 +34143,7 @@ this.denom 7 1 arg -940212733 +704024720 1 arg.numer -1 @@ -33345,7 +34152,7 @@ arg.denom 0 1 return -280006828 +2124643775 1 return.numer -7 @@ -33358,7 +34165,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 985 this -280006828 +2124643775 1 this.numer -7 @@ -33371,7 +34178,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 986 this -280006828 +2124643775 1 this.numer -7 @@ -33384,7 +34191,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 986 this -280006828 +2124643775 1 this.numer -7 @@ -33400,7 +34207,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 985 this -280006828 +2124643775 1 this.numer -7 @@ -33409,7 +34216,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33419,7 +34226,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 987 this -940212733 +704024720 1 this.numer -1 @@ -33428,7 +34235,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -33451,7 +34258,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 988 this -938087619 +1262773598 1 this.numer -7 @@ -33470,7 +34277,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 987 this -940212733 +704024720 1 this.numer -1 @@ -33479,7 +34286,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -33488,7 +34295,7 @@ arg.denom 7 1 return -938087619 +1262773598 1 return.numer -7 @@ -33501,7 +34308,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 989 this -938087619 +1262773598 1 this.numer -7 @@ -33514,7 +34321,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 990 this -938087619 +1262773598 1 this.numer -7 @@ -33527,7 +34334,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 990 this -938087619 +1262773598 1 this.numer -7 @@ -33543,7 +34350,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 989 this -938087619 +1262773598 1 this.numer -7 @@ -33552,7 +34359,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33562,7 +34369,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 991 this -680509198 +1564984895 1 this.numer 8 @@ -33571,7 +34378,7 @@ this.denom 7 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -33594,7 +34401,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 992 this -1761159906 +688726285 1 this.numer 700 @@ -33613,7 +34420,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 991 this -680509198 +1564984895 1 this.numer 8 @@ -33622,7 +34429,7 @@ this.denom 7 1 arg -970728905 +1452012306 1 arg.numer 100 @@ -33631,7 +34438,7 @@ arg.denom 0 1 return -1761159906 +688726285 1 return.numer 700 @@ -33644,7 +34451,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 993 this -1761159906 +688726285 1 this.numer 700 @@ -33657,7 +34464,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 994 this -1761159906 +688726285 1 this.numer 700 @@ -33670,7 +34477,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 994 this -1761159906 +688726285 1 this.numer 700 @@ -33686,7 +34493,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 993 this -1761159906 +688726285 1 this.numer 700 @@ -33695,7 +34502,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33705,7 +34512,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 995 this -970728905 +1452012306 1 this.numer 100 @@ -33714,7 +34521,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -33737,7 +34544,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 996 this -1047433541 +494317290 1 this.numer 700 @@ -33756,7 +34563,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 995 this -970728905 +1452012306 1 this.numer 100 @@ -33765,7 +34572,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -33774,7 +34581,7 @@ arg.denom 7 1 return -1047433541 +494317290 1 return.numer 700 @@ -33787,7 +34594,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 997 this -1047433541 +494317290 1 this.numer 700 @@ -33800,7 +34607,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 998 this -1047433541 +494317290 1 this.numer 700 @@ -33813,7 +34620,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 998 this -1047433541 +494317290 1 this.numer 700 @@ -33829,7 +34636,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 997 this -1047433541 +494317290 1 this.numer 700 @@ -33838,7 +34645,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33848,7 +34655,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 999 this -680509198 +1564984895 1 this.numer 8 @@ -33857,7 +34664,7 @@ this.denom 7 1 arg -607440076 +211968962 1 arg.numer 2 @@ -33880,7 +34687,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1000 this -1292069128 +2027775614 1 this.numer 14 @@ -33899,7 +34706,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 999 this -680509198 +1564984895 1 this.numer 8 @@ -33908,7 +34715,7 @@ this.denom 7 1 arg -607440076 +211968962 1 arg.numer 2 @@ -33917,7 +34724,7 @@ arg.denom 0 1 return -1292069128 +2027775614 1 return.numer 14 @@ -33930,7 +34737,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1001 this -1292069128 +2027775614 1 this.numer 14 @@ -33943,7 +34750,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1002 this -1292069128 +2027775614 1 this.numer 14 @@ -33956,7 +34763,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1002 this -1292069128 +2027775614 1 this.numer 14 @@ -33972,7 +34779,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1001 this -1292069128 +2027775614 1 this.numer 14 @@ -33981,7 +34788,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -33991,7 +34798,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1003 this -607440076 +211968962 1 this.numer 2 @@ -34000,7 +34807,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -34023,7 +34830,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1004 this -451195832 +282821294 1 this.numer 14 @@ -34042,7 +34849,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1003 this -607440076 +211968962 1 this.numer 2 @@ -34051,7 +34858,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -34060,7 +34867,7 @@ arg.denom 7 1 return -451195832 +282821294 1 return.numer 14 @@ -34073,7 +34880,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1005 this -451195832 +282821294 1 this.numer 14 @@ -34086,7 +34893,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1006 this -451195832 +282821294 1 this.numer 14 @@ -34099,7 +34906,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1006 this -451195832 +282821294 1 this.numer 14 @@ -34115,7 +34922,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1005 this -451195832 +282821294 1 this.numer 14 @@ -34124,7 +34931,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -34134,7 +34941,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1007 this -680509198 +1564984895 1 this.numer 8 @@ -34143,7 +34950,7 @@ this.denom 7 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -34166,7 +34973,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1008 this -483590867 +1344199921 1 this.numer -14 @@ -34185,7 +34992,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1007 this -680509198 +1564984895 1 this.numer 8 @@ -34194,7 +35001,7 @@ this.denom 7 1 arg -108099494 +1486566962 1 arg.numer -2 @@ -34203,7 +35010,7 @@ arg.denom 0 1 return -483590867 +1344199921 1 return.numer -14 @@ -34216,7 +35023,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1009 this -483590867 +1344199921 1 this.numer -14 @@ -34229,7 +35036,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1010 this -483590867 +1344199921 1 this.numer -14 @@ -34242,7 +35049,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1010 this -483590867 +1344199921 1 this.numer -14 @@ -34258,7 +35065,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1009 this -483590867 +1344199921 1 this.numer -14 @@ -34267,7 +35074,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -34277,7 +35084,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1011 this -108099494 +1486566962 1 this.numer -2 @@ -34286,7 +35093,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -34309,7 +35116,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1012 this -1633581421 +2025269734 1 this.numer -14 @@ -34328,7 +35135,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1011 this -108099494 +1486566962 1 this.numer -2 @@ -34337,7 +35144,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -34346,7 +35153,7 @@ arg.denom 7 1 return -1633581421 +2025269734 1 return.numer -14 @@ -34359,7 +35166,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1013 this -1633581421 +2025269734 1 this.numer -14 @@ -34372,7 +35179,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1014 this -1633581421 +2025269734 1 this.numer -14 @@ -34385,7 +35192,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1014 this -1633581421 +2025269734 1 this.numer -14 @@ -34401,7 +35208,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1013 this -1633581421 +2025269734 1 this.numer -14 @@ -34410,7 +35217,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -34420,7 +35227,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1015 this -680509198 +1564984895 1 this.numer 8 @@ -34429,7 +35236,7 @@ this.denom 7 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -34452,7 +35259,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1016 this -24515852 +1800031768 1 this.numer 63 @@ -34471,7 +35278,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1015 this -680509198 +1564984895 1 this.numer 8 @@ -34480,7 +35287,7 @@ this.denom 7 1 arg -57030296 +1173643169 1 arg.numer 9 @@ -34489,7 +35296,7 @@ arg.denom 0 1 return -24515852 +1800031768 1 return.numer 63 @@ -34502,7 +35309,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1017 this -24515852 +1800031768 1 this.numer 63 @@ -34515,7 +35322,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1018 this -24515852 +1800031768 1 this.numer 63 @@ -34528,7 +35335,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1018 this -24515852 +1800031768 1 this.numer 63 @@ -34544,7 +35351,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1017 this -24515852 +1800031768 1 this.numer 63 @@ -34553,7 +35360,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -34563,7 +35370,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1019 this -57030296 +1173643169 1 this.numer 9 @@ -34572,7 +35379,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -34595,7 +35402,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1020 this -1868547987 +667447085 1 this.numer 63 @@ -34614,7 +35421,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1019 this -57030296 +1173643169 1 this.numer 9 @@ -34623,7 +35430,7 @@ this.denom 0 1 arg -680509198 +1564984895 1 arg.numer 8 @@ -34632,7 +35439,7 @@ arg.denom 7 1 return -1868547987 +667447085 1 return.numer 63 @@ -34645,7 +35452,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1021 this -1868547987 +667447085 1 this.numer 63 @@ -34658,7 +35465,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1022 this -1868547987 +667447085 1 this.numer 63 @@ -34671,7 +35478,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1022 this -1868547987 +667447085 1 this.numer 63 @@ -34687,7 +35494,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1021 this -1868547987 +667447085 1 this.numer 63 @@ -34696,7 +35503,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -34713,7 +35520,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1023 this -2032647428 +26728049 1 this.numer 0 @@ -34736,7 +35543,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1024 this -535465920 +1076770748 1 this.numer 1 @@ -34759,7 +35566,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1025 this -1619236510 +2041416495 1 this.numer -1 @@ -34782,7 +35589,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1026 this -1595248786 +502800944 1 this.numer 2 @@ -34805,7 +35612,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1027 this -13013507 +576936864 1 this.numer 3 @@ -34854,7 +35661,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1028 this -1822163802 +331418503 1 this.numer 1 @@ -34906,7 +35713,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1030 this -1990213994 +111156771 1 this.numer 1 @@ -34958,7 +35765,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1032 this -321311486 +1519736165 1 this.numer 1 @@ -35010,7 +35817,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1034 this -1508256644 +1653844940 1 this.numer 2 @@ -35062,7 +35869,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1036 this -372446520 +2039810346 1 this.numer 3 @@ -35114,7 +35921,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1038 this -1941314282 +2143437117 1 this.numer 5 @@ -35166,7 +35973,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1040 this -950088703 +260840925 1 this.numer 6 @@ -35218,7 +36025,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1042 this -1599915876 +1891502635 1 this.numer 8 @@ -35270,7 +36077,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1044 this -1143383845 +557023567 1 this.numer -1 @@ -35322,7 +36129,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1046 this -1168609559 +1276504061 1 this.numer 3 @@ -35351,7 +36158,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1048 this -2082906298 +597190999 1 this.numer 1 @@ -35380,7 +36187,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1049 this -1275220739 +603443293 1 this.numer -1 @@ -35409,7 +36216,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1050 this -748163313 +510854293 1 this.numer 100 @@ -35438,7 +36245,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1051 this -864048406 +2100961961 1 this.numer 2 @@ -35467,7 +36274,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1052 this -777138628 +487075464 1 this.numer -2 @@ -35496,7 +36303,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1053 this -373379742 +6320204 1 this.numer 9 @@ -35515,7 +36322,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1054 this -535465920 +1076770748 1 this.numer 1 @@ -35524,7 +36331,7 @@ this.denom 1 1 arg -535465920 +1076770748 1 arg.numer 1 @@ -35570,7 +36377,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1055 this -446107260 +112302969 1 this.numer 2 @@ -35589,7 +36396,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1054 this -535465920 +1076770748 1 this.numer 1 @@ -35598,7 +36405,7 @@ this.denom 1 1 arg -535465920 +1076770748 1 arg.numer 1 @@ -35607,7 +36414,7 @@ arg.denom 1 1 return -446107260 +112302969 1 return.numer 2 @@ -35620,7 +36427,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1057 this -446107260 +112302969 1 this.numer 2 @@ -35629,7 +36436,7 @@ this.denom 1 1 arg -535465920 +1076770748 1 arg.numer 1 @@ -35675,7 +36482,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1058 this -859307143 +707976812 1 this.numer 3 @@ -35694,7 +36501,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1057 this -446107260 +112302969 1 this.numer 2 @@ -35703,7 +36510,7 @@ this.denom 1 1 arg -535465920 +1076770748 1 arg.numer 1 @@ -35712,7 +36519,7 @@ arg.denom 1 1 return -859307143 +707976812 1 return.numer 3 @@ -35725,7 +36532,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1060 this -859307143 +707976812 1 this.numer 3 @@ -35738,7 +36545,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1061 this -859307143 +707976812 1 this.numer 3 @@ -35751,7 +36558,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1061 this -859307143 +707976812 1 this.numer 3 @@ -35767,7 +36574,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1060 this -859307143 +707976812 1 this.numer 3 @@ -35776,7 +36583,7 @@ this.denom 1 1 return -547626326 +1989335500 1 return.toString "3" @@ -35786,7 +36593,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1062 this -535465920 +1076770748 1 this.numer 1 @@ -35795,7 +36602,7 @@ this.denom 1 1 arg -535465920 +1076770748 1 arg.numer 1 @@ -35841,7 +36648,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1063 this -1988233687 +1978869058 1 this.numer 2 @@ -35860,7 +36667,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1062 this -535465920 +1076770748 1 this.numer 1 @@ -35869,7 +36676,7 @@ this.denom 1 1 arg -535465920 +1076770748 1 arg.numer 1 @@ -35878,7 +36685,7 @@ arg.denom 1 1 return -1988233687 +1978869058 1 return.numer 2 @@ -35891,7 +36698,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1065 this -535465920 +1076770748 1 this.numer 1 @@ -35900,7 +36707,7 @@ this.denom 1 1 arg -1988233687 +1978869058 1 arg.numer 2 @@ -35946,7 +36753,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1066 this -1398030089 +2131952342 1 this.numer 3 @@ -35965,7 +36772,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1065 this -535465920 +1076770748 1 this.numer 1 @@ -35974,7 +36781,7 @@ this.denom 1 1 arg -1988233687 +1978869058 1 arg.numer 2 @@ -35983,7 +36790,7 @@ arg.denom 1 1 return -1398030089 +2131952342 1 return.numer 3 @@ -35996,7 +36803,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1068 this -1398030089 +2131952342 1 this.numer 3 @@ -36009,7 +36816,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1069 this -1398030089 +2131952342 1 this.numer 3 @@ -36022,7 +36829,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1069 this -1398030089 +2131952342 1 this.numer 3 @@ -36038,7 +36845,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1068 this -1398030089 +2131952342 1 this.numer 3 @@ -36047,7 +36854,7 @@ this.denom 1 1 return -1073123996 +1139700454 1 return.toString "3" @@ -36057,7 +36864,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1070 this -2032647428 +26728049 1 this.numer 0 @@ -36066,7 +36873,7 @@ this.denom 1 1 arg -2032647428 +26728049 1 arg.numer 0 @@ -36112,7 +36919,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1071 this -1427333266 +592617454 1 this.numer 0 @@ -36131,7 +36938,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1070 this -2032647428 +26728049 1 this.numer 0 @@ -36140,7 +36947,7 @@ this.denom 1 1 arg -2032647428 +26728049 1 arg.numer 0 @@ -36149,7 +36956,7 @@ arg.denom 1 1 return -1427333266 +592617454 1 return.numer 0 @@ -36162,7 +36969,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1073 this -1427333266 +592617454 1 this.numer 0 @@ -36171,7 +36978,7 @@ this.denom 1 1 arg -2032647428 +26728049 1 arg.numer 0 @@ -36217,7 +37024,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1074 this -1797864672 +1340565491 1 this.numer 0 @@ -36236,7 +37043,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1073 this -1427333266 +592617454 1 this.numer 0 @@ -36245,7 +37052,7 @@ this.denom 1 1 arg -2032647428 +26728049 1 arg.numer 0 @@ -36254,7 +37061,7 @@ arg.denom 1 1 return -1797864672 +1340565491 1 return.numer 0 @@ -36267,7 +37074,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1076 this -1797864672 +1340565491 1 this.numer 0 @@ -36280,7 +37087,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1077 this -1797864672 +1340565491 1 this.numer 0 @@ -36293,7 +37100,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1077 this -1797864672 +1340565491 1 this.numer 0 @@ -36309,7 +37116,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1076 this -1797864672 +1340565491 1 this.numer 0 @@ -36318,7 +37125,7 @@ this.denom 1 1 return -1616629014 +671467883 1 return.toString "0" @@ -36328,7 +37135,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1078 this -2032647428 +26728049 1 this.numer 0 @@ -36337,7 +37144,7 @@ this.denom 1 1 arg -2032647428 +26728049 1 arg.numer 0 @@ -36383,7 +37190,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1079 this -720736454 +407697359 1 this.numer 0 @@ -36402,7 +37209,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1078 this -2032647428 +26728049 1 this.numer 0 @@ -36411,7 +37218,7 @@ this.denom 1 1 arg -2032647428 +26728049 1 arg.numer 0 @@ -36420,7 +37227,7 @@ arg.denom 1 1 return -720736454 +407697359 1 return.numer 0 @@ -36433,7 +37240,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1081 this -2032647428 +26728049 1 this.numer 0 @@ -36442,7 +37249,7 @@ this.denom 1 1 arg -720736454 +407697359 1 arg.numer 0 @@ -36488,7 +37295,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1082 this -1609813298 +802600647 1 this.numer 0 @@ -36507,7 +37314,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1081 this -2032647428 +26728049 1 this.numer 0 @@ -36516,7 +37323,7 @@ this.denom 1 1 arg -720736454 +407697359 1 arg.numer 0 @@ -36525,7 +37332,7 @@ arg.denom 1 1 return -1609813298 +802600647 1 return.numer 0 @@ -36538,7 +37345,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1084 this -1609813298 +802600647 1 this.numer 0 @@ -36551,7 +37358,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1085 this -1609813298 +802600647 1 this.numer 0 @@ -36564,7 +37371,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1085 this -1609813298 +802600647 1 this.numer 0 @@ -36580,7 +37387,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1084 this -1609813298 +802600647 1 this.numer 0 @@ -36589,7 +37396,7 @@ this.denom 1 1 return -2133114580 +1543148593 1 return.toString "0" @@ -36599,7 +37406,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1086 this -535465920 +1076770748 1 this.numer 1 @@ -36608,7 +37415,7 @@ this.denom 1 1 arg -1595248786 +502800944 1 arg.numer 2 @@ -36654,7 +37461,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1087 this -1164743042 +1571967156 1 this.numer 3 @@ -36673,7 +37480,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1086 this -535465920 +1076770748 1 this.numer 1 @@ -36682,7 +37489,7 @@ this.denom 1 1 arg -1595248786 +502800944 1 arg.numer 2 @@ -36691,7 +37498,7 @@ arg.denom 1 1 return -1164743042 +1571967156 1 return.numer 3 @@ -36704,7 +37511,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1089 this -1164743042 +1571967156 1 this.numer 3 @@ -36713,7 +37520,7 @@ this.denom 1 1 arg -13013507 +576936864 1 arg.numer 3 @@ -36759,7 +37566,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1090 this -1522864489 +574568002 1 this.numer 6 @@ -36778,7 +37585,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1089 this -1164743042 +1571967156 1 this.numer 3 @@ -36787,7 +37594,7 @@ this.denom 1 1 arg -13013507 +576936864 1 arg.numer 3 @@ -36796,7 +37603,7 @@ arg.denom 1 1 return -1522864489 +574568002 1 return.numer 6 @@ -36809,7 +37616,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1092 this -1522864489 +574568002 1 this.numer 6 @@ -36822,7 +37629,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1093 this -1522864489 +574568002 1 this.numer 6 @@ -36835,7 +37642,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1093 this -1522864489 +574568002 1 this.numer 6 @@ -36851,7 +37658,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1092 this -1522864489 +574568002 1 this.numer 6 @@ -36860,7 +37667,7 @@ this.denom 1 1 return -1073361677 +952486988 1 return.toString "6" @@ -36870,7 +37677,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1094 this -1595248786 +502800944 1 this.numer 2 @@ -36879,7 +37686,7 @@ this.denom 1 1 arg -13013507 +576936864 1 arg.numer 3 @@ -36925,7 +37732,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1095 this -1127070539 +932285561 1 this.numer 5 @@ -36944,7 +37751,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1094 this -1595248786 +502800944 1 this.numer 2 @@ -36953,7 +37760,7 @@ this.denom 1 1 arg -13013507 +576936864 1 arg.numer 3 @@ -36962,7 +37769,7 @@ arg.denom 1 1 return -1127070539 +932285561 1 return.numer 5 @@ -36975,7 +37782,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1097 this -535465920 +1076770748 1 this.numer 1 @@ -36984,7 +37791,7 @@ this.denom 1 1 arg -1127070539 +932285561 1 arg.numer 5 @@ -37030,7 +37837,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1098 this -1868782433 +2028555727 1 this.numer 6 @@ -37049,7 +37856,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1097 this -535465920 +1076770748 1 this.numer 1 @@ -37058,7 +37865,7 @@ this.denom 1 1 arg -1127070539 +932285561 1 arg.numer 5 @@ -37067,7 +37874,7 @@ arg.denom 1 1 return -1868782433 +2028555727 1 return.numer 6 @@ -37080,7 +37887,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1100 this -1868782433 +2028555727 1 this.numer 6 @@ -37093,7 +37900,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1101 this -1868782433 +2028555727 1 this.numer 6 @@ -37106,7 +37913,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1101 this -1868782433 +2028555727 1 this.numer 6 @@ -37122,7 +37929,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1100 this -1868782433 +2028555727 1 this.numer 6 @@ -37131,7 +37938,7 @@ this.denom 1 1 return -1678014056 +591391158 1 return.toString "6" @@ -37141,7 +37948,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1102 this -1990213994 +111156771 1 this.numer 1 @@ -37150,7 +37957,7 @@ this.denom 3 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -37196,7 +38003,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1103 this -1626986788 +898557489 1 this.numer 2 @@ -37215,7 +38022,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1102 this -1990213994 +111156771 1 this.numer 1 @@ -37224,7 +38031,7 @@ this.denom 3 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -37233,7 +38040,7 @@ arg.denom 3 1 return -1626986788 +898557489 1 return.numer 2 @@ -37246,7 +38053,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1105 this -1626986788 +898557489 1 this.numer 2 @@ -37255,7 +38062,7 @@ this.denom 3 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -37301,7 +38108,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1106 this -857668665 +247944893 1 this.numer 1 @@ -37320,7 +38127,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1105 this -1626986788 +898557489 1 this.numer 2 @@ -37329,7 +38136,7 @@ this.denom 3 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -37338,7 +38145,7 @@ arg.denom 3 1 return -857668665 +247944893 1 return.numer 1 @@ -37351,7 +38158,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1108 this -857668665 +247944893 1 this.numer 1 @@ -37364,7 +38171,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1109 this -857668665 +247944893 1 this.numer 1 @@ -37377,7 +38184,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1109 this -857668665 +247944893 1 this.numer 1 @@ -37393,7 +38200,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1108 this -857668665 +247944893 1 this.numer 1 @@ -37402,7 +38209,7 @@ this.denom 1 1 return -927013991 +1014166943 1 return.toString "1" @@ -37412,7 +38219,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1110 this -1990213994 +111156771 1 this.numer 1 @@ -37421,7 +38228,7 @@ this.denom 3 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -37467,7 +38274,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1111 this -330287752 +1625082366 1 this.numer 2 @@ -37486,7 +38293,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1110 this -1990213994 +111156771 1 this.numer 1 @@ -37495,7 +38302,7 @@ this.denom 3 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -37504,7 +38311,7 @@ arg.denom 3 1 return -330287752 +1625082366 1 return.numer 2 @@ -37517,7 +38324,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1113 this -1990213994 +111156771 1 this.numer 1 @@ -37526,7 +38333,7 @@ this.denom 3 1 arg -330287752 +1625082366 1 arg.numer 2 @@ -37572,7 +38379,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1114 this -2048504016 +572593338 1 this.numer 1 @@ -37591,7 +38398,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1113 this -1990213994 +111156771 1 this.numer 1 @@ -37600,7 +38407,7 @@ this.denom 3 1 arg -330287752 +1625082366 1 arg.numer 2 @@ -37609,7 +38416,7 @@ arg.denom 3 1 return -2048504016 +572593338 1 return.numer 1 @@ -37622,7 +38429,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1116 this -2048504016 +572593338 1 this.numer 1 @@ -37635,7 +38442,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1117 this -2048504016 +572593338 1 this.numer 1 @@ -37648,7 +38455,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1117 this -2048504016 +572593338 1 this.numer 1 @@ -37664,7 +38471,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1116 this -2048504016 +572593338 1 this.numer 1 @@ -37673,7 +38480,7 @@ this.denom 1 1 return -749168208 +384294141 1 return.toString "1" @@ -37683,7 +38490,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1118 this -2082906298 +597190999 1 this.numer 1 @@ -37692,7 +38499,7 @@ this.denom 0 1 arg -2082906298 +597190999 1 arg.numer 1 @@ -37715,7 +38522,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1119 this -573449495 +1024597427 1 this.numer 0 @@ -37734,7 +38541,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1118 this -2082906298 +597190999 1 this.numer 1 @@ -37743,7 +38550,7 @@ this.denom 0 1 arg -2082906298 +597190999 1 arg.numer 1 @@ -37752,7 +38559,7 @@ arg.denom 0 1 return -573449495 +1024597427 1 return.numer 0 @@ -37765,7 +38572,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1120 this -573449495 +1024597427 1 this.numer 0 @@ -37774,7 +38581,7 @@ this.denom 0 1 arg -2082906298 +597190999 1 arg.numer 1 @@ -37797,7 +38604,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1121 this -59054729 +990355670 1 this.numer 0 @@ -37816,7 +38623,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1120 this -573449495 +1024597427 1 this.numer 0 @@ -37825,7 +38632,7 @@ this.denom 0 1 arg -2082906298 +597190999 1 arg.numer 1 @@ -37834,7 +38641,7 @@ arg.denom 0 1 return -59054729 +990355670 1 return.numer 0 @@ -37847,7 +38654,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1122 this -59054729 +990355670 1 this.numer 0 @@ -37860,7 +38667,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1123 this -59054729 +990355670 1 this.numer 0 @@ -37873,7 +38680,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1123 this -59054729 +990355670 1 this.numer 0 @@ -37889,7 +38696,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1122 this -59054729 +990355670 1 this.numer 0 @@ -37898,7 +38705,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -37908,7 +38715,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1124 this -2082906298 +597190999 1 this.numer 1 @@ -37917,7 +38724,7 @@ this.denom 0 1 arg -2082906298 +597190999 1 arg.numer 1 @@ -37940,7 +38747,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1125 this -395385389 +296347592 1 this.numer 0 @@ -37959,7 +38766,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1124 this -2082906298 +597190999 1 this.numer 1 @@ -37968,7 +38775,7 @@ this.denom 0 1 arg -2082906298 +597190999 1 arg.numer 1 @@ -37977,7 +38784,7 @@ arg.denom 0 1 return -395385389 +296347592 1 return.numer 0 @@ -37990,7 +38797,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1126 this -2082906298 +597190999 1 this.numer 1 @@ -37999,7 +38806,7 @@ this.denom 0 1 arg -395385389 +296347592 1 arg.numer 0 @@ -38022,7 +38829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1127 this -927829105 +956420404 1 this.numer 0 @@ -38041,7 +38848,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1126 this -2082906298 +597190999 1 this.numer 1 @@ -38050,7 +38857,7 @@ this.denom 0 1 arg -395385389 +296347592 1 arg.numer 0 @@ -38059,7 +38866,7 @@ arg.denom 0 1 return -927829105 +956420404 1 return.numer 0 @@ -38072,7 +38879,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1128 this -927829105 +956420404 1 this.numer 0 @@ -38085,7 +38892,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1129 this -927829105 +956420404 1 this.numer 0 @@ -38098,7 +38905,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1129 this -927829105 +956420404 1 this.numer 0 @@ -38114,7 +38921,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1128 this -927829105 +956420404 1 this.numer 0 @@ -38123,7 +38930,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -38133,7 +38940,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1130 this -1822163802 +331418503 1 this.numer 1 @@ -38142,7 +38949,7 @@ this.denom 2 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -38188,7 +38995,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1131 this -1145006868 +349420578 1 this.numer 5 @@ -38207,7 +39014,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1130 this -1822163802 +331418503 1 this.numer 1 @@ -38216,7 +39023,7 @@ this.denom 2 1 arg -1990213994 +111156771 1 arg.numer 1 @@ -38225,7 +39032,7 @@ arg.denom 3 1 return -1145006868 +349420578 1 return.numer 5 @@ -38238,7 +39045,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1133 this -1145006868 +349420578 1 this.numer 5 @@ -38247,7 +39054,7 @@ this.denom 6 1 arg -321311486 +1519736165 1 arg.numer 1 @@ -38293,7 +39100,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1134 this -529469709 +315932542 1 this.numer 13 @@ -38312,7 +39119,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1133 this -1145006868 +349420578 1 this.numer 5 @@ -38321,7 +39128,7 @@ this.denom 6 1 arg -321311486 +1519736165 1 arg.numer 1 @@ -38330,7 +39137,7 @@ arg.denom 4 1 return -529469709 +315932542 1 return.numer 13 @@ -38343,7 +39150,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1136 this -529469709 +315932542 1 this.numer 13 @@ -38356,7 +39163,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1137 this -529469709 +315932542 1 this.numer 13 @@ -38369,7 +39176,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1137 this -529469709 +315932542 1 this.numer 13 @@ -38385,7 +39192,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1136 this -529469709 +315932542 1 this.numer 13 @@ -38394,7 +39201,7 @@ this.denom 12 1 return -1772649642 +1277009227 1 return.toString "13/12" @@ -38404,7 +39211,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1138 this -1990213994 +111156771 1 this.numer 1 @@ -38413,7 +39220,7 @@ this.denom 3 1 arg -321311486 +1519736165 1 arg.numer 1 @@ -38459,7 +39266,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1139 this -881898263 +2065857933 1 this.numer 7 @@ -38478,7 +39285,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1138 this -1990213994 +111156771 1 this.numer 1 @@ -38487,7 +39294,7 @@ this.denom 3 1 arg -321311486 +1519736165 1 arg.numer 1 @@ -38496,7 +39303,7 @@ arg.denom 4 1 return -881898263 +2065857933 1 return.numer 7 @@ -38509,7 +39316,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1141 this -1822163802 +331418503 1 this.numer 1 @@ -38518,7 +39325,7 @@ this.denom 2 1 arg -881898263 +2065857933 1 arg.numer 7 @@ -38564,7 +39371,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1142 this -131974647 +1914301543 1 this.numer 13 @@ -38583,7 +39390,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1141 this -1822163802 +331418503 1 this.numer 1 @@ -38592,7 +39399,7 @@ this.denom 2 1 arg -881898263 +2065857933 1 arg.numer 7 @@ -38601,7 +39408,7 @@ arg.denom 12 1 return -131974647 +1914301543 1 return.numer 13 @@ -38614,7 +39421,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1144 this -131974647 +1914301543 1 this.numer 13 @@ -38627,7 +39434,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1145 this -131974647 +1914301543 1 this.numer 13 @@ -38640,7 +39447,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1145 this -131974647 +1914301543 1 this.numer 13 @@ -38656,7 +39463,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1144 this -131974647 +1914301543 1 this.numer 13 @@ -38665,7 +39472,7 @@ this.denom 12 1 return -1894768425 +1157726741 1 return.toString "13/12" @@ -38682,7 +39489,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1146 this -337917612 +1708570683 1 this.numer 0 @@ -38705,7 +39512,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1147 this -1434542216 +225472281 1 this.numer 1 @@ -38728,7 +39535,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1148 this -552119443 +817348612 1 this.numer -1 @@ -38751,7 +39558,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1149 this -194639814 +2045766957 1 this.numer 2 @@ -38774,7 +39581,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1150 this -693759517 +690521419 1 this.numer 3 @@ -38823,7 +39630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1151 this -1327482656 +665726928 1 this.numer 1 @@ -38875,7 +39682,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1153 this -793390709 +689401025 1 this.numer 1 @@ -38927,7 +39734,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1155 this -791681940 +790067787 1 this.numer 1 @@ -38979,7 +39786,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1157 this -2137172415 +1115201599 1 this.numer 2 @@ -39031,7 +39838,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1159 this -645299183 +343856911 1 this.numer 3 @@ -39083,7 +39890,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1161 this -750951331 +102617125 1 this.numer 5 @@ -39135,7 +39942,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1163 this -477626698 +306980751 1 this.numer 6 @@ -39187,7 +39994,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1165 this -178040800 +363988129 1 this.numer 8 @@ -39239,7 +40046,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1167 this -887005329 +1997963191 1 this.numer -1 @@ -39291,7 +40098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1169 this -67087029 +534906248 1 this.numer 3 @@ -39320,7 +40127,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1171 this -102781728 +1826699684 1 this.numer 1 @@ -39349,7 +40156,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1172 this -875650308 +1769193365 1 this.numer -1 @@ -39378,7 +40185,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1173 this -349293665 +769429195 1 this.numer 100 @@ -39407,7 +40214,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1174 this -1505820404 +580718781 1 this.numer 2 @@ -39436,7 +40243,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1175 this -228750133 +1196695891 1 this.numer -2 @@ -39465,7 +40272,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1176 this -607757201 +867148091 1 this.numer 9 @@ -39484,7 +40291,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1177 this -337917612 +1708570683 1 this.numer 0 @@ -39493,7 +40300,7 @@ this.denom 1 1 arg -1434542216 +225472281 1 arg.numer 1 @@ -39506,7 +40313,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1178 this -1434542216 +225472281 1 this.numer 1 @@ -39552,7 +40359,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1179 this -1143052075 +2051853139 1 this.numer -1 @@ -39571,7 +40378,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1178 this -1434542216 +225472281 1 this.numer 1 @@ -39580,7 +40387,7 @@ this.denom 1 1 return -1143052075 +2051853139 1 return.numer -1 @@ -39593,7 +40400,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1181 this -337917612 +1708570683 1 this.numer 0 @@ -39602,7 +40409,7 @@ this.denom 1 1 arg -1143052075 +2051853139 1 arg.numer -1 @@ -39648,7 +40455,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1182 this -2035002110 +815674463 1 this.numer -1 @@ -39667,7 +40474,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1181 this -337917612 +1708570683 1 this.numer 0 @@ -39676,7 +40483,7 @@ this.denom 1 1 arg -1143052075 +2051853139 1 arg.numer -1 @@ -39685,7 +40492,7 @@ arg.denom 1 1 return -2035002110 +815674463 1 return.numer -1 @@ -39698,7 +40505,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1177 this -337917612 +1708570683 1 this.numer 0 @@ -39707,7 +40514,7 @@ this.denom 1 1 arg -1434542216 +225472281 1 arg.numer 1 @@ -39716,7 +40523,7 @@ arg.denom 1 1 return -2035002110 +815674463 1 return.numer -1 @@ -39729,7 +40536,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1184 this -2035002110 +815674463 1 this.numer -1 @@ -39742,7 +40549,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1185 this -2035002110 +815674463 1 this.numer -1 @@ -39755,7 +40562,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1185 this -2035002110 +815674463 1 this.numer -1 @@ -39771,7 +40578,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1184 this -2035002110 +815674463 1 this.numer -1 @@ -39780,7 +40587,7 @@ this.denom 1 1 return -1455900648 +1453774246 1 return.toString "-1" @@ -39790,7 +40597,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1186 this -337917612 +1708570683 1 this.numer 0 @@ -39799,7 +40606,7 @@ this.denom 1 1 arg -337917612 +1708570683 1 arg.numer 0 @@ -39812,7 +40619,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1187 this -337917612 +1708570683 1 this.numer 0 @@ -39858,7 +40665,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1188 this -893517018 +416153648 1 this.numer 0 @@ -39877,7 +40684,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1187 this -337917612 +1708570683 1 this.numer 0 @@ -39886,7 +40693,7 @@ this.denom 1 1 return -893517018 +416153648 1 return.numer 0 @@ -39899,7 +40706,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1190 this -337917612 +1708570683 1 this.numer 0 @@ -39908,7 +40715,7 @@ this.denom 1 1 arg -893517018 +416153648 1 arg.numer 0 @@ -39954,7 +40761,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1191 this -2134861702 +71587369 1 this.numer 0 @@ -39973,7 +40780,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1190 this -337917612 +1708570683 1 this.numer 0 @@ -39982,7 +40789,7 @@ this.denom 1 1 arg -893517018 +416153648 1 arg.numer 0 @@ -39991,7 +40798,7 @@ arg.denom 1 1 return -2134861702 +71587369 1 return.numer 0 @@ -40004,7 +40811,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1186 this -337917612 +1708570683 1 this.numer 0 @@ -40013,7 +40820,7 @@ this.denom 1 1 arg -337917612 +1708570683 1 arg.numer 0 @@ -40022,7 +40829,7 @@ arg.denom 1 1 return -2134861702 +71587369 1 return.numer 0 @@ -40035,7 +40842,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1193 this -2134861702 +71587369 1 this.numer 0 @@ -40048,7 +40855,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1194 this -2134861702 +71587369 1 this.numer 0 @@ -40061,7 +40868,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1194 this -2134861702 +71587369 1 this.numer 0 @@ -40077,7 +40884,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1193 this -2134861702 +71587369 1 this.numer 0 @@ -40086,7 +40893,7 @@ this.denom 1 1 return -463851438 +1169794610 1 return.toString "0" @@ -40096,7 +40903,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1195 this -1434542216 +225472281 1 this.numer 1 @@ -40105,7 +40912,7 @@ this.denom 1 1 arg -337917612 +1708570683 1 arg.numer 0 @@ -40118,7 +40925,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1196 this -337917612 +1708570683 1 this.numer 0 @@ -40164,7 +40971,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1197 this -585479856 +634540230 1 this.numer 0 @@ -40183,7 +40990,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1196 this -337917612 +1708570683 1 this.numer 0 @@ -40192,7 +40999,7 @@ this.denom 1 1 return -585479856 +634540230 1 return.numer 0 @@ -40205,7 +41012,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1199 this -1434542216 +225472281 1 this.numer 1 @@ -40214,7 +41021,7 @@ this.denom 1 1 arg -585479856 +634540230 1 arg.numer 0 @@ -40260,7 +41067,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1200 this -389869238 +1307904972 1 this.numer 1 @@ -40279,7 +41086,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1199 this -1434542216 +225472281 1 this.numer 1 @@ -40288,7 +41095,7 @@ this.denom 1 1 arg -585479856 +634540230 1 arg.numer 0 @@ -40297,7 +41104,7 @@ arg.denom 1 1 return -389869238 +1307904972 1 return.numer 1 @@ -40310,7 +41117,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1195 this -1434542216 +225472281 1 this.numer 1 @@ -40319,7 +41126,7 @@ this.denom 1 1 arg -337917612 +1708570683 1 arg.numer 0 @@ -40328,7 +41135,7 @@ arg.denom 1 1 return -389869238 +1307904972 1 return.numer 1 @@ -40341,7 +41148,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1202 this -389869238 +1307904972 1 this.numer 1 @@ -40354,7 +41161,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1203 this -389869238 +1307904972 1 this.numer 1 @@ -40367,7 +41174,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1203 this -389869238 +1307904972 1 this.numer 1 @@ -40383,7 +41190,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1202 this -389869238 +1307904972 1 this.numer 1 @@ -40392,7 +41199,7 @@ this.denom 1 1 return -559676069 +1797712197 1 return.toString "1" @@ -40402,7 +41209,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1204 this -1434542216 +225472281 1 this.numer 1 @@ -40411,7 +41218,7 @@ this.denom 1 1 arg -1434542216 +225472281 1 arg.numer 1 @@ -40424,7 +41231,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1205 this -1434542216 +225472281 1 this.numer 1 @@ -40470,7 +41277,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1206 this -497317823 +1671846437 1 this.numer -1 @@ -40489,7 +41296,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1205 this -1434542216 +225472281 1 this.numer 1 @@ -40498,7 +41305,7 @@ this.denom 1 1 return -497317823 +1671846437 1 return.numer -1 @@ -40511,7 +41318,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1208 this -1434542216 +225472281 1 this.numer 1 @@ -40520,7 +41327,7 @@ this.denom 1 1 arg -497317823 +1671846437 1 arg.numer -1 @@ -40566,7 +41373,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1209 this -414297037 +1422222071 1 this.numer 0 @@ -40585,7 +41392,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1208 this -1434542216 +225472281 1 this.numer 1 @@ -40594,7 +41401,7 @@ this.denom 1 1 arg -497317823 +1671846437 1 arg.numer -1 @@ -40603,7 +41410,7 @@ arg.denom 1 1 return -414297037 +1422222071 1 return.numer 0 @@ -40616,7 +41423,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1204 this -1434542216 +225472281 1 this.numer 1 @@ -40625,7 +41432,7 @@ this.denom 1 1 arg -1434542216 +225472281 1 arg.numer 1 @@ -40634,7 +41441,7 @@ arg.denom 1 1 return -414297037 +1422222071 1 return.numer 0 @@ -40647,7 +41454,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1211 this -414297037 +1422222071 1 this.numer 0 @@ -40660,7 +41467,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1212 this -414297037 +1422222071 1 this.numer 0 @@ -40673,7 +41480,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1212 this -414297037 +1422222071 1 this.numer 0 @@ -40689,7 +41496,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1211 this -414297037 +1422222071 1 this.numer 0 @@ -40698,7 +41505,7 @@ this.denom 1 1 return -948317285 +831236296 1 return.toString "0" @@ -40708,7 +41515,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1213 this -194639814 +2045766957 1 this.numer 2 @@ -40717,7 +41524,7 @@ this.denom 1 1 arg -1434542216 +225472281 1 arg.numer 1 @@ -40730,7 +41537,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1214 this -1434542216 +225472281 1 this.numer 1 @@ -40776,7 +41583,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1215 this -1892464608 +1840976765 1 this.numer -1 @@ -40795,7 +41602,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1214 this -1434542216 +225472281 1 this.numer 1 @@ -40804,7 +41611,7 @@ this.denom 1 1 return -1892464608 +1840976765 1 return.numer -1 @@ -40817,7 +41624,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1217 this -194639814 +2045766957 1 this.numer 2 @@ -40826,7 +41633,7 @@ this.denom 1 1 arg -1892464608 +1840976765 1 arg.numer -1 @@ -40872,7 +41679,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1218 this -272370939 +1016925085 1 this.numer 1 @@ -40891,7 +41698,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1217 this -194639814 +2045766957 1 this.numer 2 @@ -40900,7 +41707,7 @@ this.denom 1 1 arg -1892464608 +1840976765 1 arg.numer -1 @@ -40909,7 +41716,7 @@ arg.denom 1 1 return -272370939 +1016925085 1 return.numer 1 @@ -40922,7 +41729,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1213 this -194639814 +2045766957 1 this.numer 2 @@ -40931,7 +41738,7 @@ this.denom 1 1 arg -1434542216 +225472281 1 arg.numer 1 @@ -40940,7 +41747,7 @@ arg.denom 1 1 return -272370939 +1016925085 1 return.numer 1 @@ -40953,7 +41760,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1220 this -272370939 +1016925085 1 this.numer 1 @@ -40966,7 +41773,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1221 this -272370939 +1016925085 1 this.numer 1 @@ -40979,7 +41786,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1221 this -272370939 +1016925085 1 this.numer 1 @@ -40995,7 +41802,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1220 this -272370939 +1016925085 1 this.numer 1 @@ -41004,7 +41811,7 @@ this.denom 1 1 return -1450720016 +1127224355 1 return.toString "1" @@ -41014,7 +41821,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1222 this -1434542216 +225472281 1 this.numer 1 @@ -41023,7 +41830,7 @@ this.denom 1 1 arg -552119443 +817348612 1 arg.numer -1 @@ -41036,7 +41843,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1223 this -552119443 +817348612 1 this.numer -1 @@ -41082,7 +41889,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1224 this -1869464521 +789653861 1 this.numer 1 @@ -41101,7 +41908,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1223 this -552119443 +817348612 1 this.numer -1 @@ -41110,7 +41917,7 @@ this.denom 1 1 return -1869464521 +789653861 1 return.numer 1 @@ -41123,7 +41930,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1226 this -1434542216 +225472281 1 this.numer 1 @@ -41132,7 +41939,7 @@ this.denom 1 1 arg -1869464521 +789653861 1 arg.numer 1 @@ -41178,7 +41985,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1227 this -256965190 +436532993 1 this.numer 2 @@ -41197,7 +42004,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1226 this -1434542216 +225472281 1 this.numer 1 @@ -41206,7 +42013,7 @@ this.denom 1 1 arg -1869464521 +789653861 1 arg.numer 1 @@ -41215,7 +42022,7 @@ arg.denom 1 1 return -256965190 +436532993 1 return.numer 2 @@ -41228,7 +42035,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1222 this -1434542216 +225472281 1 this.numer 1 @@ -41237,7 +42044,7 @@ this.denom 1 1 arg -552119443 +817348612 1 arg.numer -1 @@ -41246,7 +42053,7 @@ arg.denom 1 1 return -256965190 +436532993 1 return.numer 2 @@ -41259,7 +42066,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1229 this -256965190 +436532993 1 this.numer 2 @@ -41272,7 +42079,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1230 this -256965190 +436532993 1 this.numer 2 @@ -41285,7 +42092,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1230 this -256965190 +436532993 1 this.numer 2 @@ -41301,7 +42108,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1229 this -256965190 +436532993 1 this.numer 2 @@ -41310,7 +42117,7 @@ this.denom 1 1 return -224334213 +1318180415 1 return.toString "2" @@ -41320,7 +42127,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1231 this -1434542216 +225472281 1 this.numer 1 @@ -41329,7 +42136,7 @@ this.denom 1 1 arg -194639814 +2045766957 1 arg.numer 2 @@ -41342,7 +42149,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1232 this -194639814 +2045766957 1 this.numer 2 @@ -41388,7 +42195,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1233 this -1551317406 +222511810 1 this.numer -2 @@ -41407,7 +42214,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1232 this -194639814 +2045766957 1 this.numer 2 @@ -41416,7 +42223,7 @@ this.denom 1 1 return -1551317406 +222511810 1 return.numer -2 @@ -41429,7 +42236,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1235 this -1434542216 +225472281 1 this.numer 1 @@ -41438,7 +42245,7 @@ this.denom 1 1 arg -1551317406 +222511810 1 arg.numer -2 @@ -41484,7 +42291,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1236 this -392684415 +733943822 1 this.numer -1 @@ -41503,7 +42310,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1235 this -1434542216 +225472281 1 this.numer 1 @@ -41512,7 +42319,7 @@ this.denom 1 1 arg -1551317406 +222511810 1 arg.numer -2 @@ -41521,7 +42328,7 @@ arg.denom 1 1 return -392684415 +733943822 1 return.numer -1 @@ -41534,7 +42341,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1231 this -1434542216 +225472281 1 this.numer 1 @@ -41543,7 +42350,7 @@ this.denom 1 1 arg -194639814 +2045766957 1 arg.numer 2 @@ -41552,7 +42359,7 @@ arg.denom 1 1 return -392684415 +733943822 1 return.numer -1 @@ -41565,7 +42372,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1238 this -392684415 +733943822 1 this.numer -1 @@ -41578,7 +42385,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1239 this -392684415 +733943822 1 this.numer -1 @@ -41591,7 +42398,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1239 this -392684415 +733943822 1 this.numer -1 @@ -41607,7 +42414,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1238 this -392684415 +733943822 1 this.numer -1 @@ -41616,7 +42423,7 @@ this.denom 1 1 return -629715674 +373182087 1 return.toString "-1" @@ -41626,7 +42433,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1240 this -1434542216 +225472281 1 this.numer 1 @@ -41635,7 +42442,7 @@ this.denom 1 1 arg -693759517 +690521419 1 arg.numer 3 @@ -41648,7 +42455,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1241 this -693759517 +690521419 1 this.numer 3 @@ -41694,7 +42501,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1242 this -831920502 +1457410641 1 this.numer -3 @@ -41713,7 +42520,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1241 this -693759517 +690521419 1 this.numer 3 @@ -41722,7 +42529,7 @@ this.denom 1 1 return -831920502 +1457410641 1 return.numer -3 @@ -41735,7 +42542,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1244 this -1434542216 +225472281 1 this.numer 1 @@ -41744,7 +42551,7 @@ this.denom 1 1 arg -831920502 +1457410641 1 arg.numer -3 @@ -41790,7 +42597,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1245 this -1969335144 +1100767002 1 this.numer -2 @@ -41809,7 +42616,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1244 this -1434542216 +225472281 1 this.numer 1 @@ -41818,7 +42625,7 @@ this.denom 1 1 arg -831920502 +1457410641 1 arg.numer -3 @@ -41827,7 +42634,7 @@ arg.denom 1 1 return -1969335144 +1100767002 1 return.numer -2 @@ -41840,7 +42647,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1240 this -1434542216 +225472281 1 this.numer 1 @@ -41849,7 +42656,7 @@ this.denom 1 1 arg -693759517 +690521419 1 arg.numer 3 @@ -41858,7 +42665,7 @@ arg.denom 1 1 return -1969335144 +1100767002 1 return.numer -2 @@ -41871,7 +42678,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1247 this -1969335144 +1100767002 1 this.numer -2 @@ -41884,7 +42691,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1248 this -1969335144 +1100767002 1 this.numer -2 @@ -41897,7 +42704,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1248 this -1969335144 +1100767002 1 this.numer -2 @@ -41913,7 +42720,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1247 this -1969335144 +1100767002 1 this.numer -2 @@ -41922,7 +42729,7 @@ this.denom 1 1 return -1597797644 +313540687 1 return.toString "-2" @@ -41939,7 +42746,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1249 this -2049480620 +1990098664 1 this.numer 0 @@ -41962,7 +42769,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1250 this -2130566107 +1383524016 1 this.numer 1 @@ -41985,7 +42792,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1251 this -1282230271 +1907431275 1 this.numer -1 @@ -42008,7 +42815,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1252 this -445767052 +1637061418 1 this.numer 2 @@ -42031,7 +42838,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1253 this -1583882228 +1686100174 1 this.numer 3 @@ -42080,7 +42887,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1254 this -101317784 +22671767 1 this.numer 1 @@ -42132,7 +42939,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1256 this -2040947264 +2024453272 1 this.numer 1 @@ -42184,7 +42991,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1258 this -444372517 +98394724 1 this.numer 1 @@ -42236,7 +43043,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1260 this -1768252600 +536765369 1 this.numer 2 @@ -42288,7 +43095,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1262 this -2142741014 +1374026904 1 this.numer 3 @@ -42340,7 +43147,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1264 this -1894945755 +2085002312 1 this.numer 5 @@ -42392,7 +43199,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1266 this -1170819275 +317071334 1 this.numer 6 @@ -42444,7 +43251,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1268 this -566897464 +2129221032 1 this.numer 8 @@ -42496,7 +43303,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1270 this -1608219356 +1472465 1 this.numer -1 @@ -42548,7 +43355,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1272 this -1113535150 +1224347463 1 this.numer 3 @@ -42577,7 +43384,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1274 this -2012766092 +1791045777 1 this.numer 1 @@ -42606,7 +43413,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1275 this -1397300700 +1580297332 1 this.numer -1 @@ -42635,7 +43442,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1276 this -1699184955 +1831477404 1 this.numer 100 @@ -42664,7 +43471,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1277 this -964000879 +1966250569 1 this.numer 2 @@ -42693,7 +43500,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1278 this -1346140385 +370440646 1 this.numer -2 @@ -42722,7 +43529,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1279 this -841229550 +1125381564 1 this.numer 9 @@ -42741,7 +43548,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1280 this -2130566107 +1383524016 1 this.numer 1 @@ -42750,7 +43557,7 @@ this.denom 1 1 arg -101317784 +22671767 1 arg.numer 1 @@ -42763,7 +43570,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1281 this -101317784 +22671767 1 this.numer 1 @@ -42809,7 +43616,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1282 this -1660198649 +2130772866 1 this.numer -1 @@ -42828,7 +43635,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1281 this -101317784 +22671767 1 this.numer 1 @@ -42837,7 +43644,7 @@ this.denom 2 1 return -1660198649 +2130772866 1 return.numer -1 @@ -42850,7 +43657,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1284 this -2130566107 +1383524016 1 this.numer 1 @@ -42859,7 +43666,7 @@ this.denom 1 1 arg -1660198649 +2130772866 1 arg.numer -1 @@ -42905,7 +43712,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1285 this -703668272 +511717113 1 this.numer 1 @@ -42924,7 +43731,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1284 this -2130566107 +1383524016 1 this.numer 1 @@ -42933,7 +43740,7 @@ this.denom 1 1 arg -1660198649 +2130772866 1 arg.numer -1 @@ -42942,7 +43749,7 @@ arg.denom 2 1 return -703668272 +511717113 1 return.numer 1 @@ -42955,7 +43762,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1280 this -2130566107 +1383524016 1 this.numer 1 @@ -42964,7 +43771,7 @@ this.denom 1 1 arg -101317784 +22671767 1 arg.numer 1 @@ -42973,7 +43780,7 @@ arg.denom 2 1 return -703668272 +511717113 1 return.numer 1 @@ -42986,7 +43793,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1287 this -703668272 +511717113 1 this.numer 1 @@ -42999,7 +43806,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1288 this -703668272 +511717113 1 this.numer 1 @@ -43012,7 +43819,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1288 this -703668272 +511717113 1 this.numer 1 @@ -43028,7 +43835,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1287 this -703668272 +511717113 1 this.numer 1 @@ -43037,7 +43844,7 @@ this.denom 2 1 return -360203475 +728739494 1 return.toString "1/2" @@ -43047,7 +43854,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1289 this -101317784 +22671767 1 this.numer 1 @@ -43056,7 +43863,7 @@ this.denom 2 1 arg -2130566107 +1383524016 1 arg.numer 1 @@ -43069,7 +43876,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1290 this -2130566107 +1383524016 1 this.numer 1 @@ -43115,7 +43922,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1291 this -183403432 +2005733474 1 this.numer -1 @@ -43134,7 +43941,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1290 this -2130566107 +1383524016 1 this.numer 1 @@ -43143,7 +43950,7 @@ this.denom 1 1 return -183403432 +2005733474 1 return.numer -1 @@ -43156,7 +43963,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1293 this -101317784 +22671767 1 this.numer 1 @@ -43165,7 +43972,7 @@ this.denom 2 1 arg -183403432 +2005733474 1 arg.numer -1 @@ -43211,7 +44018,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1294 this -822448179 +6750210 1 this.numer -1 @@ -43230,7 +44037,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1293 this -101317784 +22671767 1 this.numer 1 @@ -43239,7 +44046,7 @@ this.denom 2 1 arg -183403432 +2005733474 1 arg.numer -1 @@ -43248,7 +44055,7 @@ arg.denom 1 1 return -822448179 +6750210 1 return.numer -1 @@ -43261,7 +44068,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1289 this -101317784 +22671767 1 this.numer 1 @@ -43270,7 +44077,7 @@ this.denom 2 1 arg -2130566107 +1383524016 1 arg.numer 1 @@ -43279,7 +44086,7 @@ arg.denom 1 1 return -822448179 +6750210 1 return.numer -1 @@ -43292,7 +44099,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1296 this -822448179 +6750210 1 this.numer -1 @@ -43305,7 +44112,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1297 this -822448179 +6750210 1 this.numer -1 @@ -43318,7 +44125,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1297 this -822448179 +6750210 1 this.numer -1 @@ -43334,7 +44141,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1296 this -822448179 +6750210 1 this.numer -1 @@ -43343,7 +44150,7 @@ this.denom 2 1 return -1681792361 +521081105 1 return.toString "-1/2" @@ -43353,7 +44160,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1298 this -101317784 +22671767 1 this.numer 1 @@ -43362,7 +44169,7 @@ this.denom 2 1 arg -2049480620 +1990098664 1 arg.numer 0 @@ -43375,7 +44182,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1299 this -2049480620 +1990098664 1 this.numer 0 @@ -43421,7 +44228,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1300 this -704449513 +1237550792 1 this.numer 0 @@ -43440,7 +44247,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1299 this -2049480620 +1990098664 1 this.numer 0 @@ -43449,7 +44256,7 @@ this.denom 1 1 return -704449513 +1237550792 1 return.numer 0 @@ -43462,7 +44269,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1302 this -101317784 +22671767 1 this.numer 1 @@ -43471,7 +44278,7 @@ this.denom 2 1 arg -704449513 +1237550792 1 arg.numer 0 @@ -43517,7 +44324,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1303 this -605619080 +1448247698 1 this.numer 1 @@ -43536,7 +44343,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1302 this -101317784 +22671767 1 this.numer 1 @@ -43545,7 +44352,7 @@ this.denom 2 1 arg -704449513 +1237550792 1 arg.numer 0 @@ -43554,7 +44361,7 @@ arg.denom 1 1 return -605619080 +1448247698 1 return.numer 1 @@ -43567,7 +44374,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1298 this -101317784 +22671767 1 this.numer 1 @@ -43576,7 +44383,7 @@ this.denom 2 1 arg -2049480620 +1990098664 1 arg.numer 0 @@ -43585,7 +44392,7 @@ arg.denom 1 1 return -605619080 +1448247698 1 return.numer 1 @@ -43598,7 +44405,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1305 this -605619080 +1448247698 1 this.numer 1 @@ -43611,7 +44418,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1306 this -605619080 +1448247698 1 this.numer 1 @@ -43624,7 +44431,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1306 this -605619080 +1448247698 1 this.numer 1 @@ -43640,7 +44447,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1305 this -605619080 +1448247698 1 this.numer 1 @@ -43649,7 +44456,7 @@ this.denom 2 1 return -1714874427 +1846406218 1 return.toString "1/2" @@ -43659,7 +44466,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1307 this -101317784 +22671767 1 this.numer 1 @@ -43668,7 +44475,7 @@ this.denom 2 1 arg -1768252600 +536765369 1 arg.numer 2 @@ -43681,7 +44488,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1308 this -1768252600 +536765369 1 this.numer 2 @@ -43727,7 +44534,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1309 this -516468202 +158199555 1 this.numer -2 @@ -43746,7 +44553,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1308 this -1768252600 +536765369 1 this.numer 2 @@ -43755,7 +44562,7 @@ this.denom 3 1 return -516468202 +158199555 1 return.numer -2 @@ -43768,7 +44575,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1311 this -101317784 +22671767 1 this.numer 1 @@ -43777,7 +44584,7 @@ this.denom 2 1 arg -516468202 +158199555 1 arg.numer -2 @@ -43823,7 +44630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1312 this -152169840 +1556995360 1 this.numer -1 @@ -43842,7 +44649,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1311 this -101317784 +22671767 1 this.numer 1 @@ -43851,7 +44658,7 @@ this.denom 2 1 arg -516468202 +158199555 1 arg.numer -2 @@ -43860,7 +44667,7 @@ arg.denom 3 1 return -152169840 +1556995360 1 return.numer -1 @@ -43873,7 +44680,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1307 this -101317784 +22671767 1 this.numer 1 @@ -43882,7 +44689,7 @@ this.denom 2 1 arg -1768252600 +536765369 1 arg.numer 2 @@ -43891,7 +44698,7 @@ arg.denom 3 1 return -152169840 +1556995360 1 return.numer -1 @@ -43904,7 +44711,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1314 this -152169840 +1556995360 1 this.numer -1 @@ -43917,7 +44724,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1315 this -152169840 +1556995360 1 this.numer -1 @@ -43930,7 +44737,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1315 this -152169840 +1556995360 1 this.numer -1 @@ -43946,7 +44753,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1314 this -152169840 +1556995360 1 this.numer -1 @@ -43955,7 +44762,7 @@ this.denom 6 1 return -2012960950 +517052730 1 return.toString "-1/6" @@ -43965,7 +44772,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1316 this -101317784 +22671767 1 this.numer 1 @@ -43974,7 +44781,7 @@ this.denom 2 1 arg -2142741014 +1374026904 1 arg.numer 3 @@ -43987,7 +44794,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1317 this -2142741014 +1374026904 1 this.numer 3 @@ -44033,7 +44840,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1318 this -377311812 +524241174 1 this.numer -3 @@ -44052,7 +44859,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1317 this -2142741014 +1374026904 1 this.numer 3 @@ -44061,7 +44868,7 @@ this.denom 4 1 return -377311812 +524241174 1 return.numer -3 @@ -44074,7 +44881,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1320 this -101317784 +22671767 1 this.numer 1 @@ -44083,7 +44890,7 @@ this.denom 2 1 arg -377311812 +524241174 1 arg.numer -3 @@ -44129,7 +44936,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1321 this -2107898340 +2035070981 1 this.numer -1 @@ -44148,7 +44955,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1320 this -101317784 +22671767 1 this.numer 1 @@ -44157,7 +44964,7 @@ this.denom 2 1 arg -377311812 +524241174 1 arg.numer -3 @@ -44166,7 +44973,7 @@ arg.denom 4 1 return -2107898340 +2035070981 1 return.numer -1 @@ -44179,7 +44986,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1316 this -101317784 +22671767 1 this.numer 1 @@ -44188,7 +44995,7 @@ this.denom 2 1 arg -2142741014 +1374026904 1 arg.numer 3 @@ -44197,7 +45004,7 @@ arg.denom 4 1 return -2107898340 +2035070981 1 return.numer -1 @@ -44210,7 +45017,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1323 this -2107898340 +2035070981 1 this.numer -1 @@ -44223,7 +45030,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1324 this -2107898340 +2035070981 1 this.numer -1 @@ -44236,7 +45043,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1324 this -2107898340 +2035070981 1 this.numer -1 @@ -44252,7 +45059,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1323 this -2107898340 +2035070981 1 this.numer -1 @@ -44261,7 +45068,7 @@ this.denom 4 1 return -409675821 +1264213713 1 return.toString "-1/4" @@ -44278,7 +45085,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1325 this -588951265 +1506809545 1 this.numer 0 @@ -44301,7 +45108,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1326 this -751781832 +1019384604 1 this.numer 1 @@ -44324,7 +45131,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1327 this -1550955123 +550668305 1 this.numer -1 @@ -44347,7 +45154,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1328 this -746244975 +963110412 1 this.numer 2 @@ -44370,7 +45177,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1329 this -834796345 +1624820151 1 this.numer 3 @@ -44419,7 +45226,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1330 this -911504564 +1219161283 1 this.numer 1 @@ -44471,7 +45278,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1332 this -1656353097 +2081191879 1 this.numer 1 @@ -44523,7 +45330,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1334 this -495985218 +2061347276 1 this.numer 1 @@ -44575,7 +45382,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1336 this -1639524919 +1559122513 1 this.numer 2 @@ -44627,7 +45434,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1338 this -1132638976 +1128096251 1 this.numer 3 @@ -44679,7 +45486,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1340 this -968222624 +1552978964 1 this.numer 5 @@ -44731,7 +45538,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1342 this -1434048249 +1259652483 1 this.numer 6 @@ -44783,7 +45590,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1344 this -839950662 +1699113578 1 this.numer 8 @@ -44835,7 +45642,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1346 this -1640764503 +1306324352 1 this.numer -1 @@ -44887,7 +45694,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1348 this -491490794 +355790875 1 this.numer 3 @@ -44916,7 +45723,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1350 this -1263668396 +2028017635 1 this.numer 1 @@ -44945,7 +45752,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1351 this -2008946389 +782378927 1 this.numer -1 @@ -44974,7 +45781,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1352 this -1624061789 +70807318 1 this.numer 100 @@ -45003,7 +45810,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1353 this -1089334353 +910091170 1 this.numer 2 @@ -45032,7 +45839,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1354 this -1144380196 +1183888521 1 this.numer -2 @@ -45061,7 +45868,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1355 this -734411640 +2041605291 1 this.numer 9 @@ -45080,7 +45887,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1356 this -491490794 +355790875 1 this.numer 3 @@ -45089,7 +45896,7 @@ this.denom 2 1 arg -911504564 +1219161283 1 arg.numer 1 @@ -45102,7 +45909,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1357 this -911504564 +1219161283 1 this.numer 1 @@ -45148,7 +45955,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1358 this -1667914171 +1052245076 1 this.numer -1 @@ -45167,7 +45974,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1357 this -911504564 +1219161283 1 this.numer 1 @@ -45176,7 +45983,7 @@ this.denom 2 1 return -1667914171 +1052245076 1 return.numer -1 @@ -45189,7 +45996,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1360 this -491490794 +355790875 1 this.numer 3 @@ -45198,7 +46005,7 @@ this.denom 2 1 arg -1667914171 +1052245076 1 arg.numer -1 @@ -45244,7 +46051,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1361 this -1529427706 +2136288211 1 this.numer 1 @@ -45263,7 +46070,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1360 this -491490794 +355790875 1 this.numer 3 @@ -45272,7 +46079,7 @@ this.denom 2 1 arg -1667914171 +1052245076 1 arg.numer -1 @@ -45281,7 +46088,7 @@ arg.denom 2 1 return -1529427706 +2136288211 1 return.numer 1 @@ -45294,7 +46101,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1356 this -491490794 +355790875 1 this.numer 3 @@ -45303,7 +46110,7 @@ this.denom 2 1 arg -911504564 +1219161283 1 arg.numer 1 @@ -45312,7 +46119,7 @@ arg.denom 2 1 return -1529427706 +2136288211 1 return.numer 1 @@ -45325,7 +46132,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1363 this -1529427706 +2136288211 1 this.numer 1 @@ -45338,7 +46145,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1364 this -1529427706 +2136288211 1 this.numer 1 @@ -45351,7 +46158,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1364 this -1529427706 +2136288211 1 this.numer 1 @@ -45367,7 +46174,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 1363 this -1529427706 +2136288211 1 this.numer 1 @@ -45376,7 +46183,7 @@ this.denom 1 1 return -1859683799 +1008925772 1 return.toString "1" @@ -45386,7 +46193,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1365 this -491490794 +355790875 1 this.numer 3 @@ -45395,7 +46202,7 @@ this.denom 2 1 arg -1656353097 +2081191879 1 arg.numer 1 @@ -45408,7 +46215,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1366 this -1656353097 +2081191879 1 this.numer 1 @@ -45454,7 +46261,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1367 this -1228611355 +1175259735 1 this.numer -1 @@ -45473,7 +46280,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1366 this -1656353097 +2081191879 1 this.numer 1 @@ -45482,7 +46289,7 @@ this.denom 3 1 return -1228611355 +1175259735 1 return.numer -1 @@ -45495,7 +46302,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1369 this -491490794 +355790875 1 this.numer 3 @@ -45504,7 +46311,7 @@ this.denom 2 1 arg -1228611355 +1175259735 1 arg.numer -1 @@ -45550,7 +46357,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1370 this -1215777580 +1205406622 1 this.numer 7 @@ -45569,7 +46376,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1369 this -491490794 +355790875 1 this.numer 3 @@ -45578,7 +46385,7 @@ this.denom 2 1 arg -1228611355 +1175259735 1 arg.numer -1 @@ -45587,7 +46394,7 @@ arg.denom 3 1 return -1215777580 +1205406622 1 return.numer 7 @@ -45600,7 +46407,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1365 this -491490794 +355790875 1 this.numer 3 @@ -45609,7 +46416,7 @@ this.denom 2 1 arg -1656353097 +2081191879 1 arg.numer 1 @@ -45618,7 +46425,7 @@ arg.denom 3 1 return -1215777580 +1205406622 1 return.numer 7 @@ -45631,7 +46438,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1372 this -1215777580 +1205406622 1 this.numer 7 @@ -45644,7 +46451,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1373 this -1215777580 +1205406622 1 this.numer 7 @@ -45657,7 +46464,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1373 this -1215777580 +1205406622 1 this.numer 7 @@ -45673,7 +46480,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 1372 this -1215777580 +1205406622 1 this.numer 7 @@ -45682,7 +46489,7 @@ this.denom 6 1 return -266885855 +293907205 1 return.toString "7/6" @@ -45699,7 +46506,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1374 this -1604710049 +988800485 1 this.numer 0 @@ -45722,7 +46529,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1375 this -114670870 +345902941 1 this.numer 1 @@ -45745,7 +46552,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1376 this -980480731 +454325163 1 this.numer -1 @@ -45768,7 +46575,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1377 this -1297622486 +796667727 1 this.numer 2 @@ -45791,7 +46598,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 1378 this -1444686917 +1794717576 1 this.numer 3 @@ -45840,7 +46647,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1379 this -1402901037 +251210093 1 this.numer 1 @@ -45892,7 +46699,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1381 this -1334768446 +919112242 1 this.numer 1 @@ -45944,7 +46751,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1383 this -839095360 +2021707251 1 this.numer 1 @@ -45996,7 +46803,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1385 this -150605671 +1541857308 1 this.numer 2 @@ -46048,7 +46855,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1387 this -1493776331 +479397964 1 this.numer 3 @@ -46100,7 +46907,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1389 this -1814961687 +1861781750 1 this.numer 5 @@ -46152,7 +46959,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1391 this -1203351421 +283717519 1 this.numer 6 @@ -46204,7 +47011,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1393 this -1873828948 +2095303566 1 this.numer 8 @@ -46256,7 +47063,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1395 this -595445781 +2025221430 1 this.numer -1 @@ -46308,7 +47115,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1397 this -383446247 +1378084334 1 this.numer 3 @@ -46337,7 +47144,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1399 this -2130132329 +200224114 1 this.numer 1 @@ -46366,7 +47173,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1400 this -434174366 +1773283386 1 this.numer -1 @@ -46395,7 +47202,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1401 this -19136856 +581318631 1 this.numer 100 @@ -46424,7 +47231,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1402 this -1658075389 +1877453512 1 this.numer 2 @@ -46453,7 +47260,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1403 this -1525259451 +487694075 1 this.numer -2 @@ -46482,7 +47289,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1404 this -523298718 +1704629915 1 this.numer 9 @@ -46501,7 +47308,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1405 this -1604710049 +988800485 1 this.numer 0 @@ -46510,7 +47317,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -46523,7 +47330,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1406 this -2130132329 +200224114 1 this.numer 1 @@ -46546,7 +47353,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1407 this -1136018961 +1989184704 1 this.numer -1 @@ -46565,7 +47372,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1406 this -2130132329 +200224114 1 this.numer 1 @@ -46574,7 +47381,7 @@ this.denom 0 1 return -1136018961 +1989184704 1 return.numer -1 @@ -46587,7 +47394,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1408 this -1604710049 +988800485 1 this.numer 0 @@ -46596,7 +47403,7 @@ this.denom 1 1 arg -1136018961 +1989184704 1 arg.numer -1 @@ -46619,7 +47426,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1409 this -1941055697 +611572016 1 this.numer -1 @@ -46638,7 +47445,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1408 this -1604710049 +988800485 1 this.numer 0 @@ -46647,7 +47454,7 @@ this.denom 1 1 arg -1136018961 +1989184704 1 arg.numer -1 @@ -46656,7 +47463,7 @@ arg.denom 0 1 return -1941055697 +611572016 1 return.numer -1 @@ -46669,7 +47476,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1405 this -1604710049 +988800485 1 this.numer 0 @@ -46678,7 +47485,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -46687,7 +47494,7 @@ arg.denom 0 1 return -1941055697 +611572016 1 return.numer -1 @@ -46700,7 +47507,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1410 this -1941055697 +611572016 1 this.numer -1 @@ -46713,7 +47520,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1411 this -1941055697 +611572016 1 this.numer -1 @@ -46726,7 +47533,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1411 this -1941055697 +611572016 1 this.numer -1 @@ -46742,7 +47549,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1410 this -1941055697 +611572016 1 this.numer -1 @@ -46751,7 +47558,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -46761,7 +47568,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1412 this -2130132329 +200224114 1 this.numer 1 @@ -46770,7 +47577,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -46783,7 +47590,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1413 this -1604710049 +988800485 1 this.numer 0 @@ -46829,7 +47636,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1414 this -899017902 +889486595 1 this.numer 0 @@ -46848,7 +47655,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1413 this -1604710049 +988800485 1 this.numer 0 @@ -46857,7 +47664,7 @@ this.denom 1 1 return -899017902 +889486595 1 return.numer 0 @@ -46870,7 +47677,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1416 this -2130132329 +200224114 1 this.numer 1 @@ -46879,7 +47686,7 @@ this.denom 0 1 arg -899017902 +889486595 1 arg.numer 0 @@ -46902,7 +47709,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1417 this -98938622 +77269878 1 this.numer 1 @@ -46921,7 +47728,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1416 this -2130132329 +200224114 1 this.numer 1 @@ -46930,7 +47737,7 @@ this.denom 0 1 arg -899017902 +889486595 1 arg.numer 0 @@ -46939,7 +47746,7 @@ arg.denom 1 1 return -98938622 +77269878 1 return.numer 1 @@ -46952,7 +47759,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1412 this -2130132329 +200224114 1 this.numer 1 @@ -46961,7 +47768,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -46970,7 +47777,7 @@ arg.denom 1 1 return -98938622 +77269878 1 return.numer 1 @@ -46983,7 +47790,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1418 this -98938622 +77269878 1 this.numer 1 @@ -46996,7 +47803,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1419 this -98938622 +77269878 1 this.numer 1 @@ -47009,7 +47816,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1419 this -98938622 +77269878 1 this.numer 1 @@ -47025,7 +47832,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1418 this -98938622 +77269878 1 this.numer 1 @@ -47034,7 +47841,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -47044,7 +47851,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1420 this -1604710049 +988800485 1 this.numer 0 @@ -47053,7 +47860,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -47066,7 +47873,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1421 this -434174366 +1773283386 1 this.numer -1 @@ -47089,7 +47896,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1422 this -709077176 +1990160809 1 this.numer 1 @@ -47108,7 +47915,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1421 this -434174366 +1773283386 1 this.numer -1 @@ -47117,7 +47924,7 @@ this.denom 0 1 return -709077176 +1990160809 1 return.numer 1 @@ -47130,7 +47937,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1423 this -1604710049 +988800485 1 this.numer 0 @@ -47139,7 +47946,7 @@ this.denom 1 1 arg -709077176 +1990160809 1 arg.numer 1 @@ -47162,7 +47969,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1424 this -1073339829 +1285524499 1 this.numer 1 @@ -47181,7 +47988,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1423 this -1604710049 +988800485 1 this.numer 0 @@ -47190,7 +47997,7 @@ this.denom 1 1 arg -709077176 +1990160809 1 arg.numer 1 @@ -47199,7 +48006,7 @@ arg.denom 0 1 return -1073339829 +1285524499 1 return.numer 1 @@ -47212,7 +48019,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1420 this -1604710049 +988800485 1 this.numer 0 @@ -47221,7 +48028,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -47230,7 +48037,7 @@ arg.denom 0 1 return -1073339829 +1285524499 1 return.numer 1 @@ -47243,7 +48050,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1425 this -1073339829 +1285524499 1 this.numer 1 @@ -47256,7 +48063,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1426 this -1073339829 +1285524499 1 this.numer 1 @@ -47269,7 +48076,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1426 this -1073339829 +1285524499 1 this.numer 1 @@ -47285,7 +48092,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1425 this -1073339829 +1285524499 1 this.numer 1 @@ -47294,7 +48101,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -47304,7 +48111,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1427 this -434174366 +1773283386 1 this.numer -1 @@ -47313,7 +48120,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -47326,7 +48133,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1428 this -1604710049 +988800485 1 this.numer 0 @@ -47372,7 +48179,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1429 this -759871203 +1524960486 1 this.numer 0 @@ -47391,7 +48198,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1428 this -1604710049 +988800485 1 this.numer 0 @@ -47400,7 +48207,7 @@ this.denom 1 1 return -759871203 +1524960486 1 return.numer 0 @@ -47413,7 +48220,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1431 this -434174366 +1773283386 1 this.numer -1 @@ -47422,7 +48229,7 @@ this.denom 0 1 arg -759871203 +1524960486 1 arg.numer 0 @@ -47445,7 +48252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1432 this -70060112 +117009527 1 this.numer -1 @@ -47464,7 +48271,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1431 this -434174366 +1773283386 1 this.numer -1 @@ -47473,7 +48280,7 @@ this.denom 0 1 arg -759871203 +1524960486 1 arg.numer 0 @@ -47482,7 +48289,7 @@ arg.denom 1 1 return -70060112 +117009527 1 return.numer -1 @@ -47495,7 +48302,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1427 this -434174366 +1773283386 1 this.numer -1 @@ -47504,7 +48311,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -47513,7 +48320,7 @@ arg.denom 1 1 return -70060112 +117009527 1 return.numer -1 @@ -47526,7 +48333,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1433 this -70060112 +117009527 1 this.numer -1 @@ -47539,7 +48346,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1434 this -70060112 +117009527 1 this.numer -1 @@ -47552,7 +48359,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1434 this -70060112 +117009527 1 this.numer -1 @@ -47568,7 +48375,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1433 this -70060112 +117009527 1 this.numer -1 @@ -47577,7 +48384,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -47587,7 +48394,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1435 this -1604710049 +988800485 1 this.numer 0 @@ -47596,7 +48403,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -47609,7 +48416,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1436 this -19136856 +581318631 1 this.numer 100 @@ -47632,7 +48439,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1437 this -679263828 +199640888 1 this.numer -100 @@ -47651,7 +48458,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1436 this -19136856 +581318631 1 this.numer 100 @@ -47660,7 +48467,7 @@ this.denom 0 1 return -679263828 +199640888 1 return.numer -100 @@ -47673,7 +48480,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1438 this -1604710049 +988800485 1 this.numer 0 @@ -47682,7 +48489,7 @@ this.denom 1 1 arg -679263828 +199640888 1 arg.numer -100 @@ -47705,7 +48512,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1439 this -364089744 +1000975683 1 this.numer -100 @@ -47724,7 +48531,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1438 this -1604710049 +988800485 1 this.numer 0 @@ -47733,7 +48540,7 @@ this.denom 1 1 arg -679263828 +199640888 1 arg.numer -100 @@ -47742,7 +48549,7 @@ arg.denom 0 1 return -364089744 +1000975683 1 return.numer -100 @@ -47755,7 +48562,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1435 this -1604710049 +988800485 1 this.numer 0 @@ -47764,7 +48571,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -47773,7 +48580,7 @@ arg.denom 0 1 return -364089744 +1000975683 1 return.numer -100 @@ -47786,7 +48593,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1440 this -364089744 +1000975683 1 this.numer -100 @@ -47799,7 +48606,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1441 this -364089744 +1000975683 1 this.numer -100 @@ -47812,7 +48619,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1441 this -364089744 +1000975683 1 this.numer -100 @@ -47828,7 +48635,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1440 this -364089744 +1000975683 1 this.numer -100 @@ -47837,7 +48644,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -47847,7 +48654,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1442 this -19136856 +581318631 1 this.numer 100 @@ -47856,7 +48663,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -47869,7 +48676,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1443 this -1604710049 +988800485 1 this.numer 0 @@ -47915,7 +48722,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1444 this -1075417105 +1238959340 1 this.numer 0 @@ -47934,7 +48741,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1443 this -1604710049 +988800485 1 this.numer 0 @@ -47943,7 +48750,7 @@ this.denom 1 1 return -1075417105 +1238959340 1 return.numer 0 @@ -47956,7 +48763,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1446 this -19136856 +581318631 1 this.numer 100 @@ -47965,7 +48772,7 @@ this.denom 0 1 arg -1075417105 +1238959340 1 arg.numer 0 @@ -47988,7 +48795,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1447 this -1312910583 +76432244 1 this.numer 100 @@ -48007,7 +48814,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1446 this -19136856 +581318631 1 this.numer 100 @@ -48016,7 +48823,7 @@ this.denom 0 1 arg -1075417105 +1238959340 1 arg.numer 0 @@ -48025,7 +48832,7 @@ arg.denom 1 1 return -1312910583 +76432244 1 return.numer 100 @@ -48038,7 +48845,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1442 this -19136856 +581318631 1 this.numer 100 @@ -48047,7 +48854,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -48056,7 +48863,7 @@ arg.denom 1 1 return -1312910583 +76432244 1 return.numer 100 @@ -48069,7 +48876,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1448 this -1312910583 +76432244 1 this.numer 100 @@ -48082,7 +48889,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1449 this -1312910583 +76432244 1 this.numer 100 @@ -48095,7 +48902,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1449 this -1312910583 +76432244 1 this.numer 100 @@ -48111,7 +48918,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1448 this -1312910583 +76432244 1 this.numer 100 @@ -48120,7 +48927,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -48130,7 +48937,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1450 this -1604710049 +988800485 1 this.numer 0 @@ -48139,7 +48946,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -48152,7 +48959,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1451 this -1658075389 +1877453512 1 this.numer 2 @@ -48175,7 +48982,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1452 this -693695556 +1030228826 1 this.numer -2 @@ -48194,7 +49001,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1451 this -1658075389 +1877453512 1 this.numer 2 @@ -48203,7 +49010,7 @@ this.denom 0 1 return -693695556 +1030228826 1 return.numer -2 @@ -48216,7 +49023,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1453 this -1604710049 +988800485 1 this.numer 0 @@ -48225,7 +49032,7 @@ this.denom 1 1 arg -693695556 +1030228826 1 arg.numer -2 @@ -48248,7 +49055,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1454 this -252490129 +1264413185 1 this.numer -2 @@ -48267,7 +49074,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1453 this -1604710049 +988800485 1 this.numer 0 @@ -48276,7 +49083,7 @@ this.denom 1 1 arg -693695556 +1030228826 1 arg.numer -2 @@ -48285,7 +49092,7 @@ arg.denom 0 1 return -252490129 +1264413185 1 return.numer -2 @@ -48298,7 +49105,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1450 this -1604710049 +988800485 1 this.numer 0 @@ -48307,7 +49114,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -48316,7 +49123,7 @@ arg.denom 0 1 return -252490129 +1264413185 1 return.numer -2 @@ -48329,7 +49136,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1455 this -252490129 +1264413185 1 this.numer -2 @@ -48342,7 +49149,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1456 this -252490129 +1264413185 1 this.numer -2 @@ -48355,7 +49162,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1456 this -252490129 +1264413185 1 this.numer -2 @@ -48371,7 +49178,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1455 this -252490129 +1264413185 1 this.numer -2 @@ -48380,7 +49187,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -48390,7 +49197,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1457 this -1658075389 +1877453512 1 this.numer 2 @@ -48399,7 +49206,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -48412,7 +49219,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1458 this -1604710049 +988800485 1 this.numer 0 @@ -48458,7 +49265,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1459 this -173911631 +1243806178 1 this.numer 0 @@ -48477,7 +49284,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1458 this -1604710049 +988800485 1 this.numer 0 @@ -48486,7 +49293,7 @@ this.denom 1 1 return -173911631 +1243806178 1 return.numer 0 @@ -48499,7 +49306,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1461 this -1658075389 +1877453512 1 this.numer 2 @@ -48508,7 +49315,7 @@ this.denom 0 1 arg -173911631 +1243806178 1 arg.numer 0 @@ -48531,7 +49338,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1462 this -207538650 +1010931249 1 this.numer 2 @@ -48550,7 +49357,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1461 this -1658075389 +1877453512 1 this.numer 2 @@ -48559,7 +49366,7 @@ this.denom 0 1 arg -173911631 +1243806178 1 arg.numer 0 @@ -48568,7 +49375,7 @@ arg.denom 1 1 return -207538650 +1010931249 1 return.numer 2 @@ -48581,7 +49388,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1457 this -1658075389 +1877453512 1 this.numer 2 @@ -48590,7 +49397,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -48599,7 +49406,7 @@ arg.denom 1 1 return -207538650 +1010931249 1 return.numer 2 @@ -48612,7 +49419,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1463 this -207538650 +1010931249 1 this.numer 2 @@ -48625,7 +49432,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1464 this -207538650 +1010931249 1 this.numer 2 @@ -48638,7 +49445,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1464 this -207538650 +1010931249 1 this.numer 2 @@ -48654,7 +49461,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1463 this -207538650 +1010931249 1 this.numer 2 @@ -48663,7 +49470,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -48673,7 +49480,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1465 this -1604710049 +988800485 1 this.numer 0 @@ -48682,7 +49489,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -48695,7 +49502,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1466 this -1525259451 +487694075 1 this.numer -2 @@ -48718,7 +49525,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1467 this -588647822 +1099855928 1 this.numer 2 @@ -48737,7 +49544,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1466 this -1525259451 +487694075 1 this.numer -2 @@ -48746,7 +49553,7 @@ this.denom 0 1 return -588647822 +1099855928 1 return.numer 2 @@ -48759,7 +49566,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1468 this -1604710049 +988800485 1 this.numer 0 @@ -48768,7 +49575,7 @@ this.denom 1 1 arg -588647822 +1099855928 1 arg.numer 2 @@ -48791,7 +49598,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1469 this -2094266272 +1629687658 1 this.numer 2 @@ -48810,7 +49617,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1468 this -1604710049 +988800485 1 this.numer 0 @@ -48819,7 +49626,7 @@ this.denom 1 1 arg -588647822 +1099855928 1 arg.numer 2 @@ -48828,7 +49635,7 @@ arg.denom 0 1 return -2094266272 +1629687658 1 return.numer 2 @@ -48841,7 +49648,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1465 this -1604710049 +988800485 1 this.numer 0 @@ -48850,7 +49657,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -48859,7 +49666,7 @@ arg.denom 0 1 return -2094266272 +1629687658 1 return.numer 2 @@ -48872,7 +49679,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1470 this -2094266272 +1629687658 1 this.numer 2 @@ -48885,7 +49692,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1471 this -2094266272 +1629687658 1 this.numer 2 @@ -48898,7 +49705,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1471 this -2094266272 +1629687658 1 this.numer 2 @@ -48914,7 +49721,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1470 this -2094266272 +1629687658 1 this.numer 2 @@ -48923,7 +49730,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -48933,7 +49740,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1472 this -1525259451 +487694075 1 this.numer -2 @@ -48942,7 +49749,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -48955,7 +49762,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1473 this -1604710049 +988800485 1 this.numer 0 @@ -49001,7 +49808,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1474 this -1076259174 +1007880005 1 this.numer 0 @@ -49020,7 +49827,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1473 this -1604710049 +988800485 1 this.numer 0 @@ -49029,7 +49836,7 @@ this.denom 1 1 return -1076259174 +1007880005 1 return.numer 0 @@ -49042,7 +49849,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1476 this -1525259451 +487694075 1 this.numer -2 @@ -49051,7 +49858,7 @@ this.denom 0 1 arg -1076259174 +1007880005 1 arg.numer 0 @@ -49074,7 +49881,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1477 this -433178737 +215219944 1 this.numer -2 @@ -49093,7 +49900,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1476 this -1525259451 +487694075 1 this.numer -2 @@ -49102,7 +49909,7 @@ this.denom 0 1 arg -1076259174 +1007880005 1 arg.numer 0 @@ -49111,7 +49918,7 @@ arg.denom 1 1 return -433178737 +215219944 1 return.numer -2 @@ -49124,7 +49931,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1472 this -1525259451 +487694075 1 this.numer -2 @@ -49133,7 +49940,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -49142,7 +49949,7 @@ arg.denom 1 1 return -433178737 +215219944 1 return.numer -2 @@ -49155,7 +49962,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1478 this -433178737 +215219944 1 this.numer -2 @@ -49168,7 +49975,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1479 this -433178737 +215219944 1 this.numer -2 @@ -49181,7 +49988,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1479 this -433178737 +215219944 1 this.numer -2 @@ -49197,7 +50004,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1478 this -433178737 +215219944 1 this.numer -2 @@ -49206,7 +50013,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -49216,7 +50023,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1480 this -1604710049 +988800485 1 this.numer 0 @@ -49225,7 +50032,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -49238,7 +50045,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1481 this -523298718 +1704629915 1 this.numer 9 @@ -49261,7 +50068,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1482 this -465469429 +1043208434 1 this.numer -9 @@ -49280,7 +50087,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1481 this -523298718 +1704629915 1 this.numer 9 @@ -49289,7 +50096,7 @@ this.denom 0 1 return -465469429 +1043208434 1 return.numer -9 @@ -49302,7 +50109,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1483 this -1604710049 +988800485 1 this.numer 0 @@ -49311,7 +50118,7 @@ this.denom 1 1 arg -465469429 +1043208434 1 arg.numer -9 @@ -49334,7 +50141,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1484 this -2009250829 +1192171522 1 this.numer -9 @@ -49353,7 +50160,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1483 this -1604710049 +988800485 1 this.numer 0 @@ -49362,7 +50169,7 @@ this.denom 1 1 arg -465469429 +1043208434 1 arg.numer -9 @@ -49371,7 +50178,7 @@ arg.denom 0 1 return -2009250829 +1192171522 1 return.numer -9 @@ -49384,7 +50191,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1480 this -1604710049 +988800485 1 this.numer 0 @@ -49393,7 +50200,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -49402,7 +50209,7 @@ arg.denom 0 1 return -2009250829 +1192171522 1 return.numer -9 @@ -49415,7 +50222,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1485 this -2009250829 +1192171522 1 this.numer -9 @@ -49428,7 +50235,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1486 this -2009250829 +1192171522 1 this.numer -9 @@ -49441,7 +50248,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1486 this -2009250829 +1192171522 1 this.numer -9 @@ -49457,7 +50264,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1485 this -2009250829 +1192171522 1 this.numer -9 @@ -49466,7 +50273,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -49476,7 +50283,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1487 this -523298718 +1704629915 1 this.numer 9 @@ -49485,7 +50292,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -49498,7 +50305,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1488 this -1604710049 +988800485 1 this.numer 0 @@ -49544,7 +50351,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1489 this -298333928 +1661081225 1 this.numer 0 @@ -49563,7 +50370,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1488 this -1604710049 +988800485 1 this.numer 0 @@ -49572,7 +50379,7 @@ this.denom 1 1 return -298333928 +1661081225 1 return.numer 0 @@ -49585,7 +50392,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1491 this -523298718 +1704629915 1 this.numer 9 @@ -49594,7 +50401,7 @@ this.denom 0 1 arg -298333928 +1661081225 1 arg.numer 0 @@ -49617,7 +50424,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1492 this -1871495798 +1882554559 1 this.numer 9 @@ -49636,7 +50443,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1491 this -523298718 +1704629915 1 this.numer 9 @@ -49645,7 +50452,7 @@ this.denom 0 1 arg -298333928 +1661081225 1 arg.numer 0 @@ -49654,7 +50461,7 @@ arg.denom 1 1 return -1871495798 +1882554559 1 return.numer 9 @@ -49667,7 +50474,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1487 this -523298718 +1704629915 1 this.numer 9 @@ -49676,7 +50483,7 @@ this.denom 0 1 arg -1604710049 +988800485 1 arg.numer 0 @@ -49685,7 +50492,7 @@ arg.denom 1 1 return -1871495798 +1882554559 1 return.numer 9 @@ -49698,7 +50505,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1493 this -1871495798 +1882554559 1 this.numer 9 @@ -49711,7 +50518,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1494 this -1871495798 +1882554559 1 this.numer 9 @@ -49724,7 +50531,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1494 this -1871495798 +1882554559 1 this.numer 9 @@ -49740,7 +50547,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1493 this -1871495798 +1882554559 1 this.numer 9 @@ -49749,7 +50556,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -49759,7 +50566,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1495 this -114670870 +345902941 1 this.numer 1 @@ -49768,7 +50575,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -49781,7 +50588,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1496 this -2130132329 +200224114 1 this.numer 1 @@ -49804,7 +50611,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1497 this -36899377 +1049817027 1 this.numer -1 @@ -49823,7 +50630,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1496 this -2130132329 +200224114 1 this.numer 1 @@ -49832,7 +50639,7 @@ this.denom 0 1 return -36899377 +1049817027 1 return.numer -1 @@ -49845,7 +50652,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1498 this -114670870 +345902941 1 this.numer 1 @@ -49854,7 +50661,7 @@ this.denom 1 1 arg -36899377 +1049817027 1 arg.numer -1 @@ -49877,7 +50684,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1499 this -1692538903 +23211803 1 this.numer -1 @@ -49896,7 +50703,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1498 this -114670870 +345902941 1 this.numer 1 @@ -49905,7 +50712,7 @@ this.denom 1 1 arg -36899377 +1049817027 1 arg.numer -1 @@ -49914,7 +50721,7 @@ arg.denom 0 1 return -1692538903 +23211803 1 return.numer -1 @@ -49927,7 +50734,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1495 this -114670870 +345902941 1 this.numer 1 @@ -49936,7 +50743,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -49945,7 +50752,7 @@ arg.denom 0 1 return -1692538903 +23211803 1 return.numer -1 @@ -49958,7 +50765,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1500 this -1692538903 +23211803 1 this.numer -1 @@ -49971,7 +50778,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1501 this -1692538903 +23211803 1 this.numer -1 @@ -49984,7 +50791,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1501 this -1692538903 +23211803 1 this.numer -1 @@ -50000,7 +50807,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1500 this -1692538903 +23211803 1 this.numer -1 @@ -50009,7 +50816,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -50019,7 +50826,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1502 this -2130132329 +200224114 1 this.numer 1 @@ -50028,7 +50835,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -50041,7 +50848,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1503 this -114670870 +345902941 1 this.numer 1 @@ -50087,7 +50894,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1504 this -932954559 +1923598304 1 this.numer -1 @@ -50106,7 +50913,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1503 this -114670870 +345902941 1 this.numer 1 @@ -50115,7 +50922,7 @@ this.denom 1 1 return -932954559 +1923598304 1 return.numer -1 @@ -50128,7 +50935,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1506 this -2130132329 +200224114 1 this.numer 1 @@ -50137,7 +50944,7 @@ this.denom 0 1 arg -932954559 +1923598304 1 arg.numer -1 @@ -50160,7 +50967,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1507 this -1389166366 +776700275 1 this.numer 1 @@ -50179,7 +50986,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1506 this -2130132329 +200224114 1 this.numer 1 @@ -50188,7 +50995,7 @@ this.denom 0 1 arg -932954559 +1923598304 1 arg.numer -1 @@ -50197,7 +51004,7 @@ arg.denom 1 1 return -1389166366 +776700275 1 return.numer 1 @@ -50210,7 +51017,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1502 this -2130132329 +200224114 1 this.numer 1 @@ -50219,7 +51026,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -50228,7 +51035,7 @@ arg.denom 1 1 return -1389166366 +776700275 1 return.numer 1 @@ -50241,7 +51048,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1508 this -1389166366 +776700275 1 this.numer 1 @@ -50254,7 +51061,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1509 this -1389166366 +776700275 1 this.numer 1 @@ -50267,7 +51074,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1509 this -1389166366 +776700275 1 this.numer 1 @@ -50283,7 +51090,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1508 this -1389166366 +776700275 1 this.numer 1 @@ -50292,7 +51099,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -50302,7 +51109,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1510 this -114670870 +345902941 1 this.numer 1 @@ -50311,7 +51118,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -50324,7 +51131,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1511 this -434174366 +1773283386 1 this.numer -1 @@ -50347,7 +51154,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1512 this -276903178 +118394766 1 this.numer 1 @@ -50366,7 +51173,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1511 this -434174366 +1773283386 1 this.numer -1 @@ -50375,7 +51182,7 @@ this.denom 0 1 return -276903178 +118394766 1 return.numer 1 @@ -50388,7 +51195,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1513 this -114670870 +345902941 1 this.numer 1 @@ -50397,7 +51204,7 @@ this.denom 1 1 arg -276903178 +118394766 1 arg.numer 1 @@ -50420,7 +51227,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1514 this -314649597 +386163331 1 this.numer 1 @@ -50439,7 +51246,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1513 this -114670870 +345902941 1 this.numer 1 @@ -50448,7 +51255,7 @@ this.denom 1 1 arg -276903178 +118394766 1 arg.numer 1 @@ -50457,7 +51264,7 @@ arg.denom 0 1 return -314649597 +386163331 1 return.numer 1 @@ -50470,7 +51277,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1510 this -114670870 +345902941 1 this.numer 1 @@ -50479,7 +51286,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -50488,7 +51295,7 @@ arg.denom 0 1 return -314649597 +386163331 1 return.numer 1 @@ -50501,7 +51308,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1515 this -314649597 +386163331 1 this.numer 1 @@ -50514,7 +51321,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1516 this -314649597 +386163331 1 this.numer 1 @@ -50527,7 +51334,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1516 this -314649597 +386163331 1 this.numer 1 @@ -50543,7 +51350,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1515 this -314649597 +386163331 1 this.numer 1 @@ -50552,7 +51359,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -50562,7 +51369,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1517 this -434174366 +1773283386 1 this.numer -1 @@ -50571,7 +51378,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -50584,7 +51391,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1518 this -114670870 +345902941 1 this.numer 1 @@ -50630,7 +51437,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1519 this -1211037865 +1540374340 1 this.numer -1 @@ -50649,7 +51456,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1518 this -114670870 +345902941 1 this.numer 1 @@ -50658,7 +51465,7 @@ this.denom 1 1 return -1211037865 +1540374340 1 return.numer -1 @@ -50671,7 +51478,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1521 this -434174366 +1773283386 1 this.numer -1 @@ -50680,7 +51487,7 @@ this.denom 0 1 arg -1211037865 +1540374340 1 arg.numer -1 @@ -50703,7 +51510,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1522 this -63390789 +694316372 1 this.numer -1 @@ -50722,7 +51529,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1521 this -434174366 +1773283386 1 this.numer -1 @@ -50731,7 +51538,7 @@ this.denom 0 1 arg -1211037865 +1540374340 1 arg.numer -1 @@ -50740,7 +51547,7 @@ arg.denom 1 1 return -63390789 +694316372 1 return.numer -1 @@ -50753,7 +51560,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1517 this -434174366 +1773283386 1 this.numer -1 @@ -50762,7 +51569,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -50771,7 +51578,7 @@ arg.denom 1 1 return -63390789 +694316372 1 return.numer -1 @@ -50784,7 +51591,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1523 this -63390789 +694316372 1 this.numer -1 @@ -50797,7 +51604,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1524 this -63390789 +694316372 1 this.numer -1 @@ -50810,7 +51617,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1524 this -63390789 +694316372 1 this.numer -1 @@ -50826,7 +51633,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1523 this -63390789 +694316372 1 this.numer -1 @@ -50835,7 +51642,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -50845,7 +51652,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1525 this -114670870 +345902941 1 this.numer 1 @@ -50854,7 +51661,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -50867,7 +51674,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1526 this -19136856 +581318631 1 this.numer 100 @@ -50890,7 +51697,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1527 this -257101811 +1516500233 1 this.numer -100 @@ -50909,7 +51716,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1526 this -19136856 +581318631 1 this.numer 100 @@ -50918,7 +51725,7 @@ this.denom 0 1 return -257101811 +1516500233 1 return.numer -100 @@ -50931,7 +51738,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1528 this -114670870 +345902941 1 this.numer 1 @@ -50940,7 +51747,7 @@ this.denom 1 1 arg -257101811 +1516500233 1 arg.numer -100 @@ -50963,7 +51770,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1529 this -373039713 +1850180796 1 this.numer -100 @@ -50982,7 +51789,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1528 this -114670870 +345902941 1 this.numer 1 @@ -50991,7 +51798,7 @@ this.denom 1 1 arg -257101811 +1516500233 1 arg.numer -100 @@ -51000,7 +51807,7 @@ arg.denom 0 1 return -373039713 +1850180796 1 return.numer -100 @@ -51013,7 +51820,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1525 this -114670870 +345902941 1 this.numer 1 @@ -51022,7 +51829,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -51031,7 +51838,7 @@ arg.denom 0 1 return -373039713 +1850180796 1 return.numer -100 @@ -51044,7 +51851,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1530 this -373039713 +1850180796 1 this.numer -100 @@ -51057,7 +51864,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1531 this -373039713 +1850180796 1 this.numer -100 @@ -51070,7 +51877,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1531 this -373039713 +1850180796 1 this.numer -100 @@ -51086,7 +51893,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1530 this -373039713 +1850180796 1 this.numer -100 @@ -51095,7 +51902,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -51105,7 +51912,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1532 this -19136856 +581318631 1 this.numer 100 @@ -51114,7 +51921,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -51127,7 +51934,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1533 this -114670870 +345902941 1 this.numer 1 @@ -51173,7 +51980,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1534 this -1173690798 +884452399 1 this.numer -1 @@ -51192,7 +51999,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1533 this -114670870 +345902941 1 this.numer 1 @@ -51201,7 +52008,7 @@ this.denom 1 1 return -1173690798 +884452399 1 return.numer -1 @@ -51214,7 +52021,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1536 this -19136856 +581318631 1 this.numer 100 @@ -51223,7 +52030,7 @@ this.denom 0 1 arg -1173690798 +884452399 1 arg.numer -1 @@ -51246,7 +52053,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1537 this -1583944291 +235237152 1 this.numer 100 @@ -51265,7 +52072,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1536 this -19136856 +581318631 1 this.numer 100 @@ -51274,7 +52081,7 @@ this.denom 0 1 arg -1173690798 +884452399 1 arg.numer -1 @@ -51283,7 +52090,7 @@ arg.denom 1 1 return -1583944291 +235237152 1 return.numer 100 @@ -51296,7 +52103,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1532 this -19136856 +581318631 1 this.numer 100 @@ -51305,7 +52112,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -51314,7 +52121,7 @@ arg.denom 1 1 return -1583944291 +235237152 1 return.numer 100 @@ -51327,7 +52134,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1538 this -1583944291 +235237152 1 this.numer 100 @@ -51340,7 +52147,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1539 this -1583944291 +235237152 1 this.numer 100 @@ -51353,7 +52160,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1539 this -1583944291 +235237152 1 this.numer 100 @@ -51369,7 +52176,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1538 this -1583944291 +235237152 1 this.numer 100 @@ -51378,7 +52185,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -51388,7 +52195,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1540 this -114670870 +345902941 1 this.numer 1 @@ -51397,7 +52204,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -51410,7 +52217,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1541 this -1658075389 +1877453512 1 this.numer 2 @@ -51433,7 +52240,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1542 this -1144410625 +1259014228 1 this.numer -2 @@ -51452,7 +52259,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1541 this -1658075389 +1877453512 1 this.numer 2 @@ -51461,7 +52268,7 @@ this.denom 0 1 return -1144410625 +1259014228 1 return.numer -2 @@ -51474,7 +52281,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1543 this -114670870 +345902941 1 this.numer 1 @@ -51483,7 +52290,7 @@ this.denom 1 1 arg -1144410625 +1259014228 1 arg.numer -2 @@ -51506,7 +52313,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1544 this -1245831843 +431687661 1 this.numer -2 @@ -51525,7 +52332,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1543 this -114670870 +345902941 1 this.numer 1 @@ -51534,7 +52341,7 @@ this.denom 1 1 arg -1144410625 +1259014228 1 arg.numer -2 @@ -51543,7 +52350,7 @@ arg.denom 0 1 return -1245831843 +431687661 1 return.numer -2 @@ -51556,7 +52363,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1540 this -114670870 +345902941 1 this.numer 1 @@ -51565,7 +52372,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -51574,7 +52381,7 @@ arg.denom 0 1 return -1245831843 +431687661 1 return.numer -2 @@ -51587,7 +52394,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1545 this -1245831843 +431687661 1 this.numer -2 @@ -51600,7 +52407,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1546 this -1245831843 +431687661 1 this.numer -2 @@ -51613,7 +52420,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1546 this -1245831843 +431687661 1 this.numer -2 @@ -51629,7 +52436,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1545 this -1245831843 +431687661 1 this.numer -2 @@ -51638,7 +52445,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -51648,7 +52455,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1547 this -1658075389 +1877453512 1 this.numer 2 @@ -51657,7 +52464,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -51670,7 +52477,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1548 this -114670870 +345902941 1 this.numer 1 @@ -51716,7 +52523,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1549 this -730227051 +283383329 1 this.numer -1 @@ -51735,7 +52542,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1548 this -114670870 +345902941 1 this.numer 1 @@ -51744,7 +52551,7 @@ this.denom 1 1 return -730227051 +283383329 1 return.numer -1 @@ -51757,7 +52564,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1551 this -1658075389 +1877453512 1 this.numer 2 @@ -51766,7 +52573,7 @@ this.denom 0 1 arg -730227051 +283383329 1 arg.numer -1 @@ -51789,7 +52596,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1552 this -57003552 +893192050 1 this.numer 2 @@ -51808,7 +52615,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1551 this -1658075389 +1877453512 1 this.numer 2 @@ -51817,7 +52624,7 @@ this.denom 0 1 arg -730227051 +283383329 1 arg.numer -1 @@ -51826,7 +52633,7 @@ arg.denom 1 1 return -57003552 +893192050 1 return.numer 2 @@ -51839,7 +52646,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1547 this -1658075389 +1877453512 1 this.numer 2 @@ -51848,7 +52655,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -51857,7 +52664,7 @@ arg.denom 1 1 return -57003552 +893192050 1 return.numer 2 @@ -51870,7 +52677,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1553 this -57003552 +893192050 1 this.numer 2 @@ -51883,7 +52690,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1554 this -57003552 +893192050 1 this.numer 2 @@ -51896,7 +52703,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1554 this -57003552 +893192050 1 this.numer 2 @@ -51912,7 +52719,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1553 this -57003552 +893192050 1 this.numer 2 @@ -51921,7 +52728,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -51931,7 +52738,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1555 this -114670870 +345902941 1 this.numer 1 @@ -51940,7 +52747,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -51953,7 +52760,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1556 this -1525259451 +487694075 1 this.numer -2 @@ -51976,7 +52783,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1557 this -280991902 +644345897 1 this.numer 2 @@ -51995,7 +52802,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1556 this -1525259451 +487694075 1 this.numer -2 @@ -52004,7 +52811,7 @@ this.denom 0 1 return -280991902 +644345897 1 return.numer 2 @@ -52017,7 +52824,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1558 this -114670870 +345902941 1 this.numer 1 @@ -52026,7 +52833,7 @@ this.denom 1 1 arg -280991902 +644345897 1 arg.numer 2 @@ -52049,7 +52856,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1559 this -314357161 +1738674023 1 this.numer 2 @@ -52068,7 +52875,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1558 this -114670870 +345902941 1 this.numer 1 @@ -52077,7 +52884,7 @@ this.denom 1 1 arg -280991902 +644345897 1 arg.numer 2 @@ -52086,7 +52893,7 @@ arg.denom 0 1 return -314357161 +1738674023 1 return.numer 2 @@ -52099,7 +52906,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1555 this -114670870 +345902941 1 this.numer 1 @@ -52108,7 +52915,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -52117,7 +52924,7 @@ arg.denom 0 1 return -314357161 +1738674023 1 return.numer 2 @@ -52130,7 +52937,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1560 this -314357161 +1738674023 1 this.numer 2 @@ -52143,7 +52950,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1561 this -314357161 +1738674023 1 this.numer 2 @@ -52156,7 +52963,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1561 this -314357161 +1738674023 1 this.numer 2 @@ -52172,7 +52979,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1560 this -314357161 +1738674023 1 this.numer 2 @@ -52181,7 +52988,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -52191,7 +52998,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1562 this -1525259451 +487694075 1 this.numer -2 @@ -52200,7 +53007,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -52213,7 +53020,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1563 this -114670870 +345902941 1 this.numer 1 @@ -52259,7 +53066,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1564 this -591033307 +1472682156 1 this.numer -1 @@ -52278,7 +53085,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1563 this -114670870 +345902941 1 this.numer 1 @@ -52287,7 +53094,7 @@ this.denom 1 1 return -591033307 +1472682156 1 return.numer -1 @@ -52300,7 +53107,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1566 this -1525259451 +487694075 1 this.numer -2 @@ -52309,7 +53116,7 @@ this.denom 0 1 arg -591033307 +1472682156 1 arg.numer -1 @@ -52332,7 +53139,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1567 this -1384923374 +178049969 1 this.numer -2 @@ -52351,7 +53158,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1566 this -1525259451 +487694075 1 this.numer -2 @@ -52360,7 +53167,7 @@ this.denom 0 1 arg -591033307 +1472682156 1 arg.numer -1 @@ -52369,7 +53176,7 @@ arg.denom 1 1 return -1384923374 +178049969 1 return.numer -2 @@ -52382,7 +53189,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1562 this -1525259451 +487694075 1 this.numer -2 @@ -52391,7 +53198,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -52400,7 +53207,7 @@ arg.denom 1 1 return -1384923374 +178049969 1 return.numer -2 @@ -52413,7 +53220,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1568 this -1384923374 +178049969 1 this.numer -2 @@ -52426,7 +53233,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1569 this -1384923374 +178049969 1 this.numer -2 @@ -52439,7 +53246,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1569 this -1384923374 +178049969 1 this.numer -2 @@ -52455,7 +53262,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1568 this -1384923374 +178049969 1 this.numer -2 @@ -52464,7 +53271,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -52474,7 +53281,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1570 this -114670870 +345902941 1 this.numer 1 @@ -52483,7 +53290,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -52496,7 +53303,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1571 this -523298718 +1704629915 1 this.numer 9 @@ -52519,7 +53326,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1572 this -1979380632 +333683827 1 this.numer -9 @@ -52538,7 +53345,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1571 this -523298718 +1704629915 1 this.numer 9 @@ -52547,7 +53354,7 @@ this.denom 0 1 return -1979380632 +333683827 1 return.numer -9 @@ -52560,7 +53367,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1573 this -114670870 +345902941 1 this.numer 1 @@ -52569,7 +53376,7 @@ this.denom 1 1 arg -1979380632 +333683827 1 arg.numer -9 @@ -52592,7 +53399,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1574 this -781106347 +1691185247 1 this.numer -9 @@ -52611,7 +53418,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1573 this -114670870 +345902941 1 this.numer 1 @@ -52620,7 +53427,7 @@ this.denom 1 1 arg -1979380632 +333683827 1 arg.numer -9 @@ -52629,7 +53436,7 @@ arg.denom 0 1 return -781106347 +1691185247 1 return.numer -9 @@ -52642,7 +53449,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1570 this -114670870 +345902941 1 this.numer 1 @@ -52651,7 +53458,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -52660,7 +53467,7 @@ arg.denom 0 1 return -781106347 +1691185247 1 return.numer -9 @@ -52673,7 +53480,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1575 this -781106347 +1691185247 1 this.numer -9 @@ -52686,7 +53493,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1576 this -781106347 +1691185247 1 this.numer -9 @@ -52699,7 +53506,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1576 this -781106347 +1691185247 1 this.numer -9 @@ -52715,7 +53522,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1575 this -781106347 +1691185247 1 this.numer -9 @@ -52724,7 +53531,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -52734,7 +53541,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1577 this -523298718 +1704629915 1 this.numer 9 @@ -52743,7 +53550,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -52756,7 +53563,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1578 this -114670870 +345902941 1 this.numer 1 @@ -52802,7 +53609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1579 this -486839918 +153245266 1 this.numer -1 @@ -52821,7 +53628,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1578 this -114670870 +345902941 1 this.numer 1 @@ -52830,7 +53637,7 @@ this.denom 1 1 return -486839918 +153245266 1 return.numer -1 @@ -52843,7 +53650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1581 this -523298718 +1704629915 1 this.numer 9 @@ -52852,7 +53659,7 @@ this.denom 0 1 arg -486839918 +153245266 1 arg.numer -1 @@ -52875,7 +53682,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1582 this -405806756 +1699679644 1 this.numer 9 @@ -52894,7 +53701,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1581 this -523298718 +1704629915 1 this.numer 9 @@ -52903,7 +53710,7 @@ this.denom 0 1 arg -486839918 +153245266 1 arg.numer -1 @@ -52912,7 +53719,7 @@ arg.denom 1 1 return -405806756 +1699679644 1 return.numer 9 @@ -52925,7 +53732,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1577 this -523298718 +1704629915 1 this.numer 9 @@ -52934,7 +53741,7 @@ this.denom 0 1 arg -114670870 +345902941 1 arg.numer 1 @@ -52943,7 +53750,7 @@ arg.denom 1 1 return -405806756 +1699679644 1 return.numer 9 @@ -52956,7 +53763,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1583 this -405806756 +1699679644 1 this.numer 9 @@ -52969,7 +53776,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1584 this -405806756 +1699679644 1 this.numer 9 @@ -52982,7 +53789,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1584 this -405806756 +1699679644 1 this.numer 9 @@ -52998,7 +53805,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1583 this -405806756 +1699679644 1 this.numer 9 @@ -53007,7 +53814,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -53017,7 +53824,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1585 this -980480731 +454325163 1 this.numer -1 @@ -53026,7 +53833,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -53039,7 +53846,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1586 this -2130132329 +200224114 1 this.numer 1 @@ -53062,7 +53869,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1587 this -2133568867 +1782580546 1 this.numer -1 @@ -53081,7 +53888,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1586 this -2130132329 +200224114 1 this.numer 1 @@ -53090,7 +53897,7 @@ this.denom 0 1 return -2133568867 +1782580546 1 return.numer -1 @@ -53103,7 +53910,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1588 this -980480731 +454325163 1 this.numer -1 @@ -53112,7 +53919,7 @@ this.denom 1 1 arg -2133568867 +1782580546 1 arg.numer -1 @@ -53135,7 +53942,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1589 this -210010063 +1702940637 1 this.numer -1 @@ -53154,7 +53961,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1588 this -980480731 +454325163 1 this.numer -1 @@ -53163,7 +53970,7 @@ this.denom 1 1 arg -2133568867 +1782580546 1 arg.numer -1 @@ -53172,7 +53979,7 @@ arg.denom 0 1 return -210010063 +1702940637 1 return.numer -1 @@ -53185,7 +53992,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1585 this -980480731 +454325163 1 this.numer -1 @@ -53194,7 +54001,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -53203,7 +54010,7 @@ arg.denom 0 1 return -210010063 +1702940637 1 return.numer -1 @@ -53216,7 +54023,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1590 this -210010063 +1702940637 1 this.numer -1 @@ -53229,7 +54036,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1591 this -210010063 +1702940637 1 this.numer -1 @@ -53242,7 +54049,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1591 this -210010063 +1702940637 1 this.numer -1 @@ -53258,7 +54065,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1590 this -210010063 +1702940637 1 this.numer -1 @@ -53267,7 +54074,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -53277,7 +54084,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1592 this -2130132329 +200224114 1 this.numer 1 @@ -53286,7 +54093,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -53299,7 +54106,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1593 this -980480731 +454325163 1 this.numer -1 @@ -53345,7 +54152,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1594 this -1323496820 +2114684409 1 this.numer 1 @@ -53364,7 +54171,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1593 this -980480731 +454325163 1 this.numer -1 @@ -53373,7 +54180,7 @@ this.denom 1 1 return -1323496820 +2114684409 1 return.numer 1 @@ -53386,7 +54193,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1596 this -2130132329 +200224114 1 this.numer 1 @@ -53395,7 +54202,7 @@ this.denom 0 1 arg -1323496820 +2114684409 1 arg.numer 1 @@ -53418,7 +54225,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1597 this -375438114 +1664439369 1 this.numer 1 @@ -53437,7 +54244,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1596 this -2130132329 +200224114 1 this.numer 1 @@ -53446,7 +54253,7 @@ this.denom 0 1 arg -1323496820 +2114684409 1 arg.numer 1 @@ -53455,7 +54262,7 @@ arg.denom 1 1 return -375438114 +1664439369 1 return.numer 1 @@ -53468,7 +54275,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1592 this -2130132329 +200224114 1 this.numer 1 @@ -53477,7 +54284,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -53486,7 +54293,7 @@ arg.denom 1 1 return -375438114 +1664439369 1 return.numer 1 @@ -53499,7 +54306,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1598 this -375438114 +1664439369 1 this.numer 1 @@ -53512,7 +54319,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1599 this -375438114 +1664439369 1 this.numer 1 @@ -53525,7 +54332,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1599 this -375438114 +1664439369 1 this.numer 1 @@ -53541,7 +54348,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1598 this -375438114 +1664439369 1 this.numer 1 @@ -53550,7 +54357,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -53560,7 +54367,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1600 this -980480731 +454325163 1 this.numer -1 @@ -53569,7 +54376,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -53582,7 +54389,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1601 this -434174366 +1773283386 1 this.numer -1 @@ -53605,7 +54412,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1602 this -681427112 +154482552 1 this.numer 1 @@ -53624,7 +54431,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1601 this -434174366 +1773283386 1 this.numer -1 @@ -53633,7 +54440,7 @@ this.denom 0 1 return -681427112 +154482552 1 return.numer 1 @@ -53646,7 +54453,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1603 this -980480731 +454325163 1 this.numer -1 @@ -53655,7 +54462,7 @@ this.denom 1 1 arg -681427112 +154482552 1 arg.numer 1 @@ -53678,7 +54485,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1604 this -215181933 +1781071780 1 this.numer 1 @@ -53697,7 +54504,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1603 this -980480731 +454325163 1 this.numer -1 @@ -53706,7 +54513,7 @@ this.denom 1 1 arg -681427112 +154482552 1 arg.numer 1 @@ -53715,7 +54522,7 @@ arg.denom 0 1 return -215181933 +1781071780 1 return.numer 1 @@ -53728,7 +54535,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1600 this -980480731 +454325163 1 this.numer -1 @@ -53737,7 +54544,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -53746,7 +54553,7 @@ arg.denom 0 1 return -215181933 +1781071780 1 return.numer 1 @@ -53759,7 +54566,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1605 this -215181933 +1781071780 1 this.numer 1 @@ -53772,7 +54579,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1606 this -215181933 +1781071780 1 this.numer 1 @@ -53785,7 +54592,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1606 this -215181933 +1781071780 1 this.numer 1 @@ -53801,7 +54608,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1605 this -215181933 +1781071780 1 this.numer 1 @@ -53810,7 +54617,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -53820,7 +54627,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1607 this -434174366 +1773283386 1 this.numer -1 @@ -53829,7 +54636,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -53842,7 +54649,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1608 this -980480731 +454325163 1 this.numer -1 @@ -53888,7 +54695,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1609 this -200286383 +1219402581 1 this.numer 1 @@ -53907,7 +54714,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1608 this -980480731 +454325163 1 this.numer -1 @@ -53916,7 +54723,7 @@ this.denom 1 1 return -200286383 +1219402581 1 return.numer 1 @@ -53929,7 +54736,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1611 this -434174366 +1773283386 1 this.numer -1 @@ -53938,7 +54745,7 @@ this.denom 0 1 arg -200286383 +1219402581 1 arg.numer 1 @@ -53961,7 +54768,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1612 this -1106364232 +24119573 1 this.numer -1 @@ -53980,7 +54787,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1611 this -434174366 +1773283386 1 this.numer -1 @@ -53989,7 +54796,7 @@ this.denom 0 1 arg -200286383 +1219402581 1 arg.numer 1 @@ -53998,7 +54805,7 @@ arg.denom 1 1 return -1106364232 +24119573 1 return.numer -1 @@ -54011,7 +54818,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1607 this -434174366 +1773283386 1 this.numer -1 @@ -54020,7 +54827,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -54029,7 +54836,7 @@ arg.denom 1 1 return -1106364232 +24119573 1 return.numer -1 @@ -54042,7 +54849,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1613 this -1106364232 +24119573 1 this.numer -1 @@ -54055,7 +54862,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1614 this -1106364232 +24119573 1 this.numer -1 @@ -54068,7 +54875,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1614 this -1106364232 +24119573 1 this.numer -1 @@ -54084,7 +54891,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1613 this -1106364232 +24119573 1 this.numer -1 @@ -54093,7 +54900,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -54103,7 +54910,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1615 this -980480731 +454325163 1 this.numer -1 @@ -54112,7 +54919,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -54125,7 +54932,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1616 this -19136856 +581318631 1 this.numer 100 @@ -54148,7 +54955,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1617 this -1750231498 +568221876 1 this.numer -100 @@ -54167,7 +54974,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1616 this -19136856 +581318631 1 this.numer 100 @@ -54176,7 +54983,7 @@ this.denom 0 1 return -1750231498 +568221876 1 return.numer -100 @@ -54189,7 +54996,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1618 this -980480731 +454325163 1 this.numer -1 @@ -54198,7 +55005,7 @@ this.denom 1 1 arg -1750231498 +568221876 1 arg.numer -100 @@ -54221,7 +55028,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1619 this -2057273927 +203849460 1 this.numer -100 @@ -54240,7 +55047,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1618 this -980480731 +454325163 1 this.numer -1 @@ -54249,7 +55056,7 @@ this.denom 1 1 arg -1750231498 +568221876 1 arg.numer -100 @@ -54258,7 +55065,7 @@ arg.denom 0 1 return -2057273927 +203849460 1 return.numer -100 @@ -54271,7 +55078,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1615 this -980480731 +454325163 1 this.numer -1 @@ -54280,7 +55087,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -54289,7 +55096,7 @@ arg.denom 0 1 return -2057273927 +203849460 1 return.numer -100 @@ -54302,7 +55109,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1620 this -2057273927 +203849460 1 this.numer -100 @@ -54315,7 +55122,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1621 this -2057273927 +203849460 1 this.numer -100 @@ -54328,7 +55135,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1621 this -2057273927 +203849460 1 this.numer -100 @@ -54344,7 +55151,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1620 this -2057273927 +203849460 1 this.numer -100 @@ -54353,7 +55160,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -54363,7 +55170,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1622 this -19136856 +581318631 1 this.numer 100 @@ -54372,7 +55179,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -54385,7 +55192,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1623 this -980480731 +454325163 1 this.numer -1 @@ -54431,7 +55238,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1624 this -2116174389 +820914198 1 this.numer 1 @@ -54450,7 +55257,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1623 this -980480731 +454325163 1 this.numer -1 @@ -54459,7 +55266,7 @@ this.denom 1 1 return -2116174389 +820914198 1 return.numer 1 @@ -54472,7 +55279,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1626 this -19136856 +581318631 1 this.numer 100 @@ -54481,7 +55288,7 @@ this.denom 0 1 arg -2116174389 +820914198 1 arg.numer 1 @@ -54504,7 +55311,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1627 this -2066277956 +836220863 1 this.numer 100 @@ -54523,7 +55330,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1626 this -19136856 +581318631 1 this.numer 100 @@ -54532,7 +55339,7 @@ this.denom 0 1 arg -2116174389 +820914198 1 arg.numer 1 @@ -54541,7 +55348,7 @@ arg.denom 1 1 return -2066277956 +836220863 1 return.numer 100 @@ -54554,7 +55361,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1622 this -19136856 +581318631 1 this.numer 100 @@ -54563,7 +55370,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -54572,7 +55379,7 @@ arg.denom 1 1 return -2066277956 +836220863 1 return.numer 100 @@ -54585,7 +55392,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1628 this -2066277956 +836220863 1 this.numer 100 @@ -54598,7 +55405,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1629 this -2066277956 +836220863 1 this.numer 100 @@ -54611,7 +55418,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1629 this -2066277956 +836220863 1 this.numer 100 @@ -54627,7 +55434,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1628 this -2066277956 +836220863 1 this.numer 100 @@ -54636,7 +55443,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -54646,7 +55453,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1630 this -980480731 +454325163 1 this.numer -1 @@ -54655,7 +55462,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -54668,7 +55475,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1631 this -1658075389 +1877453512 1 this.numer 2 @@ -54691,7 +55498,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1632 this -975550855 +1667148529 1 this.numer -2 @@ -54710,7 +55517,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1631 this -1658075389 +1877453512 1 this.numer 2 @@ -54719,7 +55526,7 @@ this.denom 0 1 return -975550855 +1667148529 1 return.numer -2 @@ -54732,7 +55539,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1633 this -980480731 +454325163 1 this.numer -1 @@ -54741,7 +55548,7 @@ this.denom 1 1 arg -975550855 +1667148529 1 arg.numer -2 @@ -54764,7 +55571,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1634 this -45575140 +1546693040 1 this.numer -2 @@ -54783,7 +55590,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1633 this -980480731 +454325163 1 this.numer -1 @@ -54792,7 +55599,7 @@ this.denom 1 1 arg -975550855 +1667148529 1 arg.numer -2 @@ -54801,7 +55608,7 @@ arg.denom 0 1 return -45575140 +1546693040 1 return.numer -2 @@ -54814,7 +55621,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1630 this -980480731 +454325163 1 this.numer -1 @@ -54823,7 +55630,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -54832,7 +55639,7 @@ arg.denom 0 1 return -45575140 +1546693040 1 return.numer -2 @@ -54845,7 +55652,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1635 this -45575140 +1546693040 1 this.numer -2 @@ -54858,7 +55665,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1636 this -45575140 +1546693040 1 this.numer -2 @@ -54871,7 +55678,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1636 this -45575140 +1546693040 1 this.numer -2 @@ -54887,7 +55694,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1635 this -45575140 +1546693040 1 this.numer -2 @@ -54896,7 +55703,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -54906,7 +55713,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1637 this -1658075389 +1877453512 1 this.numer 2 @@ -54915,7 +55722,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -54928,7 +55735,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1638 this -980480731 +454325163 1 this.numer -1 @@ -54974,7 +55781,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1639 this -1477199648 +501187768 1 this.numer 1 @@ -54993,7 +55800,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1638 this -980480731 +454325163 1 this.numer -1 @@ -55002,7 +55809,7 @@ this.denom 1 1 return -1477199648 +501187768 1 return.numer 1 @@ -55015,7 +55822,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1641 this -1658075389 +1877453512 1 this.numer 2 @@ -55024,7 +55831,7 @@ this.denom 0 1 arg -1477199648 +501187768 1 arg.numer 1 @@ -55047,7 +55854,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1642 this -236040969 +288994035 1 this.numer 2 @@ -55066,7 +55873,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1641 this -1658075389 +1877453512 1 this.numer 2 @@ -55075,7 +55882,7 @@ this.denom 0 1 arg -1477199648 +501187768 1 arg.numer 1 @@ -55084,7 +55891,7 @@ arg.denom 1 1 return -236040969 +288994035 1 return.numer 2 @@ -55097,7 +55904,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1637 this -1658075389 +1877453512 1 this.numer 2 @@ -55106,7 +55913,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -55115,7 +55922,7 @@ arg.denom 1 1 return -236040969 +288994035 1 return.numer 2 @@ -55128,7 +55935,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1643 this -236040969 +288994035 1 this.numer 2 @@ -55141,7 +55948,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1644 this -236040969 +288994035 1 this.numer 2 @@ -55154,7 +55961,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1644 this -236040969 +288994035 1 this.numer 2 @@ -55170,7 +55977,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1643 this -236040969 +288994035 1 this.numer 2 @@ -55179,7 +55986,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -55189,7 +55996,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1645 this -980480731 +454325163 1 this.numer -1 @@ -55198,7 +56005,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -55211,7 +56018,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1646 this -1525259451 +487694075 1 this.numer -2 @@ -55234,7 +56041,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1647 this -738269974 +128359175 1 this.numer 2 @@ -55253,7 +56060,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1646 this -1525259451 +487694075 1 this.numer -2 @@ -55262,7 +56069,7 @@ this.denom 0 1 return -738269974 +128359175 1 return.numer 2 @@ -55275,7 +56082,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1648 this -980480731 +454325163 1 this.numer -1 @@ -55284,7 +56091,7 @@ this.denom 1 1 arg -738269974 +128359175 1 arg.numer 2 @@ -55307,7 +56114,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1649 this -2090424299 +1585635178 1 this.numer 2 @@ -55326,7 +56133,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1648 this -980480731 +454325163 1 this.numer -1 @@ -55335,7 +56142,7 @@ this.denom 1 1 arg -738269974 +128359175 1 arg.numer 2 @@ -55344,7 +56151,7 @@ arg.denom 0 1 return -2090424299 +1585635178 1 return.numer 2 @@ -55357,7 +56164,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1645 this -980480731 +454325163 1 this.numer -1 @@ -55366,7 +56173,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -55375,7 +56182,7 @@ arg.denom 0 1 return -2090424299 +1585635178 1 return.numer 2 @@ -55388,7 +56195,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1650 this -2090424299 +1585635178 1 this.numer 2 @@ -55401,7 +56208,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1651 this -2090424299 +1585635178 1 this.numer 2 @@ -55414,7 +56221,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1651 this -2090424299 +1585635178 1 this.numer 2 @@ -55430,7 +56237,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1650 this -2090424299 +1585635178 1 this.numer 2 @@ -55439,7 +56246,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -55449,7 +56256,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1652 this -1525259451 +487694075 1 this.numer -2 @@ -55458,7 +56265,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -55471,7 +56278,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1653 this -980480731 +454325163 1 this.numer -1 @@ -55517,7 +56324,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1654 this -928728373 +1058634310 1 this.numer 1 @@ -55536,7 +56343,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1653 this -980480731 +454325163 1 this.numer -1 @@ -55545,7 +56352,7 @@ this.denom 1 1 return -928728373 +1058634310 1 return.numer 1 @@ -55558,7 +56365,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1656 this -1525259451 +487694075 1 this.numer -2 @@ -55567,7 +56374,7 @@ this.denom 0 1 arg -928728373 +1058634310 1 arg.numer 1 @@ -55590,7 +56397,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1657 this -1226618615 +1668016508 1 this.numer -2 @@ -55609,7 +56416,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1656 this -1525259451 +487694075 1 this.numer -2 @@ -55618,7 +56425,7 @@ this.denom 0 1 arg -928728373 +1058634310 1 arg.numer 1 @@ -55627,7 +56434,7 @@ arg.denom 1 1 return -1226618615 +1668016508 1 return.numer -2 @@ -55640,7 +56447,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1652 this -1525259451 +487694075 1 this.numer -2 @@ -55649,7 +56456,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -55658,7 +56465,7 @@ arg.denom 1 1 return -1226618615 +1668016508 1 return.numer -2 @@ -55671,7 +56478,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1658 this -1226618615 +1668016508 1 this.numer -2 @@ -55684,7 +56491,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1659 this -1226618615 +1668016508 1 this.numer -2 @@ -55697,7 +56504,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1659 this -1226618615 +1668016508 1 this.numer -2 @@ -55713,7 +56520,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1658 this -1226618615 +1668016508 1 this.numer -2 @@ -55722,7 +56529,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -55732,7 +56539,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1660 this -980480731 +454325163 1 this.numer -1 @@ -55741,7 +56548,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -55754,7 +56561,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1661 this -523298718 +1704629915 1 this.numer 9 @@ -55777,7 +56584,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1662 this -2083534752 +1353070773 1 this.numer -9 @@ -55796,7 +56603,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1661 this -523298718 +1704629915 1 this.numer 9 @@ -55805,7 +56612,7 @@ this.denom 0 1 return -2083534752 +1353070773 1 return.numer -9 @@ -55818,7 +56625,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1663 this -980480731 +454325163 1 this.numer -1 @@ -55827,7 +56634,7 @@ this.denom 1 1 arg -2083534752 +1353070773 1 arg.numer -9 @@ -55850,7 +56657,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1664 this -1100228882 +404214852 1 this.numer -9 @@ -55869,7 +56676,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1663 this -980480731 +454325163 1 this.numer -1 @@ -55878,7 +56685,7 @@ this.denom 1 1 arg -2083534752 +1353070773 1 arg.numer -9 @@ -55887,7 +56694,7 @@ arg.denom 0 1 return -1100228882 +404214852 1 return.numer -9 @@ -55900,7 +56707,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1660 this -980480731 +454325163 1 this.numer -1 @@ -55909,7 +56716,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -55918,7 +56725,7 @@ arg.denom 0 1 return -1100228882 +404214852 1 return.numer -9 @@ -55931,7 +56738,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1665 this -1100228882 +404214852 1 this.numer -9 @@ -55944,7 +56751,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1666 this -1100228882 +404214852 1 this.numer -9 @@ -55957,7 +56764,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1666 this -1100228882 +404214852 1 this.numer -9 @@ -55973,7 +56780,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1665 this -1100228882 +404214852 1 this.numer -9 @@ -55982,7 +56789,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -55992,7 +56799,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1667 this -523298718 +1704629915 1 this.numer 9 @@ -56001,7 +56808,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -56014,7 +56821,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1668 this -980480731 +454325163 1 this.numer -1 @@ -56060,7 +56867,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1669 this -1712619104 +1822971466 1 this.numer 1 @@ -56079,7 +56886,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1668 this -980480731 +454325163 1 this.numer -1 @@ -56088,7 +56895,7 @@ this.denom 1 1 return -1712619104 +1822971466 1 return.numer 1 @@ -56101,7 +56908,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1671 this -523298718 +1704629915 1 this.numer 9 @@ -56110,7 +56917,7 @@ this.denom 0 1 arg -1712619104 +1822971466 1 arg.numer 1 @@ -56133,7 +56940,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1672 this -1265960187 +1354003114 1 this.numer 9 @@ -56152,7 +56959,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1671 this -523298718 +1704629915 1 this.numer 9 @@ -56161,7 +56968,7 @@ this.denom 0 1 arg -1712619104 +1822971466 1 arg.numer 1 @@ -56170,7 +56977,7 @@ arg.denom 1 1 return -1265960187 +1354003114 1 return.numer 9 @@ -56183,7 +56990,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1667 this -523298718 +1704629915 1 this.numer 9 @@ -56192,7 +56999,7 @@ this.denom 0 1 arg -980480731 +454325163 1 arg.numer -1 @@ -56201,7 +57008,7 @@ arg.denom 1 1 return -1265960187 +1354003114 1 return.numer 9 @@ -56214,7 +57021,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1673 this -1265960187 +1354003114 1 this.numer 9 @@ -56227,7 +57034,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1674 this -1265960187 +1354003114 1 this.numer 9 @@ -56240,7 +57047,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1674 this -1265960187 +1354003114 1 this.numer 9 @@ -56256,7 +57063,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1673 this -1265960187 +1354003114 1 this.numer 9 @@ -56265,7 +57072,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -56275,7 +57082,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1675 this -1297622486 +796667727 1 this.numer 2 @@ -56284,7 +57091,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -56297,7 +57104,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1676 this -2130132329 +200224114 1 this.numer 1 @@ -56320,7 +57127,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1677 this -1872372080 +825658265 1 this.numer -1 @@ -56339,7 +57146,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1676 this -2130132329 +200224114 1 this.numer 1 @@ -56348,7 +57155,7 @@ this.denom 0 1 return -1872372080 +825658265 1 return.numer -1 @@ -56361,7 +57168,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1678 this -1297622486 +796667727 1 this.numer 2 @@ -56370,7 +57177,7 @@ this.denom 1 1 arg -1872372080 +825658265 1 arg.numer -1 @@ -56393,7 +57200,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1679 this -1879669069 +388357135 1 this.numer -1 @@ -56412,7 +57219,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1678 this -1297622486 +796667727 1 this.numer 2 @@ -56421,7 +57228,7 @@ this.denom 1 1 arg -1872372080 +825658265 1 arg.numer -1 @@ -56430,7 +57237,7 @@ arg.denom 0 1 return -1879669069 +388357135 1 return.numer -1 @@ -56443,7 +57250,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1675 this -1297622486 +796667727 1 this.numer 2 @@ -56452,7 +57259,7 @@ this.denom 1 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -56461,7 +57268,7 @@ arg.denom 0 1 return -1879669069 +388357135 1 return.numer -1 @@ -56474,7 +57281,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1680 this -1879669069 +388357135 1 this.numer -1 @@ -56487,7 +57294,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1681 this -1879669069 +388357135 1 this.numer -1 @@ -56500,7 +57307,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1681 this -1879669069 +388357135 1 this.numer -1 @@ -56516,7 +57323,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1680 this -1879669069 +388357135 1 this.numer -1 @@ -56525,7 +57332,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -56535,7 +57342,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1682 this -2130132329 +200224114 1 this.numer 1 @@ -56544,7 +57351,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -56557,7 +57364,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1683 this -1297622486 +796667727 1 this.numer 2 @@ -56603,7 +57410,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1684 this -2113595313 +957465255 1 this.numer -2 @@ -56622,7 +57429,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1683 this -1297622486 +796667727 1 this.numer 2 @@ -56631,7 +57438,7 @@ this.denom 1 1 return -2113595313 +957465255 1 return.numer -2 @@ -56644,7 +57451,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1686 this -2130132329 +200224114 1 this.numer 1 @@ -56653,7 +57460,7 @@ this.denom 0 1 arg -2113595313 +957465255 1 arg.numer -2 @@ -56676,7 +57483,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1687 this -1669420564 +1254344205 1 this.numer 1 @@ -56695,7 +57502,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1686 this -2130132329 +200224114 1 this.numer 1 @@ -56704,7 +57511,7 @@ this.denom 0 1 arg -2113595313 +957465255 1 arg.numer -2 @@ -56713,7 +57520,7 @@ arg.denom 1 1 return -1669420564 +1254344205 1 return.numer 1 @@ -56726,7 +57533,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1682 this -2130132329 +200224114 1 this.numer 1 @@ -56735,7 +57542,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -56744,7 +57551,7 @@ arg.denom 1 1 return -1669420564 +1254344205 1 return.numer 1 @@ -56757,7 +57564,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1688 this -1669420564 +1254344205 1 this.numer 1 @@ -56770,7 +57577,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1689 this -1669420564 +1254344205 1 this.numer 1 @@ -56783,7 +57590,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1689 this -1669420564 +1254344205 1 this.numer 1 @@ -56799,7 +57606,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1688 this -1669420564 +1254344205 1 this.numer 1 @@ -56808,7 +57615,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -56818,7 +57625,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1690 this -1297622486 +796667727 1 this.numer 2 @@ -56827,7 +57634,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -56840,7 +57647,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1691 this -434174366 +1773283386 1 this.numer -1 @@ -56863,7 +57670,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1692 this -1077571093 +1336735375 1 this.numer 1 @@ -56882,7 +57689,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1691 this -434174366 +1773283386 1 this.numer -1 @@ -56891,7 +57698,7 @@ this.denom 0 1 return -1077571093 +1336735375 1 return.numer 1 @@ -56904,7 +57711,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1693 this -1297622486 +796667727 1 this.numer 2 @@ -56913,7 +57720,7 @@ this.denom 1 1 arg -1077571093 +1336735375 1 arg.numer 1 @@ -56936,7 +57743,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1694 this -1007764900 +1984990929 1 this.numer 1 @@ -56955,7 +57762,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1693 this -1297622486 +796667727 1 this.numer 2 @@ -56964,7 +57771,7 @@ this.denom 1 1 arg -1077571093 +1336735375 1 arg.numer 1 @@ -56973,7 +57780,7 @@ arg.denom 0 1 return -1007764900 +1984990929 1 return.numer 1 @@ -56986,7 +57793,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1690 this -1297622486 +796667727 1 this.numer 2 @@ -56995,7 +57802,7 @@ this.denom 1 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -57004,7 +57811,7 @@ arg.denom 0 1 return -1007764900 +1984990929 1 return.numer 1 @@ -57017,7 +57824,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1695 this -1007764900 +1984990929 1 this.numer 1 @@ -57030,7 +57837,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1696 this -1007764900 +1984990929 1 this.numer 1 @@ -57043,7 +57850,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1696 this -1007764900 +1984990929 1 this.numer 1 @@ -57059,7 +57866,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1695 this -1007764900 +1984990929 1 this.numer 1 @@ -57068,7 +57875,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -57078,7 +57885,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1697 this -434174366 +1773283386 1 this.numer -1 @@ -57087,7 +57894,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -57100,7 +57907,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1698 this -1297622486 +796667727 1 this.numer 2 @@ -57146,7 +57953,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1699 this -301150411 +1105423942 1 this.numer -2 @@ -57165,7 +57972,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1698 this -1297622486 +796667727 1 this.numer 2 @@ -57174,7 +57981,7 @@ this.denom 1 1 return -301150411 +1105423942 1 return.numer -2 @@ -57187,7 +57994,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1701 this -434174366 +1773283386 1 this.numer -1 @@ -57196,7 +58003,7 @@ this.denom 0 1 arg -301150411 +1105423942 1 arg.numer -2 @@ -57219,7 +58026,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1702 this -1963485345 +365181913 1 this.numer -1 @@ -57238,7 +58045,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1701 this -434174366 +1773283386 1 this.numer -1 @@ -57247,7 +58054,7 @@ this.denom 0 1 arg -301150411 +1105423942 1 arg.numer -2 @@ -57256,7 +58063,7 @@ arg.denom 1 1 return -1963485345 +365181913 1 return.numer -1 @@ -57269,7 +58076,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1697 this -434174366 +1773283386 1 this.numer -1 @@ -57278,7 +58085,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -57287,7 +58094,7 @@ arg.denom 1 1 return -1963485345 +365181913 1 return.numer -1 @@ -57300,7 +58107,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1703 this -1963485345 +365181913 1 this.numer -1 @@ -57313,7 +58120,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1704 this -1963485345 +365181913 1 this.numer -1 @@ -57326,7 +58133,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1704 this -1963485345 +365181913 1 this.numer -1 @@ -57342,7 +58149,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1703 this -1963485345 +365181913 1 this.numer -1 @@ -57351,7 +58158,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -57361,7 +58168,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1705 this -1297622486 +796667727 1 this.numer 2 @@ -57370,7 +58177,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -57383,7 +58190,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1706 this -19136856 +581318631 1 this.numer 100 @@ -57406,7 +58213,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1707 this -2064473613 +1031061344 1 this.numer -100 @@ -57425,7 +58232,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1706 this -19136856 +581318631 1 this.numer 100 @@ -57434,7 +58241,7 @@ this.denom 0 1 return -2064473613 +1031061344 1 return.numer -100 @@ -57447,7 +58254,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1708 this -1297622486 +796667727 1 this.numer 2 @@ -57456,7 +58263,7 @@ this.denom 1 1 arg -2064473613 +1031061344 1 arg.numer -100 @@ -57479,7 +58286,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1709 this -714729112 +1327536153 1 this.numer -100 @@ -57498,7 +58305,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1708 this -1297622486 +796667727 1 this.numer 2 @@ -57507,7 +58314,7 @@ this.denom 1 1 arg -2064473613 +1031061344 1 arg.numer -100 @@ -57516,7 +58323,7 @@ arg.denom 0 1 return -714729112 +1327536153 1 return.numer -100 @@ -57529,7 +58336,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1705 this -1297622486 +796667727 1 this.numer 2 @@ -57538,7 +58345,7 @@ this.denom 1 1 arg -19136856 +581318631 1 arg.numer 100 @@ -57547,7 +58354,7 @@ arg.denom 0 1 return -714729112 +1327536153 1 return.numer -100 @@ -57560,7 +58367,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1710 this -714729112 +1327536153 1 this.numer -100 @@ -57573,7 +58380,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1711 this -714729112 +1327536153 1 this.numer -100 @@ -57586,7 +58393,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1711 this -714729112 +1327536153 1 this.numer -100 @@ -57602,7 +58409,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1710 this -714729112 +1327536153 1 this.numer -100 @@ -57611,7 +58418,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -57621,7 +58428,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1712 this -19136856 +581318631 1 this.numer 100 @@ -57630,7 +58437,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -57643,7 +58450,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1713 this -1297622486 +796667727 1 this.numer 2 @@ -57689,7 +58496,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1714 this -1576147713 +367746789 1 this.numer -2 @@ -57708,7 +58515,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1713 this -1297622486 +796667727 1 this.numer 2 @@ -57717,7 +58524,7 @@ this.denom 1 1 return -1576147713 +367746789 1 return.numer -2 @@ -57730,7 +58537,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1716 this -19136856 +581318631 1 this.numer 100 @@ -57739,7 +58546,7 @@ this.denom 0 1 arg -1576147713 +367746789 1 arg.numer -2 @@ -57762,7 +58569,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1717 this -1103826646 +558216562 1 this.numer 100 @@ -57781,7 +58588,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1716 this -19136856 +581318631 1 this.numer 100 @@ -57790,7 +58597,7 @@ this.denom 0 1 arg -1576147713 +367746789 1 arg.numer -2 @@ -57799,7 +58606,7 @@ arg.denom 1 1 return -1103826646 +558216562 1 return.numer 100 @@ -57812,7 +58619,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1712 this -19136856 +581318631 1 this.numer 100 @@ -57821,7 +58628,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -57830,7 +58637,7 @@ arg.denom 1 1 return -1103826646 +558216562 1 return.numer 100 @@ -57843,7 +58650,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1718 this -1103826646 +558216562 1 this.numer 100 @@ -57856,7 +58663,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1719 this -1103826646 +558216562 1 this.numer 100 @@ -57869,7 +58676,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1719 this -1103826646 +558216562 1 this.numer 100 @@ -57885,7 +58692,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1718 this -1103826646 +558216562 1 this.numer 100 @@ -57894,7 +58701,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -57904,7 +58711,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1720 this -1297622486 +796667727 1 this.numer 2 @@ -57913,7 +58720,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -57926,7 +58733,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1721 this -1658075389 +1877453512 1 this.numer 2 @@ -57949,7 +58756,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1722 this -2050696536 +961712517 1 this.numer -2 @@ -57968,7 +58775,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1721 this -1658075389 +1877453512 1 this.numer 2 @@ -57977,7 +58784,7 @@ this.denom 0 1 return -2050696536 +961712517 1 return.numer -2 @@ -57990,7 +58797,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1723 this -1297622486 +796667727 1 this.numer 2 @@ -57999,7 +58806,7 @@ this.denom 1 1 arg -2050696536 +961712517 1 arg.numer -2 @@ -58022,7 +58829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1724 this -1091629849 +1928931046 1 this.numer -2 @@ -58041,7 +58848,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1723 this -1297622486 +796667727 1 this.numer 2 @@ -58050,7 +58857,7 @@ this.denom 1 1 arg -2050696536 +961712517 1 arg.numer -2 @@ -58059,7 +58866,7 @@ arg.denom 0 1 return -1091629849 +1928931046 1 return.numer -2 @@ -58072,7 +58879,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1720 this -1297622486 +796667727 1 this.numer 2 @@ -58081,7 +58888,7 @@ this.denom 1 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -58090,7 +58897,7 @@ arg.denom 0 1 return -1091629849 +1928931046 1 return.numer -2 @@ -58103,7 +58910,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1725 this -1091629849 +1928931046 1 this.numer -2 @@ -58116,7 +58923,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1726 this -1091629849 +1928931046 1 this.numer -2 @@ -58129,7 +58936,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1726 this -1091629849 +1928931046 1 this.numer -2 @@ -58145,7 +58952,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1725 this -1091629849 +1928931046 1 this.numer -2 @@ -58154,7 +58961,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -58164,7 +58971,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1727 this -1658075389 +1877453512 1 this.numer 2 @@ -58173,7 +58980,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -58186,7 +58993,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1728 this -1297622486 +796667727 1 this.numer 2 @@ -58232,7 +59039,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1729 this -1070075822 +1034568234 1 this.numer -2 @@ -58251,7 +59058,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1728 this -1297622486 +796667727 1 this.numer 2 @@ -58260,7 +59067,7 @@ this.denom 1 1 return -1070075822 +1034568234 1 return.numer -2 @@ -58273,7 +59080,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1731 this -1658075389 +1877453512 1 this.numer 2 @@ -58282,7 +59089,7 @@ this.denom 0 1 arg -1070075822 +1034568234 1 arg.numer -2 @@ -58305,7 +59112,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1732 this -1736280376 +835227336 1 this.numer 2 @@ -58324,7 +59131,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1731 this -1658075389 +1877453512 1 this.numer 2 @@ -58333,7 +59140,7 @@ this.denom 0 1 arg -1070075822 +1034568234 1 arg.numer -2 @@ -58342,7 +59149,7 @@ arg.denom 1 1 return -1736280376 +835227336 1 return.numer 2 @@ -58355,7 +59162,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1727 this -1658075389 +1877453512 1 this.numer 2 @@ -58364,7 +59171,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -58373,7 +59180,7 @@ arg.denom 1 1 return -1736280376 +835227336 1 return.numer 2 @@ -58386,7 +59193,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1733 this -1736280376 +835227336 1 this.numer 2 @@ -58399,7 +59206,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1734 this -1736280376 +835227336 1 this.numer 2 @@ -58412,7 +59219,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1734 this -1736280376 +835227336 1 this.numer 2 @@ -58428,7 +59235,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1733 this -1736280376 +835227336 1 this.numer 2 @@ -58437,7 +59244,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -58447,7 +59254,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1735 this -1297622486 +796667727 1 this.numer 2 @@ -58456,7 +59263,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -58469,7 +59276,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1736 this -1525259451 +487694075 1 this.numer -2 @@ -58492,7 +59299,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1737 this -1656483996 +482082765 1 this.numer 2 @@ -58511,7 +59318,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1736 this -1525259451 +487694075 1 this.numer -2 @@ -58520,7 +59327,7 @@ this.denom 0 1 return -1656483996 +482082765 1 return.numer 2 @@ -58533,7 +59340,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1738 this -1297622486 +796667727 1 this.numer 2 @@ -58542,7 +59349,7 @@ this.denom 1 1 arg -1656483996 +482082765 1 arg.numer 2 @@ -58565,7 +59372,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1739 this -548521064 +667821226 1 this.numer 2 @@ -58584,7 +59391,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1738 this -1297622486 +796667727 1 this.numer 2 @@ -58593,7 +59400,7 @@ this.denom 1 1 arg -1656483996 +482082765 1 arg.numer 2 @@ -58602,7 +59409,7 @@ arg.denom 0 1 return -548521064 +667821226 1 return.numer 2 @@ -58615,7 +59422,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1735 this -1297622486 +796667727 1 this.numer 2 @@ -58624,7 +59431,7 @@ this.denom 1 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -58633,7 +59440,7 @@ arg.denom 0 1 return -548521064 +667821226 1 return.numer 2 @@ -58646,7 +59453,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1740 this -548521064 +667821226 1 this.numer 2 @@ -58659,7 +59466,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1741 this -548521064 +667821226 1 this.numer 2 @@ -58672,7 +59479,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1741 this -548521064 +667821226 1 this.numer 2 @@ -58688,7 +59495,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1740 this -548521064 +667821226 1 this.numer 2 @@ -58697,7 +59504,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -58707,7 +59514,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1742 this -1525259451 +487694075 1 this.numer -2 @@ -58716,7 +59523,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -58729,7 +59536,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1743 this -1297622486 +796667727 1 this.numer 2 @@ -58775,7 +59582,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1744 this -1993709724 +1209702763 1 this.numer -2 @@ -58794,7 +59601,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1743 this -1297622486 +796667727 1 this.numer 2 @@ -58803,7 +59610,7 @@ this.denom 1 1 return -1993709724 +1209702763 1 return.numer -2 @@ -58816,7 +59623,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1746 this -1525259451 +487694075 1 this.numer -2 @@ -58825,7 +59632,7 @@ this.denom 0 1 arg -1993709724 +1209702763 1 arg.numer -2 @@ -58848,7 +59655,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1747 this -1091987127 +1028780142 1 this.numer -2 @@ -58867,7 +59674,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1746 this -1525259451 +487694075 1 this.numer -2 @@ -58876,7 +59683,7 @@ this.denom 0 1 arg -1993709724 +1209702763 1 arg.numer -2 @@ -58885,7 +59692,7 @@ arg.denom 1 1 return -1091987127 +1028780142 1 return.numer -2 @@ -58898,7 +59705,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1742 this -1525259451 +487694075 1 this.numer -2 @@ -58907,7 +59714,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -58916,7 +59723,7 @@ arg.denom 1 1 return -1091987127 +1028780142 1 return.numer -2 @@ -58929,7 +59736,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1748 this -1091987127 +1028780142 1 this.numer -2 @@ -58942,7 +59749,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1749 this -1091987127 +1028780142 1 this.numer -2 @@ -58955,7 +59762,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1749 this -1091987127 +1028780142 1 this.numer -2 @@ -58971,7 +59778,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1748 this -1091987127 +1028780142 1 this.numer -2 @@ -58980,7 +59787,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -58990,7 +59797,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1750 this -1297622486 +796667727 1 this.numer 2 @@ -58999,7 +59806,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -59012,7 +59819,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1751 this -523298718 +1704629915 1 this.numer 9 @@ -59035,7 +59842,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1752 this -632396227 +2128029086 1 this.numer -9 @@ -59054,7 +59861,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1751 this -523298718 +1704629915 1 this.numer 9 @@ -59063,7 +59870,7 @@ this.denom 0 1 return -632396227 +2128029086 1 return.numer -9 @@ -59076,7 +59883,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1753 this -1297622486 +796667727 1 this.numer 2 @@ -59085,7 +59892,7 @@ this.denom 1 1 arg -632396227 +2128029086 1 arg.numer -9 @@ -59108,7 +59915,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1754 this -786818186 +686466458 1 this.numer -9 @@ -59127,7 +59934,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1753 this -1297622486 +796667727 1 this.numer 2 @@ -59136,7 +59943,7 @@ this.denom 1 1 arg -632396227 +2128029086 1 arg.numer -9 @@ -59145,7 +59952,7 @@ arg.denom 0 1 return -786818186 +686466458 1 return.numer -9 @@ -59158,7 +59965,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1750 this -1297622486 +796667727 1 this.numer 2 @@ -59167,7 +59974,7 @@ this.denom 1 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -59176,7 +59983,7 @@ arg.denom 0 1 return -786818186 +686466458 1 return.numer -9 @@ -59189,7 +59996,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1755 this -786818186 +686466458 1 this.numer -9 @@ -59202,7 +60009,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1756 this -786818186 +686466458 1 this.numer -9 @@ -59215,7 +60022,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1756 this -786818186 +686466458 1 this.numer -9 @@ -59231,7 +60038,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1755 this -786818186 +686466458 1 this.numer -9 @@ -59240,7 +60047,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -59250,7 +60057,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1757 this -523298718 +1704629915 1 this.numer 9 @@ -59259,7 +60066,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -59272,7 +60079,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1758 this -1297622486 +796667727 1 this.numer 2 @@ -59318,7 +60125,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1759 this -1996437523 +875016237 1 this.numer -2 @@ -59337,7 +60144,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1758 this -1297622486 +796667727 1 this.numer 2 @@ -59346,7 +60153,7 @@ this.denom 1 1 return -1996437523 +875016237 1 return.numer -2 @@ -59359,7 +60166,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1761 this -523298718 +1704629915 1 this.numer 9 @@ -59368,7 +60175,7 @@ this.denom 0 1 arg -1996437523 +875016237 1 arg.numer -2 @@ -59391,7 +60198,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1762 this -1840948333 +105374791 1 this.numer 9 @@ -59410,7 +60217,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1761 this -523298718 +1704629915 1 this.numer 9 @@ -59419,7 +60226,7 @@ this.denom 0 1 arg -1996437523 +875016237 1 arg.numer -2 @@ -59428,7 +60235,7 @@ arg.denom 1 1 return -1840948333 +105374791 1 return.numer 9 @@ -59441,7 +60248,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1757 this -523298718 +1704629915 1 this.numer 9 @@ -59450,7 +60257,7 @@ this.denom 0 1 arg -1297622486 +796667727 1 arg.numer 2 @@ -59459,7 +60266,7 @@ arg.denom 1 1 return -1840948333 +105374791 1 return.numer 9 @@ -59472,7 +60279,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1763 this -1840948333 +105374791 1 this.numer 9 @@ -59485,7 +60292,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1764 this -1840948333 +105374791 1 this.numer 9 @@ -59498,7 +60305,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1764 this -1840948333 +105374791 1 this.numer 9 @@ -59514,7 +60321,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1763 this -1840948333 +105374791 1 this.numer 9 @@ -59523,7 +60330,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -59533,7 +60340,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1765 this -1402901037 +251210093 1 this.numer 1 @@ -59542,7 +60349,7 @@ this.denom 2 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -59555,7 +60362,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1766 this -2130132329 +200224114 1 this.numer 1 @@ -59578,7 +60385,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1767 this -2021730402 +1107024580 1 this.numer -1 @@ -59597,7 +60404,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1766 this -2130132329 +200224114 1 this.numer 1 @@ -59606,7 +60413,7 @@ this.denom 0 1 return -2021730402 +1107024580 1 return.numer -1 @@ -59619,7 +60426,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1768 this -1402901037 +251210093 1 this.numer 1 @@ -59628,7 +60435,7 @@ this.denom 2 1 arg -2021730402 +1107024580 1 arg.numer -1 @@ -59651,7 +60458,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1769 this -1736603580 +1010856212 1 this.numer -2 @@ -59670,7 +60477,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1768 this -1402901037 +251210093 1 this.numer 1 @@ -59679,7 +60486,7 @@ this.denom 2 1 arg -2021730402 +1107024580 1 arg.numer -1 @@ -59688,7 +60495,7 @@ arg.denom 0 1 return -1736603580 +1010856212 1 return.numer -2 @@ -59701,7 +60508,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1765 this -1402901037 +251210093 1 this.numer 1 @@ -59710,7 +60517,7 @@ this.denom 2 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -59719,7 +60526,7 @@ arg.denom 0 1 return -1736603580 +1010856212 1 return.numer -2 @@ -59732,7 +60539,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1770 this -1736603580 +1010856212 1 this.numer -2 @@ -59745,7 +60552,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1771 this -1736603580 +1010856212 1 this.numer -2 @@ -59758,7 +60565,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1771 this -1736603580 +1010856212 1 this.numer -2 @@ -59774,7 +60581,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1770 this -1736603580 +1010856212 1 this.numer -2 @@ -59783,7 +60590,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -59793,7 +60600,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1772 this -2130132329 +200224114 1 this.numer 1 @@ -59802,7 +60609,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -59815,7 +60622,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1773 this -1402901037 +251210093 1 this.numer 1 @@ -59861,7 +60668,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1774 this -646122683 +904861801 1 this.numer -1 @@ -59880,7 +60687,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1773 this -1402901037 +251210093 1 this.numer 1 @@ -59889,7 +60696,7 @@ this.denom 2 1 return -646122683 +904861801 1 return.numer -1 @@ -59902,7 +60709,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1776 this -2130132329 +200224114 1 this.numer 1 @@ -59911,7 +60718,7 @@ this.denom 0 1 arg -646122683 +904861801 1 arg.numer -1 @@ -59934,7 +60741,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1777 this -1706613949 +204715855 1 this.numer 2 @@ -59953,7 +60760,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1776 this -2130132329 +200224114 1 this.numer 1 @@ -59962,7 +60769,7 @@ this.denom 0 1 arg -646122683 +904861801 1 arg.numer -1 @@ -59971,7 +60778,7 @@ arg.denom 2 1 return -1706613949 +204715855 1 return.numer 2 @@ -59984,7 +60791,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1772 this -2130132329 +200224114 1 this.numer 1 @@ -59993,7 +60800,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -60002,7 +60809,7 @@ arg.denom 2 1 return -1706613949 +204715855 1 return.numer 2 @@ -60015,7 +60822,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1778 this -1706613949 +204715855 1 this.numer 2 @@ -60028,7 +60835,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1779 this -1706613949 +204715855 1 this.numer 2 @@ -60041,7 +60848,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1779 this -1706613949 +204715855 1 this.numer 2 @@ -60057,7 +60864,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1778 this -1706613949 +204715855 1 this.numer 2 @@ -60066,7 +60873,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -60076,7 +60883,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1780 this -1402901037 +251210093 1 this.numer 1 @@ -60085,7 +60892,7 @@ this.denom 2 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -60098,7 +60905,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1781 this -434174366 +1773283386 1 this.numer -1 @@ -60121,7 +60928,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1782 this -1269051511 +318857719 1 this.numer 1 @@ -60140,7 +60947,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1781 this -434174366 +1773283386 1 this.numer -1 @@ -60149,7 +60956,7 @@ this.denom 0 1 return -1269051511 +318857719 1 return.numer 1 @@ -60162,7 +60969,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1783 this -1402901037 +251210093 1 this.numer 1 @@ -60171,7 +60978,7 @@ this.denom 2 1 arg -1269051511 +318857719 1 arg.numer 1 @@ -60194,7 +61001,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1784 this -141163373 +745962066 1 this.numer 2 @@ -60213,7 +61020,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1783 this -1402901037 +251210093 1 this.numer 1 @@ -60222,7 +61029,7 @@ this.denom 2 1 arg -1269051511 +318857719 1 arg.numer 1 @@ -60231,7 +61038,7 @@ arg.denom 0 1 return -141163373 +745962066 1 return.numer 2 @@ -60244,7 +61051,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1780 this -1402901037 +251210093 1 this.numer 1 @@ -60253,7 +61060,7 @@ this.denom 2 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -60262,7 +61069,7 @@ arg.denom 0 1 return -141163373 +745962066 1 return.numer 2 @@ -60275,7 +61082,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1785 this -141163373 +745962066 1 this.numer 2 @@ -60288,7 +61095,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1786 this -141163373 +745962066 1 this.numer 2 @@ -60301,7 +61108,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1786 this -141163373 +745962066 1 this.numer 2 @@ -60317,7 +61124,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1785 this -141163373 +745962066 1 this.numer 2 @@ -60326,7 +61133,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -60336,7 +61143,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1787 this -434174366 +1773283386 1 this.numer -1 @@ -60345,7 +61152,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -60358,7 +61165,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1788 this -1402901037 +251210093 1 this.numer 1 @@ -60404,7 +61211,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1789 this -1710863723 +1637290981 1 this.numer -1 @@ -60423,7 +61230,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1788 this -1402901037 +251210093 1 this.numer 1 @@ -60432,7 +61239,7 @@ this.denom 2 1 return -1710863723 +1637290981 1 return.numer -1 @@ -60445,7 +61252,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1791 this -434174366 +1773283386 1 this.numer -1 @@ -60454,7 +61261,7 @@ this.denom 0 1 arg -1710863723 +1637290981 1 arg.numer -1 @@ -60477,7 +61284,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1792 this -1828042778 +1888442711 1 this.numer -2 @@ -60496,7 +61303,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1791 this -434174366 +1773283386 1 this.numer -1 @@ -60505,7 +61312,7 @@ this.denom 0 1 arg -1710863723 +1637290981 1 arg.numer -1 @@ -60514,7 +61321,7 @@ arg.denom 2 1 return -1828042778 +1888442711 1 return.numer -2 @@ -60527,7 +61334,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1787 this -434174366 +1773283386 1 this.numer -1 @@ -60536,7 +61343,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -60545,7 +61352,7 @@ arg.denom 2 1 return -1828042778 +1888442711 1 return.numer -2 @@ -60558,7 +61365,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1793 this -1828042778 +1888442711 1 this.numer -2 @@ -60571,7 +61378,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1794 this -1828042778 +1888442711 1 this.numer -2 @@ -60584,7 +61391,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1794 this -1828042778 +1888442711 1 this.numer -2 @@ -60600,7 +61407,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1793 this -1828042778 +1888442711 1 this.numer -2 @@ -60609,7 +61416,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -60619,7 +61426,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1795 this -1402901037 +251210093 1 this.numer 1 @@ -60628,7 +61435,7 @@ this.denom 2 1 arg -19136856 +581318631 1 arg.numer 100 @@ -60641,7 +61448,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1796 this -19136856 +581318631 1 this.numer 100 @@ -60664,7 +61471,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1797 this -2013915864 +1754894440 1 this.numer -100 @@ -60683,7 +61490,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1796 this -19136856 +581318631 1 this.numer 100 @@ -60692,7 +61499,7 @@ this.denom 0 1 return -2013915864 +1754894440 1 return.numer -100 @@ -60705,7 +61512,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1798 this -1402901037 +251210093 1 this.numer 1 @@ -60714,7 +61521,7 @@ this.denom 2 1 arg -2013915864 +1754894440 1 arg.numer -100 @@ -60737,7 +61544,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1799 this -1394165881 +1998767043 1 this.numer -200 @@ -60756,7 +61563,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1798 this -1402901037 +251210093 1 this.numer 1 @@ -60765,7 +61572,7 @@ this.denom 2 1 arg -2013915864 +1754894440 1 arg.numer -100 @@ -60774,7 +61581,7 @@ arg.denom 0 1 return -1394165881 +1998767043 1 return.numer -200 @@ -60787,7 +61594,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1795 this -1402901037 +251210093 1 this.numer 1 @@ -60796,7 +61603,7 @@ this.denom 2 1 arg -19136856 +581318631 1 arg.numer 100 @@ -60805,7 +61612,7 @@ arg.denom 0 1 return -1394165881 +1998767043 1 return.numer -200 @@ -60818,7 +61625,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1800 this -1394165881 +1998767043 1 this.numer -200 @@ -60831,7 +61638,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1801 this -1394165881 +1998767043 1 this.numer -200 @@ -60844,7 +61651,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1801 this -1394165881 +1998767043 1 this.numer -200 @@ -60860,7 +61667,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1800 this -1394165881 +1998767043 1 this.numer -200 @@ -60869,7 +61676,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -60879,7 +61686,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1802 this -19136856 +581318631 1 this.numer 100 @@ -60888,7 +61695,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -60901,7 +61708,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1803 this -1402901037 +251210093 1 this.numer 1 @@ -60947,7 +61754,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1804 this -551889550 +787738361 1 this.numer -1 @@ -60966,7 +61773,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1803 this -1402901037 +251210093 1 this.numer 1 @@ -60975,7 +61782,7 @@ this.denom 2 1 return -551889550 +787738361 1 return.numer -1 @@ -60988,7 +61795,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1806 this -19136856 +581318631 1 this.numer 100 @@ -60997,7 +61804,7 @@ this.denom 0 1 arg -551889550 +787738361 1 arg.numer -1 @@ -61020,7 +61827,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1807 this -625795457 +607932305 1 this.numer 200 @@ -61039,7 +61846,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1806 this -19136856 +581318631 1 this.numer 100 @@ -61048,7 +61855,7 @@ this.denom 0 1 arg -551889550 +787738361 1 arg.numer -1 @@ -61057,7 +61864,7 @@ arg.denom 2 1 return -625795457 +607932305 1 return.numer 200 @@ -61070,7 +61877,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1802 this -19136856 +581318631 1 this.numer 100 @@ -61079,7 +61886,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -61088,7 +61895,7 @@ arg.denom 2 1 return -625795457 +607932305 1 return.numer 200 @@ -61101,7 +61908,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1808 this -625795457 +607932305 1 this.numer 200 @@ -61114,7 +61921,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1809 this -625795457 +607932305 1 this.numer 200 @@ -61127,7 +61934,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1809 this -625795457 +607932305 1 this.numer 200 @@ -61143,7 +61950,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1808 this -625795457 +607932305 1 this.numer 200 @@ -61152,7 +61959,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -61162,7 +61969,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1810 this -1402901037 +251210093 1 this.numer 1 @@ -61171,7 +61978,7 @@ this.denom 2 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -61184,7 +61991,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1811 this -1658075389 +1877453512 1 this.numer 2 @@ -61207,7 +62014,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1812 this -1516826440 +168366 1 this.numer -2 @@ -61226,7 +62033,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1811 this -1658075389 +1877453512 1 this.numer 2 @@ -61235,7 +62042,7 @@ this.denom 0 1 return -1516826440 +168366 1 return.numer -2 @@ -61248,7 +62055,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1813 this -1402901037 +251210093 1 this.numer 1 @@ -61257,7 +62064,7 @@ this.denom 2 1 arg -1516826440 +168366 1 arg.numer -2 @@ -61280,7 +62087,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1814 this -523603543 +1642030774 1 this.numer -4 @@ -61299,7 +62106,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1813 this -1402901037 +251210093 1 this.numer 1 @@ -61308,7 +62115,7 @@ this.denom 2 1 arg -1516826440 +168366 1 arg.numer -2 @@ -61317,7 +62124,7 @@ arg.denom 0 1 return -523603543 +1642030774 1 return.numer -4 @@ -61330,7 +62137,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1810 this -1402901037 +251210093 1 this.numer 1 @@ -61339,7 +62146,7 @@ this.denom 2 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -61348,7 +62155,7 @@ arg.denom 0 1 return -523603543 +1642030774 1 return.numer -4 @@ -61361,7 +62168,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1815 this -523603543 +1642030774 1 this.numer -4 @@ -61374,7 +62181,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1816 this -523603543 +1642030774 1 this.numer -4 @@ -61387,7 +62194,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1816 this -523603543 +1642030774 1 this.numer -4 @@ -61403,7 +62210,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1815 this -523603543 +1642030774 1 this.numer -4 @@ -61412,7 +62219,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -61422,7 +62229,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1817 this -1658075389 +1877453512 1 this.numer 2 @@ -61431,7 +62238,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -61444,7 +62251,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1818 this -1402901037 +251210093 1 this.numer 1 @@ -61490,7 +62297,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1819 this -1964245442 +1357563986 1 this.numer -1 @@ -61509,7 +62316,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1818 this -1402901037 +251210093 1 this.numer 1 @@ -61518,7 +62325,7 @@ this.denom 2 1 return -1964245442 +1357563986 1 return.numer -1 @@ -61531,7 +62338,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1821 this -1658075389 +1877453512 1 this.numer 2 @@ -61540,7 +62347,7 @@ this.denom 0 1 arg -1964245442 +1357563986 1 arg.numer -1 @@ -61563,7 +62370,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1822 this -1954522010 +384587033 1 this.numer 4 @@ -61582,7 +62389,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1821 this -1658075389 +1877453512 1 this.numer 2 @@ -61591,7 +62398,7 @@ this.denom 0 1 arg -1964245442 +1357563986 1 arg.numer -1 @@ -61600,7 +62407,7 @@ arg.denom 2 1 return -1954522010 +384587033 1 return.numer 4 @@ -61613,7 +62420,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1817 this -1658075389 +1877453512 1 this.numer 2 @@ -61622,7 +62429,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -61631,7 +62438,7 @@ arg.denom 2 1 return -1954522010 +384587033 1 return.numer 4 @@ -61644,7 +62451,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1823 this -1954522010 +384587033 1 this.numer 4 @@ -61657,7 +62464,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1824 this -1954522010 +384587033 1 this.numer 4 @@ -61670,7 +62477,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1824 this -1954522010 +384587033 1 this.numer 4 @@ -61686,7 +62493,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1823 this -1954522010 +384587033 1 this.numer 4 @@ -61695,7 +62502,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -61705,7 +62512,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1825 this -1402901037 +251210093 1 this.numer 1 @@ -61714,7 +62521,7 @@ this.denom 2 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -61727,7 +62534,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1826 this -1525259451 +487694075 1 this.numer -2 @@ -61750,7 +62557,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1827 this -1741557558 +49752459 1 this.numer 2 @@ -61769,7 +62576,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1826 this -1525259451 +487694075 1 this.numer -2 @@ -61778,7 +62585,7 @@ this.denom 0 1 return -1741557558 +49752459 1 return.numer 2 @@ -61791,7 +62598,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1828 this -1402901037 +251210093 1 this.numer 1 @@ -61800,7 +62607,7 @@ this.denom 2 1 arg -1741557558 +49752459 1 arg.numer 2 @@ -61823,7 +62630,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1829 this -155768696 +411506101 1 this.numer 4 @@ -61842,7 +62649,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1828 this -1402901037 +251210093 1 this.numer 1 @@ -61851,7 +62658,7 @@ this.denom 2 1 arg -1741557558 +49752459 1 arg.numer 2 @@ -61860,7 +62667,7 @@ arg.denom 0 1 return -155768696 +411506101 1 return.numer 4 @@ -61873,7 +62680,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1825 this -1402901037 +251210093 1 this.numer 1 @@ -61882,7 +62689,7 @@ this.denom 2 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -61891,7 +62698,7 @@ arg.denom 0 1 return -155768696 +411506101 1 return.numer 4 @@ -61904,7 +62711,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1830 this -155768696 +411506101 1 this.numer 4 @@ -61917,7 +62724,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1831 this -155768696 +411506101 1 this.numer 4 @@ -61930,7 +62737,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1831 this -155768696 +411506101 1 this.numer 4 @@ -61946,7 +62753,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1830 this -155768696 +411506101 1 this.numer 4 @@ -61955,7 +62762,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -61965,7 +62772,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1832 this -1525259451 +487694075 1 this.numer -2 @@ -61974,7 +62781,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -61987,7 +62794,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1833 this -1402901037 +251210093 1 this.numer 1 @@ -62033,7 +62840,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1834 this -221907979 +514455215 1 this.numer -1 @@ -62052,7 +62859,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1833 this -1402901037 +251210093 1 this.numer 1 @@ -62061,7 +62868,7 @@ this.denom 2 1 return -221907979 +514455215 1 return.numer -1 @@ -62074,7 +62881,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1836 this -1525259451 +487694075 1 this.numer -2 @@ -62083,7 +62890,7 @@ this.denom 0 1 arg -221907979 +514455215 1 arg.numer -1 @@ -62106,7 +62913,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1837 this -1575791861 +1780034814 1 this.numer -4 @@ -62125,7 +62932,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1836 this -1525259451 +487694075 1 this.numer -2 @@ -62134,7 +62941,7 @@ this.denom 0 1 arg -221907979 +514455215 1 arg.numer -1 @@ -62143,7 +62950,7 @@ arg.denom 2 1 return -1575791861 +1780034814 1 return.numer -4 @@ -62156,7 +62963,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1832 this -1525259451 +487694075 1 this.numer -2 @@ -62165,7 +62972,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -62174,7 +62981,7 @@ arg.denom 2 1 return -1575791861 +1780034814 1 return.numer -4 @@ -62187,7 +62994,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1838 this -1575791861 +1780034814 1 this.numer -4 @@ -62200,7 +63007,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1839 this -1575791861 +1780034814 1 this.numer -4 @@ -62213,7 +63020,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1839 this -1575791861 +1780034814 1 this.numer -4 @@ -62229,7 +63036,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1838 this -1575791861 +1780034814 1 this.numer -4 @@ -62238,7 +63045,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -62248,7 +63055,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1840 this -1402901037 +251210093 1 this.numer 1 @@ -62257,7 +63064,7 @@ this.denom 2 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -62270,7 +63077,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1841 this -523298718 +1704629915 1 this.numer 9 @@ -62293,7 +63100,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1842 this -1565473023 +1360657223 1 this.numer -9 @@ -62312,7 +63119,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1841 this -523298718 +1704629915 1 this.numer 9 @@ -62321,7 +63128,7 @@ this.denom 0 1 return -1565473023 +1360657223 1 return.numer -9 @@ -62334,7 +63141,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1843 this -1402901037 +251210093 1 this.numer 1 @@ -62343,7 +63150,7 @@ this.denom 2 1 arg -1565473023 +1360657223 1 arg.numer -9 @@ -62366,7 +63173,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1844 this -2082938164 +1905485420 1 this.numer -18 @@ -62385,7 +63192,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1843 this -1402901037 +251210093 1 this.numer 1 @@ -62394,7 +63201,7 @@ this.denom 2 1 arg -1565473023 +1360657223 1 arg.numer -9 @@ -62403,7 +63210,7 @@ arg.denom 0 1 return -2082938164 +1905485420 1 return.numer -18 @@ -62416,7 +63223,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1840 this -1402901037 +251210093 1 this.numer 1 @@ -62425,7 +63232,7 @@ this.denom 2 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -62434,7 +63241,7 @@ arg.denom 0 1 return -2082938164 +1905485420 1 return.numer -18 @@ -62447,7 +63254,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1845 this -2082938164 +1905485420 1 this.numer -18 @@ -62460,7 +63267,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1846 this -2082938164 +1905485420 1 this.numer -18 @@ -62473,7 +63280,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1846 this -2082938164 +1905485420 1 this.numer -18 @@ -62489,7 +63296,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1845 this -2082938164 +1905485420 1 this.numer -18 @@ -62498,7 +63305,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -62508,7 +63315,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1847 this -523298718 +1704629915 1 this.numer 9 @@ -62517,7 +63324,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -62530,7 +63337,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1848 this -1402901037 +251210093 1 this.numer 1 @@ -62576,7 +63383,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1849 this -1810792601 +551479935 1 this.numer -1 @@ -62595,7 +63402,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1848 this -1402901037 +251210093 1 this.numer 1 @@ -62604,7 +63411,7 @@ this.denom 2 1 return -1810792601 +551479935 1 return.numer -1 @@ -62617,7 +63424,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1851 this -523298718 +1704629915 1 this.numer 9 @@ -62626,7 +63433,7 @@ this.denom 0 1 arg -1810792601 +551479935 1 arg.numer -1 @@ -62649,7 +63456,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1852 this -2000483370 +58940486 1 this.numer 18 @@ -62668,7 +63475,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1851 this -523298718 +1704629915 1 this.numer 9 @@ -62677,7 +63484,7 @@ this.denom 0 1 arg -1810792601 +551479935 1 arg.numer -1 @@ -62686,7 +63493,7 @@ arg.denom 2 1 return -2000483370 +58940486 1 return.numer 18 @@ -62699,7 +63506,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1847 this -523298718 +1704629915 1 this.numer 9 @@ -62708,7 +63515,7 @@ this.denom 0 1 arg -1402901037 +251210093 1 arg.numer 1 @@ -62717,7 +63524,7 @@ arg.denom 2 1 return -2000483370 +58940486 1 return.numer 18 @@ -62730,7 +63537,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1853 this -2000483370 +58940486 1 this.numer 18 @@ -62743,7 +63550,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1854 this -2000483370 +58940486 1 this.numer 18 @@ -62756,7 +63563,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1854 this -2000483370 +58940486 1 this.numer 18 @@ -62772,7 +63579,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1853 this -2000483370 +58940486 1 this.numer 18 @@ -62781,7 +63588,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -62791,7 +63598,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1855 this -595445781 +2025221430 1 this.numer -1 @@ -62800,7 +63607,7 @@ this.denom 2 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -62813,7 +63620,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1856 this -2130132329 +200224114 1 this.numer 1 @@ -62836,7 +63643,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1857 this -1120022158 +501107890 1 this.numer -1 @@ -62855,7 +63662,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1856 this -2130132329 +200224114 1 this.numer 1 @@ -62864,7 +63671,7 @@ this.denom 0 1 return -1120022158 +501107890 1 return.numer -1 @@ -62877,7 +63684,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1858 this -595445781 +2025221430 1 this.numer -1 @@ -62886,7 +63693,7 @@ this.denom 2 1 arg -1120022158 +501107890 1 arg.numer -1 @@ -62909,7 +63716,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1859 this -1518243551 +1997859171 1 this.numer -2 @@ -62928,7 +63735,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1858 this -595445781 +2025221430 1 this.numer -1 @@ -62937,7 +63744,7 @@ this.denom 2 1 arg -1120022158 +501107890 1 arg.numer -1 @@ -62946,7 +63753,7 @@ arg.denom 0 1 return -1518243551 +1997859171 1 return.numer -2 @@ -62959,7 +63766,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1855 this -595445781 +2025221430 1 this.numer -1 @@ -62968,7 +63775,7 @@ this.denom 2 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -62977,7 +63784,7 @@ arg.denom 0 1 return -1518243551 +1997859171 1 return.numer -2 @@ -62990,7 +63797,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1860 this -1518243551 +1997859171 1 this.numer -2 @@ -63003,7 +63810,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1861 this -1518243551 +1997859171 1 this.numer -2 @@ -63016,7 +63823,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1861 this -1518243551 +1997859171 1 this.numer -2 @@ -63032,7 +63839,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1860 this -1518243551 +1997859171 1 this.numer -2 @@ -63041,7 +63848,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -63051,7 +63858,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1862 this -2130132329 +200224114 1 this.numer 1 @@ -63060,7 +63867,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -63073,7 +63880,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1863 this -595445781 +2025221430 1 this.numer -1 @@ -63119,7 +63926,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1864 this -718668003 +550402284 1 this.numer 1 @@ -63138,7 +63945,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1863 this -595445781 +2025221430 1 this.numer -1 @@ -63147,7 +63954,7 @@ this.denom 2 1 return -718668003 +550402284 1 return.numer 1 @@ -63160,7 +63967,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1866 this -2130132329 +200224114 1 this.numer 1 @@ -63169,7 +63976,7 @@ this.denom 0 1 arg -718668003 +550402284 1 arg.numer 1 @@ -63192,7 +63999,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1867 this -1205095693 +959869407 1 this.numer 2 @@ -63211,7 +64018,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1866 this -2130132329 +200224114 1 this.numer 1 @@ -63220,7 +64027,7 @@ this.denom 0 1 arg -718668003 +550402284 1 arg.numer 1 @@ -63229,7 +64036,7 @@ arg.denom 2 1 return -1205095693 +959869407 1 return.numer 2 @@ -63242,7 +64049,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1862 this -2130132329 +200224114 1 this.numer 1 @@ -63251,7 +64058,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -63260,7 +64067,7 @@ arg.denom 2 1 return -1205095693 +959869407 1 return.numer 2 @@ -63273,7 +64080,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1868 this -1205095693 +959869407 1 this.numer 2 @@ -63286,7 +64093,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1869 this -1205095693 +959869407 1 this.numer 2 @@ -63299,7 +64106,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1869 this -1205095693 +959869407 1 this.numer 2 @@ -63315,7 +64122,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1868 this -1205095693 +959869407 1 this.numer 2 @@ -63324,7 +64131,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -63334,7 +64141,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1870 this -595445781 +2025221430 1 this.numer -1 @@ -63343,7 +64150,7 @@ this.denom 2 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -63356,7 +64163,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1871 this -434174366 +1773283386 1 this.numer -1 @@ -63379,7 +64186,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1872 this -1125037394 +1449263511 1 this.numer 1 @@ -63398,7 +64205,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1871 this -434174366 +1773283386 1 this.numer -1 @@ -63407,7 +64214,7 @@ this.denom 0 1 return -1125037394 +1449263511 1 return.numer 1 @@ -63420,7 +64227,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1873 this -595445781 +2025221430 1 this.numer -1 @@ -63429,7 +64236,7 @@ this.denom 2 1 arg -1125037394 +1449263511 1 arg.numer 1 @@ -63452,7 +64259,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1874 this -2057452770 +116237769 1 this.numer 2 @@ -63471,7 +64278,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1873 this -595445781 +2025221430 1 this.numer -1 @@ -63480,7 +64287,7 @@ this.denom 2 1 arg -1125037394 +1449263511 1 arg.numer 1 @@ -63489,7 +64296,7 @@ arg.denom 0 1 return -2057452770 +116237769 1 return.numer 2 @@ -63502,7 +64309,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1870 this -595445781 +2025221430 1 this.numer -1 @@ -63511,7 +64318,7 @@ this.denom 2 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -63520,7 +64327,7 @@ arg.denom 0 1 return -2057452770 +116237769 1 return.numer 2 @@ -63533,7 +64340,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1875 this -2057452770 +116237769 1 this.numer 2 @@ -63546,7 +64353,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1876 this -2057452770 +116237769 1 this.numer 2 @@ -63559,7 +64366,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1876 this -2057452770 +116237769 1 this.numer 2 @@ -63575,7 +64382,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1875 this -2057452770 +116237769 1 this.numer 2 @@ -63584,7 +64391,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -63594,7 +64401,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1877 this -434174366 +1773283386 1 this.numer -1 @@ -63603,7 +64410,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -63616,7 +64423,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1878 this -595445781 +2025221430 1 this.numer -1 @@ -63662,7 +64469,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1879 this -827021396 +1438098656 1 this.numer 1 @@ -63681,7 +64488,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1878 this -595445781 +2025221430 1 this.numer -1 @@ -63690,7 +64497,7 @@ this.denom 2 1 return -827021396 +1438098656 1 return.numer 1 @@ -63703,7 +64510,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1881 this -434174366 +1773283386 1 this.numer -1 @@ -63712,7 +64519,7 @@ this.denom 0 1 arg -827021396 +1438098656 1 arg.numer 1 @@ -63735,7 +64542,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1882 this -1234439188 +1594199808 1 this.numer -2 @@ -63754,7 +64561,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1881 this -434174366 +1773283386 1 this.numer -1 @@ -63763,7 +64570,7 @@ this.denom 0 1 arg -827021396 +1438098656 1 arg.numer 1 @@ -63772,7 +64579,7 @@ arg.denom 2 1 return -1234439188 +1594199808 1 return.numer -2 @@ -63785,7 +64592,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1877 this -434174366 +1773283386 1 this.numer -1 @@ -63794,7 +64601,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -63803,7 +64610,7 @@ arg.denom 2 1 return -1234439188 +1594199808 1 return.numer -2 @@ -63816,7 +64623,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1883 this -1234439188 +1594199808 1 this.numer -2 @@ -63829,7 +64636,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1884 this -1234439188 +1594199808 1 this.numer -2 @@ -63842,7 +64649,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1884 this -1234439188 +1594199808 1 this.numer -2 @@ -63858,7 +64665,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1883 this -1234439188 +1594199808 1 this.numer -2 @@ -63867,7 +64674,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -63877,7 +64684,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1885 this -595445781 +2025221430 1 this.numer -1 @@ -63886,7 +64693,7 @@ this.denom 2 1 arg -19136856 +581318631 1 arg.numer 100 @@ -63899,7 +64706,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1886 this -19136856 +581318631 1 this.numer 100 @@ -63922,7 +64729,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1887 this -379919049 +422396878 1 this.numer -100 @@ -63941,7 +64748,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1886 this -19136856 +581318631 1 this.numer 100 @@ -63950,7 +64757,7 @@ this.denom 0 1 return -379919049 +422396878 1 return.numer -100 @@ -63963,7 +64770,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1888 this -595445781 +2025221430 1 this.numer -1 @@ -63972,7 +64779,7 @@ this.denom 2 1 arg -379919049 +422396878 1 arg.numer -100 @@ -63995,7 +64802,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1889 this -830574012 +1912962767 1 this.numer -200 @@ -64014,7 +64821,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1888 this -595445781 +2025221430 1 this.numer -1 @@ -64023,7 +64830,7 @@ this.denom 2 1 arg -379919049 +422396878 1 arg.numer -100 @@ -64032,7 +64839,7 @@ arg.denom 0 1 return -830574012 +1912962767 1 return.numer -200 @@ -64045,7 +64852,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1885 this -595445781 +2025221430 1 this.numer -1 @@ -64054,7 +64861,7 @@ this.denom 2 1 arg -19136856 +581318631 1 arg.numer 100 @@ -64063,7 +64870,7 @@ arg.denom 0 1 return -830574012 +1912962767 1 return.numer -200 @@ -64076,7 +64883,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1890 this -830574012 +1912962767 1 this.numer -200 @@ -64089,7 +64896,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1891 this -830574012 +1912962767 1 this.numer -200 @@ -64102,7 +64909,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1891 this -830574012 +1912962767 1 this.numer -200 @@ -64118,7 +64925,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1890 this -830574012 +1912962767 1 this.numer -200 @@ -64127,7 +64934,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -64137,7 +64944,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1892 this -19136856 +581318631 1 this.numer 100 @@ -64146,7 +64953,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -64159,7 +64966,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1893 this -595445781 +2025221430 1 this.numer -1 @@ -64205,7 +65012,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1894 this -813714184 +452805835 1 this.numer 1 @@ -64224,7 +65031,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1893 this -595445781 +2025221430 1 this.numer -1 @@ -64233,7 +65040,7 @@ this.denom 2 1 return -813714184 +452805835 1 return.numer 1 @@ -64246,7 +65053,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1896 this -19136856 +581318631 1 this.numer 100 @@ -64255,7 +65062,7 @@ this.denom 0 1 arg -813714184 +452805835 1 arg.numer 1 @@ -64278,7 +65085,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1897 this -918426392 +1769190683 1 this.numer 200 @@ -64297,7 +65104,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1896 this -19136856 +581318631 1 this.numer 100 @@ -64306,7 +65113,7 @@ this.denom 0 1 arg -813714184 +452805835 1 arg.numer 1 @@ -64315,7 +65122,7 @@ arg.denom 2 1 return -918426392 +1769190683 1 return.numer 200 @@ -64328,7 +65135,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1892 this -19136856 +581318631 1 this.numer 100 @@ -64337,7 +65144,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -64346,7 +65153,7 @@ arg.denom 2 1 return -918426392 +1769190683 1 return.numer 200 @@ -64359,7 +65166,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1898 this -918426392 +1769190683 1 this.numer 200 @@ -64372,7 +65179,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1899 this -918426392 +1769190683 1 this.numer 200 @@ -64385,7 +65192,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1899 this -918426392 +1769190683 1 this.numer 200 @@ -64401,7 +65208,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1898 this -918426392 +1769190683 1 this.numer 200 @@ -64410,7 +65217,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -64420,7 +65227,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1900 this -595445781 +2025221430 1 this.numer -1 @@ -64429,7 +65236,7 @@ this.denom 2 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -64442,7 +65249,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1901 this -1658075389 +1877453512 1 this.numer 2 @@ -64465,7 +65272,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1902 this -2027399355 +447981768 1 this.numer -2 @@ -64484,7 +65291,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1901 this -1658075389 +1877453512 1 this.numer 2 @@ -64493,7 +65300,7 @@ this.denom 0 1 return -2027399355 +447981768 1 return.numer -2 @@ -64506,7 +65313,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1903 this -595445781 +2025221430 1 this.numer -1 @@ -64515,7 +65322,7 @@ this.denom 2 1 arg -2027399355 +447981768 1 arg.numer -2 @@ -64538,7 +65345,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1904 this -377932536 +1125736023 1 this.numer -4 @@ -64557,7 +65364,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1903 this -595445781 +2025221430 1 this.numer -1 @@ -64566,7 +65373,7 @@ this.denom 2 1 arg -2027399355 +447981768 1 arg.numer -2 @@ -64575,7 +65382,7 @@ arg.denom 0 1 return -377932536 +1125736023 1 return.numer -4 @@ -64588,7 +65395,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1900 this -595445781 +2025221430 1 this.numer -1 @@ -64597,7 +65404,7 @@ this.denom 2 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -64606,7 +65413,7 @@ arg.denom 0 1 return -377932536 +1125736023 1 return.numer -4 @@ -64619,7 +65426,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1905 this -377932536 +1125736023 1 this.numer -4 @@ -64632,7 +65439,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1906 this -377932536 +1125736023 1 this.numer -4 @@ -64645,7 +65452,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1906 this -377932536 +1125736023 1 this.numer -4 @@ -64661,7 +65468,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1905 this -377932536 +1125736023 1 this.numer -4 @@ -64670,7 +65477,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -64680,7 +65487,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1907 this -1658075389 +1877453512 1 this.numer 2 @@ -64689,7 +65496,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -64702,7 +65509,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1908 this -595445781 +2025221430 1 this.numer -1 @@ -64748,7 +65555,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1909 this -1802988373 +858952163 1 this.numer 1 @@ -64767,7 +65574,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1908 this -595445781 +2025221430 1 this.numer -1 @@ -64776,7 +65583,7 @@ this.denom 2 1 return -1802988373 +858952163 1 return.numer 1 @@ -64789,7 +65596,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1911 this -1658075389 +1877453512 1 this.numer 2 @@ -64798,7 +65605,7 @@ this.denom 0 1 arg -1802988373 +858952163 1 arg.numer 1 @@ -64821,7 +65628,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1912 this -1831325841 +1201484275 1 this.numer 4 @@ -64840,7 +65647,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1911 this -1658075389 +1877453512 1 this.numer 2 @@ -64849,7 +65656,7 @@ this.denom 0 1 arg -1802988373 +858952163 1 arg.numer 1 @@ -64858,7 +65665,7 @@ arg.denom 2 1 return -1831325841 +1201484275 1 return.numer 4 @@ -64871,7 +65678,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1907 this -1658075389 +1877453512 1 this.numer 2 @@ -64880,7 +65687,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -64889,7 +65696,7 @@ arg.denom 2 1 return -1831325841 +1201484275 1 return.numer 4 @@ -64902,7 +65709,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1913 this -1831325841 +1201484275 1 this.numer 4 @@ -64915,7 +65722,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1914 this -1831325841 +1201484275 1 this.numer 4 @@ -64928,7 +65735,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1914 this -1831325841 +1201484275 1 this.numer 4 @@ -64944,7 +65751,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1913 this -1831325841 +1201484275 1 this.numer 4 @@ -64953,7 +65760,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -64963,7 +65770,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1915 this -595445781 +2025221430 1 this.numer -1 @@ -64972,7 +65779,7 @@ this.denom 2 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -64985,7 +65792,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1916 this -1525259451 +487694075 1 this.numer -2 @@ -65008,7 +65815,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1917 this -1357780883 +1089418272 1 this.numer 2 @@ -65027,7 +65834,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1916 this -1525259451 +487694075 1 this.numer -2 @@ -65036,7 +65843,7 @@ this.denom 0 1 return -1357780883 +1089418272 1 return.numer 2 @@ -65049,7 +65856,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1918 this -595445781 +2025221430 1 this.numer -1 @@ -65058,7 +65865,7 @@ this.denom 2 1 arg -1357780883 +1089418272 1 arg.numer 2 @@ -65081,7 +65888,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1919 this -1062067559 +1233990028 1 this.numer 4 @@ -65100,7 +65907,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1918 this -595445781 +2025221430 1 this.numer -1 @@ -65109,7 +65916,7 @@ this.denom 2 1 arg -1357780883 +1089418272 1 arg.numer 2 @@ -65118,7 +65925,7 @@ arg.denom 0 1 return -1062067559 +1233990028 1 return.numer 4 @@ -65131,7 +65938,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1915 this -595445781 +2025221430 1 this.numer -1 @@ -65140,7 +65947,7 @@ this.denom 2 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -65149,7 +65956,7 @@ arg.denom 0 1 return -1062067559 +1233990028 1 return.numer 4 @@ -65162,7 +65969,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1920 this -1062067559 +1233990028 1 this.numer 4 @@ -65175,7 +65982,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1921 this -1062067559 +1233990028 1 this.numer 4 @@ -65188,7 +65995,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1921 this -1062067559 +1233990028 1 this.numer 4 @@ -65204,7 +66011,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1920 this -1062067559 +1233990028 1 this.numer 4 @@ -65213,7 +66020,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -65223,7 +66030,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1922 this -1525259451 +487694075 1 this.numer -2 @@ -65232,7 +66039,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -65245,7 +66052,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1923 this -595445781 +2025221430 1 this.numer -1 @@ -65291,7 +66098,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1924 this -285390249 +1847008471 1 this.numer 1 @@ -65310,7 +66117,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1923 this -595445781 +2025221430 1 this.numer -1 @@ -65319,7 +66126,7 @@ this.denom 2 1 return -285390249 +1847008471 1 return.numer 1 @@ -65332,7 +66139,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1926 this -1525259451 +487694075 1 this.numer -2 @@ -65341,7 +66148,7 @@ this.denom 0 1 arg -285390249 +1847008471 1 arg.numer 1 @@ -65364,7 +66171,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1927 this -1222931192 +1076607567 1 this.numer -4 @@ -65383,7 +66190,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1926 this -1525259451 +487694075 1 this.numer -2 @@ -65392,7 +66199,7 @@ this.denom 0 1 arg -285390249 +1847008471 1 arg.numer 1 @@ -65401,7 +66208,7 @@ arg.denom 2 1 return -1222931192 +1076607567 1 return.numer -4 @@ -65414,7 +66221,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1922 this -1525259451 +487694075 1 this.numer -2 @@ -65423,7 +66230,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -65432,7 +66239,7 @@ arg.denom 2 1 return -1222931192 +1076607567 1 return.numer -4 @@ -65445,7 +66252,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1928 this -1222931192 +1076607567 1 this.numer -4 @@ -65458,7 +66265,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1929 this -1222931192 +1076607567 1 this.numer -4 @@ -65471,7 +66278,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1929 this -1222931192 +1076607567 1 this.numer -4 @@ -65487,7 +66294,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1928 this -1222931192 +1076607567 1 this.numer -4 @@ -65496,7 +66303,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -65506,7 +66313,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1930 this -595445781 +2025221430 1 this.numer -1 @@ -65515,7 +66322,7 @@ this.denom 2 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -65528,7 +66335,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1931 this -523298718 +1704629915 1 this.numer 9 @@ -65551,7 +66358,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1932 this -238558507 +2036127838 1 this.numer -9 @@ -65570,7 +66377,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1931 this -523298718 +1704629915 1 this.numer 9 @@ -65579,7 +66386,7 @@ this.denom 0 1 return -238558507 +2036127838 1 return.numer -9 @@ -65592,7 +66399,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1933 this -595445781 +2025221430 1 this.numer -1 @@ -65601,7 +66408,7 @@ this.denom 2 1 arg -238558507 +2036127838 1 arg.numer -9 @@ -65624,7 +66431,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1934 this -100858200 +1509791656 1 this.numer -18 @@ -65643,7 +66450,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1933 this -595445781 +2025221430 1 this.numer -1 @@ -65652,7 +66459,7 @@ this.denom 2 1 arg -238558507 +2036127838 1 arg.numer -9 @@ -65661,7 +66468,7 @@ arg.denom 0 1 return -100858200 +1509791656 1 return.numer -18 @@ -65674,7 +66481,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1930 this -595445781 +2025221430 1 this.numer -1 @@ -65683,7 +66490,7 @@ this.denom 2 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -65692,7 +66499,7 @@ arg.denom 0 1 return -100858200 +1509791656 1 return.numer -18 @@ -65705,7 +66512,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1935 this -100858200 +1509791656 1 this.numer -18 @@ -65718,7 +66525,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1936 this -100858200 +1509791656 1 this.numer -18 @@ -65731,7 +66538,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1936 this -100858200 +1509791656 1 this.numer -18 @@ -65747,7 +66554,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1935 this -100858200 +1509791656 1 this.numer -18 @@ -65756,7 +66563,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -65766,7 +66573,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1937 this -523298718 +1704629915 1 this.numer 9 @@ -65775,7 +66582,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -65788,7 +66595,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1938 this -595445781 +2025221430 1 this.numer -1 @@ -65834,7 +66641,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1939 this -759169917 +257608164 1 this.numer 1 @@ -65853,7 +66660,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1938 this -595445781 +2025221430 1 this.numer -1 @@ -65862,7 +66669,7 @@ this.denom 2 1 return -759169917 +257608164 1 return.numer 1 @@ -65875,7 +66682,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1941 this -523298718 +1704629915 1 this.numer 9 @@ -65884,7 +66691,7 @@ this.denom 0 1 arg -759169917 +257608164 1 arg.numer 1 @@ -65907,7 +66714,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1942 this -1168448192 +306115458 1 this.numer 18 @@ -65926,7 +66733,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1941 this -523298718 +1704629915 1 this.numer 9 @@ -65935,7 +66742,7 @@ this.denom 0 1 arg -759169917 +257608164 1 arg.numer 1 @@ -65944,7 +66751,7 @@ arg.denom 2 1 return -1168448192 +306115458 1 return.numer 18 @@ -65957,7 +66764,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1937 this -523298718 +1704629915 1 this.numer 9 @@ -65966,7 +66773,7 @@ this.denom 0 1 arg -595445781 +2025221430 1 arg.numer -1 @@ -65975,7 +66782,7 @@ arg.denom 2 1 return -1168448192 +306115458 1 return.numer 18 @@ -65988,7 +66795,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1943 this -1168448192 +306115458 1 this.numer 18 @@ -66001,7 +66808,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1944 this -1168448192 +306115458 1 this.numer 18 @@ -66014,7 +66821,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1944 this -1168448192 +306115458 1 this.numer 18 @@ -66030,7 +66837,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1943 this -1168448192 +306115458 1 this.numer 18 @@ -66039,7 +66846,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -66049,7 +66856,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1945 this -383446247 +1378084334 1 this.numer 3 @@ -66058,7 +66865,7 @@ this.denom 2 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -66071,7 +66878,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1946 this -2130132329 +200224114 1 this.numer 1 @@ -66094,7 +66901,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1947 this -1518294776 +230643635 1 this.numer -1 @@ -66113,7 +66920,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1946 this -2130132329 +200224114 1 this.numer 1 @@ -66122,7 +66929,7 @@ this.denom 0 1 return -1518294776 +230643635 1 return.numer -1 @@ -66135,7 +66942,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1948 this -383446247 +1378084334 1 this.numer 3 @@ -66144,7 +66951,7 @@ this.denom 2 1 arg -1518294776 +230643635 1 arg.numer -1 @@ -66167,7 +66974,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1949 this -1579606578 +944427387 1 this.numer -2 @@ -66186,7 +66993,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1948 this -383446247 +1378084334 1 this.numer 3 @@ -66195,7 +67002,7 @@ this.denom 2 1 arg -1518294776 +230643635 1 arg.numer -1 @@ -66204,7 +67011,7 @@ arg.denom 0 1 return -1579606578 +944427387 1 return.numer -2 @@ -66217,7 +67024,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1945 this -383446247 +1378084334 1 this.numer 3 @@ -66226,7 +67033,7 @@ this.denom 2 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -66235,7 +67042,7 @@ arg.denom 0 1 return -1579606578 +944427387 1 return.numer -2 @@ -66248,7 +67055,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1950 this -1579606578 +944427387 1 this.numer -2 @@ -66261,7 +67068,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1951 this -1579606578 +944427387 1 this.numer -2 @@ -66274,7 +67081,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1951 this -1579606578 +944427387 1 this.numer -2 @@ -66290,7 +67097,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1950 this -1579606578 +944427387 1 this.numer -2 @@ -66299,7 +67106,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -66309,7 +67116,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1952 this -2130132329 +200224114 1 this.numer 1 @@ -66318,7 +67125,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -66331,7 +67138,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1953 this -383446247 +1378084334 1 this.numer 3 @@ -66377,7 +67184,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1954 this -1254912232 +1636182655 1 this.numer -3 @@ -66396,7 +67203,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1953 this -383446247 +1378084334 1 this.numer 3 @@ -66405,7 +67212,7 @@ this.denom 2 1 return -1254912232 +1636182655 1 return.numer -3 @@ -66418,7 +67225,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1956 this -2130132329 +200224114 1 this.numer 1 @@ -66427,7 +67234,7 @@ this.denom 0 1 arg -1254912232 +1636182655 1 arg.numer -3 @@ -66450,7 +67257,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1957 this -872986037 +71399214 1 this.numer 2 @@ -66469,7 +67276,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1956 this -2130132329 +200224114 1 this.numer 1 @@ -66478,7 +67285,7 @@ this.denom 0 1 arg -1254912232 +1636182655 1 arg.numer -3 @@ -66487,7 +67294,7 @@ arg.denom 2 1 return -872986037 +71399214 1 return.numer 2 @@ -66500,7 +67307,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1952 this -2130132329 +200224114 1 this.numer 1 @@ -66509,7 +67316,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -66518,7 +67325,7 @@ arg.denom 2 1 return -872986037 +71399214 1 return.numer 2 @@ -66531,7 +67338,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1958 this -872986037 +71399214 1 this.numer 2 @@ -66544,7 +67351,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1959 this -872986037 +71399214 1 this.numer 2 @@ -66557,7 +67364,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1959 this -872986037 +71399214 1 this.numer 2 @@ -66573,7 +67380,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1958 this -872986037 +71399214 1 this.numer 2 @@ -66582,7 +67389,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -66592,7 +67399,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1960 this -383446247 +1378084334 1 this.numer 3 @@ -66601,7 +67408,7 @@ this.denom 2 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -66614,7 +67421,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1961 this -434174366 +1773283386 1 this.numer -1 @@ -66637,7 +67444,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1962 this -668047555 +1932831450 1 this.numer 1 @@ -66656,7 +67463,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1961 this -434174366 +1773283386 1 this.numer -1 @@ -66665,7 +67472,7 @@ this.denom 0 1 return -668047555 +1932831450 1 return.numer 1 @@ -66678,7 +67485,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1963 this -383446247 +1378084334 1 this.numer 3 @@ -66687,7 +67494,7 @@ this.denom 2 1 arg -668047555 +1932831450 1 arg.numer 1 @@ -66710,7 +67517,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1964 this -830750369 +496729294 1 this.numer 2 @@ -66729,7 +67536,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1963 this -383446247 +1378084334 1 this.numer 3 @@ -66738,7 +67545,7 @@ this.denom 2 1 arg -668047555 +1932831450 1 arg.numer 1 @@ -66747,7 +67554,7 @@ arg.denom 0 1 return -830750369 +496729294 1 return.numer 2 @@ -66760,7 +67567,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1960 this -383446247 +1378084334 1 this.numer 3 @@ -66769,7 +67576,7 @@ this.denom 2 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -66778,7 +67585,7 @@ arg.denom 0 1 return -830750369 +496729294 1 return.numer 2 @@ -66791,7 +67598,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1965 this -830750369 +496729294 1 this.numer 2 @@ -66804,7 +67611,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1966 this -830750369 +496729294 1 this.numer 2 @@ -66817,7 +67624,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1966 this -830750369 +496729294 1 this.numer 2 @@ -66833,7 +67640,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1965 this -830750369 +496729294 1 this.numer 2 @@ -66842,7 +67649,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -66852,7 +67659,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1967 this -434174366 +1773283386 1 this.numer -1 @@ -66861,7 +67668,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -66874,7 +67681,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1968 this -383446247 +1378084334 1 this.numer 3 @@ -66920,7 +67727,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1969 this -1630262636 +1302227152 1 this.numer -3 @@ -66939,7 +67746,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1968 this -383446247 +1378084334 1 this.numer 3 @@ -66948,7 +67755,7 @@ this.denom 2 1 return -1630262636 +1302227152 1 return.numer -3 @@ -66961,7 +67768,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1971 this -434174366 +1773283386 1 this.numer -1 @@ -66970,7 +67777,7 @@ this.denom 0 1 arg -1630262636 +1302227152 1 arg.numer -3 @@ -66993,7 +67800,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1972 this -80271179 +1122606666 1 this.numer -2 @@ -67012,7 +67819,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1971 this -434174366 +1773283386 1 this.numer -1 @@ -67021,7 +67828,7 @@ this.denom 0 1 arg -1630262636 +1302227152 1 arg.numer -3 @@ -67030,7 +67837,7 @@ arg.denom 2 1 return -80271179 +1122606666 1 return.numer -2 @@ -67043,7 +67850,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1967 this -434174366 +1773283386 1 this.numer -1 @@ -67052,7 +67859,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -67061,7 +67868,7 @@ arg.denom 2 1 return -80271179 +1122606666 1 return.numer -2 @@ -67074,7 +67881,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1973 this -80271179 +1122606666 1 this.numer -2 @@ -67087,7 +67894,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1974 this -80271179 +1122606666 1 this.numer -2 @@ -67100,7 +67907,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1974 this -80271179 +1122606666 1 this.numer -2 @@ -67116,7 +67923,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1973 this -80271179 +1122606666 1 this.numer -2 @@ -67125,7 +67932,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -67135,7 +67942,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1975 this -383446247 +1378084334 1 this.numer 3 @@ -67144,7 +67951,7 @@ this.denom 2 1 arg -19136856 +581318631 1 arg.numer 100 @@ -67157,7 +67964,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1976 this -19136856 +581318631 1 this.numer 100 @@ -67180,7 +67987,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1977 this -497975137 +350068407 1 this.numer -100 @@ -67199,7 +68006,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1976 this -19136856 +581318631 1 this.numer 100 @@ -67208,7 +68015,7 @@ this.denom 0 1 return -497975137 +350068407 1 return.numer -100 @@ -67221,7 +68028,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1978 this -383446247 +1378084334 1 this.numer 3 @@ -67230,7 +68037,7 @@ this.denom 2 1 arg -497975137 +350068407 1 arg.numer -100 @@ -67253,7 +68060,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1979 this -724355200 +1390869998 1 this.numer -200 @@ -67272,7 +68079,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1978 this -383446247 +1378084334 1 this.numer 3 @@ -67281,7 +68088,7 @@ this.denom 2 1 arg -497975137 +350068407 1 arg.numer -100 @@ -67290,7 +68097,7 @@ arg.denom 0 1 return -724355200 +1390869998 1 return.numer -200 @@ -67303,7 +68110,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1975 this -383446247 +1378084334 1 this.numer 3 @@ -67312,7 +68119,7 @@ this.denom 2 1 arg -19136856 +581318631 1 arg.numer 100 @@ -67321,7 +68128,7 @@ arg.denom 0 1 return -724355200 +1390869998 1 return.numer -200 @@ -67334,7 +68141,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1980 this -724355200 +1390869998 1 this.numer -200 @@ -67347,7 +68154,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1981 this -724355200 +1390869998 1 this.numer -200 @@ -67360,7 +68167,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1981 this -724355200 +1390869998 1 this.numer -200 @@ -67376,7 +68183,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1980 this -724355200 +1390869998 1 this.numer -200 @@ -67385,7 +68192,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -67395,7 +68202,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1982 this -19136856 +581318631 1 this.numer 100 @@ -67404,7 +68211,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -67417,7 +68224,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1983 this -383446247 +1378084334 1 this.numer 3 @@ -67463,7 +68270,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1984 this -153051557 +1820383114 1 this.numer -3 @@ -67482,7 +68289,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1983 this -383446247 +1378084334 1 this.numer 3 @@ -67491,7 +68298,7 @@ this.denom 2 1 return -153051557 +1820383114 1 return.numer -3 @@ -67504,7 +68311,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1986 this -19136856 +581318631 1 this.numer 100 @@ -67513,7 +68320,7 @@ this.denom 0 1 arg -153051557 +1820383114 1 arg.numer -3 @@ -67536,7 +68343,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1987 this -1799593040 +1645547422 1 this.numer 200 @@ -67555,7 +68362,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1986 this -19136856 +581318631 1 this.numer 100 @@ -67564,7 +68371,7 @@ this.denom 0 1 arg -153051557 +1820383114 1 arg.numer -3 @@ -67573,7 +68380,7 @@ arg.denom 2 1 return -1799593040 +1645547422 1 return.numer 200 @@ -67586,7 +68393,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1982 this -19136856 +581318631 1 this.numer 100 @@ -67595,7 +68402,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -67604,7 +68411,7 @@ arg.denom 2 1 return -1799593040 +1645547422 1 return.numer 200 @@ -67617,7 +68424,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1988 this -1799593040 +1645547422 1 this.numer 200 @@ -67630,7 +68437,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1989 this -1799593040 +1645547422 1 this.numer 200 @@ -67643,7 +68450,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1989 this -1799593040 +1645547422 1 this.numer 200 @@ -67659,7 +68466,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1988 this -1799593040 +1645547422 1 this.numer 200 @@ -67668,7 +68475,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -67678,7 +68485,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1990 this -383446247 +1378084334 1 this.numer 3 @@ -67687,7 +68494,7 @@ this.denom 2 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -67700,7 +68507,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1991 this -1658075389 +1877453512 1 this.numer 2 @@ -67723,7 +68530,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1992 this -600538932 +440737101 1 this.numer -2 @@ -67742,7 +68549,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1991 this -1658075389 +1877453512 1 this.numer 2 @@ -67751,7 +68558,7 @@ this.denom 0 1 return -600538932 +440737101 1 return.numer -2 @@ -67764,7 +68571,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 1993 this -383446247 +1378084334 1 this.numer 3 @@ -67773,7 +68580,7 @@ this.denom 2 1 arg -600538932 +440737101 1 arg.numer -2 @@ -67796,7 +68603,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 1994 this -84689224 +2141817446 1 this.numer -4 @@ -67815,7 +68622,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 1993 this -383446247 +1378084334 1 this.numer 3 @@ -67824,7 +68631,7 @@ this.denom 2 1 arg -600538932 +440737101 1 arg.numer -2 @@ -67833,7 +68640,7 @@ arg.denom 0 1 return -84689224 +2141817446 1 return.numer -4 @@ -67846,7 +68653,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1990 this -383446247 +1378084334 1 this.numer 3 @@ -67855,7 +68662,7 @@ this.denom 2 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -67864,7 +68671,7 @@ arg.denom 0 1 return -84689224 +2141817446 1 return.numer -4 @@ -67877,7 +68684,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 1995 this -84689224 +2141817446 1 this.numer -4 @@ -67890,7 +68697,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 1996 this -84689224 +2141817446 1 this.numer -4 @@ -67903,7 +68710,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 1996 this -84689224 +2141817446 1 this.numer -4 @@ -67919,7 +68726,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 1995 this -84689224 +2141817446 1 this.numer -4 @@ -67928,7 +68735,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -67938,7 +68745,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 1997 this -1658075389 +1877453512 1 this.numer 2 @@ -67947,7 +68754,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -67960,7 +68767,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 1998 this -383446247 +1378084334 1 this.numer 3 @@ -68006,7 +68813,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 1999 this -1737613454 +369049246 1 this.numer -3 @@ -68025,7 +68832,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 1998 this -383446247 +1378084334 1 this.numer 3 @@ -68034,7 +68841,7 @@ this.denom 2 1 return -1737613454 +369049246 1 return.numer -3 @@ -68047,7 +68854,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2001 this -1658075389 +1877453512 1 this.numer 2 @@ -68056,7 +68863,7 @@ this.denom 0 1 arg -1737613454 +369049246 1 arg.numer -3 @@ -68079,7 +68886,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2002 this -439205825 +1608297024 1 this.numer 4 @@ -68098,7 +68905,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2001 this -1658075389 +1877453512 1 this.numer 2 @@ -68107,7 +68914,7 @@ this.denom 0 1 arg -1737613454 +369049246 1 arg.numer -3 @@ -68116,7 +68923,7 @@ arg.denom 2 1 return -439205825 +1608297024 1 return.numer 4 @@ -68129,7 +68936,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 1997 this -1658075389 +1877453512 1 this.numer 2 @@ -68138,7 +68945,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -68147,7 +68954,7 @@ arg.denom 2 1 return -439205825 +1608297024 1 return.numer 4 @@ -68160,7 +68967,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2003 this -439205825 +1608297024 1 this.numer 4 @@ -68173,7 +68980,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2004 this -439205825 +1608297024 1 this.numer 4 @@ -68186,7 +68993,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2004 this -439205825 +1608297024 1 this.numer 4 @@ -68202,7 +69009,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2003 this -439205825 +1608297024 1 this.numer 4 @@ -68211,7 +69018,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -68221,7 +69028,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2005 this -383446247 +1378084334 1 this.numer 3 @@ -68230,7 +69037,7 @@ this.denom 2 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -68243,7 +69050,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2006 this -1525259451 +487694075 1 this.numer -2 @@ -68266,7 +69073,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2007 this -831006036 +1841396611 1 this.numer 2 @@ -68285,7 +69092,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2006 this -1525259451 +487694075 1 this.numer -2 @@ -68294,7 +69101,7 @@ this.denom 0 1 return -831006036 +1841396611 1 return.numer 2 @@ -68307,7 +69114,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2008 this -383446247 +1378084334 1 this.numer 3 @@ -68316,7 +69123,7 @@ this.denom 2 1 arg -831006036 +1841396611 1 arg.numer 2 @@ -68339,7 +69146,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2009 this -1632290611 +1577592551 1 this.numer 4 @@ -68358,7 +69165,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2008 this -383446247 +1378084334 1 this.numer 3 @@ -68367,7 +69174,7 @@ this.denom 2 1 arg -831006036 +1841396611 1 arg.numer 2 @@ -68376,7 +69183,7 @@ arg.denom 0 1 return -1632290611 +1577592551 1 return.numer 4 @@ -68389,7 +69196,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2005 this -383446247 +1378084334 1 this.numer 3 @@ -68398,7 +69205,7 @@ this.denom 2 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -68407,7 +69214,7 @@ arg.denom 0 1 return -1632290611 +1577592551 1 return.numer 4 @@ -68420,7 +69227,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2010 this -1632290611 +1577592551 1 this.numer 4 @@ -68433,7 +69240,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2011 this -1632290611 +1577592551 1 this.numer 4 @@ -68446,7 +69253,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2011 this -1632290611 +1577592551 1 this.numer 4 @@ -68462,7 +69269,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2010 this -1632290611 +1577592551 1 this.numer 4 @@ -68471,7 +69278,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -68481,7 +69288,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2012 this -1525259451 +487694075 1 this.numer -2 @@ -68490,7 +69297,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -68503,7 +69310,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2013 this -383446247 +1378084334 1 this.numer 3 @@ -68549,7 +69356,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2014 this -1952192299 +854587510 1 this.numer -3 @@ -68568,7 +69375,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2013 this -383446247 +1378084334 1 this.numer 3 @@ -68577,7 +69384,7 @@ this.denom 2 1 return -1952192299 +854587510 1 return.numer -3 @@ -68590,7 +69397,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2016 this -1525259451 +487694075 1 this.numer -2 @@ -68599,7 +69406,7 @@ this.denom 0 1 arg -1952192299 +854587510 1 arg.numer -3 @@ -68622,7 +69429,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2017 this -1240810427 +148626113 1 this.numer -4 @@ -68641,7 +69448,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2016 this -1525259451 +487694075 1 this.numer -2 @@ -68650,7 +69457,7 @@ this.denom 0 1 arg -1952192299 +854587510 1 arg.numer -3 @@ -68659,7 +69466,7 @@ arg.denom 2 1 return -1240810427 +148626113 1 return.numer -4 @@ -68672,7 +69479,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2012 this -1525259451 +487694075 1 this.numer -2 @@ -68681,7 +69488,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -68690,7 +69497,7 @@ arg.denom 2 1 return -1240810427 +148626113 1 return.numer -4 @@ -68703,7 +69510,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2018 this -1240810427 +148626113 1 this.numer -4 @@ -68716,7 +69523,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2019 this -1240810427 +148626113 1 this.numer -4 @@ -68729,7 +69536,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2019 this -1240810427 +148626113 1 this.numer -4 @@ -68745,7 +69552,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2018 this -1240810427 +148626113 1 this.numer -4 @@ -68754,7 +69561,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -68764,7 +69571,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2020 this -383446247 +1378084334 1 this.numer 3 @@ -68773,7 +69580,7 @@ this.denom 2 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -68786,7 +69593,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2021 this -523298718 +1704629915 1 this.numer 9 @@ -68809,7 +69616,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2022 this -87150572 +1847637306 1 this.numer -9 @@ -68828,7 +69635,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2021 this -523298718 +1704629915 1 this.numer 9 @@ -68837,7 +69644,7 @@ this.denom 0 1 return -87150572 +1847637306 1 return.numer -9 @@ -68850,7 +69657,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2023 this -383446247 +1378084334 1 this.numer 3 @@ -68859,7 +69666,7 @@ this.denom 2 1 arg -87150572 +1847637306 1 arg.numer -9 @@ -68882,7 +69689,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2024 this -155816350 +1904253191 1 this.numer -18 @@ -68901,7 +69708,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2023 this -383446247 +1378084334 1 this.numer 3 @@ -68910,7 +69717,7 @@ this.denom 2 1 arg -87150572 +1847637306 1 arg.numer -9 @@ -68919,7 +69726,7 @@ arg.denom 0 1 return -155816350 +1904253191 1 return.numer -18 @@ -68932,7 +69739,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2020 this -383446247 +1378084334 1 this.numer 3 @@ -68941,7 +69748,7 @@ this.denom 2 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -68950,7 +69757,7 @@ arg.denom 0 1 return -155816350 +1904253191 1 return.numer -18 @@ -68963,7 +69770,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2025 this -155816350 +1904253191 1 this.numer -18 @@ -68976,7 +69783,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2026 this -155816350 +1904253191 1 this.numer -18 @@ -68989,7 +69796,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2026 this -155816350 +1904253191 1 this.numer -18 @@ -69005,7 +69812,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2025 this -155816350 +1904253191 1 this.numer -18 @@ -69014,7 +69821,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -69024,7 +69831,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2027 this -523298718 +1704629915 1 this.numer 9 @@ -69033,7 +69840,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -69046,7 +69853,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2028 this -383446247 +1378084334 1 this.numer 3 @@ -69092,7 +69899,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2029 this -1022828757 +1021436681 1 this.numer -3 @@ -69111,7 +69918,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2028 this -383446247 +1378084334 1 this.numer 3 @@ -69120,7 +69927,7 @@ this.denom 2 1 return -1022828757 +1021436681 1 return.numer -3 @@ -69133,7 +69940,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2031 this -523298718 +1704629915 1 this.numer 9 @@ -69142,7 +69949,7 @@ this.denom 0 1 arg -1022828757 +1021436681 1 arg.numer -3 @@ -69165,7 +69972,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2032 this -76324664 +1790585734 1 this.numer 18 @@ -69184,7 +69991,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2031 this -523298718 +1704629915 1 this.numer 9 @@ -69193,7 +70000,7 @@ this.denom 0 1 arg -1022828757 +1021436681 1 arg.numer -3 @@ -69202,7 +70009,7 @@ arg.denom 2 1 return -76324664 +1790585734 1 return.numer 18 @@ -69215,7 +70022,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2027 this -523298718 +1704629915 1 this.numer 9 @@ -69224,7 +70031,7 @@ this.denom 0 1 arg -383446247 +1378084334 1 arg.numer 3 @@ -69233,7 +70040,7 @@ arg.denom 2 1 return -76324664 +1790585734 1 return.numer 18 @@ -69246,7 +70053,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2033 this -76324664 +1790585734 1 this.numer 18 @@ -69259,7 +70066,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2034 this -76324664 +1790585734 1 this.numer 18 @@ -69272,7 +70079,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2034 this -76324664 +1790585734 1 this.numer 18 @@ -69288,7 +70095,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2033 this -76324664 +1790585734 1 this.numer 18 @@ -69297,7 +70104,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -69307,7 +70114,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2035 this -2130132329 +200224114 1 this.numer 1 @@ -69316,7 +70123,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -69329,7 +70136,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2036 this -2130132329 +200224114 1 this.numer 1 @@ -69352,7 +70159,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2037 this -740890589 +22600334 1 this.numer -1 @@ -69371,7 +70178,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2036 this -2130132329 +200224114 1 this.numer 1 @@ -69380,7 +70187,7 @@ this.denom 0 1 return -740890589 +22600334 1 return.numer -1 @@ -69393,7 +70200,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2038 this -2130132329 +200224114 1 this.numer 1 @@ -69402,7 +70209,7 @@ this.denom 0 1 arg -740890589 +22600334 1 arg.numer -1 @@ -69425,7 +70232,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2039 this -1037944017 +1961173763 1 this.numer 0 @@ -69444,7 +70251,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2038 this -2130132329 +200224114 1 this.numer 1 @@ -69453,7 +70260,7 @@ this.denom 0 1 arg -740890589 +22600334 1 arg.numer -1 @@ -69462,7 +70269,7 @@ arg.denom 0 1 return -1037944017 +1961173763 1 return.numer 0 @@ -69475,7 +70282,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2035 this -2130132329 +200224114 1 this.numer 1 @@ -69484,7 +70291,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -69493,7 +70300,7 @@ arg.denom 0 1 return -1037944017 +1961173763 1 return.numer 0 @@ -69506,7 +70313,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2040 this -1037944017 +1961173763 1 this.numer 0 @@ -69519,7 +70326,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2041 this -1037944017 +1961173763 1 this.numer 0 @@ -69532,7 +70339,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2041 this -1037944017 +1961173763 1 this.numer 0 @@ -69548,7 +70355,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2040 this -1037944017 +1961173763 1 this.numer 0 @@ -69557,7 +70364,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -69567,7 +70374,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2042 this -2130132329 +200224114 1 this.numer 1 @@ -69576,7 +70383,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -69589,7 +70396,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2043 this -2130132329 +200224114 1 this.numer 1 @@ -69612,7 +70419,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2044 this -715429138 +1202683709 1 this.numer -1 @@ -69631,7 +70438,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2043 this -2130132329 +200224114 1 this.numer 1 @@ -69640,7 +70447,7 @@ this.denom 0 1 return -715429138 +1202683709 1 return.numer -1 @@ -69653,7 +70460,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2045 this -2130132329 +200224114 1 this.numer 1 @@ -69662,7 +70469,7 @@ this.denom 0 1 arg -715429138 +1202683709 1 arg.numer -1 @@ -69685,7 +70492,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2046 this -456582813 +2087885397 1 this.numer 0 @@ -69704,7 +70511,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2045 this -2130132329 +200224114 1 this.numer 1 @@ -69713,7 +70520,7 @@ this.denom 0 1 arg -715429138 +1202683709 1 arg.numer -1 @@ -69722,7 +70529,7 @@ arg.denom 0 1 return -456582813 +2087885397 1 return.numer 0 @@ -69735,7 +70542,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2042 this -2130132329 +200224114 1 this.numer 1 @@ -69744,7 +70551,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -69753,7 +70560,7 @@ arg.denom 0 1 return -456582813 +2087885397 1 return.numer 0 @@ -69766,7 +70573,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2047 this -456582813 +2087885397 1 this.numer 0 @@ -69779,7 +70586,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2048 this -456582813 +2087885397 1 this.numer 0 @@ -69792,7 +70599,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2048 this -456582813 +2087885397 1 this.numer 0 @@ -69808,7 +70615,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2047 this -456582813 +2087885397 1 this.numer 0 @@ -69817,7 +70624,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -69827,7 +70634,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2049 this -2130132329 +200224114 1 this.numer 1 @@ -69836,7 +70643,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -69849,7 +70656,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2050 this -434174366 +1773283386 1 this.numer -1 @@ -69872,7 +70679,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2051 this -828267360 +1002021887 1 this.numer 1 @@ -69891,7 +70698,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2050 this -434174366 +1773283386 1 this.numer -1 @@ -69900,7 +70707,7 @@ this.denom 0 1 return -828267360 +1002021887 1 return.numer 1 @@ -69913,7 +70720,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2052 this -2130132329 +200224114 1 this.numer 1 @@ -69922,7 +70729,7 @@ this.denom 0 1 arg -828267360 +1002021887 1 arg.numer 1 @@ -69945,7 +70752,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2053 this -700519666 +1712943792 1 this.numer 0 @@ -69964,7 +70771,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2052 this -2130132329 +200224114 1 this.numer 1 @@ -69973,7 +70780,7 @@ this.denom 0 1 arg -828267360 +1002021887 1 arg.numer 1 @@ -69982,7 +70789,7 @@ arg.denom 0 1 return -700519666 +1712943792 1 return.numer 0 @@ -69995,7 +70802,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2049 this -2130132329 +200224114 1 this.numer 1 @@ -70004,7 +70811,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -70013,7 +70820,7 @@ arg.denom 0 1 return -700519666 +1712943792 1 return.numer 0 @@ -70026,7 +70833,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2054 this -700519666 +1712943792 1 this.numer 0 @@ -70039,7 +70846,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2055 this -700519666 +1712943792 1 this.numer 0 @@ -70052,7 +70859,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2055 this -700519666 +1712943792 1 this.numer 0 @@ -70068,7 +70875,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2054 this -700519666 +1712943792 1 this.numer 0 @@ -70077,7 +70884,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -70087,7 +70894,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2056 this -434174366 +1773283386 1 this.numer -1 @@ -70096,7 +70903,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -70109,7 +70916,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2057 this -2130132329 +200224114 1 this.numer 1 @@ -70132,7 +70939,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2058 this -1128673608 +1525919705 1 this.numer -1 @@ -70151,7 +70958,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2057 this -2130132329 +200224114 1 this.numer 1 @@ -70160,7 +70967,7 @@ this.denom 0 1 return -1128673608 +1525919705 1 return.numer -1 @@ -70173,7 +70980,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2059 this -434174366 +1773283386 1 this.numer -1 @@ -70182,7 +70989,7 @@ this.denom 0 1 arg -1128673608 +1525919705 1 arg.numer -1 @@ -70205,7 +71012,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2060 this -894275705 +842741472 1 this.numer 0 @@ -70224,7 +71031,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2059 this -434174366 +1773283386 1 this.numer -1 @@ -70233,7 +71040,7 @@ this.denom 0 1 arg -1128673608 +1525919705 1 arg.numer -1 @@ -70242,7 +71049,7 @@ arg.denom 0 1 return -894275705 +842741472 1 return.numer 0 @@ -70255,7 +71062,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2056 this -434174366 +1773283386 1 this.numer -1 @@ -70264,7 +71071,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -70273,7 +71080,7 @@ arg.denom 0 1 return -894275705 +842741472 1 return.numer 0 @@ -70286,7 +71093,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2061 this -894275705 +842741472 1 this.numer 0 @@ -70299,7 +71106,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2062 this -894275705 +842741472 1 this.numer 0 @@ -70312,7 +71119,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2062 this -894275705 +842741472 1 this.numer 0 @@ -70328,7 +71135,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2061 this -894275705 +842741472 1 this.numer 0 @@ -70337,7 +71144,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -70347,7 +71154,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2063 this -2130132329 +200224114 1 this.numer 1 @@ -70356,7 +71163,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -70369,7 +71176,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2064 this -19136856 +581318631 1 this.numer 100 @@ -70392,7 +71199,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2065 this -2001212229 +1156304131 1 this.numer -100 @@ -70411,7 +71218,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2064 this -19136856 +581318631 1 this.numer 100 @@ -70420,7 +71227,7 @@ this.denom 0 1 return -2001212229 +1156304131 1 return.numer -100 @@ -70433,7 +71240,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2066 this -2130132329 +200224114 1 this.numer 1 @@ -70442,7 +71249,7 @@ this.denom 0 1 arg -2001212229 +1156304131 1 arg.numer -100 @@ -70465,7 +71272,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2067 this -485053489 +1766505436 1 this.numer 0 @@ -70484,7 +71291,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2066 this -2130132329 +200224114 1 this.numer 1 @@ -70493,7 +71300,7 @@ this.denom 0 1 arg -2001212229 +1156304131 1 arg.numer -100 @@ -70502,7 +71309,7 @@ arg.denom 0 1 return -485053489 +1766505436 1 return.numer 0 @@ -70515,7 +71322,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2063 this -2130132329 +200224114 1 this.numer 1 @@ -70524,7 +71331,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -70533,7 +71340,7 @@ arg.denom 0 1 return -485053489 +1766505436 1 return.numer 0 @@ -70546,7 +71353,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2068 this -485053489 +1766505436 1 this.numer 0 @@ -70559,7 +71366,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2069 this -485053489 +1766505436 1 this.numer 0 @@ -70572,7 +71379,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2069 this -485053489 +1766505436 1 this.numer 0 @@ -70588,7 +71395,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2068 this -485053489 +1766505436 1 this.numer 0 @@ -70597,7 +71404,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -70607,7 +71414,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2070 this -19136856 +581318631 1 this.numer 100 @@ -70616,7 +71423,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -70629,7 +71436,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2071 this -2130132329 +200224114 1 this.numer 1 @@ -70652,7 +71459,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2072 this -446065611 +771775563 1 this.numer -1 @@ -70671,7 +71478,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2071 this -2130132329 +200224114 1 this.numer 1 @@ -70680,7 +71487,7 @@ this.denom 0 1 return -446065611 +771775563 1 return.numer -1 @@ -70693,7 +71500,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2073 this -19136856 +581318631 1 this.numer 100 @@ -70702,7 +71509,7 @@ this.denom 0 1 arg -446065611 +771775563 1 arg.numer -1 @@ -70725,7 +71532,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2074 this -159312400 +1164440413 1 this.numer 0 @@ -70744,7 +71551,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2073 this -19136856 +581318631 1 this.numer 100 @@ -70753,7 +71560,7 @@ this.denom 0 1 arg -446065611 +771775563 1 arg.numer -1 @@ -70762,7 +71569,7 @@ arg.denom 0 1 return -159312400 +1164440413 1 return.numer 0 @@ -70775,7 +71582,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2070 this -19136856 +581318631 1 this.numer 100 @@ -70784,7 +71591,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -70793,7 +71600,7 @@ arg.denom 0 1 return -159312400 +1164440413 1 return.numer 0 @@ -70806,7 +71613,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2075 this -159312400 +1164440413 1 this.numer 0 @@ -70819,7 +71626,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2076 this -159312400 +1164440413 1 this.numer 0 @@ -70832,7 +71639,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2076 this -159312400 +1164440413 1 this.numer 0 @@ -70848,7 +71655,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2075 this -159312400 +1164440413 1 this.numer 0 @@ -70857,7 +71664,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -70867,7 +71674,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2077 this -2130132329 +200224114 1 this.numer 1 @@ -70876,7 +71683,7 @@ this.denom 0 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -70889,7 +71696,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2078 this -1658075389 +1877453512 1 this.numer 2 @@ -70912,7 +71719,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2079 this -1798882638 +1610525991 1 this.numer -2 @@ -70931,7 +71738,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2078 this -1658075389 +1877453512 1 this.numer 2 @@ -70940,7 +71747,7 @@ this.denom 0 1 return -1798882638 +1610525991 1 return.numer -2 @@ -70953,7 +71760,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2080 this -2130132329 +200224114 1 this.numer 1 @@ -70962,7 +71769,7 @@ this.denom 0 1 arg -1798882638 +1610525991 1 arg.numer -2 @@ -70985,7 +71792,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2081 this -1545714400 +1666607455 1 this.numer 0 @@ -71004,7 +71811,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2080 this -2130132329 +200224114 1 this.numer 1 @@ -71013,7 +71820,7 @@ this.denom 0 1 arg -1798882638 +1610525991 1 arg.numer -2 @@ -71022,7 +71829,7 @@ arg.denom 0 1 return -1545714400 +1666607455 1 return.numer 0 @@ -71035,7 +71842,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2077 this -2130132329 +200224114 1 this.numer 1 @@ -71044,7 +71851,7 @@ this.denom 0 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -71053,7 +71860,7 @@ arg.denom 0 1 return -1545714400 +1666607455 1 return.numer 0 @@ -71066,7 +71873,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2082 this -1545714400 +1666607455 1 this.numer 0 @@ -71079,7 +71886,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2083 this -1545714400 +1666607455 1 this.numer 0 @@ -71092,7 +71899,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2083 this -1545714400 +1666607455 1 this.numer 0 @@ -71108,7 +71915,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2082 this -1545714400 +1666607455 1 this.numer 0 @@ -71117,7 +71924,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -71127,7 +71934,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2084 this -1658075389 +1877453512 1 this.numer 2 @@ -71136,7 +71943,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -71149,7 +71956,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2085 this -2130132329 +200224114 1 this.numer 1 @@ -71172,7 +71979,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2086 this -712243041 +1327006586 1 this.numer -1 @@ -71191,7 +71998,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2085 this -2130132329 +200224114 1 this.numer 1 @@ -71200,7 +72007,7 @@ this.denom 0 1 return -712243041 +1327006586 1 return.numer -1 @@ -71213,7 +72020,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2087 this -1658075389 +1877453512 1 this.numer 2 @@ -71222,7 +72029,7 @@ this.denom 0 1 arg -712243041 +1327006586 1 arg.numer -1 @@ -71245,7 +72052,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2088 this -594941709 +899644639 1 this.numer 0 @@ -71264,7 +72071,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2087 this -1658075389 +1877453512 1 this.numer 2 @@ -71273,7 +72080,7 @@ this.denom 0 1 arg -712243041 +1327006586 1 arg.numer -1 @@ -71282,7 +72089,7 @@ arg.denom 0 1 return -594941709 +899644639 1 return.numer 0 @@ -71295,7 +72102,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2084 this -1658075389 +1877453512 1 this.numer 2 @@ -71304,7 +72111,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -71313,7 +72120,7 @@ arg.denom 0 1 return -594941709 +899644639 1 return.numer 0 @@ -71326,7 +72133,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2089 this -594941709 +899644639 1 this.numer 0 @@ -71339,7 +72146,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2090 this -594941709 +899644639 1 this.numer 0 @@ -71352,7 +72159,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2090 this -594941709 +899644639 1 this.numer 0 @@ -71368,7 +72175,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2089 this -594941709 +899644639 1 this.numer 0 @@ -71377,7 +72184,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -71387,7 +72194,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2091 this -2130132329 +200224114 1 this.numer 1 @@ -71396,7 +72203,7 @@ this.denom 0 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -71409,7 +72216,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2092 this -1525259451 +487694075 1 this.numer -2 @@ -71432,7 +72239,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2093 this -501442731 +530737374 1 this.numer 2 @@ -71451,7 +72258,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2092 this -1525259451 +487694075 1 this.numer -2 @@ -71460,7 +72267,7 @@ this.denom 0 1 return -501442731 +530737374 1 return.numer 2 @@ -71473,7 +72280,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2094 this -2130132329 +200224114 1 this.numer 1 @@ -71482,7 +72289,7 @@ this.denom 0 1 arg -501442731 +530737374 1 arg.numer 2 @@ -71505,7 +72312,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2095 this -1022149089 +1332668132 1 this.numer 0 @@ -71524,7 +72331,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2094 this -2130132329 +200224114 1 this.numer 1 @@ -71533,7 +72340,7 @@ this.denom 0 1 arg -501442731 +530737374 1 arg.numer 2 @@ -71542,7 +72349,7 @@ arg.denom 0 1 return -1022149089 +1332668132 1 return.numer 0 @@ -71555,7 +72362,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2091 this -2130132329 +200224114 1 this.numer 1 @@ -71564,7 +72371,7 @@ this.denom 0 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -71573,7 +72380,7 @@ arg.denom 0 1 return -1022149089 +1332668132 1 return.numer 0 @@ -71586,7 +72393,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2096 this -1022149089 +1332668132 1 this.numer 0 @@ -71599,7 +72406,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2097 this -1022149089 +1332668132 1 this.numer 0 @@ -71612,7 +72419,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2097 this -1022149089 +1332668132 1 this.numer 0 @@ -71628,7 +72435,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2096 this -1022149089 +1332668132 1 this.numer 0 @@ -71637,7 +72444,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -71647,7 +72454,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2098 this -1525259451 +487694075 1 this.numer -2 @@ -71656,7 +72463,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -71669,7 +72476,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2099 this -2130132329 +200224114 1 this.numer 1 @@ -71692,7 +72499,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2100 this -1538046470 +1147580192 1 this.numer -1 @@ -71711,7 +72518,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2099 this -2130132329 +200224114 1 this.numer 1 @@ -71720,7 +72527,7 @@ this.denom 0 1 return -1538046470 +1147580192 1 return.numer -1 @@ -71733,7 +72540,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2101 this -1525259451 +487694075 1 this.numer -2 @@ -71742,7 +72549,7 @@ this.denom 0 1 arg -1538046470 +1147580192 1 arg.numer -1 @@ -71765,7 +72572,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2102 this -686362351 +173099767 1 this.numer 0 @@ -71784,7 +72591,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2101 this -1525259451 +487694075 1 this.numer -2 @@ -71793,7 +72600,7 @@ this.denom 0 1 arg -1538046470 +1147580192 1 arg.numer -1 @@ -71802,7 +72609,7 @@ arg.denom 0 1 return -686362351 +173099767 1 return.numer 0 @@ -71815,7 +72622,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2098 this -1525259451 +487694075 1 this.numer -2 @@ -71824,7 +72631,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -71833,7 +72640,7 @@ arg.denom 0 1 return -686362351 +173099767 1 return.numer 0 @@ -71846,7 +72653,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2103 this -686362351 +173099767 1 this.numer 0 @@ -71859,7 +72666,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2104 this -686362351 +173099767 1 this.numer 0 @@ -71872,7 +72679,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2104 this -686362351 +173099767 1 this.numer 0 @@ -71888,7 +72695,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2103 this -686362351 +173099767 1 this.numer 0 @@ -71897,7 +72704,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -71907,7 +72714,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2105 this -2130132329 +200224114 1 this.numer 1 @@ -71916,7 +72723,7 @@ this.denom 0 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -71929,7 +72736,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2106 this -523298718 +1704629915 1 this.numer 9 @@ -71952,7 +72759,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2107 this -1557365220 +112797691 1 this.numer -9 @@ -71971,7 +72778,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2106 this -523298718 +1704629915 1 this.numer 9 @@ -71980,7 +72787,7 @@ this.denom 0 1 return -1557365220 +112797691 1 return.numer -9 @@ -71993,7 +72800,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2108 this -2130132329 +200224114 1 this.numer 1 @@ -72002,7 +72809,7 @@ this.denom 0 1 arg -1557365220 +112797691 1 arg.numer -9 @@ -72025,7 +72832,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2109 this -1106562904 +1045997582 1 this.numer 0 @@ -72044,7 +72851,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2108 this -2130132329 +200224114 1 this.numer 1 @@ -72053,7 +72860,7 @@ this.denom 0 1 arg -1557365220 +112797691 1 arg.numer -9 @@ -72062,7 +72869,7 @@ arg.denom 0 1 return -1106562904 +1045997582 1 return.numer 0 @@ -72075,7 +72882,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2105 this -2130132329 +200224114 1 this.numer 1 @@ -72084,7 +72891,7 @@ this.denom 0 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -72093,7 +72900,7 @@ arg.denom 0 1 return -1106562904 +1045997582 1 return.numer 0 @@ -72106,7 +72913,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2110 this -1106562904 +1045997582 1 this.numer 0 @@ -72119,7 +72926,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2111 this -1106562904 +1045997582 1 this.numer 0 @@ -72132,7 +72939,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2111 this -1106562904 +1045997582 1 this.numer 0 @@ -72148,7 +72955,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2110 this -1106562904 +1045997582 1 this.numer 0 @@ -72157,7 +72964,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -72167,7 +72974,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2112 this -523298718 +1704629915 1 this.numer 9 @@ -72176,7 +72983,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -72189,7 +72996,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2113 this -2130132329 +200224114 1 this.numer 1 @@ -72212,7 +73019,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2114 this -794344508 +1337335626 1 this.numer -1 @@ -72231,7 +73038,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2113 this -2130132329 +200224114 1 this.numer 1 @@ -72240,7 +73047,7 @@ this.denom 0 1 return -794344508 +1337335626 1 return.numer -1 @@ -72253,7 +73060,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2115 this -523298718 +1704629915 1 this.numer 9 @@ -72262,7 +73069,7 @@ this.denom 0 1 arg -794344508 +1337335626 1 arg.numer -1 @@ -72285,7 +73092,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2116 this -1789796204 +1336996537 1 this.numer 0 @@ -72304,7 +73111,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2115 this -523298718 +1704629915 1 this.numer 9 @@ -72313,7 +73120,7 @@ this.denom 0 1 arg -794344508 +1337335626 1 arg.numer -1 @@ -72322,7 +73129,7 @@ arg.denom 0 1 return -1789796204 +1336996537 1 return.numer 0 @@ -72335,7 +73142,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2112 this -523298718 +1704629915 1 this.numer 9 @@ -72344,7 +73151,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -72353,7 +73160,7 @@ arg.denom 0 1 return -1789796204 +1336996537 1 return.numer 0 @@ -72366,7 +73173,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2117 this -1789796204 +1336996537 1 this.numer 0 @@ -72379,7 +73186,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2118 this -1789796204 +1336996537 1 this.numer 0 @@ -72392,7 +73199,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2118 this -1789796204 +1336996537 1 this.numer 0 @@ -72408,7 +73215,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2117 this -1789796204 +1336996537 1 this.numer 0 @@ -72417,7 +73224,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -72427,7 +73234,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2119 this -434174366 +1773283386 1 this.numer -1 @@ -72436,7 +73243,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -72449,7 +73256,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2120 this -2130132329 +200224114 1 this.numer 1 @@ -72472,7 +73279,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2121 this -1301357099 +7967307 1 this.numer -1 @@ -72491,7 +73298,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2120 this -2130132329 +200224114 1 this.numer 1 @@ -72500,7 +73307,7 @@ this.denom 0 1 return -1301357099 +7967307 1 return.numer -1 @@ -72513,7 +73320,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2122 this -434174366 +1773283386 1 this.numer -1 @@ -72522,7 +73329,7 @@ this.denom 0 1 arg -1301357099 +7967307 1 arg.numer -1 @@ -72545,7 +73352,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2123 this -1935301845 +2073707154 1 this.numer 0 @@ -72564,7 +73371,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2122 this -434174366 +1773283386 1 this.numer -1 @@ -72573,7 +73380,7 @@ this.denom 0 1 arg -1301357099 +7967307 1 arg.numer -1 @@ -72582,7 +73389,7 @@ arg.denom 0 1 return -1935301845 +2073707154 1 return.numer 0 @@ -72595,7 +73402,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2119 this -434174366 +1773283386 1 this.numer -1 @@ -72604,7 +73411,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -72613,7 +73420,7 @@ arg.denom 0 1 return -1935301845 +2073707154 1 return.numer 0 @@ -72626,7 +73433,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2124 this -1935301845 +2073707154 1 this.numer 0 @@ -72639,7 +73446,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2125 this -1935301845 +2073707154 1 this.numer 0 @@ -72652,7 +73459,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2125 this -1935301845 +2073707154 1 this.numer 0 @@ -72668,7 +73475,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2124 this -1935301845 +2073707154 1 this.numer 0 @@ -72677,7 +73484,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -72687,7 +73494,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2126 this -2130132329 +200224114 1 this.numer 1 @@ -72696,7 +73503,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -72709,7 +73516,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2127 this -434174366 +1773283386 1 this.numer -1 @@ -72732,7 +73539,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2128 this -830791453 +78204644 1 this.numer 1 @@ -72751,7 +73558,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2127 this -434174366 +1773283386 1 this.numer -1 @@ -72760,7 +73567,7 @@ this.denom 0 1 return -830791453 +78204644 1 return.numer 1 @@ -72773,7 +73580,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2129 this -2130132329 +200224114 1 this.numer 1 @@ -72782,7 +73589,7 @@ this.denom 0 1 arg -830791453 +78204644 1 arg.numer 1 @@ -72805,7 +73612,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2130 this -173277777 +1287934450 1 this.numer 0 @@ -72824,7 +73631,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2129 this -2130132329 +200224114 1 this.numer 1 @@ -72833,7 +73640,7 @@ this.denom 0 1 arg -830791453 +78204644 1 arg.numer 1 @@ -72842,7 +73649,7 @@ arg.denom 0 1 return -173277777 +1287934450 1 return.numer 0 @@ -72855,7 +73662,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2126 this -2130132329 +200224114 1 this.numer 1 @@ -72864,7 +73671,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -72873,7 +73680,7 @@ arg.denom 0 1 return -173277777 +1287934450 1 return.numer 0 @@ -72886,7 +73693,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2131 this -173277777 +1287934450 1 this.numer 0 @@ -72899,7 +73706,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2132 this -173277777 +1287934450 1 this.numer 0 @@ -72912,7 +73719,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2132 this -173277777 +1287934450 1 this.numer 0 @@ -72928,7 +73735,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2131 this -173277777 +1287934450 1 this.numer 0 @@ -72937,7 +73744,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -72947,7 +73754,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2133 this -434174366 +1773283386 1 this.numer -1 @@ -72956,7 +73763,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -72969,7 +73776,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2134 this -434174366 +1773283386 1 this.numer -1 @@ -72992,7 +73799,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2135 this -291772707 +6519275 1 this.numer 1 @@ -73011,7 +73818,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2134 this -434174366 +1773283386 1 this.numer -1 @@ -73020,7 +73827,7 @@ this.denom 0 1 return -291772707 +6519275 1 return.numer 1 @@ -73033,7 +73840,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2136 this -434174366 +1773283386 1 this.numer -1 @@ -73042,7 +73849,7 @@ this.denom 0 1 arg -291772707 +6519275 1 arg.numer 1 @@ -73065,7 +73872,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2137 this -1118720448 +692331943 1 this.numer 0 @@ -73084,7 +73891,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2136 this -434174366 +1773283386 1 this.numer -1 @@ -73093,7 +73900,7 @@ this.denom 0 1 arg -291772707 +6519275 1 arg.numer 1 @@ -73102,7 +73909,7 @@ arg.denom 0 1 return -1118720448 +692331943 1 return.numer 0 @@ -73115,7 +73922,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2133 this -434174366 +1773283386 1 this.numer -1 @@ -73124,7 +73931,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -73133,7 +73940,7 @@ arg.denom 0 1 return -1118720448 +692331943 1 return.numer 0 @@ -73146,7 +73953,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2138 this -1118720448 +692331943 1 this.numer 0 @@ -73159,7 +73966,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2139 this -1118720448 +692331943 1 this.numer 0 @@ -73172,7 +73979,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2139 this -1118720448 +692331943 1 this.numer 0 @@ -73188,7 +73995,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2138 this -1118720448 +692331943 1 this.numer 0 @@ -73197,7 +74004,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -73207,7 +74014,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2140 this -434174366 +1773283386 1 this.numer -1 @@ -73216,7 +74023,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -73229,7 +74036,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2141 this -434174366 +1773283386 1 this.numer -1 @@ -73252,7 +74059,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2142 this -1115240051 +1741979653 1 this.numer 1 @@ -73271,7 +74078,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2141 this -434174366 +1773283386 1 this.numer -1 @@ -73280,7 +74087,7 @@ this.denom 0 1 return -1115240051 +1741979653 1 return.numer 1 @@ -73293,7 +74100,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2143 this -434174366 +1773283386 1 this.numer -1 @@ -73302,7 +74109,7 @@ this.denom 0 1 arg -1115240051 +1741979653 1 arg.numer 1 @@ -73325,7 +74132,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2144 this -602266141 +166794956 1 this.numer 0 @@ -73344,7 +74151,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2143 this -434174366 +1773283386 1 this.numer -1 @@ -73353,7 +74160,7 @@ this.denom 0 1 arg -1115240051 +1741979653 1 arg.numer 1 @@ -73362,7 +74169,7 @@ arg.denom 0 1 return -602266141 +166794956 1 return.numer 0 @@ -73375,7 +74182,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2140 this -434174366 +1773283386 1 this.numer -1 @@ -73384,7 +74191,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -73393,7 +74200,7 @@ arg.denom 0 1 return -602266141 +166794956 1 return.numer 0 @@ -73406,7 +74213,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2145 this -602266141 +166794956 1 this.numer 0 @@ -73419,7 +74226,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2146 this -602266141 +166794956 1 this.numer 0 @@ -73432,7 +74239,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2146 this -602266141 +166794956 1 this.numer 0 @@ -73448,7 +74255,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2145 this -602266141 +166794956 1 this.numer 0 @@ -73457,7 +74264,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -73467,7 +74274,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2147 this -434174366 +1773283386 1 this.numer -1 @@ -73476,7 +74283,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -73489,7 +74296,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2148 this -19136856 +581318631 1 this.numer 100 @@ -73512,7 +74319,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2149 this -1196603476 +306612792 1 this.numer -100 @@ -73531,7 +74338,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2148 this -19136856 +581318631 1 this.numer 100 @@ -73540,7 +74347,7 @@ this.denom 0 1 return -1196603476 +306612792 1 return.numer -100 @@ -73553,7 +74360,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2150 this -434174366 +1773283386 1 this.numer -1 @@ -73562,7 +74369,7 @@ this.denom 0 1 arg -1196603476 +306612792 1 arg.numer -100 @@ -73585,7 +74392,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2151 this -130266977 +447212746 1 this.numer 0 @@ -73604,7 +74411,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2150 this -434174366 +1773283386 1 this.numer -1 @@ -73613,7 +74420,7 @@ this.denom 0 1 arg -1196603476 +306612792 1 arg.numer -100 @@ -73622,7 +74429,7 @@ arg.denom 0 1 return -130266977 +447212746 1 return.numer 0 @@ -73635,7 +74442,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2147 this -434174366 +1773283386 1 this.numer -1 @@ -73644,7 +74451,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -73653,7 +74460,7 @@ arg.denom 0 1 return -130266977 +447212746 1 return.numer 0 @@ -73666,7 +74473,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2152 this -130266977 +447212746 1 this.numer 0 @@ -73679,7 +74486,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2153 this -130266977 +447212746 1 this.numer 0 @@ -73692,7 +74499,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2153 this -130266977 +447212746 1 this.numer 0 @@ -73708,7 +74515,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2152 this -130266977 +447212746 1 this.numer 0 @@ -73717,7 +74524,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -73727,7 +74534,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2154 this -19136856 +581318631 1 this.numer 100 @@ -73736,7 +74543,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -73749,7 +74556,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2155 this -434174366 +1773283386 1 this.numer -1 @@ -73772,7 +74579,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2156 this -1111246146 +1496355635 1 this.numer 1 @@ -73791,7 +74598,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2155 this -434174366 +1773283386 1 this.numer -1 @@ -73800,7 +74607,7 @@ this.denom 0 1 return -1111246146 +1496355635 1 return.numer 1 @@ -73813,7 +74620,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2157 this -19136856 +581318631 1 this.numer 100 @@ -73822,7 +74629,7 @@ this.denom 0 1 arg -1111246146 +1496355635 1 arg.numer 1 @@ -73845,7 +74652,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2158 this -48697863 +1484171695 1 this.numer 0 @@ -73864,7 +74671,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2157 this -19136856 +581318631 1 this.numer 100 @@ -73873,7 +74680,7 @@ this.denom 0 1 arg -1111246146 +1496355635 1 arg.numer 1 @@ -73882,7 +74689,7 @@ arg.denom 0 1 return -48697863 +1484171695 1 return.numer 0 @@ -73895,7 +74702,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2154 this -19136856 +581318631 1 this.numer 100 @@ -73904,7 +74711,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -73913,7 +74720,7 @@ arg.denom 0 1 return -48697863 +1484171695 1 return.numer 0 @@ -73926,7 +74733,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2159 this -48697863 +1484171695 1 this.numer 0 @@ -73939,7 +74746,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2160 this -48697863 +1484171695 1 this.numer 0 @@ -73952,7 +74759,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2160 this -48697863 +1484171695 1 this.numer 0 @@ -73968,7 +74775,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2159 this -48697863 +1484171695 1 this.numer 0 @@ -73977,7 +74784,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -73987,7 +74794,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2161 this -434174366 +1773283386 1 this.numer -1 @@ -73996,7 +74803,7 @@ this.denom 0 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -74009,7 +74816,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2162 this -1658075389 +1877453512 1 this.numer 2 @@ -74032,7 +74839,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2163 this -273713934 +2127036371 1 this.numer -2 @@ -74051,7 +74858,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2162 this -1658075389 +1877453512 1 this.numer 2 @@ -74060,7 +74867,7 @@ this.denom 0 1 return -273713934 +2127036371 1 return.numer -2 @@ -74073,7 +74880,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2164 this -434174366 +1773283386 1 this.numer -1 @@ -74082,7 +74889,7 @@ this.denom 0 1 arg -273713934 +2127036371 1 arg.numer -2 @@ -74105,7 +74912,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2165 this -400116864 +1529060733 1 this.numer 0 @@ -74124,7 +74931,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2164 this -434174366 +1773283386 1 this.numer -1 @@ -74133,7 +74940,7 @@ this.denom 0 1 arg -273713934 +2127036371 1 arg.numer -2 @@ -74142,7 +74949,7 @@ arg.denom 0 1 return -400116864 +1529060733 1 return.numer 0 @@ -74155,7 +74962,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2161 this -434174366 +1773283386 1 this.numer -1 @@ -74164,7 +74971,7 @@ this.denom 0 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -74173,7 +74980,7 @@ arg.denom 0 1 return -400116864 +1529060733 1 return.numer 0 @@ -74186,7 +74993,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2166 this -400116864 +1529060733 1 this.numer 0 @@ -74199,7 +75006,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2167 this -400116864 +1529060733 1 this.numer 0 @@ -74212,7 +75019,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2167 this -400116864 +1529060733 1 this.numer 0 @@ -74228,7 +75035,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2166 this -400116864 +1529060733 1 this.numer 0 @@ -74237,7 +75044,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -74247,7 +75054,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2168 this -1658075389 +1877453512 1 this.numer 2 @@ -74256,7 +75063,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -74269,7 +75076,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2169 this -434174366 +1773283386 1 this.numer -1 @@ -74292,7 +75099,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2170 this -992834491 +106374177 1 this.numer 1 @@ -74311,7 +75118,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2169 this -434174366 +1773283386 1 this.numer -1 @@ -74320,7 +75127,7 @@ this.denom 0 1 return -992834491 +106374177 1 return.numer 1 @@ -74333,7 +75140,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2171 this -1658075389 +1877453512 1 this.numer 2 @@ -74342,7 +75149,7 @@ this.denom 0 1 arg -992834491 +106374177 1 arg.numer 1 @@ -74365,7 +75172,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2172 this -621353047 +1803669141 1 this.numer 0 @@ -74384,7 +75191,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2171 this -1658075389 +1877453512 1 this.numer 2 @@ -74393,7 +75200,7 @@ this.denom 0 1 arg -992834491 +106374177 1 arg.numer 1 @@ -74402,7 +75209,7 @@ arg.denom 0 1 return -621353047 +1803669141 1 return.numer 0 @@ -74415,7 +75222,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2168 this -1658075389 +1877453512 1 this.numer 2 @@ -74424,7 +75231,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -74433,7 +75240,7 @@ arg.denom 0 1 return -621353047 +1803669141 1 return.numer 0 @@ -74446,7 +75253,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2173 this -621353047 +1803669141 1 this.numer 0 @@ -74459,7 +75266,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2174 this -621353047 +1803669141 1 this.numer 0 @@ -74472,7 +75279,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2174 this -621353047 +1803669141 1 this.numer 0 @@ -74488,7 +75295,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2173 this -621353047 +1803669141 1 this.numer 0 @@ -74497,7 +75304,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -74507,7 +75314,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2175 this -434174366 +1773283386 1 this.numer -1 @@ -74516,7 +75323,7 @@ this.denom 0 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -74529,7 +75336,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2176 this -1525259451 +487694075 1 this.numer -2 @@ -74552,7 +75359,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2177 this -2015169215 +712609105 1 this.numer 2 @@ -74571,7 +75378,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2176 this -1525259451 +487694075 1 this.numer -2 @@ -74580,7 +75387,7 @@ this.denom 0 1 return -2015169215 +712609105 1 return.numer 2 @@ -74593,7 +75400,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2178 this -434174366 +1773283386 1 this.numer -1 @@ -74602,7 +75409,7 @@ this.denom 0 1 arg -2015169215 +712609105 1 arg.numer 2 @@ -74625,7 +75432,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2179 this -984399668 +1836463382 1 this.numer 0 @@ -74644,7 +75451,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2178 this -434174366 +1773283386 1 this.numer -1 @@ -74653,7 +75460,7 @@ this.denom 0 1 arg -2015169215 +712609105 1 arg.numer 2 @@ -74662,7 +75469,7 @@ arg.denom 0 1 return -984399668 +1836463382 1 return.numer 0 @@ -74675,7 +75482,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2175 this -434174366 +1773283386 1 this.numer -1 @@ -74684,7 +75491,7 @@ this.denom 0 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -74693,7 +75500,7 @@ arg.denom 0 1 return -984399668 +1836463382 1 return.numer 0 @@ -74706,7 +75513,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2180 this -984399668 +1836463382 1 this.numer 0 @@ -74719,7 +75526,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2181 this -984399668 +1836463382 1 this.numer 0 @@ -74732,7 +75539,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2181 this -984399668 +1836463382 1 this.numer 0 @@ -74748,7 +75555,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2180 this -984399668 +1836463382 1 this.numer 0 @@ -74757,7 +75564,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -74767,7 +75574,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2182 this -1525259451 +487694075 1 this.numer -2 @@ -74776,7 +75583,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -74789,7 +75596,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2183 this -434174366 +1773283386 1 this.numer -1 @@ -74812,7 +75619,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2184 this -591203588 +1388278453 1 this.numer 1 @@ -74831,7 +75638,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2183 this -434174366 +1773283386 1 this.numer -1 @@ -74840,7 +75647,7 @@ this.denom 0 1 return -591203588 +1388278453 1 return.numer 1 @@ -74853,7 +75660,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2185 this -1525259451 +487694075 1 this.numer -2 @@ -74862,7 +75669,7 @@ this.denom 0 1 arg -591203588 +1388278453 1 arg.numer 1 @@ -74885,7 +75692,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2186 this -2099352494 +934275857 1 this.numer 0 @@ -74904,7 +75711,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2185 this -1525259451 +487694075 1 this.numer -2 @@ -74913,7 +75720,7 @@ this.denom 0 1 arg -591203588 +1388278453 1 arg.numer 1 @@ -74922,7 +75729,7 @@ arg.denom 0 1 return -2099352494 +934275857 1 return.numer 0 @@ -74935,7 +75742,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2182 this -1525259451 +487694075 1 this.numer -2 @@ -74944,7 +75751,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -74953,7 +75760,7 @@ arg.denom 0 1 return -2099352494 +934275857 1 return.numer 0 @@ -74966,7 +75773,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2187 this -2099352494 +934275857 1 this.numer 0 @@ -74979,7 +75786,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2188 this -2099352494 +934275857 1 this.numer 0 @@ -74992,7 +75799,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2188 this -2099352494 +934275857 1 this.numer 0 @@ -75008,7 +75815,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2187 this -2099352494 +934275857 1 this.numer 0 @@ -75017,7 +75824,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -75027,7 +75834,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2189 this -434174366 +1773283386 1 this.numer -1 @@ -75036,7 +75843,7 @@ this.denom 0 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -75049,7 +75856,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2190 this -523298718 +1704629915 1 this.numer 9 @@ -75072,7 +75879,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2191 this -661046448 +1364913072 1 this.numer -9 @@ -75091,7 +75898,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2190 this -523298718 +1704629915 1 this.numer 9 @@ -75100,7 +75907,7 @@ this.denom 0 1 return -661046448 +1364913072 1 return.numer -9 @@ -75113,7 +75920,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2192 this -434174366 +1773283386 1 this.numer -1 @@ -75122,7 +75929,7 @@ this.denom 0 1 arg -661046448 +1364913072 1 arg.numer -9 @@ -75145,7 +75952,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2193 this -1274745605 +232307208 1 this.numer 0 @@ -75164,7 +75971,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2192 this -434174366 +1773283386 1 this.numer -1 @@ -75173,7 +75980,7 @@ this.denom 0 1 arg -661046448 +1364913072 1 arg.numer -9 @@ -75182,7 +75989,7 @@ arg.denom 0 1 return -1274745605 +232307208 1 return.numer 0 @@ -75195,7 +76002,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2189 this -434174366 +1773283386 1 this.numer -1 @@ -75204,7 +76011,7 @@ this.denom 0 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -75213,7 +76020,7 @@ arg.denom 0 1 return -1274745605 +232307208 1 return.numer 0 @@ -75226,7 +76033,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2194 this -1274745605 +232307208 1 this.numer 0 @@ -75239,7 +76046,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2195 this -1274745605 +232307208 1 this.numer 0 @@ -75252,7 +76059,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2195 this -1274745605 +232307208 1 this.numer 0 @@ -75268,7 +76075,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2194 this -1274745605 +232307208 1 this.numer 0 @@ -75277,7 +76084,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -75287,7 +76094,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2196 this -523298718 +1704629915 1 this.numer 9 @@ -75296,7 +76103,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -75309,7 +76116,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2197 this -434174366 +1773283386 1 this.numer -1 @@ -75332,7 +76139,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2198 this -1352520763 +609962972 1 this.numer 1 @@ -75351,7 +76158,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2197 this -434174366 +1773283386 1 this.numer -1 @@ -75360,7 +76167,7 @@ this.denom 0 1 return -1352520763 +609962972 1 return.numer 1 @@ -75373,7 +76180,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2199 this -523298718 +1704629915 1 this.numer 9 @@ -75382,7 +76189,7 @@ this.denom 0 1 arg -1352520763 +609962972 1 arg.numer 1 @@ -75405,7 +76212,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2200 this -702060246 +1818544933 1 this.numer 0 @@ -75424,7 +76231,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2199 this -523298718 +1704629915 1 this.numer 9 @@ -75433,7 +76240,7 @@ this.denom 0 1 arg -1352520763 +609962972 1 arg.numer 1 @@ -75442,7 +76249,7 @@ arg.denom 0 1 return -702060246 +1818544933 1 return.numer 0 @@ -75455,7 +76262,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2196 this -523298718 +1704629915 1 this.numer 9 @@ -75464,7 +76271,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -75473,7 +76280,7 @@ arg.denom 0 1 return -702060246 +1818544933 1 return.numer 0 @@ -75486,7 +76293,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2201 this -702060246 +1818544933 1 this.numer 0 @@ -75499,7 +76306,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2202 this -702060246 +1818544933 1 this.numer 0 @@ -75512,7 +76319,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2202 this -702060246 +1818544933 1 this.numer 0 @@ -75528,7 +76335,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2201 this -702060246 +1818544933 1 this.numer 0 @@ -75537,7 +76344,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -75547,7 +76354,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2203 this -19136856 +581318631 1 this.numer 100 @@ -75556,7 +76363,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -75569,7 +76376,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2204 this -2130132329 +200224114 1 this.numer 1 @@ -75592,7 +76399,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2205 this -1251397904 +1793436274 1 this.numer -1 @@ -75611,7 +76418,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2204 this -2130132329 +200224114 1 this.numer 1 @@ -75620,7 +76427,7 @@ this.denom 0 1 return -1251397904 +1793436274 1 return.numer -1 @@ -75633,7 +76440,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2206 this -19136856 +581318631 1 this.numer 100 @@ -75642,7 +76449,7 @@ this.denom 0 1 arg -1251397904 +1793436274 1 arg.numer -1 @@ -75665,7 +76472,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2207 this -1937217457 +572868060 1 this.numer 0 @@ -75684,7 +76491,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2206 this -19136856 +581318631 1 this.numer 100 @@ -75693,7 +76500,7 @@ this.denom 0 1 arg -1251397904 +1793436274 1 arg.numer -1 @@ -75702,7 +76509,7 @@ arg.denom 0 1 return -1937217457 +572868060 1 return.numer 0 @@ -75715,7 +76522,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2203 this -19136856 +581318631 1 this.numer 100 @@ -75724,7 +76531,7 @@ this.denom 0 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -75733,7 +76540,7 @@ arg.denom 0 1 return -1937217457 +572868060 1 return.numer 0 @@ -75746,7 +76553,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2208 this -1937217457 +572868060 1 this.numer 0 @@ -75759,7 +76566,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2209 this -1937217457 +572868060 1 this.numer 0 @@ -75772,7 +76579,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2209 this -1937217457 +572868060 1 this.numer 0 @@ -75788,7 +76595,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2208 this -1937217457 +572868060 1 this.numer 0 @@ -75797,7 +76604,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -75807,7 +76614,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2210 this -2130132329 +200224114 1 this.numer 1 @@ -75816,7 +76623,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -75829,7 +76636,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2211 this -19136856 +581318631 1 this.numer 100 @@ -75852,7 +76659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2212 this -814227632 +1549725679 1 this.numer -100 @@ -75871,7 +76678,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2211 this -19136856 +581318631 1 this.numer 100 @@ -75880,7 +76687,7 @@ this.denom 0 1 return -814227632 +1549725679 1 return.numer -100 @@ -75893,7 +76700,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2213 this -2130132329 +200224114 1 this.numer 1 @@ -75902,7 +76709,7 @@ this.denom 0 1 arg -814227632 +1549725679 1 arg.numer -100 @@ -75925,7 +76732,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2214 this -958012340 +371800738 1 this.numer 0 @@ -75944,7 +76751,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2213 this -2130132329 +200224114 1 this.numer 1 @@ -75953,7 +76760,7 @@ this.denom 0 1 arg -814227632 +1549725679 1 arg.numer -100 @@ -75962,7 +76769,7 @@ arg.denom 0 1 return -958012340 +371800738 1 return.numer 0 @@ -75975,7 +76782,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2210 this -2130132329 +200224114 1 this.numer 1 @@ -75984,7 +76791,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -75993,7 +76800,7 @@ arg.denom 0 1 return -958012340 +371800738 1 return.numer 0 @@ -76006,7 +76813,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2215 this -958012340 +371800738 1 this.numer 0 @@ -76019,7 +76826,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2216 this -958012340 +371800738 1 this.numer 0 @@ -76032,7 +76839,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2216 this -958012340 +371800738 1 this.numer 0 @@ -76048,7 +76855,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2215 this -958012340 +371800738 1 this.numer 0 @@ -76057,7 +76864,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -76067,7 +76874,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2217 this -19136856 +581318631 1 this.numer 100 @@ -76076,7 +76883,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -76089,7 +76896,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2218 this -434174366 +1773283386 1 this.numer -1 @@ -76112,7 +76919,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2219 this -1628496821 +1364767791 1 this.numer 1 @@ -76131,7 +76938,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2218 this -434174366 +1773283386 1 this.numer -1 @@ -76140,7 +76947,7 @@ this.denom 0 1 return -1628496821 +1364767791 1 return.numer 1 @@ -76153,7 +76960,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2220 this -19136856 +581318631 1 this.numer 100 @@ -76162,7 +76969,7 @@ this.denom 0 1 arg -1628496821 +1364767791 1 arg.numer 1 @@ -76185,7 +76992,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2221 this -466989532 +1499136125 1 this.numer 0 @@ -76204,7 +77011,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2220 this -19136856 +581318631 1 this.numer 100 @@ -76213,7 +77020,7 @@ this.denom 0 1 arg -1628496821 +1364767791 1 arg.numer 1 @@ -76222,7 +77029,7 @@ arg.denom 0 1 return -466989532 +1499136125 1 return.numer 0 @@ -76235,7 +77042,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2217 this -19136856 +581318631 1 this.numer 100 @@ -76244,7 +77051,7 @@ this.denom 0 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -76253,7 +77060,7 @@ arg.denom 0 1 return -466989532 +1499136125 1 return.numer 0 @@ -76266,7 +77073,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2222 this -466989532 +1499136125 1 this.numer 0 @@ -76279,7 +77086,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2223 this -466989532 +1499136125 1 this.numer 0 @@ -76292,7 +77099,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2223 this -466989532 +1499136125 1 this.numer 0 @@ -76308,7 +77115,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2222 this -466989532 +1499136125 1 this.numer 0 @@ -76317,7 +77124,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -76327,7 +77134,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2224 this -434174366 +1773283386 1 this.numer -1 @@ -76336,7 +77143,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -76349,7 +77156,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2225 this -19136856 +581318631 1 this.numer 100 @@ -76372,7 +77179,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2226 this -1787818186 +1926343982 1 this.numer -100 @@ -76391,7 +77198,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2225 this -19136856 +581318631 1 this.numer 100 @@ -76400,7 +77207,7 @@ this.denom 0 1 return -1787818186 +1926343982 1 return.numer -100 @@ -76413,7 +77220,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2227 this -434174366 +1773283386 1 this.numer -1 @@ -76422,7 +77229,7 @@ this.denom 0 1 arg -1787818186 +1926343982 1 arg.numer -100 @@ -76445,7 +77252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2228 this -269063278 +762476028 1 this.numer 0 @@ -76464,7 +77271,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2227 this -434174366 +1773283386 1 this.numer -1 @@ -76473,7 +77280,7 @@ this.denom 0 1 arg -1787818186 +1926343982 1 arg.numer -100 @@ -76482,7 +77289,7 @@ arg.denom 0 1 return -269063278 +762476028 1 return.numer 0 @@ -76495,7 +77302,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2224 this -434174366 +1773283386 1 this.numer -1 @@ -76504,7 +77311,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -76513,7 +77320,7 @@ arg.denom 0 1 return -269063278 +762476028 1 return.numer 0 @@ -76526,7 +77333,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2229 this -269063278 +762476028 1 this.numer 0 @@ -76539,7 +77346,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2230 this -269063278 +762476028 1 this.numer 0 @@ -76552,7 +77359,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2230 this -269063278 +762476028 1 this.numer 0 @@ -76568,7 +77375,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2229 this -269063278 +762476028 1 this.numer 0 @@ -76577,7 +77384,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -76587,7 +77394,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2231 this -19136856 +581318631 1 this.numer 100 @@ -76596,7 +77403,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -76609,7 +77416,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2232 this -19136856 +581318631 1 this.numer 100 @@ -76632,7 +77439,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2233 this -1693436411 +966739377 1 this.numer -100 @@ -76651,7 +77458,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2232 this -19136856 +581318631 1 this.numer 100 @@ -76660,7 +77467,7 @@ this.denom 0 1 return -1693436411 +966739377 1 return.numer -100 @@ -76673,7 +77480,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2234 this -19136856 +581318631 1 this.numer 100 @@ -76682,7 +77489,7 @@ this.denom 0 1 arg -1693436411 +966739377 1 arg.numer -100 @@ -76705,7 +77512,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2235 this -984985986 +952562199 1 this.numer 0 @@ -76724,7 +77531,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2234 this -19136856 +581318631 1 this.numer 100 @@ -76733,7 +77540,7 @@ this.denom 0 1 arg -1693436411 +966739377 1 arg.numer -100 @@ -76742,7 +77549,7 @@ arg.denom 0 1 return -984985986 +952562199 1 return.numer 0 @@ -76755,7 +77562,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2231 this -19136856 +581318631 1 this.numer 100 @@ -76764,7 +77571,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -76773,7 +77580,7 @@ arg.denom 0 1 return -984985986 +952562199 1 return.numer 0 @@ -76786,7 +77593,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2236 this -984985986 +952562199 1 this.numer 0 @@ -76799,7 +77606,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2237 this -984985986 +952562199 1 this.numer 0 @@ -76812,7 +77619,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2237 this -984985986 +952562199 1 this.numer 0 @@ -76828,7 +77635,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2236 this -984985986 +952562199 1 this.numer 0 @@ -76837,7 +77644,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -76847,7 +77654,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2238 this -19136856 +581318631 1 this.numer 100 @@ -76856,7 +77663,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -76869,7 +77676,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2239 this -19136856 +581318631 1 this.numer 100 @@ -76892,7 +77699,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2240 this -1855515626 +1199673596 1 this.numer -100 @@ -76911,7 +77718,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2239 this -19136856 +581318631 1 this.numer 100 @@ -76920,7 +77727,7 @@ this.denom 0 1 return -1855515626 +1199673596 1 return.numer -100 @@ -76933,7 +77740,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2241 this -19136856 +581318631 1 this.numer 100 @@ -76942,7 +77749,7 @@ this.denom 0 1 arg -1855515626 +1199673596 1 arg.numer -100 @@ -76965,7 +77772,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2242 this -2041088095 +2044903525 1 this.numer 0 @@ -76984,7 +77791,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2241 this -19136856 +581318631 1 this.numer 100 @@ -76993,7 +77800,7 @@ this.denom 0 1 arg -1855515626 +1199673596 1 arg.numer -100 @@ -77002,7 +77809,7 @@ arg.denom 0 1 return -2041088095 +2044903525 1 return.numer 0 @@ -77015,7 +77822,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2238 this -19136856 +581318631 1 this.numer 100 @@ -77024,7 +77831,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -77033,7 +77840,7 @@ arg.denom 0 1 return -2041088095 +2044903525 1 return.numer 0 @@ -77046,7 +77853,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2243 this -2041088095 +2044903525 1 this.numer 0 @@ -77059,7 +77866,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2244 this -2041088095 +2044903525 1 this.numer 0 @@ -77072,7 +77879,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2244 this -2041088095 +2044903525 1 this.numer 0 @@ -77088,7 +77895,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2243 this -2041088095 +2044903525 1 this.numer 0 @@ -77097,7 +77904,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -77107,7 +77914,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2245 this -19136856 +581318631 1 this.numer 100 @@ -77116,7 +77923,7 @@ this.denom 0 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -77129,7 +77936,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2246 this -1658075389 +1877453512 1 this.numer 2 @@ -77152,7 +77959,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2247 this -663835487 +982757413 1 this.numer -2 @@ -77171,7 +77978,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2246 this -1658075389 +1877453512 1 this.numer 2 @@ -77180,7 +77987,7 @@ this.denom 0 1 return -663835487 +982757413 1 return.numer -2 @@ -77193,7 +78000,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2248 this -19136856 +581318631 1 this.numer 100 @@ -77202,7 +78009,7 @@ this.denom 0 1 arg -663835487 +982757413 1 arg.numer -2 @@ -77225,7 +78032,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2249 this -905483844 +902478634 1 this.numer 0 @@ -77244,7 +78051,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2248 this -19136856 +581318631 1 this.numer 100 @@ -77253,7 +78060,7 @@ this.denom 0 1 arg -663835487 +982757413 1 arg.numer -2 @@ -77262,7 +78069,7 @@ arg.denom 0 1 return -905483844 +902478634 1 return.numer 0 @@ -77275,7 +78082,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2245 this -19136856 +581318631 1 this.numer 100 @@ -77284,7 +78091,7 @@ this.denom 0 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -77293,7 +78100,7 @@ arg.denom 0 1 return -905483844 +902478634 1 return.numer 0 @@ -77306,7 +78113,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2250 this -905483844 +902478634 1 this.numer 0 @@ -77319,7 +78126,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2251 this -905483844 +902478634 1 this.numer 0 @@ -77332,7 +78139,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2251 this -905483844 +902478634 1 this.numer 0 @@ -77348,7 +78155,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2250 this -905483844 +902478634 1 this.numer 0 @@ -77357,7 +78164,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -77367,7 +78174,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2252 this -1658075389 +1877453512 1 this.numer 2 @@ -77376,7 +78183,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -77389,7 +78196,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2253 this -19136856 +581318631 1 this.numer 100 @@ -77412,7 +78219,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2254 this -1397843466 +2114444063 1 this.numer -100 @@ -77431,7 +78238,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2253 this -19136856 +581318631 1 this.numer 100 @@ -77440,7 +78247,7 @@ this.denom 0 1 return -1397843466 +2114444063 1 return.numer -100 @@ -77453,7 +78260,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2255 this -1658075389 +1877453512 1 this.numer 2 @@ -77462,7 +78269,7 @@ this.denom 0 1 arg -1397843466 +2114444063 1 arg.numer -100 @@ -77485,7 +78292,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2256 this -84034882 +294247762 1 this.numer 0 @@ -77504,7 +78311,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2255 this -1658075389 +1877453512 1 this.numer 2 @@ -77513,7 +78320,7 @@ this.denom 0 1 arg -1397843466 +2114444063 1 arg.numer -100 @@ -77522,7 +78329,7 @@ arg.denom 0 1 return -84034882 +294247762 1 return.numer 0 @@ -77535,7 +78342,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2252 this -1658075389 +1877453512 1 this.numer 2 @@ -77544,7 +78351,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -77553,7 +78360,7 @@ arg.denom 0 1 return -84034882 +294247762 1 return.numer 0 @@ -77566,7 +78373,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2257 this -84034882 +294247762 1 this.numer 0 @@ -77579,7 +78386,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2258 this -84034882 +294247762 1 this.numer 0 @@ -77592,7 +78399,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2258 this -84034882 +294247762 1 this.numer 0 @@ -77608,7 +78415,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2257 this -84034882 +294247762 1 this.numer 0 @@ -77617,7 +78424,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -77627,7 +78434,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2259 this -19136856 +581318631 1 this.numer 100 @@ -77636,7 +78443,7 @@ this.denom 0 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -77649,7 +78456,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2260 this -1525259451 +487694075 1 this.numer -2 @@ -77672,7 +78479,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2261 this -1477505695 +918312414 1 this.numer 2 @@ -77691,7 +78498,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2260 this -1525259451 +487694075 1 this.numer -2 @@ -77700,7 +78507,7 @@ this.denom 0 1 return -1477505695 +918312414 1 return.numer 2 @@ -77713,7 +78520,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2262 this -19136856 +581318631 1 this.numer 100 @@ -77722,7 +78529,7 @@ this.denom 0 1 arg -1477505695 +918312414 1 arg.numer 2 @@ -77745,7 +78552,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2263 this -1084805604 +1448061896 1 this.numer 0 @@ -77764,7 +78571,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2262 this -19136856 +581318631 1 this.numer 100 @@ -77773,7 +78580,7 @@ this.denom 0 1 arg -1477505695 +918312414 1 arg.numer 2 @@ -77782,7 +78589,7 @@ arg.denom 0 1 return -1084805604 +1448061896 1 return.numer 0 @@ -77795,7 +78602,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2259 this -19136856 +581318631 1 this.numer 100 @@ -77804,7 +78611,7 @@ this.denom 0 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -77813,7 +78620,7 @@ arg.denom 0 1 return -1084805604 +1448061896 1 return.numer 0 @@ -77826,7 +78633,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2264 this -1084805604 +1448061896 1 this.numer 0 @@ -77839,7 +78646,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2265 this -1084805604 +1448061896 1 this.numer 0 @@ -77852,7 +78659,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2265 this -1084805604 +1448061896 1 this.numer 0 @@ -77868,7 +78675,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2264 this -1084805604 +1448061896 1 this.numer 0 @@ -77877,7 +78684,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -77887,7 +78694,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2266 this -1525259451 +487694075 1 this.numer -2 @@ -77896,7 +78703,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -77909,7 +78716,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2267 this -19136856 +581318631 1 this.numer 100 @@ -77932,7 +78739,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2268 this -191623398 +382750013 1 this.numer -100 @@ -77951,7 +78758,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2267 this -19136856 +581318631 1 this.numer 100 @@ -77960,7 +78767,7 @@ this.denom 0 1 return -191623398 +382750013 1 return.numer -100 @@ -77973,7 +78780,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2269 this -1525259451 +487694075 1 this.numer -2 @@ -77982,7 +78789,7 @@ this.denom 0 1 arg -191623398 +382750013 1 arg.numer -100 @@ -78005,7 +78812,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2270 this -1536463333 +1240232440 1 this.numer 0 @@ -78024,7 +78831,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2269 this -1525259451 +487694075 1 this.numer -2 @@ -78033,7 +78840,7 @@ this.denom 0 1 arg -191623398 +382750013 1 arg.numer -100 @@ -78042,7 +78849,7 @@ arg.denom 0 1 return -1536463333 +1240232440 1 return.numer 0 @@ -78055,7 +78862,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2266 this -1525259451 +487694075 1 this.numer -2 @@ -78064,7 +78871,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -78073,7 +78880,7 @@ arg.denom 0 1 return -1536463333 +1240232440 1 return.numer 0 @@ -78086,7 +78893,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2271 this -1536463333 +1240232440 1 this.numer 0 @@ -78099,7 +78906,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2272 this -1536463333 +1240232440 1 this.numer 0 @@ -78112,7 +78919,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2272 this -1536463333 +1240232440 1 this.numer 0 @@ -78128,7 +78935,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2271 this -1536463333 +1240232440 1 this.numer 0 @@ -78137,7 +78944,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -78147,7 +78954,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2273 this -19136856 +581318631 1 this.numer 100 @@ -78156,7 +78963,7 @@ this.denom 0 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -78169,7 +78976,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2274 this -523298718 +1704629915 1 this.numer 9 @@ -78192,7 +78999,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2275 this -1995866203 +489349054 1 this.numer -9 @@ -78211,7 +79018,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2274 this -523298718 +1704629915 1 this.numer 9 @@ -78220,7 +79027,7 @@ this.denom 0 1 return -1995866203 +489349054 1 return.numer -9 @@ -78233,7 +79040,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2276 this -19136856 +581318631 1 this.numer 100 @@ -78242,7 +79049,7 @@ this.denom 0 1 arg -1995866203 +489349054 1 arg.numer -9 @@ -78265,7 +79072,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2277 this -828707681 +915416632 1 this.numer 0 @@ -78284,7 +79091,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2276 this -19136856 +581318631 1 this.numer 100 @@ -78293,7 +79100,7 @@ this.denom 0 1 arg -1995866203 +489349054 1 arg.numer -9 @@ -78302,7 +79109,7 @@ arg.denom 0 1 return -828707681 +915416632 1 return.numer 0 @@ -78315,7 +79122,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2273 this -19136856 +581318631 1 this.numer 100 @@ -78324,7 +79131,7 @@ this.denom 0 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -78333,7 +79140,7 @@ arg.denom 0 1 return -828707681 +915416632 1 return.numer 0 @@ -78346,7 +79153,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2278 this -828707681 +915416632 1 this.numer 0 @@ -78359,7 +79166,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2279 this -828707681 +915416632 1 this.numer 0 @@ -78372,7 +79179,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2279 this -828707681 +915416632 1 this.numer 0 @@ -78388,7 +79195,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2278 this -828707681 +915416632 1 this.numer 0 @@ -78397,7 +79204,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -78407,7 +79214,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2280 this -523298718 +1704629915 1 this.numer 9 @@ -78416,7 +79223,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -78429,7 +79236,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2281 this -19136856 +581318631 1 this.numer 100 @@ -78452,7 +79259,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2282 this -1658543772 +574434418 1 this.numer -100 @@ -78471,7 +79278,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2281 this -19136856 +581318631 1 this.numer 100 @@ -78480,7 +79287,7 @@ this.denom 0 1 return -1658543772 +574434418 1 return.numer -100 @@ -78493,7 +79300,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2283 this -523298718 +1704629915 1 this.numer 9 @@ -78502,7 +79309,7 @@ this.denom 0 1 arg -1658543772 +574434418 1 arg.numer -100 @@ -78525,7 +79332,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2284 this -807437944 +150268540 1 this.numer 0 @@ -78544,7 +79351,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2283 this -523298718 +1704629915 1 this.numer 9 @@ -78553,7 +79360,7 @@ this.denom 0 1 arg -1658543772 +574434418 1 arg.numer -100 @@ -78562,7 +79369,7 @@ arg.denom 0 1 return -807437944 +150268540 1 return.numer 0 @@ -78575,7 +79382,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2280 this -523298718 +1704629915 1 this.numer 9 @@ -78584,7 +79391,7 @@ this.denom 0 1 arg -19136856 +581318631 1 arg.numer 100 @@ -78593,7 +79400,7 @@ arg.denom 0 1 return -807437944 +150268540 1 return.numer 0 @@ -78606,7 +79413,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2285 this -807437944 +150268540 1 this.numer 0 @@ -78619,7 +79426,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2286 this -807437944 +150268540 1 this.numer 0 @@ -78632,7 +79439,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2286 this -807437944 +150268540 1 this.numer 0 @@ -78648,7 +79455,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2285 this -807437944 +150268540 1 this.numer 0 @@ -78657,7 +79464,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -78667,7 +79474,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2287 this -1873828948 +2095303566 1 this.numer 8 @@ -78676,7 +79483,7 @@ this.denom 7 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -78689,7 +79496,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2288 this -2130132329 +200224114 1 this.numer 1 @@ -78712,7 +79519,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2289 this -660359415 +1130894323 1 this.numer -1 @@ -78731,7 +79538,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2288 this -2130132329 +200224114 1 this.numer 1 @@ -78740,7 +79547,7 @@ this.denom 0 1 return -660359415 +1130894323 1 return.numer -1 @@ -78753,7 +79560,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2290 this -1873828948 +2095303566 1 this.numer 8 @@ -78762,7 +79569,7 @@ this.denom 7 1 arg -660359415 +1130894323 1 arg.numer -1 @@ -78785,7 +79592,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2291 this -465200209 +1962826816 1 this.numer -7 @@ -78804,7 +79611,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2290 this -1873828948 +2095303566 1 this.numer 8 @@ -78813,7 +79620,7 @@ this.denom 7 1 arg -660359415 +1130894323 1 arg.numer -1 @@ -78822,7 +79629,7 @@ arg.denom 0 1 return -465200209 +1962826816 1 return.numer -7 @@ -78835,7 +79642,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2287 this -1873828948 +2095303566 1 this.numer 8 @@ -78844,7 +79651,7 @@ this.denom 7 1 arg -2130132329 +200224114 1 arg.numer 1 @@ -78853,7 +79660,7 @@ arg.denom 0 1 return -465200209 +1962826816 1 return.numer -7 @@ -78866,7 +79673,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2292 this -465200209 +1962826816 1 this.numer -7 @@ -78879,7 +79686,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2293 this -465200209 +1962826816 1 this.numer -7 @@ -78892,7 +79699,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2293 this -465200209 +1962826816 1 this.numer -7 @@ -78908,7 +79715,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2292 this -465200209 +1962826816 1 this.numer -7 @@ -78917,7 +79724,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -78927,7 +79734,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2294 this -2130132329 +200224114 1 this.numer 1 @@ -78936,7 +79743,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -78949,7 +79756,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2295 this -1873828948 +2095303566 1 this.numer 8 @@ -78995,7 +79802,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2296 this -1779437583 +1072410641 1 this.numer -8 @@ -79014,7 +79821,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2295 this -1873828948 +2095303566 1 this.numer 8 @@ -79023,7 +79830,7 @@ this.denom 7 1 return -1779437583 +1072410641 1 return.numer -8 @@ -79036,7 +79843,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2298 this -2130132329 +200224114 1 this.numer 1 @@ -79045,7 +79852,7 @@ this.denom 0 1 arg -1779437583 +1072410641 1 arg.numer -8 @@ -79068,7 +79875,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2299 this -1150189359 +283318938 1 this.numer 7 @@ -79087,7 +79894,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2298 this -2130132329 +200224114 1 this.numer 1 @@ -79096,7 +79903,7 @@ this.denom 0 1 arg -1779437583 +1072410641 1 arg.numer -8 @@ -79105,7 +79912,7 @@ arg.denom 7 1 return -1150189359 +283318938 1 return.numer 7 @@ -79118,7 +79925,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2294 this -2130132329 +200224114 1 this.numer 1 @@ -79127,7 +79934,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -79136,7 +79943,7 @@ arg.denom 7 1 return -1150189359 +283318938 1 return.numer 7 @@ -79149,7 +79956,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2300 this -1150189359 +283318938 1 this.numer 7 @@ -79162,7 +79969,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2301 this -1150189359 +283318938 1 this.numer 7 @@ -79175,7 +79982,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2301 this -1150189359 +283318938 1 this.numer 7 @@ -79191,7 +79998,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2300 this -1150189359 +283318938 1 this.numer 7 @@ -79200,7 +80007,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -79210,7 +80017,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2302 this -1873828948 +2095303566 1 this.numer 8 @@ -79219,7 +80026,7 @@ this.denom 7 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -79232,7 +80039,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2303 this -434174366 +1773283386 1 this.numer -1 @@ -79255,7 +80062,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2304 this -1732250066 +320304382 1 this.numer 1 @@ -79274,7 +80081,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2303 this -434174366 +1773283386 1 this.numer -1 @@ -79283,7 +80090,7 @@ this.denom 0 1 return -1732250066 +320304382 1 return.numer 1 @@ -79296,7 +80103,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2305 this -1873828948 +2095303566 1 this.numer 8 @@ -79305,7 +80112,7 @@ this.denom 7 1 arg -1732250066 +320304382 1 arg.numer 1 @@ -79328,7 +80135,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2306 this -491056883 +361571968 1 this.numer 7 @@ -79347,7 +80154,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2305 this -1873828948 +2095303566 1 this.numer 8 @@ -79356,7 +80163,7 @@ this.denom 7 1 arg -1732250066 +320304382 1 arg.numer 1 @@ -79365,7 +80172,7 @@ arg.denom 0 1 return -491056883 +361571968 1 return.numer 7 @@ -79378,7 +80185,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2302 this -1873828948 +2095303566 1 this.numer 8 @@ -79387,7 +80194,7 @@ this.denom 7 1 arg -434174366 +1773283386 1 arg.numer -1 @@ -79396,7 +80203,7 @@ arg.denom 0 1 return -491056883 +361571968 1 return.numer 7 @@ -79409,7 +80216,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2307 this -491056883 +361571968 1 this.numer 7 @@ -79422,7 +80229,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2308 this -491056883 +361571968 1 this.numer 7 @@ -79435,7 +80242,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2308 this -491056883 +361571968 1 this.numer 7 @@ -79451,7 +80258,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2307 this -491056883 +361571968 1 this.numer 7 @@ -79460,7 +80267,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -79470,7 +80277,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2309 this -434174366 +1773283386 1 this.numer -1 @@ -79479,7 +80286,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -79492,7 +80299,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2310 this -1873828948 +2095303566 1 this.numer 8 @@ -79538,7 +80345,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2311 this -413377160 +2005169944 1 this.numer -8 @@ -79557,7 +80364,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2310 this -1873828948 +2095303566 1 this.numer 8 @@ -79566,7 +80373,7 @@ this.denom 7 1 return -413377160 +2005169944 1 return.numer -8 @@ -79579,7 +80386,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2313 this -434174366 +1773283386 1 this.numer -1 @@ -79588,7 +80395,7 @@ this.denom 0 1 arg -413377160 +2005169944 1 arg.numer -8 @@ -79611,7 +80418,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2314 this -520330075 +2134607032 1 this.numer -7 @@ -79630,7 +80437,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2313 this -434174366 +1773283386 1 this.numer -1 @@ -79639,7 +80446,7 @@ this.denom 0 1 arg -413377160 +2005169944 1 arg.numer -8 @@ -79648,7 +80455,7 @@ arg.denom 7 1 return -520330075 +2134607032 1 return.numer -7 @@ -79661,7 +80468,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2309 this -434174366 +1773283386 1 this.numer -1 @@ -79670,7 +80477,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -79679,7 +80486,7 @@ arg.denom 7 1 return -520330075 +2134607032 1 return.numer -7 @@ -79692,7 +80499,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2315 this -520330075 +2134607032 1 this.numer -7 @@ -79705,7 +80512,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2316 this -520330075 +2134607032 1 this.numer -7 @@ -79718,7 +80525,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2316 this -520330075 +2134607032 1 this.numer -7 @@ -79734,7 +80541,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2315 this -520330075 +2134607032 1 this.numer -7 @@ -79743,7 +80550,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -79753,7 +80560,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2317 this -1873828948 +2095303566 1 this.numer 8 @@ -79762,7 +80569,7 @@ this.denom 7 1 arg -19136856 +581318631 1 arg.numer 100 @@ -79775,7 +80582,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2318 this -19136856 +581318631 1 this.numer 100 @@ -79798,7 +80605,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2319 this -634159941 +1470344997 1 this.numer -100 @@ -79817,7 +80624,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2318 this -19136856 +581318631 1 this.numer 100 @@ -79826,7 +80633,7 @@ this.denom 0 1 return -634159941 +1470344997 1 return.numer -100 @@ -79839,7 +80646,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2320 this -1873828948 +2095303566 1 this.numer 8 @@ -79848,7 +80655,7 @@ this.denom 7 1 arg -634159941 +1470344997 1 arg.numer -100 @@ -79871,7 +80678,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2321 this -364788326 +728115831 1 this.numer -700 @@ -79890,7 +80697,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2320 this -1873828948 +2095303566 1 this.numer 8 @@ -79899,7 +80706,7 @@ this.denom 7 1 arg -634159941 +1470344997 1 arg.numer -100 @@ -79908,7 +80715,7 @@ arg.denom 0 1 return -364788326 +728115831 1 return.numer -700 @@ -79921,7 +80728,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2317 this -1873828948 +2095303566 1 this.numer 8 @@ -79930,7 +80737,7 @@ this.denom 7 1 arg -19136856 +581318631 1 arg.numer 100 @@ -79939,7 +80746,7 @@ arg.denom 0 1 return -364788326 +728115831 1 return.numer -700 @@ -79952,7 +80759,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2322 this -364788326 +728115831 1 this.numer -700 @@ -79965,7 +80772,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2323 this -364788326 +728115831 1 this.numer -700 @@ -79978,7 +80785,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2323 this -364788326 +728115831 1 this.numer -700 @@ -79994,7 +80801,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2322 this -364788326 +728115831 1 this.numer -700 @@ -80003,7 +80810,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -80013,7 +80820,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2324 this -19136856 +581318631 1 this.numer 100 @@ -80022,7 +80829,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -80035,7 +80842,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2325 this -1873828948 +2095303566 1 this.numer 8 @@ -80081,7 +80888,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2326 this -2079066544 +2131670196 1 this.numer -8 @@ -80100,7 +80907,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2325 this -1873828948 +2095303566 1 this.numer 8 @@ -80109,7 +80916,7 @@ this.denom 7 1 return -2079066544 +2131670196 1 return.numer -8 @@ -80122,7 +80929,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2328 this -19136856 +581318631 1 this.numer 100 @@ -80131,7 +80938,7 @@ this.denom 0 1 arg -2079066544 +2131670196 1 arg.numer -8 @@ -80154,7 +80961,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2329 this -1164984671 +1546908073 1 this.numer 700 @@ -80173,7 +80980,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2328 this -19136856 +581318631 1 this.numer 100 @@ -80182,7 +80989,7 @@ this.denom 0 1 arg -2079066544 +2131670196 1 arg.numer -8 @@ -80191,7 +80998,7 @@ arg.denom 7 1 return -1164984671 +1546908073 1 return.numer 700 @@ -80204,7 +81011,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2324 this -19136856 +581318631 1 this.numer 100 @@ -80213,7 +81020,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -80222,7 +81029,7 @@ arg.denom 7 1 return -1164984671 +1546908073 1 return.numer 700 @@ -80235,7 +81042,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2330 this -1164984671 +1546908073 1 this.numer 700 @@ -80248,7 +81055,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2331 this -1164984671 +1546908073 1 this.numer 700 @@ -80261,7 +81068,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2331 this -1164984671 +1546908073 1 this.numer 700 @@ -80277,7 +81084,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2330 this -1164984671 +1546908073 1 this.numer 700 @@ -80286,7 +81093,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -80296,7 +81103,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2332 this -1873828948 +2095303566 1 this.numer 8 @@ -80305,7 +81112,7 @@ this.denom 7 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -80318,7 +81125,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2333 this -1658075389 +1877453512 1 this.numer 2 @@ -80341,7 +81148,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2334 this -1288955798 +371439501 1 this.numer -2 @@ -80360,7 +81167,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2333 this -1658075389 +1877453512 1 this.numer 2 @@ -80369,7 +81176,7 @@ this.denom 0 1 return -1288955798 +371439501 1 return.numer -2 @@ -80382,7 +81189,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2335 this -1873828948 +2095303566 1 this.numer 8 @@ -80391,7 +81198,7 @@ this.denom 7 1 arg -1288955798 +371439501 1 arg.numer -2 @@ -80414,7 +81221,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2336 this -1812549697 +210506412 1 this.numer -14 @@ -80433,7 +81240,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2335 this -1873828948 +2095303566 1 this.numer 8 @@ -80442,7 +81249,7 @@ this.denom 7 1 arg -1288955798 +371439501 1 arg.numer -2 @@ -80451,7 +81258,7 @@ arg.denom 0 1 return -1812549697 +210506412 1 return.numer -14 @@ -80464,7 +81271,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2332 this -1873828948 +2095303566 1 this.numer 8 @@ -80473,7 +81280,7 @@ this.denom 7 1 arg -1658075389 +1877453512 1 arg.numer 2 @@ -80482,7 +81289,7 @@ arg.denom 0 1 return -1812549697 +210506412 1 return.numer -14 @@ -80495,7 +81302,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2337 this -1812549697 +210506412 1 this.numer -14 @@ -80508,7 +81315,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2338 this -1812549697 +210506412 1 this.numer -14 @@ -80521,7 +81328,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2338 this -1812549697 +210506412 1 this.numer -14 @@ -80537,7 +81344,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2337 this -1812549697 +210506412 1 this.numer -14 @@ -80546,7 +81353,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -80556,7 +81363,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2339 this -1658075389 +1877453512 1 this.numer 2 @@ -80565,7 +81372,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -80578,7 +81385,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2340 this -1873828948 +2095303566 1 this.numer 8 @@ -80624,7 +81431,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2341 this -1467224784 +112049309 1 this.numer -8 @@ -80643,7 +81450,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2340 this -1873828948 +2095303566 1 this.numer 8 @@ -80652,7 +81459,7 @@ this.denom 7 1 return -1467224784 +112049309 1 return.numer -8 @@ -80665,7 +81472,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2343 this -1658075389 +1877453512 1 this.numer 2 @@ -80674,7 +81481,7 @@ this.denom 0 1 arg -1467224784 +112049309 1 arg.numer -8 @@ -80697,7 +81504,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2344 this -92226187 +1162918744 1 this.numer 14 @@ -80716,7 +81523,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2343 this -1658075389 +1877453512 1 this.numer 2 @@ -80725,7 +81532,7 @@ this.denom 0 1 arg -1467224784 +112049309 1 arg.numer -8 @@ -80734,7 +81541,7 @@ arg.denom 7 1 return -92226187 +1162918744 1 return.numer 14 @@ -80747,7 +81554,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2339 this -1658075389 +1877453512 1 this.numer 2 @@ -80756,7 +81563,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -80765,7 +81572,7 @@ arg.denom 7 1 return -92226187 +1162918744 1 return.numer 14 @@ -80778,7 +81585,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2345 this -92226187 +1162918744 1 this.numer 14 @@ -80791,7 +81598,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2346 this -92226187 +1162918744 1 this.numer 14 @@ -80804,7 +81611,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2346 this -92226187 +1162918744 1 this.numer 14 @@ -80820,7 +81627,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2345 this -92226187 +1162918744 1 this.numer 14 @@ -80829,7 +81636,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -80839,7 +81646,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2347 this -1873828948 +2095303566 1 this.numer 8 @@ -80848,7 +81655,7 @@ this.denom 7 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -80861,7 +81668,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2348 this -1525259451 +487694075 1 this.numer -2 @@ -80884,7 +81691,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2349 this -1709815422 +1321530272 1 this.numer 2 @@ -80903,7 +81710,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2348 this -1525259451 +487694075 1 this.numer -2 @@ -80912,7 +81719,7 @@ this.denom 0 1 return -1709815422 +1321530272 1 return.numer 2 @@ -80925,7 +81732,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2350 this -1873828948 +2095303566 1 this.numer 8 @@ -80934,7 +81741,7 @@ this.denom 7 1 arg -1709815422 +1321530272 1 arg.numer 2 @@ -80957,7 +81764,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2351 this -1389117047 +573673894 1 this.numer 14 @@ -80976,7 +81783,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2350 this -1873828948 +2095303566 1 this.numer 8 @@ -80985,7 +81792,7 @@ this.denom 7 1 arg -1709815422 +1321530272 1 arg.numer 2 @@ -80994,7 +81801,7 @@ arg.denom 0 1 return -1389117047 +573673894 1 return.numer 14 @@ -81007,7 +81814,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2347 this -1873828948 +2095303566 1 this.numer 8 @@ -81016,7 +81823,7 @@ this.denom 7 1 arg -1525259451 +487694075 1 arg.numer -2 @@ -81025,7 +81832,7 @@ arg.denom 0 1 return -1389117047 +573673894 1 return.numer 14 @@ -81038,7 +81845,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2352 this -1389117047 +573673894 1 this.numer 14 @@ -81051,7 +81858,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2353 this -1389117047 +573673894 1 this.numer 14 @@ -81064,7 +81871,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2353 this -1389117047 +573673894 1 this.numer 14 @@ -81080,7 +81887,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2352 this -1389117047 +573673894 1 this.numer 14 @@ -81089,7 +81896,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -81099,7 +81906,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2354 this -1525259451 +487694075 1 this.numer -2 @@ -81108,7 +81915,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -81121,7 +81928,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2355 this -1873828948 +2095303566 1 this.numer 8 @@ -81167,7 +81974,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2356 this -1595482392 +1226020905 1 this.numer -8 @@ -81186,7 +81993,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2355 this -1873828948 +2095303566 1 this.numer 8 @@ -81195,7 +82002,7 @@ this.denom 7 1 return -1595482392 +1226020905 1 return.numer -8 @@ -81208,7 +82015,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2358 this -1525259451 +487694075 1 this.numer -2 @@ -81217,7 +82024,7 @@ this.denom 0 1 arg -1595482392 +1226020905 1 arg.numer -8 @@ -81240,7 +82047,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2359 this -1791745902 +156856360 1 this.numer -14 @@ -81259,7 +82066,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2358 this -1525259451 +487694075 1 this.numer -2 @@ -81268,7 +82075,7 @@ this.denom 0 1 arg -1595482392 +1226020905 1 arg.numer -8 @@ -81277,7 +82084,7 @@ arg.denom 7 1 return -1791745902 +156856360 1 return.numer -14 @@ -81290,7 +82097,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2354 this -1525259451 +487694075 1 this.numer -2 @@ -81299,7 +82106,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -81308,7 +82115,7 @@ arg.denom 7 1 return -1791745902 +156856360 1 return.numer -14 @@ -81321,7 +82128,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2360 this -1791745902 +156856360 1 this.numer -14 @@ -81334,7 +82141,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2361 this -1791745902 +156856360 1 this.numer -14 @@ -81347,7 +82154,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2361 this -1791745902 +156856360 1 this.numer -14 @@ -81363,7 +82170,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2360 this -1791745902 +156856360 1 this.numer -14 @@ -81372,7 +82179,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -81382,7 +82189,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2362 this -1873828948 +2095303566 1 this.numer 8 @@ -81391,7 +82198,7 @@ this.denom 7 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -81404,7 +82211,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2363 this -523298718 +1704629915 1 this.numer 9 @@ -81427,7 +82234,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2364 this -1857676680 +1617550160 1 this.numer -9 @@ -81446,7 +82253,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2363 this -523298718 +1704629915 1 this.numer 9 @@ -81455,7 +82262,7 @@ this.denom 0 1 return -1857676680 +1617550160 1 return.numer -9 @@ -81468,7 +82275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2365 this -1873828948 +2095303566 1 this.numer 8 @@ -81477,7 +82284,7 @@ this.denom 7 1 arg -1857676680 +1617550160 1 arg.numer -9 @@ -81500,7 +82307,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2366 this -1854700674 +1325124186 1 this.numer -63 @@ -81519,7 +82326,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2365 this -1873828948 +2095303566 1 this.numer 8 @@ -81528,7 +82335,7 @@ this.denom 7 1 arg -1857676680 +1617550160 1 arg.numer -9 @@ -81537,7 +82344,7 @@ arg.denom 0 1 return -1854700674 +1325124186 1 return.numer -63 @@ -81550,7 +82357,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2362 this -1873828948 +2095303566 1 this.numer 8 @@ -81559,7 +82366,7 @@ this.denom 7 1 arg -523298718 +1704629915 1 arg.numer 9 @@ -81568,7 +82375,7 @@ arg.denom 0 1 return -1854700674 +1325124186 1 return.numer -63 @@ -81581,7 +82388,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2367 this -1854700674 +1325124186 1 this.numer -63 @@ -81594,7 +82401,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2368 this -1854700674 +1325124186 1 this.numer -63 @@ -81607,7 +82414,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2368 this -1854700674 +1325124186 1 this.numer -63 @@ -81623,7 +82430,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2367 this -1854700674 +1325124186 1 this.numer -63 @@ -81632,7 +82439,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -81642,7 +82449,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2369 this -523298718 +1704629915 1 this.numer 9 @@ -81651,7 +82458,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -81664,7 +82471,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2370 this -1873828948 +2095303566 1 this.numer 8 @@ -81710,7 +82517,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2371 this -1229091713 +461160828 1 this.numer -8 @@ -81729,7 +82536,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2370 this -1873828948 +2095303566 1 this.numer 8 @@ -81738,7 +82545,7 @@ this.denom 7 1 return -1229091713 +461160828 1 return.numer -8 @@ -81751,7 +82558,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2373 this -523298718 +1704629915 1 this.numer 9 @@ -81760,7 +82567,7 @@ this.denom 0 1 arg -1229091713 +461160828 1 arg.numer -8 @@ -81783,7 +82590,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2374 this -699219898 +1499867659 1 this.numer 63 @@ -81802,7 +82609,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2373 this -523298718 +1704629915 1 this.numer 9 @@ -81811,7 +82618,7 @@ this.denom 0 1 arg -1229091713 +461160828 1 arg.numer -8 @@ -81820,7 +82627,7 @@ arg.denom 7 1 return -699219898 +1499867659 1 return.numer 63 @@ -81833,7 +82640,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2369 this -523298718 +1704629915 1 this.numer 9 @@ -81842,7 +82649,7 @@ this.denom 0 1 arg -1873828948 +2095303566 1 arg.numer 8 @@ -81851,7 +82658,7 @@ arg.denom 7 1 return -699219898 +1499867659 1 return.numer 63 @@ -81864,7 +82671,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2375 this -699219898 +1499867659 1 this.numer 63 @@ -81877,7 +82684,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2376 this -699219898 +1499867659 1 this.numer 63 @@ -81890,7 +82697,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2376 this -699219898 +1499867659 1 this.numer 63 @@ -81906,7 +82713,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2375 this -699219898 +1499867659 1 this.numer 63 @@ -81915,7 +82722,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -81932,7 +82739,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2377 this -758309302 +2012993836 1 this.numer 0 @@ -81955,7 +82762,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2378 this -1736477416 +1740797075 1 this.numer 1 @@ -81978,7 +82785,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2379 this -673167982 +440938038 1 this.numer -1 @@ -82001,7 +82808,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2380 this -990421078 +1922464006 1 this.numer 2 @@ -82024,7 +82831,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2381 this -861310049 +1536031937 1 this.numer 3 @@ -82073,7 +82880,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2382 this -1998212763 +798981583 1 this.numer 1 @@ -82125,7 +82932,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2384 this -1612635955 +1954406292 1 this.numer 1 @@ -82177,7 +82984,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2386 this -181386898 +904058452 1 this.numer 1 @@ -82229,7 +83036,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2388 this -1290299593 +29183965 1 this.numer 2 @@ -82281,7 +83088,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2390 this -775392145 +1427651360 1 this.numer 3 @@ -82333,7 +83140,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2392 this -1085011019 +1334042472 1 this.numer 5 @@ -82385,7 +83192,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2394 this -1496549656 +1827725498 1 this.numer 6 @@ -82437,7 +83244,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2396 this -1181594728 +131635550 1 this.numer 8 @@ -82489,7 +83296,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2398 this -1281309687 +319644606 1 this.numer -1 @@ -82541,7 +83348,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2400 this -5897293 +1118078504 1 this.numer 3 @@ -82570,7 +83377,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2402 this -331555689 +691690486 1 this.numer 1 @@ -82599,7 +83406,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2403 this -1883884705 +1793799654 1 this.numer -1 @@ -82628,7 +83435,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2404 this -2098829214 +310623126 1 this.numer 100 @@ -82657,7 +83464,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2405 this -456214076 +1961945640 1 this.numer 2 @@ -82686,7 +83493,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2406 this -1073355542 +258931371 1 this.numer -2 @@ -82715,7 +83522,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2407 this -1023959594 +1008315045 1 this.numer 9 @@ -82734,7 +83541,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2408 this -1736477416 +1740797075 1 this.numer 1 @@ -82743,7 +83550,7 @@ this.denom 1 1 arg -1736477416 +1740797075 1 arg.numer 1 @@ -82756,7 +83563,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2409 this -1736477416 +1740797075 1 this.numer 1 @@ -82802,7 +83609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2410 this -1902432947 +860481979 1 this.numer -1 @@ -82821,7 +83628,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2409 this -1736477416 +1740797075 1 this.numer 1 @@ -82830,7 +83637,7 @@ this.denom 1 1 return -1902432947 +860481979 1 return.numer -1 @@ -82843,7 +83650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2412 this -1736477416 +1740797075 1 this.numer 1 @@ -82852,7 +83659,7 @@ this.denom 1 1 arg -1902432947 +860481979 1 arg.numer -1 @@ -82898,7 +83705,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2413 this -306520046 +1083962448 1 this.numer 0 @@ -82917,7 +83724,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2412 this -1736477416 +1740797075 1 this.numer 1 @@ -82926,7 +83733,7 @@ this.denom 1 1 arg -1902432947 +860481979 1 arg.numer -1 @@ -82935,7 +83742,7 @@ arg.denom 1 1 return -306520046 +1083962448 1 return.numer 0 @@ -82948,7 +83755,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2408 this -1736477416 +1740797075 1 this.numer 1 @@ -82957,7 +83764,7 @@ this.denom 1 1 arg -1736477416 +1740797075 1 arg.numer 1 @@ -82966,7 +83773,7 @@ arg.denom 1 1 return -306520046 +1083962448 1 return.numer 0 @@ -82979,7 +83786,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2415 this -306520046 +1083962448 1 this.numer 0 @@ -82988,7 +83795,7 @@ this.denom 1 1 arg -1736477416 +1740797075 1 arg.numer 1 @@ -83001,7 +83808,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2416 this -1736477416 +1740797075 1 this.numer 1 @@ -83047,7 +83854,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2417 this -2016627616 +953742666 1 this.numer -1 @@ -83066,7 +83873,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2416 this -1736477416 +1740797075 1 this.numer 1 @@ -83075,7 +83882,7 @@ this.denom 1 1 return -2016627616 +953742666 1 return.numer -1 @@ -83088,7 +83895,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2419 this -306520046 +1083962448 1 this.numer 0 @@ -83097,7 +83904,7 @@ this.denom 1 1 arg -2016627616 +953742666 1 arg.numer -1 @@ -83143,7 +83950,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2420 this -1873425158 +1239759990 1 this.numer -1 @@ -83162,7 +83969,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2419 this -306520046 +1083962448 1 this.numer 0 @@ -83171,7 +83978,7 @@ this.denom 1 1 arg -2016627616 +953742666 1 arg.numer -1 @@ -83180,7 +83987,7 @@ arg.denom 1 1 return -1873425158 +1239759990 1 return.numer -1 @@ -83193,7 +84000,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2415 this -306520046 +1083962448 1 this.numer 0 @@ -83202,7 +84009,7 @@ this.denom 1 1 arg -1736477416 +1740797075 1 arg.numer 1 @@ -83211,7 +84018,7 @@ arg.denom 1 1 return -1873425158 +1239759990 1 return.numer -1 @@ -83224,7 +84031,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2422 this -1873425158 +1239759990 1 this.numer -1 @@ -83237,7 +84044,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2423 this -1873425158 +1239759990 1 this.numer -1 @@ -83250,7 +84057,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2423 this -1873425158 +1239759990 1 this.numer -1 @@ -83266,7 +84073,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2422 this -1873425158 +1239759990 1 this.numer -1 @@ -83275,7 +84082,7 @@ this.denom 1 1 return -251398192 +891093184 1 return.toString "-1" @@ -83285,7 +84092,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2424 this -1736477416 +1740797075 1 this.numer 1 @@ -83294,7 +84101,7 @@ this.denom 1 1 arg -1736477416 +1740797075 1 arg.numer 1 @@ -83307,7 +84114,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2425 this -1736477416 +1740797075 1 this.numer 1 @@ -83353,7 +84160,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2426 this -1149079295 +708533063 1 this.numer -1 @@ -83372,7 +84179,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2425 this -1736477416 +1740797075 1 this.numer 1 @@ -83381,7 +84188,7 @@ this.denom 1 1 return -1149079295 +708533063 1 return.numer -1 @@ -83394,7 +84201,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2428 this -1736477416 +1740797075 1 this.numer 1 @@ -83403,7 +84210,7 @@ this.denom 1 1 arg -1149079295 +708533063 1 arg.numer -1 @@ -83449,7 +84256,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2429 this -255273594 +1438030319 1 this.numer 0 @@ -83468,7 +84275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2428 this -1736477416 +1740797075 1 this.numer 1 @@ -83477,7 +84284,7 @@ this.denom 1 1 arg -1149079295 +708533063 1 arg.numer -1 @@ -83486,7 +84293,7 @@ arg.denom 1 1 return -255273594 +1438030319 1 return.numer 0 @@ -83499,7 +84306,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2424 this -1736477416 +1740797075 1 this.numer 1 @@ -83508,7 +84315,7 @@ this.denom 1 1 arg -1736477416 +1740797075 1 arg.numer 1 @@ -83517,7 +84324,7 @@ arg.denom 1 1 return -255273594 +1438030319 1 return.numer 0 @@ -83530,7 +84337,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2431 this -1736477416 +1740797075 1 this.numer 1 @@ -83539,7 +84346,7 @@ this.denom 1 1 arg -255273594 +1438030319 1 arg.numer 0 @@ -83552,7 +84359,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2432 this -255273594 +1438030319 1 this.numer 0 @@ -83598,7 +84405,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2433 this -1858451299 +902830499 1 this.numer 0 @@ -83617,7 +84424,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2432 this -255273594 +1438030319 1 this.numer 0 @@ -83626,7 +84433,7 @@ this.denom 1 1 return -1858451299 +902830499 1 return.numer 0 @@ -83639,7 +84446,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2435 this -1736477416 +1740797075 1 this.numer 1 @@ -83648,7 +84455,7 @@ this.denom 1 1 arg -1858451299 +902830499 1 arg.numer 0 @@ -83694,7 +84501,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2436 this -1988820325 +1754662105 1 this.numer 1 @@ -83713,7 +84520,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2435 this -1736477416 +1740797075 1 this.numer 1 @@ -83722,7 +84529,7 @@ this.denom 1 1 arg -1858451299 +902830499 1 arg.numer 0 @@ -83731,7 +84538,7 @@ arg.denom 1 1 return -1988820325 +1754662105 1 return.numer 1 @@ -83744,7 +84551,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2431 this -1736477416 +1740797075 1 this.numer 1 @@ -83753,7 +84560,7 @@ this.denom 1 1 arg -255273594 +1438030319 1 arg.numer 0 @@ -83762,7 +84569,7 @@ arg.denom 1 1 return -1988820325 +1754662105 1 return.numer 1 @@ -83775,7 +84582,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2438 this -1988820325 +1754662105 1 this.numer 1 @@ -83788,7 +84595,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2439 this -1988820325 +1754662105 1 this.numer 1 @@ -83801,7 +84608,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2439 this -1988820325 +1754662105 1 this.numer 1 @@ -83817,7 +84624,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2438 this -1988820325 +1754662105 1 this.numer 1 @@ -83826,7 +84633,7 @@ this.denom 1 1 return -520236720 +403147759 1 return.toString "1" @@ -83836,7 +84643,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2440 this -758309302 +2012993836 1 this.numer 0 @@ -83845,7 +84652,7 @@ this.denom 1 1 arg -758309302 +2012993836 1 arg.numer 0 @@ -83858,7 +84665,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2441 this -758309302 +2012993836 1 this.numer 0 @@ -83904,7 +84711,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2442 this -1212626103 +2040467681 1 this.numer 0 @@ -83923,7 +84730,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2441 this -758309302 +2012993836 1 this.numer 0 @@ -83932,7 +84739,7 @@ this.denom 1 1 return -1212626103 +2040467681 1 return.numer 0 @@ -83945,7 +84752,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2444 this -758309302 +2012993836 1 this.numer 0 @@ -83954,7 +84761,7 @@ this.denom 1 1 arg -1212626103 +2040467681 1 arg.numer 0 @@ -84000,7 +84807,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2445 this -987103091 +1278677872 1 this.numer 0 @@ -84019,7 +84826,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2444 this -758309302 +2012993836 1 this.numer 0 @@ -84028,7 +84835,7 @@ this.denom 1 1 arg -1212626103 +2040467681 1 arg.numer 0 @@ -84037,7 +84844,7 @@ arg.denom 1 1 return -987103091 +1278677872 1 return.numer 0 @@ -84050,7 +84857,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2440 this -758309302 +2012993836 1 this.numer 0 @@ -84059,7 +84866,7 @@ this.denom 1 1 arg -758309302 +2012993836 1 arg.numer 0 @@ -84068,7 +84875,7 @@ arg.denom 1 1 return -987103091 +1278677872 1 return.numer 0 @@ -84081,7 +84888,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2447 this -987103091 +1278677872 1 this.numer 0 @@ -84090,7 +84897,7 @@ this.denom 1 1 arg -758309302 +2012993836 1 arg.numer 0 @@ -84103,7 +84910,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2448 this -758309302 +2012993836 1 this.numer 0 @@ -84149,7 +84956,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2449 this -930477362 +341796579 1 this.numer 0 @@ -84168,7 +84975,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2448 this -758309302 +2012993836 1 this.numer 0 @@ -84177,7 +84984,7 @@ this.denom 1 1 return -930477362 +341796579 1 return.numer 0 @@ -84190,7 +84997,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2451 this -987103091 +1278677872 1 this.numer 0 @@ -84199,7 +85006,7 @@ this.denom 1 1 arg -930477362 +341796579 1 arg.numer 0 @@ -84245,7 +85052,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2452 this -557105680 +807657332 1 this.numer 0 @@ -84264,7 +85071,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2451 this -987103091 +1278677872 1 this.numer 0 @@ -84273,7 +85080,7 @@ this.denom 1 1 arg -930477362 +341796579 1 arg.numer 0 @@ -84282,7 +85089,7 @@ arg.denom 1 1 return -557105680 +807657332 1 return.numer 0 @@ -84295,7 +85102,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2447 this -987103091 +1278677872 1 this.numer 0 @@ -84304,7 +85111,7 @@ this.denom 1 1 arg -758309302 +2012993836 1 arg.numer 0 @@ -84313,7 +85120,7 @@ arg.denom 1 1 return -557105680 +807657332 1 return.numer 0 @@ -84326,7 +85133,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2454 this -557105680 +807657332 1 this.numer 0 @@ -84339,7 +85146,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2455 this -557105680 +807657332 1 this.numer 0 @@ -84352,7 +85159,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2455 this -557105680 +807657332 1 this.numer 0 @@ -84368,7 +85175,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2454 this -557105680 +807657332 1 this.numer 0 @@ -84377,7 +85184,7 @@ this.denom 1 1 return -246462840 +825936265 1 return.toString "0" @@ -84387,7 +85194,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2456 this -758309302 +2012993836 1 this.numer 0 @@ -84396,7 +85203,7 @@ this.denom 1 1 arg -758309302 +2012993836 1 arg.numer 0 @@ -84409,7 +85216,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2457 this -758309302 +2012993836 1 this.numer 0 @@ -84455,7 +85262,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2458 this -1952480464 +1164107853 1 this.numer 0 @@ -84474,7 +85281,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2457 this -758309302 +2012993836 1 this.numer 0 @@ -84483,7 +85290,7 @@ this.denom 1 1 return -1952480464 +1164107853 1 return.numer 0 @@ -84496,7 +85303,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2460 this -758309302 +2012993836 1 this.numer 0 @@ -84505,7 +85312,7 @@ this.denom 1 1 arg -1952480464 +1164107853 1 arg.numer 0 @@ -84551,7 +85358,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2461 this -1789032288 +711327356 1 this.numer 0 @@ -84570,7 +85377,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2460 this -758309302 +2012993836 1 this.numer 0 @@ -84579,7 +85386,7 @@ this.denom 1 1 arg -1952480464 +1164107853 1 arg.numer 0 @@ -84588,7 +85395,7 @@ arg.denom 1 1 return -1789032288 +711327356 1 return.numer 0 @@ -84601,7 +85408,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2456 this -758309302 +2012993836 1 this.numer 0 @@ -84610,7 +85417,7 @@ this.denom 1 1 arg -758309302 +2012993836 1 arg.numer 0 @@ -84619,7 +85426,7 @@ arg.denom 1 1 return -1789032288 +711327356 1 return.numer 0 @@ -84632,7 +85439,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2463 this -758309302 +2012993836 1 this.numer 0 @@ -84641,7 +85448,7 @@ this.denom 1 1 arg -1789032288 +711327356 1 arg.numer 0 @@ -84654,7 +85461,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2464 this -1789032288 +711327356 1 this.numer 0 @@ -84700,7 +85507,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2465 this -1347122769 +68377659 1 this.numer 0 @@ -84719,7 +85526,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2464 this -1789032288 +711327356 1 this.numer 0 @@ -84728,7 +85535,7 @@ this.denom 1 1 return -1347122769 +68377659 1 return.numer 0 @@ -84741,7 +85548,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2467 this -758309302 +2012993836 1 this.numer 0 @@ -84750,7 +85557,7 @@ this.denom 1 1 arg -1347122769 +68377659 1 arg.numer 0 @@ -84796,7 +85603,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2468 this -172288262 +1661123505 1 this.numer 0 @@ -84815,7 +85622,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2467 this -758309302 +2012993836 1 this.numer 0 @@ -84824,7 +85631,7 @@ this.denom 1 1 arg -1347122769 +68377659 1 arg.numer 0 @@ -84833,7 +85640,7 @@ arg.denom 1 1 return -172288262 +1661123505 1 return.numer 0 @@ -84846,7 +85653,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2463 this -758309302 +2012993836 1 this.numer 0 @@ -84855,7 +85662,7 @@ this.denom 1 1 arg -1789032288 +711327356 1 arg.numer 0 @@ -84864,7 +85671,7 @@ arg.denom 1 1 return -172288262 +1661123505 1 return.numer 0 @@ -84877,7 +85684,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2470 this -172288262 +1661123505 1 this.numer 0 @@ -84890,7 +85697,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2471 this -172288262 +1661123505 1 this.numer 0 @@ -84903,7 +85710,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2471 this -172288262 +1661123505 1 this.numer 0 @@ -84919,7 +85726,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2470 this -172288262 +1661123505 1 this.numer 0 @@ -84928,7 +85735,7 @@ this.denom 1 1 return -840863278 +825249556 1 return.toString "0" @@ -84938,7 +85745,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2472 this -1736477416 +1740797075 1 this.numer 1 @@ -84947,7 +85754,7 @@ this.denom 1 1 arg -990421078 +1922464006 1 arg.numer 2 @@ -84960,7 +85767,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2473 this -990421078 +1922464006 1 this.numer 2 @@ -85006,7 +85813,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2474 this -1946716086 +883151184 1 this.numer -2 @@ -85025,7 +85832,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2473 this -990421078 +1922464006 1 this.numer 2 @@ -85034,7 +85841,7 @@ this.denom 1 1 return -1946716086 +883151184 1 return.numer -2 @@ -85047,7 +85854,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2476 this -1736477416 +1740797075 1 this.numer 1 @@ -85056,7 +85863,7 @@ this.denom 1 1 arg -1946716086 +883151184 1 arg.numer -2 @@ -85102,7 +85909,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2477 this -1543895357 +709865851 1 this.numer -1 @@ -85121,7 +85928,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2476 this -1736477416 +1740797075 1 this.numer 1 @@ -85130,7 +85937,7 @@ this.denom 1 1 arg -1946716086 +883151184 1 arg.numer -2 @@ -85139,7 +85946,7 @@ arg.denom 1 1 return -1543895357 +709865851 1 return.numer -1 @@ -85152,7 +85959,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2472 this -1736477416 +1740797075 1 this.numer 1 @@ -85161,7 +85968,7 @@ this.denom 1 1 arg -990421078 +1922464006 1 arg.numer 2 @@ -85170,7 +85977,7 @@ arg.denom 1 1 return -1543895357 +709865851 1 return.numer -1 @@ -85183,7 +85990,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2479 this -1543895357 +709865851 1 this.numer -1 @@ -85192,7 +85999,7 @@ this.denom 1 1 arg -861310049 +1536031937 1 arg.numer 3 @@ -85205,7 +86012,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2480 this -861310049 +1536031937 1 this.numer 3 @@ -85251,7 +86058,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2481 this -204358398 +1550207152 1 this.numer -3 @@ -85270,7 +86077,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2480 this -861310049 +1536031937 1 this.numer 3 @@ -85279,7 +86086,7 @@ this.denom 1 1 return -204358398 +1550207152 1 return.numer -3 @@ -85292,7 +86099,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2483 this -1543895357 +709865851 1 this.numer -1 @@ -85301,7 +86108,7 @@ this.denom 1 1 arg -204358398 +1550207152 1 arg.numer -3 @@ -85347,7 +86154,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2484 this -825243633 +1864230087 1 this.numer -4 @@ -85366,7 +86173,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2483 this -1543895357 +709865851 1 this.numer -1 @@ -85375,7 +86182,7 @@ this.denom 1 1 arg -204358398 +1550207152 1 arg.numer -3 @@ -85384,7 +86191,7 @@ arg.denom 1 1 return -825243633 +1864230087 1 return.numer -4 @@ -85397,7 +86204,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2479 this -1543895357 +709865851 1 this.numer -1 @@ -85406,7 +86213,7 @@ this.denom 1 1 arg -861310049 +1536031937 1 arg.numer 3 @@ -85415,7 +86222,7 @@ arg.denom 1 1 return -825243633 +1864230087 1 return.numer -4 @@ -85428,7 +86235,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2486 this -825243633 +1864230087 1 this.numer -4 @@ -85441,7 +86248,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2487 this -825243633 +1864230087 1 this.numer -4 @@ -85454,7 +86261,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2487 this -825243633 +1864230087 1 this.numer -4 @@ -85470,7 +86277,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2486 this -825243633 +1864230087 1 this.numer -4 @@ -85479,7 +86286,7 @@ this.denom 1 1 return -1420347505 +1168019749 1 return.toString "-4" @@ -85489,7 +86296,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2488 this -990421078 +1922464006 1 this.numer 2 @@ -85498,7 +86305,7 @@ this.denom 1 1 arg -861310049 +1536031937 1 arg.numer 3 @@ -85511,7 +86318,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2489 this -861310049 +1536031937 1 this.numer 3 @@ -85557,7 +86364,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2490 this -352296483 +311239812 1 this.numer -3 @@ -85576,7 +86383,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2489 this -861310049 +1536031937 1 this.numer 3 @@ -85585,7 +86392,7 @@ this.denom 1 1 return -352296483 +311239812 1 return.numer -3 @@ -85598,7 +86405,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2492 this -990421078 +1922464006 1 this.numer 2 @@ -85607,7 +86414,7 @@ this.denom 1 1 arg -352296483 +311239812 1 arg.numer -3 @@ -85653,7 +86460,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2493 this -434575002 +2093010349 1 this.numer -1 @@ -85672,7 +86479,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2492 this -990421078 +1922464006 1 this.numer 2 @@ -85681,7 +86488,7 @@ this.denom 1 1 arg -352296483 +311239812 1 arg.numer -3 @@ -85690,7 +86497,7 @@ arg.denom 1 1 return -434575002 +2093010349 1 return.numer -1 @@ -85703,7 +86510,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2488 this -990421078 +1922464006 1 this.numer 2 @@ -85712,7 +86519,7 @@ this.denom 1 1 arg -861310049 +1536031937 1 arg.numer 3 @@ -85721,7 +86528,7 @@ arg.denom 1 1 return -434575002 +2093010349 1 return.numer -1 @@ -85734,7 +86541,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2495 this -1736477416 +1740797075 1 this.numer 1 @@ -85743,7 +86550,7 @@ this.denom 1 1 arg -434575002 +2093010349 1 arg.numer -1 @@ -85756,7 +86563,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2496 this -434575002 +2093010349 1 this.numer -1 @@ -85802,7 +86609,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2497 this -310175167 +2088445230 1 this.numer 1 @@ -85821,7 +86628,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2496 this -434575002 +2093010349 1 this.numer -1 @@ -85830,7 +86637,7 @@ this.denom 1 1 return -310175167 +2088445230 1 return.numer 1 @@ -85843,7 +86650,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2499 this -1736477416 +1740797075 1 this.numer 1 @@ -85852,7 +86659,7 @@ this.denom 1 1 arg -310175167 +2088445230 1 arg.numer 1 @@ -85898,7 +86705,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2500 this -1171220500 +1297978429 1 this.numer 2 @@ -85917,7 +86724,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2499 this -1736477416 +1740797075 1 this.numer 1 @@ -85926,7 +86733,7 @@ this.denom 1 1 arg -310175167 +2088445230 1 arg.numer 1 @@ -85935,7 +86742,7 @@ arg.denom 1 1 return -1171220500 +1297978429 1 return.numer 2 @@ -85948,7 +86755,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2495 this -1736477416 +1740797075 1 this.numer 1 @@ -85957,7 +86764,7 @@ this.denom 1 1 arg -434575002 +2093010349 1 arg.numer -1 @@ -85966,7 +86773,7 @@ arg.denom 1 1 return -1171220500 +1297978429 1 return.numer 2 @@ -85979,7 +86786,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2502 this -1171220500 +1297978429 1 this.numer 2 @@ -85992,7 +86799,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2503 this -1171220500 +1297978429 1 this.numer 2 @@ -86005,7 +86812,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2503 this -1171220500 +1297978429 1 this.numer 2 @@ -86021,7 +86828,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2502 this -1171220500 +1297978429 1 this.numer 2 @@ -86030,7 +86837,7 @@ this.denom 1 1 return -867835098 +915349526 1 return.toString "2" @@ -86040,7 +86847,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2504 this -1612635955 +1954406292 1 this.numer 1 @@ -86049,7 +86856,7 @@ this.denom 3 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -86062,7 +86869,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2505 this -1612635955 +1954406292 1 this.numer 1 @@ -86108,7 +86915,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2506 this -2143045309 +1280851663 1 this.numer -1 @@ -86127,7 +86934,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2505 this -1612635955 +1954406292 1 this.numer 1 @@ -86136,7 +86943,7 @@ this.denom 3 1 return -2143045309 +1280851663 1 return.numer -1 @@ -86149,7 +86956,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2508 this -1612635955 +1954406292 1 this.numer 1 @@ -86158,7 +86965,7 @@ this.denom 3 1 arg -2143045309 +1280851663 1 arg.numer -1 @@ -86204,7 +87011,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2509 this -566780879 +1764696127 1 this.numer 0 @@ -86223,7 +87030,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2508 this -1612635955 +1954406292 1 this.numer 1 @@ -86232,7 +87039,7 @@ this.denom 3 1 arg -2143045309 +1280851663 1 arg.numer -1 @@ -86241,7 +87048,7 @@ arg.denom 3 1 return -566780879 +1764696127 1 return.numer 0 @@ -86254,7 +87061,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2504 this -1612635955 +1954406292 1 this.numer 1 @@ -86263,7 +87070,7 @@ this.denom 3 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -86272,7 +87079,7 @@ arg.denom 3 1 return -566780879 +1764696127 1 return.numer 0 @@ -86285,7 +87092,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2511 this -566780879 +1764696127 1 this.numer 0 @@ -86294,7 +87101,7 @@ this.denom 1 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -86307,7 +87114,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2512 this -1612635955 +1954406292 1 this.numer 1 @@ -86353,7 +87160,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2513 this -1796258908 +1223867739 1 this.numer -1 @@ -86372,7 +87179,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2512 this -1612635955 +1954406292 1 this.numer 1 @@ -86381,7 +87188,7 @@ this.denom 3 1 return -1796258908 +1223867739 1 return.numer -1 @@ -86394,7 +87201,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2515 this -566780879 +1764696127 1 this.numer 0 @@ -86403,7 +87210,7 @@ this.denom 1 1 arg -1796258908 +1223867739 1 arg.numer -1 @@ -86449,7 +87256,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2516 this -398357230 +129153987 1 this.numer -1 @@ -86468,7 +87275,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2515 this -566780879 +1764696127 1 this.numer 0 @@ -86477,7 +87284,7 @@ this.denom 1 1 arg -1796258908 +1223867739 1 arg.numer -1 @@ -86486,7 +87293,7 @@ arg.denom 3 1 return -398357230 +129153987 1 return.numer -1 @@ -86499,7 +87306,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2511 this -566780879 +1764696127 1 this.numer 0 @@ -86508,7 +87315,7 @@ this.denom 1 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -86517,7 +87324,7 @@ arg.denom 3 1 return -398357230 +129153987 1 return.numer -1 @@ -86530,7 +87337,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2518 this -398357230 +129153987 1 this.numer -1 @@ -86543,7 +87350,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2519 this -398357230 +129153987 1 this.numer -1 @@ -86556,7 +87363,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2519 this -398357230 +129153987 1 this.numer -1 @@ -86572,7 +87379,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2518 this -398357230 +129153987 1 this.numer -1 @@ -86581,7 +87388,7 @@ this.denom 3 1 return -1483436911 +168907708 1 return.toString "-1/3" @@ -86591,7 +87398,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2520 this -1612635955 +1954406292 1 this.numer 1 @@ -86600,7 +87407,7 @@ this.denom 3 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -86613,7 +87420,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2521 this -1612635955 +1954406292 1 this.numer 1 @@ -86659,7 +87466,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2522 this -1986505154 +447718425 1 this.numer -1 @@ -86678,7 +87485,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2521 this -1612635955 +1954406292 1 this.numer 1 @@ -86687,7 +87494,7 @@ this.denom 3 1 return -1986505154 +447718425 1 return.numer -1 @@ -86700,7 +87507,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2524 this -1612635955 +1954406292 1 this.numer 1 @@ -86709,7 +87516,7 @@ this.denom 3 1 arg -1986505154 +447718425 1 arg.numer -1 @@ -86755,7 +87562,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2525 this -263863369 +1206569586 1 this.numer 0 @@ -86774,7 +87581,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2524 this -1612635955 +1954406292 1 this.numer 1 @@ -86783,7 +87590,7 @@ this.denom 3 1 arg -1986505154 +447718425 1 arg.numer -1 @@ -86792,7 +87599,7 @@ arg.denom 3 1 return -263863369 +1206569586 1 return.numer 0 @@ -86805,7 +87612,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2520 this -1612635955 +1954406292 1 this.numer 1 @@ -86814,7 +87621,7 @@ this.denom 3 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -86823,7 +87630,7 @@ arg.denom 3 1 return -263863369 +1206569586 1 return.numer 0 @@ -86836,7 +87643,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2527 this -1612635955 +1954406292 1 this.numer 1 @@ -86845,7 +87652,7 @@ this.denom 3 1 arg -263863369 +1206569586 1 arg.numer 0 @@ -86858,7 +87665,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2528 this -263863369 +1206569586 1 this.numer 0 @@ -86904,7 +87711,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2529 this -197911728 +1427381743 1 this.numer 0 @@ -86923,7 +87730,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2528 this -263863369 +1206569586 1 this.numer 0 @@ -86932,7 +87739,7 @@ this.denom 1 1 return -197911728 +1427381743 1 return.numer 0 @@ -86945,7 +87752,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2531 this -1612635955 +1954406292 1 this.numer 1 @@ -86954,7 +87761,7 @@ this.denom 3 1 arg -197911728 +1427381743 1 arg.numer 0 @@ -87000,7 +87807,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2532 this -1997726940 +1427646530 1 this.numer 1 @@ -87019,7 +87826,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2531 this -1612635955 +1954406292 1 this.numer 1 @@ -87028,7 +87835,7 @@ this.denom 3 1 arg -197911728 +1427381743 1 arg.numer 0 @@ -87037,7 +87844,7 @@ arg.denom 1 1 return -1997726940 +1427646530 1 return.numer 1 @@ -87050,7 +87857,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2527 this -1612635955 +1954406292 1 this.numer 1 @@ -87059,7 +87866,7 @@ this.denom 3 1 arg -263863369 +1206569586 1 arg.numer 0 @@ -87068,7 +87875,7 @@ arg.denom 1 1 return -1997726940 +1427646530 1 return.numer 1 @@ -87081,7 +87888,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2534 this -1997726940 +1427646530 1 this.numer 1 @@ -87094,7 +87901,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2535 this -1997726940 +1427646530 1 this.numer 1 @@ -87107,7 +87914,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2535 this -1997726940 +1427646530 1 this.numer 1 @@ -87123,7 +87930,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2534 this -1997726940 +1427646530 1 this.numer 1 @@ -87132,7 +87939,7 @@ this.denom 3 1 return -2037343382 +846254484 1 return.toString "1/3" @@ -87142,7 +87949,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2536 this -331555689 +691690486 1 this.numer 1 @@ -87151,7 +87958,7 @@ this.denom 0 1 arg -331555689 +691690486 1 arg.numer 1 @@ -87164,7 +87971,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2537 this -331555689 +691690486 1 this.numer 1 @@ -87187,7 +87994,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2538 this -3469859 +592983282 1 this.numer -1 @@ -87206,7 +88013,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2537 this -331555689 +691690486 1 this.numer 1 @@ -87215,7 +88022,7 @@ this.denom 0 1 return -3469859 +592983282 1 return.numer -1 @@ -87228,7 +88035,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2539 this -331555689 +691690486 1 this.numer 1 @@ -87237,7 +88044,7 @@ this.denom 0 1 arg -3469859 +592983282 1 arg.numer -1 @@ -87260,7 +88067,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2540 this -335861744 +1448525331 1 this.numer 0 @@ -87279,7 +88086,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2539 this -331555689 +691690486 1 this.numer 1 @@ -87288,7 +88095,7 @@ this.denom 0 1 arg -3469859 +592983282 1 arg.numer -1 @@ -87297,7 +88104,7 @@ arg.denom 0 1 return -335861744 +1448525331 1 return.numer 0 @@ -87310,7 +88117,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2536 this -331555689 +691690486 1 this.numer 1 @@ -87319,7 +88126,7 @@ this.denom 0 1 arg -331555689 +691690486 1 arg.numer 1 @@ -87328,7 +88135,7 @@ arg.denom 0 1 return -335861744 +1448525331 1 return.numer 0 @@ -87341,7 +88148,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2541 this -335861744 +1448525331 1 this.numer 0 @@ -87350,7 +88157,7 @@ this.denom 0 1 arg -331555689 +691690486 1 arg.numer 1 @@ -87363,7 +88170,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2542 this -331555689 +691690486 1 this.numer 1 @@ -87386,7 +88193,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2543 this -1241307092 +1108924067 1 this.numer -1 @@ -87405,7 +88212,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2542 this -331555689 +691690486 1 this.numer 1 @@ -87414,7 +88221,7 @@ this.denom 0 1 return -1241307092 +1108924067 1 return.numer -1 @@ -87427,7 +88234,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2544 this -335861744 +1448525331 1 this.numer 0 @@ -87436,7 +88243,7 @@ this.denom 0 1 arg -1241307092 +1108924067 1 arg.numer -1 @@ -87459,7 +88266,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2545 this -1992148286 +1984975621 1 this.numer 0 @@ -87478,7 +88285,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2544 this -335861744 +1448525331 1 this.numer 0 @@ -87487,7 +88294,7 @@ this.denom 0 1 arg -1241307092 +1108924067 1 arg.numer -1 @@ -87496,7 +88303,7 @@ arg.denom 0 1 return -1992148286 +1984975621 1 return.numer 0 @@ -87509,7 +88316,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2541 this -335861744 +1448525331 1 this.numer 0 @@ -87518,7 +88325,7 @@ this.denom 0 1 arg -331555689 +691690486 1 arg.numer 1 @@ -87527,7 +88334,7 @@ arg.denom 0 1 return -1992148286 +1984975621 1 return.numer 0 @@ -87540,7 +88347,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2546 this -1992148286 +1984975621 1 this.numer 0 @@ -87553,7 +88360,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2547 this -1992148286 +1984975621 1 this.numer 0 @@ -87566,7 +88373,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2547 this -1992148286 +1984975621 1 this.numer 0 @@ -87582,7 +88389,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2546 this -1992148286 +1984975621 1 this.numer 0 @@ -87591,7 +88398,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -87601,7 +88408,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2548 this -331555689 +691690486 1 this.numer 1 @@ -87610,7 +88417,7 @@ this.denom 0 1 arg -331555689 +691690486 1 arg.numer 1 @@ -87623,7 +88430,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2549 this -331555689 +691690486 1 this.numer 1 @@ -87646,7 +88453,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2550 this -618702425 +348984985 1 this.numer -1 @@ -87665,7 +88472,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2549 this -331555689 +691690486 1 this.numer 1 @@ -87674,7 +88481,7 @@ this.denom 0 1 return -618702425 +348984985 1 return.numer -1 @@ -87687,7 +88494,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2551 this -331555689 +691690486 1 this.numer 1 @@ -87696,7 +88503,7 @@ this.denom 0 1 arg -618702425 +348984985 1 arg.numer -1 @@ -87719,7 +88526,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2552 this -415838201 +2005435445 1 this.numer 0 @@ -87738,7 +88545,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2551 this -331555689 +691690486 1 this.numer 1 @@ -87747,7 +88554,7 @@ this.denom 0 1 arg -618702425 +348984985 1 arg.numer -1 @@ -87756,7 +88563,7 @@ arg.denom 0 1 return -415838201 +2005435445 1 return.numer 0 @@ -87769,7 +88576,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2548 this -331555689 +691690486 1 this.numer 1 @@ -87778,7 +88585,7 @@ this.denom 0 1 arg -331555689 +691690486 1 arg.numer 1 @@ -87787,7 +88594,7 @@ arg.denom 0 1 return -415838201 +2005435445 1 return.numer 0 @@ -87800,7 +88607,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2553 this -331555689 +691690486 1 this.numer 1 @@ -87809,7 +88616,7 @@ this.denom 0 1 arg -415838201 +2005435445 1 arg.numer 0 @@ -87822,7 +88629,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2554 this -415838201 +2005435445 1 this.numer 0 @@ -87845,7 +88652,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2555 this -1080856869 +1939990953 1 this.numer 0 @@ -87864,7 +88671,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2554 this -415838201 +2005435445 1 this.numer 0 @@ -87873,7 +88680,7 @@ this.denom 0 1 return -1080856869 +1939990953 1 return.numer 0 @@ -87886,7 +88693,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2556 this -331555689 +691690486 1 this.numer 1 @@ -87895,7 +88702,7 @@ this.denom 0 1 arg -1080856869 +1939990953 1 arg.numer 0 @@ -87918,7 +88725,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2557 this -397227310 +119358627 1 this.numer 0 @@ -87937,7 +88744,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2556 this -331555689 +691690486 1 this.numer 1 @@ -87946,7 +88753,7 @@ this.denom 0 1 arg -1080856869 +1939990953 1 arg.numer 0 @@ -87955,7 +88762,7 @@ arg.denom 0 1 return -397227310 +119358627 1 return.numer 0 @@ -87968,7 +88775,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2553 this -331555689 +691690486 1 this.numer 1 @@ -87977,7 +88784,7 @@ this.denom 0 1 arg -415838201 +2005435445 1 arg.numer 0 @@ -87986,7 +88793,7 @@ arg.denom 0 1 return -397227310 +119358627 1 return.numer 0 @@ -87999,7 +88806,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2558 this -397227310 +119358627 1 this.numer 0 @@ -88012,7 +88819,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2559 this -397227310 +119358627 1 this.numer 0 @@ -88025,7 +88832,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2559 this -397227310 +119358627 1 this.numer 0 @@ -88041,7 +88848,7 @@ PolyCalc.RatNum.unparse():::EXIT133 this_invocation_nonce 2558 this -397227310 +119358627 1 this.numer 0 @@ -88050,7 +88857,7 @@ this.denom 0 1 return -1986172218 +1738236591 1 return.toString "NaN" @@ -88060,7 +88867,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2560 this -1998212763 +798981583 1 this.numer 1 @@ -88069,7 +88876,7 @@ this.denom 2 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -88082,7 +88889,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2561 this -1612635955 +1954406292 1 this.numer 1 @@ -88128,7 +88935,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2562 this -1820224294 +2073621255 1 this.numer -1 @@ -88147,7 +88954,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2561 this -1612635955 +1954406292 1 this.numer 1 @@ -88156,7 +88963,7 @@ this.denom 3 1 return -1820224294 +2073621255 1 return.numer -1 @@ -88169,7 +88976,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2564 this -1998212763 +798981583 1 this.numer 1 @@ -88178,7 +88985,7 @@ this.denom 2 1 arg -1820224294 +2073621255 1 arg.numer -1 @@ -88224,7 +89031,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2565 this -1605157743 +1208121709 1 this.numer 1 @@ -88243,7 +89050,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2564 this -1998212763 +798981583 1 this.numer 1 @@ -88252,7 +89059,7 @@ this.denom 2 1 arg -1820224294 +2073621255 1 arg.numer -1 @@ -88261,7 +89068,7 @@ arg.denom 3 1 return -1605157743 +1208121709 1 return.numer 1 @@ -88274,7 +89081,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2560 this -1998212763 +798981583 1 this.numer 1 @@ -88283,7 +89090,7 @@ this.denom 2 1 arg -1612635955 +1954406292 1 arg.numer 1 @@ -88292,7 +89099,7 @@ arg.denom 3 1 return -1605157743 +1208121709 1 return.numer 1 @@ -88305,7 +89112,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2567 this -1605157743 +1208121709 1 this.numer 1 @@ -88314,7 +89121,7 @@ this.denom 6 1 arg -181386898 +904058452 1 arg.numer 1 @@ -88327,7 +89134,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2568 this -181386898 +904058452 1 this.numer 1 @@ -88373,7 +89180,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2569 this -1196612987 +873610597 1 this.numer -1 @@ -88392,7 +89199,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2568 this -181386898 +904058452 1 this.numer 1 @@ -88401,7 +89208,7 @@ this.denom 4 1 return -1196612987 +873610597 1 return.numer -1 @@ -88414,7 +89221,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2571 this -1605157743 +1208121709 1 this.numer 1 @@ -88423,7 +89230,7 @@ this.denom 6 1 arg -1196612987 +873610597 1 arg.numer -1 @@ -88469,7 +89276,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2572 this -290118354 +1497845528 1 this.numer -1 @@ -88488,7 +89295,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2571 this -1605157743 +1208121709 1 this.numer 1 @@ -88497,7 +89304,7 @@ this.denom 6 1 arg -1196612987 +873610597 1 arg.numer -1 @@ -88506,7 +89313,7 @@ arg.denom 4 1 return -290118354 +1497845528 1 return.numer -1 @@ -88519,7 +89326,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2567 this -1605157743 +1208121709 1 this.numer 1 @@ -88528,7 +89335,7 @@ this.denom 6 1 arg -181386898 +904058452 1 arg.numer 1 @@ -88537,7 +89344,7 @@ arg.denom 4 1 return -290118354 +1497845528 1 return.numer -1 @@ -88550,7 +89357,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2574 this -290118354 +1497845528 1 this.numer -1 @@ -88563,7 +89370,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2575 this -290118354 +1497845528 1 this.numer -1 @@ -88576,7 +89383,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2575 this -290118354 +1497845528 1 this.numer -1 @@ -88592,7 +89399,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2574 this -290118354 +1497845528 1 this.numer -1 @@ -88601,7 +89408,7 @@ this.denom 12 1 return -1231296988 +1710989308 1 return.toString "-1/12" @@ -88611,7 +89418,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2576 this -1612635955 +1954406292 1 this.numer 1 @@ -88620,7 +89427,7 @@ this.denom 3 1 arg -181386898 +904058452 1 arg.numer 1 @@ -88633,7 +89440,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2577 this -181386898 +904058452 1 this.numer 1 @@ -88679,7 +89486,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2578 this -1256054824 +1047087935 1 this.numer -1 @@ -88698,7 +89505,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2577 this -181386898 +904058452 1 this.numer 1 @@ -88707,7 +89514,7 @@ this.denom 4 1 return -1256054824 +1047087935 1 return.numer -1 @@ -88720,7 +89527,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2580 this -1612635955 +1954406292 1 this.numer 1 @@ -88729,7 +89536,7 @@ this.denom 3 1 arg -1256054824 +1047087935 1 arg.numer -1 @@ -88775,7 +89582,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2581 this -749176958 +464887938 1 this.numer 1 @@ -88794,7 +89601,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2580 this -1612635955 +1954406292 1 this.numer 1 @@ -88803,7 +89610,7 @@ this.denom 3 1 arg -1256054824 +1047087935 1 arg.numer -1 @@ -88812,7 +89619,7 @@ arg.denom 4 1 return -749176958 +464887938 1 return.numer 1 @@ -88825,7 +89632,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2576 this -1612635955 +1954406292 1 this.numer 1 @@ -88834,7 +89641,7 @@ this.denom 3 1 arg -181386898 +904058452 1 arg.numer 1 @@ -88843,7 +89650,7 @@ arg.denom 4 1 return -749176958 +464887938 1 return.numer 1 @@ -88856,7 +89663,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::ENTER this_invocation_nonce 2583 this -1998212763 +798981583 1 this.numer 1 @@ -88865,7 +89672,7 @@ this.denom 2 1 arg -749176958 +464887938 1 arg.numer 1 @@ -88878,7 +89685,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2584 this -749176958 +464887938 1 this.numer 1 @@ -88924,7 +89731,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2585 this -720510745 +2020152163 1 this.numer -1 @@ -88943,7 +89750,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2584 this -749176958 +464887938 1 this.numer 1 @@ -88952,7 +89759,7 @@ this.denom 12 1 return -720510745 +2020152163 1 return.numer -1 @@ -88965,7 +89772,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::ENTER this_invocation_nonce 2587 this -1998212763 +798981583 1 this.numer 1 @@ -88974,7 +89781,7 @@ this.denom 2 1 arg -720510745 +2020152163 1 arg.numer -1 @@ -89020,7 +89827,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2588 this -2111289429 +1104443373 1 this.numer 5 @@ -89039,7 +89846,7 @@ PolyCalc.RatNum.add(PolyCalc.RatNum):::EXIT156 this_invocation_nonce 2587 this -1998212763 +798981583 1 this.numer 1 @@ -89048,7 +89855,7 @@ this.denom 2 1 arg -720510745 +2020152163 1 arg.numer -1 @@ -89057,7 +89864,7 @@ arg.denom 12 1 return -2111289429 +1104443373 1 return.numer 5 @@ -89070,7 +89877,7 @@ PolyCalc.RatNum.sub(PolyCalc.RatNum):::EXIT166 this_invocation_nonce 2583 this -1998212763 +798981583 1 this.numer 1 @@ -89079,7 +89886,7 @@ this.denom 2 1 arg -749176958 +464887938 1 arg.numer 1 @@ -89088,7 +89895,7 @@ arg.denom 12 1 return -2111289429 +1104443373 1 return.numer 5 @@ -89101,7 +89908,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2590 this -2111289429 +1104443373 1 this.numer 5 @@ -89114,7 +89921,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2591 this -2111289429 +1104443373 1 this.numer 5 @@ -89127,7 +89934,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2591 this -2111289429 +1104443373 1 this.numer 5 @@ -89143,7 +89950,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2590 this -2111289429 +1104443373 1 this.numer 5 @@ -89152,7 +89959,7 @@ this.denom 12 1 return -1569133822 +898694235 1 return.toString "5/12" @@ -89169,7 +89976,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2592 this -1332961194 +60292059 1 this.numer 0 @@ -89192,7 +89999,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2593 this -529382054 +869601985 1 this.numer 1 @@ -89215,7 +90022,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2594 this -299432057 +1365008457 1 this.numer -1 @@ -89238,7 +90045,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2595 this -1000397078 +1671179293 1 this.numer 2 @@ -89261,7 +90068,7 @@ PolyCalc.RatNum.RatNum(int):::EXIT45 this_invocation_nonce 2596 this -1024217583 +1609124502 1 this.numer 3 @@ -89310,7 +90117,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2597 this -1943486776 +1144068272 1 this.numer 1 @@ -89362,7 +90169,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2599 this -955973362 +1985836631 1 this.numer 1 @@ -89414,7 +90221,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2601 this -1719131927 +1948471365 1 this.numer 1 @@ -89466,7 +90273,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2603 this -1205310351 +1636506029 1 this.numer 2 @@ -89518,7 +90325,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2605 this -437827106 +758348212 1 this.numer 3 @@ -89570,7 +90377,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2607 this -1281195920 +817978763 1 this.numer 5 @@ -89622,7 +90429,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2609 this -241298971 +1578009262 1 this.numer 6 @@ -89674,7 +90481,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2611 this -1062680061 +1735507635 1 this.numer 8 @@ -89726,7 +90533,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2613 this -1989776775 +1362728240 1 this.numer -1 @@ -89778,7 +90585,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2615 this -1562906341 +1798219673 1 this.numer 3 @@ -89807,7 +90614,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2617 this -1894386730 +1092572064 1 this.numer 1 @@ -89836,7 +90643,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2618 this -365220688 +728885526 1 this.numer -1 @@ -89865,7 +90672,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2619 this -755840090 +922511709 1 this.numer 100 @@ -89894,7 +90701,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2620 this -1038620625 +678433396 1 this.numer 2 @@ -89923,7 +90730,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2621 this -1349761559 +331994761 1 this.numer -2 @@ -89952,7 +90759,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT55 this_invocation_nonce 2622 this -1572758852 +928294079 1 this.numer 9 @@ -89971,7 +90778,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2623 this -1332961194 +60292059 1 this.numer 0 @@ -89980,7 +90787,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90026,7 +90833,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2624 this -2129298288 +1647809929 1 this.numer 0 @@ -90045,7 +90852,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2623 this -1332961194 +60292059 1 this.numer 0 @@ -90054,7 +90861,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90063,7 +90870,7 @@ arg.denom 1 1 return -2129298288 +1647809929 1 return.numer 0 @@ -90076,7 +90883,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2626 this -2129298288 +1647809929 1 this.numer 0 @@ -90089,7 +90896,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2627 this -2129298288 +1647809929 1 this.numer 0 @@ -90102,7 +90909,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2627 this -2129298288 +1647809929 1 this.numer 0 @@ -90118,7 +90925,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2626 this -2129298288 +1647809929 1 this.numer 0 @@ -90127,7 +90934,7 @@ this.denom 1 1 return -1448832808 +1258084361 1 return.toString "0" @@ -90137,7 +90944,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2628 this -1332961194 +60292059 1 this.numer 0 @@ -90146,7 +90953,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90192,7 +90999,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2629 this -215930723 +391914049 1 this.numer 0 @@ -90211,7 +91018,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2628 this -1332961194 +60292059 1 this.numer 0 @@ -90220,7 +91027,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90229,7 +91036,7 @@ arg.denom 1 1 return -215930723 +391914049 1 return.numer 0 @@ -90242,7 +91049,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2631 this -215930723 +391914049 1 this.numer 0 @@ -90255,7 +91062,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2632 this -215930723 +391914049 1 this.numer 0 @@ -90268,7 +91075,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2632 this -215930723 +391914049 1 this.numer 0 @@ -90284,7 +91091,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2631 this -215930723 +391914049 1 this.numer 0 @@ -90293,7 +91100,7 @@ this.denom 1 1 return -2047781678 +96406857 1 return.toString "0" @@ -90303,7 +91110,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2633 this -1332961194 +60292059 1 this.numer 0 @@ -90312,7 +91119,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -90358,7 +91165,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2634 this -1493735324 +1534745514 1 this.numer 0 @@ -90377,7 +91184,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2633 this -1332961194 +60292059 1 this.numer 0 @@ -90386,7 +91193,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -90395,7 +91202,7 @@ arg.denom 1 1 return -1493735324 +1534745514 1 return.numer 0 @@ -90408,7 +91215,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2636 this -1493735324 +1534745514 1 this.numer 0 @@ -90421,7 +91228,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2637 this -1493735324 +1534745514 1 this.numer 0 @@ -90434,7 +91241,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2637 this -1493735324 +1534745514 1 this.numer 0 @@ -90450,7 +91257,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2636 this -1493735324 +1534745514 1 this.numer 0 @@ -90459,7 +91266,7 @@ this.denom 1 1 return -1125757038 +2003496028 1 return.toString "0" @@ -90469,7 +91276,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2638 this -529382054 +869601985 1 this.numer 1 @@ -90478,7 +91285,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90524,7 +91331,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2639 this -1267607596 +30578394 1 this.numer 0 @@ -90543,7 +91350,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2638 this -529382054 +869601985 1 this.numer 1 @@ -90552,7 +91359,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90561,7 +91368,7 @@ arg.denom 1 1 return -1267607596 +30578394 1 return.numer 0 @@ -90574,7 +91381,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2641 this -1267607596 +30578394 1 this.numer 0 @@ -90587,7 +91394,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2642 this -1267607596 +30578394 1 this.numer 0 @@ -90600,7 +91407,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2642 this -1267607596 +30578394 1 this.numer 0 @@ -90616,7 +91423,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2641 this -1267607596 +30578394 1 this.numer 0 @@ -90625,7 +91432,7 @@ this.denom 1 1 return -1643087732 +2088371948 1 return.toString "0" @@ -90635,7 +91442,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2643 this -1332961194 +60292059 1 this.numer 0 @@ -90644,7 +91451,7 @@ this.denom 1 1 arg -299432057 +1365008457 1 arg.numer -1 @@ -90690,7 +91497,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2644 this -883294951 +1976870338 1 this.numer 0 @@ -90709,7 +91516,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2643 this -1332961194 +60292059 1 this.numer 0 @@ -90718,7 +91525,7 @@ this.denom 1 1 arg -299432057 +1365008457 1 arg.numer -1 @@ -90727,7 +91534,7 @@ arg.denom 1 1 return -883294951 +1976870338 1 return.numer 0 @@ -90740,7 +91547,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2646 this -883294951 +1976870338 1 this.numer 0 @@ -90753,7 +91560,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2647 this -883294951 +1976870338 1 this.numer 0 @@ -90766,7 +91573,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2647 this -883294951 +1976870338 1 this.numer 0 @@ -90782,7 +91589,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2646 this -883294951 +1976870338 1 this.numer 0 @@ -90791,7 +91598,7 @@ this.denom 1 1 return -2131273393 +1434234664 1 return.toString "0" @@ -90801,7 +91608,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2648 this -299432057 +1365008457 1 this.numer -1 @@ -90810,7 +91617,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90856,7 +91663,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2649 this -284684191 +1083021083 1 this.numer 0 @@ -90875,7 +91682,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2648 this -299432057 +1365008457 1 this.numer -1 @@ -90884,7 +91691,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -90893,7 +91700,7 @@ arg.denom 1 1 return -284684191 +1083021083 1 return.numer 0 @@ -90906,7 +91713,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2651 this -284684191 +1083021083 1 this.numer 0 @@ -90919,7 +91726,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2652 this -284684191 +1083021083 1 this.numer 0 @@ -90932,7 +91739,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2652 this -284684191 +1083021083 1 this.numer 0 @@ -90948,7 +91755,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2651 this -284684191 +1083021083 1 this.numer 0 @@ -90957,7 +91764,7 @@ this.denom 1 1 return -93632621 +1819063424 1 return.toString "0" @@ -90967,7 +91774,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2653 this -1332961194 +60292059 1 this.numer 0 @@ -90976,7 +91783,7 @@ this.denom 1 1 arg -1000397078 +1671179293 1 arg.numer 2 @@ -91022,7 +91829,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2654 this -1725431543 +1011279482 1 this.numer 0 @@ -91041,7 +91848,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2653 this -1332961194 +60292059 1 this.numer 0 @@ -91050,7 +91857,7 @@ this.denom 1 1 arg -1000397078 +1671179293 1 arg.numer 2 @@ -91059,7 +91866,7 @@ arg.denom 1 1 return -1725431543 +1011279482 1 return.numer 0 @@ -91072,7 +91879,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2656 this -1725431543 +1011279482 1 this.numer 0 @@ -91085,7 +91892,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2657 this -1725431543 +1011279482 1 this.numer 0 @@ -91098,7 +91905,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2657 this -1725431543 +1011279482 1 this.numer 0 @@ -91114,7 +91921,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2656 this -1725431543 +1011279482 1 this.numer 0 @@ -91123,7 +91930,7 @@ this.denom 1 1 return -1856257760 +208866101 1 return.toString "0" @@ -91133,7 +91940,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2658 this -1000397078 +1671179293 1 this.numer 2 @@ -91142,7 +91949,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -91188,7 +91995,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2659 this -1629232351 +543846639 1 this.numer 0 @@ -91207,7 +92014,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2658 this -1000397078 +1671179293 1 this.numer 2 @@ -91216,7 +92023,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -91225,7 +92032,7 @@ arg.denom 1 1 return -1629232351 +543846639 1 return.numer 0 @@ -91238,7 +92045,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2661 this -1629232351 +543846639 1 this.numer 0 @@ -91251,7 +92058,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2662 this -1629232351 +543846639 1 this.numer 0 @@ -91264,7 +92071,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2662 this -1629232351 +543846639 1 this.numer 0 @@ -91280,7 +92087,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2661 this -1629232351 +543846639 1 this.numer 0 @@ -91289,7 +92096,7 @@ this.denom 1 1 return -2091624007 +690686166 1 return.toString "0" @@ -91299,7 +92106,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2663 this -1332961194 +60292059 1 this.numer 0 @@ -91308,7 +92115,7 @@ this.denom 1 1 arg -1943486776 +1144068272 1 arg.numer 1 @@ -91354,7 +92161,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2664 this -1764867906 +576020159 1 this.numer 0 @@ -91373,7 +92180,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2663 this -1332961194 +60292059 1 this.numer 0 @@ -91382,7 +92189,7 @@ this.denom 1 1 arg -1943486776 +1144068272 1 arg.numer 1 @@ -91391,7 +92198,7 @@ arg.denom 2 1 return -1764867906 +576020159 1 return.numer 0 @@ -91404,7 +92211,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2666 this -1764867906 +576020159 1 this.numer 0 @@ -91417,7 +92224,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2667 this -1764867906 +576020159 1 this.numer 0 @@ -91430,7 +92237,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2667 this -1764867906 +576020159 1 this.numer 0 @@ -91446,7 +92253,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2666 this -1764867906 +576020159 1 this.numer 0 @@ -91455,7 +92262,7 @@ this.denom 1 1 return -1090763778 +921420643 1 return.toString "0" @@ -91465,7 +92272,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2668 this -1943486776 +1144068272 1 this.numer 1 @@ -91474,7 +92281,7 @@ this.denom 2 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -91520,7 +92327,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2669 this -1546406054 +1165303897 1 this.numer 0 @@ -91539,7 +92346,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2668 this -1943486776 +1144068272 1 this.numer 1 @@ -91548,7 +92355,7 @@ this.denom 2 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -91557,7 +92364,7 @@ arg.denom 1 1 return -1546406054 +1165303897 1 return.numer 0 @@ -91570,7 +92377,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2671 this -1546406054 +1165303897 1 this.numer 0 @@ -91583,7 +92390,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2672 this -1546406054 +1165303897 1 this.numer 0 @@ -91596,7 +92403,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2672 this -1546406054 +1165303897 1 this.numer 0 @@ -91612,7 +92419,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2671 this -1546406054 +1165303897 1 this.numer 0 @@ -91621,7 +92428,7 @@ this.denom 1 1 return -1599453584 +887750041 1 return.toString "0" @@ -91631,7 +92438,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2673 this -1332961194 +60292059 1 this.numer 0 @@ -91640,7 +92447,7 @@ this.denom 1 1 arg -1562906341 +1798219673 1 arg.numer 3 @@ -91686,7 +92493,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2674 this -1963576789 +1010953501 1 this.numer 0 @@ -91705,7 +92512,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2673 this -1332961194 +60292059 1 this.numer 0 @@ -91714,7 +92521,7 @@ this.denom 1 1 arg -1562906341 +1798219673 1 arg.numer 3 @@ -91723,7 +92530,7 @@ arg.denom 2 1 return -1963576789 +1010953501 1 return.numer 0 @@ -91736,7 +92543,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2676 this -1963576789 +1010953501 1 this.numer 0 @@ -91749,7 +92556,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2677 this -1963576789 +1010953501 1 this.numer 0 @@ -91762,7 +92569,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2677 this -1963576789 +1010953501 1 this.numer 0 @@ -91778,7 +92585,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2676 this -1963576789 +1010953501 1 this.numer 0 @@ -91787,7 +92594,7 @@ this.denom 1 1 return -1453889274 +1423561005 1 return.toString "0" @@ -91797,7 +92604,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2678 this -1562906341 +1798219673 1 this.numer 3 @@ -91806,7 +92613,7 @@ this.denom 2 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -91852,7 +92659,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2679 this -1448092552 +943870983 1 this.numer 0 @@ -91871,7 +92678,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2678 this -1562906341 +1798219673 1 this.numer 3 @@ -91880,7 +92687,7 @@ this.denom 2 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -91889,7 +92696,7 @@ arg.denom 1 1 return -1448092552 +943870983 1 return.numer 0 @@ -91902,7 +92709,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2681 this -1448092552 +943870983 1 this.numer 0 @@ -91915,7 +92722,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2682 this -1448092552 +943870983 1 this.numer 0 @@ -91928,7 +92735,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2682 this -1448092552 +943870983 1 this.numer 0 @@ -91944,7 +92751,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2681 this -1448092552 +943870983 1 this.numer 0 @@ -91953,7 +92760,7 @@ this.denom 1 1 return -659350013 +1136419747 1 return.toString "0" @@ -91963,7 +92770,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2683 this -1332961194 +60292059 1 this.numer 0 @@ -91972,7 +92779,7 @@ this.denom 1 1 arg -1719131927 +1948471365 1 arg.numer 1 @@ -92018,7 +92825,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2684 this -680049971 +1881561036 1 this.numer 0 @@ -92037,7 +92844,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2683 this -1332961194 +60292059 1 this.numer 0 @@ -92046,7 +92853,7 @@ this.denom 1 1 arg -1719131927 +1948471365 1 arg.numer 1 @@ -92055,7 +92862,7 @@ arg.denom 4 1 return -680049971 +1881561036 1 return.numer 0 @@ -92068,7 +92875,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2686 this -680049971 +1881561036 1 this.numer 0 @@ -92081,7 +92888,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2687 this -680049971 +1881561036 1 this.numer 0 @@ -92094,7 +92901,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2687 this -680049971 +1881561036 1 this.numer 0 @@ -92110,7 +92917,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2686 this -680049971 +1881561036 1 this.numer 0 @@ -92119,7 +92926,7 @@ this.denom 1 1 return -691893263 +1785507932 1 return.toString "0" @@ -92129,7 +92936,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2688 this -1719131927 +1948471365 1 this.numer 1 @@ -92138,7 +92945,7 @@ this.denom 4 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -92184,7 +92991,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2689 this -26122736 +1084502906 1 this.numer 0 @@ -92203,7 +93010,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2688 this -1719131927 +1948471365 1 this.numer 1 @@ -92212,7 +93019,7 @@ this.denom 4 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -92221,7 +93028,7 @@ arg.denom 1 1 return -26122736 +1084502906 1 return.numer 0 @@ -92234,7 +93041,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2691 this -26122736 +1084502906 1 this.numer 0 @@ -92247,7 +93054,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2692 this -26122736 +1084502906 1 this.numer 0 @@ -92260,7 +93067,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2692 this -26122736 +1084502906 1 this.numer 0 @@ -92276,7 +93083,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2691 this -26122736 +1084502906 1 this.numer 0 @@ -92285,7 +93092,7 @@ this.denom 1 1 return -958159964 +1613095350 1 return.toString "0" @@ -92295,7 +93102,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2693 this -1332961194 +60292059 1 this.numer 0 @@ -92304,7 +93111,7 @@ this.denom 1 1 arg -955973362 +1985836631 1 arg.numer 1 @@ -92350,7 +93157,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2694 this -1962129742 +587153993 1 this.numer 0 @@ -92369,7 +93176,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2693 this -1332961194 +60292059 1 this.numer 0 @@ -92378,7 +93185,7 @@ this.denom 1 1 arg -955973362 +1985836631 1 arg.numer 1 @@ -92387,7 +93194,7 @@ arg.denom 3 1 return -1962129742 +587153993 1 return.numer 0 @@ -92400,7 +93207,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2696 this -1962129742 +587153993 1 this.numer 0 @@ -92413,7 +93220,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2697 this -1962129742 +587153993 1 this.numer 0 @@ -92426,7 +93233,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2697 this -1962129742 +587153993 1 this.numer 0 @@ -92442,7 +93249,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2696 this -1962129742 +587153993 1 this.numer 0 @@ -92451,7 +93258,7 @@ this.denom 1 1 return -755690462 +757004314 1 return.toString "0" @@ -92461,7 +93268,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2698 this -955973362 +1985836631 1 this.numer 1 @@ -92470,7 +93277,7 @@ this.denom 3 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -92516,7 +93323,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2699 this -671306476 +1279271200 1 this.numer 0 @@ -92535,7 +93342,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2698 this -955973362 +1985836631 1 this.numer 1 @@ -92544,7 +93351,7 @@ this.denom 3 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -92553,7 +93360,7 @@ arg.denom 1 1 return -671306476 +1279271200 1 return.numer 0 @@ -92566,7 +93373,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2701 this -671306476 +1279271200 1 this.numer 0 @@ -92579,7 +93386,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2702 this -671306476 +1279271200 1 this.numer 0 @@ -92592,7 +93399,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2702 this -671306476 +1279271200 1 this.numer 0 @@ -92608,7 +93415,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2701 this -671306476 +1279271200 1 this.numer 0 @@ -92617,7 +93424,7 @@ this.denom 1 1 return -1916344441 +52908367 1 return.toString "0" @@ -92627,7 +93434,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2703 this -1332961194 +60292059 1 this.numer 0 @@ -92636,7 +93443,7 @@ this.denom 1 1 arg -1281195920 +817978763 1 arg.numer 5 @@ -92682,7 +93489,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2704 this -41282181 +1527953000 1 this.numer 0 @@ -92701,7 +93508,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2703 this -1332961194 +60292059 1 this.numer 0 @@ -92710,7 +93517,7 @@ this.denom 1 1 arg -1281195920 +817978763 1 arg.numer 5 @@ -92719,7 +93526,7 @@ arg.denom 6 1 return -41282181 +1527953000 1 return.numer 0 @@ -92732,7 +93539,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2706 this -41282181 +1527953000 1 this.numer 0 @@ -92745,7 +93552,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2707 this -41282181 +1527953000 1 this.numer 0 @@ -92758,7 +93565,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2707 this -41282181 +1527953000 1 this.numer 0 @@ -92774,7 +93581,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2706 this -41282181 +1527953000 1 this.numer 0 @@ -92783,7 +93590,7 @@ this.denom 1 1 return -192398086 +18242360 1 return.toString "0" @@ -92793,7 +93600,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2708 this -1281195920 +817978763 1 this.numer 5 @@ -92802,7 +93609,7 @@ this.denom 6 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -92848,7 +93655,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2709 this -1671742667 +1276261147 1 this.numer 0 @@ -92867,7 +93674,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2708 this -1281195920 +817978763 1 this.numer 5 @@ -92876,7 +93683,7 @@ this.denom 6 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -92885,7 +93692,7 @@ arg.denom 1 1 return -1671742667 +1276261147 1 return.numer 0 @@ -92898,7 +93705,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2711 this -1671742667 +1276261147 1 this.numer 0 @@ -92911,7 +93718,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2712 this -1671742667 +1276261147 1 this.numer 0 @@ -92924,7 +93731,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2712 this -1671742667 +1276261147 1 this.numer 0 @@ -92940,7 +93747,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2711 this -1671742667 +1276261147 1 this.numer 0 @@ -92949,7 +93756,7 @@ this.denom 1 1 return -1450450568 +1971764991 1 return.toString "0" @@ -92959,7 +93766,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2713 this -1332961194 +60292059 1 this.numer 0 @@ -92968,7 +93775,7 @@ this.denom 1 1 arg -241298971 +1578009262 1 arg.numer 6 @@ -93014,7 +93821,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2714 this -1635819279 +996796369 1 this.numer 0 @@ -93033,7 +93840,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2713 this -1332961194 +60292059 1 this.numer 0 @@ -93042,7 +93849,7 @@ this.denom 1 1 arg -241298971 +1578009262 1 arg.numer 6 @@ -93051,7 +93858,7 @@ arg.denom 5 1 return -1635819279 +996796369 1 return.numer 0 @@ -93064,7 +93871,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2716 this -1635819279 +996796369 1 this.numer 0 @@ -93077,7 +93884,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2717 this -1635819279 +996796369 1 this.numer 0 @@ -93090,7 +93897,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2717 this -1635819279 +996796369 1 this.numer 0 @@ -93106,7 +93913,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2716 this -1635819279 +996796369 1 this.numer 0 @@ -93115,7 +93922,7 @@ this.denom 1 1 return -1128973259 +135640095 1 return.toString "0" @@ -93125,7 +93932,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2718 this -241298971 +1578009262 1 this.numer 6 @@ -93134,7 +93941,7 @@ this.denom 5 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -93180,7 +93987,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2719 this -1635542768 +1430439149 1 this.numer 0 @@ -93199,7 +94006,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2718 this -241298971 +1578009262 1 this.numer 6 @@ -93208,7 +94015,7 @@ this.denom 5 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -93217,7 +94024,7 @@ arg.denom 1 1 return -1635542768 +1430439149 1 return.numer 0 @@ -93230,7 +94037,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2721 this -1635542768 +1430439149 1 this.numer 0 @@ -93243,7 +94050,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2722 this -1635542768 +1430439149 1 this.numer 0 @@ -93256,7 +94063,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2722 this -1635542768 +1430439149 1 this.numer 0 @@ -93272,7 +94079,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2721 this -1635542768 +1430439149 1 this.numer 0 @@ -93281,7 +94088,7 @@ this.denom 1 1 return -776620176 +359922172 1 return.toString "0" @@ -93291,7 +94098,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2723 this -1332961194 +60292059 1 this.numer 0 @@ -93300,7 +94107,7 @@ this.denom 1 1 arg -1062680061 +1735507635 1 arg.numer 8 @@ -93346,7 +94153,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2724 this -249691566 +1632682988 1 this.numer 0 @@ -93365,7 +94172,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2723 this -1332961194 +60292059 1 this.numer 0 @@ -93374,7 +94181,7 @@ this.denom 1 1 arg -1062680061 +1735507635 1 arg.numer 8 @@ -93383,7 +94190,7 @@ arg.denom 7 1 return -249691566 +1632682988 1 return.numer 0 @@ -93396,7 +94203,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2726 this -249691566 +1632682988 1 this.numer 0 @@ -93409,7 +94216,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2727 this -249691566 +1632682988 1 this.numer 0 @@ -93422,7 +94229,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2727 this -249691566 +1632682988 1 this.numer 0 @@ -93438,7 +94245,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2726 this -249691566 +1632682988 1 this.numer 0 @@ -93447,7 +94254,7 @@ this.denom 1 1 return -383103524 +1153447573 1 return.toString "0" @@ -93457,7 +94264,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2728 this -1062680061 +1735507635 1 this.numer 8 @@ -93466,7 +94273,7 @@ this.denom 7 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -93512,7 +94319,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2729 this -664954162 +132577100 1 this.numer 0 @@ -93531,7 +94338,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2728 this -1062680061 +1735507635 1 this.numer 8 @@ -93540,7 +94347,7 @@ this.denom 7 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -93549,7 +94356,7 @@ arg.denom 1 1 return -664954162 +132577100 1 return.numer 0 @@ -93562,7 +94369,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2731 this -664954162 +132577100 1 this.numer 0 @@ -93575,7 +94382,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2732 this -664954162 +132577100 1 this.numer 0 @@ -93588,7 +94395,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2732 this -664954162 +132577100 1 this.numer 0 @@ -93604,7 +94411,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2731 this -664954162 +132577100 1 this.numer 0 @@ -93613,7 +94420,7 @@ this.denom 1 1 return -379701746 +231756373 1 return.toString "0" @@ -93623,7 +94430,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2733 this -529382054 +869601985 1 this.numer 1 @@ -93632,7 +94439,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -93678,7 +94485,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2734 this -1473329785 +1786294176 1 this.numer 0 @@ -93697,7 +94504,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2733 this -529382054 +869601985 1 this.numer 1 @@ -93706,7 +94513,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -93715,7 +94522,7 @@ arg.denom 1 1 return -1473329785 +1786294176 1 return.numer 0 @@ -93728,7 +94535,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2736 this -1332961194 +60292059 1 this.numer 0 @@ -93741,7 +94548,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2737 this -1332961194 +60292059 1 this.numer 0 @@ -93754,7 +94561,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2737 this -1332961194 +60292059 1 this.numer 0 @@ -93770,7 +94577,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2736 this -1332961194 +60292059 1 this.numer 0 @@ -93779,7 +94586,7 @@ this.denom 1 1 return -1767246585 +793331940 1 return.toString "0" @@ -93789,7 +94596,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2738 this -1473329785 +1786294176 1 this.numer 0 @@ -93802,7 +94609,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2739 this -1473329785 +1786294176 1 this.numer 0 @@ -93815,7 +94622,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2739 this -1473329785 +1786294176 1 this.numer 0 @@ -93831,7 +94638,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2738 this -1473329785 +1786294176 1 this.numer 0 @@ -93840,7 +94647,7 @@ this.denom 1 1 return -267032438 +522553046 1 return.toString "0" @@ -93850,7 +94657,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2740 this -1332961194 +60292059 1 this.numer 0 @@ -93859,7 +94666,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -93905,7 +94712,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2741 this -1920846883 +275266973 1 this.numer 0 @@ -93924,7 +94731,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2740 this -1332961194 +60292059 1 this.numer 0 @@ -93933,7 +94740,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -93942,7 +94749,7 @@ arg.denom 1 1 return -1920846883 +275266973 1 return.numer 0 @@ -93955,7 +94762,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2743 this -1332961194 +60292059 1 this.numer 0 @@ -93968,7 +94775,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2744 this -1332961194 +60292059 1 this.numer 0 @@ -93981,7 +94788,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2744 this -1332961194 +60292059 1 this.numer 0 @@ -93997,7 +94804,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2743 this -1332961194 +60292059 1 this.numer 0 @@ -94006,7 +94813,7 @@ this.denom 1 1 return -551897230 +1069716895 1 return.toString "0" @@ -94016,7 +94823,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2745 this -1920846883 +275266973 1 this.numer 0 @@ -94029,7 +94836,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2746 this -1920846883 +275266973 1 this.numer 0 @@ -94042,7 +94849,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2746 this -1920846883 +275266973 1 this.numer 0 @@ -94058,7 +94865,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2745 this -1920846883 +275266973 1 this.numer 0 @@ -94067,7 +94874,7 @@ this.denom 1 1 return -754873217 +1521083627 1 return.toString "0" @@ -94077,7 +94884,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2747 this -529382054 +869601985 1 this.numer 1 @@ -94086,7 +94893,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -94132,7 +94939,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2748 this -1968255290 +1770642014 1 this.numer 1 @@ -94151,7 +94958,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2747 this -529382054 +869601985 1 this.numer 1 @@ -94160,7 +94967,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -94169,7 +94976,7 @@ arg.denom 1 1 return -1968255290 +1770642014 1 return.numer 1 @@ -94182,7 +94989,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2750 this -529382054 +869601985 1 this.numer 1 @@ -94195,7 +95002,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2751 this -529382054 +869601985 1 this.numer 1 @@ -94208,7 +95015,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2751 this -529382054 +869601985 1 this.numer 1 @@ -94224,7 +95031,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2750 this -529382054 +869601985 1 this.numer 1 @@ -94233,7 +95040,7 @@ this.denom 1 1 return -628560642 +945591847 1 return.toString "1" @@ -94243,7 +95050,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2752 this -1968255290 +1770642014 1 this.numer 1 @@ -94256,7 +95063,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2753 this -1968255290 +1770642014 1 this.numer 1 @@ -94269,7 +95076,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2753 this -1968255290 +1770642014 1 this.numer 1 @@ -94285,7 +95092,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2752 this -1968255290 +1770642014 1 this.numer 1 @@ -94294,7 +95101,7 @@ this.denom 1 1 return -746650501 +328827614 1 return.toString "1" @@ -94304,7 +95111,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2754 this -529382054 +869601985 1 this.numer 1 @@ -94313,7 +95120,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -94359,7 +95166,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2755 this -1208020886 +109228794 1 this.numer 1 @@ -94378,7 +95185,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2754 this -529382054 +869601985 1 this.numer 1 @@ -94387,7 +95194,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -94396,7 +95203,7 @@ arg.denom 1 1 return -1208020886 +109228794 1 return.numer 1 @@ -94409,7 +95216,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2757 this -529382054 +869601985 1 this.numer 1 @@ -94422,7 +95229,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2758 this -529382054 +869601985 1 this.numer 1 @@ -94435,7 +95242,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2758 this -529382054 +869601985 1 this.numer 1 @@ -94451,7 +95258,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2757 this -529382054 +869601985 1 this.numer 1 @@ -94460,7 +95267,7 @@ this.denom 1 1 return -896632264 +561959774 1 return.toString "1" @@ -94470,7 +95277,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2759 this -1208020886 +109228794 1 this.numer 1 @@ -94483,7 +95290,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2760 this -1208020886 +109228794 1 this.numer 1 @@ -94496,7 +95303,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2760 this -1208020886 +109228794 1 this.numer 1 @@ -94512,7 +95319,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2759 this -1208020886 +109228794 1 this.numer 1 @@ -94521,7 +95328,7 @@ this.denom 1 1 return -805710049 +2110756088 1 return.toString "1" @@ -94531,7 +95338,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2761 this -529382054 +869601985 1 this.numer 1 @@ -94540,7 +95347,7 @@ this.denom 1 1 arg -299432057 +1365008457 1 arg.numer -1 @@ -94586,7 +95393,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2762 this -1684399208 +580871917 1 this.numer -1 @@ -94605,7 +95412,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2761 this -529382054 +869601985 1 this.numer 1 @@ -94614,7 +95421,7 @@ this.denom 1 1 arg -299432057 +1365008457 1 arg.numer -1 @@ -94623,7 +95430,7 @@ arg.denom 1 1 return -1684399208 +580871917 1 return.numer -1 @@ -94636,7 +95443,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2764 this -299432057 +1365008457 1 this.numer -1 @@ -94649,7 +95456,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2765 this -299432057 +1365008457 1 this.numer -1 @@ -94662,7 +95469,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2765 this -299432057 +1365008457 1 this.numer -1 @@ -94678,7 +95485,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2764 this -299432057 +1365008457 1 this.numer -1 @@ -94687,7 +95494,7 @@ this.denom 1 1 return -1568054102 +823723302 1 return.toString "-1" @@ -94697,7 +95504,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2766 this -1684399208 +580871917 1 this.numer -1 @@ -94710,7 +95517,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2767 this -1684399208 +580871917 1 this.numer -1 @@ -94723,7 +95530,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2767 this -1684399208 +580871917 1 this.numer -1 @@ -94739,7 +95546,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2766 this -1684399208 +580871917 1 this.numer -1 @@ -94748,7 +95555,7 @@ this.denom 1 1 return -365976330 +1714078840 1 return.toString "-1" @@ -94758,7 +95565,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2768 this -299432057 +1365008457 1 this.numer -1 @@ -94767,7 +95574,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -94813,7 +95620,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2769 this -571013302 +1732502545 1 this.numer -1 @@ -94832,7 +95639,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2768 this -299432057 +1365008457 1 this.numer -1 @@ -94841,7 +95648,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -94850,7 +95657,7 @@ arg.denom 1 1 return -571013302 +1732502545 1 return.numer -1 @@ -94863,7 +95670,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2771 this -299432057 +1365008457 1 this.numer -1 @@ -94876,7 +95683,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2772 this -299432057 +1365008457 1 this.numer -1 @@ -94889,7 +95696,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2772 this -299432057 +1365008457 1 this.numer -1 @@ -94905,7 +95712,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2771 this -299432057 +1365008457 1 this.numer -1 @@ -94914,7 +95721,7 @@ this.denom 1 1 return -2063631918 +1051876890 1 return.toString "-1" @@ -94924,7 +95731,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2773 this -571013302 +1732502545 1 this.numer -1 @@ -94937,7 +95744,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2774 this -571013302 +1732502545 1 this.numer -1 @@ -94950,7 +95757,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2774 this -571013302 +1732502545 1 this.numer -1 @@ -94966,7 +95773,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2773 this -571013302 +1732502545 1 this.numer -1 @@ -94975,7 +95782,7 @@ this.denom 1 1 return -1600746776 +1199262943 1 return.toString "-1" @@ -94985,7 +95792,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2775 this -529382054 +869601985 1 this.numer 1 @@ -94994,7 +95801,7 @@ this.denom 1 1 arg -1000397078 +1671179293 1 arg.numer 2 @@ -95040,7 +95847,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2776 this -75934616 +2009221452 1 this.numer 2 @@ -95059,7 +95866,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2775 this -529382054 +869601985 1 this.numer 1 @@ -95068,7 +95875,7 @@ this.denom 1 1 arg -1000397078 +1671179293 1 arg.numer 2 @@ -95077,7 +95884,7 @@ arg.denom 1 1 return -75934616 +2009221452 1 return.numer 2 @@ -95090,7 +95897,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2778 this -1000397078 +1671179293 1 this.numer 2 @@ -95103,7 +95910,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2779 this -1000397078 +1671179293 1 this.numer 2 @@ -95116,7 +95923,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2779 this -1000397078 +1671179293 1 this.numer 2 @@ -95132,7 +95939,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2778 this -1000397078 +1671179293 1 this.numer 2 @@ -95141,7 +95948,7 @@ this.denom 1 1 return -627804794 +257513673 1 return.toString "2" @@ -95151,7 +95958,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2780 this -75934616 +2009221452 1 this.numer 2 @@ -95164,7 +95971,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2781 this -75934616 +2009221452 1 this.numer 2 @@ -95177,7 +95984,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2781 this -75934616 +2009221452 1 this.numer 2 @@ -95193,7 +96000,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2780 this -75934616 +2009221452 1 this.numer 2 @@ -95202,7 +96009,7 @@ this.denom 1 1 return -928015047 +590845366 1 return.toString "2" @@ -95212,7 +96019,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2782 this -1000397078 +1671179293 1 this.numer 2 @@ -95221,7 +96028,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -95267,7 +96074,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2783 this -2122650415 +1052195003 1 this.numer 2 @@ -95286,7 +96093,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2782 this -1000397078 +1671179293 1 this.numer 2 @@ -95295,7 +96102,7 @@ this.denom 1 1 arg -529382054 +869601985 1 arg.numer 1 @@ -95304,7 +96111,7 @@ arg.denom 1 1 return -2122650415 +1052195003 1 return.numer 2 @@ -95317,7 +96124,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2785 this -1000397078 +1671179293 1 this.numer 2 @@ -95330,7 +96137,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2786 this -1000397078 +1671179293 1 this.numer 2 @@ -95343,7 +96150,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2786 this -1000397078 +1671179293 1 this.numer 2 @@ -95359,7 +96166,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2785 this -1000397078 +1671179293 1 this.numer 2 @@ -95368,7 +96175,7 @@ this.denom 1 1 return -1387180941 +1541049864 1 return.toString "2" @@ -95378,7 +96185,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2787 this -2122650415 +1052195003 1 this.numer 2 @@ -95391,7 +96198,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2788 this -2122650415 +1052195003 1 this.numer 2 @@ -95404,7 +96211,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2788 this -2122650415 +1052195003 1 this.numer 2 @@ -95420,7 +96227,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2787 this -2122650415 +1052195003 1 this.numer 2 @@ -95429,7 +96236,7 @@ this.denom 1 1 return -1267603555 +511707818 1 return.toString "2" @@ -95439,7 +96246,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2789 this -529382054 +869601985 1 this.numer 1 @@ -95448,7 +96255,7 @@ this.denom 1 1 arg -1943486776 +1144068272 1 arg.numer 1 @@ -95494,7 +96301,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2790 this -1575170645 +25536233 1 this.numer 1 @@ -95513,7 +96320,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2789 this -529382054 +869601985 1 this.numer 1 @@ -95522,7 +96329,7 @@ this.denom 1 1 arg -1943486776 +1144068272 1 arg.numer 1 @@ -95531,7 +96338,7 @@ arg.denom 2 1 return -1575170645 +25536233 1 return.numer 1 @@ -95544,7 +96351,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2792 this -1943486776 +1144068272 1 this.numer 1 @@ -95557,7 +96364,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2793 this -1943486776 +1144068272 1 this.numer 1 @@ -95570,7 +96377,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2793 this -1943486776 +1144068272 1 this.numer 1 @@ -95586,7 +96393,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2792 this -1943486776 +1144068272 1 this.numer 1 @@ -95595,7 +96402,7 @@ this.denom 2 1 return -1862113946 +116405378 1 return.toString "1/2" @@ -95605,7 +96412,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2794 this -1575170645 +25536233 1 this.numer 1 @@ -95618,7 +96425,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2795 this -1575170645 +25536233 1 this.numer 1 @@ -95631,7 +96438,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2795 this -1575170645 +25536233 1 this.numer 1 @@ -95647,7 +96454,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2794 this -1575170645 +25536233 1 this.numer 1 @@ -95656,7 +96463,7 @@ this.denom 2 1 return -1269902691 +164974746 1 return.toString "1/2" @@ -95666,7 +96473,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2796 this -1943486776 +1144068272 1 this.numer 1 @@ -95675,7 +96482,7 @@ this.denom 2 1 arg -529382054 +869601985 1 arg.numer 1 @@ -95721,7 +96528,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2797 this -1562043751 +396283472 1 this.numer 1 @@ -95740,7 +96547,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2796 this -1943486776 +1144068272 1 this.numer 1 @@ -95749,7 +96556,7 @@ this.denom 2 1 arg -529382054 +869601985 1 arg.numer 1 @@ -95758,7 +96565,7 @@ arg.denom 1 1 return -1562043751 +396283472 1 return.numer 1 @@ -95771,7 +96578,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2799 this -1943486776 +1144068272 1 this.numer 1 @@ -95784,7 +96591,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2800 this -1943486776 +1144068272 1 this.numer 1 @@ -95797,7 +96604,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2800 this -1943486776 +1144068272 1 this.numer 1 @@ -95813,7 +96620,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2799 this -1943486776 +1144068272 1 this.numer 1 @@ -95822,7 +96629,7 @@ this.denom 2 1 return -281738482 +989892772 1 return.toString "1/2" @@ -95832,7 +96639,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2801 this -1562043751 +396283472 1 this.numer 1 @@ -95845,7 +96652,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2802 this -1562043751 +396283472 1 this.numer 1 @@ -95858,7 +96665,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2802 this -1562043751 +396283472 1 this.numer 1 @@ -95874,7 +96681,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2801 this -1562043751 +396283472 1 this.numer 1 @@ -95883,7 +96690,7 @@ this.denom 2 1 return -2124708986 +1020520290 1 return.toString "1/2" @@ -95893,7 +96700,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2803 this -529382054 +869601985 1 this.numer 1 @@ -95902,7 +96709,7 @@ this.denom 1 1 arg -1562906341 +1798219673 1 arg.numer 3 @@ -95948,7 +96755,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2804 this -1625845386 +530653666 1 this.numer 3 @@ -95967,7 +96774,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2803 this -529382054 +869601985 1 this.numer 1 @@ -95976,7 +96783,7 @@ this.denom 1 1 arg -1562906341 +1798219673 1 arg.numer 3 @@ -95985,7 +96792,7 @@ arg.denom 2 1 return -1625845386 +530653666 1 return.numer 3 @@ -95998,7 +96805,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2806 this -1562906341 +1798219673 1 this.numer 3 @@ -96011,7 +96818,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2807 this -1562906341 +1798219673 1 this.numer 3 @@ -96024,7 +96831,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2807 this -1562906341 +1798219673 1 this.numer 3 @@ -96040,7 +96847,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2806 this -1562906341 +1798219673 1 this.numer 3 @@ -96049,7 +96856,7 @@ this.denom 2 1 return -1001478074 +2125238280 1 return.toString "3/2" @@ -96059,7 +96866,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2808 this -1625845386 +530653666 1 this.numer 3 @@ -96072,7 +96879,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2809 this -1625845386 +530653666 1 this.numer 3 @@ -96085,7 +96892,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2809 this -1625845386 +530653666 1 this.numer 3 @@ -96101,7 +96908,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2808 this -1625845386 +530653666 1 this.numer 3 @@ -96110,7 +96917,7 @@ this.denom 2 1 return -2012648179 +1092004553 1 return.toString "3/2" @@ -96120,7 +96927,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2810 this -1562906341 +1798219673 1 this.numer 3 @@ -96129,7 +96936,7 @@ this.denom 2 1 arg -529382054 +869601985 1 arg.numer 1 @@ -96175,7 +96982,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2811 this -1563020556 +1658699134 1 this.numer 3 @@ -96194,7 +97001,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2810 this -1562906341 +1798219673 1 this.numer 3 @@ -96203,7 +97010,7 @@ this.denom 2 1 arg -529382054 +869601985 1 arg.numer 1 @@ -96212,7 +97019,7 @@ arg.denom 1 1 return -1563020556 +1658699134 1 return.numer 3 @@ -96225,7 +97032,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2813 this -1562906341 +1798219673 1 this.numer 3 @@ -96238,7 +97045,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2814 this -1562906341 +1798219673 1 this.numer 3 @@ -96251,7 +97058,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2814 this -1562906341 +1798219673 1 this.numer 3 @@ -96267,7 +97074,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2813 this -1562906341 +1798219673 1 this.numer 3 @@ -96276,7 +97083,7 @@ this.denom 2 1 return -1666514588 +1961176822 1 return.toString "3/2" @@ -96286,7 +97093,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2815 this -1563020556 +1658699134 1 this.numer 3 @@ -96299,7 +97106,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2816 this -1563020556 +1658699134 1 this.numer 3 @@ -96312,7 +97119,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2816 this -1563020556 +1658699134 1 this.numer 3 @@ -96328,7 +97135,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2815 this -1563020556 +1658699134 1 this.numer 3 @@ -96337,7 +97144,7 @@ this.denom 2 1 return -1628956342 +1859374258 1 return.toString "3/2" @@ -96347,7 +97154,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2817 this -529382054 +869601985 1 this.numer 1 @@ -96356,7 +97163,7 @@ this.denom 1 1 arg -1719131927 +1948471365 1 arg.numer 1 @@ -96402,7 +97209,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2818 this -1747708038 +442987331 1 this.numer 1 @@ -96421,7 +97228,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2817 this -529382054 +869601985 1 this.numer 1 @@ -96430,7 +97237,7 @@ this.denom 1 1 arg -1719131927 +1948471365 1 arg.numer 1 @@ -96439,7 +97246,7 @@ arg.denom 4 1 return -1747708038 +442987331 1 return.numer 1 @@ -96452,7 +97259,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2820 this -1719131927 +1948471365 1 this.numer 1 @@ -96465,7 +97272,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2821 this -1719131927 +1948471365 1 this.numer 1 @@ -96478,7 +97285,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2821 this -1719131927 +1948471365 1 this.numer 1 @@ -96494,7 +97301,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2820 this -1719131927 +1948471365 1 this.numer 1 @@ -96503,7 +97310,7 @@ this.denom 4 1 return -447671000 +366873404 1 return.toString "1/4" @@ -96513,7 +97320,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2822 this -1747708038 +442987331 1 this.numer 1 @@ -96526,7 +97333,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2823 this -1747708038 +442987331 1 this.numer 1 @@ -96539,7 +97346,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2823 this -1747708038 +442987331 1 this.numer 1 @@ -96555,7 +97362,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2822 this -1747708038 +442987331 1 this.numer 1 @@ -96564,7 +97371,7 @@ this.denom 4 1 return -1371281559 +1217467887 1 return.toString "1/4" @@ -96574,7 +97381,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2824 this -1719131927 +1948471365 1 this.numer 1 @@ -96583,7 +97390,7 @@ this.denom 4 1 arg -529382054 +869601985 1 arg.numer 1 @@ -96629,7 +97436,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2825 this -334662509 +945288723 1 this.numer 1 @@ -96648,7 +97455,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2824 this -1719131927 +1948471365 1 this.numer 1 @@ -96657,7 +97464,7 @@ this.denom 4 1 arg -529382054 +869601985 1 arg.numer 1 @@ -96666,7 +97473,7 @@ arg.denom 1 1 return -334662509 +945288723 1 return.numer 1 @@ -96679,7 +97486,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2827 this -1719131927 +1948471365 1 this.numer 1 @@ -96692,7 +97499,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2828 this -1719131927 +1948471365 1 this.numer 1 @@ -96705,7 +97512,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2828 this -1719131927 +1948471365 1 this.numer 1 @@ -96721,7 +97528,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2827 this -1719131927 +1948471365 1 this.numer 1 @@ -96730,7 +97537,7 @@ this.denom 4 1 return -413117270 +428566321 1 return.toString "1/4" @@ -96740,7 +97547,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2829 this -334662509 +945288723 1 this.numer 1 @@ -96753,7 +97560,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2830 this -334662509 +945288723 1 this.numer 1 @@ -96766,7 +97573,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2830 this -334662509 +945288723 1 this.numer 1 @@ -96782,7 +97589,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2829 this -334662509 +945288723 1 this.numer 1 @@ -96791,7 +97598,7 @@ this.denom 4 1 return -447326139 +2087258327 1 return.toString "1/4" @@ -96801,7 +97608,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2831 this -529382054 +869601985 1 this.numer 1 @@ -96810,7 +97617,7 @@ this.denom 1 1 arg -955973362 +1985836631 1 arg.numer 1 @@ -96856,7 +97663,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2832 this -2017653673 +1016550616 1 this.numer 1 @@ -96875,7 +97682,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2831 this -529382054 +869601985 1 this.numer 1 @@ -96884,7 +97691,7 @@ this.denom 1 1 arg -955973362 +1985836631 1 arg.numer 1 @@ -96893,7 +97700,7 @@ arg.denom 3 1 return -2017653673 +1016550616 1 return.numer 1 @@ -96906,7 +97713,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2834 this -955973362 +1985836631 1 this.numer 1 @@ -96919,7 +97726,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2835 this -955973362 +1985836631 1 this.numer 1 @@ -96932,7 +97739,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2835 this -955973362 +1985836631 1 this.numer 1 @@ -96948,7 +97755,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2834 this -955973362 +1985836631 1 this.numer 1 @@ -96957,7 +97764,7 @@ this.denom 3 1 return -1938495981 +1006094903 1 return.toString "1/3" @@ -96967,7 +97774,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2836 this -2017653673 +1016550616 1 this.numer 1 @@ -96980,7 +97787,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2837 this -2017653673 +1016550616 1 this.numer 1 @@ -96993,7 +97800,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2837 this -2017653673 +1016550616 1 this.numer 1 @@ -97009,7 +97816,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2836 this -2017653673 +1016550616 1 this.numer 1 @@ -97018,7 +97825,7 @@ this.denom 3 1 return -827544030 +2030538903 1 return.toString "1/3" @@ -97028,7 +97835,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2838 this -955973362 +1985836631 1 this.numer 1 @@ -97037,7 +97844,7 @@ this.denom 3 1 arg -529382054 +869601985 1 arg.numer 1 @@ -97083,7 +97890,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2839 this -1428414238 +1293680848 1 this.numer 1 @@ -97102,7 +97909,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2838 this -955973362 +1985836631 1 this.numer 1 @@ -97111,7 +97918,7 @@ this.denom 3 1 arg -529382054 +869601985 1 arg.numer 1 @@ -97120,7 +97927,7 @@ arg.denom 1 1 return -1428414238 +1293680848 1 return.numer 1 @@ -97133,7 +97940,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2841 this -955973362 +1985836631 1 this.numer 1 @@ -97146,7 +97953,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2842 this -955973362 +1985836631 1 this.numer 1 @@ -97159,7 +97966,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2842 this -955973362 +1985836631 1 this.numer 1 @@ -97175,7 +97982,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2841 this -955973362 +1985836631 1 this.numer 1 @@ -97184,7 +97991,7 @@ this.denom 3 1 return -638408253 +1261153343 1 return.toString "1/3" @@ -97194,7 +98001,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2843 this -1428414238 +1293680848 1 this.numer 1 @@ -97207,7 +98014,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2844 this -1428414238 +1293680848 1 this.numer 1 @@ -97220,7 +98027,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2844 this -1428414238 +1293680848 1 this.numer 1 @@ -97236,7 +98043,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2843 this -1428414238 +1293680848 1 this.numer 1 @@ -97245,7 +98052,7 @@ this.denom 3 1 return -899207759 +1309176095 1 return.toString "1/3" @@ -97255,7 +98062,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2845 this -529382054 +869601985 1 this.numer 1 @@ -97264,7 +98071,7 @@ this.denom 1 1 arg -1281195920 +817978763 1 arg.numer 5 @@ -97310,7 +98117,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2846 this -1142381574 +198099809 1 this.numer 5 @@ -97329,7 +98136,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2845 this -529382054 +869601985 1 this.numer 1 @@ -97338,7 +98145,7 @@ this.denom 1 1 arg -1281195920 +817978763 1 arg.numer 5 @@ -97347,7 +98154,7 @@ arg.denom 6 1 return -1142381574 +198099809 1 return.numer 5 @@ -97360,7 +98167,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2848 this -1281195920 +817978763 1 this.numer 5 @@ -97373,7 +98180,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2849 this -1281195920 +817978763 1 this.numer 5 @@ -97386,7 +98193,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2849 this -1281195920 +817978763 1 this.numer 5 @@ -97402,7 +98209,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2848 this -1281195920 +817978763 1 this.numer 5 @@ -97411,7 +98218,7 @@ this.denom 6 1 return -1503310038 +645482568 1 return.toString "5/6" @@ -97421,7 +98228,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2850 this -1142381574 +198099809 1 this.numer 5 @@ -97434,7 +98241,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2851 this -1142381574 +198099809 1 this.numer 5 @@ -97447,7 +98254,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2851 this -1142381574 +198099809 1 this.numer 5 @@ -97463,7 +98270,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2850 this -1142381574 +198099809 1 this.numer 5 @@ -97472,7 +98279,7 @@ this.denom 6 1 return -986701711 +807752428 1 return.toString "5/6" @@ -97482,7 +98289,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2852 this -1281195920 +817978763 1 this.numer 5 @@ -97491,7 +98298,7 @@ this.denom 6 1 arg -529382054 +869601985 1 arg.numer 1 @@ -97537,7 +98344,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2853 this -626934643 +1026055550 1 this.numer 5 @@ -97556,7 +98363,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2852 this -1281195920 +817978763 1 this.numer 5 @@ -97565,7 +98372,7 @@ this.denom 6 1 arg -529382054 +869601985 1 arg.numer 1 @@ -97574,7 +98381,7 @@ arg.denom 1 1 return -626934643 +1026055550 1 return.numer 5 @@ -97587,7 +98394,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2855 this -1281195920 +817978763 1 this.numer 5 @@ -97600,7 +98407,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2856 this -1281195920 +817978763 1 this.numer 5 @@ -97613,7 +98420,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2856 this -1281195920 +817978763 1 this.numer 5 @@ -97629,7 +98436,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2855 this -1281195920 +817978763 1 this.numer 5 @@ -97638,7 +98445,7 @@ this.denom 6 1 return -1335772719 +1073763441 1 return.toString "5/6" @@ -97648,7 +98455,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2857 this -626934643 +1026055550 1 this.numer 5 @@ -97661,7 +98468,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2858 this -626934643 +1026055550 1 this.numer 5 @@ -97674,7 +98481,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2858 this -626934643 +1026055550 1 this.numer 5 @@ -97690,7 +98497,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2857 this -626934643 +1026055550 1 this.numer 5 @@ -97699,7 +98506,7 @@ this.denom 6 1 return -538042495 +752316209 1 return.toString "5/6" @@ -97709,7 +98516,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2859 this -529382054 +869601985 1 this.numer 1 @@ -97718,7 +98525,7 @@ this.denom 1 1 arg -241298971 +1578009262 1 arg.numer 6 @@ -97764,7 +98571,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2860 this -1974059595 +914356853 1 this.numer 6 @@ -97783,7 +98590,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2859 this -529382054 +869601985 1 this.numer 1 @@ -97792,7 +98599,7 @@ this.denom 1 1 arg -241298971 +1578009262 1 arg.numer 6 @@ -97801,7 +98608,7 @@ arg.denom 5 1 return -1974059595 +914356853 1 return.numer 6 @@ -97814,7 +98621,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2862 this -241298971 +1578009262 1 this.numer 6 @@ -97827,7 +98634,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2863 this -241298971 +1578009262 1 this.numer 6 @@ -97840,7 +98647,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2863 this -241298971 +1578009262 1 this.numer 6 @@ -97856,7 +98663,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2862 this -241298971 +1578009262 1 this.numer 6 @@ -97865,7 +98672,7 @@ this.denom 5 1 return -1544750662 +1229161065 1 return.toString "6/5" @@ -97875,7 +98682,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2864 this -1974059595 +914356853 1 this.numer 6 @@ -97888,7 +98695,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2865 this -1974059595 +914356853 1 this.numer 6 @@ -97901,7 +98708,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2865 this -1974059595 +914356853 1 this.numer 6 @@ -97917,7 +98724,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2864 this -1974059595 +914356853 1 this.numer 6 @@ -97926,7 +98733,7 @@ this.denom 5 1 return -1694567651 +195228908 1 return.toString "6/5" @@ -97936,7 +98743,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2866 this -241298971 +1578009262 1 this.numer 6 @@ -97945,7 +98752,7 @@ this.denom 5 1 arg -529382054 +869601985 1 arg.numer 1 @@ -97991,7 +98798,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2867 this -670383843 +471579726 1 this.numer 6 @@ -98010,7 +98817,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2866 this -241298971 +1578009262 1 this.numer 6 @@ -98019,7 +98826,7 @@ this.denom 5 1 arg -529382054 +869601985 1 arg.numer 1 @@ -98028,7 +98835,7 @@ arg.denom 1 1 return -670383843 +471579726 1 return.numer 6 @@ -98041,7 +98848,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2869 this -241298971 +1578009262 1 this.numer 6 @@ -98054,7 +98861,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2870 this -241298971 +1578009262 1 this.numer 6 @@ -98067,7 +98874,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2870 this -241298971 +1578009262 1 this.numer 6 @@ -98083,7 +98890,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2869 this -241298971 +1578009262 1 this.numer 6 @@ -98092,7 +98899,7 @@ this.denom 5 1 return -1442037139 +1442726378 1 return.toString "6/5" @@ -98102,7 +98909,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2871 this -670383843 +471579726 1 this.numer 6 @@ -98115,7 +98922,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2872 this -670383843 +471579726 1 this.numer 6 @@ -98128,7 +98935,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2872 this -670383843 +471579726 1 this.numer 6 @@ -98144,7 +98951,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2871 this -670383843 +471579726 1 this.numer 6 @@ -98153,7 +98960,7 @@ this.denom 5 1 return -1965238778 +16503286 1 return.toString "6/5" @@ -98163,7 +98970,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2873 this -529382054 +869601985 1 this.numer 1 @@ -98172,7 +98979,7 @@ this.denom 1 1 arg -1062680061 +1735507635 1 arg.numer 8 @@ -98218,7 +99025,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2874 this -1469650986 +484589713 1 this.numer 8 @@ -98237,7 +99044,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2873 this -529382054 +869601985 1 this.numer 1 @@ -98246,7 +99053,7 @@ this.denom 1 1 arg -1062680061 +1735507635 1 arg.numer 8 @@ -98255,7 +99062,7 @@ arg.denom 7 1 return -1469650986 +484589713 1 return.numer 8 @@ -98268,7 +99075,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2876 this -1062680061 +1735507635 1 this.numer 8 @@ -98281,7 +99088,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2877 this -1062680061 +1735507635 1 this.numer 8 @@ -98294,7 +99101,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2877 this -1062680061 +1735507635 1 this.numer 8 @@ -98310,7 +99117,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2876 this -1062680061 +1735507635 1 this.numer 8 @@ -98319,7 +99126,7 @@ this.denom 7 1 return -67213908 +1574598287 1 return.toString "8/7" @@ -98329,7 +99136,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2878 this -1469650986 +484589713 1 this.numer 8 @@ -98342,7 +99149,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2879 this -1469650986 +484589713 1 this.numer 8 @@ -98355,7 +99162,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2879 this -1469650986 +484589713 1 this.numer 8 @@ -98371,7 +99178,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2878 this -1469650986 +484589713 1 this.numer 8 @@ -98380,7 +99187,7 @@ this.denom 7 1 return -87753434 +2056031695 1 return.toString "8/7" @@ -98390,7 +99197,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2880 this -1062680061 +1735507635 1 this.numer 8 @@ -98399,7 +99206,7 @@ this.denom 7 1 arg -529382054 +869601985 1 arg.numer 1 @@ -98445,7 +99252,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2881 this -1698183396 +606508809 1 this.numer 8 @@ -98464,7 +99271,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2880 this -1062680061 +1735507635 1 this.numer 8 @@ -98473,7 +99280,7 @@ this.denom 7 1 arg -529382054 +869601985 1 arg.numer 1 @@ -98482,7 +99289,7 @@ arg.denom 1 1 return -1698183396 +606508809 1 return.numer 8 @@ -98495,7 +99302,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2883 this -1062680061 +1735507635 1 this.numer 8 @@ -98508,7 +99315,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2884 this -1062680061 +1735507635 1 this.numer 8 @@ -98521,7 +99328,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2884 this -1062680061 +1735507635 1 this.numer 8 @@ -98537,7 +99344,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2883 this -1062680061 +1735507635 1 this.numer 8 @@ -98546,7 +99353,7 @@ this.denom 7 1 return -1310667942 +718187988 1 return.toString "8/7" @@ -98556,7 +99363,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2885 this -1698183396 +606508809 1 this.numer 8 @@ -98569,7 +99376,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2886 this -1698183396 +606508809 1 this.numer 8 @@ -98582,7 +99389,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2886 this -1698183396 +606508809 1 this.numer 8 @@ -98598,7 +99405,7 @@ PolyCalc.RatNum.unparse():::EXIT135 this_invocation_nonce 2885 this -1698183396 +606508809 1 this.numer 8 @@ -98607,7 +99414,7 @@ this.denom 7 1 return -1656333915 +615438348 1 return.toString "8/7" @@ -98617,7 +99424,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2887 this -299432057 +1365008457 1 this.numer -1 @@ -98626,7 +99433,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -98672,7 +99479,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2888 this -173593344 +978508707 1 this.numer 0 @@ -98691,7 +99498,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2887 this -299432057 +1365008457 1 this.numer -1 @@ -98700,7 +99507,7 @@ this.denom 1 1 arg -1332961194 +60292059 1 arg.numer 0 @@ -98709,7 +99516,7 @@ arg.denom 1 1 return -173593344 +978508707 1 return.numer 0 @@ -98722,7 +99529,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2890 this -1332961194 +60292059 1 this.numer 0 @@ -98768,7 +99575,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2891 this -1300539982 +710708543 1 this.numer 0 @@ -98787,7 +99594,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2890 this -1332961194 +60292059 1 this.numer 0 @@ -98796,7 +99603,7 @@ this.denom 1 1 return -1300539982 +710708543 1 return.numer 0 @@ -98809,7 +99616,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2893 this -1300539982 +710708543 1 this.numer 0 @@ -98822,7 +99629,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2894 this -1300539982 +710708543 1 this.numer 0 @@ -98835,7 +99642,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2894 this -1300539982 +710708543 1 this.numer 0 @@ -98851,7 +99658,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2893 this -1300539982 +710708543 1 this.numer 0 @@ -98860,7 +99667,7 @@ this.denom 1 1 return -1086918308 +1965237677 1 return.toString "0" @@ -98870,7 +99677,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2895 this -173593344 +978508707 1 this.numer 0 @@ -98883,7 +99690,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2896 this -173593344 +978508707 1 this.numer 0 @@ -98896,7 +99703,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2896 this -173593344 +978508707 1 this.numer 0 @@ -98912,7 +99719,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2895 this -173593344 +978508707 1 this.numer 0 @@ -98921,7 +99728,7 @@ this.denom 1 1 return -1340101174 +664792509 1 return.toString "0" @@ -98931,7 +99738,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER this_invocation_nonce 2897 this -1332961194 +60292059 1 this.numer 0 @@ -98940,7 +99747,7 @@ this.denom 1 1 arg -299432057 +1365008457 1 arg.numer -1 @@ -98986,7 +99793,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2898 this -271941682 +188523822 1 this.numer 0 @@ -99005,7 +99812,7 @@ PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 this_invocation_nonce 2897 this -1332961194 +60292059 1 this.numer 0 @@ -99014,7 +99821,7 @@ this.denom 1 1 arg -299432057 +1365008457 1 arg.numer -1 @@ -99023,7 +99830,7 @@ arg.denom 1 1 return -271941682 +188523822 1 return.numer 0 @@ -99036,7 +99843,7 @@ PolyCalc.RatNum.negate():::ENTER this_invocation_nonce 2900 this -1332961194 +60292059 1 this.numer 0 @@ -99082,7 +99889,7 @@ PolyCalc.RatNum.RatNum(int, int):::EXIT67 this_invocation_nonce 2901 this -678648558 +1170727939 1 this.numer 0 @@ -99101,7 +99908,7 @@ PolyCalc.RatNum.negate():::EXIT147 this_invocation_nonce 2900 this -1332961194 +60292059 1 this.numer 0 @@ -99110,7 +99917,7 @@ this.denom 1 1 return -678648558 +1170727939 1 return.numer 0 @@ -99123,7 +99930,7 @@ PolyCalc.RatNum.unparse():::ENTER this_invocation_nonce 2903 this -678648558 +1170727939 1 this.numer 0 @@ -99136,7 +99943,7 @@ PolyCalc.RatNum.isNaN():::ENTER this_invocation_nonce 2904 this -678648558 +1170727939 1 this.numer 0 @@ -99149,7 +99956,7 @@ PolyCalc.RatNum.isNaN():::EXIT71 this_invocation_nonce 2904 this -678648558 +1170727939 1 this.numer 0 @@ -99165,7 +99972,7 @@ PolyCalc.RatNum.unparse():::EXIT137 this_invocation_nonce 2903 this -678648558 +1170727939 1 this.numer 0 @@ -99174,826 +99981,9 @@ this.denom 1 1 return -760665089 +690339675 1 return.toString "0" 1 -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2905 -this -271941682 -1 -this.numer -0 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2906 -this -271941682 -1 -this.numer -0 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2906 -this -271941682 -1 -this.numer -0 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2905 -this -271941682 -1 -this.numer -0 -1 -this.denom -1 -1 -return -528000232 -1 -return.toString -"0" -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER -this_invocation_nonce -2907 -this -299432057 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -529382054 -1 -arg.numer -1 -1 -arg.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2908 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2909 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2909 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2908 -this -697469820 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 -this_invocation_nonce -2907 -this -299432057 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -529382054 -1 -arg.numer -1 -1 -arg.denom -1 -1 -return -697469820 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.negate():::ENTER -this_invocation_nonce -2910 -this -529382054 -1 -this.numer -1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2911 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2912 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2912 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2911 -this -1409519414 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.negate():::EXIT147 -this_invocation_nonce -2910 -this -529382054 -1 -this.numer -1 -1 -this.denom -1 -1 -return -1409519414 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2913 -this -1409519414 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2914 -this -1409519414 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2914 -this -1409519414 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2913 -this -1409519414 -1 -this.numer --1 -1 -this.denom -1 -1 -return -900681041 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2915 -this -697469820 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2916 -this -697469820 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2916 -this -697469820 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2915 -this -697469820 -1 -this.numer --1 -1 -this.denom -1 -1 -return -134028384 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER -this_invocation_nonce -2917 -this -529382054 -1 -this.numer -1 -1 -this.denom -1 -1 -arg -299432057 -1 -arg.numer --1 -1 -arg.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2918 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2919 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2919 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2918 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 -this_invocation_nonce -2917 -this -529382054 -1 -this.numer -1 -1 -this.denom -1 -1 -arg -299432057 -1 -arg.numer --1 -1 -arg.denom -1 -1 -return -2052187832 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.negate():::ENTER -this_invocation_nonce -2920 -this -529382054 -1 -this.numer -1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2921 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2922 -_a --1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2922 -_a --1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2921 -this -386037957 -1 -this.numer --1 -1 -this.denom -1 -1 -n --1 -1 -d -1 -1 - -PolyCalc.RatNum.negate():::EXIT147 -this_invocation_nonce -2920 -this -529382054 -1 -this.numer -1 -1 -this.denom -1 -1 -return -386037957 -1 -return.numer --1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2923 -this -386037957 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2924 -this -386037957 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2924 -this -386037957 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2923 -this -386037957 -1 -this.numer --1 -1 -this.denom -1 -1 -return -591845712 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.unparse():::ENTER -this_invocation_nonce -2925 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::ENTER -this_invocation_nonce -2926 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.isNaN():::EXIT71 -this_invocation_nonce -2926 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 -return -false -1 - -PolyCalc.RatNum.unparse():::EXIT137 -this_invocation_nonce -2925 -this -2052187832 -1 -this.numer --1 -1 -this.denom -1 -1 -return -6628680 -1 -return.toString -"-1" -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::ENTER -this_invocation_nonce -2927 -this -299432057 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -299432057 -1 -arg.numer --1 -1 -arg.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2928 -n -1 -1 -d -1 -1 - -PolyCalc.RatNum.gcd(int, int):::ENTER -this_invocation_nonce -2929 -_a -1 -1 -_b -1 -1 - -PolyCalc.RatNum.gcd(int, int):::EXIT209 -this_invocation_nonce -2929 -_a -1 -1 -_b -1 -1 -return -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::EXIT67 -this_invocation_nonce -2928 -this -1886558763 -1 -this.numer -1 -1 -this.denom -1 -1 -n -1 -1 -d -1 -1 - -PolyCalc.RatNum.mul(PolyCalc.RatNum):::EXIT175 -this_invocation_nonce -2927 -this -299432057 -1 -this.numer --1 -1 -this.denom -1 -1 -arg -299432057 -1 -arg.numer --1 -1 -arg.denom -1 -1 -return -1886558763 -1 -return.numer -1 -1 -return.denom -1 -1 - -PolyCalc.RatNum.negate():::ENTER -this_invocation_nonce -2930 -this -299432057 -1 -this.numer --1 -1 -this.denom -1 -1 - -PolyCalc.RatNum.RatNum(int, int):::ENTER -this_invocation_nonce -2931 -n -1 -1 -d -1 -1 - diff --git a/tests/daikon-tests/RatPoly/RatPoly.txt-jaif.goal b/tests/daikon-tests/RatPoly/RatPoly.txt-jaif.goal index 664c37f714..cb89435961 100644 --- a/tests/daikon-tests/RatPoly/RatPoly.txt-jaif.goal +++ b/tests/daikon-tests/RatPoly/RatPoly.txt-jaif.goal @@ -6,193 +6,365 @@ package PolyCalc: class RatNum : // 185420/- obj/class samples field numer : // int field denom : // int + method gcd(II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // _a + parameter #1 : // _b method gcd(II)I : // 11298 samples - return: + return: parameter #0 : // _a parameter #1 : // _b + method parse(Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // ratStr method parse(Ljava/lang/String;)LPolyCalc/RatNum; : // 171 samples - return: + return: parameter #0 : // ratStr + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n method (I)V : // 16856 samples - return: + return: parameter #0 : // n + method (II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n + parameter #1 : // d method (II)V : // 16356 samples - return: + return: parameter #0 : // n parameter #1 : // d + method add(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method add(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 5192 samples - return: + return: parameter #0 : // arg + method approx()V throws Ljava/lang/Throwable; : // 0 samples + return: method approx()D : // 1719 samples - return: + return: + method compareTo(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // rn method compareTo(LPolyCalc/RatNum;)I : // 1887 samples - return: + return: parameter #0 : // rn + method debugPrint()V throws Ljava/lang/Throwable; : // 0 samples + return: method debugPrint()Ljava/lang/String; : // 94 samples - return: + return: + method div(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method div(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 2083 samples - return: + return: parameter #0 : // arg + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj method equals(Ljava/lang/Object;)Z : // 15102 samples - return: + return: parameter #0 : // obj + method hashCode()V throws Ljava/lang/Throwable; : // 0 samples + return: method hashCode()I : // 0 samples - return: + return: + method isNaN()V throws Ljava/lang/Throwable; : // 0 samples + return: method isNaN()Z : // 31457 samples - return: + return: + method isNegative()V throws Ljava/lang/Throwable; : // 0 samples + return: method isNegative()Z : // 2527 samples - return: + return: + method isPositive()V throws Ljava/lang/Throwable; : // 0 samples + return: method isPositive()Z : // 1697 samples - return: + return: + method mul(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method mul(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 2611 samples - return: + return: parameter #0 : // arg + method negate()V throws Ljava/lang/Throwable; : // 0 samples + return: method negate()LPolyCalc/RatNum; : // 5007 samples - return: + return: + method sub(LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // arg method sub(LPolyCalc/RatNum;)LPolyCalc/RatNum; : // 3226 samples - return: + return: parameter #0 : // arg + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 94 samples - return: + return: + method unparse()V throws Ljava/lang/Throwable; : // 0 samples + return: method unparse()Ljava/lang/String; : // 3408 samples - return: + return: package PolyCalc: class RatPoly : // 22981/- obj/class samples field terms : // PolyCalc.RatTermVec + method appendTerm(Ljava/lang/StringBuffer;LPolyCalc/RatTerm;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // sb + parameter #1 : // rt method appendTerm(Ljava/lang/StringBuffer;LPolyCalc/RatTerm;)V : // 830 samples - return: + return: parameter #0 : // sb parameter #1 : // rt + method assertSorted(LPolyCalc/RatTermVec;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // v method assertSorted(LPolyCalc/RatTermVec;)V : // 758 samples - return: + return: parameter #0 : // v + method containsNaN(LPolyCalc/RatTermVec;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // vec method containsNaN(LPolyCalc/RatTermVec;)Z : // 0 samples - return: + return: parameter #0 : // vec + method findTermIndex(LPolyCalc/RatTermVec;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // ts + parameter #1 : // expt method findTermIndex(LPolyCalc/RatTermVec;I)I : // 687 samples - return: + return: parameter #0 : // ts parameter #1 : // expt + method hintedGet(LPolyCalc/RatTermVec;II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // ts + parameter #1 : // i + parameter #2 : // expt method hintedGet(LPolyCalc/RatTermVec;II)LPolyCalc/RatTerm; : // 687 samples - return: + return: parameter #0 : // ts parameter #1 : // i parameter #2 : // expt + method incremExpt(LPolyCalc/RatTermVec;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // vec + parameter #1 : // degree method incremExpt(LPolyCalc/RatTermVec;I)V : // 84 samples - return: + return: parameter #0 : // vec parameter #1 : // degree + method parse(Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // polyStr method parse(Ljava/lang/String;)LPolyCalc/RatPoly; : // 90 samples - return: + return: parameter #0 : // polyStr + method replaceExpt(LPolyCalc/RatTerm;LPolyCalc/RatTermVec;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // term + parameter #1 : // ts + parameter #2 : // index method replaceExpt(LPolyCalc/RatTerm;LPolyCalc/RatTermVec;I)V : // 500 samples - return: + return: parameter #0 : // term parameter #1 : // ts parameter #2 : // index + method scaleCoeff(LPolyCalc/RatTermVec;LPolyCalc/RatNum;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // vec + parameter #1 : // scalar method scaleCoeff(LPolyCalc/RatTermVec;LPolyCalc/RatNum;)V : // 106 samples - return: + return: parameter #0 : // vec parameter #1 : // scalar + method sortedAdd(LPolyCalc/RatTermVec;LPolyCalc/RatTerm;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // vec + parameter #1 : // newTerm method sortedAdd(LPolyCalc/RatTermVec;LPolyCalc/RatTerm;)V : // 379 samples - return: + return: parameter #0 : // vec parameter #1 : // newTerm + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 320 samples - return: + return: + method (LPolyCalc/RatTermVec;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // rt method (LPolyCalc/RatTermVec;)V : // 454 samples - return: + return: parameter #0 : // rt + method (II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // c + parameter #1 : // e method (II)V : // 263 samples - return: + return: parameter #0 : // c parameter #1 : // e + method add(LPolyCalc/RatPoly;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // p method add(LPolyCalc/RatPoly;)LPolyCalc/RatPoly; : // 343 samples - return: + return: parameter #0 : // p + method checkRep()V throws Ljava/lang/Throwable; : // 0 samples + return: method checkRep()V : // 7645 samples - return: + return: + method coeff(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // deg method coeff(I)LPolyCalc/RatNum; : // 789 samples - return: + return: parameter #0 : // deg + method degree()V throws Ljava/lang/Throwable; : // 0 samples + return: method degree()I : // 144 samples - return: + return: + method div(LPolyCalc/RatPoly;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // p method div(LPolyCalc/RatPoly;)LPolyCalc/RatPoly; : // 52 samples - return: + return: + parameter #0 : // p + method divAndRem(LPolyCalc/RatPoly;)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // p method divAndRem(LPolyCalc/RatPoly;)[LPolyCalc/RatPoly; : // 28 samples - return: + return: parameter #0 : // p + method eval(D)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // d method eval(D)D : // 21 samples - return: + return: parameter #0 : // d + method isNaN()V throws Ljava/lang/Throwable; : // 0 samples + return: method isNaN()Z : // 980 samples - return: + return: + method mul(LPolyCalc/RatPoly;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // p method mul(LPolyCalc/RatPoly;)LPolyCalc/RatPoly; : // 70 samples - return: + return: parameter #0 : // p + method negate()V throws Ljava/lang/Throwable; : // 0 samples + return: method negate()LPolyCalc/RatPoly; : // 22 samples - return: + return: + method scaleBy(LPolyCalc/RatTerm;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // scalar method scaleBy(LPolyCalc/RatTerm;)LPolyCalc/RatPoly; : // 84 samples - return: + return: parameter #0 : // scalar + method sub(LPolyCalc/RatPoly;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // p method sub(LPolyCalc/RatPoly;)LPolyCalc/RatPoly; : // 25 samples - return: + return: parameter #0 : // p + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 46 samples - return: + return: + method unparse()V throws Ljava/lang/Throwable; : // 0 samples + return: method unparse()Ljava/lang/String; : // 723 samples - return: + return: package PolyCalc: class RatTerm : // 3114/- obj/class samples field coeff : // PolyCalc.RatNum field expt : // int + method (LPolyCalc/RatNum;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // c + parameter #1 : // e method (LPolyCalc/RatNum;I)V : // 2190 samples - return: + return: parameter #0 : // c parameter #1 : // e + method debugPrint()V throws Ljava/lang/Throwable; : // 0 samples + return: method debugPrint()Ljava/lang/String; : // 231 samples - return: + return: + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj method equals(Ljava/lang/Object;)Z : // 0 samples - return: + return: parameter #0 : // obj + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 231 samples - return: + return: package PolyCalc: class RatTermVec : // 164488/- obj/class samples field wrapped : // java.util.ArrayList + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 1042 samples - return: + return: + method addElement(LPolyCalc/RatTerm;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t method addElement(LPolyCalc/RatTerm;)V : // 749 samples - return: + return: parameter #0 : // t + method copy()V throws Ljava/lang/Throwable; : // 0 samples + return: method copy()LPolyCalc/RatTermVec; : // 426 samples - return: + return: + method get(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method get(I)LPolyCalc/RatTerm; : // 37190 samples - return: + return: parameter #0 : // index + method insert(LPolyCalc/RatTerm;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t + parameter #1 : // index method insert(LPolyCalc/RatTerm;I)V : // 116 samples - return: + return: parameter #0 : // t parameter #1 : // index + method printDebug()V throws Ljava/lang/Throwable; : // 0 samples + return: method printDebug()Ljava/lang/String; : // 26 samples - return: + return: + method remove(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method remove(I)V : // 96 samples - return: + return: parameter #0 : // index + method set(LPolyCalc/RatTerm;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t + parameter #1 : // index method set(LPolyCalc/RatTerm;I)V : // 518 samples - return: + return: parameter #0 : // t parameter #1 : // index + method size()V throws Ljava/lang/Throwable; : // 0 samples + return: method size()I : // 42576 samples - return: + return: + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 26 samples - return: + return: diff --git a/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-chicory.goal b/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-chicory.goal index 259dee32e0..990c634cd3 100644 --- a/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-chicory.goal +++ b/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for PolyCalc.RatPolyStack -// Declarations written Thu Jun 04 13:29:11 PDT 2015 +// Declarations written Mon Jul 10 09:28:39 PDT 2017 decl-version 2.0 var-comparability none @@ -14,7 +14,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -67,7 +67,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -126,7 +126,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -185,7 +185,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -238,7 +238,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -289,6 +289,71 @@ variable return rep-type hashcode comparability 22 +ppt PolyCalc.RatPolyStack.pop():::THROW94 +ppt-type subexit +parent parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatPolyStack + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys + var-kind field polys + enclosing-var this + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.head + var-kind field head + enclosing-var this.polys + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail + var-kind field tail + enclosing-var this.polys + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.head + var-kind field head + enclosing-var this.polys.tail + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.tail + var-kind field tail + enclosing-var this.polys.tail + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatPolyStack.dup():::ENTER ppt-type enter parent parent PolyCalc.RatPolyStack:::OBJECT 1 @@ -296,7 +361,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -349,7 +414,60 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys + var-kind field polys + enclosing-var this + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.head + var-kind field head + enclosing-var this.polys + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail + var-kind field tail + enclosing-var this.polys + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.head + var-kind field head + enclosing-var this.polys.tail + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.tail + var-kind field tail + enclosing-var this.polys.tail + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 + +ppt PolyCalc.RatPolyStack.dup():::THROW111 +ppt-type subexit +parent parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatPolyStack + rep-type hashcode + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -394,6 +512,18 @@ variable this.size rep-type int comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatPolyStack.swap():::ENTER ppt-type enter @@ -402,7 +532,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -455,7 +585,60 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys + var-kind field polys + enclosing-var this + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.head + var-kind field head + enclosing-var this.polys + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail + var-kind field tail + enclosing-var this.polys + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.head + var-kind field head + enclosing-var this.polys.tail + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.tail + var-kind field tail + enclosing-var this.polys.tail + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 + +ppt PolyCalc.RatPolyStack.swap():::THROW126 +ppt-type subexit +parent parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatPolyStack + rep-type hashcode + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -500,6 +683,18 @@ variable this.size rep-type int comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatPolyStack.clear():::ENTER ppt-type enter @@ -508,7 +703,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -561,7 +756,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -614,7 +809,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -673,7 +868,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -730,6 +925,77 @@ variable return rep-type hashcode comparability 22 +ppt PolyCalc.RatPolyStack.get(int):::THROW154 +ppt-type subexit +parent parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatPolyStack + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys + var-kind field polys + enclosing-var this + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.head + var-kind field head + enclosing-var this.polys + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail + var-kind field tail + enclosing-var this.polys + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.head + var-kind field head + enclosing-var this.polys.tail + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.tail + var-kind field tail + enclosing-var this.polys.tail + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatPolyStack.add():::ENTER ppt-type enter parent parent PolyCalc.RatPolyStack:::OBJECT 1 @@ -737,7 +1003,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -790,7 +1056,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -843,7 +1109,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -896,7 +1162,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -949,7 +1215,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1002,7 +1268,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1055,7 +1321,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1108,7 +1374,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1161,7 +1427,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1214,7 +1480,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1272,7 +1538,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1331,7 +1597,7 @@ variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatPolyStack:::OBJECT 1 variable this.polys @@ -1412,13 +1678,155 @@ variable return.tail.tail rep-type hashcode comparability 22 +ppt PolyCalc.RatPolyStack.getCons(int):::THROW247 +ppt-type subexit +parent parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatPolyStack + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys + var-kind field polys + enclosing-var this + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.head + var-kind field head + enclosing-var this.polys + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail + var-kind field tail + enclosing-var this.polys + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.head + var-kind field head + enclosing-var this.polys.tail + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.tail + var-kind field tail + enclosing-var this.polys.tail + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt PolyCalc.RatPolyStack.getCons(int):::THROW238 +ppt-type subexit +parent parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatPolyStack + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys + var-kind field polys + enclosing-var this + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.head + var-kind field head + enclosing-var this.polys + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail + var-kind field tail + enclosing-var this.polys + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.head + var-kind field head + enclosing-var this.polys.tail + dec-type PolyCalc.RatPoly + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.polys.tail.tail + var-kind field tail + enclosing-var this.polys.tail + dec-type PolyCalc.Cons + rep-type hashcode + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable this.size + var-kind field size + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent PolyCalc.RatPolyStack:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatPolyStack:::OBJECT ppt-type object variable this var-kind variable dec-type PolyCalc.RatPolyStack rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.polys var-kind field polys @@ -1503,7 +1911,7 @@ variable this var-kind variable dec-type PolyCalc.Cons rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.Cons:::OBJECT 1 variable this.head @@ -1591,7 +1999,7 @@ variable this var-kind variable dec-type PolyCalc.Cons rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.head var-kind field head @@ -1638,7 +2046,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 0 this -1543895357 +2012993836 1 this.polys null @@ -1663,7 +2071,7 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 1 this -1543895357 +2012993836 1 this.polys null @@ -1688,7 +2096,7 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 1 this -1543895357 +2012993836 1 this.polys null @@ -1720,7 +2128,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 2 this -310175167 +1740797075 1 this.polys null @@ -1745,7 +2153,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 3 this -310175167 +1740797075 1 this.polys null @@ -1766,14 +2174,14 @@ this.size 0 1 p -1171220500 +440938038 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 4 h -1171220500 +440938038 1 t null @@ -1795,10 +2203,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 4 this -867835098 +1922464006 1 this.head -1171220500 +440938038 1 this.tail null @@ -1816,7 +2224,7 @@ this.tail.tail.tail nonsensical 2 h -1171220500 +440938038 1 t null @@ -1838,13 +2246,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 3 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -1859,20 +2267,20 @@ this.size 1 1 p -1171220500 +440938038 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 5 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -1891,13 +2299,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 5 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -1919,13 +2327,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 6 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -1947,13 +2355,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 7 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -1975,13 +2383,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 7 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -1999,10 +2407,10 @@ index 0 1 return -867835098 +1922464006 1 return.head -1171220500 +440938038 1 return.tail null @@ -2018,13 +2426,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 6 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -2042,20 +2450,20 @@ index 0 1 return -1171220500 +440938038 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 8 this -310175167 +1740797075 1 this.polys -867835098 +1922464006 1 this.polys.head -1171220500 +440938038 1 this.polys.tail null @@ -2070,20 +2478,20 @@ this.size 1 1 p -1171220500 +440938038 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 9 h -1171220500 +440938038 1 t -867835098 +1922464006 1 t.head -1171220500 +440938038 1 t.tail null @@ -2099,16 +2507,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 9 this -2143045309 +1536031937 1 this.head -1171220500 +440938038 1 this.tail -867835098 +1922464006 1 this.tail.head -1171220500 +440938038 1 this.tail.tail null @@ -2120,13 +2528,13 @@ this.tail.tail.tail nonsensical 2 h -1171220500 +440938038 1 t -867835098 +1922464006 1 t.head -1171220500 +440938038 1 t.tail null @@ -2142,19 +2550,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 8 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2163,26 +2571,26 @@ this.size 2 1 p -1171220500 +440938038 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 10 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2195,19 +2603,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 10 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2223,19 +2631,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 11 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2251,19 +2659,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 12 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2279,19 +2687,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 12 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2303,16 +2711,16 @@ index 0 1 return -2143045309 +1536031937 1 return.head -1171220500 +440938038 1 return.tail -867835098 +1922464006 1 return.tail.head -1171220500 +440938038 1 return.tail.tail null @@ -2322,19 +2730,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 11 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2346,26 +2754,26 @@ index 0 1 return -1171220500 +440938038 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 13 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2381,19 +2789,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 14 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2409,19 +2817,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 14 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2433,10 +2841,10 @@ index 0 1 return -867835098 +1922464006 1 return.head -1171220500 +440938038 1 return.tail null @@ -2452,19 +2860,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 13 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2476,26 +2884,26 @@ index 1 1 return -1171220500 +440938038 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 15 this -310175167 +1740797075 1 this.polys -2143045309 +1536031937 1 this.polys.head -1171220500 +440938038 1 this.polys.tail -867835098 +1922464006 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail null @@ -2504,26 +2912,26 @@ this.size 2 1 p -566780879 +798981583 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 16 h -566780879 +798981583 1 t -2143045309 +1536031937 1 t.head -1171220500 +440938038 1 t.tail -867835098 +1922464006 1 t.tail.head -1171220500 +440938038 1 t.tail.tail null @@ -2533,40 +2941,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 16 this -1796258908 +1954406292 1 this.head -566780879 +798981583 1 this.tail -2143045309 +1536031937 1 this.tail.head -1171220500 +440938038 1 this.tail.tail -867835098 +1922464006 1 this.tail.tail.head -1171220500 +440938038 1 this.tail.tail.tail null 1 h -566780879 +798981583 1 t -2143045309 +1536031937 1 t.head -1171220500 +440938038 1 t.tail -867835098 +1922464006 1 t.tail.head -1171220500 +440938038 1 t.tail.tail null @@ -2576,50 +2984,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 15 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 1 p -566780879 +798981583 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 17 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2629,22 +3037,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 17 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2657,22 +3065,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 18 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2685,22 +3093,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 19 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2713,22 +3121,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 19 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2737,41 +3145,41 @@ index 0 1 return -1796258908 +1954406292 1 return.head -566780879 +798981583 1 return.tail -2143045309 +1536031937 1 return.tail.head -1171220500 +440938038 1 return.tail.tail -867835098 +1922464006 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 18 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2780,29 +3188,29 @@ index 0 1 return -566780879 +798981583 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 20 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2815,22 +3223,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 21 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2843,22 +3251,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 21 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2867,16 +3275,16 @@ index 0 1 return -2143045309 +1536031937 1 return.head -1171220500 +440938038 1 return.tail -867835098 +1922464006 1 return.tail.head -1171220500 +440938038 1 return.tail.tail null @@ -2886,22 +3294,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 20 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2910,29 +3318,29 @@ index 1 1 return -1171220500 +440938038 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 22 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2945,22 +3353,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 23 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2973,22 +3381,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 23 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -2997,10 +3405,10 @@ index 0 1 return -867835098 +1922464006 1 return.head -1171220500 +440938038 1 return.tail null @@ -3016,22 +3424,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 22 this -310175167 +1740797075 1 this.polys -1796258908 +1954406292 1 this.polys.head -566780879 +798981583 1 this.polys.tail -2143045309 +1536031937 1 this.polys.tail.head -1171220500 +440938038 1 this.polys.tail.tail -867835098 +1922464006 1 this.size 3 @@ -3040,7 +3448,7 @@ index 2 1 return -1171220500 +440938038 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -3051,7 +3459,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 24 this -398357230 +904058452 1 this.polys null @@ -3076,7 +3484,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 25 this -398357230 +904058452 1 this.polys null @@ -3097,14 +3505,14 @@ this.size 0 1 p -1483436911 +29183965 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 26 h -1483436911 +29183965 1 t null @@ -3126,10 +3534,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 26 this -1986505154 +1427651360 1 this.head -1483436911 +29183965 1 this.tail null @@ -3147,7 +3555,7 @@ this.tail.tail.tail nonsensical 2 h -1483436911 +29183965 1 t null @@ -3169,13 +3577,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 25 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3190,20 +3598,20 @@ this.size 1 1 p -1483436911 +29183965 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 27 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3222,13 +3630,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 27 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3250,13 +3658,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 28 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3278,13 +3686,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 29 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3306,13 +3714,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 29 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3330,10 +3738,10 @@ index 0 1 return -1986505154 +1427651360 1 return.head -1483436911 +29183965 1 return.tail null @@ -3349,13 +3757,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 28 this -398357230 +904058452 1 this.polys -1986505154 +1427651360 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3373,7 +3781,7 @@ index 0 1 return -1483436911 +29183965 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -3384,7 +3792,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 30 this -263863369 +1334042472 1 this.polys null @@ -3409,7 +3817,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 31 this -263863369 +1334042472 1 this.polys null @@ -3430,14 +3838,14 @@ this.size 0 1 p -1483436911 +29183965 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 32 h -1483436911 +29183965 1 t null @@ -3459,10 +3867,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 32 this -197911728 +1827725498 1 this.head -1483436911 +29183965 1 this.tail null @@ -3480,7 +3888,7 @@ this.tail.tail.tail nonsensical 2 h -1483436911 +29183965 1 t null @@ -3502,13 +3910,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 31 this -263863369 +1334042472 1 this.polys -197911728 +1827725498 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3523,20 +3931,20 @@ this.size 1 1 p -1483436911 +29183965 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 33 this -263863369 +1334042472 1 this.polys -197911728 +1827725498 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -3551,20 +3959,20 @@ this.size 1 1 p -1997726940 +131635550 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 34 h -1997726940 +131635550 1 t -197911728 +1827725498 1 t.head -1483436911 +29183965 1 t.tail null @@ -3580,16 +3988,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 34 this -2037343382 +319644606 1 this.head -1997726940 +131635550 1 this.tail -197911728 +1827725498 1 this.tail.head -1483436911 +29183965 1 this.tail.tail null @@ -3601,13 +4009,13 @@ this.tail.tail.tail nonsensical 2 h -1997726940 +131635550 1 t -197911728 +1827725498 1 t.head -1483436911 +29183965 1 t.tail null @@ -3623,19 +4031,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 33 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3644,26 +4052,26 @@ this.size 2 1 p -1997726940 +131635550 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 35 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3676,19 +4084,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 35 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3704,19 +4112,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 36 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3732,19 +4140,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 37 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3760,19 +4168,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 37 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3784,16 +4192,16 @@ index 0 1 return -2037343382 +319644606 1 return.head -1997726940 +131635550 1 return.tail -197911728 +1827725498 1 return.tail.head -1483436911 +29183965 1 return.tail.tail null @@ -3803,19 +4211,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 36 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3827,26 +4235,26 @@ index 0 1 return -1997726940 +131635550 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 38 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3862,19 +4270,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 39 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3890,19 +4298,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 39 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3914,10 +4322,10 @@ index 0 1 return -197911728 +1827725498 1 return.head -1483436911 +29183965 1 return.tail null @@ -3933,19 +4341,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 38 this -263863369 +1334042472 1 this.polys -2037343382 +319644606 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -197911728 +1827725498 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -3957,7 +4365,7 @@ index 1 1 return -1483436911 +29183965 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -3968,7 +4376,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 40 this -3469859 +1118078504 1 this.polys null @@ -3993,7 +4401,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 41 this -3469859 +1118078504 1 this.polys null @@ -4014,14 +4422,14 @@ this.size 0 1 p -1483436911 +29183965 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 42 h -1483436911 +29183965 1 t null @@ -4043,10 +4451,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 42 this -335861744 +691690486 1 this.head -1483436911 +29183965 1 this.tail null @@ -4064,7 +4472,7 @@ this.tail.tail.tail nonsensical 2 h -1483436911 +29183965 1 t null @@ -4086,13 +4494,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 41 this -3469859 +1118078504 1 this.polys -335861744 +691690486 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -4107,20 +4515,20 @@ this.size 1 1 p -1483436911 +29183965 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 43 this -3469859 +1118078504 1 this.polys -335861744 +691690486 1 this.polys.head -1483436911 +29183965 1 this.polys.tail null @@ -4135,20 +4543,20 @@ this.size 1 1 p -1997726940 +131635550 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 44 h -1997726940 +131635550 1 t -335861744 +691690486 1 t.head -1483436911 +29183965 1 t.tail null @@ -4164,16 +4572,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 44 this -1241307092 +1793799654 1 this.head -1997726940 +131635550 1 this.tail -335861744 +691690486 1 this.tail.head -1483436911 +29183965 1 this.tail.tail null @@ -4185,13 +4593,13 @@ this.tail.tail.tail nonsensical 2 h -1997726940 +131635550 1 t -335861744 +691690486 1 t.head -1483436911 +29183965 1 t.tail null @@ -4207,19 +4615,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 43 this -3469859 +1118078504 1 this.polys -1241307092 +1793799654 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -335861744 +691690486 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -4228,26 +4636,26 @@ this.size 2 1 p -1997726940 +131635550 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 45 this -3469859 +1118078504 1 this.polys -1241307092 +1793799654 1 this.polys.head -1997726940 +131635550 1 this.polys.tail -335861744 +691690486 1 this.polys.tail.head -1483436911 +29183965 1 this.polys.tail.tail null @@ -4256,26 +4664,26 @@ this.size 2 1 p -566780879 +798981583 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 46 h -566780879 +798981583 1 t -1241307092 +1793799654 1 t.head -1997726940 +131635550 1 t.tail -335861744 +691690486 1 t.tail.head -1483436911 +29183965 1 t.tail.tail null @@ -4285,40 +4693,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 46 this -1992148286 +310623126 1 this.head -566780879 +798981583 1 this.tail -1241307092 +1793799654 1 this.tail.head -1997726940 +131635550 1 this.tail.tail -335861744 +691690486 1 this.tail.tail.head -1483436911 +29183965 1 this.tail.tail.tail null 1 h -566780879 +798981583 1 t -1241307092 +1793799654 1 t.head -1997726940 +131635550 1 t.tail -335861744 +691690486 1 t.tail.head -1483436911 +29183965 1 t.tail.tail null @@ -4328,50 +4736,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 45 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 1 p -566780879 +798981583 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 47 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4381,22 +4789,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 47 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4409,22 +4817,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 48 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4437,22 +4845,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 49 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4465,22 +4873,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 49 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4489,41 +4897,41 @@ index 0 1 return -1992148286 +310623126 1 return.head -566780879 +798981583 1 return.tail -1241307092 +1793799654 1 return.tail.head -1997726940 +131635550 1 return.tail.tail -335861744 +691690486 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 48 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4532,29 +4940,29 @@ index 0 1 return -566780879 +798981583 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 50 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4567,22 +4975,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 51 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4595,22 +5003,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 51 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4619,16 +5027,16 @@ index 0 1 return -1241307092 +1793799654 1 return.head -1997726940 +131635550 1 return.tail -335861744 +691690486 1 return.tail.head -1483436911 +29183965 1 return.tail.tail null @@ -4638,22 +5046,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 50 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4662,29 +5070,29 @@ index 1 1 return -1997726940 +131635550 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 52 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4697,22 +5105,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 53 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4725,22 +5133,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 53 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4749,10 +5157,10 @@ index 0 1 return -335861744 +691690486 1 return.head -1483436911 +29183965 1 return.tail null @@ -4768,22 +5176,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 52 this -3469859 +1118078504 1 this.polys -1992148286 +310623126 1 this.polys.head -566780879 +798981583 1 this.polys.tail -1241307092 +1793799654 1 this.polys.tail.head -1997726940 +131635550 1 this.polys.tail.tail -335861744 +691690486 1 this.size 3 @@ -4792,7 +5200,7 @@ index 2 1 return -1483436911 +29183965 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -4803,7 +5211,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 54 this -618702425 +1961945640 1 this.polys null @@ -4832,7 +5240,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 55 this -415838201 +258931371 1 this.polys null @@ -4857,7 +5265,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 56 this -415838201 +258931371 1 this.polys null @@ -4878,14 +5286,14 @@ this.size 0 1 p -1080856869 +1008315045 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 57 h -1080856869 +1008315045 1 t null @@ -4907,10 +5315,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 57 this -397227310 +860481979 1 this.head -1080856869 +1008315045 1 this.tail null @@ -4928,7 +5336,7 @@ this.tail.tail.tail nonsensical 2 h -1080856869 +1008315045 1 t null @@ -4950,13 +5358,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 56 this -415838201 +258931371 1 this.polys -397227310 +860481979 1 this.polys.head -1080856869 +1008315045 1 this.polys.tail null @@ -4971,20 +5379,20 @@ this.size 1 1 p -1080856869 +1008315045 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 58 this -415838201 +258931371 1 this.polys -397227310 +860481979 1 this.polys.head -1080856869 +1008315045 1 this.polys.tail null @@ -4999,20 +5407,20 @@ this.size 1 1 p -1820224294 +1083962448 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 59 h -1820224294 +1083962448 1 t -397227310 +860481979 1 t.head -1080856869 +1008315045 1 t.tail null @@ -5028,16 +5436,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 59 this -1605157743 +953742666 1 this.head -1820224294 +1083962448 1 this.tail -397227310 +860481979 1 this.tail.head -1080856869 +1008315045 1 this.tail.tail null @@ -5049,13 +5457,13 @@ this.tail.tail.tail nonsensical 2 h -1820224294 +1083962448 1 t -397227310 +860481979 1 t.head -1080856869 +1008315045 1 t.tail null @@ -5071,19 +5479,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 58 this -415838201 +258931371 1 this.polys -1605157743 +953742666 1 this.polys.head -1820224294 +1083962448 1 this.polys.tail -397227310 +860481979 1 this.polys.tail.head -1080856869 +1008315045 1 this.polys.tail.tail null @@ -5092,26 +5500,26 @@ this.size 2 1 p -1820224294 +1083962448 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 60 this -415838201 +258931371 1 this.polys -1605157743 +953742666 1 this.polys.head -1820224294 +1083962448 1 this.polys.tail -397227310 +860481979 1 this.polys.tail.head -1080856869 +1008315045 1 this.polys.tail.tail null @@ -5120,26 +5528,26 @@ this.size 2 1 p -1196612987 +1239759990 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 61 h -1196612987 +1239759990 1 t -1605157743 +953742666 1 t.head -1820224294 +1083962448 1 t.tail -397227310 +860481979 1 t.tail.head -1080856869 +1008315045 1 t.tail.tail null @@ -5149,40 +5557,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 61 this -290118354 +891093184 1 this.head -1196612987 +1239759990 1 this.tail -1605157743 +953742666 1 this.tail.head -1820224294 +1083962448 1 this.tail.tail -397227310 +860481979 1 this.tail.tail.head -1080856869 +1008315045 1 this.tail.tail.tail null 1 h -1196612987 +1239759990 1 t -1605157743 +953742666 1 t.head -1820224294 +1083962448 1 t.tail -397227310 +860481979 1 t.tail.head -1080856869 +1008315045 1 t.tail.tail null @@ -5192,35 +5600,35 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 60 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 1 p -1196612987 +1239759990 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 62 this -618702425 +1961945640 1 this.polys null @@ -5245,7 +5653,7 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 62 this -618702425 +1961945640 1 this.polys null @@ -5273,22 +5681,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 63 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5298,22 +5706,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 63 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5326,22 +5734,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 64 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5354,22 +5762,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 65 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5382,22 +5790,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 65 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5406,41 +5814,41 @@ index 0 1 return -290118354 +891093184 1 return.head -1196612987 +1239759990 1 return.tail -1605157743 +953742666 1 return.tail.head -1820224294 +1083962448 1 return.tail.tail -397227310 +860481979 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 64 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5449,29 +5857,29 @@ index 0 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 66 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5484,22 +5892,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 67 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5512,22 +5920,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 67 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5536,16 +5944,16 @@ index 0 1 return -1605157743 +953742666 1 return.head -1820224294 +1083962448 1 return.tail -397227310 +860481979 1 return.tail.head -1080856869 +1008315045 1 return.tail.tail null @@ -5555,22 +5963,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 66 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5579,29 +5987,29 @@ index 1 1 return -1820224294 +1083962448 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 68 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5614,22 +6022,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 69 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5642,22 +6050,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 69 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5666,10 +6074,10 @@ index 0 1 return -397227310 +860481979 1 return.head -1080856869 +1008315045 1 return.tail null @@ -5685,22 +6093,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 68 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -5709,14 +6117,14 @@ index 2 1 return -1080856869 +1008315045 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 70 this -618702425 +1961945640 1 this.polys null @@ -5737,14 +6145,14 @@ this.size 0 1 p -1231296988 +708533063 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 71 h -1231296988 +708533063 1 t null @@ -5766,10 +6174,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 71 this -1256054824 +1438030319 1 this.head -1231296988 +708533063 1 this.tail null @@ -5787,7 +6195,7 @@ this.tail.tail.tail nonsensical 2 h -1231296988 +708533063 1 t null @@ -5809,13 +6217,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 70 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -5830,20 +6238,20 @@ this.size 1 1 p -1231296988 +708533063 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 72 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -5862,13 +6270,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 72 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -5890,13 +6298,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 73 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -5918,13 +6326,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 74 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -5946,13 +6354,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 74 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -5970,10 +6378,10 @@ index 0 1 return -1256054824 +1438030319 1 return.head -1231296988 +708533063 1 return.tail null @@ -5989,13 +6397,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 73 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -6013,29 +6421,29 @@ index 0 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 75 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6045,22 +6453,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 75 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6073,22 +6481,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 76 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6101,22 +6509,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 77 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6129,22 +6537,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 77 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6153,41 +6561,41 @@ index 0 1 return -290118354 +891093184 1 return.head -1196612987 +1239759990 1 return.tail -1605157743 +953742666 1 return.tail.head -1820224294 +1083962448 1 return.tail.tail -397227310 +860481979 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 76 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6196,29 +6604,29 @@ index 0 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 78 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6231,22 +6639,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 79 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6259,22 +6667,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 79 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6283,16 +6691,16 @@ index 0 1 return -1605157743 +953742666 1 return.head -1820224294 +1083962448 1 return.tail -397227310 +860481979 1 return.tail.head -1080856869 +1008315045 1 return.tail.tail null @@ -6302,22 +6710,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 78 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6326,29 +6734,29 @@ index 1 1 return -1820224294 +1083962448 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 80 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6361,22 +6769,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 81 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6389,22 +6797,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 81 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6413,10 +6821,10 @@ index 0 1 return -397227310 +860481979 1 return.head -1080856869 +1008315045 1 return.tail null @@ -6432,22 +6840,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 80 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6456,20 +6864,20 @@ index 2 1 return -1080856869 +1008315045 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 82 this -618702425 +1961945640 1 this.polys -1256054824 +1438030319 1 this.polys.head -1231296988 +708533063 1 this.polys.tail null @@ -6484,20 +6892,20 @@ this.size 1 1 p -1231296988 +708533063 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 83 h -1231296988 +708533063 1 t -1256054824 +1438030319 1 t.head -1231296988 +708533063 1 t.tail null @@ -6513,16 +6921,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 83 this -749176958 +902830499 1 this.head -1231296988 +708533063 1 this.tail -1256054824 +1438030319 1 this.tail.head -1231296988 +708533063 1 this.tail.tail null @@ -6534,13 +6942,13 @@ this.tail.tail.tail nonsensical 2 h -1231296988 +708533063 1 t -1256054824 +1438030319 1 t.head -1231296988 +708533063 1 t.tail null @@ -6556,19 +6964,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 82 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6577,26 +6985,26 @@ this.size 2 1 p -1231296988 +708533063 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 84 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6609,19 +7017,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 84 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6637,19 +7045,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 85 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6665,19 +7073,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 86 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6693,19 +7101,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 86 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6717,16 +7125,16 @@ index 0 1 return -749176958 +902830499 1 return.head -1231296988 +708533063 1 return.tail -1256054824 +1438030319 1 return.tail.head -1231296988 +708533063 1 return.tail.tail null @@ -6736,19 +7144,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 85 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6760,26 +7168,26 @@ index 0 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 87 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6795,19 +7203,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 88 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6823,19 +7231,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 88 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6847,10 +7255,10 @@ index 0 1 return -1256054824 +1438030319 1 return.head -1231296988 +708533063 1 return.tail null @@ -6866,19 +7274,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 87 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -6890,29 +7298,29 @@ index 1 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 89 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6922,22 +7330,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 89 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6950,22 +7358,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 90 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -6978,22 +7386,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 91 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7006,22 +7414,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 91 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7030,41 +7438,41 @@ index 0 1 return -290118354 +891093184 1 return.head -1196612987 +1239759990 1 return.tail -1605157743 +953742666 1 return.tail.head -1820224294 +1083962448 1 return.tail.tail -397227310 +860481979 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 90 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7073,29 +7481,29 @@ index 0 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 92 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7108,22 +7516,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 93 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7136,22 +7544,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 93 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7160,16 +7568,16 @@ index 0 1 return -1605157743 +953742666 1 return.head -1820224294 +1083962448 1 return.tail -397227310 +860481979 1 return.tail.head -1080856869 +1008315045 1 return.tail.tail null @@ -7179,22 +7587,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 92 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7203,29 +7611,29 @@ index 1 1 return -1820224294 +1083962448 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 94 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7238,22 +7646,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 95 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7266,22 +7674,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 95 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7290,10 +7698,10 @@ index 0 1 return -397227310 +860481979 1 return.head -1080856869 +1008315045 1 return.tail null @@ -7309,22 +7717,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 94 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7333,26 +7741,26 @@ index 2 1 return -1080856869 +1008315045 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 96 this -618702425 +1961945640 1 this.polys -749176958 +902830499 1 this.polys.head -1231296988 +708533063 1 this.polys.tail -1256054824 +1438030319 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail null @@ -7361,26 +7769,26 @@ this.size 2 1 p -1196612987 +1239759990 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 97 h -1196612987 +1239759990 1 t -749176958 +902830499 1 t.head -1231296988 +708533063 1 t.tail -1256054824 +1438030319 1 t.tail.head -1231296988 +708533063 1 t.tail.tail null @@ -7390,40 +7798,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 97 this -720510745 +1754662105 1 this.head -1196612987 +1239759990 1 this.tail -749176958 +902830499 1 this.tail.head -1231296988 +708533063 1 this.tail.tail -1256054824 +1438030319 1 this.tail.tail.head -1231296988 +708533063 1 this.tail.tail.tail null 1 h -1196612987 +1239759990 1 t -749176958 +902830499 1 t.head -1231296988 +708533063 1 t.tail -1256054824 +1438030319 1 t.tail.head -1231296988 +708533063 1 t.tail.tail null @@ -7433,50 +7841,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 96 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 1 p -1196612987 +1239759990 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 98 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7486,22 +7894,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 98 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7514,22 +7922,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 99 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7542,22 +7950,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 100 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7570,22 +7978,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 100 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7594,41 +8002,41 @@ index 0 1 return -720510745 +1754662105 1 return.head -1196612987 +1239759990 1 return.tail -749176958 +902830499 1 return.tail.head -1231296988 +708533063 1 return.tail.tail -1256054824 +1438030319 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 99 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7637,29 +8045,29 @@ index 0 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 101 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7672,22 +8080,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 102 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7700,22 +8108,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 102 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7724,16 +8132,16 @@ index 0 1 return -749176958 +902830499 1 return.head -1231296988 +708533063 1 return.tail -1256054824 +1438030319 1 return.tail.head -1231296988 +708533063 1 return.tail.tail null @@ -7743,22 +8151,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 101 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7767,29 +8175,29 @@ index 1 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 103 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7802,22 +8210,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 104 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7830,22 +8238,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 104 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7854,10 +8262,10 @@ index 0 1 return -1256054824 +1438030319 1 return.head -1231296988 +708533063 1 return.tail null @@ -7873,22 +8281,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 103 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -7897,29 +8305,29 @@ index 2 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 105 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7929,22 +8337,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 105 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7957,22 +8365,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 106 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -7985,22 +8393,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 107 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8013,22 +8421,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 107 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8037,41 +8445,41 @@ index 0 1 return -290118354 +891093184 1 return.head -1196612987 +1239759990 1 return.tail -1605157743 +953742666 1 return.tail.head -1820224294 +1083962448 1 return.tail.tail -397227310 +860481979 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 106 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8080,29 +8488,29 @@ index 0 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 108 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8115,22 +8523,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 109 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8143,22 +8551,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 109 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8167,16 +8575,16 @@ index 0 1 return -1605157743 +953742666 1 return.head -1820224294 +1083962448 1 return.tail -397227310 +860481979 1 return.tail.head -1080856869 +1008315045 1 return.tail.tail null @@ -8186,22 +8594,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 108 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8210,29 +8618,29 @@ index 1 1 return -1820224294 +1083962448 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 110 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8245,22 +8653,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 111 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8273,22 +8681,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 111 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8297,10 +8705,10 @@ index 0 1 return -397227310 +860481979 1 return.head -1080856869 +1008315045 1 return.tail null @@ -8316,22 +8724,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 110 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 @@ -8340,150 +8748,150 @@ index 2 1 return -1080856869 +1008315045 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 112 this -415838201 +258931371 1 this.polys -290118354 +891093184 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -1605157743 +953742666 1 this.polys.tail.head -1820224294 +1083962448 1 this.polys.tail.tail -397227310 +860481979 1 this.size 3 1 p -2111289429 +403147759 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 113 h -2111289429 +403147759 1 t -290118354 +891093184 1 t.head -1196612987 +1239759990 1 t.tail -1605157743 +953742666 1 t.tail.head -1820224294 +1083962448 1 t.tail.tail -397227310 +860481979 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 113 this -1569133822 +2040467681 1 this.head -2111289429 +403147759 1 this.tail -290118354 +891093184 1 this.tail.head -1196612987 +1239759990 1 this.tail.tail -1605157743 +953742666 1 this.tail.tail.head -1820224294 +1083962448 1 this.tail.tail.tail -397227310 +860481979 1 h -2111289429 +403147759 1 t -290118354 +891093184 1 t.head -1196612987 +1239759990 1 t.tail -1605157743 +953742666 1 t.tail.head -1820224294 +1083962448 1 t.tail.tail -397227310 +860481979 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 112 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 1 p -2111289429 +403147759 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 114 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8493,22 +8901,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 114 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8521,22 +8929,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 115 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8549,22 +8957,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 116 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8577,22 +8985,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 116 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8601,41 +9009,41 @@ index 0 1 return -720510745 +1754662105 1 return.head -1196612987 +1239759990 1 return.tail -749176958 +902830499 1 return.tail.head -1231296988 +708533063 1 return.tail.tail -1256054824 +1438030319 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 115 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8644,29 +9052,29 @@ index 0 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 117 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8679,22 +9087,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 118 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8707,22 +9115,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 118 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8731,16 +9139,16 @@ index 0 1 return -749176958 +902830499 1 return.head -1231296988 +708533063 1 return.tail -1256054824 +1438030319 1 return.tail.head -1231296988 +708533063 1 return.tail.tail null @@ -8750,22 +9158,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 117 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8774,29 +9182,29 @@ index 1 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 119 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8809,22 +9217,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 120 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8837,22 +9245,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 120 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8861,10 +9269,10 @@ index 0 1 return -1256054824 +1438030319 1 return.head -1231296988 +708533063 1 return.tail null @@ -8880,22 +9288,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 119 this -618702425 +1961945640 1 this.polys -720510745 +1754662105 1 this.polys.head -1196612987 +1239759990 1 this.polys.tail -749176958 +902830499 1 this.polys.tail.head -1231296988 +708533063 1 this.polys.tail.tail -1256054824 +1438030319 1 this.size 3 @@ -8904,29 +9312,29 @@ index 2 1 return -1231296988 +708533063 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 121 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -8936,22 +9344,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 121 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -8964,22 +9372,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 122 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -8992,22 +9400,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 123 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9020,22 +9428,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 123 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9044,41 +9452,41 @@ index 0 1 return -1569133822 +2040467681 1 return.head -2111289429 +403147759 1 return.tail -290118354 +891093184 1 return.tail.head -1196612987 +1239759990 1 return.tail.tail -1605157743 +953742666 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 122 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9087,29 +9495,29 @@ index 0 1 return -2111289429 +403147759 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 124 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9122,22 +9530,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 125 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9150,22 +9558,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 125 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9174,41 +9582,41 @@ index 0 1 return -290118354 +891093184 1 return.head -1196612987 +1239759990 1 return.tail -1605157743 +953742666 1 return.tail.head -1820224294 +1083962448 1 return.tail.tail -397227310 +860481979 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 124 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9217,29 +9625,29 @@ index 1 1 return -1196612987 +1239759990 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 126 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9252,22 +9660,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 127 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9280,22 +9688,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 127 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9304,16 +9712,16 @@ index 0 1 return -1605157743 +953742666 1 return.head -1820224294 +1083962448 1 return.tail -397227310 +860481979 1 return.tail.head -1080856869 +1008315045 1 return.tail.tail null @@ -9323,22 +9731,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 126 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9347,29 +9755,29 @@ index 2 1 return -1820224294 +1083962448 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 128 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9382,22 +9790,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 129 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9410,22 +9818,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 129 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9434,10 +9842,10 @@ index 0 1 return -397227310 +860481979 1 return.head -1080856869 +1008315045 1 return.tail null @@ -9453,22 +9861,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 128 this -415838201 +258931371 1 this.polys -1569133822 +2040467681 1 this.polys.head -2111289429 +403147759 1 this.polys.tail -290118354 +891093184 1 this.polys.tail.head -1196612987 +1239759990 1 this.polys.tail.tail -1605157743 +953742666 1 this.size 4 @@ -9477,7 +9885,7 @@ index 3 1 return -1080856869 +1008315045 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -9488,7 +9896,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 130 this -1332961194 +1278677872 1 this.polys null @@ -9513,7 +9921,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 131 this -1332961194 +1278677872 1 this.polys null @@ -9534,14 +9942,14 @@ this.size 0 1 p -529382054 +341796579 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 132 h -529382054 +341796579 1 t null @@ -9563,10 +9971,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 132 this -299432057 +807657332 1 this.head -529382054 +341796579 1 this.tail null @@ -9584,7 +9992,7 @@ this.tail.tail.tail nonsensical 2 h -529382054 +341796579 1 t null @@ -9606,13 +10014,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 131 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -9627,20 +10035,20 @@ this.size 1 1 p -529382054 +341796579 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 133 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -9655,20 +10063,20 @@ this.size 1 1 p -1000397078 +825936265 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 134 h -1000397078 +825936265 1 t -299432057 +807657332 1 t.head -529382054 +341796579 1 t.tail null @@ -9684,16 +10092,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 134 this -1024217583 +1164107853 1 this.head -1000397078 +825936265 1 this.tail -299432057 +807657332 1 this.tail.head -529382054 +341796579 1 this.tail.tail null @@ -9705,13 +10113,13 @@ this.tail.tail.tail nonsensical 2 h -1000397078 +825936265 1 t -299432057 +807657332 1 t.head -529382054 +341796579 1 t.tail null @@ -9727,19 +10135,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 133 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -9748,26 +10156,26 @@ this.size 2 1 p -1000397078 +825936265 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 135 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -9776,26 +10184,26 @@ this.size 2 1 p -1943486776 +711327356 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 136 h -1943486776 +711327356 1 t -1024217583 +1164107853 1 t.head -1000397078 +825936265 1 t.tail -299432057 +807657332 1 t.tail.head -529382054 +341796579 1 t.tail.tail null @@ -9805,40 +10213,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 136 this -955973362 +68377659 1 this.head -1943486776 +711327356 1 this.tail -1024217583 +1164107853 1 this.tail.head -1000397078 +825936265 1 this.tail.tail -299432057 +807657332 1 this.tail.tail.head -529382054 +341796579 1 this.tail.tail.tail null 1 h -1943486776 +711327356 1 t -1024217583 +1164107853 1 t.head -1000397078 +825936265 1 t.tail -299432057 +807657332 1 t.tail.head -529382054 +341796579 1 t.tail.tail null @@ -9848,50 +10256,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 135 this -1332961194 +1278677872 1 this.polys -955973362 +68377659 1 this.polys.head -1943486776 +711327356 1 this.polys.tail -1024217583 +1164107853 1 this.polys.tail.head -1000397078 +825936265 1 this.polys.tail.tail -299432057 +807657332 1 this.size 3 1 p -1943486776 +711327356 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 137 this -1332961194 +1278677872 1 this.polys -955973362 +68377659 1 this.polys.head -1943486776 +711327356 1 this.polys.tail -1024217583 +1164107853 1 this.polys.tail.head -1000397078 +825936265 1 this.polys.tail.tail -299432057 +807657332 1 this.size 3 @@ -9901,19 +10309,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 137 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -9922,26 +10330,26 @@ this.size 2 1 return -1943486776 +711327356 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 138 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -9954,19 +10362,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 138 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -9982,19 +10390,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 139 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10010,19 +10418,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 140 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10038,19 +10446,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 140 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10062,16 +10470,16 @@ index 0 1 return -1024217583 +1164107853 1 return.head -1000397078 +825936265 1 return.tail -299432057 +807657332 1 return.tail.head -529382054 +341796579 1 return.tail.tail null @@ -10081,19 +10489,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 139 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10105,26 +10513,26 @@ index 0 1 return -1000397078 +825936265 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 141 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10140,19 +10548,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 142 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10168,19 +10576,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 142 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10192,10 +10600,10 @@ index 0 1 return -299432057 +807657332 1 return.head -529382054 +341796579 1 return.tail null @@ -10211,19 +10619,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 141 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10235,26 +10643,26 @@ index 1 1 return -529382054 +341796579 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 143 this -1332961194 +1278677872 1 this.polys -1024217583 +1164107853 1 this.polys.head -1000397078 +825936265 1 this.polys.tail -299432057 +807657332 1 this.polys.tail.head -529382054 +341796579 1 this.polys.tail.tail null @@ -10267,13 +10675,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 143 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10288,20 +10696,20 @@ this.size 1 1 return -1000397078 +825936265 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 144 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10320,13 +10728,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 144 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10348,13 +10756,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 145 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10376,13 +10784,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 146 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10404,13 +10812,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 146 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10428,10 +10836,10 @@ index 0 1 return -299432057 +807657332 1 return.head -529382054 +341796579 1 return.tail null @@ -10447,13 +10855,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 145 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10471,20 +10879,20 @@ index 0 1 return -529382054 +341796579 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 147 this -1332961194 +1278677872 1 this.polys -299432057 +807657332 1 this.polys.head -529382054 +341796579 1 this.polys.tail null @@ -10503,7 +10911,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 147 this -1332961194 +1278677872 1 this.polys null @@ -10524,14 +10932,14 @@ this.size 0 1 return -529382054 +341796579 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 148 this -1332961194 +1278677872 1 this.polys null @@ -10556,7 +10964,7 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 148 this -1332961194 +1278677872 1 this.polys null @@ -10588,7 +10996,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 149 this -1719131927 +1661123505 1 this.polys null @@ -10613,7 +11021,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 150 this -1719131927 +1661123505 1 this.polys null @@ -10634,14 +11042,14 @@ this.size 0 1 p -1205310351 +825249556 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 151 h -1205310351 +825249556 1 t null @@ -10663,10 +11071,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 151 this -437827106 +883151184 1 this.head -1205310351 +825249556 1 this.tail null @@ -10684,7 +11092,7 @@ this.tail.tail.tail nonsensical 2 h -1205310351 +825249556 1 t null @@ -10706,13 +11114,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 150 this -1719131927 +1661123505 1 this.polys -437827106 +883151184 1 this.polys.head -1205310351 +825249556 1 this.polys.tail null @@ -10727,20 +11135,20 @@ this.size 1 1 p -1205310351 +825249556 1 PolyCalc.RatPolyStack.dup():::ENTER this_invocation_nonce 152 this -1719131927 +1661123505 1 this.polys -437827106 +883151184 1 this.polys.head -1205310351 +825249556 1 this.polys.tail null @@ -10759,13 +11167,13 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 153 h -1205310351 +825249556 1 t -437827106 +883151184 1 t.head -1205310351 +825249556 1 t.tail null @@ -10781,16 +11189,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 153 this -1281195920 +709865851 1 this.head -1205310351 +825249556 1 this.tail -437827106 +883151184 1 this.tail.head -1205310351 +825249556 1 this.tail.tail null @@ -10802,13 +11210,13 @@ this.tail.tail.tail nonsensical 2 h -1205310351 +825249556 1 t -437827106 +883151184 1 t.head -1205310351 +825249556 1 t.tail null @@ -10824,19 +11232,19 @@ PolyCalc.RatPolyStack.dup():::EXIT115 this_invocation_nonce 152 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -10849,19 +11257,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 154 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -10874,19 +11282,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 154 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -10902,19 +11310,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 155 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -10930,19 +11338,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 156 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -10958,19 +11366,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 156 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -10982,16 +11390,16 @@ index 0 1 return -1281195920 +709865851 1 return.head -1205310351 +825249556 1 return.tail -437827106 +883151184 1 return.tail.head -1205310351 +825249556 1 return.tail.tail null @@ -11001,19 +11409,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 155 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11025,26 +11433,26 @@ index 0 1 return -1205310351 +825249556 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 157 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11060,19 +11468,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 158 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11088,19 +11496,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 158 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11112,10 +11520,10 @@ index 0 1 return -437827106 +883151184 1 return.head -1205310351 +825249556 1 return.tail null @@ -11131,19 +11539,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 157 this -1719131927 +1661123505 1 this.polys -1281195920 +709865851 1 this.polys.head -1205310351 +825249556 1 this.polys.tail -437827106 +883151184 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11155,7 +11563,7 @@ index 1 1 return -1205310351 +825249556 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -11166,7 +11574,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 159 this -241298971 +1550207152 1 this.polys null @@ -11191,7 +11599,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 160 this -241298971 +1550207152 1 this.polys null @@ -11212,14 +11620,14 @@ this.size 0 1 p -1205310351 +825249556 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 161 h -1205310351 +825249556 1 t null @@ -11241,10 +11649,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 161 this -1062680061 +1864230087 1 this.head -1205310351 +825249556 1 this.tail null @@ -11262,7 +11670,7 @@ this.tail.tail.tail nonsensical 2 h -1205310351 +825249556 1 t null @@ -11284,13 +11692,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 160 this -241298971 +1550207152 1 this.polys -1062680061 +1864230087 1 this.polys.head -1205310351 +825249556 1 this.polys.tail null @@ -11305,20 +11713,20 @@ this.size 1 1 p -1205310351 +825249556 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 162 this -241298971 +1550207152 1 this.polys -1062680061 +1864230087 1 this.polys.head -1205310351 +825249556 1 this.polys.tail null @@ -11333,20 +11741,20 @@ this.size 1 1 p -1989776775 +1168019749 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 163 h -1989776775 +1168019749 1 t -1062680061 +1864230087 1 t.head -1205310351 +825249556 1 t.tail null @@ -11362,16 +11770,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 163 this -1562906341 +311239812 1 this.head -1989776775 +1168019749 1 this.tail -1062680061 +1864230087 1 this.tail.head -1205310351 +825249556 1 this.tail.tail null @@ -11383,13 +11791,13 @@ this.tail.tail.tail nonsensical 2 h -1989776775 +1168019749 1 t -1062680061 +1864230087 1 t.head -1205310351 +825249556 1 t.tail null @@ -11405,19 +11813,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 162 this -241298971 +1550207152 1 this.polys -1562906341 +311239812 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1062680061 +1864230087 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11426,26 +11834,26 @@ this.size 2 1 p -1989776775 +1168019749 1 PolyCalc.RatPolyStack.dup():::ENTER this_invocation_nonce 164 this -241298971 +1550207152 1 this.polys -1562906341 +311239812 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1062680061 +1864230087 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -11458,19 +11866,19 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 165 h -1989776775 +1168019749 1 t -1562906341 +311239812 1 t.head -1989776775 +1168019749 1 t.tail -1062680061 +1864230087 1 t.tail.head -1205310351 +825249556 1 t.tail.tail null @@ -11480,40 +11888,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 165 this -1894386730 +2093010349 1 this.head -1989776775 +1168019749 1 this.tail -1562906341 +311239812 1 this.tail.head -1989776775 +1168019749 1 this.tail.tail -1062680061 +1864230087 1 this.tail.tail.head -1205310351 +825249556 1 this.tail.tail.tail null 1 h -1989776775 +1168019749 1 t -1562906341 +311239812 1 t.head -1989776775 +1168019749 1 t.tail -1062680061 +1864230087 1 t.tail.head -1205310351 +825249556 1 t.tail.tail null @@ -11523,22 +11931,22 @@ PolyCalc.RatPolyStack.dup():::EXIT115 this_invocation_nonce 164 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11548,22 +11956,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 166 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11573,22 +11981,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 166 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11601,22 +12009,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 167 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11629,22 +12037,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 168 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11657,22 +12065,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 168 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11681,41 +12089,41 @@ index 0 1 return -1894386730 +2093010349 1 return.head -1989776775 +1168019749 1 return.tail -1562906341 +311239812 1 return.tail.head -1989776775 +1168019749 1 return.tail.tail -1062680061 +1864230087 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 167 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11724,29 +12132,29 @@ index 0 1 return -1989776775 +1168019749 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 169 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11759,22 +12167,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 170 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11787,22 +12195,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 170 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11811,16 +12219,16 @@ index 0 1 return -1562906341 +311239812 1 return.head -1989776775 +1168019749 1 return.tail -1062680061 +1864230087 1 return.tail.head -1205310351 +825249556 1 return.tail.tail null @@ -11830,22 +12238,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 169 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11854,29 +12262,29 @@ index 1 1 return -1989776775 +1168019749 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 171 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11889,22 +12297,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 172 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11917,22 +12325,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 172 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11941,10 +12349,10 @@ index 0 1 return -1062680061 +1864230087 1 return.head -1205310351 +825249556 1 return.tail null @@ -11960,22 +12368,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 171 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -11984,29 +12392,29 @@ index 2 1 return -1205310351 +825249556 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 173 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12016,22 +12424,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 173 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12044,22 +12452,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 174 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12072,22 +12480,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 175 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12100,22 +12508,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 175 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12124,41 +12532,41 @@ index 0 1 return -1894386730 +2093010349 1 return.head -1989776775 +1168019749 1 return.tail -1562906341 +311239812 1 return.tail.head -1989776775 +1168019749 1 return.tail.tail -1062680061 +1864230087 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 174 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12167,29 +12575,29 @@ index 0 1 return -1989776775 +1168019749 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 176 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12202,22 +12610,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 177 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12230,22 +12638,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 177 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12254,16 +12662,16 @@ index 0 1 return -1562906341 +311239812 1 return.head -1989776775 +1168019749 1 return.tail -1062680061 +1864230087 1 return.tail.head -1205310351 +825249556 1 return.tail.tail null @@ -12273,22 +12681,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 176 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12297,29 +12705,29 @@ index 1 1 return -1989776775 +1168019749 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 178 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12332,22 +12740,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 179 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12360,22 +12768,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 179 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12384,10 +12792,10 @@ index 0 1 return -1062680061 +1864230087 1 return.head -1205310351 +825249556 1 return.tail null @@ -12403,22 +12811,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 178 this -241298971 +1550207152 1 this.polys -1894386730 +2093010349 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -1562906341 +311239812 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -1062680061 +1864230087 1 this.size 3 @@ -12427,7 +12835,7 @@ index 2 1 return -1205310351 +825249556 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -12438,7 +12846,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 180 this -365220688 +2088445230 1 this.polys null @@ -12463,7 +12871,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 181 this -365220688 +2088445230 1 this.polys null @@ -12484,14 +12892,14 @@ this.size 0 1 p -1205310351 +825249556 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 182 h -1205310351 +825249556 1 t null @@ -12513,10 +12921,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 182 this -755840090 +1297978429 1 this.head -1205310351 +825249556 1 this.tail null @@ -12534,7 +12942,7 @@ this.tail.tail.tail nonsensical 2 h -1205310351 +825249556 1 t null @@ -12556,13 +12964,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 181 this -365220688 +2088445230 1 this.polys -755840090 +1297978429 1 this.polys.head -1205310351 +825249556 1 this.polys.tail null @@ -12577,20 +12985,20 @@ this.size 1 1 p -1205310351 +825249556 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 183 this -365220688 +2088445230 1 this.polys -755840090 +1297978429 1 this.polys.head -1205310351 +825249556 1 this.polys.tail null @@ -12605,20 +13013,20 @@ this.size 1 1 p -1989776775 +1168019749 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 184 h -1989776775 +1168019749 1 t -755840090 +1297978429 1 t.head -1205310351 +825249556 1 t.tail null @@ -12634,16 +13042,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 184 this -1038620625 +915349526 1 this.head -1989776775 +1168019749 1 this.tail -755840090 +1297978429 1 this.tail.head -1205310351 +825249556 1 this.tail.tail null @@ -12655,13 +13063,13 @@ this.tail.tail.tail nonsensical 2 h -1989776775 +1168019749 1 t -755840090 +1297978429 1 t.head -1205310351 +825249556 1 t.tail null @@ -12677,19 +13085,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 183 this -365220688 +2088445230 1 this.polys -1038620625 +915349526 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -755840090 +1297978429 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -12698,26 +13106,26 @@ this.size 2 1 p -1989776775 +1168019749 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 185 this -365220688 +2088445230 1 this.polys -1038620625 +915349526 1 this.polys.head -1989776775 +1168019749 1 this.polys.tail -755840090 +1297978429 1 this.polys.tail.head -1205310351 +825249556 1 this.polys.tail.tail null @@ -12726,26 +13134,26 @@ this.size 2 1 p -1349761559 +1280851663 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 186 h -1349761559 +1280851663 1 t -1038620625 +915349526 1 t.head -1989776775 +1168019749 1 t.tail -755840090 +1297978429 1 t.tail.head -1205310351 +825249556 1 t.tail.tail null @@ -12755,40 +13163,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 186 this -1572758852 +1764696127 1 this.head -1349761559 +1280851663 1 this.tail -1038620625 +915349526 1 this.tail.head -1989776775 +1168019749 1 this.tail.tail -755840090 +1297978429 1 this.tail.tail.head -1205310351 +825249556 1 this.tail.tail.tail null 1 h -1349761559 +1280851663 1 t -1038620625 +915349526 1 t.head -1989776775 +1168019749 1 t.tail -755840090 +1297978429 1 t.tail.head -1205310351 +825249556 1 t.tail.tail null @@ -12798,50 +13206,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 185 this -365220688 +2088445230 1 this.polys -1572758852 +1764696127 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1038620625 +915349526 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -755840090 +1297978429 1 this.size 3 1 p -1349761559 +1280851663 1 PolyCalc.RatPolyStack.dup():::ENTER this_invocation_nonce 187 this -365220688 +2088445230 1 this.polys -1572758852 +1764696127 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1038620625 +915349526 1 this.polys.tail.head -1989776775 +1168019749 1 this.polys.tail.tail -755840090 +1297978429 1 this.size 3 @@ -12851,87 +13259,87 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 188 h -1349761559 +1280851663 1 t -1572758852 +1764696127 1 t.head -1349761559 +1280851663 1 t.tail -1038620625 +915349526 1 t.tail.head -1989776775 +1168019749 1 t.tail.tail -755840090 +1297978429 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 188 this -2129298288 +1223867739 1 this.head -1349761559 +1280851663 1 this.tail -1572758852 +1764696127 1 this.tail.head -1349761559 +1280851663 1 this.tail.tail -1038620625 +915349526 1 this.tail.tail.head -1989776775 +1168019749 1 this.tail.tail.tail -755840090 +1297978429 1 h -1349761559 +1280851663 1 t -1572758852 +1764696127 1 t.head -1349761559 +1280851663 1 t.tail -1038620625 +915349526 1 t.tail.head -1989776775 +1168019749 1 t.tail.tail -755840090 +1297978429 1 PolyCalc.RatPolyStack.dup():::EXIT115 this_invocation_nonce 187 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -12941,22 +13349,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 189 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -12966,22 +13374,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 189 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -12994,22 +13402,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 190 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13022,22 +13430,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 191 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13050,22 +13458,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 191 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13074,41 +13482,41 @@ index 0 1 return -2129298288 +1223867739 1 return.head -1349761559 +1280851663 1 return.tail -1572758852 +1764696127 1 return.tail.head -1349761559 +1280851663 1 return.tail.tail -1038620625 +915349526 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 190 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13117,29 +13525,29 @@ index 0 1 return -1349761559 +1280851663 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 192 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13152,22 +13560,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 193 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13180,22 +13588,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 193 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13204,41 +13612,41 @@ index 0 1 return -1572758852 +1764696127 1 return.head -1349761559 +1280851663 1 return.tail -1038620625 +915349526 1 return.tail.head -1989776775 +1168019749 1 return.tail.tail -755840090 +1297978429 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 192 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13247,29 +13655,29 @@ index 1 1 return -1349761559 +1280851663 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 194 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13282,22 +13690,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 195 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13310,22 +13718,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 195 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13334,16 +13742,16 @@ index 0 1 return -1038620625 +915349526 1 return.head -1989776775 +1168019749 1 return.tail -755840090 +1297978429 1 return.tail.head -1205310351 +825249556 1 return.tail.tail null @@ -13353,22 +13761,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 194 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13377,29 +13785,29 @@ index 2 1 return -1989776775 +1168019749 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 196 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13412,22 +13820,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 197 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13440,22 +13848,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 197 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13464,10 +13872,10 @@ index 0 1 return -755840090 +1297978429 1 return.head -1205310351 +825249556 1 return.tail null @@ -13483,22 +13891,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 196 this -365220688 +2088445230 1 this.polys -2129298288 +1223867739 1 this.polys.head -1349761559 +1280851663 1 this.polys.tail -1572758852 +1764696127 1 this.polys.tail.head -1349761559 +1280851663 1 this.polys.tail.tail -1038620625 +915349526 1 this.size 4 @@ -13507,7 +13915,7 @@ index 3 1 return -1205310351 +825249556 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -13518,7 +13926,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 198 this -1448832808 +129153987 1 this.polys null @@ -13543,7 +13951,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 199 this -1448832808 +129153987 1 this.polys null @@ -13564,14 +13972,14 @@ this.size 0 1 p -215930723 +168907708 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 200 h -215930723 +168907708 1 t null @@ -13593,10 +14001,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 200 this -2047781678 +447718425 1 this.head -215930723 +168907708 1 this.tail null @@ -13614,7 +14022,7 @@ this.tail.tail.tail nonsensical 2 h -215930723 +168907708 1 t null @@ -13636,13 +14044,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 199 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail null @@ -13657,20 +14065,20 @@ this.size 1 1 p -215930723 +168907708 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 201 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail null @@ -13685,20 +14093,20 @@ this.size 1 1 p -1493735324 +1206569586 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 202 h -1493735324 +1206569586 1 t -2047781678 +447718425 1 t.head -215930723 +168907708 1 t.tail null @@ -13714,16 +14122,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 202 this -1125757038 +1427381743 1 this.head -1493735324 +1206569586 1 this.tail -2047781678 +447718425 1 this.tail.head -215930723 +168907708 1 this.tail.tail null @@ -13735,13 +14143,13 @@ this.tail.tail.tail nonsensical 2 h -1493735324 +1206569586 1 t -2047781678 +447718425 1 t.head -215930723 +168907708 1 t.tail null @@ -13757,19 +14165,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 201 this -1448832808 +129153987 1 this.polys -1125757038 +1427381743 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -2047781678 +447718425 1 this.polys.tail.head -215930723 +168907708 1 this.polys.tail.tail null @@ -13778,26 +14186,26 @@ this.size 2 1 p -1493735324 +1206569586 1 PolyCalc.RatPolyStack.swap():::ENTER this_invocation_nonce 203 this -1448832808 +129153987 1 this.polys -1125757038 +1427381743 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -2047781678 +447718425 1 this.polys.tail.head -215930723 +168907708 1 this.polys.tail.tail null @@ -13810,19 +14218,19 @@ PolyCalc.RatPolyStack.swap():::EXIT133 this_invocation_nonce 203 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -13835,19 +14243,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 204 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -13860,19 +14268,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 204 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -13888,19 +14296,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 205 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -13916,19 +14324,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 206 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -13944,19 +14352,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 206 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -13968,16 +14376,16 @@ index 0 1 return -2047781678 +447718425 1 return.head -215930723 +168907708 1 return.tail -1125757038 +1427381743 1 return.tail.head -1493735324 +1206569586 1 return.tail.tail null @@ -13987,19 +14395,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 205 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -14011,26 +14419,26 @@ index 0 1 return -215930723 +168907708 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 207 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -14046,19 +14454,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 208 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -14074,19 +14482,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 208 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -14098,10 +14506,10 @@ index 0 1 return -1125757038 +1427381743 1 return.head -1493735324 +1206569586 1 return.tail null @@ -14117,19 +14525,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 207 this -1448832808 +129153987 1 this.polys -2047781678 +447718425 1 this.polys.head -215930723 +168907708 1 this.polys.tail -1125757038 +1427381743 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -14141,7 +14549,7 @@ index 1 1 return -1493735324 +1206569586 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -14152,7 +14560,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 209 this -1267607596 +1427646530 1 this.polys null @@ -14177,7 +14585,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 210 this -1267607596 +1427646530 1 this.polys null @@ -14198,14 +14606,14 @@ this.size 0 1 p -215930723 +168907708 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 211 h -215930723 +168907708 1 t null @@ -14227,10 +14635,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 211 this -1643087732 +846254484 1 this.head -215930723 +168907708 1 this.tail null @@ -14248,7 +14656,7 @@ this.tail.tail.tail nonsensical 2 h -215930723 +168907708 1 t null @@ -14270,13 +14678,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 210 this -1267607596 +1427646530 1 this.polys -1643087732 +846254484 1 this.polys.head -215930723 +168907708 1 this.polys.tail null @@ -14291,20 +14699,20 @@ this.size 1 1 p -215930723 +168907708 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 212 this -1267607596 +1427646530 1 this.polys -1643087732 +846254484 1 this.polys.head -215930723 +168907708 1 this.polys.tail null @@ -14319,20 +14727,20 @@ this.size 1 1 p -1493735324 +1206569586 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 213 h -1493735324 +1206569586 1 t -1643087732 +846254484 1 t.head -215930723 +168907708 1 t.tail null @@ -14348,16 +14756,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 213 this -883294951 +592983282 1 this.head -1493735324 +1206569586 1 this.tail -1643087732 +846254484 1 this.tail.head -215930723 +168907708 1 this.tail.tail null @@ -14369,13 +14777,13 @@ this.tail.tail.tail nonsensical 2 h -1493735324 +1206569586 1 t -1643087732 +846254484 1 t.head -215930723 +168907708 1 t.tail null @@ -14391,19 +14799,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 212 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -1643087732 +846254484 1 this.polys.tail.head -215930723 +168907708 1 this.polys.tail.tail null @@ -14412,26 +14820,26 @@ this.size 2 1 p -1493735324 +1206569586 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 214 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -1643087732 +846254484 1 this.polys.tail.head -215930723 +168907708 1 this.polys.tail.tail null @@ -14440,26 +14848,26 @@ this.size 2 1 p -2131273393 +1448525331 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 215 h -2131273393 +1448525331 1 t -883294951 +592983282 1 t.head -1493735324 +1206569586 1 t.tail -1643087732 +846254484 1 t.tail.head -215930723 +168907708 1 t.tail.tail null @@ -14469,40 +14877,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 215 this -284684191 +1108924067 1 this.head -2131273393 +1448525331 1 this.tail -883294951 +592983282 1 this.tail.head -1493735324 +1206569586 1 this.tail.tail -1643087732 +846254484 1 this.tail.tail.head -215930723 +168907708 1 this.tail.tail.tail null 1 h -2131273393 +1448525331 1 t -883294951 +592983282 1 t.head -1493735324 +1206569586 1 t.tail -1643087732 +846254484 1 t.tail.head -215930723 +168907708 1 t.tail.tail null @@ -14512,50 +14920,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 214 this -1267607596 +1427646530 1 this.polys -284684191 +1108924067 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -883294951 +592983282 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 1 p -2131273393 +1448525331 1 PolyCalc.RatPolyStack.swap():::ENTER this_invocation_nonce 216 this -1267607596 +1427646530 1 this.polys -284684191 +1108924067 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -883294951 +592983282 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14565,22 +14973,22 @@ PolyCalc.RatPolyStack.swap():::EXIT133 this_invocation_nonce 216 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14590,22 +14998,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 217 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14615,22 +15023,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 217 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14643,22 +15051,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 218 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14671,22 +15079,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 219 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14699,22 +15107,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 219 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14723,41 +15131,41 @@ index 0 1 return -883294951 +592983282 1 return.head -1493735324 +1206569586 1 return.tail -284684191 +1108924067 1 return.tail.head -2131273393 +1448525331 1 return.tail.tail -1643087732 +846254484 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 218 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14766,29 +15174,29 @@ index 0 1 return -1493735324 +1206569586 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 220 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14801,22 +15209,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 221 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14829,22 +15237,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 221 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14853,16 +15261,16 @@ index 0 1 return -284684191 +1108924067 1 return.head -2131273393 +1448525331 1 return.tail -1643087732 +846254484 1 return.tail.head -215930723 +168907708 1 return.tail.tail null @@ -14872,22 +15280,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 220 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14896,29 +15304,29 @@ index 1 1 return -2131273393 +1448525331 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 222 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14931,22 +15339,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 223 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14959,22 +15367,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 223 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -14983,10 +15391,10 @@ index 0 1 return -1643087732 +846254484 1 return.head -215930723 +168907708 1 return.tail null @@ -15002,22 +15410,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 222 this -1267607596 +1427646530 1 this.polys -883294951 +592983282 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail -284684191 +1108924067 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1643087732 +846254484 1 this.size 3 @@ -15026,7 +15434,7 @@ index 2 1 return -215930723 +168907708 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -15037,7 +15445,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 224 this -93632621 +1984975621 1 this.polys null @@ -15062,7 +15470,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 225 this -93632621 +1984975621 1 this.polys null @@ -15083,14 +15491,14 @@ this.size 0 1 p -1493735324 +1206569586 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 226 h -1493735324 +1206569586 1 t null @@ -15112,10 +15520,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 226 this -1725431543 +348984985 1 this.head -1493735324 +1206569586 1 this.tail null @@ -15133,7 +15541,7 @@ this.tail.tail.tail nonsensical 2 h -1493735324 +1206569586 1 t null @@ -15155,13 +15563,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 225 this -93632621 +1984975621 1 this.polys -1725431543 +348984985 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail null @@ -15176,20 +15584,20 @@ this.size 1 1 p -1493735324 +1206569586 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 227 this -93632621 +1984975621 1 this.polys -1725431543 +348984985 1 this.polys.head -1493735324 +1206569586 1 this.polys.tail null @@ -15204,20 +15612,20 @@ this.size 1 1 p -2131273393 +1448525331 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 228 h -2131273393 +1448525331 1 t -1725431543 +348984985 1 t.head -1493735324 +1206569586 1 t.tail null @@ -15233,16 +15641,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 228 this -1856257760 +2005435445 1 this.head -2131273393 +1448525331 1 this.tail -1725431543 +348984985 1 this.tail.head -1493735324 +1206569586 1 this.tail.tail null @@ -15254,13 +15662,13 @@ this.tail.tail.tail nonsensical 2 h -2131273393 +1448525331 1 t -1725431543 +348984985 1 t.head -1493735324 +1206569586 1 t.tail null @@ -15276,19 +15684,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 227 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1725431543 +348984985 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -15297,26 +15705,26 @@ this.size 2 1 p -2131273393 +1448525331 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 229 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1725431543 +348984985 1 this.polys.tail.head -1493735324 +1206569586 1 this.polys.tail.tail null @@ -15325,26 +15733,26 @@ this.size 2 1 p -2131273393 +1448525331 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 230 h -2131273393 +1448525331 1 t -1856257760 +2005435445 1 t.head -2131273393 +1448525331 1 t.tail -1725431543 +348984985 1 t.tail.head -1493735324 +1206569586 1 t.tail.tail null @@ -15354,40 +15762,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 230 this -1629232351 +1939990953 1 this.head -2131273393 +1448525331 1 this.tail -1856257760 +2005435445 1 this.tail.head -2131273393 +1448525331 1 this.tail.tail -1725431543 +348984985 1 this.tail.tail.head -1493735324 +1206569586 1 this.tail.tail.tail null 1 h -2131273393 +1448525331 1 t -1856257760 +2005435445 1 t.head -2131273393 +1448525331 1 t.tail -1725431543 +348984985 1 t.tail.head -1493735324 +1206569586 1 t.tail.tail null @@ -15397,50 +15805,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 229 this -93632621 +1984975621 1 this.polys -1629232351 +1939990953 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1856257760 +2005435445 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 1 p -2131273393 +1448525331 1 PolyCalc.RatPolyStack.swap():::ENTER this_invocation_nonce 231 this -93632621 +1984975621 1 this.polys -1629232351 +1939990953 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1856257760 +2005435445 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15450,22 +15858,22 @@ PolyCalc.RatPolyStack.swap():::EXIT133 this_invocation_nonce 231 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15475,22 +15883,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 232 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15500,22 +15908,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 232 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15528,22 +15936,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 233 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15556,22 +15964,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 234 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15584,22 +15992,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 234 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15608,41 +16016,41 @@ index 0 1 return -1856257760 +2005435445 1 return.head -2131273393 +1448525331 1 return.tail -1629232351 +1939990953 1 return.tail.head -2131273393 +1448525331 1 return.tail.tail -1725431543 +348984985 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 233 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15651,29 +16059,29 @@ index 0 1 return -2131273393 +1448525331 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 235 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15686,22 +16094,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 236 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15714,22 +16122,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 236 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15738,16 +16146,16 @@ index 0 1 return -1629232351 +1939990953 1 return.head -2131273393 +1448525331 1 return.tail -1725431543 +348984985 1 return.tail.head -1493735324 +1206569586 1 return.tail.tail null @@ -15757,22 +16165,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 235 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15781,29 +16189,29 @@ index 1 1 return -2131273393 +1448525331 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 237 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15816,22 +16224,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 238 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15844,22 +16252,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 238 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15868,10 +16276,10 @@ index 0 1 return -1725431543 +348984985 1 return.head -1493735324 +1206569586 1 return.tail null @@ -15887,22 +16295,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 237 this -93632621 +1984975621 1 this.polys -1856257760 +2005435445 1 this.polys.head -2131273393 +1448525331 1 this.polys.tail -1629232351 +1939990953 1 this.polys.tail.head -2131273393 +1448525331 1 this.polys.tail.tail -1725431543 +348984985 1 this.size 3 @@ -15911,7 +16319,7 @@ index 2 1 return -1493735324 +1206569586 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -15922,7 +16330,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 239 this -2091624007 +119358627 1 this.polys null @@ -15947,7 +16355,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 240 this -2091624007 +119358627 1 this.polys null @@ -15968,14 +16376,14 @@ this.size 0 1 p -1764867906 +2073621255 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 241 h -1764867906 +2073621255 1 t null @@ -15997,10 +16405,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 241 this -1090763778 +1208121709 1 this.head -1764867906 +2073621255 1 this.tail null @@ -16018,7 +16426,7 @@ this.tail.tail.tail nonsensical 2 h -1764867906 +2073621255 1 t null @@ -16040,13 +16448,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 240 this -2091624007 +119358627 1 this.polys -1090763778 +1208121709 1 this.polys.head -1764867906 +2073621255 1 this.polys.tail null @@ -16061,20 +16469,20 @@ this.size 1 1 p -1764867906 +2073621255 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 242 this -2091624007 +119358627 1 this.polys -1090763778 +1208121709 1 this.polys.head -1764867906 +2073621255 1 this.polys.tail null @@ -16089,20 +16497,20 @@ this.size 1 1 p -1546406054 +873610597 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 243 h -1546406054 +873610597 1 t -1090763778 +1208121709 1 t.head -1764867906 +2073621255 1 t.tail null @@ -16118,16 +16526,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 243 this -1599453584 +1497845528 1 this.head -1546406054 +873610597 1 this.tail -1090763778 +1208121709 1 this.tail.head -1764867906 +2073621255 1 this.tail.tail null @@ -16139,13 +16547,13 @@ this.tail.tail.tail nonsensical 2 h -1546406054 +873610597 1 t -1090763778 +1208121709 1 t.head -1764867906 +2073621255 1 t.tail null @@ -16161,19 +16569,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 242 this -2091624007 +119358627 1 this.polys -1599453584 +1497845528 1 this.polys.head -1546406054 +873610597 1 this.polys.tail -1090763778 +1208121709 1 this.polys.tail.head -1764867906 +2073621255 1 this.polys.tail.tail null @@ -16182,26 +16590,26 @@ this.size 2 1 p -1546406054 +873610597 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 244 this -2091624007 +119358627 1 this.polys -1599453584 +1497845528 1 this.polys.head -1546406054 +873610597 1 this.polys.tail -1090763778 +1208121709 1 this.polys.tail.head -1764867906 +2073621255 1 this.polys.tail.tail null @@ -16210,26 +16618,26 @@ this.size 2 1 p -1963576789 +1710989308 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 245 h -1963576789 +1710989308 1 t -1599453584 +1497845528 1 t.head -1546406054 +873610597 1 t.tail -1090763778 +1208121709 1 t.tail.head -1764867906 +2073621255 1 t.tail.tail null @@ -16239,40 +16647,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 245 this -1453889274 +1047087935 1 this.head -1963576789 +1710989308 1 this.tail -1599453584 +1497845528 1 this.tail.head -1546406054 +873610597 1 this.tail.tail -1090763778 +1208121709 1 this.tail.tail.head -1764867906 +2073621255 1 this.tail.tail.tail null 1 h -1963576789 +1710989308 1 t -1599453584 +1497845528 1 t.head -1546406054 +873610597 1 t.tail -1090763778 +1208121709 1 t.tail.head -1764867906 +2073621255 1 t.tail.tail null @@ -16282,50 +16690,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 244 this -2091624007 +119358627 1 this.polys -1453889274 +1047087935 1 this.polys.head -1963576789 +1710989308 1 this.polys.tail -1599453584 +1497845528 1 this.polys.tail.head -1546406054 +873610597 1 this.polys.tail.tail -1090763778 +1208121709 1 this.size 3 1 p -1963576789 +1710989308 1 PolyCalc.RatPolyStack.clear():::ENTER this_invocation_nonce 246 this -2091624007 +119358627 1 this.polys -1453889274 +1047087935 1 this.polys.head -1963576789 +1710989308 1 this.polys.tail -1599453584 +1497845528 1 this.polys.tail.head -1546406054 +873610597 1 this.polys.tail.tail -1090763778 +1208121709 1 this.size 3 @@ -16335,7 +16743,7 @@ PolyCalc.RatPolyStack.clear():::EXIT143 this_invocation_nonce 246 this -2091624007 +119358627 1 this.polys null @@ -16360,7 +16768,7 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 247 this -2091624007 +119358627 1 this.polys null @@ -16385,7 +16793,7 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 247 this -2091624007 +119358627 1 this.polys null @@ -16417,7 +16825,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 248 this -1448092552 +464887938 1 this.polys null @@ -16442,7 +16850,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 249 this -1448092552 +464887938 1 this.polys null @@ -16463,14 +16871,14 @@ this.size 0 1 p -1546406054 +873610597 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 250 h -1546406054 +873610597 1 t null @@ -16492,10 +16900,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 250 this -659350013 +2020152163 1 this.head -1546406054 +873610597 1 this.tail null @@ -16513,7 +16921,7 @@ this.tail.tail.tail nonsensical 2 h -1546406054 +873610597 1 t null @@ -16535,13 +16943,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 249 this -1448092552 +464887938 1 this.polys -659350013 +2020152163 1 this.polys.head -1546406054 +873610597 1 this.polys.tail null @@ -16556,20 +16964,20 @@ this.size 1 1 p -1546406054 +873610597 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 251 this -1448092552 +464887938 1 this.polys -659350013 +2020152163 1 this.polys.head -1546406054 +873610597 1 this.polys.tail null @@ -16584,20 +16992,20 @@ this.size 1 1 p -1963576789 +1710989308 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 252 h -1963576789 +1710989308 1 t -659350013 +2020152163 1 t.head -1546406054 +873610597 1 t.tail null @@ -16613,16 +17021,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 252 this -680049971 +1104443373 1 this.head -1963576789 +1710989308 1 this.tail -659350013 +2020152163 1 this.tail.head -1546406054 +873610597 1 this.tail.tail null @@ -16634,13 +17042,13 @@ this.tail.tail.tail nonsensical 2 h -1963576789 +1710989308 1 t -659350013 +2020152163 1 t.head -1546406054 +873610597 1 t.tail null @@ -16656,19 +17064,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 251 this -1448092552 +464887938 1 this.polys -680049971 +1104443373 1 this.polys.head -1963576789 +1710989308 1 this.polys.tail -659350013 +2020152163 1 this.polys.tail.head -1546406054 +873610597 1 this.polys.tail.tail null @@ -16677,26 +17085,26 @@ this.size 2 1 p -1963576789 +1710989308 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 253 this -1448092552 +464887938 1 this.polys -680049971 +1104443373 1 this.polys.head -1963576789 +1710989308 1 this.polys.tail -659350013 +2020152163 1 this.polys.tail.head -1546406054 +873610597 1 this.polys.tail.tail null @@ -16705,26 +17113,26 @@ this.size 2 1 p -1963576789 +1710989308 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 254 h -1963576789 +1710989308 1 t -680049971 +1104443373 1 t.head -1963576789 +1710989308 1 t.tail -659350013 +2020152163 1 t.tail.head -1546406054 +873610597 1 t.tail.tail null @@ -16734,40 +17142,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 254 this -691893263 +898694235 1 this.head -1963576789 +1710989308 1 this.tail -680049971 +1104443373 1 this.tail.head -1963576789 +1710989308 1 this.tail.tail -659350013 +2020152163 1 this.tail.tail.head -1546406054 +873610597 1 this.tail.tail.tail null 1 h -1963576789 +1710989308 1 t -680049971 +1104443373 1 t.head -1963576789 +1710989308 1 t.tail -659350013 +2020152163 1 t.tail.head -1546406054 +873610597 1 t.tail.tail null @@ -16777,50 +17185,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 253 this -1448092552 +464887938 1 this.polys -691893263 +898694235 1 this.polys.head -1963576789 +1710989308 1 this.polys.tail -680049971 +1104443373 1 this.polys.tail.head -1963576789 +1710989308 1 this.polys.tail.tail -659350013 +2020152163 1 this.size 3 1 p -1963576789 +1710989308 1 PolyCalc.RatPolyStack.clear():::ENTER this_invocation_nonce 255 this -1448092552 +464887938 1 this.polys -691893263 +898694235 1 this.polys.head -1963576789 +1710989308 1 this.polys.tail -680049971 +1104443373 1 this.polys.tail.head -1963576789 +1710989308 1 this.polys.tail.tail -659350013 +2020152163 1 this.size 3 @@ -16830,7 +17238,7 @@ PolyCalc.RatPolyStack.clear():::EXIT143 this_invocation_nonce 255 this -1448092552 +464887938 1 this.polys null @@ -16855,7 +17263,7 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 256 this -2091624007 +119358627 1 this.polys null @@ -16880,7 +17288,7 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 256 this -2091624007 +119358627 1 this.polys null @@ -16912,7 +17320,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 257 this -26122736 +60292059 1 this.polys null @@ -16937,7 +17345,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 258 this -26122736 +60292059 1 this.polys null @@ -16958,14 +17366,14 @@ this.size 0 1 p -958159964 +869601985 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 259 h -958159964 +869601985 1 t null @@ -16987,10 +17395,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 259 this -1962129742 +1365008457 1 this.head -958159964 +869601985 1 this.tail null @@ -17008,7 +17416,7 @@ this.tail.tail.tail nonsensical 2 h -958159964 +869601985 1 t null @@ -17030,13 +17438,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 258 this -26122736 +60292059 1 this.polys -1962129742 +1365008457 1 this.polys.head -958159964 +869601985 1 this.polys.tail null @@ -17051,20 +17459,20 @@ this.size 1 1 p -958159964 +869601985 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 260 this -26122736 +60292059 1 this.polys -1962129742 +1365008457 1 this.polys.head -958159964 +869601985 1 this.polys.tail null @@ -17079,20 +17487,20 @@ this.size 1 1 p -755690462 +1671179293 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 261 h -755690462 +1671179293 1 t -1962129742 +1365008457 1 t.head -958159964 +869601985 1 t.tail null @@ -17108,16 +17516,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 261 this -671306476 +1609124502 1 this.head -755690462 +1671179293 1 this.tail -1962129742 +1365008457 1 this.tail.head -958159964 +869601985 1 this.tail.tail null @@ -17129,13 +17537,13 @@ this.tail.tail.tail nonsensical 2 h -755690462 +1671179293 1 t -1962129742 +1365008457 1 t.head -958159964 +869601985 1 t.tail null @@ -17151,19 +17559,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 260 this -26122736 +60292059 1 this.polys -671306476 +1609124502 1 this.polys.head -755690462 +1671179293 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17172,26 +17580,26 @@ this.size 2 1 p -755690462 +1671179293 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 262 this -26122736 +60292059 1 this.polys -671306476 +1609124502 1 this.polys.head -755690462 +1671179293 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17200,26 +17608,26 @@ this.size 2 1 p -1916344441 +1144068272 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 263 h -1916344441 +1144068272 1 t -671306476 +1609124502 1 t.head -755690462 +1671179293 1 t.tail -1962129742 +1365008457 1 t.tail.head -958159964 +869601985 1 t.tail.tail null @@ -17229,40 +17637,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 263 this -41282181 +1985836631 1 this.head -1916344441 +1144068272 1 this.tail -671306476 +1609124502 1 this.tail.head -755690462 +1671179293 1 this.tail.tail -1962129742 +1365008457 1 this.tail.tail.head -958159964 +869601985 1 this.tail.tail.tail null 1 h -1916344441 +1144068272 1 t -671306476 +1609124502 1 t.head -755690462 +1671179293 1 t.tail -1962129742 +1365008457 1 t.tail.head -958159964 +869601985 1 t.tail.tail null @@ -17272,50 +17680,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 262 this -26122736 +60292059 1 this.polys -41282181 +1985836631 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -671306476 +1609124502 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail -1962129742 +1365008457 1 this.size 3 1 p -1916344441 +1144068272 1 PolyCalc.RatPolyStack.add():::ENTER this_invocation_nonce 264 this -26122736 +60292059 1 this.polys -41282181 +1985836631 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -671306476 +1609124502 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail -1962129742 +1365008457 1 this.size 3 @@ -17325,22 +17733,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 265 this -26122736 +60292059 1 this.polys -41282181 +1985836631 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -671306476 +1609124502 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail -1962129742 +1365008457 1 this.size 3 @@ -17350,19 +17758,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 265 this -26122736 +60292059 1 this.polys -671306476 +1609124502 1 this.polys.head -755690462 +1671179293 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17371,26 +17779,26 @@ this.size 2 1 return -1916344441 +1144068272 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 266 this -26122736 +60292059 1 this.polys -671306476 +1609124502 1 this.polys.head -755690462 +1671179293 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17403,13 +17811,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 266 this -26122736 +60292059 1 this.polys -1962129742 +1365008457 1 this.polys.head -958159964 +869601985 1 this.polys.tail null @@ -17424,20 +17832,20 @@ this.size 1 1 return -755690462 +1671179293 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 267 this -26122736 +60292059 1 this.polys -1962129742 +1365008457 1 this.polys.head -958159964 +869601985 1 this.polys.tail null @@ -17452,20 +17860,20 @@ this.size 1 1 p -192398086 +1948471365 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 268 h -192398086 +1948471365 1 t -1962129742 +1365008457 1 t.head -958159964 +869601985 1 t.tail null @@ -17481,16 +17889,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 268 this -1671742667 +1636506029 1 this.head -192398086 +1948471365 1 this.tail -1962129742 +1365008457 1 this.tail.head -958159964 +869601985 1 this.tail.tail null @@ -17502,13 +17910,13 @@ this.tail.tail.tail nonsensical 2 h -192398086 +1948471365 1 t -1962129742 +1365008457 1 t.head -958159964 +869601985 1 t.tail null @@ -17524,19 +17932,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 267 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17545,26 +17953,26 @@ this.size 2 1 p -192398086 +1948471365 1 PolyCalc.RatPolyStack.add():::EXIT173 this_invocation_nonce 264 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17577,19 +17985,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 269 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17602,19 +18010,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 269 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17630,19 +18038,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 270 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17658,19 +18066,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 271 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17686,19 +18094,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 271 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17710,16 +18118,16 @@ index 0 1 return -1671742667 +1636506029 1 return.head -192398086 +1948471365 1 return.tail -1962129742 +1365008457 1 return.tail.head -958159964 +869601985 1 return.tail.tail null @@ -17729,19 +18137,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 270 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17753,26 +18161,26 @@ index 0 1 return -192398086 +1948471365 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 272 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17788,19 +18196,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 273 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17816,19 +18224,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 273 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17840,10 +18248,10 @@ index 0 1 return -1962129742 +1365008457 1 return.head -958159964 +869601985 1 return.tail null @@ -17859,19 +18267,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 272 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17883,26 +18291,26 @@ index 1 1 return -958159964 +869601985 1 PolyCalc.RatPolyStack.add():::ENTER this_invocation_nonce 274 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17915,19 +18323,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 275 this -26122736 +60292059 1 this.polys -1671742667 +1636506029 1 this.polys.head -192398086 +1948471365 1 this.polys.tail -1962129742 +1365008457 1 this.polys.tail.head -958159964 +869601985 1 this.polys.tail.tail null @@ -17940,13 +18348,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 275 this -26122736 +60292059 1 this.polys -1962129742 +1365008457 1 this.polys.head -958159964 +869601985 1 this.polys.tail null @@ -17961,20 +18369,20 @@ this.size 1 1 return -192398086 +1948471365 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 276 this -26122736 +60292059 1 this.polys -1962129742 +1365008457 1 this.polys.head -958159964 +869601985 1 this.polys.tail null @@ -17993,7 +18401,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 276 this -26122736 +60292059 1 this.polys null @@ -18014,14 +18422,14 @@ this.size 0 1 return -958159964 +869601985 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 277 this -26122736 +60292059 1 this.polys null @@ -18042,14 +18450,14 @@ this.size 0 1 p -1450450568 +758348212 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 278 h -1450450568 +758348212 1 t null @@ -18071,10 +18479,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 278 this -1635819279 +817978763 1 this.head -1450450568 +758348212 1 this.tail null @@ -18092,7 +18500,7 @@ this.tail.tail.tail nonsensical 2 h -1450450568 +758348212 1 t null @@ -18114,13 +18522,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 277 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18135,20 +18543,20 @@ this.size 1 1 p -1450450568 +758348212 1 PolyCalc.RatPolyStack.add():::EXIT173 this_invocation_nonce 274 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18167,13 +18575,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 279 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18192,13 +18600,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 279 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18220,13 +18628,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 280 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18248,13 +18656,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 281 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18276,13 +18684,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 281 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18300,10 +18708,10 @@ index 0 1 return -1635819279 +817978763 1 return.head -1450450568 +758348212 1 return.tail null @@ -18319,13 +18727,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 280 this -26122736 +60292059 1 this.polys -1635819279 +817978763 1 this.polys.head -1450450568 +758348212 1 this.polys.tail null @@ -18343,7 +18751,7 @@ index 0 1 return -1450450568 +758348212 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -18354,7 +18762,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 282 this -1128973259 +1578009262 1 this.polys null @@ -18379,7 +18787,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 283 this -1128973259 +1578009262 1 this.polys null @@ -18400,14 +18808,14 @@ this.size 0 1 p -755690462 +1671179293 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 284 h -755690462 +1671179293 1 t null @@ -18429,10 +18837,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 284 this -1635542768 +1735507635 1 this.head -755690462 +1671179293 1 this.tail null @@ -18450,7 +18858,7 @@ this.tail.tail.tail nonsensical 2 h -755690462 +1671179293 1 t null @@ -18472,13 +18880,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 283 this -1128973259 +1578009262 1 this.polys -1635542768 +1735507635 1 this.polys.head -755690462 +1671179293 1 this.polys.tail null @@ -18493,20 +18901,20 @@ this.size 1 1 p -755690462 +1671179293 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 285 this -1128973259 +1578009262 1 this.polys -1635542768 +1735507635 1 this.polys.head -755690462 +1671179293 1 this.polys.tail null @@ -18521,20 +18929,20 @@ this.size 1 1 p -1916344441 +1144068272 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 286 h -1916344441 +1144068272 1 t -1635542768 +1735507635 1 t.head -755690462 +1671179293 1 t.tail null @@ -18550,16 +18958,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 286 this -776620176 +1362728240 1 this.head -1916344441 +1144068272 1 this.tail -1635542768 +1735507635 1 this.tail.head -755690462 +1671179293 1 this.tail.tail null @@ -18571,13 +18979,13 @@ this.tail.tail.tail nonsensical 2 h -1916344441 +1144068272 1 t -1635542768 +1735507635 1 t.head -755690462 +1671179293 1 t.tail null @@ -18593,19 +19001,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 285 this -1128973259 +1578009262 1 this.polys -776620176 +1362728240 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -18614,26 +19022,26 @@ this.size 2 1 p -1916344441 +1144068272 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 287 this -1128973259 +1578009262 1 this.polys -776620176 +1362728240 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -18642,26 +19050,26 @@ this.size 2 1 p -1916344441 +1144068272 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 288 h -1916344441 +1144068272 1 t -776620176 +1362728240 1 t.head -1916344441 +1144068272 1 t.tail -1635542768 +1735507635 1 t.tail.head -755690462 +1671179293 1 t.tail.tail null @@ -18671,40 +19079,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 288 this -249691566 +1798219673 1 this.head -1916344441 +1144068272 1 this.tail -776620176 +1362728240 1 this.tail.head -1916344441 +1144068272 1 this.tail.tail -1635542768 +1735507635 1 this.tail.tail.head -755690462 +1671179293 1 this.tail.tail.tail null 1 h -1916344441 +1144068272 1 t -776620176 +1362728240 1 t.head -1916344441 +1144068272 1 t.tail -1635542768 +1735507635 1 t.tail.head -755690462 +1671179293 1 t.tail.tail null @@ -18714,50 +19122,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 287 this -1128973259 +1578009262 1 this.polys -249691566 +1798219673 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -776620176 +1362728240 1 this.polys.tail.head -1916344441 +1144068272 1 this.polys.tail.tail -1635542768 +1735507635 1 this.size 3 1 p -1916344441 +1144068272 1 PolyCalc.RatPolyStack.add():::ENTER this_invocation_nonce 289 this -1128973259 +1578009262 1 this.polys -249691566 +1798219673 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -776620176 +1362728240 1 this.polys.tail.head -1916344441 +1144068272 1 this.polys.tail.tail -1635542768 +1735507635 1 this.size 3 @@ -18767,22 +19175,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 290 this -1128973259 +1578009262 1 this.polys -249691566 +1798219673 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -776620176 +1362728240 1 this.polys.tail.head -1916344441 +1144068272 1 this.polys.tail.tail -1635542768 +1735507635 1 this.size 3 @@ -18792,19 +19200,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 290 this -1128973259 +1578009262 1 this.polys -776620176 +1362728240 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -18813,26 +19221,26 @@ this.size 2 1 return -1916344441 +1144068272 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 291 this -1128973259 +1578009262 1 this.polys -776620176 +1362728240 1 this.polys.head -1916344441 +1144068272 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -18845,13 +19253,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 291 this -1128973259 +1578009262 1 this.polys -1635542768 +1735507635 1 this.polys.head -755690462 +1671179293 1 this.polys.tail null @@ -18866,20 +19274,20 @@ this.size 1 1 return -1916344441 +1144068272 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 292 this -1128973259 +1578009262 1 this.polys -1635542768 +1735507635 1 this.polys.head -755690462 +1671179293 1 this.polys.tail null @@ -18894,20 +19302,20 @@ this.size 1 1 p -383103524 +1092572064 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 293 h -383103524 +1092572064 1 t -1635542768 +1735507635 1 t.head -755690462 +1671179293 1 t.tail null @@ -18923,16 +19331,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 293 this -664954162 +728885526 1 this.head -383103524 +1092572064 1 this.tail -1635542768 +1735507635 1 this.tail.head -755690462 +1671179293 1 this.tail.tail null @@ -18944,13 +19352,13 @@ this.tail.tail.tail nonsensical 2 h -383103524 +1092572064 1 t -1635542768 +1735507635 1 t.head -755690462 +1671179293 1 t.tail null @@ -18966,19 +19374,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 292 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -18987,26 +19395,26 @@ this.size 2 1 p -383103524 +1092572064 1 PolyCalc.RatPolyStack.add():::EXIT173 this_invocation_nonce 289 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19019,19 +19427,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 294 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19044,19 +19452,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 294 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19072,19 +19480,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 295 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19100,19 +19508,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 296 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19128,19 +19536,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 296 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19152,16 +19560,16 @@ index 0 1 return -664954162 +728885526 1 return.head -383103524 +1092572064 1 return.tail -1635542768 +1735507635 1 return.tail.head -755690462 +1671179293 1 return.tail.tail null @@ -19171,19 +19579,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 295 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19195,26 +19603,26 @@ index 0 1 return -383103524 +1092572064 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 297 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19230,19 +19638,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 298 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19258,19 +19666,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 298 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19282,10 +19690,10 @@ index 0 1 return -1635542768 +1735507635 1 return.head -755690462 +1671179293 1 return.tail null @@ -19301,19 +19709,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 297 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19325,26 +19733,26 @@ index 1 1 return -755690462 +1671179293 1 PolyCalc.RatPolyStack.add():::ENTER this_invocation_nonce 299 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19357,19 +19765,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 300 this -1128973259 +1578009262 1 this.polys -664954162 +728885526 1 this.polys.head -383103524 +1092572064 1 this.polys.tail -1635542768 +1735507635 1 this.polys.tail.head -755690462 +1671179293 1 this.polys.tail.tail null @@ -19382,13 +19790,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 300 this -1128973259 +1578009262 1 this.polys -1635542768 +1735507635 1 this.polys.head -755690462 +1671179293 1 this.polys.tail null @@ -19403,20 +19811,20 @@ this.size 1 1 return -383103524 +1092572064 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 301 this -1128973259 +1578009262 1 this.polys -1635542768 +1735507635 1 this.polys.head -755690462 +1671179293 1 this.polys.tail null @@ -19435,7 +19843,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 301 this -1128973259 +1578009262 1 this.polys null @@ -19456,14 +19864,14 @@ this.size 0 1 return -755690462 +1671179293 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 302 this -1128973259 +1578009262 1 this.polys null @@ -19484,14 +19892,14 @@ this.size 0 1 p -379701746 +922511709 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 303 h -379701746 +922511709 1 t null @@ -19513,10 +19921,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 303 this -1473329785 +678433396 1 this.head -379701746 +922511709 1 this.tail null @@ -19534,7 +19942,7 @@ this.tail.tail.tail nonsensical 2 h -379701746 +922511709 1 t null @@ -19556,13 +19964,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 302 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19577,20 +19985,20 @@ this.size 1 1 p -379701746 +922511709 1 PolyCalc.RatPolyStack.add():::EXIT173 this_invocation_nonce 299 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19609,13 +20017,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 304 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19634,13 +20042,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 304 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19662,13 +20070,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 305 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19690,13 +20098,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 306 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19718,13 +20126,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 306 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19742,10 +20150,10 @@ index 0 1 return -1473329785 +678433396 1 return.head -379701746 +922511709 1 return.tail null @@ -19761,13 +20169,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 305 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19785,20 +20193,20 @@ index 0 1 return -379701746 +922511709 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 307 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -19813,20 +20221,20 @@ this.size 1 1 p -1767246585 +331994761 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 308 h -1767246585 +331994761 1 t -1473329785 +678433396 1 t.head -379701746 +922511709 1 t.tail null @@ -19842,16 +20250,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 308 this -267032438 +928294079 1 this.head -1767246585 +331994761 1 this.tail -1473329785 +678433396 1 this.tail.head -379701746 +922511709 1 this.tail.tail null @@ -19863,13 +20271,13 @@ this.tail.tail.tail nonsensical 2 h -1767246585 +331994761 1 t -1473329785 +678433396 1 t.head -379701746 +922511709 1 t.tail null @@ -19885,19 +20293,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 307 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -19906,26 +20314,26 @@ this.size 2 1 p -1767246585 +331994761 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 309 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -19938,19 +20346,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 309 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -19966,19 +20374,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 310 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -19994,19 +20402,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 311 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20022,19 +20430,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 311 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20046,16 +20454,16 @@ index 0 1 return -267032438 +928294079 1 return.head -1767246585 +331994761 1 return.tail -1473329785 +678433396 1 return.tail.head -379701746 +922511709 1 return.tail.tail null @@ -20065,19 +20473,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 310 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20089,26 +20497,26 @@ index 0 1 return -1767246585 +331994761 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 312 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20124,19 +20532,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 313 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20152,19 +20560,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 313 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20176,10 +20584,10 @@ index 0 1 return -1473329785 +678433396 1 return.head -379701746 +922511709 1 return.tail null @@ -20195,19 +20603,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 312 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20219,26 +20627,26 @@ index 1 1 return -379701746 +922511709 1 PolyCalc.RatPolyStack.add():::ENTER this_invocation_nonce 314 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20251,19 +20659,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 315 this -1128973259 +1578009262 1 this.polys -267032438 +928294079 1 this.polys.head -1767246585 +331994761 1 this.polys.tail -1473329785 +678433396 1 this.polys.tail.head -379701746 +922511709 1 this.polys.tail.tail null @@ -20276,13 +20684,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 315 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -20297,20 +20705,20 @@ this.size 1 1 return -1767246585 +331994761 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 316 this -1128973259 +1578009262 1 this.polys -1473329785 +678433396 1 this.polys.head -379701746 +922511709 1 this.polys.tail null @@ -20329,7 +20737,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 316 this -1128973259 +1578009262 1 this.polys null @@ -20350,14 +20758,14 @@ this.size 0 1 return -379701746 +922511709 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 317 this -1128973259 +1578009262 1 this.polys null @@ -20378,14 +20786,14 @@ this.size 0 1 p -1920846883 +1647809929 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 318 h -1920846883 +1647809929 1 t null @@ -20407,10 +20815,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 318 this -551897230 +1258084361 1 this.head -1920846883 +1647809929 1 this.tail null @@ -20428,7 +20836,7 @@ this.tail.tail.tail nonsensical 2 h -1920846883 +1647809929 1 t null @@ -20450,13 +20858,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 317 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20471,20 +20879,20 @@ this.size 1 1 p -1920846883 +1647809929 1 PolyCalc.RatPolyStack.add():::EXIT173 this_invocation_nonce 314 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20503,13 +20911,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 319 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20528,13 +20936,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 319 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20556,13 +20964,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 320 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20584,13 +20992,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 321 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20612,13 +21020,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 321 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20636,10 +21044,10 @@ index 0 1 return -551897230 +1258084361 1 return.head -1920846883 +1647809929 1 return.tail null @@ -20655,13 +21063,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 320 this -1128973259 +1578009262 1 this.polys -551897230 +1258084361 1 this.polys.head -1920846883 +1647809929 1 this.polys.tail null @@ -20679,7 +21087,7 @@ index 0 1 return -1920846883 +1647809929 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -20690,7 +21098,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 322 this -754873217 +391914049 1 this.polys null @@ -20715,7 +21123,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 323 this -754873217 +391914049 1 this.polys null @@ -20736,14 +21144,14 @@ this.size 0 1 p -1968255290 +96406857 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 324 h -1968255290 +96406857 1 t null @@ -20765,10 +21173,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 324 this -628560642 +1534745514 1 this.head -1968255290 +96406857 1 this.tail null @@ -20786,7 +21194,7 @@ this.tail.tail.tail nonsensical 2 h -1968255290 +96406857 1 t null @@ -20808,13 +21216,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 323 this -754873217 +391914049 1 this.polys -628560642 +1534745514 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -20829,20 +21237,20 @@ this.size 1 1 p -1968255290 +96406857 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 325 this -754873217 +391914049 1 this.polys -628560642 +1534745514 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -20857,20 +21265,20 @@ this.size 1 1 p -746650501 +2003496028 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 326 h -746650501 +2003496028 1 t -628560642 +1534745514 1 t.head -1968255290 +96406857 1 t.tail null @@ -20886,16 +21294,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 326 this -1208020886 +30578394 1 this.head -746650501 +2003496028 1 this.tail -628560642 +1534745514 1 this.tail.head -1968255290 +96406857 1 this.tail.tail null @@ -20907,13 +21315,13 @@ this.tail.tail.tail nonsensical 2 h -746650501 +2003496028 1 t -628560642 +1534745514 1 t.head -1968255290 +96406857 1 t.tail null @@ -20929,19 +21337,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 325 this -754873217 +391914049 1 this.polys -1208020886 +30578394 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -20950,26 +21358,26 @@ this.size 2 1 p -746650501 +2003496028 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 327 this -754873217 +391914049 1 this.polys -1208020886 +30578394 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -20978,26 +21386,26 @@ this.size 2 1 p -896632264 +2088371948 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 328 h -896632264 +2088371948 1 t -1208020886 +30578394 1 t.head -746650501 +2003496028 1 t.tail -628560642 +1534745514 1 t.tail.head -1968255290 +96406857 1 t.tail.tail null @@ -21007,40 +21415,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 328 this -805710049 +1976870338 1 this.head -896632264 +2088371948 1 this.tail -1208020886 +30578394 1 this.tail.head -746650501 +2003496028 1 this.tail.tail -628560642 +1534745514 1 this.tail.tail.head -1968255290 +96406857 1 this.tail.tail.tail null 1 h -896632264 +2088371948 1 t -1208020886 +30578394 1 t.head -746650501 +2003496028 1 t.tail -628560642 +1534745514 1 t.tail.head -1968255290 +96406857 1 t.tail.tail null @@ -21050,50 +21458,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 327 this -754873217 +391914049 1 this.polys -805710049 +1976870338 1 this.polys.head -896632264 +2088371948 1 this.polys.tail -1208020886 +30578394 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -628560642 +1534745514 1 this.size 3 1 p -896632264 +2088371948 1 PolyCalc.RatPolyStack.sub():::ENTER this_invocation_nonce 329 this -754873217 +391914049 1 this.polys -805710049 +1976870338 1 this.polys.head -896632264 +2088371948 1 this.polys.tail -1208020886 +30578394 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -628560642 +1534745514 1 this.size 3 @@ -21103,22 +21511,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 330 this -754873217 +391914049 1 this.polys -805710049 +1976870338 1 this.polys.head -896632264 +2088371948 1 this.polys.tail -1208020886 +30578394 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -628560642 +1534745514 1 this.size 3 @@ -21128,19 +21536,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 330 this -754873217 +391914049 1 this.polys -1208020886 +30578394 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21149,26 +21557,26 @@ this.size 2 1 return -896632264 +2088371948 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 331 this -754873217 +391914049 1 this.polys -1208020886 +30578394 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21181,13 +21589,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 331 this -754873217 +391914049 1 this.polys -628560642 +1534745514 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -21202,20 +21610,20 @@ this.size 1 1 return -746650501 +2003496028 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 332 this -754873217 +391914049 1 this.polys -628560642 +1534745514 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -21230,20 +21638,20 @@ this.size 1 1 p -1684399208 +1434234664 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 333 h -1684399208 +1434234664 1 t -628560642 +1534745514 1 t.head -1968255290 +96406857 1 t.tail null @@ -21259,16 +21667,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 333 this -1568054102 +1083021083 1 this.head -1684399208 +1434234664 1 this.tail -628560642 +1534745514 1 this.tail.head -1968255290 +96406857 1 this.tail.tail null @@ -21280,13 +21688,13 @@ this.tail.tail.tail nonsensical 2 h -1684399208 +1434234664 1 t -628560642 +1534745514 1 t.head -1968255290 +96406857 1 t.tail null @@ -21302,19 +21710,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 332 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21323,26 +21731,26 @@ this.size 2 1 p -1684399208 +1434234664 1 PolyCalc.RatPolyStack.sub():::EXIT189 this_invocation_nonce 329 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21355,19 +21763,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 334 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21380,19 +21788,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 334 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21408,19 +21816,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 335 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21436,19 +21844,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 336 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21464,19 +21872,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 336 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21488,16 +21896,16 @@ index 0 1 return -1568054102 +1083021083 1 return.head -1684399208 +1434234664 1 return.tail -628560642 +1534745514 1 return.tail.head -1968255290 +96406857 1 return.tail.tail null @@ -21507,19 +21915,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 335 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21531,26 +21939,26 @@ index 0 1 return -1684399208 +1434234664 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 337 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21566,19 +21974,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 338 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21594,19 +22002,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 338 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21618,10 +22026,10 @@ index 0 1 return -628560642 +1534745514 1 return.head -1968255290 +96406857 1 return.tail null @@ -21637,19 +22045,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 337 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21661,26 +22069,26 @@ index 1 1 return -1968255290 +96406857 1 PolyCalc.RatPolyStack.sub():::ENTER this_invocation_nonce 339 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21693,19 +22101,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 340 this -754873217 +391914049 1 this.polys -1568054102 +1083021083 1 this.polys.head -1684399208 +1434234664 1 this.polys.tail -628560642 +1534745514 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -21718,13 +22126,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 340 this -754873217 +391914049 1 this.polys -628560642 +1534745514 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -21739,20 +22147,20 @@ this.size 1 1 return -1684399208 +1434234664 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 341 this -754873217 +391914049 1 this.polys -628560642 +1534745514 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -21771,7 +22179,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 341 this -754873217 +391914049 1 this.polys null @@ -21792,14 +22200,14 @@ this.size 0 1 return -1968255290 +96406857 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 342 this -754873217 +391914049 1 this.polys null @@ -21820,14 +22228,14 @@ this.size 0 1 p -365976330 +1819063424 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 343 h -365976330 +1819063424 1 t null @@ -21849,10 +22257,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 343 this -571013302 +1011279482 1 this.head -365976330 +1819063424 1 this.tail null @@ -21870,7 +22278,7 @@ this.tail.tail.tail nonsensical 2 h -365976330 +1819063424 1 t null @@ -21892,13 +22300,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 342 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -21913,20 +22321,20 @@ this.size 1 1 p -365976330 +1819063424 1 PolyCalc.RatPolyStack.sub():::EXIT189 this_invocation_nonce 339 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -21945,13 +22353,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 344 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -21970,13 +22378,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 344 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -21998,13 +22406,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 345 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -22026,13 +22434,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 346 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -22054,13 +22462,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 346 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -22078,10 +22486,10 @@ index 0 1 return -571013302 +1011279482 1 return.head -365976330 +1819063424 1 return.tail null @@ -22097,13 +22505,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 345 this -754873217 +391914049 1 this.polys -571013302 +1011279482 1 this.polys.head -365976330 +1819063424 1 this.polys.tail null @@ -22121,7 +22529,7 @@ index 0 1 return -365976330 +1819063424 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -22132,7 +22540,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 347 this -2063631918 +208866101 1 this.polys null @@ -22157,7 +22565,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 348 this -2063631918 +208866101 1 this.polys null @@ -22178,14 +22586,14 @@ this.size 0 1 p -1968255290 +96406857 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 349 h -1968255290 +96406857 1 t null @@ -22207,10 +22615,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 349 this -1600746776 +543846639 1 this.head -1968255290 +96406857 1 this.tail null @@ -22228,7 +22636,7 @@ this.tail.tail.tail nonsensical 2 h -1968255290 +96406857 1 t null @@ -22250,13 +22658,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 348 this -2063631918 +208866101 1 this.polys -1600746776 +543846639 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -22271,20 +22679,20 @@ this.size 1 1 p -1968255290 +96406857 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 350 this -2063631918 +208866101 1 this.polys -1600746776 +543846639 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -22299,20 +22707,20 @@ this.size 1 1 p -746650501 +2003496028 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 351 h -746650501 +2003496028 1 t -1600746776 +543846639 1 t.head -1968255290 +96406857 1 t.tail null @@ -22328,16 +22736,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 351 this -75934616 +690686166 1 this.head -746650501 +2003496028 1 this.tail -1600746776 +543846639 1 this.tail.head -1968255290 +96406857 1 this.tail.tail null @@ -22349,13 +22757,13 @@ this.tail.tail.tail nonsensical 2 h -746650501 +2003496028 1 t -1600746776 +543846639 1 t.head -1968255290 +96406857 1 t.tail null @@ -22371,19 +22779,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 350 this -2063631918 +208866101 1 this.polys -75934616 +690686166 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -22392,26 +22800,26 @@ this.size 2 1 p -746650501 +2003496028 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 352 this -2063631918 +208866101 1 this.polys -75934616 +690686166 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -22420,26 +22828,26 @@ this.size 2 1 p -627804794 +576020159 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 353 h -627804794 +576020159 1 t -75934616 +690686166 1 t.head -746650501 +2003496028 1 t.tail -1600746776 +543846639 1 t.tail.head -1968255290 +96406857 1 t.tail.tail null @@ -22449,40 +22857,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 353 this -928015047 +921420643 1 this.head -627804794 +576020159 1 this.tail -75934616 +690686166 1 this.tail.head -746650501 +2003496028 1 this.tail.tail -1600746776 +543846639 1 this.tail.tail.head -1968255290 +96406857 1 this.tail.tail.tail null 1 h -627804794 +576020159 1 t -75934616 +690686166 1 t.head -746650501 +2003496028 1 t.tail -1600746776 +543846639 1 t.tail.head -1968255290 +96406857 1 t.tail.tail null @@ -22492,171 +22900,171 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 352 this -2063631918 +208866101 1 this.polys -928015047 +921420643 1 this.polys.head -627804794 +576020159 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 1 p -627804794 +576020159 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 354 this -2063631918 +208866101 1 this.polys -928015047 +921420643 1 this.polys.head -627804794 +576020159 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 1 p -2122650415 +1165303897 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 355 h -2122650415 +1165303897 1 t -928015047 +921420643 1 t.head -627804794 +576020159 1 t.tail -75934616 +690686166 1 t.tail.head -746650501 +2003496028 1 t.tail.tail -1600746776 +543846639 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 355 this -1387180941 +887750041 1 this.head -2122650415 +1165303897 1 this.tail -928015047 +921420643 1 this.tail.head -627804794 +576020159 1 this.tail.tail -75934616 +690686166 1 this.tail.tail.head -746650501 +2003496028 1 this.tail.tail.tail -1600746776 +543846639 1 h -2122650415 +1165303897 1 t -928015047 +921420643 1 t.head -627804794 +576020159 1 t.tail -75934616 +690686166 1 t.tail.head -746650501 +2003496028 1 t.tail.tail -1600746776 +543846639 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 354 this -2063631918 +208866101 1 this.polys -1387180941 +887750041 1 this.polys.head -2122650415 +1165303897 1 this.polys.tail -928015047 +921420643 1 this.polys.tail.head -627804794 +576020159 1 this.polys.tail.tail -75934616 +690686166 1 this.size 4 1 p -2122650415 +1165303897 1 PolyCalc.RatPolyStack.sub():::ENTER this_invocation_nonce 356 this -2063631918 +208866101 1 this.polys -1387180941 +887750041 1 this.polys.head -2122650415 +1165303897 1 this.polys.tail -928015047 +921420643 1 this.polys.tail.head -627804794 +576020159 1 this.polys.tail.tail -75934616 +690686166 1 this.size 4 @@ -22666,22 +23074,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 357 this -2063631918 +208866101 1 this.polys -1387180941 +887750041 1 this.polys.head -2122650415 +1165303897 1 this.polys.tail -928015047 +921420643 1 this.polys.tail.head -627804794 +576020159 1 this.polys.tail.tail -75934616 +690686166 1 this.size 4 @@ -22691,50 +23099,50 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 357 this -2063631918 +208866101 1 this.polys -928015047 +921420643 1 this.polys.head -627804794 +576020159 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 1 return -2122650415 +1165303897 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 358 this -2063631918 +208866101 1 this.polys -928015047 +921420643 1 this.polys.head -627804794 +576020159 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -22744,19 +23152,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 358 this -2063631918 +208866101 1 this.polys -75934616 +690686166 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -22765,26 +23173,26 @@ this.size 2 1 return -627804794 +576020159 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 359 this -2063631918 +208866101 1 this.polys -75934616 +690686166 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -22793,26 +23201,26 @@ this.size 2 1 p -1267603555 +1010953501 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 360 h -1267603555 +1010953501 1 t -75934616 +690686166 1 t.head -746650501 +2003496028 1 t.tail -1600746776 +543846639 1 t.tail.head -1968255290 +96406857 1 t.tail.tail null @@ -22822,40 +23230,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 360 this -1575170645 +1423561005 1 this.head -1267603555 +1010953501 1 this.tail -75934616 +690686166 1 this.tail.head -746650501 +2003496028 1 this.tail.tail -1600746776 +543846639 1 this.tail.tail.head -1968255290 +96406857 1 this.tail.tail.tail null 1 h -1267603555 +1010953501 1 t -75934616 +690686166 1 t.head -746650501 +2003496028 1 t.tail -1600746776 +543846639 1 t.tail.head -1968255290 +96406857 1 t.tail.tail null @@ -22865,50 +23273,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 359 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 1 p -1267603555 +1010953501 1 PolyCalc.RatPolyStack.sub():::EXIT189 this_invocation_nonce 356 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -22918,22 +23326,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 361 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -22943,22 +23351,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 361 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -22971,22 +23379,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 362 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -22999,22 +23407,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 363 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23027,22 +23435,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 363 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23051,41 +23459,41 @@ index 0 1 return -1575170645 +1423561005 1 return.head -1267603555 +1010953501 1 return.tail -75934616 +690686166 1 return.tail.head -746650501 +2003496028 1 return.tail.tail -1600746776 +543846639 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 362 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23094,29 +23502,29 @@ index 0 1 return -1267603555 +1010953501 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 364 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23129,22 +23537,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 365 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23157,22 +23565,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 365 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23181,16 +23589,16 @@ index 0 1 return -75934616 +690686166 1 return.head -746650501 +2003496028 1 return.tail -1600746776 +543846639 1 return.tail.head -1968255290 +96406857 1 return.tail.tail null @@ -23200,22 +23608,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 364 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23224,29 +23632,29 @@ index 1 1 return -746650501 +2003496028 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 366 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23259,22 +23667,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 367 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23287,22 +23695,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 367 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23311,10 +23719,10 @@ index 0 1 return -1600746776 +543846639 1 return.head -1968255290 +96406857 1 return.tail null @@ -23330,22 +23738,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 366 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23354,29 +23762,29 @@ index 2 1 return -1968255290 +96406857 1 PolyCalc.RatPolyStack.sub():::ENTER this_invocation_nonce 368 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23386,22 +23794,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 369 this -2063631918 +208866101 1 this.polys -1575170645 +1423561005 1 this.polys.head -1267603555 +1010953501 1 this.polys.tail -75934616 +690686166 1 this.polys.tail.head -746650501 +2003496028 1 this.polys.tail.tail -1600746776 +543846639 1 this.size 3 @@ -23411,19 +23819,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 369 this -2063631918 +208866101 1 this.polys -75934616 +690686166 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23432,26 +23840,26 @@ this.size 2 1 return -1267603555 +1010953501 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 370 this -2063631918 +208866101 1 this.polys -75934616 +690686166 1 this.polys.head -746650501 +2003496028 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23464,13 +23872,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 370 this -2063631918 +208866101 1 this.polys -1600746776 +543846639 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -23485,20 +23893,20 @@ this.size 1 1 return -746650501 +2003496028 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 371 this -2063631918 +208866101 1 this.polys -1600746776 +543846639 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -23513,20 +23921,20 @@ this.size 1 1 p -1862113946 +943870983 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 372 h -1862113946 +943870983 1 t -1600746776 +543846639 1 t.head -1968255290 +96406857 1 t.tail null @@ -23542,16 +23950,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 372 this -1269902691 +1136419747 1 this.head -1862113946 +943870983 1 this.tail -1600746776 +543846639 1 this.tail.head -1968255290 +96406857 1 this.tail.tail null @@ -23563,13 +23971,13 @@ this.tail.tail.tail nonsensical 2 h -1862113946 +943870983 1 t -1600746776 +543846639 1 t.head -1968255290 +96406857 1 t.tail null @@ -23585,19 +23993,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 371 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23606,26 +24014,26 @@ this.size 2 1 p -1862113946 +943870983 1 PolyCalc.RatPolyStack.sub():::EXIT189 this_invocation_nonce 368 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23638,19 +24046,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 373 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23663,19 +24071,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 373 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23691,19 +24099,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 374 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23719,19 +24127,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 375 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23747,19 +24155,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 375 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23771,16 +24179,16 @@ index 0 1 return -1269902691 +1136419747 1 return.head -1862113946 +943870983 1 return.tail -1600746776 +543846639 1 return.tail.head -1968255290 +96406857 1 return.tail.tail null @@ -23790,19 +24198,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 374 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23814,26 +24222,26 @@ index 0 1 return -1862113946 +943870983 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 376 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23849,19 +24257,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 377 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23877,19 +24285,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 377 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23901,10 +24309,10 @@ index 0 1 return -1600746776 +543846639 1 return.head -1968255290 +96406857 1 return.tail null @@ -23920,19 +24328,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 376 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23944,26 +24352,26 @@ index 1 1 return -1968255290 +96406857 1 PolyCalc.RatPolyStack.sub():::ENTER this_invocation_nonce 378 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -23976,19 +24384,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 379 this -2063631918 +208866101 1 this.polys -1269902691 +1136419747 1 this.polys.head -1862113946 +943870983 1 this.polys.tail -1600746776 +543846639 1 this.polys.tail.head -1968255290 +96406857 1 this.polys.tail.tail null @@ -24001,13 +24409,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 379 this -2063631918 +208866101 1 this.polys -1600746776 +543846639 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -24022,20 +24430,20 @@ this.size 1 1 return -1862113946 +943870983 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 380 this -2063631918 +208866101 1 this.polys -1600746776 +543846639 1 this.polys.head -1968255290 +96406857 1 this.polys.tail null @@ -24054,7 +24462,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 380 this -2063631918 +208866101 1 this.polys null @@ -24075,14 +24483,14 @@ this.size 0 1 return -1968255290 +96406857 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 381 this -2063631918 +208866101 1 this.polys null @@ -24103,14 +24511,14 @@ this.size 0 1 p -1562043751 +1881561036 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 382 h -1562043751 +1881561036 1 t null @@ -24132,10 +24540,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 382 this -281738482 +1785507932 1 this.head -1562043751 +1881561036 1 this.tail null @@ -24153,7 +24561,7 @@ this.tail.tail.tail nonsensical 2 h -1562043751 +1881561036 1 t null @@ -24175,13 +24583,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 381 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24196,20 +24604,20 @@ this.size 1 1 p -1562043751 +1881561036 1 PolyCalc.RatPolyStack.sub():::EXIT189 this_invocation_nonce 378 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24228,13 +24636,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 383 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24253,13 +24661,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 383 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24281,13 +24689,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 384 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24309,13 +24717,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 385 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24337,13 +24745,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 385 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24361,10 +24769,10 @@ index 0 1 return -281738482 +1785507932 1 return.head -1562043751 +1881561036 1 return.tail null @@ -24380,13 +24788,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 384 this -2063631918 +208866101 1 this.polys -281738482 +1785507932 1 this.polys.head -1562043751 +1881561036 1 this.polys.tail null @@ -24404,7 +24812,7 @@ index 0 1 return -1562043751 +1881561036 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -24415,7 +24823,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 386 this -2124708986 +1084502906 1 this.polys null @@ -24440,7 +24848,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 387 this -2124708986 +1084502906 1 this.polys null @@ -24461,14 +24869,14 @@ this.size 0 1 p -1625845386 +1613095350 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 388 h -1625845386 +1613095350 1 t null @@ -24490,10 +24898,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 388 this -1001478074 +587153993 1 this.head -1625845386 +1613095350 1 this.tail null @@ -24511,7 +24919,7 @@ this.tail.tail.tail nonsensical 2 h -1625845386 +1613095350 1 t null @@ -24533,13 +24941,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 387 this -2124708986 +1084502906 1 this.polys -1001478074 +587153993 1 this.polys.head -1625845386 +1613095350 1 this.polys.tail null @@ -24554,20 +24962,20 @@ this.size 1 1 p -1625845386 +1613095350 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 389 this -2124708986 +1084502906 1 this.polys -1001478074 +587153993 1 this.polys.head -1625845386 +1613095350 1 this.polys.tail null @@ -24582,20 +24990,20 @@ this.size 1 1 p -2012648179 +757004314 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 390 h -2012648179 +757004314 1 t -1001478074 +587153993 1 t.head -1625845386 +1613095350 1 t.tail null @@ -24611,16 +25019,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 390 this -1563020556 +1279271200 1 this.head -2012648179 +757004314 1 this.tail -1001478074 +587153993 1 this.tail.head -1625845386 +1613095350 1 this.tail.tail null @@ -24632,13 +25040,13 @@ this.tail.tail.tail nonsensical 2 h -2012648179 +757004314 1 t -1001478074 +587153993 1 t.head -1625845386 +1613095350 1 t.tail null @@ -24654,19 +25062,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 389 this -2124708986 +1084502906 1 this.polys -1563020556 +1279271200 1 this.polys.head -2012648179 +757004314 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -24675,26 +25083,26 @@ this.size 2 1 p -2012648179 +757004314 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 391 this -2124708986 +1084502906 1 this.polys -1563020556 +1279271200 1 this.polys.head -2012648179 +757004314 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -24703,26 +25111,26 @@ this.size 2 1 p -1666514588 +52908367 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 392 h -1666514588 +52908367 1 t -1563020556 +1279271200 1 t.head -2012648179 +757004314 1 t.tail -1001478074 +587153993 1 t.tail.head -1625845386 +1613095350 1 t.tail.tail null @@ -24732,40 +25140,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 392 this -1628956342 +1527953000 1 this.head -1666514588 +52908367 1 this.tail -1563020556 +1279271200 1 this.tail.head -2012648179 +757004314 1 this.tail.tail -1001478074 +587153993 1 this.tail.tail.head -1625845386 +1613095350 1 this.tail.tail.tail null 1 h -1666514588 +52908367 1 t -1563020556 +1279271200 1 t.head -2012648179 +757004314 1 t.tail -1001478074 +587153993 1 t.tail.head -1625845386 +1613095350 1 t.tail.tail null @@ -24775,50 +25183,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 391 this -2124708986 +1084502906 1 this.polys -1628956342 +1527953000 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -1563020556 +1279271200 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail -1001478074 +587153993 1 this.size 3 1 p -1666514588 +52908367 1 PolyCalc.RatPolyStack.mul():::ENTER this_invocation_nonce 393 this -2124708986 +1084502906 1 this.polys -1628956342 +1527953000 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -1563020556 +1279271200 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail -1001478074 +587153993 1 this.size 3 @@ -24828,22 +25236,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 394 this -2124708986 +1084502906 1 this.polys -1628956342 +1527953000 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -1563020556 +1279271200 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail -1001478074 +587153993 1 this.size 3 @@ -24853,19 +25261,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 394 this -2124708986 +1084502906 1 this.polys -1563020556 +1279271200 1 this.polys.head -2012648179 +757004314 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -24874,26 +25282,26 @@ this.size 2 1 return -1666514588 +52908367 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 395 this -2124708986 +1084502906 1 this.polys -1563020556 +1279271200 1 this.polys.head -2012648179 +757004314 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -24906,13 +25314,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 395 this -2124708986 +1084502906 1 this.polys -1001478074 +587153993 1 this.polys.head -1625845386 +1613095350 1 this.polys.tail null @@ -24927,20 +25335,20 @@ this.size 1 1 return -2012648179 +757004314 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 396 this -2124708986 +1084502906 1 this.polys -1001478074 +587153993 1 this.polys.head -1625845386 +1613095350 1 this.polys.tail null @@ -24955,20 +25363,20 @@ this.size 1 1 p -1747708038 +18242360 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 397 h -1747708038 +18242360 1 t -1001478074 +587153993 1 t.head -1625845386 +1613095350 1 t.tail null @@ -24984,16 +25392,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 397 this -447671000 +1276261147 1 this.head -1747708038 +18242360 1 this.tail -1001478074 +587153993 1 this.tail.head -1625845386 +1613095350 1 this.tail.tail null @@ -25005,13 +25413,13 @@ this.tail.tail.tail nonsensical 2 h -1747708038 +18242360 1 t -1001478074 +587153993 1 t.head -1625845386 +1613095350 1 t.tail null @@ -25027,19 +25435,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 396 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25048,26 +25456,26 @@ this.size 2 1 p -1747708038 +18242360 1 PolyCalc.RatPolyStack.mul():::EXIT205 this_invocation_nonce 393 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25080,19 +25488,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 398 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25105,19 +25513,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 398 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25133,19 +25541,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 399 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25161,19 +25569,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 400 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25189,19 +25597,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 400 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25213,16 +25621,16 @@ index 0 1 return -447671000 +1276261147 1 return.head -1747708038 +18242360 1 return.tail -1001478074 +587153993 1 return.tail.head -1625845386 +1613095350 1 return.tail.tail null @@ -25232,19 +25640,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 399 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25256,26 +25664,26 @@ index 0 1 return -1747708038 +18242360 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 401 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25291,19 +25699,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 402 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25319,19 +25727,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 402 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25343,10 +25751,10 @@ index 0 1 return -1001478074 +587153993 1 return.head -1625845386 +1613095350 1 return.tail null @@ -25362,19 +25770,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 401 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25386,26 +25794,26 @@ index 1 1 return -1625845386 +1613095350 1 PolyCalc.RatPolyStack.mul():::ENTER this_invocation_nonce 403 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25418,19 +25826,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 404 this -2124708986 +1084502906 1 this.polys -447671000 +1276261147 1 this.polys.head -1747708038 +18242360 1 this.polys.tail -1001478074 +587153993 1 this.polys.tail.head -1625845386 +1613095350 1 this.polys.tail.tail null @@ -25443,13 +25851,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 404 this -2124708986 +1084502906 1 this.polys -1001478074 +587153993 1 this.polys.head -1625845386 +1613095350 1 this.polys.tail null @@ -25464,20 +25872,20 @@ this.size 1 1 return -1747708038 +18242360 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 405 this -2124708986 +1084502906 1 this.polys -1001478074 +587153993 1 this.polys.head -1625845386 +1613095350 1 this.polys.tail null @@ -25496,7 +25904,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 405 this -2124708986 +1084502906 1 this.polys null @@ -25517,14 +25925,14 @@ this.size 0 1 return -1625845386 +1613095350 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 406 this -2124708986 +1084502906 1 this.polys null @@ -25545,14 +25953,14 @@ this.size 0 1 p -1371281559 +1971764991 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 407 h -1371281559 +1971764991 1 t null @@ -25574,10 +25982,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 407 this -334662509 +996796369 1 this.head -1371281559 +1971764991 1 this.tail null @@ -25595,7 +26003,7 @@ this.tail.tail.tail nonsensical 2 h -1371281559 +1971764991 1 t null @@ -25617,13 +26025,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 406 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25638,20 +26046,20 @@ this.size 1 1 p -1371281559 +1971764991 1 PolyCalc.RatPolyStack.mul():::EXIT205 this_invocation_nonce 403 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25670,13 +26078,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 408 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25695,13 +26103,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 408 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25723,13 +26131,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 409 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25751,13 +26159,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 410 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25779,13 +26187,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 410 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25803,10 +26211,10 @@ index 0 1 return -334662509 +996796369 1 return.head -1371281559 +1971764991 1 return.tail null @@ -25822,13 +26230,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 409 this -2124708986 +1084502906 1 this.polys -334662509 +996796369 1 this.polys.head -1371281559 +1971764991 1 this.polys.tail null @@ -25846,7 +26254,7 @@ index 0 1 return -1371281559 +1971764991 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -25857,7 +26265,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 411 this -413117270 +135640095 1 this.polys null @@ -25882,7 +26290,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 412 this -413117270 +135640095 1 this.polys null @@ -25903,14 +26311,14 @@ this.size 0 1 p -2012648179 +757004314 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 413 h -2012648179 +757004314 1 t null @@ -25932,10 +26340,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 413 this -447326139 +1430439149 1 this.head -2012648179 +757004314 1 this.tail null @@ -25953,7 +26361,7 @@ this.tail.tail.tail nonsensical 2 h -2012648179 +757004314 1 t null @@ -25975,13 +26383,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 412 this -413117270 +135640095 1 this.polys -447326139 +1430439149 1 this.polys.head -2012648179 +757004314 1 this.polys.tail null @@ -25996,20 +26404,20 @@ this.size 1 1 p -2012648179 +757004314 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 414 this -413117270 +135640095 1 this.polys -447326139 +1430439149 1 this.polys.head -2012648179 +757004314 1 this.polys.tail null @@ -26024,20 +26432,20 @@ this.size 1 1 p -1666514588 +52908367 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 415 h -1666514588 +52908367 1 t -447326139 +1430439149 1 t.head -2012648179 +757004314 1 t.tail null @@ -26053,16 +26461,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 415 this -2017653673 +359922172 1 this.head -1666514588 +52908367 1 this.tail -447326139 +1430439149 1 this.tail.head -2012648179 +757004314 1 this.tail.tail null @@ -26074,13 +26482,13 @@ this.tail.tail.tail nonsensical 2 h -1666514588 +52908367 1 t -447326139 +1430439149 1 t.head -2012648179 +757004314 1 t.tail null @@ -26096,19 +26504,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 414 this -413117270 +135640095 1 this.polys -2017653673 +359922172 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26117,26 +26525,26 @@ this.size 2 1 p -1666514588 +52908367 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 416 this -413117270 +135640095 1 this.polys -2017653673 +359922172 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26145,26 +26553,26 @@ this.size 2 1 p -1666514588 +52908367 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 417 h -1666514588 +52908367 1 t -2017653673 +359922172 1 t.head -1666514588 +52908367 1 t.tail -447326139 +1430439149 1 t.tail.head -2012648179 +757004314 1 t.tail.tail null @@ -26174,40 +26582,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 417 this -1938495981 +1632682988 1 this.head -1666514588 +52908367 1 this.tail -2017653673 +359922172 1 this.tail.head -1666514588 +52908367 1 this.tail.tail -447326139 +1430439149 1 this.tail.tail.head -2012648179 +757004314 1 this.tail.tail.tail null 1 h -1666514588 +52908367 1 t -2017653673 +359922172 1 t.head -1666514588 +52908367 1 t.tail -447326139 +1430439149 1 t.tail.head -2012648179 +757004314 1 t.tail.tail null @@ -26217,50 +26625,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 416 this -413117270 +135640095 1 this.polys -1938495981 +1632682988 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -2017653673 +359922172 1 this.polys.tail.head -1666514588 +52908367 1 this.polys.tail.tail -447326139 +1430439149 1 this.size 3 1 p -1666514588 +52908367 1 PolyCalc.RatPolyStack.mul():::ENTER this_invocation_nonce 418 this -413117270 +135640095 1 this.polys -1938495981 +1632682988 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -2017653673 +359922172 1 this.polys.tail.head -1666514588 +52908367 1 this.polys.tail.tail -447326139 +1430439149 1 this.size 3 @@ -26270,22 +26678,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 419 this -413117270 +135640095 1 this.polys -1938495981 +1632682988 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -2017653673 +359922172 1 this.polys.tail.head -1666514588 +52908367 1 this.polys.tail.tail -447326139 +1430439149 1 this.size 3 @@ -26295,19 +26703,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 419 this -413117270 +135640095 1 this.polys -2017653673 +359922172 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26316,26 +26724,26 @@ this.size 2 1 return -1666514588 +52908367 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 420 this -413117270 +135640095 1 this.polys -2017653673 +359922172 1 this.polys.head -1666514588 +52908367 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26348,13 +26756,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 420 this -413117270 +135640095 1 this.polys -447326139 +1430439149 1 this.polys.head -2012648179 +757004314 1 this.polys.tail null @@ -26369,20 +26777,20 @@ this.size 1 1 return -1666514588 +52908367 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 421 this -413117270 +135640095 1 this.polys -447326139 +1430439149 1 this.polys.head -2012648179 +757004314 1 this.polys.tail null @@ -26397,20 +26805,20 @@ this.size 1 1 p -827544030 +1153447573 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 422 h -827544030 +1153447573 1 t -447326139 +1430439149 1 t.head -2012648179 +757004314 1 t.tail null @@ -26426,16 +26834,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 422 this -1428414238 +132577100 1 this.head -827544030 +1153447573 1 this.tail -447326139 +1430439149 1 this.tail.head -2012648179 +757004314 1 this.tail.tail null @@ -26447,13 +26855,13 @@ this.tail.tail.tail nonsensical 2 h -827544030 +1153447573 1 t -447326139 +1430439149 1 t.head -2012648179 +757004314 1 t.tail null @@ -26469,19 +26877,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 421 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26490,26 +26898,26 @@ this.size 2 1 p -827544030 +1153447573 1 PolyCalc.RatPolyStack.mul():::EXIT205 this_invocation_nonce 418 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26522,19 +26930,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 423 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26547,19 +26955,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 423 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26575,19 +26983,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 424 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26603,19 +27011,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 425 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26631,19 +27039,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 425 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26655,16 +27063,16 @@ index 0 1 return -1428414238 +132577100 1 return.head -827544030 +1153447573 1 return.tail -447326139 +1430439149 1 return.tail.head -2012648179 +757004314 1 return.tail.tail null @@ -26674,19 +27082,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 424 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26698,26 +27106,26 @@ index 0 1 return -827544030 +1153447573 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 426 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26733,19 +27141,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 427 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26761,19 +27169,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 427 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26785,10 +27193,10 @@ index 0 1 return -447326139 +1430439149 1 return.head -2012648179 +757004314 1 return.tail null @@ -26804,19 +27212,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 426 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26828,26 +27236,26 @@ index 1 1 return -2012648179 +757004314 1 PolyCalc.RatPolyStack.mul():::ENTER this_invocation_nonce 428 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26860,19 +27268,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 429 this -413117270 +135640095 1 this.polys -1428414238 +132577100 1 this.polys.head -827544030 +1153447573 1 this.polys.tail -447326139 +1430439149 1 this.polys.tail.head -2012648179 +757004314 1 this.polys.tail.tail null @@ -26885,13 +27293,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 429 this -413117270 +135640095 1 this.polys -447326139 +1430439149 1 this.polys.head -2012648179 +757004314 1 this.polys.tail null @@ -26906,20 +27314,20 @@ this.size 1 1 return -827544030 +1153447573 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 430 this -413117270 +135640095 1 this.polys -447326139 +1430439149 1 this.polys.head -2012648179 +757004314 1 this.polys.tail null @@ -26938,7 +27346,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 430 this -413117270 +135640095 1 this.polys null @@ -26959,14 +27367,14 @@ this.size 0 1 return -2012648179 +757004314 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 431 this -413117270 +135640095 1 this.polys null @@ -26987,14 +27395,14 @@ this.size 0 1 p -638408253 +231756373 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 432 h -638408253 +231756373 1 t null @@ -27016,10 +27424,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 432 this -899207759 +1786294176 1 this.head -638408253 +231756373 1 this.tail null @@ -27037,7 +27445,7 @@ this.tail.tail.tail nonsensical 2 h -638408253 +231756373 1 t null @@ -27059,13 +27467,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 431 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27080,20 +27488,20 @@ this.size 1 1 p -638408253 +231756373 1 PolyCalc.RatPolyStack.mul():::EXIT205 this_invocation_nonce 428 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27112,13 +27520,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 433 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27137,13 +27545,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 433 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27165,13 +27573,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 434 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27193,13 +27601,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 435 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27221,13 +27629,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 435 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27245,10 +27653,10 @@ index 0 1 return -899207759 +1786294176 1 return.head -638408253 +231756373 1 return.tail null @@ -27264,13 +27672,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 434 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27288,20 +27696,20 @@ index 0 1 return -638408253 +231756373 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 436 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27316,20 +27724,20 @@ this.size 1 1 p -1142381574 +793331940 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 437 h -1142381574 +793331940 1 t -899207759 +1786294176 1 t.head -638408253 +231756373 1 t.tail null @@ -27345,16 +27753,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 437 this -1503310038 +522553046 1 this.head -1142381574 +793331940 1 this.tail -899207759 +1786294176 1 this.tail.head -638408253 +231756373 1 this.tail.tail null @@ -27366,13 +27774,13 @@ this.tail.tail.tail nonsensical 2 h -1142381574 +793331940 1 t -899207759 +1786294176 1 t.head -638408253 +231756373 1 t.tail null @@ -27388,19 +27796,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 436 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27409,26 +27817,26 @@ this.size 2 1 p -1142381574 +793331940 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 438 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27441,19 +27849,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 438 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27469,19 +27877,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 439 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27497,19 +27905,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 440 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27525,19 +27933,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 440 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27549,16 +27957,16 @@ index 0 1 return -1503310038 +522553046 1 return.head -1142381574 +793331940 1 return.tail -899207759 +1786294176 1 return.tail.head -638408253 +231756373 1 return.tail.tail null @@ -27568,19 +27976,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 439 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27592,26 +28000,26 @@ index 0 1 return -1142381574 +793331940 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 441 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27627,19 +28035,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 442 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27655,19 +28063,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 442 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27679,10 +28087,10 @@ index 0 1 return -899207759 +1786294176 1 return.head -638408253 +231756373 1 return.tail null @@ -27698,19 +28106,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 441 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27722,26 +28130,26 @@ index 1 1 return -638408253 +231756373 1 PolyCalc.RatPolyStack.mul():::ENTER this_invocation_nonce 443 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27754,19 +28162,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 444 this -413117270 +135640095 1 this.polys -1503310038 +522553046 1 this.polys.head -1142381574 +793331940 1 this.polys.tail -899207759 +1786294176 1 this.polys.tail.head -638408253 +231756373 1 this.polys.tail.tail null @@ -27779,13 +28187,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 444 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27800,20 +28208,20 @@ this.size 1 1 return -1142381574 +793331940 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 445 this -413117270 +135640095 1 this.polys -899207759 +1786294176 1 this.polys.head -638408253 +231756373 1 this.polys.tail null @@ -27832,7 +28240,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 445 this -413117270 +135640095 1 this.polys null @@ -27853,14 +28261,14 @@ this.size 0 1 return -638408253 +231756373 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 446 this -413117270 +135640095 1 this.polys null @@ -27881,14 +28289,14 @@ this.size 0 1 p -986701711 +275266973 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 447 h -986701711 +275266973 1 t null @@ -27910,10 +28318,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 447 this -626934643 +1069716895 1 this.head -986701711 +275266973 1 this.tail null @@ -27931,7 +28339,7 @@ this.tail.tail.tail nonsensical 2 h -986701711 +275266973 1 t null @@ -27953,13 +28361,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 446 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -27974,20 +28382,20 @@ this.size 1 1 p -986701711 +275266973 1 PolyCalc.RatPolyStack.mul():::EXIT205 this_invocation_nonce 443 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28006,13 +28414,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 448 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28031,13 +28439,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 448 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28059,13 +28467,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 449 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28087,13 +28495,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 450 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28115,13 +28523,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 450 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28139,10 +28547,10 @@ index 0 1 return -626934643 +1069716895 1 return.head -986701711 +275266973 1 return.tail null @@ -28158,13 +28566,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 449 this -413117270 +135640095 1 this.polys -626934643 +1069716895 1 this.polys.head -986701711 +275266973 1 this.polys.tail null @@ -28182,7 +28590,7 @@ index 0 1 return -986701711 +275266973 1 PolyCalc.RatPolyStack.RatPolyStack():::ENTER @@ -28193,7 +28601,7 @@ PolyCalc.RatPolyStack.RatPolyStack():::EXIT74 this_invocation_nonce 451 this -1335772719 +1521083627 1 this.polys null @@ -28218,7 +28626,7 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 452 this -1335772719 +1521083627 1 this.polys null @@ -28239,14 +28647,14 @@ this.size 0 1 p -538042495 +1770642014 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 453 h -538042495 +1770642014 1 t null @@ -28268,10 +28676,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 453 this -1974059595 +945591847 1 this.head -538042495 +1770642014 1 this.tail null @@ -28289,7 +28697,7 @@ this.tail.tail.tail nonsensical 2 h -538042495 +1770642014 1 t null @@ -28311,13 +28719,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 452 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -28332,20 +28740,20 @@ this.size 1 1 p -538042495 +1770642014 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 454 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -28360,20 +28768,20 @@ this.size 1 1 p -1544750662 +328827614 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 455 h -1544750662 +328827614 1 t -1974059595 +945591847 1 t.head -538042495 +1770642014 1 t.tail null @@ -28389,16 +28797,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 455 this -1694567651 +109228794 1 this.head -1544750662 +328827614 1 this.tail -1974059595 +945591847 1 this.tail.head -538042495 +1770642014 1 this.tail.tail null @@ -28410,13 +28818,13 @@ this.tail.tail.tail nonsensical 2 h -1544750662 +328827614 1 t -1974059595 +945591847 1 t.head -538042495 +1770642014 1 t.tail null @@ -28432,19 +28840,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 454 this -1335772719 +1521083627 1 this.polys -1694567651 +109228794 1 this.polys.head -1544750662 +328827614 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28453,26 +28861,26 @@ this.size 2 1 p -1544750662 +328827614 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 456 this -1335772719 +1521083627 1 this.polys -1694567651 +109228794 1 this.polys.head -1544750662 +328827614 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28481,26 +28889,26 @@ this.size 2 1 p -670383843 +561959774 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 457 h -670383843 +561959774 1 t -1694567651 +109228794 1 t.head -1544750662 +328827614 1 t.tail -1974059595 +945591847 1 t.tail.head -538042495 +1770642014 1 t.tail.tail null @@ -28510,40 +28918,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 457 this -1442037139 +2110756088 1 this.head -670383843 +561959774 1 this.tail -1694567651 +109228794 1 this.tail.head -1544750662 +328827614 1 this.tail.tail -1974059595 +945591847 1 this.tail.tail.head -538042495 +1770642014 1 this.tail.tail.tail null 1 h -670383843 +561959774 1 t -1694567651 +109228794 1 t.head -1544750662 +328827614 1 t.tail -1974059595 +945591847 1 t.tail.head -538042495 +1770642014 1 t.tail.tail null @@ -28553,50 +28961,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 456 this -1335772719 +1521083627 1 this.polys -1442037139 +2110756088 1 this.polys.head -670383843 +561959774 1 this.polys.tail -1694567651 +109228794 1 this.polys.tail.head -1544750662 +328827614 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 1 p -670383843 +561959774 1 PolyCalc.RatPolyStack.div():::ENTER this_invocation_nonce 458 this -1335772719 +1521083627 1 this.polys -1442037139 +2110756088 1 this.polys.head -670383843 +561959774 1 this.polys.tail -1694567651 +109228794 1 this.polys.tail.head -1544750662 +328827614 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -28606,22 +29014,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 459 this -1335772719 +1521083627 1 this.polys -1442037139 +2110756088 1 this.polys.head -670383843 +561959774 1 this.polys.tail -1694567651 +109228794 1 this.polys.tail.head -1544750662 +328827614 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -28631,19 +29039,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 459 this -1335772719 +1521083627 1 this.polys -1694567651 +109228794 1 this.polys.head -1544750662 +328827614 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28652,26 +29060,26 @@ this.size 2 1 return -670383843 +561959774 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 460 this -1335772719 +1521083627 1 this.polys -1694567651 +109228794 1 this.polys.head -1544750662 +328827614 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28684,13 +29092,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 460 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -28705,20 +29113,20 @@ this.size 1 1 return -1544750662 +328827614 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 461 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -28733,20 +29141,20 @@ this.size 1 1 p -1965238778 +580871917 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 462 h -1965238778 +580871917 1 t -1974059595 +945591847 1 t.head -538042495 +1770642014 1 t.tail null @@ -28762,16 +29170,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 462 this -1469650986 +823723302 1 this.head -1965238778 +580871917 1 this.tail -1974059595 +945591847 1 this.tail.head -538042495 +1770642014 1 this.tail.tail null @@ -28783,13 +29191,13 @@ this.tail.tail.tail nonsensical 2 h -1965238778 +580871917 1 t -1974059595 +945591847 1 t.head -538042495 +1770642014 1 t.tail null @@ -28805,19 +29213,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 461 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28826,26 +29234,26 @@ this.size 2 1 p -1965238778 +580871917 1 PolyCalc.RatPolyStack.div():::EXIT221 this_invocation_nonce 458 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28858,19 +29266,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 463 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28883,19 +29291,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 463 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28911,19 +29319,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 464 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28939,19 +29347,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 465 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28967,19 +29375,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 465 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -28991,16 +29399,16 @@ index 0 1 return -1469650986 +823723302 1 return.head -1965238778 +580871917 1 return.tail -1974059595 +945591847 1 return.tail.head -538042495 +1770642014 1 return.tail.tail null @@ -29010,19 +29418,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 464 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -29034,26 +29442,26 @@ index 0 1 return -1965238778 +580871917 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 466 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -29069,19 +29477,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 467 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -29097,19 +29505,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 467 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -29121,10 +29529,10 @@ index 0 1 return -1974059595 +945591847 1 return.head -538042495 +1770642014 1 return.tail null @@ -29140,19 +29548,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 466 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -29164,26 +29572,26 @@ index 1 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 468 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -29192,26 +29600,26 @@ this.size 2 1 p -67213908 +1714078840 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 469 h -67213908 +1714078840 1 t -1469650986 +823723302 1 t.head -1965238778 +580871917 1 t.tail -1974059595 +945591847 1 t.tail.head -538042495 +1770642014 1 t.tail.tail null @@ -29221,40 +29629,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 469 this -87753434 +1732502545 1 this.head -67213908 +1714078840 1 this.tail -1469650986 +823723302 1 this.tail.head -1965238778 +580871917 1 this.tail.tail -1974059595 +945591847 1 this.tail.tail.head -538042495 +1770642014 1 this.tail.tail.tail null 1 h -67213908 +1714078840 1 t -1469650986 +823723302 1 t.head -1965238778 +580871917 1 t.tail -1974059595 +945591847 1 t.tail.head -538042495 +1770642014 1 t.tail.tail null @@ -29264,171 +29672,171 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 468 this -1335772719 +1521083627 1 this.polys -87753434 +1732502545 1 this.polys.head -67213908 +1714078840 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 1 p -67213908 +1714078840 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 470 this -1335772719 +1521083627 1 this.polys -87753434 +1732502545 1 this.polys.head -67213908 +1714078840 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 1 p -538042495 +1770642014 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 471 h -538042495 +1770642014 1 t -87753434 +1732502545 1 t.head -67213908 +1714078840 1 t.tail -1469650986 +823723302 1 t.tail.head -1965238778 +580871917 1 t.tail.tail -1974059595 +945591847 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 471 this -1698183396 +1051876890 1 this.head -538042495 +1770642014 1 this.tail -87753434 +1732502545 1 this.tail.head -67213908 +1714078840 1 this.tail.tail -1469650986 +823723302 1 this.tail.tail.head -1965238778 +580871917 1 this.tail.tail.tail -1974059595 +945591847 1 h -538042495 +1770642014 1 t -87753434 +1732502545 1 t.head -67213908 +1714078840 1 t.tail -1469650986 +823723302 1 t.tail.head -1965238778 +580871917 1 t.tail.tail -1974059595 +945591847 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 470 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 1 p -538042495 +1770642014 1 PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 472 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29438,22 +29846,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 472 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29466,22 +29874,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 473 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29494,22 +29902,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 474 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29522,22 +29930,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 474 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29546,41 +29954,41 @@ index 0 1 return -1698183396 +1051876890 1 return.head -538042495 +1770642014 1 return.tail -87753434 +1732502545 1 return.tail.head -67213908 +1714078840 1 return.tail.tail -1469650986 +823723302 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 473 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29589,29 +29997,29 @@ index 0 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 475 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29624,22 +30032,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 476 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29652,22 +30060,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 476 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29676,41 +30084,41 @@ index 0 1 return -87753434 +1732502545 1 return.head -67213908 +1714078840 1 return.tail -1469650986 +823723302 1 return.tail.head -1965238778 +580871917 1 return.tail.tail -1974059595 +945591847 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 475 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29719,29 +30127,29 @@ index 1 1 return -67213908 +1714078840 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 477 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29754,22 +30162,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 478 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29782,22 +30190,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 478 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29806,16 +30214,16 @@ index 0 1 return -1469650986 +823723302 1 return.head -1965238778 +580871917 1 return.tail -1974059595 +945591847 1 return.tail.head -538042495 +1770642014 1 return.tail.tail null @@ -29825,22 +30233,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 477 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29849,29 +30257,29 @@ index 2 1 return -1965238778 +580871917 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 479 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29884,22 +30292,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 480 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29912,22 +30320,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 480 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29936,10 +30344,10 @@ index 0 1 return -1974059595 +945591847 1 return.head -538042495 +1770642014 1 return.tail null @@ -29955,22 +30363,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 479 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -29979,29 +30387,29 @@ index 3 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.div():::ENTER this_invocation_nonce 481 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -30011,22 +30419,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 482 this -1335772719 +1521083627 1 this.polys -1698183396 +1051876890 1 this.polys.head -538042495 +1770642014 1 this.polys.tail -87753434 +1732502545 1 this.polys.tail.head -67213908 +1714078840 1 this.polys.tail.tail -1469650986 +823723302 1 this.size 4 @@ -30036,50 +30444,50 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 482 this -1335772719 +1521083627 1 this.polys -87753434 +1732502545 1 this.polys.head -67213908 +1714078840 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 483 this -1335772719 +1521083627 1 this.polys -87753434 +1732502545 1 this.polys.head -67213908 +1714078840 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30089,19 +30497,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 483 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -30110,26 +30518,26 @@ this.size 2 1 return -67213908 +1714078840 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 484 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -30138,26 +30546,26 @@ this.size 2 1 p -1310667942 +1199262943 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 485 h -1310667942 +1199262943 1 t -1469650986 +823723302 1 t.head -1965238778 +580871917 1 t.tail -1974059595 +945591847 1 t.tail.head -538042495 +1770642014 1 t.tail.tail null @@ -30167,40 +30575,40 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 485 this -1656333915 +2009221452 1 this.head -1310667942 +1199262943 1 this.tail -1469650986 +823723302 1 this.tail.head -1965238778 +580871917 1 this.tail.tail -1974059595 +945591847 1 this.tail.tail.head -538042495 +1770642014 1 this.tail.tail.tail null 1 h -1310667942 +1199262943 1 t -1469650986 +823723302 1 t.head -1965238778 +580871917 1 t.tail -1974059595 +945591847 1 t.tail.head -538042495 +1770642014 1 t.tail.tail null @@ -30210,50 +30618,50 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 484 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 1 p -1310667942 +1199262943 1 PolyCalc.RatPolyStack.div():::EXIT221 this_invocation_nonce 481 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30263,22 +30671,22 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 486 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30288,22 +30696,22 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 486 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30316,22 +30724,22 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 487 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30344,22 +30752,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 488 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30372,22 +30780,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 488 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30396,41 +30804,41 @@ index 0 1 return -1656333915 +2009221452 1 return.head -1310667942 +1199262943 1 return.tail -1469650986 +823723302 1 return.tail.head -1965238778 +580871917 1 return.tail.tail -1974059595 +945591847 1 PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 487 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30439,29 +30847,29 @@ index 0 1 return -1310667942 +1199262943 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 489 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30474,22 +30882,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 490 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30502,22 +30910,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 490 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30526,16 +30934,16 @@ index 0 1 return -1469650986 +823723302 1 return.head -1965238778 +580871917 1 return.tail -1974059595 +945591847 1 return.tail.head -538042495 +1770642014 1 return.tail.tail null @@ -30545,22 +30953,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 489 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30569,29 +30977,29 @@ index 1 1 return -1965238778 +580871917 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 491 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30604,22 +31012,22 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 492 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30632,22 +31040,22 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 492 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30656,10 +31064,10 @@ index 0 1 return -1974059595 +945591847 1 return.head -538042495 +1770642014 1 return.tail null @@ -30675,22 +31083,22 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 491 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30699,29 +31107,29 @@ index 2 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.div():::ENTER this_invocation_nonce 493 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30731,22 +31139,22 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 494 this -1335772719 +1521083627 1 this.polys -1656333915 +2009221452 1 this.polys.head -1310667942 +1199262943 1 this.polys.tail -1469650986 +823723302 1 this.polys.tail.head -1965238778 +580871917 1 this.polys.tail.tail -1974059595 +945591847 1 this.size 3 @@ -30756,19 +31164,19 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 494 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -30777,26 +31185,26 @@ this.size 2 1 return -1310667942 +1199262943 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 495 this -1335772719 +1521083627 1 this.polys -1469650986 +823723302 1 this.polys.head -1965238778 +580871917 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -30809,13 +31217,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 495 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -30830,20 +31238,20 @@ this.size 1 1 return -1965238778 +580871917 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 496 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -30858,20 +31266,20 @@ this.size 1 1 p -173593344 +257513673 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 497 h -173593344 +257513673 1 t -1974059595 +945591847 1 t.head -538042495 +1770642014 1 t.tail null @@ -30887,16 +31295,16 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 497 this -1300539982 +590845366 1 this.head -173593344 +257513673 1 this.tail -1974059595 +945591847 1 this.tail.head -538042495 +1770642014 1 this.tail.tail null @@ -30908,13 +31316,13 @@ this.tail.tail.tail nonsensical 2 h -173593344 +257513673 1 t -1974059595 +945591847 1 t.head -538042495 +1770642014 1 t.tail null @@ -30930,19 +31338,19 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 496 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -30951,26 +31359,26 @@ this.size 2 1 p -173593344 +257513673 1 PolyCalc.RatPolyStack.div():::EXIT221 this_invocation_nonce 493 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -30983,19 +31391,19 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 498 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31008,19 +31416,19 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 498 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31036,19 +31444,19 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 499 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31064,19 +31472,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 500 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31092,19 +31500,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 500 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31116,16 +31524,16 @@ index 0 1 return -1300539982 +590845366 1 return.head -173593344 +257513673 1 return.tail -1974059595 +945591847 1 return.tail.head -538042495 +1770642014 1 return.tail.tail null @@ -31135,19 +31543,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 499 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31159,26 +31567,26 @@ index 0 1 return -173593344 +257513673 1 PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 501 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31194,19 +31602,19 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 502 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31222,19 +31630,19 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 502 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31246,10 +31654,10 @@ index 0 1 return -1974059595 +945591847 1 return.head -538042495 +1770642014 1 return.tail null @@ -31265,19 +31673,19 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 501 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31289,26 +31697,26 @@ index 1 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.div():::ENTER this_invocation_nonce 503 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31321,19 +31729,19 @@ PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 504 this -1335772719 +1521083627 1 this.polys -1300539982 +590845366 1 this.polys.head -173593344 +257513673 1 this.polys.tail -1974059595 +945591847 1 this.polys.tail.head -538042495 +1770642014 1 this.polys.tail.tail null @@ -31346,13 +31754,13 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 504 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -31367,20 +31775,20 @@ this.size 1 1 return -173593344 +257513673 1 PolyCalc.RatPolyStack.pop():::ENTER this_invocation_nonce 505 this -1335772719 +1521083627 1 this.polys -1974059595 +945591847 1 this.polys.head -538042495 +1770642014 1 this.polys.tail null @@ -31399,7 +31807,7 @@ PolyCalc.RatPolyStack.pop():::EXIT99 this_invocation_nonce 505 this -1335772719 +1521083627 1 this.polys null @@ -31420,14 +31828,14 @@ this.size 0 1 return -538042495 +1770642014 1 PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::ENTER this_invocation_nonce 506 this -1335772719 +1521083627 1 this.polys null @@ -31448,14 +31856,14 @@ this.size 0 1 p -1086918308 +1052195003 1 PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::ENTER this_invocation_nonce 507 h -1086918308 +1052195003 1 t null @@ -31477,10 +31885,10 @@ PolyCalc.Cons.Cons(PolyCalc.RatPoly, PolyCalc.Cons):::EXIT11 this_invocation_nonce 507 this -1340101174 +1541049864 1 this.head -1086918308 +1052195003 1 this.tail null @@ -31498,7 +31906,7 @@ this.tail.tail.tail nonsensical 2 h -1086918308 +1052195003 1 t null @@ -31520,13 +31928,13 @@ PolyCalc.RatPolyStack.push(PolyCalc.RatPoly):::EXIT83 this_invocation_nonce 506 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31541,20 +31949,20 @@ this.size 1 1 p -1086918308 +1052195003 1 PolyCalc.RatPolyStack.div():::EXIT221 this_invocation_nonce 503 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31573,13 +31981,13 @@ PolyCalc.RatPolyStack.size():::ENTER this_invocation_nonce 508 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31598,13 +32006,13 @@ PolyCalc.RatPolyStack.size():::EXIT228 this_invocation_nonce 508 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31626,13 +32034,13 @@ PolyCalc.RatPolyStack.get(int):::ENTER this_invocation_nonce 509 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31654,13 +32062,13 @@ PolyCalc.RatPolyStack.getCons(int):::ENTER this_invocation_nonce 510 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31682,13 +32090,13 @@ PolyCalc.RatPolyStack.getCons(int):::EXIT252 this_invocation_nonce 510 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31706,10 +32114,10 @@ index 0 1 return -1340101174 +1541049864 1 return.head -1086918308 +1052195003 1 return.tail null @@ -31725,13 +32133,13 @@ PolyCalc.RatPolyStack.get(int):::EXIT156 this_invocation_nonce 509 this -1335772719 +1521083627 1 this.polys -1340101174 +1541049864 1 this.polys.head -1086918308 +1052195003 1 this.polys.tail null @@ -31749,6 +32157,6 @@ index 0 1 return -1086918308 +1052195003 1 diff --git a/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-jaif.goal b/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-jaif.goal index 233282483c..313170f26b 100644 --- a/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-jaif.goal +++ b/tests/daikon-tests/RatPolyStack/RatPolyStack.txt-jaif.goal @@ -5,45 +5,78 @@ annotation @NonNull: package PolyCalc: class Cons : // 87/- obj/class samples field head : // PolyCalc.RatPoly - field tail : @Nullable // PolyCalc.Cons + field tail : @Nullable // PolyCalc.Cons + method (LPolyCalc/RatPoly;LPolyCalc/;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // h + parameter #1 : // t method (LPolyCalc/RatPoly;LPolyCalc/;)V : // 87 samples - return: + return: parameter #0 : // h - parameter #1 : @Nullable // t + parameter #1 : @Nullable // t package PolyCalc: class RatPolyStack : // 825/- obj/class samples - field polys : @Nullable // PolyCalc.Cons + field polys : @Nullable // PolyCalc.Cons field size : // int + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 23 samples - return: + return: + method add()V throws Ljava/lang/Throwable; : // 0 samples + return: method add()V : // 5 samples - return: + return: + method clear()V throws Ljava/lang/Throwable; : // 0 samples + return: method clear()V : // 2 samples - return: + return: + method div()V throws Ljava/lang/Throwable; : // 0 samples + return: method div()V : // 4 samples - return: + return: + method dup()V throws Ljava/lang/Throwable; : // 0 samples + return: method dup()V : // 3 samples - return: + return: + method get(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method get(I)LPolyCalc/RatPoly; : // 99 samples - return: + return: + parameter #0 : // index + method getCons(I)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // index method getCons(I)LPolyCalc/Cons; : // 99 samples - return: + return: parameter #0 : // index + method mul()V throws Ljava/lang/Throwable; : // 0 samples + return: method mul()V : // 5 samples - return: + return: + method pop()V throws Ljava/lang/Throwable; : // 0 samples + return: method pop()LPolyCalc/RatPoly; : // 41 samples - return: + return: + method push(LPolyCalc/RatPoly;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // p method push(LPolyCalc/RatPoly;)V : // 84 samples - return: + return: parameter #0 : // p + method size()V throws Ljava/lang/Throwable; : // 0 samples + return: method size()I : // 51 samples - return: + return: + method sub()V throws Ljava/lang/Throwable; : // 0 samples + return: method sub()V : // 5 samples - return: + return: + method swap()V throws Ljava/lang/Throwable; : // 0 samples + return: method swap()V : // 3 samples - return: + return: diff --git a/tests/daikon-tests/RatTermVec/RatTermVec.txt-chicory.goal b/tests/daikon-tests/RatTermVec/RatTermVec.txt-chicory.goal index 66cd61565b..4f453774c2 100644 --- a/tests/daikon-tests/RatTermVec/RatTermVec.txt-chicory.goal +++ b/tests/daikon-tests/RatTermVec/RatTermVec.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for PolyCalc.RatTermVec -// Declarations written Thu Jun 04 13:29:50 PDT 2015 +// Declarations written Mon Jul 31 12:46:12 PDT 2017 decl-version 2.0 var-comparability none @@ -11,10 +11,10 @@ ppt PolyCalc.RatTermVec.RatTermVec():::EXIT27 ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -25,7 +25,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -39,18 +39,66 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 + +ppt PolyCalc.RatTermVec.RatTermVec():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt PolyCalc.RatTermVec.size():::ENTER ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -61,7 +109,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -75,7 +123,7 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 @@ -83,10 +131,10 @@ ppt PolyCalc.RatTermVec.size():::EXIT30 ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -97,7 +145,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -111,23 +159,71 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 +ppt PolyCalc.RatTermVec.size():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatTermVec.get(int):::ENTER ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -138,7 +234,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -152,11 +248,11 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -166,10 +262,10 @@ ppt PolyCalc.RatTermVec.get(int):::EXIT39 ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -180,7 +276,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -194,29 +290,83 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type PolyCalc.RatTerm rep-type hashcode comparability 22 +ppt PolyCalc.RatTermVec.get(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -227,7 +377,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -241,11 +391,11 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type PolyCalc.RatTerm rep-type hashcode flags is_param @@ -255,10 +405,10 @@ ppt PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -269,7 +419,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -283,24 +433,24 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type PolyCalc.RatTerm rep-type hashcode flags is_param comparability 22 -ppt PolyCalc.RatTermVec.insert(PolyCalc.RatTerm,\_int):::ENTER -ppt-type enter +ppt PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -311,7 +461,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -325,30 +475,36 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type PolyCalc.RatTerm rep-type hashcode flags is_param comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt PolyCalc.RatTermVec.insert(PolyCalc.RatTerm,\_int):::EXIT64 -ppt-type subexit +ppt PolyCalc.RatTermVec.insert(PolyCalc.RatTerm,\_int):::ENTER +ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -359,7 +515,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -373,30 +529,30 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable t - var-kind variable + var-kind variable dec-type PolyCalc.RatTerm rep-type hashcode flags is_param comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatTermVec.remove(int):::ENTER -ppt-type enter +ppt PolyCalc.RatTermVec.insert(PolyCalc.RatTerm,\_int):::EXIT64 +ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -407,7 +563,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -421,24 +577,30 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 +variable t + var-kind variable + dec-type PolyCalc.RatTerm + rep-type hashcode + flags is_param + comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatTermVec.remove(int):::EXIT78 +ppt PolyCalc.RatTermVec.insert(PolyCalc.RatTerm,\_int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -449,7 +611,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -463,24 +625,42 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 +variable t + var-kind variable + dec-type PolyCalc.RatTerm + rep-type hashcode + flags is_param + comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt PolyCalc.RatTermVec.set(PolyCalc.RatTerm,\_int):::ENTER +ppt PolyCalc.RatTermVec.remove(int):::ENTER ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -491,7 +671,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -505,30 +685,24 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 -variable t - var-kind variable - dec-type PolyCalc.RatTerm - rep-type hashcode - flags is_param - comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatTermVec.set(PolyCalc.RatTerm,\_int):::EXIT89 +ppt PolyCalc.RatTermVec.remove(int):::EXIT78 ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -539,7 +713,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -553,30 +727,24 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 -variable t - var-kind variable - dec-type PolyCalc.RatTerm - rep-type hashcode - flags is_param - comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt PolyCalc.RatTermVec.copy():::ENTER -ppt-type enter +ppt PolyCalc.RatTermVec.remove(int):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -587,7 +755,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -601,18 +769,36 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt PolyCalc.RatTermVec.copy():::EXIT100 -ppt-type subexit +ppt PolyCalc.RatTermVec.set(PolyCalc.RatTerm,\_int):::ENTER +ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -623,7 +809,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -637,45 +823,78 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 -variable return - var-kind return +variable t + var-kind variable + dec-type PolyCalc.RatTerm + rep-type hashcode + flags is_param + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt PolyCalc.RatTermVec.set(PolyCalc.RatTerm,\_int):::EXIT89 +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode + flags is_param non_null comparability 22 -variable return.wrapped + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped var-kind field wrapped - enclosing-var return + enclosing-var this dec-type java.util.ArrayList rep-type hashcode comparability 22 -variable return.wrapped[..] - var-kind array - enclosing-var return.wrapped + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped array 1 dec-type java.util.ArrayList rep-type hashcode[] comparability 22 -variable return.wrapped[..].getClass().getName() + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() var-kind function getClass().getName() - enclosing-var return.wrapped[..] + enclosing-var this.wrapped[..] array 1 dec-type java.lang.Class[] rep-type java.lang.String[] - function-args return.wrapped[] - flags synthetic classname + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable t + var-kind variable + dec-type PolyCalc.RatTerm + rep-type hashcode + flags is_param + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param comparability 22 -ppt PolyCalc.RatTermVec.printDebug():::ENTER -ppt-type enter +ppt PolyCalc.RatTermVec.set(PolyCalc.RatTerm,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -686,7 +905,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -700,18 +919,42 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 +variable t + var-kind variable + dec-type PolyCalc.RatTerm + rep-type hashcode + flags is_param + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt PolyCalc.RatTermVec.printDebug():::EXIT105 -ppt-type subexit +ppt PolyCalc.RatTermVec.copy():::ENTER +ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -722,7 +965,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -736,11 +979,194 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 + +ppt PolyCalc.RatTermVec.copy():::EXIT100 +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable return - var-kind return + var-kind return + dec-type PolyCalc.RatTermVec + rep-type hashcode + comparability 22 +variable return.wrapped + var-kind field wrapped + enclosing-var return + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 +variable return.wrapped[..] + var-kind array + enclosing-var return.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 +variable return.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var return.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args return.wrapped[] + flags synthetic classname non_null + comparability 22 + +ppt PolyCalc.RatTermVec.copy():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt PolyCalc.RatTermVec.printDebug():::ENTER +ppt-type enter +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 + +ppt PolyCalc.RatTermVec.printDebug():::EXIT105 +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -753,14 +1179,62 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatTermVec.printDebug():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatTermVec.toString():::ENTER ppt-type enter parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -771,7 +1245,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -785,7 +1259,7 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 @@ -793,10 +1267,10 @@ ppt PolyCalc.RatTermVec.toString():::EXIT108 ppt-type subexit parent parent PolyCalc.RatTermVec:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped @@ -807,7 +1281,7 @@ variable this.wrapped comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -821,11 +1295,11 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent PolyCalc.RatTermVec:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.String rep-type hashcode comparability 22 @@ -838,13 +1312,61 @@ variable return.toString flags synthetic to_string comparability 22 +ppt PolyCalc.RatTermVec.toString():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent PolyCalc.RatTermVec:::OBJECT 1 +variable this + var-kind variable + dec-type PolyCalc.RatTermVec + rep-type hashcode + flags is_param non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped + var-kind field wrapped + enclosing-var this + dec-type java.util.ArrayList + rep-type hashcode + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..] + var-kind array + enclosing-var this.wrapped + array 1 + dec-type java.util.ArrayList + rep-type hashcode[] + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable this.wrapped[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.wrapped[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.wrapped[] + flags synthetic classname non_null + comparability 22 + parent PolyCalc.RatTermVec:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt PolyCalc.RatTermVec:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type PolyCalc.RatTermVec rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.wrapped var-kind field wrapped @@ -853,7 +1375,7 @@ variable this.wrapped rep-type hashcode comparability 22 variable this.wrapped[..] - var-kind array + var-kind array enclosing-var this.wrapped array 1 dec-type java.util.ArrayList @@ -866,7 +1388,7 @@ variable this.wrapped[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.wrapped[] - flags synthetic classname + flags synthetic classname non_null comparability 22 PolyCalc.RatTermVec.RatTermVec():::ENTER @@ -877,10 +1399,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 0 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -893,10 +1415,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -909,10 +1431,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -928,10 +1450,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -944,10 +1466,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -963,10 +1485,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 3 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -979,10 +1501,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 3 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -998,10 +1520,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 4 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -1014,10 +1536,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 4 this -751781832 +611572016 1 this.wrapped -834796345 +889486595 1 this.wrapped[..] [] @@ -1037,10 +1559,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 5 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1053,10 +1575,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 6 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1069,10 +1591,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 6 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1088,10 +1610,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 7 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1104,10 +1626,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 7 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1123,10 +1645,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 8 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1139,10 +1661,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 8 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1158,10 +1680,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 9 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1174,10 +1696,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 9 this -1639524919 +1990160809 1 this.wrapped -1132638976 +1285524499 1 this.wrapped[..] [] @@ -1197,10 +1719,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 10 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1213,10 +1735,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 11 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1229,10 +1751,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 11 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1248,10 +1770,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 12 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1264,10 +1786,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 12 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1283,10 +1805,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 13 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1299,10 +1821,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 13 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1318,10 +1840,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 14 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1334,10 +1856,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 14 this -839950662 +117009527 1 this.wrapped -1640764503 +199640888 1 this.wrapped[..] [] @@ -1357,10 +1879,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 15 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] [] @@ -1373,10 +1895,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 16 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] [] @@ -1385,39 +1907,39 @@ this.wrapped[..].getClass().getName() [] 1 t -2008946389 +76432244 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 16 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2008946389 +76432244 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 17 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1427,13 +1949,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 17 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1446,13 +1968,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 18 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1465,13 +1987,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 18 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1480,20 +2002,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 19 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1506,13 +2028,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 19 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1521,20 +2043,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 20 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1544,13 +2066,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 20 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1563,13 +2085,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 21 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1579,13 +2101,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 21 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1598,13 +2120,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 22 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1614,13 +2136,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 22 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1633,13 +2155,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 23 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1652,13 +2174,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 23 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1667,20 +2189,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 24 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1693,13 +2215,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 24 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1708,20 +2230,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 25 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1731,13 +2253,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 25 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1750,13 +2272,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 26 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1766,13 +2288,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 26 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1785,13 +2307,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 27 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1801,13 +2323,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 27 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1820,13 +2342,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 28 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1839,13 +2361,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 28 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1854,20 +2376,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 29 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1877,13 +2399,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 29 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1896,13 +2418,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 30 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1912,13 +2434,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 30 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1931,13 +2453,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 31 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1950,13 +2472,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 31 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1965,20 +2487,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 32 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -1991,13 +2513,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 32 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2006,20 +2528,20 @@ index 0 1 return -2008946389 +76432244 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 33 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2029,13 +2551,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 33 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2048,13 +2570,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 34 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2064,13 +2586,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 34 this -491490794 +1000975683 1 this.wrapped -1263668396 +1238959340 1 this.wrapped[..] -[2008946389] +[76432244] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2087,10 +2609,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 35 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] [] @@ -2103,10 +2625,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 36 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] [] @@ -2115,39 +2637,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1144380196 +1243806178 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 36 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1144380196 +1243806178 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 37 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2157,13 +2679,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 37 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2176,13 +2698,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 38 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2195,13 +2717,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 38 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2210,20 +2732,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 39 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2236,13 +2758,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 39 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2251,20 +2773,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 40 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2274,13 +2796,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 40 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2293,13 +2815,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 41 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2309,13 +2831,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 41 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2328,13 +2850,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 42 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2344,13 +2866,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 42 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2363,13 +2885,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 43 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2382,13 +2904,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 43 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2397,20 +2919,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 44 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2423,13 +2945,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 44 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2438,20 +2960,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 45 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2461,13 +2983,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 45 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2480,13 +3002,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 46 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2496,13 +3018,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 46 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2515,13 +3037,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 47 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2531,13 +3053,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 47 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2550,13 +3072,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 48 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2569,13 +3091,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 48 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2584,20 +3106,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 49 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2607,13 +3129,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 49 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2626,13 +3148,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 50 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2642,13 +3164,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 50 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2661,13 +3183,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 51 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2680,13 +3202,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 51 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2695,20 +3217,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 52 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2721,13 +3243,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 52 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2736,20 +3258,20 @@ index 0 1 return -1144380196 +1243806178 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 53 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2759,13 +3281,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 53 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2778,13 +3300,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 54 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2794,13 +3316,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 54 this -1624061789 +1030228826 1 this.wrapped -1089334353 +1264413185 1 this.wrapped[..] -[1144380196] +[1243806178] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2817,10 +3339,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 55 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] [] @@ -2833,10 +3355,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 56 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] [] @@ -2845,39 +3367,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1529427706 +1629687658 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 56 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1529427706 +1629687658 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 57 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2887,13 +3409,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 57 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2906,13 +3428,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 58 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2925,13 +3447,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 58 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2940,20 +3462,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 59 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2966,13 +3488,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 59 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -2981,20 +3503,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 60 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3004,13 +3526,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 60 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3023,13 +3545,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 61 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3039,13 +3561,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 61 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3058,13 +3580,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 62 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3074,13 +3596,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 62 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3093,13 +3615,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 63 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3112,13 +3634,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 63 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3127,20 +3649,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 64 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3153,13 +3675,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 64 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3168,20 +3690,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 65 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3191,13 +3713,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 65 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3210,13 +3732,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 66 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3226,13 +3748,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 66 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3245,13 +3767,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 67 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3261,13 +3783,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 67 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3280,13 +3802,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 68 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3299,13 +3821,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 68 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3314,20 +3836,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 69 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3337,13 +3859,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 69 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3356,13 +3878,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 70 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3372,13 +3894,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 70 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3391,13 +3913,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 71 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3410,13 +3932,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 71 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3425,20 +3947,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 72 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3451,13 +3973,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 72 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3466,20 +3988,20 @@ index 0 1 return -1529427706 +1629687658 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 73 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3489,13 +4011,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 73 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3508,13 +4030,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 74 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3524,13 +4046,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 74 this -734411640 +1010931249 1 this.wrapped -1667914171 +1099855928 1 this.wrapped[..] -[1529427706] +[1629687658] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3547,10 +4069,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 75 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] [] @@ -3563,10 +4085,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 76 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] [] @@ -3575,39 +4097,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1215777580 +1043208434 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 76 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1215777580 +1043208434 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 77 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3617,13 +4139,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 77 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3636,13 +4158,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 78 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3655,13 +4177,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 78 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3670,20 +4192,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 79 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3696,13 +4218,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 79 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3711,20 +4233,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 80 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3734,13 +4256,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 80 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3753,13 +4275,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 81 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3769,13 +4291,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 81 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3788,13 +4310,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 82 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3804,13 +4326,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 82 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3823,13 +4345,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 83 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3842,13 +4364,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 83 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3857,20 +4379,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 84 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3883,13 +4405,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 84 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3898,20 +4420,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 85 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3921,13 +4443,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 85 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3940,13 +4462,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 86 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3956,13 +4478,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 86 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3975,13 +4497,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 87 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -3991,13 +4513,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 87 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4010,13 +4532,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 88 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4029,13 +4551,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 88 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4044,20 +4566,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 89 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4067,13 +4589,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 89 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4086,13 +4608,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 90 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4102,13 +4624,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 90 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4121,13 +4643,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 91 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4140,13 +4662,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 91 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4155,20 +4677,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 92 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4181,13 +4703,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 92 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4196,20 +4718,20 @@ index 0 1 return -1215777580 +1043208434 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 93 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4219,13 +4741,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 93 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4238,13 +4760,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 94 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4254,13 +4776,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 94 this -1859683799 +1007880005 1 this.wrapped -1228611355 +215219944 1 this.wrapped[..] -[1215777580] +[1043208434] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4277,10 +4799,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 95 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] [] @@ -4293,10 +4815,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 96 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] [] @@ -4305,39 +4827,39 @@ this.wrapped[..].getClass().getName() [] 1 t -114670870 +1882554559 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 96 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -114670870 +1882554559 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 97 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4347,13 +4869,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 97 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4366,13 +4888,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 98 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4385,13 +4907,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 98 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4400,20 +4922,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 99 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4426,13 +4948,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 99 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4441,20 +4963,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 100 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4464,13 +4986,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 100 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4483,13 +5005,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 101 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4499,13 +5021,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 101 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4518,13 +5040,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 102 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4534,13 +5056,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 102 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4553,13 +5075,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 103 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4572,13 +5094,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 103 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4587,20 +5109,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 104 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4613,13 +5135,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 104 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4628,20 +5150,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 105 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4651,13 +5173,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 105 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4670,13 +5192,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 106 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4686,13 +5208,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 106 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4705,13 +5227,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 107 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4721,13 +5243,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 107 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4740,13 +5262,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 108 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4759,13 +5281,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 108 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4774,20 +5296,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 109 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4797,13 +5319,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 109 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4816,13 +5338,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 110 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4832,13 +5354,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 110 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4851,13 +5373,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 111 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4870,13 +5392,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 111 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4885,20 +5407,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 112 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4911,13 +5433,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 112 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4926,20 +5448,20 @@ index 0 1 return -114670870 +1882554559 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 113 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4949,13 +5471,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 113 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4968,13 +5490,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 114 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -4984,13 +5506,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 114 this -266885855 +1192171522 1 this.wrapped -1604710049 +1661081225 1 this.wrapped[..] -[114670870] +[1882554559] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5007,10 +5529,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 115 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] [] @@ -5023,10 +5545,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 116 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] [] @@ -5035,39 +5557,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1444686917 +1923598304 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 116 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1444686917 +1923598304 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 117 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5077,13 +5599,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 117 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5096,13 +5618,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 118 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5115,13 +5637,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 118 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5130,20 +5652,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 119 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5156,13 +5678,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 119 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5171,20 +5693,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 120 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5194,13 +5716,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 120 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5213,13 +5735,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 121 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5229,13 +5751,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 121 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5248,13 +5770,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 122 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5264,13 +5786,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 122 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5283,13 +5805,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 123 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5302,13 +5824,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 123 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5317,20 +5839,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 124 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5343,13 +5865,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 124 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5358,20 +5880,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 125 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5381,13 +5903,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 125 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5400,13 +5922,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 126 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5416,13 +5938,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 126 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5435,13 +5957,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 127 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5451,13 +5973,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 127 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5470,13 +5992,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 128 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5489,13 +6011,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 128 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5504,20 +6026,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 129 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5527,13 +6049,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 129 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5546,13 +6068,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 130 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5562,13 +6084,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 130 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5581,13 +6103,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 131 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5600,13 +6122,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 131 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5615,20 +6137,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 132 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5641,13 +6163,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 132 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5656,20 +6178,20 @@ index 0 1 return -1444686917 +1923598304 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 133 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5679,13 +6201,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 133 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5698,13 +6220,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 134 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5714,13 +6236,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 134 this -980480731 +1049817027 1 this.wrapped -1297622486 +23211803 1 this.wrapped[..] -[1444686917] +[1923598304] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5737,10 +6259,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 135 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] [] @@ -5753,10 +6275,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 136 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] [] @@ -5765,39 +6287,39 @@ this.wrapped[..].getClass().getName() [] 1 t -839095360 +386163331 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 136 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -839095360 +386163331 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 137 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5807,13 +6329,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 137 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5826,13 +6348,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 138 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5845,13 +6367,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 138 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5860,20 +6382,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 139 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5886,13 +6408,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 139 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5901,20 +6423,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 140 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5924,13 +6446,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 140 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5943,13 +6465,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 141 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5959,13 +6481,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 141 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5978,13 +6500,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 142 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -5994,13 +6516,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 142 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6013,13 +6535,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 143 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6032,13 +6554,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 143 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6047,20 +6569,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 144 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6073,13 +6595,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 144 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6088,20 +6610,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 145 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6111,13 +6633,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 145 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6130,13 +6652,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 146 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6146,13 +6668,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 146 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6165,13 +6687,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 147 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6181,13 +6703,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 147 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6200,13 +6722,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 148 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6219,13 +6741,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 148 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6234,20 +6756,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 149 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6257,13 +6779,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 149 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6276,13 +6798,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 150 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6292,13 +6814,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 150 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6311,13 +6833,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 151 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6330,13 +6852,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 151 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6345,20 +6867,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 152 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6371,13 +6893,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 152 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6386,20 +6908,20 @@ index 0 1 return -839095360 +386163331 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 153 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6409,13 +6931,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 153 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6428,13 +6950,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 154 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6444,13 +6966,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 154 this -1402901037 +776700275 1 this.wrapped -1334768446 +118394766 1 this.wrapped[..] -[839095360] +[386163331] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6467,10 +6989,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 155 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] [] @@ -6483,10 +7005,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 156 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] [] @@ -6495,39 +7017,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1814961687 +1516500233 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 156 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1814961687 +1516500233 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 157 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6537,13 +7059,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 157 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6556,13 +7078,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 158 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6575,13 +7097,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 158 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6590,20 +7112,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 159 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6616,13 +7138,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 159 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6631,20 +7153,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 160 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6654,13 +7176,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 160 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6673,13 +7195,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 161 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6689,13 +7211,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 161 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6708,13 +7230,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 162 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6724,13 +7246,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 162 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6743,13 +7265,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 163 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6762,13 +7284,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 163 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6777,20 +7299,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 164 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6803,13 +7325,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 164 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6818,20 +7340,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 165 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6841,13 +7363,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 165 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6860,13 +7382,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 166 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6876,13 +7398,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 166 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6895,13 +7417,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 167 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6911,13 +7433,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 167 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6930,13 +7452,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 168 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6949,13 +7471,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 168 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6964,20 +7486,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 169 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -6987,13 +7509,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 169 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7006,13 +7528,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 170 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7022,13 +7544,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 170 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7041,13 +7563,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 171 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7060,13 +7582,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 171 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7075,20 +7597,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 172 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7101,13 +7623,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 172 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7116,20 +7638,20 @@ index 0 1 return -1814961687 +1516500233 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 173 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7139,13 +7661,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 173 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7158,13 +7680,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 174 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7174,13 +7696,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 174 this -150605671 +1540374340 1 this.wrapped -1493776331 +694316372 1 this.wrapped[..] -[1814961687] +[1516500233] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7197,10 +7719,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 175 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] [] @@ -7213,10 +7735,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 176 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] [] @@ -7225,39 +7747,39 @@ this.wrapped[..].getClass().getName() [] 1 t -595445781 +235237152 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 176 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -595445781 +235237152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 177 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7267,13 +7789,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 177 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7286,13 +7808,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 178 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7305,13 +7827,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 178 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7320,20 +7842,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 179 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7346,13 +7868,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 179 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7361,20 +7883,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 180 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7384,13 +7906,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 180 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7403,13 +7925,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 181 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7419,13 +7941,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 181 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7438,13 +7960,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 182 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7454,13 +7976,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 182 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7473,13 +7995,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 183 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7492,13 +8014,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 183 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7507,20 +8029,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 184 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7533,13 +8055,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 184 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7548,20 +8070,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 185 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7571,13 +8093,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 185 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7590,13 +8112,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 186 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7606,13 +8128,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 186 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7625,13 +8147,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 187 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7641,13 +8163,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 187 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7660,13 +8182,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 188 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7679,13 +8201,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 188 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7694,20 +8216,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 189 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7717,13 +8239,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 189 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7736,13 +8258,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 190 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7752,13 +8274,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 190 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7771,13 +8293,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 191 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7790,13 +8312,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 191 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7805,20 +8327,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 192 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7831,13 +8353,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 192 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7846,20 +8368,20 @@ index 0 1 return -595445781 +235237152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 193 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7869,13 +8391,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 193 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7888,13 +8410,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 194 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7904,13 +8426,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 194 this -1203351421 +1850180796 1 this.wrapped -1873828948 +884452399 1 this.wrapped[..] -[595445781] +[235237152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7927,10 +8449,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 195 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] [] @@ -7943,10 +8465,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 196 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] [] @@ -7955,39 +8477,39 @@ this.wrapped[..].getClass().getName() [] 1 t -434174366 +283383329 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 196 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -434174366 +283383329 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 197 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -7997,13 +8519,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 197 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8016,13 +8538,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 198 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8035,13 +8557,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 198 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8050,20 +8572,20 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 199 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8076,13 +8598,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 199 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8091,20 +8613,20 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 200 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8114,13 +8636,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 200 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8133,13 +8655,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 201 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8149,13 +8671,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 201 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8168,13 +8690,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 202 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8184,13 +8706,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 202 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8203,13 +8725,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 203 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8222,13 +8744,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 203 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8237,20 +8759,20 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 204 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8263,13 +8785,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 204 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8278,20 +8800,20 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 205 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8301,13 +8823,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 205 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8320,13 +8842,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 206 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8336,13 +8858,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 206 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8355,13 +8877,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 207 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8371,13 +8893,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 207 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8390,13 +8912,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 208 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8406,13 +8928,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 208 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8425,13 +8947,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 209 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8444,13 +8966,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 209 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8459,20 +8981,20 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 210 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8485,13 +9007,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 210 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8500,20 +9022,20 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 211 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8523,13 +9045,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 211 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8542,13 +9064,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 212 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8558,13 +9080,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 212 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8577,13 +9099,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 213 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8596,13 +9118,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 213 this -383446247 +1259014228 1 this.wrapped -2130132329 +431687661 1 this.wrapped[..] -[434174366] +[283383329] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8611,7 +9133,7 @@ index 0 1 return -434174366 +283383329 1 PolyCalc.RatTermVec.RatTermVec():::ENTER @@ -8622,10 +9144,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 214 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] [] @@ -8638,10 +9160,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 215 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] [] @@ -8650,39 +9172,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1525259451 +1738674023 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 215 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1525259451 +1738674023 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 216 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8692,13 +9214,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 216 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8711,13 +9233,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 217 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8730,13 +9252,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 217 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8745,20 +9267,20 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 218 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8771,13 +9293,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 218 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8786,20 +9308,20 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 219 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8809,13 +9331,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 219 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8828,13 +9350,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 220 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8844,13 +9366,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 220 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8863,13 +9385,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 221 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8879,13 +9401,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 221 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8898,13 +9420,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 222 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8917,13 +9439,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 222 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8932,20 +9454,20 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 223 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8958,13 +9480,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 223 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8973,20 +9495,20 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 224 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -8996,13 +9518,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 224 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9015,13 +9537,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 225 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9031,13 +9553,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 225 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9050,13 +9572,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 226 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9066,13 +9588,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 226 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9085,13 +9607,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 227 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9101,13 +9623,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 227 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9120,13 +9642,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 228 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9139,13 +9661,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 228 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9154,20 +9676,20 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 229 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9180,13 +9702,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 229 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9195,20 +9717,20 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 230 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9218,13 +9740,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 230 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9237,13 +9759,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 231 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9253,13 +9775,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 231 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9272,13 +9794,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 232 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9291,13 +9813,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 232 this -19136856 +893192050 1 this.wrapped -1658075389 +644345897 1 this.wrapped[..] -[1525259451] +[1738674023] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9306,7 +9828,7 @@ index 0 1 return -1525259451 +1738674023 1 PolyCalc.RatTermVec.RatTermVec():::ENTER @@ -9317,10 +9839,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 233 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] [] @@ -9333,10 +9855,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 234 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] [] @@ -9345,39 +9867,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1941055697 +333683827 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 234 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1941055697 +333683827 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 235 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9387,13 +9909,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 235 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9406,13 +9928,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 236 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9425,13 +9947,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 236 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9440,20 +9962,20 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 237 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9466,13 +9988,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 237 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9481,20 +10003,20 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 238 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9504,13 +10026,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 238 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9523,13 +10045,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 239 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9539,13 +10061,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 239 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9558,13 +10080,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 240 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9574,13 +10096,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 240 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9593,13 +10115,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 241 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9612,13 +10134,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 241 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9627,20 +10149,20 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 242 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9653,13 +10175,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 242 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9668,20 +10190,20 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 243 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9691,13 +10213,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 243 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9710,13 +10232,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 244 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9726,13 +10248,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 244 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9745,13 +10267,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 245 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9761,13 +10283,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 245 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9780,13 +10302,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 246 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9796,13 +10318,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 246 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9815,13 +10337,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 247 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9834,13 +10356,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 247 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9849,20 +10371,20 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 248 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9875,13 +10397,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 248 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9890,20 +10412,20 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 249 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9913,13 +10435,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 249 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9932,13 +10454,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 250 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9948,13 +10470,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 250 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9967,13 +10489,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 251 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -9986,13 +10508,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 251 this -523298718 +1472682156 1 this.wrapped -1136018961 +178049969 1 this.wrapped[..] -[1941055697] +[333683827] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10001,7 +10523,7 @@ index 0 1 return -1941055697 +333683827 1 PolyCalc.RatTermVec.RatTermVec():::ENTER @@ -10012,10 +10534,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 252 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10028,10 +10550,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 253 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10044,10 +10566,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 253 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10063,10 +10585,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 254 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10079,10 +10601,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 254 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10098,10 +10620,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 255 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10114,10 +10636,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 255 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10133,10 +10655,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 256 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10149,10 +10671,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 256 this -899017902 +1691185247 1 this.wrapped -98938622 +153245266 1 this.wrapped[..] [] @@ -10172,10 +10694,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 257 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10188,10 +10710,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 258 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10204,10 +10726,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 258 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10223,10 +10745,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 259 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10239,10 +10761,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 259 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10258,10 +10780,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 260 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10274,10 +10796,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 260 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10293,10 +10815,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 261 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10309,10 +10831,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 261 this -709077176 +1699679644 1 this.wrapped -1073339829 +1782580546 1 this.wrapped[..] [] @@ -10332,10 +10854,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 262 this -759871203 +1702940637 1 this.wrapped -70060112 +2114684409 1 this.wrapped[..] [] @@ -10348,10 +10870,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 263 this -759871203 +1702940637 1 this.wrapped -70060112 +2114684409 1 this.wrapped[..] [] @@ -10364,10 +10886,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 263 this -759871203 +1702940637 1 this.wrapped -70060112 +2114684409 1 this.wrapped[..] [] @@ -10387,10 +10909,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 264 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] [] @@ -10403,10 +10925,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 265 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] [] @@ -10415,39 +10937,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1075417105 +1781071780 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 265 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 266 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10457,13 +10979,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 266 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10476,13 +10998,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 267 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10495,13 +11017,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 267 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10510,20 +11032,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 268 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10536,13 +11058,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 268 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10551,20 +11073,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 269 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10574,13 +11096,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 269 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10593,13 +11115,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 270 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10609,13 +11131,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 270 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10632,10 +11154,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 271 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] [] @@ -10648,10 +11170,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 272 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] [] @@ -10660,39 +11182,39 @@ this.wrapped[..].getClass().getName() [] 1 t -252490129 +568221876 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 272 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 273 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10702,13 +11224,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 273 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10721,13 +11243,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 274 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10740,13 +11262,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 274 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10755,20 +11277,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 275 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10781,13 +11303,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 275 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10796,20 +11318,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 276 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10819,13 +11341,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 276 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10838,13 +11360,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 277 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10854,13 +11376,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 277 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10873,13 +11395,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 278 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10889,13 +11411,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 278 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10908,13 +11430,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 279 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10927,13 +11449,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 279 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10942,20 +11464,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 280 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10968,13 +11490,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 280 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -10983,20 +11505,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 281 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11006,13 +11528,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 281 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11025,13 +11547,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 282 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11041,13 +11563,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 282 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11060,13 +11582,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 283 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11076,13 +11598,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 283 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11095,13 +11617,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 284 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11114,13 +11636,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 284 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11129,20 +11651,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 285 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11155,13 +11677,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 285 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11170,20 +11692,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 286 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11193,13 +11715,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 286 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11212,13 +11734,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 287 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11228,13 +11750,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 287 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11247,13 +11769,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 288 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11263,13 +11785,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 288 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11282,13 +11804,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 289 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11301,13 +11823,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 289 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11316,20 +11838,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 290 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11339,13 +11861,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 290 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11358,13 +11880,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 291 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11374,13 +11896,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 291 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11393,13 +11915,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 292 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11412,13 +11934,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 292 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11427,20 +11949,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 293 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11453,13 +11975,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 293 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11468,20 +11990,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 294 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11491,13 +12013,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 294 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11510,13 +12032,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 295 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11526,13 +12048,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 295 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11545,13 +12067,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 296 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11561,13 +12083,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 296 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11580,13 +12102,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 297 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11599,13 +12121,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 297 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11614,20 +12136,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 298 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11640,13 +12162,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 298 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11655,20 +12177,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 299 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11678,13 +12200,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 299 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11697,13 +12219,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 300 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11713,13 +12235,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 300 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11732,13 +12254,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 301 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11748,13 +12270,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 301 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11767,13 +12289,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 302 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11786,13 +12308,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 302 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11801,20 +12323,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 303 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11824,13 +12346,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 303 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11843,13 +12365,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 304 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11859,13 +12381,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 304 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11878,13 +12400,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 305 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11897,13 +12419,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 305 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11912,20 +12434,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 306 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11938,13 +12460,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 306 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11953,20 +12475,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 307 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11976,13 +12498,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 307 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -11995,13 +12517,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 308 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12011,13 +12533,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 308 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12030,13 +12552,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 309 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12050,10 +12572,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 310 this -173911631 +203849460 1 this.wrapped -207538650 +820914198 1 this.wrapped[..] [] @@ -12066,25 +12588,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 309 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -173911631 +203849460 1 return.wrapped -588647822 +836220863 1 return.wrapped[..] -[1075417105] +[1781071780] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12094,13 +12616,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 311 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12110,13 +12632,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 311 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12129,13 +12651,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 312 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12148,13 +12670,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 312 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12163,20 +12685,20 @@ index 0 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 313 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12186,13 +12708,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 313 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12205,13 +12727,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 314 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12224,13 +12746,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 314 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12239,20 +12761,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 315 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12262,13 +12784,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 315 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12281,13 +12803,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 316 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12297,13 +12819,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 316 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12316,13 +12838,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 317 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12335,13 +12857,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 317 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12350,20 +12872,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 318 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12373,13 +12895,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 318 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12392,51 +12914,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 319 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -252490129 +568221876 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 319 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 320 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12446,13 +12968,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 320 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12465,13 +12987,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 321 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12484,13 +13006,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 321 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12499,20 +13021,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 322 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12522,13 +13044,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 322 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12541,13 +13063,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 323 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12560,13 +13082,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 323 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12575,20 +13097,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 324 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12598,13 +13120,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 324 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12617,13 +13139,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 325 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12633,13 +13155,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 325 this -1312910583 +1219402581 1 this.wrapped -693695556 +24119573 1 this.wrapped[..] -[252490129] +[568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12652,13 +13174,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 326 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12668,13 +13190,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 326 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12687,13 +13209,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 327 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12706,13 +13228,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 327 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12721,20 +13243,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 328 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12747,13 +13269,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 328 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12762,20 +13284,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 329 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12785,13 +13307,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 329 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12804,13 +13326,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 330 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12820,13 +13342,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 330 this -679263828 +1664439369 1 this.wrapped -364089744 +154482552 1 this.wrapped[..] -[1075417105] +[1781071780] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -12839,13 +13361,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 331 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12855,13 +13377,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 331 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12874,13 +13396,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 332 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12893,13 +13415,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 332 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12908,20 +13430,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 333 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12934,13 +13456,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 333 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12949,20 +13471,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 334 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12972,13 +13494,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 334 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -12991,13 +13513,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 335 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13010,13 +13532,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 335 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13025,20 +13547,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 336 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13051,13 +13573,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 336 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13066,20 +13588,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 337 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13089,13 +13611,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 337 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13108,13 +13630,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 338 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13127,13 +13649,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 338 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13142,20 +13664,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 339 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13168,13 +13690,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 339 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13183,20 +13705,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 340 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13206,13 +13728,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 340 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13225,13 +13747,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 341 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13241,13 +13763,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 341 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13264,10 +13786,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 342 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] [] @@ -13280,10 +13802,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 343 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] [] @@ -13292,39 +13814,39 @@ this.wrapped[..].getClass().getName() [] 1 t -433178737 +501187768 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 343 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -433178737 +501187768 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 344 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13334,13 +13856,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 344 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13353,13 +13875,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 345 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13372,13 +13894,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 345 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13387,20 +13909,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 346 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13413,13 +13935,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 346 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13428,20 +13950,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 347 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13451,13 +13973,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 347 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13470,13 +13992,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 348 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13486,13 +14008,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 348 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -13505,13 +14027,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 349 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13521,13 +14043,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 349 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13540,13 +14062,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 350 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13559,13 +14081,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 350 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13574,20 +14096,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 351 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13600,13 +14122,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 351 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13615,20 +14137,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 352 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13638,13 +14160,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 352 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13657,13 +14179,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 353 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13676,13 +14198,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 353 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13691,20 +14213,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 354 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13717,13 +14239,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 354 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13732,20 +14254,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 355 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13755,13 +14277,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 355 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13774,13 +14296,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 356 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13793,13 +14315,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 356 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13808,20 +14330,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 357 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13834,13 +14356,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 357 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13849,20 +14371,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 358 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13872,13 +14394,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 358 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13891,13 +14413,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 359 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13907,13 +14429,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 359 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13926,13 +14448,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 360 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13942,13 +14464,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 360 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13961,13 +14483,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 361 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13980,13 +14502,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 361 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -13995,20 +14517,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 362 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14021,13 +14543,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 362 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14036,20 +14558,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 363 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14059,13 +14581,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 363 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14078,13 +14600,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 364 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14097,13 +14619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 364 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14112,20 +14634,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 365 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14138,13 +14660,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 365 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14153,20 +14675,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 366 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14176,13 +14698,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 366 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14195,13 +14717,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 367 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14214,13 +14736,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 367 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14229,20 +14751,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 368 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14255,13 +14777,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 368 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14270,20 +14792,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 369 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14293,13 +14815,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 369 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14312,13 +14834,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 370 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14328,13 +14850,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 370 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14347,13 +14869,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 371 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14363,13 +14885,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 371 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14382,13 +14904,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 372 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14401,13 +14923,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 372 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14416,20 +14938,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 373 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14439,13 +14961,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 373 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14458,13 +14980,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 374 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14477,13 +14999,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 374 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14492,20 +15014,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 375 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14515,13 +15037,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 375 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14534,13 +15056,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 376 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14550,13 +15072,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 376 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14569,13 +15091,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 377 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14588,13 +15110,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 377 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14603,20 +15125,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 378 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14629,13 +15151,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 378 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14644,20 +15166,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 379 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14667,13 +15189,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 379 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14686,13 +15208,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 380 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14705,13 +15227,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 380 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14720,20 +15242,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 381 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14746,13 +15268,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 381 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14761,20 +15283,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 382 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14784,13 +15306,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 382 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14803,13 +15325,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 383 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14822,13 +15344,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 383 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14837,20 +15359,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 384 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14863,13 +15385,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 384 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14878,20 +15400,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 385 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14901,13 +15423,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 385 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14920,13 +15442,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 386 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14936,13 +15458,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 386 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -14955,13 +15477,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 387 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -14971,13 +15493,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 387 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -14990,13 +15512,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 388 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15009,13 +15531,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 388 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15024,20 +15546,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 389 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15050,13 +15572,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 389 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15065,20 +15587,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 390 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15088,13 +15610,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 390 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15107,13 +15629,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 391 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15123,13 +15645,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 391 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15142,13 +15664,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 392 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15158,13 +15680,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 392 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15177,13 +15699,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 393 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15196,13 +15718,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 393 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15211,20 +15733,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 394 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15234,13 +15756,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 394 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15253,13 +15775,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 395 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15269,13 +15791,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 395 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15288,13 +15810,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 396 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15307,13 +15829,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 396 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15322,20 +15844,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 397 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15348,13 +15870,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 397 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15363,20 +15885,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 398 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15386,13 +15908,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 398 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15405,13 +15927,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 399 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15421,13 +15943,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 399 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15440,13 +15962,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 400 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15460,10 +15982,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 401 this -465469429 +288994035 1 this.wrapped -2009250829 +128359175 1 this.wrapped[..] [] @@ -15476,25 +15998,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 400 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 return -465469429 +288994035 1 return.wrapped -298333928 +1585635178 1 return.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15504,13 +16026,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 402 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15520,13 +16042,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 402 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15539,13 +16061,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 403 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15558,13 +16080,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 403 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -15573,20 +16095,20 @@ index 0 1 return -433178737 +501187768 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 404 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15596,13 +16118,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 404 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15615,13 +16137,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 405 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15634,13 +16156,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 405 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15649,20 +16171,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 406 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15672,13 +16194,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 406 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15691,13 +16213,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 407 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15710,13 +16232,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 407 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15725,20 +16247,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 408 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15748,13 +16270,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 408 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15767,13 +16289,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 409 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15783,13 +16305,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 409 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15802,13 +16324,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 410 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15821,13 +16343,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 410 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15836,20 +16358,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 411 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15859,13 +16381,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 411 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15878,13 +16400,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 412 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15897,13 +16419,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 412 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15912,26 +16434,26 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 413 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1871495798 +1058634310 1 index 1 @@ -15941,19 +16463,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 413 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1871495798 +1058634310 1 index 1 @@ -15963,13 +16485,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 414 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15979,13 +16501,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 414 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -15998,13 +16520,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 415 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16017,13 +16539,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 415 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16032,20 +16554,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 416 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16055,13 +16577,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 416 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16074,13 +16596,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 417 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16093,13 +16615,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 417 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16108,20 +16630,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 418 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16131,13 +16653,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 418 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16150,13 +16672,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 419 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -16166,13 +16688,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 419 this -2094266272 +1667148529 1 this.wrapped -1076259174 +1546693040 1 this.wrapped[..] -[433178737] +[501187768] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -16185,13 +16707,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 420 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16201,13 +16723,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 420 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16220,13 +16742,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 421 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16239,13 +16761,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 421 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16254,20 +16776,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 422 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16280,13 +16802,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 422 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16295,20 +16817,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 423 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16318,13 +16840,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 423 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16337,13 +16859,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 424 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16356,13 +16878,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 424 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16371,20 +16893,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 425 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16397,13 +16919,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 425 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16412,20 +16934,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 426 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16435,13 +16957,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 426 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16454,13 +16976,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 427 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16473,13 +16995,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 427 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16488,20 +17010,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 428 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16514,13 +17036,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 428 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16529,20 +17051,20 @@ index 1 1 return -252490129 +568221876 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 429 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16552,13 +17074,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 429 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16571,13 +17093,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 430 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16587,13 +17109,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 430 this -173911631 +203849460 1 this.wrapped -588647822 +836220863 1 this.wrapped[..] -[1075417105 252490129] +[1781071780 568221876] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16606,13 +17128,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 431 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16622,13 +17144,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 431 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16641,13 +17163,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 432 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16660,13 +17182,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 432 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16675,20 +17197,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 433 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16701,13 +17223,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 433 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16716,20 +17238,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 434 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16739,13 +17261,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 434 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16758,13 +17280,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 435 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16777,13 +17299,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 435 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16792,20 +17314,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 436 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16818,13 +17340,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 436 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16833,20 +17355,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 437 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16856,13 +17378,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 437 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16875,13 +17397,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 438 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16894,13 +17416,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 438 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16909,20 +17431,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 439 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16935,13 +17457,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 439 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16950,20 +17472,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 440 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16973,13 +17495,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 440 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -16992,13 +17514,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 441 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -17008,13 +17530,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 441 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -17031,10 +17553,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 442 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] [] @@ -17047,10 +17569,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 443 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] [] @@ -17059,39 +17581,39 @@ this.wrapped[..].getClass().getName() [] 1 t -932954559 +404214852 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 443 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 444 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17101,13 +17623,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 444 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17120,13 +17642,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 445 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17139,13 +17661,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 445 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17154,20 +17676,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 446 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17180,13 +17702,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 446 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17195,20 +17717,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 447 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17218,13 +17740,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 447 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17237,13 +17759,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 448 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17253,13 +17775,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 448 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17276,10 +17798,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 449 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] [] @@ -17292,10 +17814,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 450 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] [] @@ -17304,39 +17826,39 @@ this.wrapped[..].getClass().getName() [] 1 t -314649597 +825658265 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 450 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -314649597 +825658265 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 451 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17346,13 +17868,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 451 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17365,13 +17887,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 452 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17384,13 +17906,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 452 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17399,20 +17921,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 453 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17425,13 +17947,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 453 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17440,20 +17962,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 454 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17463,13 +17985,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 454 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17482,13 +18004,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 455 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17498,13 +18020,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 455 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17517,13 +18039,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 456 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17533,13 +18055,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 456 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17552,13 +18074,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 457 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17571,13 +18093,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 457 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17586,20 +18108,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 458 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17612,13 +18134,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 458 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17627,20 +18149,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 459 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17650,13 +18172,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 459 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17669,13 +18191,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 460 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17685,13 +18207,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 460 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17704,13 +18226,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 461 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17720,13 +18242,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 461 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17739,13 +18261,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 462 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17758,13 +18280,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 462 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17773,20 +18295,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 463 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17799,13 +18321,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 463 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17814,20 +18336,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 464 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17837,13 +18359,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 464 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17856,13 +18378,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 465 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17872,13 +18394,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 465 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17891,13 +18413,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 466 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17907,13 +18429,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 466 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17926,13 +18448,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 467 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17945,13 +18467,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 467 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17960,20 +18482,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 468 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -17983,13 +18505,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 468 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18002,13 +18524,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 469 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18018,13 +18540,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 469 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18037,13 +18559,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 470 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18056,13 +18578,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 470 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18071,20 +18593,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 471 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18097,13 +18619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 471 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18112,20 +18634,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 472 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18135,13 +18657,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 472 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18154,13 +18676,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 473 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18170,13 +18692,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 473 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18189,13 +18711,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 474 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18205,13 +18727,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 474 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18224,13 +18746,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 475 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18243,13 +18765,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 475 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18258,20 +18780,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 476 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18284,13 +18806,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 476 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18299,20 +18821,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 477 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18322,13 +18844,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 477 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18341,13 +18863,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 478 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18357,13 +18879,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 478 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18376,13 +18898,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 479 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18392,13 +18914,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 479 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18411,13 +18933,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 480 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18430,13 +18952,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 480 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18445,20 +18967,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 481 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18468,13 +18990,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 481 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18487,13 +19009,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 482 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18503,13 +19025,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 482 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18522,13 +19044,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 483 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18541,13 +19063,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 483 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18556,20 +19078,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 484 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18582,13 +19104,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 484 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18597,20 +19119,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 485 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18620,13 +19142,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 485 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18639,13 +19161,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 486 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18655,13 +19177,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 486 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18674,13 +19196,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 487 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18694,10 +19216,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 488 this -1211037865 +388357135 1 this.wrapped -63390789 +957465255 1 this.wrapped[..] [] @@ -18710,25 +19232,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 487 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1211037865 +388357135 1 return.wrapped -257101811 +1254344205 1 return.wrapped[..] -[932954559] +[404214852] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18738,13 +19260,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 489 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18754,13 +19276,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 489 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18773,13 +19295,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 490 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18792,13 +19314,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 490 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18807,20 +19329,20 @@ index 0 1 return -314649597 +825658265 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 491 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18830,13 +19352,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 491 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18849,13 +19371,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 492 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18868,13 +19390,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 492 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18883,20 +19405,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 493 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18906,13 +19428,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 493 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18925,13 +19447,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 494 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18941,13 +19463,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 494 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18960,13 +19482,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 495 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18979,13 +19501,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 495 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -18994,26 +19516,26 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 496 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -373039713 +1336735375 1 index 0 @@ -19023,19 +19545,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 496 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -373039713 +1336735375 1 index 0 @@ -19045,13 +19567,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 497 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19061,13 +19583,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 497 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19080,13 +19602,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 498 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19099,13 +19621,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 498 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19114,20 +19636,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 499 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19137,13 +19659,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 499 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19156,13 +19678,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 500 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19172,13 +19694,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 500 this -1389166366 +1822971466 1 this.wrapped -276903178 +1354003114 1 this.wrapped[..] -[314649597] +[825658265] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19191,13 +19713,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 501 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19207,13 +19729,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 501 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19226,13 +19748,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 502 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19245,13 +19767,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 502 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19260,20 +19782,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 503 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19286,13 +19808,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 503 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19301,20 +19823,20 @@ index 0 1 return -932954559 +404214852 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 504 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19324,13 +19846,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 504 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19343,13 +19865,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 505 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19359,13 +19881,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 505 this -36899377 +1668016508 1 this.wrapped -1692538903 +1353070773 1 this.wrapped[..] -[932954559] +[404214852] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19378,13 +19900,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 506 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19394,13 +19916,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 506 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19413,13 +19935,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 507 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19432,13 +19954,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 507 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19447,20 +19969,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 508 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19473,13 +19995,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 508 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19488,20 +20010,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 509 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19511,13 +20033,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 509 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19530,13 +20052,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 510 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19546,13 +20068,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 510 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19569,10 +20091,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 511 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] [] @@ -19585,10 +20107,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 512 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] [] @@ -19597,39 +20119,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1144410625 +365181913 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 512 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 513 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19639,13 +20161,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 513 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19658,13 +20180,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 514 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19677,13 +20199,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 514 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19692,20 +20214,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 515 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19718,13 +20240,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 515 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19733,20 +20255,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 516 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19756,13 +20278,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 516 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19775,13 +20297,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 517 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19791,13 +20313,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 517 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19810,13 +20332,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 518 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19826,13 +20348,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 518 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19845,13 +20367,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 519 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19864,13 +20386,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 519 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19879,20 +20401,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 520 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19905,13 +20427,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 520 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19920,20 +20442,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 521 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19943,13 +20465,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 521 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19962,13 +20484,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 522 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19978,13 +20500,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 522 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -19997,13 +20519,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 523 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20013,13 +20535,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 523 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20032,13 +20554,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 524 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20051,13 +20573,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 524 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20066,20 +20588,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 525 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20092,13 +20614,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 525 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20107,20 +20629,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 526 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20130,13 +20652,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 526 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20149,13 +20671,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 527 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20165,13 +20687,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 527 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20184,13 +20706,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 528 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20200,13 +20722,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 528 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20219,13 +20741,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 529 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20238,13 +20760,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 529 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20253,20 +20775,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 530 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20276,13 +20798,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 530 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20295,13 +20817,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 531 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20311,13 +20833,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 531 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20330,13 +20852,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 532 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20349,13 +20871,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 532 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20364,20 +20886,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 533 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20390,13 +20912,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 533 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20405,20 +20927,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 534 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20428,13 +20950,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 534 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20447,13 +20969,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 535 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20463,13 +20985,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 535 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20482,13 +21004,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 536 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20498,13 +21020,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 536 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20517,13 +21039,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 537 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20536,13 +21058,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 537 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20551,20 +21073,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 538 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20577,13 +21099,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 538 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20592,20 +21114,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 539 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20615,13 +21137,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 539 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20634,13 +21156,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 540 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20650,13 +21172,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 540 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20669,13 +21191,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 541 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20685,13 +21207,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 541 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20704,13 +21226,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 542 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20723,13 +21245,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 542 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20738,20 +21260,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 543 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20761,13 +21283,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 543 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20780,13 +21302,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 544 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20796,13 +21318,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 544 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20815,13 +21337,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 545 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20834,13 +21356,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 545 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20849,20 +21371,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 546 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20875,13 +21397,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 546 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20890,20 +21412,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 547 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20913,13 +21435,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 547 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20932,13 +21454,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 548 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20948,13 +21470,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 548 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20967,13 +21489,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 549 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -20987,10 +21509,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 550 this -1245831843 +1031061344 1 this.wrapped -730227051 +1327536153 1 this.wrapped[..] [] @@ -21003,25 +21525,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 549 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1245831843 +1031061344 1 return.wrapped -57003552 +367746789 1 return.wrapped[..] -[373039713] +[1336735375] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21031,13 +21553,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 551 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21047,13 +21569,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 551 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21066,13 +21588,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 552 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21085,13 +21607,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 552 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21100,20 +21622,20 @@ index 0 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 553 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21123,13 +21645,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 553 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21142,13 +21664,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 554 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21161,13 +21683,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 554 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21176,20 +21698,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 555 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21199,13 +21721,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 555 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21218,13 +21740,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 556 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21234,13 +21756,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 556 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21253,13 +21775,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 557 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21272,13 +21794,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 557 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21287,20 +21809,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 558 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21310,13 +21832,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 558 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21329,51 +21851,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 559 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1144410625 +365181913 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 559 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 560 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21383,13 +21905,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 560 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21402,13 +21924,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 561 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21421,13 +21943,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 561 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21436,20 +21958,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 562 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21459,13 +21981,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 562 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21478,13 +22000,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 563 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21497,13 +22019,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 563 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21512,20 +22034,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 564 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21535,13 +22057,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 564 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21554,13 +22076,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 565 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21570,13 +22092,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 565 this -1173690798 +1984990929 1 this.wrapped -1583944291 +1105423942 1 this.wrapped[..] -[1144410625] +[365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21589,13 +22111,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 566 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21605,13 +22127,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 566 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21624,13 +22146,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 567 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21643,13 +22165,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 567 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21658,20 +22180,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 568 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21684,13 +22206,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 568 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21699,20 +22221,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 569 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21722,13 +22244,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 569 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21741,13 +22263,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 570 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21757,13 +22279,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 570 this -1211037865 +388357135 1 this.wrapped -257101811 +1254344205 1 this.wrapped[..] -[373039713] +[1336735375] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -21776,13 +22298,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 571 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21792,13 +22314,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 571 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21811,13 +22333,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 572 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21830,13 +22352,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 572 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21845,20 +22367,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 573 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21871,13 +22393,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 573 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21886,20 +22408,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 574 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21909,13 +22431,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 574 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21928,13 +22450,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 575 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21947,13 +22469,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 575 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21962,20 +22484,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 576 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -21988,13 +22510,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 576 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22003,20 +22525,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 577 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22026,13 +22548,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 577 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22045,13 +22567,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 578 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22064,13 +22586,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 578 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22079,20 +22601,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 579 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22105,13 +22627,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 579 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22120,20 +22642,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 580 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22143,13 +22665,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 580 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22162,13 +22684,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 581 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22178,13 +22700,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 581 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -22201,10 +22723,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 582 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] [] @@ -22217,10 +22739,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 583 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] [] @@ -22229,39 +22751,39 @@ this.wrapped[..].getClass().getName() [] 1 t -591033307 +1928931046 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 583 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 584 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22271,13 +22793,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 584 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22290,13 +22812,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 585 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22309,13 +22831,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 585 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22324,20 +22846,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 586 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22350,13 +22872,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 586 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22365,20 +22887,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 587 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22388,13 +22910,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 587 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22407,13 +22929,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 588 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22423,13 +22945,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 588 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22446,10 +22968,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 589 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] [] @@ -22462,10 +22984,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 590 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] [] @@ -22474,39 +22996,39 @@ this.wrapped[..].getClass().getName() [] 1 t -781106347 +482082765 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 590 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -781106347 +482082765 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 591 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22516,13 +23038,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 591 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22535,13 +23057,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 592 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22554,13 +23076,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 592 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22569,20 +23091,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 593 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22595,13 +23117,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 593 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22610,20 +23132,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 594 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22633,13 +23155,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 594 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22652,13 +23174,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 595 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22668,13 +23190,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 595 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22687,13 +23209,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 596 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22703,13 +23225,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 596 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22722,13 +23244,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 597 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22741,13 +23263,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 597 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22756,20 +23278,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 598 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22782,13 +23304,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 598 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22797,20 +23319,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 599 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22820,13 +23342,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 599 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22839,13 +23361,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 600 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22855,13 +23377,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 600 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22874,13 +23396,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 601 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22890,13 +23412,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 601 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22909,13 +23431,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 602 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22928,13 +23450,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 602 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22943,20 +23465,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 603 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22969,13 +23491,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 603 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -22984,20 +23506,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 604 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23007,13 +23529,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 604 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23026,13 +23548,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 605 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23042,13 +23564,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 605 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23061,13 +23583,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 606 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23077,13 +23599,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 606 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23096,13 +23618,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 607 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23115,13 +23637,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 607 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23130,20 +23652,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 608 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23153,13 +23675,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 608 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23172,13 +23694,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 609 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23188,13 +23710,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 609 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23207,13 +23729,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 610 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23226,13 +23748,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 610 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23241,20 +23763,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 611 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23267,13 +23789,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 611 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23282,20 +23804,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 612 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23305,13 +23827,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 612 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23324,13 +23846,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 613 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23340,13 +23862,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 613 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23359,13 +23881,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 614 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23375,13 +23897,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 614 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23394,13 +23916,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 615 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23413,13 +23935,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 615 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23428,20 +23950,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 616 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23454,13 +23976,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 616 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23469,20 +23991,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 617 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23492,13 +24014,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 617 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23511,13 +24033,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 618 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23527,13 +24049,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 618 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23546,13 +24068,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 619 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23562,13 +24084,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 619 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23581,13 +24103,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 620 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23600,13 +24122,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 620 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23615,20 +24137,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 621 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23638,13 +24160,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 621 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23657,13 +24179,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 622 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23673,13 +24195,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 622 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23692,13 +24214,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 623 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23711,13 +24233,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 623 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23726,20 +24248,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 624 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23752,13 +24274,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 624 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23767,20 +24289,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 625 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23790,13 +24312,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 625 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23809,13 +24331,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 626 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23825,13 +24347,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 626 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23844,13 +24366,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 627 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23864,10 +24386,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 628 this -486839918 +667821226 1 this.wrapped -405806756 +1209702763 1 this.wrapped[..] [] @@ -23880,25 +24402,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 627 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -486839918 +667821226 1 return.wrapped -2133568867 +1028780142 1 return.wrapped[..] -[591033307] +[1928931046] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23908,13 +24430,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 629 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23924,13 +24446,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 629 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23943,13 +24465,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 630 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23962,13 +24484,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 630 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -23977,20 +24499,20 @@ index 0 1 return -781106347 +482082765 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 631 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24000,13 +24522,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 631 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24019,13 +24541,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 632 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24038,13 +24560,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 632 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24053,20 +24575,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 633 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24076,13 +24598,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 633 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24095,13 +24617,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 634 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24111,13 +24633,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 634 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24130,13 +24652,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 635 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24149,13 +24671,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 635 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24164,26 +24686,26 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 636 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -210010063 +2128029086 1 index 0 @@ -24193,19 +24715,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 636 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -210010063 +2128029086 1 index 0 @@ -24215,13 +24737,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 637 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24231,13 +24753,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 637 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24250,13 +24772,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 638 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24269,13 +24791,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 638 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24284,20 +24806,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 639 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24307,13 +24829,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 639 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24326,13 +24848,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 640 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24342,13 +24864,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 640 this -1384923374 +1034568234 1 this.wrapped -1979380632 +835227336 1 this.wrapped[..] -[781106347] +[482082765] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24361,13 +24883,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 641 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24377,13 +24899,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 641 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24396,13 +24918,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 642 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24415,13 +24937,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 642 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24430,20 +24952,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 643 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24456,13 +24978,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 643 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24471,20 +24993,20 @@ index 0 1 return -591033307 +1928931046 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 644 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24494,13 +25016,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 644 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24513,13 +25035,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 645 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24529,13 +25051,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 645 this -280991902 +558216562 1 this.wrapped -314357161 +961712517 1 this.wrapped[..] -[591033307] +[1928931046] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24548,13 +25070,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 646 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24564,13 +25086,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 646 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24583,13 +25105,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 647 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24602,13 +25124,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 647 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24617,20 +25139,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 648 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24643,13 +25165,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 648 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24658,20 +25180,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 649 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24681,13 +25203,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 649 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24700,13 +25222,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 650 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24716,13 +25238,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 650 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24735,13 +25257,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 651 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24751,13 +25273,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 651 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24770,13 +25292,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 652 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24789,13 +25311,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 652 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24804,20 +25326,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 653 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24830,13 +25352,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 653 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24845,20 +25367,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 654 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24868,13 +25390,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 654 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24887,13 +25409,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 655 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24903,13 +25425,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 655 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24922,13 +25444,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 656 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24938,13 +25460,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 656 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24957,13 +25479,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 657 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24976,13 +25498,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 657 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -24991,20 +25513,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 658 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25014,13 +25536,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 658 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25033,13 +25555,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 659 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25049,13 +25571,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 659 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25068,13 +25590,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 660 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25087,13 +25609,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 660 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25102,20 +25624,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 661 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25128,13 +25650,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 661 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25143,20 +25665,20 @@ index 0 1 return -210010063 +2128029086 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 662 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25166,13 +25688,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 662 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25185,13 +25707,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 663 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25201,13 +25723,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 663 this -486839918 +667821226 1 this.wrapped -2133568867 +1028780142 1 this.wrapped[..] -[210010063] +[2128029086] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25224,10 +25746,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 664 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] [] @@ -25240,10 +25762,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 665 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] [] @@ -25252,39 +25774,39 @@ this.wrapped[..].getClass().getName() [] 1 t -681427112 +105374791 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 665 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 666 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25294,13 +25816,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 666 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25313,13 +25835,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 667 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25332,13 +25854,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 667 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25347,20 +25869,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 668 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25373,13 +25895,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 668 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25388,20 +25910,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 669 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25411,13 +25933,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 669 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25430,13 +25952,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 670 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25446,13 +25968,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 670 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25469,10 +25991,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 671 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] [] @@ -25485,10 +26007,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 672 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] [] @@ -25497,39 +26019,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1106364232 +904861801 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 672 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1106364232 +904861801 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 673 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25539,13 +26061,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 673 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25558,13 +26080,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 674 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25577,13 +26099,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 674 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25592,20 +26114,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 675 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25618,13 +26140,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 675 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25633,20 +26155,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 676 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25656,13 +26178,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 676 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25675,13 +26197,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 677 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25691,13 +26213,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 677 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25710,13 +26232,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 678 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25726,13 +26248,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 678 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25745,13 +26267,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 679 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25764,13 +26286,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 679 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25779,20 +26301,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 680 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25805,13 +26327,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 680 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25820,20 +26342,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 681 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25843,13 +26365,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 681 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25862,13 +26384,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 682 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25878,13 +26400,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 682 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25897,13 +26419,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 683 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25913,13 +26435,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 683 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25932,13 +26454,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 684 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25951,13 +26473,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 684 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25966,20 +26488,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 685 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -25992,13 +26514,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 685 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26007,20 +26529,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 686 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26030,13 +26552,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 686 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26049,13 +26571,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 687 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26065,13 +26587,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 687 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26084,13 +26606,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 688 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26100,13 +26622,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 688 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26119,13 +26641,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 689 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26138,13 +26660,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 689 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26153,20 +26675,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 690 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26176,13 +26698,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 690 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26195,13 +26717,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 691 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26211,13 +26733,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 691 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26230,13 +26752,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 692 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26249,13 +26771,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 692 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26264,20 +26786,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 693 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26290,13 +26812,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 693 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26305,20 +26827,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 694 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26328,13 +26850,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 694 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26347,13 +26869,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 695 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26363,13 +26885,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 695 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26382,13 +26904,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 696 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26398,13 +26920,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 696 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26417,13 +26939,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 697 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26436,13 +26958,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 697 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26451,20 +26973,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 698 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26477,13 +26999,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 698 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26492,20 +27014,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 699 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26515,13 +27037,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 699 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26534,13 +27056,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 700 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26550,13 +27072,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 700 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26569,13 +27091,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 701 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26585,13 +27107,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 701 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26604,13 +27126,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 702 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26623,13 +27145,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 702 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26638,20 +27160,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 703 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26661,13 +27183,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 703 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26680,13 +27202,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 704 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26696,13 +27218,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 704 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26715,13 +27237,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 705 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26734,13 +27256,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 705 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26749,20 +27271,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 706 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26775,13 +27297,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 706 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26790,20 +27312,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 707 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26813,13 +27335,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 707 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26832,13 +27354,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 708 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26848,13 +27370,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 708 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26867,13 +27389,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 709 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26887,10 +27409,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 710 this -1750231498 +204715855 1 this.wrapped -2057273927 +318857719 1 this.wrapped[..] [] @@ -26903,25 +27425,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 709 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1750231498 +204715855 1 return.wrapped -2116174389 +745962066 1 return.wrapped[..] -[681427112] +[105374791] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26931,13 +27453,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 711 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26947,13 +27469,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 711 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26966,13 +27488,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 712 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -26985,13 +27507,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 712 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27000,20 +27522,20 @@ index 0 1 return -1106364232 +904861801 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 713 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27023,13 +27545,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 713 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27042,13 +27564,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 714 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27061,13 +27583,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 714 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27076,20 +27598,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 715 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27099,13 +27621,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 715 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27118,13 +27640,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 716 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27134,13 +27656,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 716 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27153,13 +27675,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 717 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27172,13 +27694,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 717 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27187,26 +27709,26 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 718 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2066277956 +1637290981 1 index 0 @@ -27216,19 +27738,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 718 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2066277956 +1637290981 1 index 0 @@ -27238,13 +27760,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 719 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27254,13 +27776,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 719 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27273,13 +27795,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 720 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27292,13 +27814,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 720 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27307,20 +27829,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 721 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27330,13 +27852,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 721 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27349,13 +27871,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 722 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27365,13 +27887,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 722 this -215181933 +1107024580 1 this.wrapped -200286383 +1010856212 1 this.wrapped[..] -[1106364232] +[904861801] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27384,13 +27906,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 723 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27400,13 +27922,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 723 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27419,13 +27941,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 724 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27438,13 +27960,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 724 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27453,20 +27975,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 725 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27479,13 +28001,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 725 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27494,20 +28016,20 @@ index 0 1 return -681427112 +105374791 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 726 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27517,13 +28039,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 726 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27536,13 +28058,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 727 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27552,13 +28074,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 727 this -1323496820 +686466458 1 this.wrapped -375438114 +875016237 1 this.wrapped[..] -[681427112] +[105374791] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27571,13 +28093,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 728 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27587,13 +28109,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 728 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27606,13 +28128,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 729 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27625,13 +28147,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 729 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27640,20 +28162,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 730 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27666,13 +28188,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 730 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27681,20 +28203,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 731 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27704,13 +28226,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 731 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27723,13 +28245,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 732 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27739,13 +28261,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 732 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27758,13 +28280,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 733 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27774,13 +28296,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 733 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27793,13 +28315,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 734 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27812,13 +28334,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 734 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27827,20 +28349,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 735 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27853,13 +28375,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 735 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27868,20 +28390,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 736 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27891,13 +28413,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 736 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27910,13 +28432,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 737 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27926,13 +28448,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 737 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27945,13 +28467,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 738 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27961,13 +28483,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 738 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27980,13 +28502,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 739 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -27999,13 +28521,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 739 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28014,20 +28536,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 740 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28037,13 +28559,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 740 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28056,13 +28578,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 741 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28072,13 +28594,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 741 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28091,13 +28613,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 742 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28110,13 +28632,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 742 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28125,20 +28647,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 743 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28151,13 +28673,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 743 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28166,20 +28688,20 @@ index 0 1 return -2066277956 +1637290981 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 744 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28189,13 +28711,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 744 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28208,13 +28730,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 745 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28224,13 +28746,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 745 this -1750231498 +204715855 1 this.wrapped -2116174389 +745962066 1 this.wrapped[..] -[2066277956] +[1637290981] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28247,10 +28769,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 746 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] [] @@ -28263,10 +28785,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 747 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] [] @@ -28275,39 +28797,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1477199648 +1998767043 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 747 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 748 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28317,13 +28839,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 748 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28336,13 +28858,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 749 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28355,13 +28877,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 749 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28370,20 +28892,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 750 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28396,13 +28918,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 750 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28411,20 +28933,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 751 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28434,13 +28956,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 751 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28453,13 +28975,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 752 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28469,13 +28991,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 752 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28492,10 +29014,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 753 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] [] @@ -28508,10 +29030,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 754 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] [] @@ -28520,39 +29042,39 @@ this.wrapped[..].getClass().getName() [] 1 t -2090424299 +168366 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 754 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2090424299 +168366 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 755 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28562,13 +29084,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 755 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28581,13 +29103,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 756 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28600,13 +29122,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 756 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28615,20 +29137,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 757 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28641,13 +29163,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 757 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28656,20 +29178,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 758 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28679,13 +29201,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 758 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28698,13 +29220,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 759 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28714,13 +29236,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 759 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28733,13 +29255,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 760 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28749,13 +29271,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 760 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28768,13 +29290,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 761 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28787,13 +29309,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 761 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28802,20 +29324,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 762 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28828,13 +29350,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 762 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28843,20 +29365,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 763 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28866,13 +29388,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 763 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28885,13 +29407,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 764 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28901,13 +29423,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 764 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28920,13 +29442,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 765 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28936,13 +29458,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 765 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28955,13 +29477,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 766 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28974,13 +29496,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 766 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -28989,20 +29511,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 767 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29015,13 +29537,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 767 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29030,20 +29552,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 768 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29053,13 +29575,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 768 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29072,13 +29594,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 769 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29088,13 +29610,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 769 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29107,13 +29629,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 770 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29123,13 +29645,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 770 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29142,13 +29664,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 771 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29161,13 +29683,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 771 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29176,20 +29698,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 772 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29199,13 +29721,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 772 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29218,13 +29740,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 773 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29234,13 +29756,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 773 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29253,13 +29775,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 774 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29272,13 +29794,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 774 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29287,20 +29809,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 775 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29313,13 +29835,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 775 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29328,20 +29850,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 776 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29351,13 +29873,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 776 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29370,13 +29892,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 777 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29386,13 +29908,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 777 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29405,13 +29927,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 778 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29421,13 +29943,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 778 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29440,13 +29962,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 779 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29459,13 +29981,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 779 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29474,20 +29996,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 780 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29500,13 +30022,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 780 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29515,20 +30037,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 781 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29538,13 +30060,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 781 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29557,13 +30079,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 782 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29573,13 +30095,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 782 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29592,13 +30114,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 783 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29608,13 +30130,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 783 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29627,13 +30149,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 784 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29646,13 +30168,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 784 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29661,20 +30183,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 785 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29684,13 +30206,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 785 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29703,13 +30225,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 786 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29719,13 +30241,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 786 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29738,13 +30260,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 787 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29757,13 +30279,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 787 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29772,20 +30294,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 788 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29798,13 +30320,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 788 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29813,20 +30335,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 789 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29836,13 +30358,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 789 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29855,13 +30377,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 790 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29871,13 +30393,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 790 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29890,13 +30412,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 791 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29910,10 +30432,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 792 this -928728373 +1642030774 1 this.wrapped -1226618615 +1357563986 1 this.wrapped[..] [] @@ -29926,25 +30448,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 791 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -928728373 +1642030774 1 return.wrapped -2083534752 +384587033 1 return.wrapped[..] -[1477199648] +[1998767043] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29954,13 +30476,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 793 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29970,13 +30492,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 793 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -29989,13 +30511,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 794 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30008,13 +30530,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 794 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30023,20 +30545,20 @@ index 0 1 return -2090424299 +168366 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 795 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30046,13 +30568,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 795 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30065,13 +30587,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 796 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30084,13 +30606,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 796 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30099,20 +30621,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 797 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30122,13 +30644,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 797 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30141,13 +30663,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 798 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30157,13 +30679,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 798 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30176,13 +30698,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 799 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30195,13 +30717,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 799 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30210,26 +30732,26 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 800 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1100228882 +49752459 1 index 0 @@ -30239,19 +30761,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 800 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1100228882 +49752459 1 index 0 @@ -30261,13 +30783,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 801 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30277,13 +30799,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 801 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30296,13 +30818,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 802 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30315,13 +30837,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 802 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30330,20 +30852,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 803 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30353,13 +30875,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 803 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30372,13 +30894,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 804 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30388,13 +30910,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 804 this -236040969 +787738361 1 this.wrapped -738269974 +607932305 1 this.wrapped[..] -[2090424299] +[168366] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30407,13 +30929,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 805 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30423,13 +30945,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 805 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30442,13 +30964,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 806 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30461,13 +30983,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 806 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30476,20 +30998,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 807 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30502,13 +31024,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 807 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30517,20 +31039,20 @@ index 0 1 return -1477199648 +1998767043 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 808 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30540,13 +31062,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 808 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30559,13 +31081,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 809 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30575,13 +31097,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 809 this -975550855 +1888442711 1 this.wrapped -45575140 +1754894440 1 this.wrapped[..] -[1477199648] +[1998767043] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30594,13 +31116,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 810 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30610,13 +31132,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 810 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30629,13 +31151,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 811 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30648,13 +31170,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 811 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30663,20 +31185,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 812 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30689,13 +31211,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 812 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30704,20 +31226,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 813 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30727,13 +31249,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 813 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30746,13 +31268,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 814 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30762,13 +31284,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 814 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30781,13 +31303,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 815 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30797,13 +31319,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 815 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30816,13 +31338,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 816 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30835,13 +31357,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 816 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30850,20 +31372,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 817 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30876,13 +31398,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 817 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30891,20 +31413,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 818 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30914,13 +31436,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 818 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30933,13 +31455,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 819 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30949,13 +31471,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 819 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30968,13 +31490,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 820 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -30984,13 +31506,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 820 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31003,13 +31525,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 821 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31022,13 +31544,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 821 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31037,20 +31559,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 822 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31060,13 +31582,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 822 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31079,13 +31601,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 823 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31095,13 +31617,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 823 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31114,13 +31636,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 824 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31133,13 +31655,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 824 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31148,20 +31670,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 825 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31174,13 +31696,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 825 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31189,20 +31711,20 @@ index 0 1 return -1100228882 +49752459 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 826 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31212,13 +31734,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 826 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31231,13 +31753,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 827 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31247,13 +31769,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 827 this -928728373 +1642030774 1 this.wrapped -2083534752 +384587033 1 this.wrapped[..] -[1100228882] +[49752459] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31270,10 +31792,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 828 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] [] @@ -31286,10 +31808,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 829 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] [] @@ -31298,39 +31820,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1872372080 +1780034814 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 829 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 830 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31340,13 +31862,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 830 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31359,13 +31881,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 831 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31378,13 +31900,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 831 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31393,20 +31915,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 832 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31419,13 +31941,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 832 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31434,20 +31956,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 833 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31457,13 +31979,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 833 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31476,13 +31998,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 834 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31492,13 +32014,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 834 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31515,10 +32037,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 835 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] [] @@ -31531,10 +32053,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 836 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] [] @@ -31543,39 +32065,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1669420564 +551479935 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 836 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1669420564 +551479935 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 837 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31585,13 +32107,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 837 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31604,13 +32126,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 838 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31623,13 +32145,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 838 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31638,20 +32160,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 839 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31664,13 +32186,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 839 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31679,20 +32201,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 840 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31702,13 +32224,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 840 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31721,13 +32243,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 841 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31737,13 +32259,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 841 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31756,13 +32278,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 842 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31772,13 +32294,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 842 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31791,13 +32313,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 843 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31810,13 +32332,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 843 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31825,20 +32347,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 844 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31851,13 +32373,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 844 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31866,20 +32388,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 845 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31889,13 +32411,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 845 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31908,13 +32430,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 846 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31924,13 +32446,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 846 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31943,13 +32465,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 847 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31959,13 +32481,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 847 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31978,13 +32500,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 848 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -31997,13 +32519,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 848 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32012,20 +32534,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 849 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32038,13 +32560,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 849 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32053,20 +32575,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 850 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32076,13 +32598,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 850 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32095,13 +32617,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 851 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32111,13 +32633,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 851 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32130,13 +32652,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 852 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32146,13 +32668,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 852 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32165,13 +32687,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 853 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32184,13 +32706,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 853 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32199,20 +32721,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 854 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32222,13 +32744,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 854 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32241,13 +32763,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 855 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32257,13 +32779,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 855 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32276,13 +32798,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 856 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32295,13 +32817,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 856 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32310,20 +32832,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 857 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32336,13 +32858,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 857 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32351,20 +32873,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 858 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32374,13 +32896,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 858 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32393,13 +32915,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 859 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32409,13 +32931,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 859 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32428,13 +32950,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 860 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32444,13 +32966,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 860 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32463,13 +32985,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 861 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32482,13 +33004,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 861 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32497,20 +33019,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 862 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32523,13 +33045,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 862 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32538,20 +33060,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 863 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32561,13 +33083,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 863 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32580,13 +33102,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 864 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32596,13 +33118,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 864 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32615,13 +33137,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 865 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32631,13 +33153,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 865 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32650,13 +33172,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 866 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32669,13 +33191,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 866 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32684,20 +33206,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 867 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32707,13 +33229,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 867 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32726,13 +33248,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 868 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32742,13 +33264,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 868 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32761,13 +33283,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 869 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32780,13 +33302,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 869 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32795,20 +33317,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 870 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32821,13 +33343,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 870 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32836,20 +33358,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 871 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32859,13 +33381,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 871 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32878,13 +33400,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 872 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32894,13 +33416,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 872 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32913,13 +33435,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 873 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32933,10 +33455,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 874 this -1077571093 +58940486 1 this.wrapped -1007764900 +501107890 1 this.wrapped[..] [] @@ -32949,25 +33471,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 873 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1077571093 +58940486 1 return.wrapped -301150411 +1997859171 1 return.wrapped[..] -[1872372080] +[1780034814] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32977,13 +33499,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 875 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -32993,13 +33515,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 875 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33012,13 +33534,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 876 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33031,13 +33553,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 876 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33046,20 +33568,20 @@ index 0 1 return -1669420564 +551479935 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 877 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33069,13 +33591,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 877 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33088,13 +33610,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 878 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33107,13 +33629,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 878 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33122,20 +33644,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 879 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33145,13 +33667,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 879 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33164,13 +33686,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 880 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33180,13 +33702,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 880 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33199,13 +33721,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 881 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33218,13 +33740,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 881 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33233,26 +33755,26 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 882 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1963485345 +550402284 1 index 0 @@ -33262,19 +33784,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 882 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1963485345 +550402284 1 index 0 @@ -33284,13 +33806,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 883 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33300,13 +33822,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 883 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33319,13 +33841,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 884 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33338,13 +33860,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 884 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33353,20 +33875,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 885 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33376,13 +33898,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 885 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33395,13 +33917,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 886 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33411,13 +33933,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 886 this -1879669069 +1360657223 1 this.wrapped -2113595313 +1905485420 1 this.wrapped[..] -[1669420564] +[551479935] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33430,13 +33952,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 887 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33446,13 +33968,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 887 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33465,13 +33987,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 888 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33484,13 +34006,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 888 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33499,20 +34021,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 889 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33525,13 +34047,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 889 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33540,20 +34062,20 @@ index 0 1 return -1872372080 +1780034814 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 890 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33563,13 +34085,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 890 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33582,13 +34104,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 891 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33598,13 +34120,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 891 this -1712619104 +411506101 1 this.wrapped -1265960187 +514455215 1 this.wrapped[..] -[1872372080] +[1780034814] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33617,13 +34139,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 892 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33633,13 +34155,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 892 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33652,13 +34174,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 893 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33671,13 +34193,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 893 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33686,20 +34208,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 894 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33712,13 +34234,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 894 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33727,20 +34249,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 895 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33750,13 +34272,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 895 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33769,13 +34291,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 896 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33785,13 +34307,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 896 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33804,13 +34326,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 897 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33820,13 +34342,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 897 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33839,13 +34361,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 898 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33858,13 +34380,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 898 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33873,20 +34395,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 899 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33899,13 +34421,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 899 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33914,20 +34436,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 900 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33937,13 +34459,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 900 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33956,13 +34478,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 901 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33972,13 +34494,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 901 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -33991,13 +34513,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 902 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34007,13 +34529,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 902 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34026,13 +34548,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 903 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34045,13 +34567,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 903 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34060,20 +34582,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 904 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34083,13 +34605,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 904 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34102,13 +34624,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 905 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34118,13 +34640,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 905 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34137,13 +34659,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 906 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34156,13 +34678,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 906 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34171,20 +34693,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 907 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34197,13 +34719,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 907 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34212,20 +34734,20 @@ index 0 1 return -1963485345 +550402284 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 908 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34235,13 +34757,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 908 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34254,13 +34776,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 909 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34270,13 +34792,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 909 this -1077571093 +58940486 1 this.wrapped -301150411 +1997859171 1 this.wrapped[..] -[1963485345] +[550402284] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34293,10 +34815,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 910 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] [] @@ -34309,10 +34831,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 911 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] [] @@ -34321,39 +34843,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1576147713 +116237769 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 911 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 912 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34363,13 +34885,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 912 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34382,13 +34904,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 913 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34401,13 +34923,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 913 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34416,20 +34938,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 914 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34442,13 +34964,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 914 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34457,20 +34979,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 915 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34480,13 +35002,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 915 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34499,13 +35021,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 916 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34515,13 +35037,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 916 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34538,10 +35060,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 917 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] [] @@ -34554,10 +35076,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 918 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] [] @@ -34566,39 +35088,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1091629849 +422396878 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 918 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 919 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34608,13 +35130,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 919 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34627,13 +35149,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 920 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34646,13 +35168,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 920 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34661,20 +35183,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 921 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34687,13 +35209,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 921 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34702,20 +35224,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 922 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34725,13 +35247,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 922 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34744,13 +35266,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 923 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34760,13 +35282,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 923 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34779,13 +35301,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 924 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34795,13 +35317,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 924 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34814,13 +35336,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 925 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34833,13 +35355,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 925 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34848,20 +35370,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 926 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34874,13 +35396,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 926 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34889,20 +35411,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 927 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34912,13 +35434,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 927 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34931,13 +35453,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 928 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34947,13 +35469,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 928 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34966,13 +35488,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 929 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -34982,13 +35504,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 929 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35001,13 +35523,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 930 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35020,13 +35542,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 930 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35035,20 +35557,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 931 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35061,13 +35583,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 931 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35076,20 +35598,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 932 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35099,13 +35621,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 932 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35118,13 +35640,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 933 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35134,13 +35656,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 933 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35153,13 +35675,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 934 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35169,13 +35691,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 934 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35188,13 +35710,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 935 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35207,13 +35729,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 935 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35222,20 +35744,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 936 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35245,13 +35767,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 936 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35264,13 +35786,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 937 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35280,13 +35802,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 937 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35299,13 +35821,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 938 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35318,13 +35840,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 938 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35333,20 +35855,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 939 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35359,13 +35881,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 939 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35374,20 +35896,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 940 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35397,13 +35919,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 940 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35416,13 +35938,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 941 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35432,13 +35954,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 941 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35451,13 +35973,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 942 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35467,13 +35989,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 942 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35486,13 +36008,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 943 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35505,13 +36027,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 943 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35520,20 +36042,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 944 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35546,13 +36068,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 944 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35561,20 +36083,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 945 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35584,13 +36106,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 945 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35603,13 +36125,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 946 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35619,13 +36141,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 946 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35638,13 +36160,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 947 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35654,13 +36176,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 947 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35673,13 +36195,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 948 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35692,13 +36214,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 948 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35707,20 +36229,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 949 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35730,13 +36252,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 949 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35749,13 +36271,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 950 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35765,13 +36287,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 950 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35784,13 +36306,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 951 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35803,13 +36325,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 951 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35818,20 +36340,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 952 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35844,13 +36366,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 952 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35859,20 +36381,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 953 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35882,13 +36404,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 953 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35901,13 +36423,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 954 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35917,13 +36439,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 954 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35936,13 +36458,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 955 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -35956,10 +36478,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 956 this -1070075822 +1912962767 1 this.wrapped -1736280376 +452805835 1 this.wrapped[..] [] @@ -35972,25 +36494,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 955 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1070075822 +1912962767 1 return.wrapped -1656483996 +1769190683 1 return.wrapped[..] -[1576147713] +[116237769] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36000,13 +36522,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 957 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36016,13 +36538,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 957 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36035,13 +36557,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 958 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36054,13 +36576,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 958 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36069,20 +36591,20 @@ index 0 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 959 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36092,13 +36614,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 959 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36111,13 +36633,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 960 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36130,13 +36652,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 960 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36145,20 +36667,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 961 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36168,13 +36690,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 961 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36187,13 +36709,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 962 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36203,13 +36725,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 962 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36222,13 +36744,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 963 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36241,13 +36763,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 963 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36256,20 +36778,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 964 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36279,13 +36801,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 964 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36298,51 +36820,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 965 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1091629849 +422396878 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 965 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 966 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36352,13 +36874,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 966 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36371,13 +36893,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 967 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36390,13 +36912,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 967 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36405,20 +36927,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 968 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36428,13 +36950,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 968 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36447,13 +36969,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 969 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36466,13 +36988,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 969 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36481,20 +37003,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 970 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36504,13 +37026,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 970 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36523,13 +37045,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 971 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36539,13 +37061,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 971 this -1103826646 +1438098656 1 this.wrapped -2050696536 +1594199808 1 this.wrapped[..] -[1091629849] +[422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36558,13 +37080,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 972 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36574,13 +37096,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 972 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36593,13 +37115,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 973 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36612,13 +37134,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 973 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36627,20 +37149,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 974 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36653,13 +37175,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 974 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36668,20 +37190,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 975 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36691,13 +37213,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 975 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36710,13 +37232,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 976 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36726,13 +37248,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 976 this -2064473613 +959869407 1 this.wrapped -714729112 +1449263511 1 this.wrapped[..] -[1576147713] +[116237769] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -36745,13 +37267,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 977 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36761,13 +37283,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 977 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36780,13 +37302,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 978 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36799,13 +37321,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 978 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36814,20 +37336,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 979 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36840,13 +37362,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 979 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36855,20 +37377,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 980 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36878,13 +37400,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 980 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36897,13 +37419,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 981 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36916,13 +37438,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 981 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36931,20 +37453,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 982 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36957,13 +37479,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 982 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36972,20 +37494,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 983 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -36995,13 +37517,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 983 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37014,13 +37536,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 984 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37033,13 +37555,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 984 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37048,20 +37570,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 985 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37074,13 +37596,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 985 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37089,20 +37611,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 986 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37112,13 +37634,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 986 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37131,13 +37653,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 987 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37147,13 +37669,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 987 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37166,13 +37688,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 988 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37182,13 +37704,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 988 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37201,13 +37723,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 989 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37220,13 +37742,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 989 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37235,20 +37757,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 990 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37261,13 +37783,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 990 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37276,20 +37798,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 991 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37299,13 +37821,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 991 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37318,13 +37840,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 992 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37337,13 +37859,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 992 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37352,20 +37874,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 993 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37378,13 +37900,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 993 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37393,20 +37915,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 994 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37416,13 +37938,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 994 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37435,13 +37957,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 995 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37454,13 +37976,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 995 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37469,20 +37991,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 996 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37495,13 +38017,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 996 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37510,20 +38032,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 997 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37533,13 +38055,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 997 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37552,13 +38074,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 998 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37568,13 +38090,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 998 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37587,13 +38109,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 999 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37603,13 +38125,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 999 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37622,13 +38144,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1000 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37641,13 +38163,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1000 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37656,20 +38178,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1001 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37679,13 +38201,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1001 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37698,13 +38220,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1002 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37717,13 +38239,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1002 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37732,20 +38254,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1003 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37755,13 +38277,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1003 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37774,13 +38296,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1004 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37790,13 +38312,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1004 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37809,13 +38331,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1005 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37828,13 +38350,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1005 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37843,20 +38365,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1006 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37869,13 +38391,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1006 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37884,20 +38406,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1007 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37907,13 +38429,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1007 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37926,13 +38448,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1008 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37945,13 +38467,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1008 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37960,20 +38482,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1009 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -37986,13 +38508,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1009 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38001,20 +38523,20 @@ index 0 1 return -1576147713 +116237769 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1010 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38024,13 +38546,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1010 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38043,13 +38565,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1011 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38062,13 +38584,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1011 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38077,20 +38599,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1012 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38103,13 +38625,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1012 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38118,20 +38640,20 @@ index 1 1 return -1091629849 +422396878 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1013 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38141,13 +38663,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1013 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38160,13 +38682,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1014 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38176,13 +38698,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1014 this -1070075822 +1912962767 1 this.wrapped -1656483996 +1769190683 1 this.wrapped[..] -[1576147713 1091629849] +[116237769 422396878] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38195,13 +38717,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1015 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38211,13 +38733,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1015 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38230,13 +38752,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1016 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38249,13 +38771,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1016 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38264,20 +38786,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1017 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38290,13 +38812,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1017 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38305,20 +38827,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1018 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38328,13 +38850,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1018 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38347,13 +38869,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1019 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38366,13 +38888,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1019 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38381,20 +38903,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1020 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38407,13 +38929,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1020 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38422,20 +38944,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1021 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38445,13 +38967,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1021 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38464,13 +38986,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1022 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38483,13 +39005,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1022 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38498,20 +39020,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1023 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38524,13 +39046,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1023 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38539,20 +39061,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1024 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38562,13 +39084,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1024 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38581,13 +39103,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1025 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38597,13 +39119,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1025 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38616,13 +39138,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1026 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38632,13 +39154,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1026 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38651,13 +39173,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1027 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38670,13 +39192,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1027 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38685,20 +39207,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1028 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38708,13 +39230,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1028 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38727,13 +39249,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1029 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38746,13 +39268,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1029 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38761,20 +39283,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1030 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38784,13 +39306,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1030 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38803,13 +39325,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1031 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38819,13 +39341,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1031 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38838,13 +39360,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1032 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38857,13 +39379,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1032 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38872,20 +39394,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1033 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38898,13 +39420,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1033 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38913,20 +39435,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1034 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38936,13 +39458,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1034 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38955,13 +39477,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1035 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38974,13 +39496,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1035 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -38989,20 +39511,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1036 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39015,13 +39537,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1036 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39030,20 +39552,20 @@ index 0 1 return -1075417105 +1781071780 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1037 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39053,13 +39575,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1037 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39072,13 +39594,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1038 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39091,13 +39613,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1038 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39106,20 +39628,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1039 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39132,13 +39654,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1039 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39147,20 +39669,20 @@ index 1 1 return -1871495798 +1058634310 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1040 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39170,13 +39692,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1040 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39189,13 +39711,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1041 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39205,13 +39727,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1041 this -465469429 +288994035 1 this.wrapped -298333928 +1585635178 1 this.wrapped[..] -[1075417105 1871495798] +[1781071780 1058634310] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39224,13 +39746,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1042 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39240,13 +39762,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1042 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39259,13 +39781,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1043 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39278,13 +39800,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1043 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39293,20 +39815,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1044 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39319,13 +39841,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1044 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39334,20 +39856,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1045 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39357,13 +39879,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1045 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39376,13 +39898,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1046 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39395,13 +39917,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1046 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39410,20 +39932,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1047 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39436,13 +39958,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1047 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39451,20 +39973,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1048 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39474,13 +39996,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1048 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39493,13 +40015,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1049 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39512,13 +40034,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1049 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39527,20 +40049,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1050 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39553,13 +40075,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1050 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39568,20 +40090,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1051 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39591,13 +40113,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1051 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39610,13 +40132,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1052 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39626,13 +40148,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1052 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39645,13 +40167,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1053 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39661,13 +40183,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1053 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39680,13 +40202,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1054 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39699,13 +40221,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1054 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39714,20 +40236,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1055 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39737,13 +40259,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1055 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39756,13 +40278,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1056 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39775,13 +40297,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1056 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39790,20 +40312,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1057 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39813,13 +40335,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1057 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39832,13 +40354,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1058 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39848,13 +40370,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1058 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39867,13 +40389,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1059 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39886,13 +40408,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1059 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39901,20 +40423,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1060 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39927,13 +40449,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1060 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39942,20 +40464,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1061 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39965,13 +40487,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1061 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -39984,13 +40506,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1062 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40003,13 +40525,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1062 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40018,20 +40540,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1063 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40044,13 +40566,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1063 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40059,20 +40581,20 @@ index 0 1 return -373039713 +1336735375 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1064 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40082,13 +40604,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1064 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40101,13 +40623,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1065 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40120,13 +40642,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1065 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40135,20 +40657,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1066 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40161,13 +40683,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1066 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40176,20 +40698,20 @@ index 1 1 return -1144410625 +365181913 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1067 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40199,13 +40721,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1067 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40218,13 +40740,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1068 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40234,13 +40756,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1068 this -1245831843 +1031061344 1 this.wrapped -57003552 +367746789 1 this.wrapped[..] -[373039713 1144410625] +[1336735375 365181913] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -40257,10 +40779,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1069 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] [] @@ -40273,10 +40795,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1070 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] [] @@ -40285,39 +40807,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1091987127 +858952163 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1070 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1071 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40327,13 +40849,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1071 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40346,13 +40868,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1072 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40365,13 +40887,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1072 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40380,20 +40902,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1073 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40406,13 +40928,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1073 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40421,20 +40943,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1074 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40444,13 +40966,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1074 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40463,13 +40985,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1075 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40479,13 +41001,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1075 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40502,10 +41024,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1076 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] [] @@ -40518,10 +41040,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1077 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] [] @@ -40530,39 +41052,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1996437523 +1233990028 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1077 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1078 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40572,13 +41094,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1078 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40591,13 +41113,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1079 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40610,13 +41132,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1079 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40625,20 +41147,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1080 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40651,13 +41173,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1080 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40666,20 +41188,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1081 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40689,13 +41211,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1081 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40708,13 +41230,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1082 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40724,13 +41246,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1082 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40743,13 +41265,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1083 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40759,13 +41281,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1083 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40778,13 +41300,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1084 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40797,13 +41319,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1084 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40812,20 +41334,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1085 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40838,13 +41360,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1085 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40853,20 +41375,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1086 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40876,13 +41398,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1086 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40895,13 +41417,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1087 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40911,13 +41433,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1087 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40930,13 +41452,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1088 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40946,13 +41468,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1088 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40965,13 +41487,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1089 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40984,13 +41506,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1089 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -40999,20 +41521,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1090 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41025,13 +41547,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1090 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41040,20 +41562,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1091 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41063,13 +41585,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1091 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41082,13 +41604,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1092 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41098,13 +41620,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1092 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41117,13 +41639,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1093 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41133,13 +41655,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1093 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41152,13 +41674,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1094 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41171,13 +41693,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1094 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41186,20 +41708,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1095 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41209,13 +41731,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1095 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41228,13 +41750,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1096 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41244,13 +41766,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1096 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41263,13 +41785,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1097 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41282,13 +41804,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1097 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41297,20 +41819,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1098 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41323,13 +41845,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1098 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41338,20 +41860,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1099 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41361,13 +41883,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1099 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41380,13 +41902,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1100 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41396,13 +41918,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1100 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41415,13 +41937,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1101 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41431,13 +41953,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1101 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41450,13 +41972,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1102 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41469,13 +41991,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1102 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41484,20 +42006,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1103 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41510,13 +42032,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1103 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41525,20 +42047,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1104 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41548,13 +42070,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1104 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41567,13 +42089,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1105 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41583,13 +42105,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1105 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41602,13 +42124,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1106 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41618,13 +42140,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1106 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41637,13 +42159,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1107 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41656,13 +42178,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1107 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41671,20 +42193,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1108 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41694,13 +42216,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1108 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41713,13 +42235,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1109 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41729,13 +42251,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1109 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41748,13 +42270,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1110 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41767,13 +42289,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1110 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41782,20 +42304,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1111 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41808,13 +42330,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1111 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41823,20 +42345,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1112 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41846,13 +42368,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1112 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41865,13 +42387,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1113 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41881,13 +42403,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1113 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41900,13 +42422,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1114 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41920,10 +42442,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1115 this -1840948333 +1847008471 1 this.wrapped -2021730402 +1076607567 1 this.wrapped[..] [] @@ -41936,25 +42458,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1114 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1840948333 +1847008471 1 return.wrapped -1736603580 +2036127838 1 return.wrapped[..] -[1091987127] +[858952163] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41964,13 +42486,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1116 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41980,13 +42502,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1116 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -41999,13 +42521,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1117 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42018,13 +42540,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1117 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42033,20 +42555,20 @@ index 0 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1118 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42056,13 +42578,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1118 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42075,13 +42597,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1119 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42094,13 +42616,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1119 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42109,20 +42631,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1120 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42132,13 +42654,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1120 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42151,13 +42673,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1121 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42167,13 +42689,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1121 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42186,13 +42708,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1122 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42205,13 +42727,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1122 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42220,20 +42742,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1123 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42243,13 +42765,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1123 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42262,51 +42784,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1124 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1996437523 +1233990028 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1124 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1125 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42316,13 +42838,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1125 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42335,13 +42857,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1126 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42354,13 +42876,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1126 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42369,20 +42891,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1127 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42392,13 +42914,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1127 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42411,13 +42933,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1128 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42430,13 +42952,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1128 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42445,20 +42967,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1129 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42468,13 +42990,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1129 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42487,13 +43009,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1130 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42503,13 +43025,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1130 this -632396227 +1201484275 1 this.wrapped -786818186 +1089418272 1 this.wrapped[..] -[1996437523] +[1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42522,13 +43044,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1131 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42538,13 +43060,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1131 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42557,13 +43079,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1132 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42576,13 +43098,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1132 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42591,20 +43113,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1133 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42617,13 +43139,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1133 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42632,20 +43154,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1134 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42655,13 +43177,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1134 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42674,13 +43196,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1135 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42690,13 +43212,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1135 this -548521064 +447981768 1 this.wrapped -1993709724 +1125736023 1 this.wrapped[..] -[1091987127] +[858952163] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -42709,13 +43231,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1136 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42725,13 +43247,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1136 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42744,13 +43266,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1137 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42763,13 +43285,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1137 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42778,20 +43300,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1138 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42804,13 +43326,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1138 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42819,20 +43341,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1139 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42842,13 +43364,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1139 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42861,13 +43383,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1140 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42880,13 +43402,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1140 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42895,20 +43417,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1141 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42921,13 +43443,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1141 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42936,20 +43458,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1142 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42959,13 +43481,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1142 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42978,13 +43500,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1143 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -42997,13 +43519,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1143 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43012,20 +43534,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1144 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43038,13 +43560,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1144 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43053,20 +43575,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1145 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43076,13 +43598,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1145 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43095,13 +43617,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1146 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43111,13 +43633,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1146 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43130,13 +43652,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1147 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43146,13 +43668,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1147 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43165,13 +43687,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1148 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43184,13 +43706,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1148 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43199,20 +43721,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1149 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43225,13 +43747,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1149 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43240,20 +43762,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1150 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43263,13 +43785,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1150 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43282,13 +43804,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1151 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43301,13 +43823,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1151 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43316,20 +43838,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1152 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43342,13 +43864,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1152 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43357,20 +43879,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1153 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43380,13 +43902,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1153 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43399,13 +43921,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1154 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43418,13 +43940,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1154 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43433,20 +43955,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1155 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43459,13 +43981,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1155 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43474,20 +43996,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1156 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43497,13 +44019,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1156 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43516,13 +44038,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1157 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43532,13 +44054,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1157 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43551,13 +44073,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1158 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43567,13 +44089,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1158 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43586,13 +44108,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1159 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43605,13 +44127,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1159 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43620,20 +44142,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1160 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43643,13 +44165,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1160 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43662,13 +44184,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1161 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43681,13 +44203,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1161 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43696,20 +44218,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1162 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43719,13 +44241,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1162 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43738,13 +44260,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1163 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43754,13 +44276,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1163 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43773,13 +44295,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1164 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43792,13 +44314,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1164 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43807,20 +44329,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1165 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43833,13 +44355,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1165 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43848,20 +44370,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1166 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43871,13 +44393,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1166 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43890,13 +44412,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1167 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43909,13 +44431,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1167 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43924,20 +44446,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1168 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43950,13 +44472,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1168 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43965,20 +44487,20 @@ index 0 1 return -1091987127 +858952163 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1169 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -43988,13 +44510,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1169 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44007,13 +44529,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1170 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44026,13 +44548,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1170 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44041,20 +44563,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1171 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44067,13 +44589,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1171 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44082,20 +44604,20 @@ index 1 1 return -1996437523 +1233990028 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1172 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44105,13 +44627,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1172 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44124,13 +44646,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1173 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44140,13 +44662,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1173 this -1840948333 +1847008471 1 this.wrapped -1736603580 +2036127838 1 this.wrapped[..] -[1091987127 1996437523] +[858952163 1233990028] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -44163,10 +44685,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1174 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] [] @@ -44179,10 +44701,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1175 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] [] @@ -44191,39 +44713,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1269051511 +306115458 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1175 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1176 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44233,13 +44755,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1176 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44252,13 +44774,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1177 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44271,13 +44793,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1177 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44286,20 +44808,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1178 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44312,13 +44834,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1178 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44327,20 +44849,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1179 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44350,13 +44872,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1179 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44369,13 +44891,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1180 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44385,13 +44907,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1180 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44408,10 +44930,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1181 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] [] @@ -44424,10 +44946,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1182 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] [] @@ -44436,39 +44958,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1828042778 +1636182655 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1182 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1183 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44478,13 +45000,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1183 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44497,13 +45019,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1184 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44516,13 +45038,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1184 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44531,20 +45053,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1185 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44557,13 +45079,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1185 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44572,20 +45094,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1186 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44595,13 +45117,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1186 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44614,13 +45136,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1187 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44630,13 +45152,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1187 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44649,13 +45171,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1188 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44665,13 +45187,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1188 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44684,13 +45206,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1189 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44703,13 +45225,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1189 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44718,20 +45240,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1190 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44744,13 +45266,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1190 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44759,20 +45281,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1191 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44782,13 +45304,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1191 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44801,13 +45323,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1192 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44817,13 +45339,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1192 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44836,13 +45358,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1193 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44852,13 +45374,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1193 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44871,13 +45393,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1194 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44890,13 +45412,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1194 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44905,20 +45427,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1195 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44931,13 +45453,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1195 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44946,20 +45468,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1196 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44969,13 +45491,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1196 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -44988,13 +45510,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1197 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45004,13 +45526,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1197 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45023,13 +45545,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1198 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45039,13 +45561,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1198 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45058,13 +45580,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1199 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45077,13 +45599,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1199 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45092,20 +45614,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1200 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45115,13 +45637,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1200 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45134,13 +45656,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1201 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45150,13 +45672,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1201 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45169,13 +45691,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1202 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45188,13 +45710,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1202 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45203,20 +45725,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1203 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45229,13 +45751,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1203 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45244,20 +45766,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1204 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45267,13 +45789,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1204 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45286,13 +45808,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1205 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45302,13 +45824,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1205 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45321,13 +45843,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1206 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45337,13 +45859,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1206 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45356,13 +45878,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1207 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45375,13 +45897,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1207 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45390,20 +45912,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1208 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45416,13 +45938,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1208 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45431,20 +45953,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1209 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45454,13 +45976,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1209 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45473,13 +45995,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1210 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45489,13 +46011,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1210 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45508,13 +46030,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1211 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45524,13 +46046,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1211 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45543,13 +46065,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1212 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45562,13 +46084,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1212 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45577,20 +46099,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1213 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45600,13 +46122,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1213 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45619,13 +46141,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1214 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45635,13 +46157,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1214 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45654,13 +46176,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1215 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45673,13 +46195,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1215 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45688,20 +46210,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1216 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45714,13 +46236,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1216 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45729,20 +46251,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1217 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45752,13 +46274,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1217 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45771,13 +46293,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1218 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45787,13 +46309,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1218 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45806,13 +46328,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1219 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45822,13 +46344,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1219 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45841,13 +46363,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1220 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45860,13 +46382,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1220 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45875,20 +46397,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1221 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45901,13 +46423,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1221 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45916,20 +46438,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1222 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45939,13 +46461,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1222 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45958,13 +46480,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1223 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45974,13 +46496,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1223 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -45993,13 +46515,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1224 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46009,13 +46531,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1224 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46028,13 +46550,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1225 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46047,13 +46569,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1225 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46062,20 +46584,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1226 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46088,13 +46610,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1226 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46103,20 +46625,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1227 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46126,13 +46648,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1227 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46145,13 +46667,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1228 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46161,13 +46683,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1228 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46180,13 +46702,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1229 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46200,10 +46722,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1230 this -2013915864 +71399214 1 this.wrapped -1394165881 +1932831450 1 this.wrapped[..] [] @@ -46216,25 +46738,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1229 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -2013915864 +71399214 1 return.wrapped -551889550 +496729294 1 return.wrapped[..] -[1828042778] +[1636182655] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46244,13 +46766,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1231 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46260,13 +46782,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1231 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46279,13 +46801,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1232 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46298,13 +46820,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1232 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46313,26 +46835,26 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1233 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -625795457 +1302227152 1 index 0 @@ -46342,19 +46864,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1233 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -625795457 +1302227152 1 index 0 @@ -46364,13 +46886,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1234 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46380,13 +46902,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1234 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46399,13 +46921,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1235 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46415,13 +46937,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1235 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46434,13 +46956,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1236 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46453,13 +46975,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1236 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46468,20 +46990,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1237 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46494,13 +47016,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1237 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46509,20 +47031,20 @@ index 0 1 return -1828042778 +1636182655 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1238 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46532,13 +47054,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1238 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46551,13 +47073,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1239 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46567,13 +47089,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1239 this -141163373 +230643635 1 this.wrapped -1710863723 +944427387 1 this.wrapped[..] -[1828042778] +[1636182655] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46586,13 +47108,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1240 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46602,13 +47124,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1240 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46621,13 +47143,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1241 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46640,13 +47162,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1241 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46655,20 +47177,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1242 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46681,13 +47203,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1242 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46696,20 +47218,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1243 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46719,13 +47241,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1243 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46738,13 +47260,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1244 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46754,13 +47276,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1244 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46773,13 +47295,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1245 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46789,13 +47311,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1245 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46808,13 +47330,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1246 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46827,13 +47349,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1246 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46842,20 +47364,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1247 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46868,13 +47390,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1247 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46883,20 +47405,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1248 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46906,13 +47428,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1248 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46925,13 +47447,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1249 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46941,13 +47463,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1249 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46960,13 +47482,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1250 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46976,13 +47498,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1250 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -46995,13 +47517,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1251 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47014,13 +47536,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1251 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47029,20 +47551,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1252 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47055,13 +47577,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1252 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47070,20 +47592,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1253 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47093,13 +47615,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1253 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47112,13 +47634,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1254 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47128,13 +47650,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1254 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47147,13 +47669,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1255 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47163,13 +47685,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1255 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47182,13 +47704,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1256 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47201,13 +47723,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1256 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47216,20 +47738,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1257 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47239,13 +47761,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1257 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47258,13 +47780,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1258 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47274,13 +47796,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1258 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47293,13 +47815,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1259 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47312,13 +47834,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1259 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47327,20 +47849,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1260 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47353,13 +47875,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1260 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47368,20 +47890,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1261 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47391,13 +47913,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1261 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47410,13 +47932,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1262 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47426,13 +47948,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1262 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47445,13 +47967,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1263 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47461,13 +47983,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1263 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47480,13 +48002,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1264 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47499,13 +48021,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1264 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47514,20 +48036,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1265 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47540,13 +48062,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1265 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47555,20 +48077,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1266 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47578,13 +48100,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1266 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47597,13 +48119,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1267 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47613,13 +48135,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1267 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47632,13 +48154,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1268 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47648,13 +48170,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1268 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47667,13 +48189,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1269 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47686,13 +48208,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1269 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47701,20 +48223,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1270 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47724,13 +48246,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1270 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47743,13 +48265,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1271 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47759,13 +48281,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1271 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47778,13 +48300,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1272 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47797,13 +48319,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1272 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47812,20 +48334,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1273 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47838,13 +48360,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1273 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47853,20 +48375,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1274 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47876,13 +48398,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1274 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47895,13 +48417,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1275 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47911,13 +48433,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1275 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47930,13 +48452,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1276 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47950,10 +48472,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1277 this -1516826440 +1122606666 1 this.wrapped -523603543 +350068407 1 this.wrapped[..] [] @@ -47966,25 +48488,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1276 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1516826440 +1122606666 1 return.wrapped -1964245442 +1390869998 1 return.wrapped[..] -[1269051511] +[306115458] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -47994,13 +48516,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1278 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48010,13 +48532,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1278 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48029,13 +48551,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1279 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48048,13 +48570,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1279 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48063,20 +48585,20 @@ index 0 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1280 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48086,13 +48608,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1280 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48105,13 +48627,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1281 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48124,13 +48646,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1281 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48139,20 +48661,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1282 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48162,13 +48684,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1282 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48181,13 +48703,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1283 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48197,13 +48719,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1283 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48216,13 +48738,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1284 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48235,13 +48757,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1284 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48250,20 +48772,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1285 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48273,13 +48795,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1285 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48292,51 +48814,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1286 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -625795457 +1302227152 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1286 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1287 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48346,13 +48868,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1287 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48365,13 +48887,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1288 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48384,13 +48906,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1288 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48399,20 +48921,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1289 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48422,13 +48944,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1289 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48441,13 +48963,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1290 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48460,13 +48982,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1290 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48475,20 +48997,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1291 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48498,13 +49020,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1291 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48517,13 +49039,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1292 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48533,13 +49055,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1292 this -2013915864 +71399214 1 this.wrapped -551889550 +496729294 1 this.wrapped[..] -[625795457] +[1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48552,13 +49074,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1293 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48568,13 +49090,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1293 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48587,13 +49109,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1294 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48606,13 +49128,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1294 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48621,20 +49143,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1295 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48647,13 +49169,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1295 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48662,20 +49184,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1296 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48685,13 +49207,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1296 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48704,13 +49226,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1297 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48720,13 +49242,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1297 this -646122683 +1509791656 1 this.wrapped -1706613949 +257608164 1 this.wrapped[..] -[1269051511] +[306115458] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -48739,13 +49261,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1298 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48755,13 +49277,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1298 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48774,13 +49296,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1299 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48793,13 +49315,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1299 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48808,20 +49330,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1300 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48834,13 +49356,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1300 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48849,20 +49371,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1301 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48872,13 +49394,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1301 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48891,13 +49413,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1302 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48910,13 +49432,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1302 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48925,20 +49447,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1303 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48951,13 +49473,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1303 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48966,20 +49488,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1304 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -48989,13 +49511,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1304 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49008,13 +49530,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1305 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49027,13 +49549,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1305 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49042,20 +49564,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1306 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49068,13 +49590,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1306 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49083,20 +49605,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1307 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49106,13 +49628,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1307 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49125,13 +49647,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1308 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49141,13 +49663,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1308 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49160,13 +49682,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1309 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49176,13 +49698,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1309 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49195,13 +49717,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1310 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49214,13 +49736,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1310 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49229,20 +49751,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1311 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49255,13 +49777,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1311 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49270,20 +49792,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1312 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49293,13 +49815,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1312 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49312,13 +49834,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1313 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49331,13 +49853,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1313 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49346,20 +49868,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1314 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49372,13 +49894,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1314 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49387,20 +49909,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1315 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49410,13 +49932,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1315 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49429,13 +49951,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1316 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49448,13 +49970,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1316 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49463,20 +49985,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1317 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49489,13 +50011,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1317 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49504,20 +50026,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1318 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49527,13 +50049,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1318 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49546,13 +50068,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1319 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49562,13 +50084,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1319 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49581,13 +50103,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1320 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49597,13 +50119,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1320 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49616,13 +50138,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1321 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49635,13 +50157,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1321 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49650,20 +50172,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1322 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49673,13 +50195,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1322 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49692,13 +50214,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1323 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49711,13 +50233,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1323 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49726,20 +50248,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1324 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49749,13 +50271,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1324 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49768,13 +50290,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1325 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49784,13 +50306,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1325 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49803,13 +50325,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1326 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49822,13 +50344,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1326 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49837,20 +50359,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1327 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49863,13 +50385,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1327 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49878,20 +50400,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1328 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49901,13 +50423,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1328 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49920,13 +50442,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1329 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49939,13 +50461,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1329 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49954,20 +50476,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1330 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49980,13 +50502,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1330 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -49995,20 +50517,20 @@ index 0 1 return -1269051511 +306115458 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1331 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50018,13 +50540,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1331 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50037,13 +50559,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1332 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50056,13 +50578,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1332 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50071,20 +50593,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1333 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50097,13 +50619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1333 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50112,20 +50634,20 @@ index 1 1 return -625795457 +1302227152 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1334 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50135,13 +50657,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1334 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50154,13 +50676,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1335 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50170,13 +50692,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1335 this -1516826440 +1122606666 1 this.wrapped -1964245442 +1390869998 1 this.wrapped[..] -[1269051511 625795457] +[306115458 1302227152] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -50193,10 +50715,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1336 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] [] @@ -50209,10 +50731,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1337 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] [] @@ -50221,39 +50743,39 @@ this.wrapped[..].getClass().getName() [] 1 t -155768696 +440737101 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1337 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1338 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50263,13 +50785,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1338 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50282,13 +50804,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1339 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50301,13 +50823,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1339 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50316,20 +50838,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1340 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50342,13 +50864,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1340 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50357,20 +50879,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1341 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50380,13 +50902,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1341 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50399,13 +50921,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1342 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50415,13 +50937,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1342 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50438,10 +50960,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1343 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] [] @@ -50454,10 +50976,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1344 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] [] @@ -50466,39 +50988,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1565473023 +1608297024 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1344 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1345 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50508,13 +51030,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1345 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50527,13 +51049,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1346 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50546,13 +51068,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1346 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50561,20 +51083,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1347 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50587,13 +51109,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1347 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50602,20 +51124,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1348 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50625,13 +51147,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1348 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50644,13 +51166,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1349 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50660,13 +51182,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1349 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50679,13 +51201,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1350 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50695,13 +51217,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1350 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50714,13 +51236,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1351 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50733,13 +51255,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1351 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50748,20 +51270,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1352 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50774,13 +51296,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1352 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50789,20 +51311,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1353 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50812,13 +51334,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1353 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50831,13 +51353,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1354 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50847,13 +51369,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1354 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50866,13 +51388,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1355 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50882,13 +51404,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1355 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50901,13 +51423,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1356 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50920,13 +51442,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1356 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50935,20 +51457,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1357 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50961,13 +51483,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1357 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50976,20 +51498,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1358 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -50999,13 +51521,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1358 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51018,13 +51540,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1359 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51034,13 +51556,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1359 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51053,13 +51575,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1360 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51069,13 +51591,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1360 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51088,13 +51610,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1361 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51107,13 +51629,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1361 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51122,20 +51644,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1362 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51145,13 +51667,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1362 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51164,13 +51686,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1363 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51180,13 +51702,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1363 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51199,13 +51721,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1364 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51218,13 +51740,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1364 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51233,20 +51755,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1365 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51259,13 +51781,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1365 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51274,20 +51796,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1366 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51297,13 +51819,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1366 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51316,13 +51838,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1367 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51332,13 +51854,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1367 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51351,13 +51873,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1368 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51367,13 +51889,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1368 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51386,13 +51908,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1369 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51405,13 +51927,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1369 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51420,20 +51942,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1370 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51446,13 +51968,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1370 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51461,20 +51983,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1371 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51484,13 +52006,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1371 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51503,13 +52025,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1372 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51519,13 +52041,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1372 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51538,13 +52060,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1373 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51554,13 +52076,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1373 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51573,13 +52095,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1374 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51592,13 +52114,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1374 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51607,20 +52129,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1375 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51630,13 +52152,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1375 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51649,13 +52171,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1376 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51665,13 +52187,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1376 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51684,13 +52206,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1377 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51703,13 +52225,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1377 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51718,20 +52240,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1378 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51744,13 +52266,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1378 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51759,20 +52281,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1379 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51782,13 +52304,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1379 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51801,13 +52323,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1380 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51817,13 +52339,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1380 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51836,13 +52358,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1381 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51856,10 +52378,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1382 this -2082938164 +1841396611 1 this.wrapped -1810792601 +1577592551 1 this.wrapped[..] [] @@ -51872,25 +52394,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1381 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -2082938164 +1841396611 1 return.wrapped -2000483370 +854587510 1 return.wrapped[..] -[155768696] +[440737101] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51900,13 +52422,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1383 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51916,13 +52438,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1383 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51935,13 +52457,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1384 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51954,13 +52476,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1384 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51969,20 +52491,20 @@ index 0 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1385 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -51992,13 +52514,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1385 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52011,13 +52533,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1386 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52030,13 +52552,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1386 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52045,20 +52567,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1387 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52068,13 +52590,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1387 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52087,13 +52609,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1388 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52103,13 +52625,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1388 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52122,13 +52644,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1389 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52141,13 +52663,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1389 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52156,20 +52678,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1390 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52179,13 +52701,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1390 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52198,51 +52720,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1391 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1565473023 +1608297024 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1391 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1392 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52252,13 +52774,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1392 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52271,13 +52793,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1393 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52290,13 +52812,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1393 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52305,20 +52827,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1394 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52328,13 +52850,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1394 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52347,13 +52869,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1395 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52366,13 +52888,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1395 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52381,20 +52903,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1396 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52404,13 +52926,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1396 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52423,13 +52945,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1397 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52439,13 +52961,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1397 this -221907979 +2141817446 1 this.wrapped -1575791861 +369049246 1 this.wrapped[..] -[1565473023] +[1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52458,13 +52980,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1398 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52474,13 +52996,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1398 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52493,13 +53015,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1399 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52512,13 +53034,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1399 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52527,20 +53049,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1400 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52553,13 +53075,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1400 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52568,20 +53090,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1401 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52591,13 +53113,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1401 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52610,13 +53132,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1402 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52626,13 +53148,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1402 this -1954522010 +1820383114 1 this.wrapped -1741557558 +1645547422 1 this.wrapped[..] -[155768696] +[440737101] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -52645,13 +53167,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1403 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52661,13 +53183,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1403 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52680,13 +53202,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1404 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52699,13 +53221,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1404 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52714,20 +53236,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1405 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52740,13 +53262,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1405 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52755,20 +53277,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1406 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52778,13 +53300,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1406 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52797,13 +53319,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1407 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52816,13 +53338,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1407 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52831,20 +53353,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1408 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52857,13 +53379,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1408 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52872,20 +53394,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1409 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52895,13 +53417,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1409 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52914,13 +53436,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1410 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52933,13 +53455,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1410 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52948,20 +53470,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1411 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52974,13 +53496,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1411 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -52989,20 +53511,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1412 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53012,13 +53534,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1412 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53031,13 +53553,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1413 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53047,13 +53569,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1413 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53066,13 +53588,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1414 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53082,13 +53604,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1414 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53101,13 +53623,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1415 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53120,13 +53642,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1415 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53135,20 +53657,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1416 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53161,13 +53683,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1416 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53176,20 +53698,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1417 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53199,13 +53721,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1417 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53218,13 +53740,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1418 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53237,13 +53759,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1418 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53252,20 +53774,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1419 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53278,13 +53800,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1419 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53293,20 +53815,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1420 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53316,13 +53838,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1420 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53335,13 +53857,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1421 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53354,13 +53876,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1421 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53369,20 +53891,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1422 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53395,13 +53917,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1422 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53410,20 +53932,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1423 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53433,13 +53955,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1423 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53452,13 +53974,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1424 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53468,13 +53990,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1424 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53487,13 +54009,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1425 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53503,13 +54025,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1425 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53522,13 +54044,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1426 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53541,13 +54063,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1426 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53556,20 +54078,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1427 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53579,13 +54101,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1427 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53598,13 +54120,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1428 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53617,13 +54139,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1428 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53632,20 +54154,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1429 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53655,13 +54177,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1429 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53674,13 +54196,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1430 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53690,13 +54212,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1430 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53709,13 +54231,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1431 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53728,13 +54250,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1431 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53743,20 +54265,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1432 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53769,13 +54291,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1432 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53784,20 +54306,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1433 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53807,13 +54329,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1433 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53826,13 +54348,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1434 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53845,13 +54367,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1434 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53860,20 +54382,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1435 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53886,13 +54408,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1435 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53901,20 +54423,20 @@ index 0 1 return -155768696 +440737101 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1436 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53924,13 +54446,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1436 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53943,13 +54465,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1437 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53962,13 +54484,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1437 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -53977,20 +54499,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1438 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -54003,13 +54525,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1438 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -54018,20 +54540,20 @@ index 1 1 return -1565473023 +1608297024 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1439 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -54041,13 +54563,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1439 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -54060,13 +54582,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1440 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -54076,13 +54598,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1440 this -2082938164 +1841396611 1 this.wrapped -2000483370 +854587510 1 this.wrapped[..] -[155768696 1565473023] +[440737101 1608297024] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -54099,10 +54621,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1441 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54115,10 +54637,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1442 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54131,10 +54653,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1442 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54154,10 +54676,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1443 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54170,10 +54692,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1444 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54186,10 +54708,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1444 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54205,10 +54727,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1445 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54221,10 +54743,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1445 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54240,10 +54762,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1446 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54256,10 +54778,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1446 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54275,10 +54797,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1447 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54291,10 +54813,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1447 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54310,10 +54832,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1448 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54326,10 +54848,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1448 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54345,10 +54867,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1449 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54361,10 +54883,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1449 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54380,10 +54902,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1450 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54396,10 +54918,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1450 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54415,10 +54937,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1451 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54431,10 +54953,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1451 this -718668003 +1904253191 1 this.wrapped -1205095693 +1021436681 1 this.wrapped[..] [] @@ -54454,10 +54976,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1452 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54470,10 +54992,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1453 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54486,10 +55008,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1453 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54505,10 +55027,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1454 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54521,10 +55043,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1454 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54540,10 +55062,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1455 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54556,10 +55078,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1455 this -1120022158 +148626113 1 this.wrapped -1518243551 +1847637306 1 this.wrapped[..] [] @@ -54575,10 +55097,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1456 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54591,10 +55113,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1456 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54610,10 +55132,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1457 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54626,10 +55148,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1457 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54645,10 +55167,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1458 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54661,10 +55183,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1458 this -1125037394 +1790585734 1 this.wrapped -2057452770 +22600334 1 this.wrapped[..] [] @@ -54684,10 +55206,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1459 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] [] @@ -54700,10 +55222,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1460 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] [] @@ -54712,39 +55234,39 @@ this.wrapped[..].getClass().getName() [] 1 t -379919049 +2087885397 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1460 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1461 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54754,13 +55276,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1461 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54773,13 +55295,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1462 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54792,13 +55314,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1462 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54807,20 +55329,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1463 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54833,13 +55355,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1463 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54848,20 +55370,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1464 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54871,13 +55393,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1464 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54890,13 +55412,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1465 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54906,13 +55428,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1465 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54929,10 +55451,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1466 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] [] @@ -54945,10 +55467,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1467 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] [] @@ -54957,39 +55479,39 @@ this.wrapped[..].getClass().getName() [] 1 t -918426392 +1525919705 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1467 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1468 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -54999,13 +55521,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1468 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55018,13 +55540,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1469 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55037,13 +55559,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1469 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55052,20 +55574,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1470 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55078,13 +55600,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1470 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55093,20 +55615,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1471 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55116,13 +55638,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1471 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55135,13 +55657,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1472 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55151,13 +55673,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1472 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55170,13 +55692,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1473 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55186,13 +55708,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1473 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55205,13 +55727,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1474 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55224,13 +55746,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1474 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55239,20 +55761,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1475 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55265,13 +55787,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1475 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55280,20 +55802,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1476 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55303,13 +55825,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1476 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55322,13 +55844,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1477 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55338,13 +55860,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1477 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55357,13 +55879,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1478 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55373,13 +55895,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1478 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55392,13 +55914,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1479 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55411,13 +55933,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1479 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55426,20 +55948,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1480 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55452,13 +55974,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1480 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55467,20 +55989,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1481 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55490,13 +56012,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1481 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55509,13 +56031,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1482 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55525,13 +56047,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1482 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55544,13 +56066,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1483 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55560,13 +56082,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1483 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55579,13 +56101,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1484 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55598,13 +56120,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1484 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55613,20 +56135,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1485 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55636,13 +56158,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1485 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55655,13 +56177,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1486 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55671,13 +56193,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1486 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55690,13 +56212,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1487 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55709,13 +56231,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1487 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55724,20 +56246,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1488 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55750,13 +56272,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1488 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55765,20 +56287,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1489 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55788,13 +56310,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1489 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55807,13 +56329,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1490 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55823,13 +56345,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1490 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55842,13 +56364,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1491 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55858,13 +56380,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1491 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55877,13 +56399,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1492 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55896,13 +56418,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1492 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55911,20 +56433,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1493 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55937,13 +56459,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1493 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55952,20 +56474,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1494 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55975,13 +56497,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1494 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -55994,13 +56516,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1495 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56010,13 +56532,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1495 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56029,13 +56551,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1496 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56045,13 +56567,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1496 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56064,13 +56586,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1497 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56083,13 +56605,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1497 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56098,20 +56620,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1498 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56121,13 +56643,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1498 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56140,13 +56662,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1499 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56156,13 +56678,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1499 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56175,13 +56697,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1500 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56194,13 +56716,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1500 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56209,20 +56731,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1501 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56235,13 +56757,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1501 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56250,20 +56772,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1502 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56273,13 +56795,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1502 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56292,13 +56814,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1503 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56308,13 +56830,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1503 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56331,10 +56853,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1504 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -56347,10 +56869,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1505 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -56363,10 +56885,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1505 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -56382,13 +56904,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1506 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56398,13 +56920,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1506 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56417,13 +56939,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1507 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56436,13 +56958,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1507 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56451,20 +56973,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1508 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56474,13 +56996,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1508 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56493,13 +57015,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1509 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56512,13 +57034,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1509 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56527,20 +57049,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1510 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56553,13 +57075,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1510 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56568,20 +57090,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1511 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56591,13 +57113,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1511 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56610,13 +57132,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1512 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56626,13 +57148,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1512 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56645,13 +57167,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1513 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56665,10 +57187,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1514 this -1802988373 +1766505436 1 this.wrapped -1831325841 +771775563 1 this.wrapped[..] [] @@ -56681,25 +57203,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1513 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1802988373 +1766505436 1 return.wrapped -1357780883 +1164440413 1 return.wrapped[..] -[918426392] +[1525919705] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56709,13 +57231,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1515 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56725,13 +57247,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1515 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56744,13 +57266,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1516 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56763,13 +57285,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1516 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56778,26 +57300,26 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1517 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1062067559 +1610525991 1 index 0 @@ -56807,19 +57329,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1517 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1062067559 +1610525991 1 index 0 @@ -56829,13 +57351,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1518 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56845,13 +57367,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1518 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56864,13 +57386,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1519 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56880,13 +57402,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1519 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56899,13 +57421,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1520 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56918,13 +57440,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1520 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -56933,26 +57455,26 @@ index 0 1 return -1062067559 +1610525991 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1521 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[1062067559] +[1610525991] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -285390249 +1666607455 1 index 0 @@ -56962,19 +57484,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1521 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -285390249 +1666607455 1 index 0 @@ -56984,13 +57506,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1522 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57000,13 +57522,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1522 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57019,13 +57541,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1523 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57035,13 +57557,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1523 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57054,13 +57576,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1524 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57073,13 +57595,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1524 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57088,20 +57610,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1525 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57114,13 +57636,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1525 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57129,20 +57651,20 @@ index 0 1 return -918426392 +1525919705 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1526 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57152,13 +57674,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1526 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57171,13 +57693,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1527 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57187,13 +57709,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1527 this -830574012 +1002021887 1 this.wrapped -813714184 +1712943792 1 this.wrapped[..] -[918426392] +[1525919705] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57206,13 +57728,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1528 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57222,13 +57744,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1528 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57241,13 +57763,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1529 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57260,13 +57782,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1529 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57275,20 +57797,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1530 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57301,13 +57823,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1530 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57316,20 +57838,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1531 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57339,13 +57861,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1531 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57358,13 +57880,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1532 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57374,13 +57896,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1532 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57393,10 +57915,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1533 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57409,10 +57931,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1533 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57428,10 +57950,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1534 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57444,10 +57966,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1534 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57463,10 +57985,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1535 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57479,10 +58001,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1535 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57498,10 +58020,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1536 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57514,10 +58036,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1536 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -57533,13 +58055,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1537 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57549,13 +58071,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1537 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57568,13 +58090,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1538 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57587,13 +58109,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1538 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57602,20 +58124,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1539 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57628,13 +58150,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1539 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57643,20 +58165,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1540 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57666,13 +58188,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1540 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57685,13 +58207,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1541 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57701,13 +58223,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1541 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57720,13 +58242,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1542 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57736,13 +58258,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1542 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57755,13 +58277,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1543 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57774,13 +58296,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1543 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57789,20 +58311,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1544 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57812,13 +58334,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1544 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57831,13 +58353,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1545 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57847,13 +58369,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1545 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57866,13 +58388,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1546 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57885,13 +58407,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1546 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57900,20 +58422,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1547 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57926,13 +58448,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1547 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57941,20 +58463,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1548 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57964,13 +58486,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1548 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57983,13 +58505,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1549 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -57999,13 +58521,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1549 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58018,10 +58540,10 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1550 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -58038,10 +58560,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1551 this -1222931192 +1327006586 1 this.wrapped -238558507 +899644639 1 this.wrapped[..] [] @@ -58054,10 +58576,10 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1550 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -58066,10 +58588,10 @@ this.wrapped[..].getClass().getName() [] 1 return -1222931192 +1327006586 1 return.wrapped -100858200 +530737374 1 return.wrapped[..] [] @@ -58082,13 +58604,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1552 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58098,13 +58620,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1552 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58117,13 +58639,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1553 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58136,13 +58658,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1553 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58151,17 +58673,17 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1554 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] [] @@ -58174,10 +58696,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1554 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] [] @@ -58193,10 +58715,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1555 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] [] @@ -58209,10 +58731,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1555 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] [] @@ -58228,10 +58750,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1556 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] [] @@ -58240,39 +58762,39 @@ this.wrapped[..].getClass().getName() [] 1 t -285390249 +1666607455 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1556 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1557 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58282,13 +58804,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1557 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58301,13 +58823,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1558 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58320,13 +58842,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1558 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58335,20 +58857,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1559 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58358,13 +58880,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1559 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58377,13 +58899,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1560 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58393,13 +58915,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1560 this -1802988373 +1766505436 1 this.wrapped -1357780883 +1164440413 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58412,10 +58934,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1561 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -58428,10 +58950,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1561 this -2027399355 +842741472 1 this.wrapped -377932536 +1156304131 1 this.wrapped[..] [] @@ -58447,13 +58969,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1562 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58463,13 +58985,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1562 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58482,13 +59004,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1563 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58501,13 +59023,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1563 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58516,20 +59038,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1564 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58542,13 +59064,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1564 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58557,20 +59079,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1565 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58580,13 +59102,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1565 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58599,13 +59121,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1566 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58615,13 +59137,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1566 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58634,13 +59156,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1567 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58650,13 +59172,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1567 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58669,13 +59191,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1568 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58685,13 +59207,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1568 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58704,13 +59226,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1569 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58723,13 +59245,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1569 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58738,20 +59260,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1570 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58764,13 +59286,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1570 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58779,20 +59301,20 @@ index 0 1 return -379919049 +2087885397 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1571 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58802,13 +59324,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1571 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58821,13 +59343,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1572 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58837,13 +59359,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1572 this -827021396 +1961173763 1 this.wrapped -1234439188 +1202683709 1 this.wrapped[..] -[379919049] +[2087885397] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58856,13 +59378,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1573 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58872,13 +59394,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1573 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58891,13 +59413,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1574 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58910,13 +59432,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1574 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58925,20 +59447,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1575 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58951,13 +59473,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1575 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58966,20 +59488,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1576 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -58989,13 +59511,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1576 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59008,13 +59530,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1577 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59024,13 +59546,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1577 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59043,13 +59565,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1578 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59059,13 +59581,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1578 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59078,13 +59600,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1579 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59097,13 +59619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1579 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59112,20 +59634,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1580 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59135,13 +59657,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1580 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59154,13 +59676,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1581 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59170,13 +59692,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1581 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59189,13 +59711,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1582 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59208,13 +59730,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1582 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59223,20 +59745,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1583 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59249,13 +59771,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1583 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59264,20 +59786,20 @@ index 0 1 return -285390249 +1666607455 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1584 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59287,13 +59809,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1584 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59306,13 +59828,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1585 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59322,13 +59844,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1585 this -1222931192 +1327006586 1 this.wrapped -100858200 +530737374 1 this.wrapped[..] -[285390249] +[1666607455] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59345,10 +59867,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1586 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] [] @@ -59361,10 +59883,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1587 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] [] @@ -59373,39 +59895,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1518294776 +173099767 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1587 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1588 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59415,13 +59937,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1588 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59434,13 +59956,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1589 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59453,13 +59975,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1589 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59468,20 +59990,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1590 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59494,13 +60016,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1590 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59509,20 +60031,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1591 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59532,13 +60054,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1591 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59551,13 +60073,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1592 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59567,13 +60089,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1592 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59590,10 +60112,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1593 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] [] @@ -59606,10 +60128,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1594 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] [] @@ -59618,39 +60140,39 @@ this.wrapped[..].getClass().getName() [] 1 t -872986037 +1337335626 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1594 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1595 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59660,13 +60182,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1595 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59679,13 +60201,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1596 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59698,13 +60220,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1596 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59713,20 +60235,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1597 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59739,13 +60261,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1597 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59754,20 +60276,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1598 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59777,13 +60299,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1598 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59796,13 +60318,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1599 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59812,13 +60334,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1599 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59831,13 +60353,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1600 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59847,13 +60369,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1600 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59866,13 +60388,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1601 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59885,13 +60407,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1601 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59900,20 +60422,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1602 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59926,13 +60448,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1602 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59941,20 +60463,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1603 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59964,13 +60486,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1603 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59983,13 +60505,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1604 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -59999,13 +60521,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1604 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60018,13 +60540,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1605 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60034,13 +60556,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1605 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60053,13 +60575,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1606 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60072,13 +60594,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1606 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60087,20 +60609,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1607 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60113,13 +60635,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1607 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60128,20 +60650,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1608 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60151,13 +60673,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1608 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60170,13 +60692,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1609 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60186,13 +60708,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1609 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60205,13 +60727,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1610 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60221,13 +60743,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1610 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60240,13 +60762,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1611 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60259,13 +60781,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1611 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60274,20 +60796,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1612 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60297,13 +60819,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1612 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60316,13 +60838,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1613 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60332,13 +60854,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1613 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60351,13 +60873,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1614 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60370,13 +60892,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1614 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60385,20 +60907,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1615 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60411,13 +60933,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1615 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60426,20 +60948,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1616 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60449,13 +60971,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1616 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60468,13 +60990,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1617 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60484,13 +61006,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1617 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60503,13 +61025,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1618 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60519,13 +61041,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1618 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60538,13 +61060,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1619 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60557,13 +61079,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1619 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60572,20 +61094,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1620 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60598,13 +61120,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1620 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60613,20 +61135,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1621 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60636,13 +61158,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1621 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60655,13 +61177,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1622 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60671,13 +61193,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1622 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60690,13 +61212,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1623 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60706,13 +61228,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1623 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60725,13 +61247,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1624 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60744,13 +61266,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1624 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60759,20 +61281,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1625 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60782,13 +61304,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1625 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60801,13 +61323,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1626 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60817,13 +61339,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1626 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60836,13 +61358,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1627 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60855,13 +61377,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1627 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60870,20 +61392,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1628 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60896,13 +61418,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1628 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60911,20 +61433,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1629 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60934,13 +61456,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1629 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60953,13 +61475,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1630 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60969,13 +61491,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1630 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -60992,10 +61514,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1631 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -61008,10 +61530,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1632 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -61024,10 +61546,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1632 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -61043,13 +61565,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1633 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61059,13 +61581,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1633 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61078,13 +61600,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1634 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61097,13 +61619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1634 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61112,20 +61634,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1635 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61135,13 +61657,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1635 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61154,13 +61676,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1636 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61173,13 +61695,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1636 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61188,20 +61710,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1637 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61214,13 +61736,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1637 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61229,20 +61751,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1638 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61252,13 +61774,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1638 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61271,13 +61793,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1639 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61287,13 +61809,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1639 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61306,13 +61828,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1640 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61326,10 +61848,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1641 this -1630262636 +2073707154 1 this.wrapped -80271179 +78204644 1 this.wrapped[..] [] @@ -61342,25 +61864,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1640 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1630262636 +2073707154 1 return.wrapped -497975137 +1287934450 1 return.wrapped[..] -[872986037] +[1337335626] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61370,13 +61892,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1642 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61386,13 +61908,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1642 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61405,13 +61927,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1643 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61424,13 +61946,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1643 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61439,26 +61961,26 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1644 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -724355200 +6519275 1 index 0 @@ -61468,19 +61990,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1644 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -724355200 +6519275 1 index 0 @@ -61490,13 +62012,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1645 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61506,13 +62028,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1645 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61525,13 +62047,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1646 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61541,13 +62063,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1646 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61560,13 +62082,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1647 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61579,13 +62101,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1647 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61594,26 +62116,26 @@ index 0 1 return -724355200 +6519275 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1648 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[724355200] +[6519275] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -153051557 +692331943 1 index 0 @@ -61623,19 +62145,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1648 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -153051557 +692331943 1 index 0 @@ -61645,13 +62167,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1649 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61661,13 +62183,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1649 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61680,13 +62202,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1650 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61696,13 +62218,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1650 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61715,13 +62237,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1651 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61734,13 +62256,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1651 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61749,20 +62271,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1652 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61775,13 +62297,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1652 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61790,20 +62312,20 @@ index 0 1 return -872986037 +1337335626 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1653 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61813,13 +62335,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1653 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61832,13 +62354,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1654 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61848,13 +62370,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1654 this -1579606578 +112797691 1 this.wrapped -1254912232 +1045997582 1 this.wrapped[..] -[872986037] +[1337335626] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61867,13 +62389,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1655 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61883,13 +62405,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1655 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61902,13 +62424,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1656 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61921,13 +62443,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1656 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61936,20 +62458,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1657 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61962,13 +62484,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1657 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -61977,20 +62499,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1658 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62000,13 +62522,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1658 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62019,13 +62541,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1659 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62035,13 +62557,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1659 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62054,10 +62576,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1660 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62070,10 +62592,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1660 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62089,10 +62611,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1661 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62105,10 +62627,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1661 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62124,10 +62646,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1662 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62140,10 +62662,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1662 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62159,10 +62681,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1663 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62175,10 +62697,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1663 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62194,13 +62716,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1664 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62210,13 +62732,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1664 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62229,13 +62751,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1665 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62248,13 +62770,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1665 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62263,20 +62785,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1666 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62289,13 +62811,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1666 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62304,20 +62826,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1667 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62327,13 +62849,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1667 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62346,13 +62868,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1668 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62362,13 +62884,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1668 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62381,13 +62903,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1669 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62397,13 +62919,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1669 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62416,13 +62938,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1670 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62435,13 +62957,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1670 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62450,20 +62972,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1671 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62473,13 +62995,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1671 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62492,13 +63014,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1672 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62508,13 +63030,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1672 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62527,13 +63049,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1673 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62546,13 +63068,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1673 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62561,20 +63083,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1674 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62587,13 +63109,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1674 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62602,20 +63124,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1675 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62625,13 +63147,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1675 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62644,13 +63166,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1676 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62660,13 +63182,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1676 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62679,10 +63201,10 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1677 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62699,10 +63221,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1678 this -1799593040 +1741979653 1 this.wrapped -600538932 +166794956 1 this.wrapped[..] [] @@ -62715,10 +63237,10 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1677 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -62727,10 +63249,10 @@ this.wrapped[..].getClass().getName() [] 1 return -1799593040 +1741979653 1 return.wrapped -84689224 +306612792 1 return.wrapped[..] [] @@ -62743,13 +63265,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1679 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62759,13 +63281,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1679 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62778,13 +63300,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1680 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62797,13 +63319,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1680 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62812,17 +63334,17 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1681 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] [] @@ -62835,10 +63357,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1681 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] [] @@ -62854,10 +63376,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1682 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] [] @@ -62870,10 +63392,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1682 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] [] @@ -62889,10 +63411,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1683 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] [] @@ -62901,39 +63423,39 @@ this.wrapped[..].getClass().getName() [] 1 t -153051557 +692331943 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1683 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1684 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62943,13 +63465,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1684 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62962,13 +63484,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1685 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62981,13 +63503,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1685 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -62996,20 +63518,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1686 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63019,13 +63541,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1686 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63038,13 +63560,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1687 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63054,13 +63576,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1687 this -1630262636 +2073707154 1 this.wrapped -497975137 +1287934450 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63073,10 +63595,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1688 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -63089,10 +63611,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1688 this -668047555 +1336996537 1 this.wrapped -830750369 +7967307 1 this.wrapped[..] [] @@ -63108,13 +63630,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1689 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63124,13 +63646,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1689 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63143,13 +63665,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1690 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63162,13 +63684,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1690 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63177,20 +63699,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1691 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63203,13 +63725,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1691 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63218,20 +63740,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1692 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63241,13 +63763,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1692 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63260,13 +63782,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1693 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63276,13 +63798,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1693 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63295,13 +63817,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1694 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63311,13 +63833,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1694 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63330,13 +63852,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1695 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63346,13 +63868,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1695 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63365,13 +63887,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1696 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63384,13 +63906,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1696 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63399,20 +63921,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1697 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63425,13 +63947,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1697 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63440,20 +63962,20 @@ index 0 1 return -1518294776 +173099767 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1698 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63463,13 +63985,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1698 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63482,13 +64004,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1699 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63498,13 +64020,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1699 this -759169917 +1332668132 1 this.wrapped -1168448192 +1147580192 1 this.wrapped[..] -[1518294776] +[173099767] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63517,13 +64039,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1700 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63533,13 +64055,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1700 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63552,13 +64074,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1701 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63571,13 +64093,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1701 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63586,20 +64108,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1702 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63612,13 +64134,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1702 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63627,20 +64149,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1703 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63650,13 +64172,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1703 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63669,13 +64191,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1704 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63685,13 +64207,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1704 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63704,13 +64226,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1705 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63720,13 +64242,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1705 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63739,13 +64261,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1706 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63758,13 +64280,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1706 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63773,20 +64295,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1707 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63796,13 +64318,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1707 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63815,13 +64337,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1708 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63831,13 +64353,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1708 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63850,13 +64372,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1709 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63869,13 +64391,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1709 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63884,20 +64406,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1710 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63910,13 +64432,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1710 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63925,20 +64447,20 @@ index 0 1 return -153051557 +692331943 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1711 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63948,13 +64470,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1711 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63967,13 +64489,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1712 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -63983,13 +64505,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1712 this -1799593040 +1741979653 1 this.wrapped -84689224 +306612792 1 this.wrapped[..] -[153051557] +[692331943] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64006,10 +64528,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1713 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] [] @@ -64022,10 +64544,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1714 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] [] @@ -64034,39 +64556,39 @@ this.wrapped[..].getClass().getName() [] 1 t -831006036 +1484171695 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1714 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1715 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64076,13 +64598,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1715 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64095,13 +64617,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1716 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64114,13 +64636,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1716 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64129,20 +64651,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1717 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64155,13 +64677,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1717 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64170,20 +64692,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1718 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64193,13 +64715,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1718 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64212,13 +64734,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1719 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64228,13 +64750,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1719 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64251,10 +64773,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1720 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] [] @@ -64267,10 +64789,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1721 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] [] @@ -64279,39 +64801,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1240810427 +106374177 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1721 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1722 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64321,13 +64843,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1722 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64340,13 +64862,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1723 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64359,13 +64881,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1723 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64374,20 +64896,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1724 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64400,13 +64922,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1724 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64415,20 +64937,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1725 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64438,13 +64960,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1725 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64457,13 +64979,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1726 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64473,13 +64995,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1726 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64492,13 +65014,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1727 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64508,13 +65030,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1727 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64527,13 +65049,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1728 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64546,13 +65068,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1728 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64561,20 +65083,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1729 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64587,13 +65109,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1729 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64602,20 +65124,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1730 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64625,13 +65147,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1730 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64644,13 +65166,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1731 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64660,13 +65182,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1731 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64679,13 +65201,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1732 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64695,13 +65217,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1732 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64714,13 +65236,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1733 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64733,13 +65255,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1733 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64748,20 +65270,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1734 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64774,13 +65296,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1734 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64789,20 +65311,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1735 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64812,13 +65334,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1735 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64831,13 +65353,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1736 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64847,13 +65369,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1736 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64866,13 +65388,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1737 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64882,13 +65404,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1737 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64901,13 +65423,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1738 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64920,13 +65442,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1738 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64935,20 +65457,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1739 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64958,13 +65480,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1739 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64977,13 +65499,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1740 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -64993,13 +65515,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1740 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65012,13 +65534,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1741 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65031,13 +65553,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1741 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65046,20 +65568,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1742 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65072,13 +65594,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1742 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65087,20 +65609,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1743 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65110,13 +65632,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1743 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65129,13 +65651,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1744 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65145,13 +65667,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1744 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65164,13 +65686,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1745 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65180,13 +65702,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1745 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65199,13 +65721,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1746 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65218,13 +65740,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1746 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65233,20 +65755,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1747 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65259,13 +65781,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1747 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65274,20 +65796,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1748 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65297,13 +65819,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1748 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65316,13 +65838,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1749 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65332,13 +65854,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1749 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65351,13 +65873,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1750 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65367,13 +65889,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1750 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65386,13 +65908,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1751 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65405,13 +65927,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1751 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65420,20 +65942,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1752 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65443,13 +65965,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1752 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65462,13 +65984,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1753 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65478,13 +66000,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1753 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65497,13 +66019,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1754 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65516,13 +66038,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1754 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65531,20 +66053,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1755 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65557,13 +66079,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1755 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65572,20 +66094,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1756 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65595,13 +66117,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1756 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65614,13 +66136,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1757 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65630,13 +66152,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1757 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65653,10 +66175,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1758 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -65669,10 +66191,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1759 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -65685,10 +66207,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1759 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -65704,13 +66226,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1760 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65720,13 +66242,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1760 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65739,13 +66261,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1761 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65758,13 +66280,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1761 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65773,20 +66295,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1762 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65796,13 +66318,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1762 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65815,13 +66337,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1763 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65834,13 +66356,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1763 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65849,20 +66371,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1764 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65875,13 +66397,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1764 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65890,20 +66412,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1765 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65913,13 +66435,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1765 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65932,13 +66454,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1766 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65948,13 +66470,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1766 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65967,13 +66489,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1767 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -65987,10 +66509,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1768 this -1022828757 +1836463382 1 this.wrapped -76324664 +1388278453 1 this.wrapped[..] [] @@ -66003,25 +66525,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1767 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1022828757 +1836463382 1 return.wrapped -740890589 +934275857 1 return.wrapped[..] -[1240810427] +[106374177] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66031,13 +66553,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1769 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66047,13 +66569,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1769 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66066,13 +66588,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1770 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66085,13 +66607,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1770 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66100,26 +66622,26 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1771 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1037944017 +1364913072 1 index 0 @@ -66129,19 +66651,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1771 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1037944017 +1364913072 1 index 0 @@ -66151,13 +66673,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1772 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66167,13 +66689,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1772 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66186,13 +66708,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1773 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66202,13 +66724,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1773 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66221,13 +66743,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1774 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66240,13 +66762,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1774 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66255,26 +66777,26 @@ index 0 1 return -1037944017 +1364913072 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1775 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[1037944017] +[1364913072] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -715429138 +232307208 1 index 0 @@ -66284,19 +66806,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1775 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -715429138 +232307208 1 index 0 @@ -66306,13 +66828,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1776 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66322,13 +66844,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1776 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66341,13 +66863,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1777 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66357,13 +66879,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1777 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66376,13 +66898,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1778 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66395,13 +66917,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1778 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66410,20 +66932,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1779 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66436,13 +66958,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1779 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66451,20 +66973,20 @@ index 0 1 return -1240810427 +106374177 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1780 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66474,13 +66996,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1780 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66493,13 +67015,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1781 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66509,13 +67031,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1781 this -1632290611 +2127036371 1 this.wrapped -1952192299 +1529060733 1 this.wrapped[..] -[1240810427] +[106374177] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66528,13 +67050,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1782 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66544,13 +67066,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1782 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66563,13 +67085,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1783 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66582,13 +67104,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1783 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66597,20 +67119,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1784 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66623,13 +67145,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1784 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66638,20 +67160,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1785 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66661,13 +67183,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1785 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66680,13 +67202,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1786 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66696,13 +67218,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1786 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66715,10 +67237,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1787 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66731,10 +67253,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1787 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66750,10 +67272,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1788 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66766,10 +67288,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1788 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66785,10 +67307,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1789 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66801,10 +67323,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1789 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66820,10 +67342,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1790 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66836,10 +67358,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1790 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -66855,13 +67377,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1791 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66871,13 +67393,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1791 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66890,13 +67412,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1792 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66909,13 +67431,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1792 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66924,20 +67446,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1793 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66950,13 +67472,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1793 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66965,20 +67487,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1794 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -66988,13 +67510,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1794 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67007,13 +67529,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1795 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67023,13 +67545,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1795 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67042,13 +67564,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1796 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67058,13 +67580,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1796 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67077,13 +67599,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1797 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67096,13 +67618,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1797 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67111,20 +67633,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1798 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67134,13 +67656,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1798 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67153,13 +67675,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1799 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67169,13 +67691,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1799 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67188,13 +67710,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1800 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67207,13 +67729,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1800 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67222,20 +67744,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1801 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67248,13 +67770,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1801 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67263,20 +67785,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1802 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67286,13 +67808,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1802 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67305,13 +67827,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1803 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67321,13 +67843,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1803 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67340,10 +67862,10 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1804 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -67360,10 +67882,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1805 this -456582813 +609962972 1 this.wrapped -828267360 +1818544933 1 this.wrapped[..] [] @@ -67376,10 +67898,10 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1804 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -67388,10 +67910,10 @@ this.wrapped[..].getClass().getName() [] 1 return -456582813 +609962972 1 return.wrapped -700519666 +1793436274 1 return.wrapped[..] [] @@ -67404,13 +67926,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1806 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67420,13 +67942,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1806 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67439,13 +67961,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1807 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67458,13 +67980,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1807 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67473,17 +67995,17 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1808 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] [] @@ -67496,10 +68018,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1808 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] [] @@ -67515,10 +68037,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1809 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] [] @@ -67531,10 +68053,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1809 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] [] @@ -67550,10 +68072,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1810 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] [] @@ -67562,39 +68084,39 @@ this.wrapped[..].getClass().getName() [] 1 t -715429138 +232307208 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1810 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1811 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67604,13 +68126,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1811 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67623,13 +68145,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1812 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67642,13 +68164,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1812 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67657,20 +68179,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1813 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67680,13 +68202,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1813 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67699,13 +68221,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1814 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67715,13 +68237,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1814 this -1022828757 +1836463382 1 this.wrapped -740890589 +934275857 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67734,10 +68256,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1815 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -67750,10 +68272,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1815 this -87150572 +1803669141 1 this.wrapped -155816350 +712609105 1 this.wrapped[..] [] @@ -67769,13 +68291,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1816 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67785,13 +68307,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1816 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67804,13 +68326,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1817 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67823,13 +68345,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1817 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67838,20 +68360,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1818 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67864,13 +68386,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1818 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67879,20 +68401,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1819 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67902,13 +68424,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1819 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67921,13 +68443,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1820 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67937,13 +68459,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1820 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67956,13 +68478,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1821 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67972,13 +68494,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1821 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -67991,13 +68513,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1822 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68007,13 +68529,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1822 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68026,13 +68548,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1823 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68045,13 +68567,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1823 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68060,20 +68582,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1824 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68086,13 +68608,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1824 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68101,20 +68623,20 @@ index 0 1 return -831006036 +1484171695 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1825 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68124,13 +68646,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1825 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68143,13 +68665,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1826 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68159,13 +68681,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1826 this -1737613454 +447212746 1 this.wrapped -439205825 +1496355635 1 this.wrapped[..] -[831006036] +[1484171695] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68178,13 +68700,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1827 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68194,13 +68716,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1827 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68213,13 +68735,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1828 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68232,13 +68754,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1828 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68247,20 +68769,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1829 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68273,13 +68795,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1829 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68288,20 +68810,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1830 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68311,13 +68833,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1830 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68330,13 +68852,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1831 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68346,13 +68868,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1831 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68365,13 +68887,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1832 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68381,13 +68903,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1832 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68400,13 +68922,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1833 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68419,13 +68941,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1833 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68434,20 +68956,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1834 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68457,13 +68979,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1834 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68476,13 +68998,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1835 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68492,13 +69014,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1835 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68511,13 +69033,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1836 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68530,13 +69052,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1836 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68545,20 +69067,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1837 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68571,13 +69093,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1837 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68586,20 +69108,20 @@ index 0 1 return -715429138 +232307208 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1838 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68609,13 +69131,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1838 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68628,13 +69150,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1839 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68644,13 +69166,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1839 this -456582813 +609962972 1 this.wrapped -700519666 +1793436274 1 this.wrapped[..] -[715429138] +[232307208] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68667,10 +69189,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1840 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] [] @@ -68683,10 +69205,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1841 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] [] @@ -68695,39 +69217,39 @@ this.wrapped[..].getClass().getName() [] 1 t -2001212229 +371800738 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1841 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1842 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68737,13 +69259,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1842 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68756,13 +69278,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1843 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68775,13 +69297,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1843 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68790,20 +69312,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1844 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68816,13 +69338,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1844 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68831,20 +69353,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1845 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68854,13 +69376,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1845 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68873,13 +69395,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1846 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68889,13 +69411,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1846 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68912,10 +69434,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1847 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] [] @@ -68928,10 +69450,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1848 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] [] @@ -68940,39 +69462,39 @@ this.wrapped[..].getClass().getName() [] 1 t -159312400 +1926343982 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1848 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1849 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -68982,13 +69504,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1849 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69001,13 +69523,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1850 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69020,13 +69542,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1850 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69035,20 +69557,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1851 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69061,13 +69583,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1851 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69076,20 +69598,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1852 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69099,13 +69621,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1852 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69118,13 +69640,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1853 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69134,13 +69656,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1853 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69153,13 +69675,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1854 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69169,13 +69691,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1854 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69188,13 +69710,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1855 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69207,13 +69729,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1855 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69222,20 +69744,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1856 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69248,13 +69770,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1856 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69263,20 +69785,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1857 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69286,13 +69808,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1857 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69305,13 +69827,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1858 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69321,13 +69843,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1858 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69340,13 +69862,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1859 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69356,13 +69878,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1859 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69375,13 +69897,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1860 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69394,13 +69916,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1860 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69409,20 +69931,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1861 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69435,13 +69957,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1861 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69450,20 +69972,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1862 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69473,13 +69995,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1862 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69492,13 +70014,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1863 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69508,13 +70030,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1863 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69527,13 +70049,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1864 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69543,13 +70065,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1864 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69562,13 +70084,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1865 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69581,13 +70103,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1865 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69596,20 +70118,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1866 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69619,13 +70141,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1866 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69638,13 +70160,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1867 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69654,13 +70176,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1867 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69673,13 +70195,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1868 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69692,13 +70214,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1868 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69707,20 +70229,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1869 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69733,13 +70255,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1869 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69748,20 +70270,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1870 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69771,13 +70293,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1870 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69790,13 +70312,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1871 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69806,13 +70328,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1871 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69825,13 +70347,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1872 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69841,13 +70363,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1872 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69860,13 +70382,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1873 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69879,13 +70401,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1873 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69894,20 +70416,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1874 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69920,13 +70442,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1874 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69935,20 +70457,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1875 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69958,13 +70480,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1875 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69977,13 +70499,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1876 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -69993,13 +70515,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1876 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70012,13 +70534,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1877 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70028,13 +70550,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1877 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70047,13 +70569,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1878 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70066,13 +70588,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1878 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70081,20 +70603,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1879 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70104,13 +70626,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1879 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70123,13 +70645,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1880 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70139,13 +70661,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1880 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70158,13 +70680,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1881 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70177,13 +70699,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1881 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70192,20 +70714,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1882 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70218,13 +70740,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1882 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70233,20 +70755,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1883 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70256,13 +70778,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1883 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70275,13 +70797,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1884 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70291,13 +70813,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1884 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70314,10 +70836,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1885 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -70330,10 +70852,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1886 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -70346,10 +70868,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1886 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -70365,13 +70887,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1887 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70381,13 +70903,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1887 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70400,13 +70922,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1888 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70419,13 +70941,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1888 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70434,20 +70956,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1889 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70457,13 +70979,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1889 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70476,13 +70998,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1890 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70495,13 +71017,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1890 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70510,20 +71032,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1891 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70536,13 +71058,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1891 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70551,20 +71073,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1892 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70574,13 +71096,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1892 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70593,13 +71115,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1893 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70609,13 +71131,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1893 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70628,13 +71150,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1894 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70648,10 +71170,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1895 this -712243041 +952562199 1 this.wrapped -594941709 +1199673596 1 this.wrapped[..] [] @@ -70664,25 +71186,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1894 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -712243041 +952562199 1 return.wrapped -501442731 +2044903525 1 return.wrapped[..] -[159312400] +[1926343982] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70692,13 +71214,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1896 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70708,13 +71230,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1896 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70727,13 +71249,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1897 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70746,13 +71268,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1897 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70761,26 +71283,26 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1898 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1022149089 +982757413 1 index 0 @@ -70790,19 +71312,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1898 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1022149089 +982757413 1 index 0 @@ -70812,13 +71334,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1899 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70828,13 +71350,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1899 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70847,13 +71369,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1900 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70863,13 +71385,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1900 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70882,13 +71404,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1901 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70901,13 +71423,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1901 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70916,26 +71438,26 @@ index 0 1 return -1022149089 +982757413 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 1902 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1022149089] +[982757413] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1538046470 +902478634 1 index 0 @@ -70945,19 +71467,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 1902 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1538046470 +902478634 1 index 0 @@ -70967,13 +71489,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1903 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -70983,13 +71505,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1903 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71002,13 +71524,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1904 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71018,13 +71540,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1904 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71037,13 +71559,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1905 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71056,13 +71578,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1905 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71071,20 +71593,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1906 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71097,13 +71619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1906 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71112,20 +71634,20 @@ index 0 1 return -159312400 +1926343982 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1907 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71135,13 +71657,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1907 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71154,13 +71676,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1908 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71170,13 +71692,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1908 this -485053489 +1364767791 1 this.wrapped -446065611 +1499136125 1 this.wrapped[..] -[159312400] +[1926343982] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71189,13 +71711,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1909 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71205,13 +71727,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1909 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71224,13 +71746,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1910 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71243,13 +71765,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1910 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71258,20 +71780,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1911 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71284,13 +71806,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1911 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71299,20 +71821,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1912 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71322,13 +71844,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1912 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71341,13 +71863,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1913 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71357,13 +71879,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1913 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71376,10 +71898,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1914 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71392,10 +71914,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1914 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71411,10 +71933,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1915 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71427,10 +71949,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1915 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71446,10 +71968,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1916 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71462,10 +71984,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1916 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71481,10 +72003,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1917 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71497,10 +72019,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1917 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -71516,13 +72038,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1918 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71532,13 +72054,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1918 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71551,13 +72073,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1919 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71570,13 +72092,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1919 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71585,20 +72107,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1920 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71611,13 +72133,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1920 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71626,20 +72148,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1921 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71649,13 +72171,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1921 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71668,13 +72190,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1922 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71684,13 +72206,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1922 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71703,13 +72225,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1923 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71719,13 +72241,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1923 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71738,13 +72260,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1924 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71757,13 +72279,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1924 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71772,20 +72294,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1925 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71795,13 +72317,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1925 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71814,13 +72336,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1926 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71830,13 +72352,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1926 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71849,13 +72371,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1927 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71868,13 +72390,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1927 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71883,20 +72405,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1928 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71909,13 +72431,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1928 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71924,20 +72446,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1929 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71947,13 +72469,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1929 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71966,13 +72488,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1930 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -71982,13 +72504,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1930 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72001,10 +72523,10 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 1931 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -72021,10 +72543,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1932 this -686362351 +2114444063 1 this.wrapped -1557365220 +294247762 1 this.wrapped[..] [] @@ -72037,10 +72559,10 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 1931 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -72049,10 +72571,10 @@ this.wrapped[..].getClass().getName() [] 1 return -686362351 +2114444063 1 return.wrapped -1106562904 +918312414 1 return.wrapped[..] [] @@ -72065,13 +72587,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1933 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72081,13 +72603,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1933 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72100,13 +72622,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1934 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72119,13 +72641,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1934 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72134,17 +72656,17 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1935 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] [] @@ -72157,10 +72679,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1935 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] [] @@ -72176,10 +72698,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1936 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] [] @@ -72192,10 +72714,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1936 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] [] @@ -72211,10 +72733,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1937 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] [] @@ -72223,39 +72745,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1538046470 +902478634 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1937 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1938 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72265,13 +72787,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1938 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72284,13 +72806,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1939 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72303,13 +72825,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1939 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72318,20 +72840,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1940 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72341,13 +72863,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1940 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72360,13 +72882,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1941 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72376,13 +72898,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1941 this -712243041 +952562199 1 this.wrapped -501442731 +2044903525 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72395,10 +72917,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1942 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -72411,10 +72933,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1942 this -1798882638 +762476028 1 this.wrapped -1545714400 +966739377 1 this.wrapped[..] [] @@ -72430,13 +72952,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1943 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72446,13 +72968,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1943 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72465,13 +72987,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1944 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72484,13 +73006,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1944 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72499,20 +73021,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1945 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72525,13 +73047,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1945 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72540,20 +73062,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1946 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72563,13 +73085,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1946 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72582,13 +73104,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1947 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72598,13 +73120,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1947 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72617,13 +73139,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1948 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72633,13 +73155,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1948 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72652,13 +73174,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1949 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72668,13 +73190,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1949 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72687,13 +73209,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1950 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72706,13 +73228,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1950 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72721,20 +73243,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1951 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72747,13 +73269,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1951 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72762,20 +73284,20 @@ index 0 1 return -2001212229 +371800738 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1952 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72785,13 +73307,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1952 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72804,13 +73326,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1953 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72820,13 +73342,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1953 this -1128673608 +572868060 1 this.wrapped -894275705 +1549725679 1 this.wrapped[..] -[2001212229] +[371800738] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72839,13 +73361,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1954 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72855,13 +73377,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1954 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72874,13 +73396,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1955 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72893,13 +73415,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1955 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72908,20 +73430,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1956 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72934,13 +73456,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1956 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72949,20 +73471,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1957 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72972,13 +73494,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1957 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -72991,13 +73513,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1958 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73007,13 +73529,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1958 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73026,13 +73548,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1959 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73042,13 +73564,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1959 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73061,13 +73583,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1960 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73080,13 +73602,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1960 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73095,20 +73617,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1961 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73118,13 +73640,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1961 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73137,13 +73659,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1962 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73153,13 +73675,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1962 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73172,13 +73694,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1963 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73191,13 +73713,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1963 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73206,20 +73728,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1964 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73232,13 +73754,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1964 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73247,20 +73769,20 @@ index 0 1 return -1538046470 +902478634 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1965 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73270,13 +73792,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1965 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73289,13 +73811,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1966 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73305,13 +73827,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1966 this -686362351 +2114444063 1 this.wrapped -1106562904 +918312414 1 this.wrapped[..] -[1538046470] +[902478634] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73328,10 +73850,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1967 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] [] @@ -73344,10 +73866,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1968 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] [] @@ -73356,39 +73878,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1301357099 +1240232440 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1968 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1969 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73398,13 +73920,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1969 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73417,13 +73939,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1970 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73436,13 +73958,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1970 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73451,20 +73973,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1971 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73477,13 +73999,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1971 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73492,20 +74014,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1972 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73515,13 +74037,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1972 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73534,13 +74056,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1973 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73550,13 +74072,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1973 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73573,10 +74095,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 1974 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] [] @@ -73589,10 +74111,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 1975 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] [] @@ -73601,39 +74123,39 @@ this.wrapped[..].getClass().getName() [] 1 t -173277777 +574434418 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 1975 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1976 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73643,13 +74165,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1976 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73662,13 +74184,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1977 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73681,13 +74203,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1977 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73696,20 +74218,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1978 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73722,13 +74244,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1978 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73737,20 +74259,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1979 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73760,13 +74282,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1979 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73779,13 +74301,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1980 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73795,13 +74317,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1980 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73814,13 +74336,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1981 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73830,13 +74352,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1981 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73849,13 +74371,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1982 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73868,13 +74390,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1982 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73883,20 +74405,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1983 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73909,13 +74431,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1983 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73924,20 +74446,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1984 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73947,13 +74469,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1984 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73966,13 +74488,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1985 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -73982,13 +74504,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1985 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74001,13 +74523,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1986 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74017,13 +74539,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1986 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74036,13 +74558,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1987 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74055,13 +74577,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1987 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74070,20 +74592,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1988 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74096,13 +74618,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1988 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74111,20 +74633,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1989 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74134,13 +74656,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1989 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74153,13 +74675,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1990 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74169,13 +74691,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1990 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74188,13 +74710,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1991 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74204,13 +74726,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1991 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74223,13 +74745,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1992 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74242,13 +74764,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1992 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74257,20 +74779,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1993 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74280,13 +74802,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1993 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74299,13 +74821,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1994 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74315,13 +74837,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1994 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74334,13 +74856,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1995 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74353,13 +74875,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1995 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74368,20 +74890,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 1996 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74394,13 +74916,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 1996 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74409,20 +74931,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1997 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74432,13 +74954,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1997 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74451,13 +74973,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1998 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74467,13 +74989,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1998 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74486,13 +75008,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 1999 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74502,13 +75024,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 1999 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74521,13 +75043,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2000 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74540,13 +75062,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2000 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74555,20 +75077,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2001 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74581,13 +75103,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2001 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74596,20 +75118,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2002 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74619,13 +75141,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2002 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74638,13 +75160,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2003 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74654,13 +75176,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2003 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74673,13 +75195,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2004 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74689,13 +75211,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2004 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74708,13 +75230,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2005 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74727,13 +75249,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2005 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74742,20 +75264,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2006 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74765,13 +75287,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2006 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74784,13 +75306,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2007 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74800,13 +75322,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2007 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74819,13 +75341,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2008 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74838,13 +75360,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2008 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74853,20 +75375,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2009 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74879,13 +75401,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2009 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74894,20 +75416,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2010 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74917,13 +75439,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2010 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74936,13 +75458,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2011 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74952,13 +75474,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2011 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -74975,10 +75497,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2012 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -74991,10 +75513,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2013 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -75007,10 +75529,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2013 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -75026,13 +75548,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2014 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75042,13 +75564,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2014 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75061,13 +75583,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2015 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75080,13 +75602,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2015 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75095,20 +75617,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2016 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75118,13 +75640,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2016 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75137,13 +75659,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2017 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75156,13 +75678,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2017 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75171,20 +75693,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2018 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75197,13 +75719,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2018 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75212,20 +75734,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2019 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75235,13 +75757,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2019 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75254,13 +75776,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2020 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75270,13 +75792,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2020 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75289,13 +75811,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2021 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75309,10 +75831,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2022 this -1115240051 +1962826816 1 this.wrapped -602266141 +1072410641 1 this.wrapped[..] [] @@ -75325,25 +75847,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2021 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1115240051 +1962826816 1 return.wrapped -1196603476 +283318938 1 return.wrapped[..] -[173277777] +[574434418] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75353,13 +75875,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2023 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75369,13 +75891,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2023 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75388,13 +75910,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2024 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75407,13 +75929,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2024 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75422,26 +75944,26 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2025 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -130266977 +320304382 1 index 0 @@ -75451,19 +75973,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2025 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -130266977 +320304382 1 index 0 @@ -75473,13 +75995,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2026 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75489,13 +76011,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2026 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75508,13 +76030,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2027 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75524,13 +76046,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2027 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75543,13 +76065,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2028 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75562,13 +76084,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2028 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75577,26 +76099,26 @@ index 0 1 return -130266977 +320304382 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2029 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[130266977] +[320304382] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1111246146 +361571968 1 index 0 @@ -75606,19 +76128,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2029 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1111246146 +361571968 1 index 0 @@ -75628,13 +76150,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2030 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75644,13 +76166,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2030 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75663,13 +76185,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2031 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75679,13 +76201,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2031 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75698,13 +76220,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2032 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75717,13 +76239,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2032 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75732,20 +76254,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2033 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75758,13 +76280,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2033 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75773,20 +76295,20 @@ index 0 1 return -173277777 +574434418 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2034 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75796,13 +76318,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2034 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75815,13 +76337,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2035 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75831,13 +76353,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2035 this -1935301845 +489349054 1 this.wrapped -830791453 +915416632 1 this.wrapped[..] -[173277777] +[574434418] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75850,13 +76372,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2036 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75866,13 +76388,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2036 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75885,13 +76407,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2037 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75904,13 +76426,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2037 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75919,20 +76441,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2038 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75945,13 +76467,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2038 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75960,20 +76482,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2039 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -75983,13 +76505,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2039 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76002,13 +76524,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2040 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76018,13 +76540,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2040 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76037,10 +76559,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2041 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76053,10 +76575,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2041 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76072,10 +76594,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2042 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76088,10 +76610,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2042 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76107,10 +76629,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2043 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76123,10 +76645,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2043 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76142,10 +76664,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2044 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76158,10 +76680,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2044 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76177,13 +76699,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2045 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76193,13 +76715,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2045 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76212,13 +76734,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2046 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76231,13 +76753,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2046 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76246,20 +76768,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2047 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76272,13 +76794,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2047 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76287,20 +76809,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2048 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76310,13 +76832,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2048 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76329,13 +76851,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2049 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76345,13 +76867,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2049 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76364,13 +76886,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2050 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76380,13 +76902,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2050 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76399,13 +76921,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2051 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76418,13 +76940,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2051 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76433,20 +76955,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2052 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76456,13 +76978,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2052 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76475,13 +76997,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2053 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76491,13 +77013,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2053 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76510,13 +77032,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2054 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76529,13 +77051,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2054 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76544,20 +77066,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2055 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76570,13 +77092,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2055 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76585,20 +77107,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2056 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76608,13 +77130,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2056 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76627,13 +77149,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2057 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76643,13 +77165,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2057 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76662,10 +77184,10 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2058 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76682,10 +77204,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2059 this -48697863 +2005169944 1 this.wrapped -273713934 +2134607032 1 this.wrapped[..] [] @@ -76698,10 +77220,10 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2058 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -76710,10 +77232,10 @@ this.wrapped[..].getClass().getName() [] 1 return -48697863 +2005169944 1 return.wrapped -400116864 +1470344997 1 return.wrapped[..] [] @@ -76726,13 +77248,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2060 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76742,13 +77264,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2060 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76761,13 +77283,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2061 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76780,13 +77302,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2061 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76795,17 +77317,17 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2062 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] [] @@ -76818,10 +77340,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2062 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] [] @@ -76837,10 +77359,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2063 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] [] @@ -76853,10 +77375,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2063 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] [] @@ -76872,10 +77394,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2064 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] [] @@ -76884,39 +77406,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1111246146 +361571968 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2064 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2065 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76926,13 +77448,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2065 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76945,13 +77467,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2066 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76964,13 +77486,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2066 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -76979,20 +77501,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2067 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77002,13 +77524,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2067 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77021,13 +77543,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2068 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77037,13 +77559,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2068 this -1115240051 +1962826816 1 this.wrapped -1196603476 +283318938 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77056,10 +77578,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2069 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -77072,10 +77594,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2069 this -291772707 +150268540 1 this.wrapped -1118720448 +1130894323 1 this.wrapped[..] [] @@ -77091,13 +77613,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2070 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77107,13 +77629,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2070 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77126,13 +77648,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2071 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77145,13 +77667,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2071 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77160,20 +77682,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2072 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77186,13 +77708,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2072 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77201,20 +77723,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2073 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77224,13 +77746,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2073 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77243,13 +77765,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2074 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77259,13 +77781,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2074 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77278,13 +77800,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2075 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77294,13 +77816,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2075 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77313,13 +77835,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2076 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77329,13 +77851,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2076 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77348,13 +77870,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2077 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77367,13 +77889,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2077 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77382,20 +77904,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2078 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77408,13 +77930,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2078 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77423,20 +77945,20 @@ index 0 1 return -1301357099 +1240232440 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2079 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77446,13 +77968,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2079 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77465,13 +77987,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2080 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77481,13 +78003,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2080 this -794344508 +1448061896 1 this.wrapped -1789796204 +382750013 1 this.wrapped[..] -[1301357099] +[1240232440] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77500,13 +78022,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2081 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77516,13 +78038,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2081 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77535,13 +78057,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2082 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77554,13 +78076,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2082 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77569,20 +78091,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2083 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77595,13 +78117,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2083 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77610,20 +78132,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2084 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77633,13 +78155,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2084 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77652,13 +78174,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2085 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77668,13 +78190,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2085 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77687,13 +78209,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2086 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77703,13 +78225,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2086 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77722,13 +78244,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2087 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77741,13 +78263,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2087 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77756,20 +78278,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2088 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77779,13 +78301,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2088 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77798,13 +78320,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2089 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77814,13 +78336,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2089 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77833,13 +78355,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2090 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77852,13 +78374,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2090 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77867,20 +78389,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2091 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77893,13 +78415,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2091 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77908,20 +78430,20 @@ index 0 1 return -1111246146 +361571968 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2092 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77931,13 +78453,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2092 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77950,13 +78472,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2093 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77966,13 +78488,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2093 this -48697863 +2005169944 1 this.wrapped -400116864 +1470344997 1 this.wrapped[..] -[1111246146] +[361571968] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -77989,10 +78511,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2094 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] [] @@ -78005,10 +78527,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2095 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] [] @@ -78017,39 +78539,39 @@ this.wrapped[..].getClass().getName() [] 1 t -2015169215 +1546908073 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2095 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2096 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78059,13 +78581,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2096 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78078,13 +78600,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2097 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78097,13 +78619,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2097 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78112,20 +78634,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2098 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78138,13 +78660,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2098 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78153,20 +78675,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2099 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78176,13 +78698,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2099 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78195,13 +78717,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2100 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78211,13 +78733,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2100 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78234,10 +78756,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2101 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] [] @@ -78250,10 +78772,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2102 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] [] @@ -78262,39 +78784,39 @@ this.wrapped[..].getClass().getName() [] 1 t -2099352494 +112049309 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2102 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2103 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78304,13 +78826,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2103 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78323,13 +78845,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2104 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78342,13 +78864,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2104 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78357,20 +78879,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2105 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78383,13 +78905,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2105 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78398,20 +78920,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2106 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78421,13 +78943,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2106 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78440,13 +78962,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2107 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78456,13 +78978,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2107 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78475,13 +78997,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2108 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78491,13 +79013,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2108 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78510,13 +79032,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2109 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78529,13 +79051,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2109 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78544,20 +79066,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2110 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78570,13 +79092,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2110 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78585,20 +79107,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2111 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78608,13 +79130,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2111 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78627,13 +79149,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2112 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78643,13 +79165,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2112 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78662,13 +79184,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2113 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78678,13 +79200,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2113 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78697,13 +79219,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2114 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78716,13 +79238,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2114 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78731,20 +79253,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2115 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78757,13 +79279,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2115 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78772,20 +79294,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2116 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78795,13 +79317,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2116 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78814,13 +79336,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2117 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78830,13 +79352,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2117 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78849,13 +79371,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2118 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78865,13 +79387,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2118 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78884,13 +79406,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2119 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78903,13 +79425,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2119 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78918,20 +79440,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2120 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78941,13 +79463,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2120 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78960,13 +79482,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2121 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78976,13 +79498,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2121 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -78995,13 +79517,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2122 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79014,13 +79536,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2122 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79029,20 +79551,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2123 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79055,13 +79577,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2123 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79070,20 +79592,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2124 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79093,13 +79615,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2124 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79112,13 +79634,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2125 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79128,13 +79650,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2125 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79147,13 +79669,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2126 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79163,13 +79685,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2126 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79182,13 +79704,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2127 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79201,13 +79723,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2127 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79216,20 +79738,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2128 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79242,13 +79764,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2128 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79257,20 +79779,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2129 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79280,13 +79802,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2129 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79299,13 +79821,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2130 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79315,13 +79837,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2130 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79334,13 +79856,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2131 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79350,13 +79872,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2131 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79369,13 +79891,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2132 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79388,13 +79910,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2132 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79403,20 +79925,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2133 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79426,13 +79948,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2133 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79445,13 +79967,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2134 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79461,13 +79983,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2134 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79480,13 +80002,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2135 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79499,13 +80021,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2135 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79514,20 +80036,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2136 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79540,13 +80062,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2136 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79555,20 +80077,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2137 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79578,13 +80100,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2137 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79597,13 +80119,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2138 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79613,13 +80135,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2138 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79632,13 +80154,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2139 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79648,13 +80170,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2139 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79667,13 +80189,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2140 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79686,13 +80208,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2140 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79701,20 +80223,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2141 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79727,13 +80249,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2141 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79742,20 +80264,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2142 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79765,13 +80287,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2142 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79784,13 +80306,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2143 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79800,13 +80322,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2143 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79819,13 +80341,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2144 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79835,13 +80357,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2144 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79854,13 +80376,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2145 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79873,13 +80395,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2145 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79888,20 +80410,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2146 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79914,13 +80436,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2146 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79929,20 +80451,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2147 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79952,13 +80474,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2147 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79971,13 +80493,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2148 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -79987,13 +80509,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2148 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80006,13 +80528,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2149 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80026,10 +80548,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2150 this -661046448 +1162918744 1 this.wrapped -1274745605 +1321530272 1 this.wrapped[..] [] @@ -80042,25 +80564,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2149 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -661046448 +1162918744 1 return.wrapped -1352520763 +573673894 1 return.wrapped[..] -[2099352494] +[112049309] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80070,13 +80592,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2151 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80086,13 +80608,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2151 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80105,13 +80627,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2152 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80124,13 +80646,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2152 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80139,26 +80661,26 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2153 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -702060246 +1226020905 1 index 0 @@ -80168,19 +80690,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2153 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -702060246 +1226020905 1 index 0 @@ -80190,13 +80712,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2154 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80206,13 +80728,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2154 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80225,13 +80747,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2155 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80241,13 +80763,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2155 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80260,13 +80782,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2156 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80279,13 +80801,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2156 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80294,20 +80816,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2157 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80320,13 +80842,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2157 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80335,20 +80857,20 @@ index 0 1 return -2099352494 +112049309 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2158 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80358,13 +80880,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2158 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80377,13 +80899,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2159 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80393,13 +80915,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2159 this -984399668 +371439501 1 this.wrapped -591203588 +210506412 1 this.wrapped[..] -[2099352494] +[112049309] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80412,13 +80934,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2160 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80428,13 +80950,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2160 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80447,13 +80969,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2161 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80466,13 +80988,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2161 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80481,20 +81003,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2162 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80507,13 +81029,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2162 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80522,20 +81044,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2163 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80545,13 +81067,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2163 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80564,13 +81086,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2164 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80580,13 +81102,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2164 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80599,13 +81121,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2165 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80615,13 +81137,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2165 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80634,13 +81156,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2166 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80653,13 +81175,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2166 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80668,20 +81190,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2167 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80694,13 +81216,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2167 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80709,20 +81231,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2168 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80732,13 +81254,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2168 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80751,13 +81273,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2169 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80767,13 +81289,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2169 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80786,13 +81308,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2170 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80802,13 +81324,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2170 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80821,13 +81343,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2171 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80840,13 +81362,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2171 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80855,20 +81377,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2172 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80881,13 +81403,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2172 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80896,20 +81418,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2173 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80919,13 +81441,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2173 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80938,13 +81460,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2174 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80954,13 +81476,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2174 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80973,13 +81495,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2175 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -80989,13 +81511,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2175 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81008,13 +81530,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2176 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81027,13 +81549,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2176 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81042,20 +81564,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2177 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81065,13 +81587,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2177 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81084,13 +81606,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2178 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81100,13 +81622,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2178 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81119,13 +81641,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2179 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81138,13 +81660,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2179 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81153,20 +81675,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2180 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81179,13 +81701,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2180 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81194,20 +81716,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2181 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81217,13 +81739,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2181 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81236,13 +81758,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2182 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81252,13 +81774,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2182 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81271,13 +81793,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2183 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81287,13 +81809,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2183 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81306,13 +81828,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2184 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81325,13 +81847,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2184 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81340,20 +81862,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2185 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81366,13 +81888,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2185 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81381,20 +81903,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2186 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81404,13 +81926,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2186 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81423,13 +81945,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2187 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81439,13 +81961,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2187 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81458,13 +81980,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2188 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81474,13 +81996,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2188 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81493,13 +82015,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2189 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81512,13 +82034,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2189 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81527,20 +82049,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2190 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81550,13 +82072,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2190 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81569,13 +82091,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2191 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81585,13 +82107,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2191 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81604,13 +82126,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2192 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81623,13 +82145,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2192 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81638,20 +82160,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2193 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81664,13 +82186,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2193 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81679,20 +82201,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2194 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81702,13 +82224,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2194 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81721,13 +82243,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2195 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81737,13 +82259,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2195 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81756,13 +82278,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2196 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81776,10 +82298,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2197 this -1251397904 +156856360 1 this.wrapped -1937217457 +1617550160 1 this.wrapped[..] [] @@ -81792,25 +82314,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2196 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -1251397904 +156856360 1 return.wrapped -814227632 +1325124186 1 return.wrapped[..] -[2015169215] +[1546908073] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81820,13 +82342,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2198 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81836,13 +82358,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2198 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81855,13 +82377,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2199 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81874,13 +82396,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2199 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81889,20 +82411,20 @@ index 0 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2200 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81912,13 +82434,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2200 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81931,13 +82453,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2201 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81950,13 +82472,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2201 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81965,20 +82487,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2202 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -81988,13 +82510,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2202 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82007,13 +82529,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2203 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82023,13 +82545,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2203 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82042,13 +82564,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2204 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82061,13 +82583,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2204 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82076,20 +82598,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2205 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82099,13 +82621,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2205 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82118,51 +82640,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2206 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -702060246 +1226020905 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2206 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2207 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82172,13 +82694,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2207 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82191,13 +82713,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2208 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82210,13 +82732,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2208 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82225,20 +82747,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2209 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82248,13 +82770,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2209 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82267,13 +82789,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2210 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82286,13 +82808,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2210 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82301,20 +82823,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2211 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82324,13 +82846,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2211 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82343,13 +82865,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2212 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82359,13 +82881,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2212 this -661046448 +1162918744 1 this.wrapped -1352520763 +573673894 1 this.wrapped[..] -[702060246] +[1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82378,13 +82900,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2213 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82394,13 +82916,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2213 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82413,13 +82935,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2214 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82432,13 +82954,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2214 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82447,20 +82969,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2215 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82473,13 +82995,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2215 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82488,20 +83010,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2216 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82511,13 +83033,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2216 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82530,13 +83052,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2217 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82546,13 +83068,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2217 this -992834491 +728115831 1 this.wrapped -621353047 +2131670196 1 this.wrapped[..] -[2015169215] +[1546908073] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -82565,13 +83087,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2218 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82581,13 +83103,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2218 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82600,13 +83122,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2219 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82619,13 +83141,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2219 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82634,20 +83156,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2220 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82660,13 +83182,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2220 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82675,20 +83197,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2221 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82698,13 +83220,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2221 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82717,13 +83239,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2222 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82736,13 +83258,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2222 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82751,20 +83273,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2223 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82777,13 +83299,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2223 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82792,20 +83314,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2224 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82815,13 +83337,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2224 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82834,13 +83356,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2225 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82853,13 +83375,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2225 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82868,20 +83390,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2226 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82894,13 +83416,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2226 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82909,20 +83431,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2227 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82932,13 +83454,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2227 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82951,13 +83473,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2228 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82967,13 +83489,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2228 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -82990,10 +83512,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2229 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] [] @@ -83006,10 +83528,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2230 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] [] @@ -83018,39 +83540,39 @@ this.wrapped[..].getClass().getName() [] 1 t -466989532 +2012993836 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2230 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2231 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83060,13 +83582,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2231 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83079,13 +83601,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2232 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83098,13 +83620,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2232 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83113,20 +83635,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2233 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83139,13 +83661,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2233 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83154,20 +83676,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2234 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83177,13 +83699,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2234 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83196,13 +83718,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2235 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83212,13 +83734,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2235 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83235,10 +83757,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2236 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] [] @@ -83251,10 +83773,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2237 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] [] @@ -83263,39 +83785,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1693436411 +1922464006 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2237 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2238 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83305,13 +83827,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2238 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83324,13 +83846,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2239 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83343,13 +83865,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2239 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83358,20 +83880,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2240 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83384,13 +83906,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2240 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83399,20 +83921,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2241 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83422,13 +83944,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2241 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83441,13 +83963,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2242 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83457,13 +83979,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2242 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83476,13 +83998,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2243 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83492,13 +84014,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2243 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83511,13 +84033,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2244 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83530,13 +84052,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2244 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83545,20 +84067,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2245 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83571,13 +84093,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2245 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83586,20 +84108,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2246 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83609,13 +84131,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2246 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83628,13 +84150,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2247 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83644,13 +84166,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2247 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83663,13 +84185,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2248 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83679,13 +84201,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2248 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83698,13 +84220,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2249 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83717,13 +84239,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2249 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83732,20 +84254,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2250 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83758,13 +84280,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2250 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83773,20 +84295,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2251 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83796,13 +84318,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2251 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83815,13 +84337,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2252 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83831,13 +84353,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2252 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83850,13 +84372,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2253 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83866,13 +84388,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2253 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83885,13 +84407,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2254 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83904,13 +84426,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2254 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83919,20 +84441,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2255 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83942,13 +84464,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2255 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83961,13 +84483,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2256 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83977,13 +84499,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2256 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -83996,13 +84518,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2257 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84015,13 +84537,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2257 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84030,20 +84552,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2258 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84056,13 +84578,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2258 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84071,20 +84593,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2259 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84094,13 +84616,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2259 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84113,13 +84635,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2260 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84129,13 +84651,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2260 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84148,13 +84670,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2261 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84164,13 +84686,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2261 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84183,13 +84705,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2262 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84202,13 +84724,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2262 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84217,20 +84739,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2263 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84243,13 +84765,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2263 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84258,20 +84780,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2264 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84281,13 +84803,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2264 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84300,13 +84822,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2265 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84316,13 +84838,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2265 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84335,13 +84857,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2266 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84351,13 +84873,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2266 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84370,13 +84892,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2267 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84389,13 +84911,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2267 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84404,20 +84926,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2268 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84427,13 +84949,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2268 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84446,13 +84968,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2269 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84462,13 +84984,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2269 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84481,13 +85003,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2270 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84500,13 +85022,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2270 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84515,20 +85037,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2271 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84541,13 +85063,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2271 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84556,20 +85078,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2272 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84579,13 +85101,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2272 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84598,13 +85120,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2273 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84614,13 +85136,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2273 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84633,13 +85155,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2274 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84653,10 +85175,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2275 this -984985986 +1536031937 1 this.wrapped -1855515626 +798981583 1 this.wrapped[..] [] @@ -84669,25 +85191,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2274 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 return -984985986 +1536031937 1 return.wrapped -2041088095 +1954406292 1 return.wrapped[..] -[466989532] +[2012993836] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84697,13 +85219,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2276 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84713,13 +85235,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2276 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84732,13 +85254,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2277 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84751,13 +85273,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2277 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84766,20 +85288,20 @@ index 0 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2278 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84789,13 +85311,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2278 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84808,13 +85330,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2279 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84827,13 +85349,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2279 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84842,20 +85364,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2280 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84865,13 +85387,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2280 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84884,13 +85406,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2281 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84900,13 +85422,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2281 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84919,13 +85441,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2282 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84938,13 +85460,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2282 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84953,20 +85475,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2283 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84976,13 +85498,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2283 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -84995,51 +85517,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2284 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1693436411 +1922464006 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2284 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2285 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85049,13 +85571,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2285 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85068,13 +85590,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2286 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85087,13 +85609,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2286 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85102,20 +85624,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2287 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85125,13 +85647,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2287 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85144,13 +85666,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2288 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85163,13 +85685,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2288 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85178,20 +85700,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2289 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85201,13 +85723,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2289 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85220,13 +85742,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2290 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85236,13 +85758,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2290 this -1787818186 +1740797075 1 this.wrapped -269063278 +440938038 1 this.wrapped[..] -[1693436411] +[1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85255,13 +85777,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2291 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85271,13 +85793,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2291 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85290,13 +85812,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2292 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85309,13 +85831,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2292 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85324,20 +85846,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2293 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85350,13 +85872,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2293 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85365,20 +85887,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2294 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85388,13 +85910,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2294 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85407,13 +85929,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2295 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85423,13 +85945,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2295 this -958012340 +461160828 1 this.wrapped -1628496821 +1499867659 1 this.wrapped[..] -[466989532] +[2012993836] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -85442,13 +85964,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2296 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85458,13 +85980,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2296 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85477,13 +85999,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2297 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85496,13 +86018,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2297 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85511,20 +86033,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2298 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85537,13 +86059,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2298 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85552,20 +86074,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2299 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85575,13 +86097,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2299 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85594,13 +86116,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2300 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85613,13 +86135,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2300 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85628,20 +86150,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2301 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85654,13 +86176,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2301 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85669,20 +86191,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2302 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85692,13 +86214,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2302 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85711,13 +86233,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2303 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85730,13 +86252,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2303 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85745,20 +86267,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2304 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85771,13 +86293,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2304 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85786,20 +86308,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2305 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85809,13 +86331,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2305 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85828,13 +86350,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2306 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85844,13 +86366,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2306 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85863,13 +86385,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2307 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85879,13 +86401,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2307 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85898,13 +86420,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2308 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85917,13 +86439,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2308 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85932,20 +86454,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2309 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85958,13 +86480,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2309 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85973,20 +86495,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2310 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -85996,13 +86518,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2310 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86015,13 +86537,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2311 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86034,13 +86556,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2311 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86049,20 +86571,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2312 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86075,13 +86597,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2312 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86090,20 +86612,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2313 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86113,13 +86635,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2313 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86132,13 +86654,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2314 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86151,13 +86673,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2314 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86166,20 +86688,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2315 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86192,13 +86714,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2315 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86207,20 +86729,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2316 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86230,13 +86752,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2316 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86249,13 +86771,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2317 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86265,13 +86787,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2317 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86284,13 +86806,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2318 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86300,13 +86822,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2318 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86319,13 +86841,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2319 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86338,13 +86860,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2319 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86353,20 +86875,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2320 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86379,13 +86901,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2320 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86394,20 +86916,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2321 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86417,13 +86939,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2321 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86436,13 +86958,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2322 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86455,13 +86977,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2322 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86470,20 +86992,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2323 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86496,13 +87018,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2323 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86511,20 +87033,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2324 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86534,13 +87056,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2324 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86553,13 +87075,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2325 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86572,13 +87094,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2325 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86587,20 +87109,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2326 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86613,13 +87135,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2326 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86628,20 +87150,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2327 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86651,13 +87173,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2327 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86670,13 +87192,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2328 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86686,13 +87208,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2328 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86705,13 +87227,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2329 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86721,13 +87243,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2329 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86740,13 +87262,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2330 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86759,13 +87281,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2330 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86774,20 +87296,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2331 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86797,13 +87319,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2331 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86816,13 +87338,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2332 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86835,13 +87357,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2332 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86850,20 +87372,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2333 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86873,13 +87395,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2333 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86892,13 +87414,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2334 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86908,13 +87430,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2334 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86927,13 +87449,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2335 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86946,13 +87468,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2335 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86961,20 +87483,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2336 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -86987,13 +87509,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2336 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87002,20 +87524,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2337 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87025,13 +87547,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2337 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87044,13 +87566,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2338 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87063,13 +87585,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2338 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87078,20 +87600,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2339 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87104,13 +87626,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2339 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87119,20 +87641,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2340 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87142,13 +87664,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2340 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87161,13 +87683,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2341 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87180,13 +87702,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2341 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87195,20 +87717,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2342 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87221,13 +87743,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2342 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87236,20 +87758,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2343 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87259,13 +87781,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2343 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87278,13 +87800,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2344 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87294,13 +87816,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2344 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87313,13 +87835,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2345 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87329,13 +87851,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2345 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87348,13 +87870,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2346 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87367,13 +87889,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2346 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87382,20 +87904,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2347 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87408,13 +87930,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2347 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87423,20 +87945,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2348 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87446,13 +87968,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2348 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87465,13 +87987,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2349 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87484,13 +88006,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2349 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87499,20 +88021,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2350 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87525,13 +88047,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2350 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87540,20 +88062,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2351 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87563,13 +88085,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2351 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87582,13 +88104,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2352 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87601,13 +88123,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2352 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87616,20 +88138,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2353 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87642,13 +88164,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2353 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87657,20 +88179,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2354 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87680,13 +88202,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2354 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87699,13 +88221,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2355 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87715,13 +88237,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2355 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87734,13 +88256,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2356 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87750,13 +88272,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2356 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87769,13 +88291,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2357 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87788,13 +88310,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2357 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87803,20 +88325,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2358 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87826,13 +88348,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2358 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87845,13 +88367,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2359 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87864,13 +88386,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2359 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87879,20 +88401,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2360 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87902,13 +88424,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2360 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87921,13 +88443,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2361 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87937,13 +88459,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2361 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87956,13 +88478,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2362 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87975,13 +88497,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2362 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -87990,20 +88512,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2363 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88016,13 +88538,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2363 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88031,20 +88553,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2364 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88054,13 +88576,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2364 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88073,13 +88595,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2365 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88092,13 +88614,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2365 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88107,20 +88629,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2366 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88133,13 +88655,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2366 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88148,20 +88670,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2367 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88171,13 +88693,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2367 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88190,13 +88712,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2368 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88209,13 +88731,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2368 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88224,20 +88746,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2369 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88250,13 +88772,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2369 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88265,20 +88787,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2370 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88288,13 +88810,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2370 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88307,13 +88829,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2371 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88323,13 +88845,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2371 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88346,10 +88868,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2372 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -88362,10 +88884,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2373 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -88378,10 +88900,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2373 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -88397,13 +88919,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2374 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88413,13 +88935,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2374 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88432,13 +88954,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2375 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88451,13 +88973,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2375 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88466,20 +88988,20 @@ index 0 1 return -2015169215 +1546908073 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2376 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88489,13 +89011,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2376 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88508,13 +89030,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2377 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88527,13 +89049,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2377 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88542,20 +89064,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2378 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88568,13 +89090,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2378 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88583,20 +89105,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2379 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88606,13 +89128,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2379 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88625,13 +89147,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2380 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88644,13 +89166,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2380 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88659,20 +89181,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2381 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88685,13 +89207,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2381 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88700,20 +89222,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2382 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88723,13 +89245,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2382 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88742,13 +89264,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2383 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88761,13 +89283,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2383 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88776,20 +89298,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2384 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88802,13 +89324,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2384 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88817,20 +89339,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2385 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88840,13 +89362,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2385 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88859,13 +89381,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2386 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88875,13 +89397,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2386 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88894,13 +89416,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2387 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88914,10 +89436,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2388 this -1084805604 +1427651360 1 this.wrapped -191623398 +1334042472 1 this.wrapped[..] [] @@ -88930,25 +89452,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2387 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 return -1084805604 +1427651360 1 return.wrapped -1536463333 +1827725498 1 return.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88958,13 +89480,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2389 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88974,13 +89496,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2389 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -88993,13 +89515,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2390 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89012,13 +89534,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2390 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89027,26 +89549,26 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2391 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1995866203 +131635550 1 index 0 @@ -89056,19 +89578,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2391 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 1693436411] +[131635550 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1995866203 +131635550 1 index 0 @@ -89078,13 +89600,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2392 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 1693436411] +[131635550 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89094,13 +89616,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2392 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 1693436411] +[131635550 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89113,13 +89635,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2393 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 1693436411] +[131635550 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89132,13 +89654,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2393 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 1693436411] +[131635550 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89147,26 +89669,26 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2394 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 1693436411] +[131635550 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -828707681 +319644606 1 index 1 @@ -89176,19 +89698,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2394 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -828707681 +319644606 1 index 1 @@ -89198,13 +89720,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2395 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89214,13 +89736,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2395 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89233,13 +89755,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2396 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89249,13 +89771,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2396 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89268,13 +89790,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2397 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89287,13 +89809,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2397 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89302,26 +89824,26 @@ index 0 1 return -1995866203 +131635550 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2398 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1995866203 828707681] +[131635550 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1658543772 +1118078504 1 index 0 @@ -89331,19 +89853,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2398 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 828707681] +[1118078504 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1658543772 +1118078504 1 index 0 @@ -89353,13 +89875,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2399 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 828707681] +[1118078504 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89369,13 +89891,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2399 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 828707681] +[1118078504 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89388,13 +89910,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2400 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 828707681] +[1118078504 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89407,13 +89929,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2400 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 828707681] +[1118078504 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89422,26 +89944,26 @@ index 1 1 return -828707681 +319644606 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2401 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 828707681] +[1118078504 319644606] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -807437944 +691690486 1 index 1 @@ -89451,19 +89973,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2401 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -807437944 +691690486 1 index 1 @@ -89473,13 +89995,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2402 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89489,13 +90011,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2402 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89508,13 +90030,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2403 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89524,13 +90046,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2403 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89543,13 +90065,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2404 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89562,13 +90084,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2404 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89577,20 +90099,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2405 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89603,13 +90125,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2405 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89618,20 +90140,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2406 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89641,13 +90163,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2406 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89660,13 +90182,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2407 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89679,13 +90201,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2407 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89694,20 +90216,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2408 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89720,13 +90242,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2408 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89735,20 +90257,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2409 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89758,13 +90280,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2409 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89777,13 +90299,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2410 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89796,13 +90318,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2410 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89811,20 +90333,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2411 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89837,13 +90359,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2411 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89852,20 +90374,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2412 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89875,13 +90397,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2412 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89894,13 +90416,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2413 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89910,13 +90432,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2413 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89929,13 +90451,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2414 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89945,13 +90467,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2414 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89964,13 +90486,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2415 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89983,13 +90505,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2415 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -89998,20 +90520,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2416 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90024,13 +90546,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2416 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90039,20 +90561,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2417 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90062,13 +90584,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2417 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90081,13 +90603,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2418 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90100,13 +90622,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2418 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90115,20 +90637,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2419 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90141,13 +90663,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2419 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90156,20 +90678,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2420 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90179,13 +90701,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2420 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90198,13 +90720,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2421 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90217,13 +90739,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2421 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90232,20 +90754,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2422 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90258,13 +90780,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2422 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90273,20 +90795,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2423 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90296,13 +90818,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2423 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90315,13 +90837,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2424 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90331,13 +90853,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2424 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90350,10 +90872,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2425 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90366,10 +90888,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2425 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90385,10 +90907,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2426 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90401,10 +90923,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2426 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90420,10 +90942,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2427 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90436,10 +90958,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2427 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90455,10 +90977,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2428 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90471,10 +90993,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2428 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -90490,13 +91012,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2429 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90506,13 +91028,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2429 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90525,13 +91047,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2430 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90544,13 +91066,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2430 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90559,20 +91081,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2431 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90585,13 +91107,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2431 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90600,20 +91122,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2432 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90623,13 +91145,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2432 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90642,13 +91164,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2433 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90661,13 +91183,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2433 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90676,20 +91198,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2434 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90702,13 +91224,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2434 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90717,20 +91239,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2435 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90740,13 +91262,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2435 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90759,13 +91281,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2436 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90778,13 +91300,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2436 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90793,20 +91315,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2437 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90819,13 +91341,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2437 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90834,20 +91356,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2438 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90857,13 +91379,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2438 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90876,13 +91398,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2439 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90892,13 +91414,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2439 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90911,13 +91433,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2440 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90927,13 +91449,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2440 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90946,13 +91468,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2441 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90965,13 +91487,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2441 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -90980,20 +91502,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2442 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91003,13 +91525,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2442 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91022,13 +91544,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2443 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91041,13 +91563,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2443 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91056,20 +91578,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2444 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91079,13 +91601,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2444 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91098,13 +91620,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2445 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91114,13 +91636,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2445 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91133,13 +91655,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2446 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91152,13 +91674,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2446 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91167,20 +91689,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2447 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91193,13 +91715,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2447 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91208,20 +91730,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2448 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91231,13 +91753,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2448 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91250,13 +91772,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2449 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91269,13 +91791,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2449 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91284,20 +91806,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2450 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91310,13 +91832,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2450 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91325,20 +91847,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2451 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91348,13 +91870,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2451 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91367,13 +91889,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2452 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91386,13 +91908,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2452 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91401,20 +91923,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2453 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91427,13 +91949,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2453 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91442,20 +91964,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2454 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91465,13 +91987,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2454 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91484,13 +92006,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2455 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91500,13 +92022,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2455 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91519,10 +92041,10 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2456 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -91539,10 +92061,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2457 this -1732250066 +1793799654 1 this.wrapped -491056883 +310623126 1 this.wrapped[..] [] @@ -91555,10 +92077,10 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2456 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -91567,10 +92089,10 @@ this.wrapped[..].getClass().getName() [] 1 return -1732250066 +1793799654 1 return.wrapped -413377160 +1961945640 1 return.wrapped[..] [] @@ -91583,13 +92105,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2458 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91599,13 +92121,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2458 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91618,13 +92140,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2459 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91637,13 +92159,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2459 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91652,17 +92174,17 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2460 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] [] @@ -91675,10 +92197,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2460 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] [] @@ -91694,10 +92216,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2461 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] [] @@ -91710,10 +92232,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2461 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] [] @@ -91729,10 +92251,10 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2462 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] [] @@ -91741,39 +92263,39 @@ this.wrapped[..].getClass().getName() [] 1 t -1658543772 +1118078504 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2462 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2463 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91783,13 +92305,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2463 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91802,13 +92324,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2464 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91821,13 +92343,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2464 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91836,20 +92358,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2465 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91859,13 +92381,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2465 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91878,13 +92400,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2466 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91894,13 +92416,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2466 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91913,13 +92435,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2467 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91932,13 +92454,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2467 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -91947,20 +92469,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2468 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91970,13 +92492,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2468 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -91989,13 +92511,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2469 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92008,13 +92530,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2469 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92023,20 +92545,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2470 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92046,13 +92568,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2470 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92065,13 +92587,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2471 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92081,13 +92603,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2471 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92100,13 +92622,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2472 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92119,13 +92641,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2472 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92134,20 +92656,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2473 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92157,13 +92679,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2473 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -92176,51 +92698,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2474 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -807437944 +691690486 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2474 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2475 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92230,13 +92752,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2475 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92249,13 +92771,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2476 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92268,13 +92790,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2476 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92283,20 +92805,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2477 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92306,13 +92828,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2477 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92325,13 +92847,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2478 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92344,13 +92866,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2478 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92359,20 +92881,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2479 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92382,13 +92904,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2479 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92401,13 +92923,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2480 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92417,13 +92939,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2480 this -1084805604 +1427651360 1 this.wrapped -1536463333 +1827725498 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92436,10 +92958,10 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2481 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -92452,10 +92974,10 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2481 this -84034882 +904058452 1 this.wrapped -1477505695 +29183965 1 this.wrapped[..] [] @@ -92471,13 +92993,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2482 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92487,13 +93009,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2482 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92506,13 +93028,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2483 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92525,13 +93047,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2483 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92540,20 +93062,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2484 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92566,13 +93088,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2484 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92581,20 +93103,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2485 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92604,13 +93126,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2485 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92623,13 +93145,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2486 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92642,13 +93164,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2486 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92657,20 +93179,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2487 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92683,13 +93205,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2487 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92698,20 +93220,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2488 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92721,13 +93243,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2488 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92740,13 +93262,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2489 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92759,13 +93281,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2489 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92774,20 +93296,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2490 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92800,13 +93322,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2490 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92815,20 +93337,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2491 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92838,13 +93360,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2491 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92857,13 +93379,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2492 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92873,13 +93395,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2492 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92892,13 +93414,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2493 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92908,13 +93430,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2493 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92927,13 +93449,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2494 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92946,13 +93468,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2494 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92961,20 +93483,20 @@ index 1 1 return -702060246 +1226020905 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2495 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -92984,13 +93506,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2495 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93003,13 +93525,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2496 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93022,13 +93544,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2496 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93037,20 +93559,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2497 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93063,13 +93585,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2497 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93078,20 +93600,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2498 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93101,13 +93623,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2498 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93120,13 +93642,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2499 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93139,13 +93661,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2499 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93154,20 +93676,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2500 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93180,13 +93702,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2500 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93195,20 +93717,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2501 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93218,13 +93740,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2501 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93237,13 +93759,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2502 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93256,13 +93778,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2502 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93271,20 +93793,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2503 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93297,13 +93819,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2503 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93312,20 +93834,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2504 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93335,13 +93857,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2504 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93354,13 +93876,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2505 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93370,13 +93892,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2505 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93389,13 +93911,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2506 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93409,10 +93931,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2507 this -520330075 +258931371 1 this.wrapped -634159941 +1008315045 1 this.wrapped[..] [] @@ -93425,25 +93947,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2506 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 return -520330075 +258931371 1 return.wrapped -364788326 +860481979 1 return.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93453,13 +93975,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2508 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93469,13 +93991,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2508 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93488,13 +94010,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2509 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93507,13 +94029,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2509 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93522,26 +94044,26 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2510 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -2079066544 +1083962448 1 index 0 @@ -93551,19 +94073,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2510 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1693436411] +[1083962448 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -2079066544 +1083962448 1 index 0 @@ -93573,13 +94095,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2511 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1693436411] +[1083962448 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93589,13 +94111,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2511 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1693436411] +[1083962448 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93608,13 +94130,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2512 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1693436411] +[1083962448 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93627,13 +94149,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2512 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1693436411] +[1083962448 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93642,26 +94164,26 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2513 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1693436411] +[1083962448 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1164984671 +953742666 1 index 1 @@ -93671,19 +94193,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2513 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1164984671 +953742666 1 index 1 @@ -93693,13 +94215,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2514 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93709,13 +94231,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2514 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93728,13 +94250,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2515 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93744,13 +94266,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2515 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93763,13 +94285,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2516 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93782,13 +94304,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2516 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93797,26 +94319,26 @@ index 0 1 return -2079066544 +1083962448 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2517 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[2079066544 1164984671] +[1083962448 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1288955798 +1239759990 1 index 0 @@ -93826,19 +94348,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2517 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1164984671] +[1239759990 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1288955798 +1239759990 1 index 0 @@ -93848,13 +94370,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2518 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1164984671] +[1239759990 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93864,13 +94386,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2518 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1164984671] +[1239759990 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93883,13 +94405,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2519 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1164984671] +[1239759990 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93902,13 +94424,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2519 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1164984671] +[1239759990 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93917,26 +94439,26 @@ index 1 1 return -1164984671 +953742666 1 PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::ENTER this_invocation_nonce 2520 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1164984671] +[1239759990 953742666] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1812549697 +891093184 1 index 1 @@ -93946,19 +94468,19 @@ PolyCalc.RatTermVec.set(PolyCalc.RatTerm, int):::EXIT89 this_invocation_nonce 2520 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1812549697 +891093184 1 index 1 @@ -93968,13 +94490,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2521 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -93984,13 +94506,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2521 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94003,13 +94525,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2522 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94019,13 +94541,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2522 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94038,13 +94560,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2523 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94057,13 +94579,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2523 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94072,20 +94594,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2524 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94098,13 +94620,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2524 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94113,20 +94635,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2525 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94136,13 +94658,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2525 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94155,13 +94677,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2526 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94174,13 +94696,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2526 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94189,20 +94711,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2527 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94215,13 +94737,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2527 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94230,20 +94752,20 @@ index 0 1 return -466989532 +2012993836 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2528 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94253,13 +94775,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2528 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94272,13 +94794,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2529 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94291,13 +94813,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2529 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94306,20 +94828,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2530 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94332,13 +94854,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2530 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94347,20 +94869,20 @@ index 1 1 return -1693436411 +1922464006 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2531 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94370,13 +94892,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2531 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94389,13 +94911,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2532 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94405,13 +94927,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2532 this -984985986 +1536031937 1 this.wrapped -2041088095 +1954406292 1 this.wrapped[..] -[466989532 1693436411] +[2012993836 1922464006] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94424,13 +94946,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2533 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94440,13 +94962,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2533 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94459,13 +94981,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2534 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94478,13 +95000,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2534 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94493,20 +95015,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2535 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94519,13 +95041,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2535 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94534,20 +95056,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2536 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94557,13 +95079,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2536 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94576,13 +95098,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2537 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94595,13 +95117,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2537 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94610,20 +95132,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2538 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94636,13 +95158,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2538 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94651,20 +95173,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2539 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94674,13 +95196,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2539 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94693,13 +95215,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2540 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94712,13 +95234,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2540 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94727,20 +95249,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2541 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94753,13 +95275,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2541 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94768,20 +95290,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2542 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94791,13 +95313,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2542 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94810,13 +95332,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2543 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94826,13 +95348,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2543 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94845,13 +95367,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2544 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94861,13 +95383,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2544 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94880,13 +95402,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2545 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94899,13 +95421,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2545 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94914,20 +95436,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2546 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94940,13 +95462,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2546 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94955,20 +95477,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2547 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94978,13 +95500,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2547 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -94997,13 +95519,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2548 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95016,13 +95538,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2548 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95031,20 +95553,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2549 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95057,13 +95579,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2549 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95072,20 +95594,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2550 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95095,13 +95617,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2550 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95114,13 +95636,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2551 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95133,13 +95655,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2551 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95148,20 +95670,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2552 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95174,13 +95696,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2552 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95189,20 +95711,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2553 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95212,13 +95734,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2553 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95231,13 +95753,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2554 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95247,13 +95769,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2554 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95266,13 +95788,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2555 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95282,13 +95804,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2555 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95301,13 +95823,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2556 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95320,13 +95842,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2556 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95335,20 +95857,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2557 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95361,13 +95883,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2557 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95376,20 +95898,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2558 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95399,13 +95921,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2558 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95418,13 +95940,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2559 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95437,13 +95959,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2559 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95452,20 +95974,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2560 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95478,13 +96000,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2560 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95493,20 +96015,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2561 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95516,13 +96038,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2561 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95535,13 +96057,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2562 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95554,13 +96076,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2562 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95569,20 +96091,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2563 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95595,13 +96117,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2563 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95610,20 +96132,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2564 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95633,13 +96155,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2564 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95652,13 +96174,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2565 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95668,13 +96190,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2565 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95687,13 +96209,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2566 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95703,13 +96225,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2566 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95722,13 +96244,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2567 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95741,13 +96263,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2567 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95756,20 +96278,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2568 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95779,13 +96301,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2568 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95798,13 +96320,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2569 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95817,13 +96339,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2569 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95832,20 +96354,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2570 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95855,13 +96377,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2570 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95874,13 +96396,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2571 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95890,13 +96412,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2571 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95909,13 +96431,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2572 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95928,13 +96450,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2572 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95943,20 +96465,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2573 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95969,13 +96491,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2573 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -95984,20 +96506,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2574 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96007,13 +96529,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2574 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96026,13 +96548,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2575 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96045,13 +96567,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2575 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96060,20 +96582,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2576 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96086,13 +96608,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2576 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96101,20 +96623,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2577 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96124,13 +96646,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2577 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96143,13 +96665,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2578 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96162,13 +96684,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2578 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96177,20 +96699,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2579 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96203,13 +96725,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2579 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96218,20 +96740,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2580 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96241,13 +96763,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2580 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96260,13 +96782,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2581 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96276,13 +96798,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2581 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96295,13 +96817,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2582 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96311,13 +96833,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2582 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96330,13 +96852,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2583 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96349,13 +96871,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2583 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96364,20 +96886,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2584 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96390,13 +96912,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2584 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96405,20 +96927,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2585 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96428,13 +96950,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2585 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96447,13 +96969,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2586 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96466,13 +96988,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2586 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96481,20 +97003,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2587 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96507,13 +97029,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2587 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96522,20 +97044,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2588 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96545,13 +97067,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2588 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96564,13 +97086,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2589 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96583,13 +97105,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2589 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96598,20 +97120,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2590 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96624,13 +97146,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2590 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96639,20 +97161,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2591 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96662,13 +97184,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2591 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96681,13 +97203,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2592 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96697,13 +97219,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2592 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96716,13 +97238,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2593 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96732,13 +97254,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2593 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96751,13 +97273,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2594 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96770,13 +97292,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2594 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96785,20 +97307,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2595 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96808,13 +97330,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2595 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96827,13 +97349,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2596 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96846,13 +97368,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2596 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96861,20 +97383,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2597 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96884,13 +97406,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2597 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96903,13 +97425,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2598 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96919,13 +97441,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2598 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96938,13 +97460,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2599 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96957,13 +97479,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2599 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96972,20 +97494,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2600 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -96998,13 +97520,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2600 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97013,20 +97535,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2601 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97036,13 +97558,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2601 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97055,13 +97577,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2602 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97074,13 +97596,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2602 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97089,20 +97611,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2603 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97115,13 +97637,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2603 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97130,20 +97652,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2604 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97153,13 +97675,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2604 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97172,13 +97694,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2605 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97191,13 +97713,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2605 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97206,20 +97728,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2606 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97232,13 +97754,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2606 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97247,20 +97769,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2607 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97270,13 +97792,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2607 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97289,13 +97811,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2608 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97305,13 +97827,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2608 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97324,13 +97846,13 @@ PolyCalc.RatTermVec.copy():::ENTER this_invocation_nonce 2609 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97344,10 +97866,10 @@ PolyCalc.RatTermVec.RatTermVec():::EXIT27 this_invocation_nonce 2610 this -1467224784 +708533063 1 this.wrapped -92226187 +1438030319 1 this.wrapped[..] [] @@ -97360,25 +97882,25 @@ PolyCalc.RatTermVec.copy():::EXIT100 this_invocation_nonce 2609 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 return -1467224784 +708533063 1 return.wrapped -1709815422 +902830499 1 return.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 return.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97388,13 +97910,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2611 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97404,13 +97926,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2611 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97423,13 +97945,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2612 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97442,13 +97964,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2612 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97457,20 +97979,20 @@ index 0 1 return -1288955798 +1239759990 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2613 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97480,13 +98002,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2613 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97499,13 +98021,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2614 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97518,13 +98040,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2614 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97533,20 +98055,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2615 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97556,13 +98078,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2615 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97575,13 +98097,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2616 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97594,13 +98116,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2616 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97609,20 +98131,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2617 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97632,13 +98154,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2617 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97651,13 +98173,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2618 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97667,13 +98189,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2618 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97686,13 +98208,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2619 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97705,13 +98227,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2619 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97720,20 +98242,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2620 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97743,13 +98265,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2620 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97762,13 +98284,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2621 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97781,13 +98303,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2621 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97796,20 +98318,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.remove(int):::ENTER this_invocation_nonce 2622 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97822,13 +98344,13 @@ PolyCalc.RatTermVec.remove(int):::EXIT78 this_invocation_nonce 2622 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97841,13 +98363,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2623 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97857,13 +98379,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2623 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97876,13 +98398,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2624 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97895,13 +98417,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2624 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97910,20 +98432,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2625 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97933,13 +98455,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2625 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -97952,13 +98474,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2626 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97968,13 +98490,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2626 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -97987,13 +98509,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2627 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98006,13 +98528,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2627 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98021,20 +98543,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2628 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98044,13 +98566,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2628 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98063,13 +98585,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2629 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98082,13 +98604,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2629 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98097,20 +98619,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2630 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98120,13 +98642,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2630 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98139,13 +98661,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2631 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98155,13 +98677,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2631 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98174,13 +98696,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2632 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98193,13 +98715,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2632 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98208,20 +98730,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2633 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98231,13 +98753,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2633 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] @@ -98250,51 +98772,51 @@ PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::ENTER this_invocation_nonce 2634 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772] +[1118078504] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm"] 1 t -1812549697 +891093184 1 PolyCalc.RatTermVec.addElement(PolyCalc.RatTerm):::EXIT50 this_invocation_nonce 2634 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] 1 t -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2635 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98304,13 +98826,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2635 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98323,13 +98845,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2636 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98342,13 +98864,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2636 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98357,20 +98879,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2637 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98380,13 +98902,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2637 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98399,13 +98921,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2638 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98418,13 +98940,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2638 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98433,20 +98955,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2639 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98456,13 +98978,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2639 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98475,13 +98997,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2640 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98491,13 +99013,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2640 this -520330075 +258931371 1 this.wrapped -364788326 +860481979 1 this.wrapped[..] -[1288955798 1812549697] +[1239759990 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98510,13 +99032,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2641 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98526,13 +99048,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2641 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98545,13 +99067,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2642 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98564,13 +99086,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2642 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98579,20 +99101,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2643 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98605,13 +99127,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2643 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98620,20 +99142,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2644 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98643,13 +99165,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2644 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98662,13 +99184,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2645 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98681,13 +99203,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2645 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98696,20 +99218,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2646 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98722,13 +99244,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2646 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98737,20 +99259,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2647 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98760,13 +99282,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2647 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98779,13 +99301,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2648 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98798,13 +99320,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2648 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98813,20 +99335,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2649 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98839,13 +99361,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2649 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98854,20 +99376,20 @@ index 1 1 return -807437944 +691690486 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2650 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98877,13 +99399,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2650 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98896,13 +99418,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2651 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98912,13 +99434,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2651 this -1732250066 +1793799654 1 this.wrapped -413377160 +1961945640 1 this.wrapped[..] -[1658543772 807437944] +[1118078504 691690486] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98931,13 +99453,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2652 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98947,13 +99469,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2652 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98966,13 +99488,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2653 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -98985,13 +99507,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2653 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99000,20 +99522,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2654 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99026,13 +99548,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2654 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99041,20 +99563,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2655 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99064,13 +99586,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2655 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99083,13 +99605,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2656 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99102,13 +99624,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2656 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99117,20 +99639,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2657 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99143,13 +99665,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2657 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99158,20 +99680,20 @@ index 0 1 return -1658543772 +1118078504 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2658 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99181,13 +99703,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2658 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99200,13 +99722,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2659 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99219,13 +99741,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2659 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99234,20 +99756,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2660 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99260,13 +99782,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2660 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99275,20 +99797,20 @@ index 1 1 return -1812549697 +891093184 1 PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2661 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99298,13 +99820,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2661 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99317,13 +99839,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2662 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99333,13 +99855,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2662 this -1467224784 +708533063 1 this.wrapped -1709815422 +902830499 1 this.wrapped[..] -[1658543772 1812549697] +[1118078504 891093184] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99352,13 +99874,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2663 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99368,13 +99890,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2663 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99387,13 +99909,13 @@ PolyCalc.RatTermVec.size():::ENTER this_invocation_nonce 2664 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99403,13 +99925,13 @@ PolyCalc.RatTermVec.size():::EXIT30 this_invocation_nonce 2664 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99422,13 +99944,13 @@ PolyCalc.RatTermVec.get(int):::ENTER this_invocation_nonce 2665 this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99441,35 +99963,13 @@ PolyCalc.RatTermVec.get(int):::EXIT39 this_invocation_nonce 2665 this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 -return -2015169215 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2666 -this -1251397904 +156856360 1 this.wrapped -814227632 +1325124186 1 this.wrapped[..] -[2015169215 702060246] +[1546908073 1226020905] 1 this.wrapped[..].getClass().getName() ["PolyCalc.RatTerm" "PolyCalc.RatTerm"] @@ -99477,523 +99977,7 @@ this.wrapped[..].getClass().getName() index 0 1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2666 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 -return -2015169215 -1 - -PolyCalc.RatTermVec.size():::ENTER -this_invocation_nonce -2667 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 - -PolyCalc.RatTermVec.size():::EXIT30 -this_invocation_nonce -2667 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -return -2 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2668 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2668 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 -return -702060246 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2669 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2669 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 -return -2015169215 -1 - -PolyCalc.RatTermVec.size():::ENTER -this_invocation_nonce -2670 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 - -PolyCalc.RatTermVec.size():::EXIT30 -this_invocation_nonce -2670 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -return -2 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2671 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2671 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 -return -702060246 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2672 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2672 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 -return -702060246 -1 - -PolyCalc.RatTermVec.size():::ENTER -this_invocation_nonce -2673 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 - -PolyCalc.RatTermVec.size():::EXIT30 -this_invocation_nonce -2673 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -return -2 -1 - -PolyCalc.RatTermVec.size():::ENTER -this_invocation_nonce -2674 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 - -PolyCalc.RatTermVec.size():::EXIT30 -this_invocation_nonce -2674 -this -1251397904 -1 -this.wrapped -814227632 -1 -this.wrapped[..] -[2015169215 702060246] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -return -2 -1 - -PolyCalc.RatTermVec.size():::ENTER -this_invocation_nonce -2675 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 - -PolyCalc.RatTermVec.size():::EXIT30 -this_invocation_nonce -2675 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -return -2 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2676 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2676 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 -return -1658543772 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2677 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2677 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -0 -1 -return -1658543772 -1 - -PolyCalc.RatTermVec.size():::ENTER -this_invocation_nonce -2678 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 - -PolyCalc.RatTermVec.size():::EXIT30 -this_invocation_nonce -2678 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -return -2 -1 - -PolyCalc.RatTermVec.get(int):::ENTER -this_invocation_nonce -2679 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 - -PolyCalc.RatTermVec.get(int):::EXIT39 -this_invocation_nonce -2679 -this -1467224784 -1 -this.wrapped -1709815422 -1 -this.wrapped[..] -[1658543772 1812549697] -1 -this.wrapped[..].getClass().getName() -["PolyCalc.RatTerm" "PolyCalc.RatTerm"] -1 -index -1 -1 return -1812549697 +1546908073 1 diff --git a/tests/daikon-tests/RatTermVec/RatTermVec.txt-jaif.goal b/tests/daikon-tests/RatTermVec/RatTermVec.txt-jaif.goal index 8ea56b28ed..f1c740a2fe 100644 --- a/tests/daikon-tests/RatTermVec/RatTermVec.txt-jaif.goal +++ b/tests/daikon-tests/RatTermVec/RatTermVec.txt-jaif.goal @@ -5,32 +5,59 @@ annotation @NonNull: package PolyCalc: class RatTermVec : // 164488/- obj/class samples field wrapped : // java.util.ArrayList + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 1042 samples - return: + return: + method addElement(LPolyCalc/RatTerm;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t method addElement(LPolyCalc/RatTerm;)V : // 749 samples - return: + return: parameter #0 : // t + method copy()V throws Ljava/lang/Throwable; : // 0 samples + return: method copy()LPolyCalc/RatTermVec; : // 426 samples - return: + return: + method get(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method get(I)LPolyCalc/RatTerm; : // 37190 samples - return: + return: parameter #0 : // index + method insert(LPolyCalc/RatTerm;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t + parameter #1 : // index method insert(LPolyCalc/RatTerm;I)V : // 116 samples - return: + return: parameter #0 : // t parameter #1 : // index + method printDebug()V throws Ljava/lang/Throwable; : // 0 samples + return: method printDebug()Ljava/lang/String; : // 26 samples - return: + return: + method remove(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method remove(I)V : // 96 samples - return: + return: parameter #0 : // index + method set(LPolyCalc/RatTerm;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // t + parameter #1 : // index method set(LPolyCalc/RatTerm;I)V : // 518 samples - return: + return: parameter #0 : // t parameter #1 : // index + method size()V throws Ljava/lang/Throwable; : // 0 samples + return: method size()I : // 42576 samples - return: + return: + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 26 samples - return: + return: diff --git a/tests/daikon-tests/StackAr/StackAr.txt-chicory.goal b/tests/daikon-tests/StackAr/StackAr.txt-chicory.goal index 5615a31e28..61a02d054a 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-chicory.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.StackAr -// Declarations written Thu Jun 04 13:24:49 PDT 2015 +// Declarations written Mon Jul 31 12:34:23 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt DataStructures.StackAr.StackAr(int):::ENTER ppt-type enter variable capacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -17,11 +17,69 @@ ppt DataStructures.StackAr.StackAr(int):::EXIT33 ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable capacity + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt DataStructures.StackAr.StackAr(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray var-kind field theArray @@ -36,11 +94,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -54,7 +112,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -65,20 +123,32 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable capacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt DataStructures.StackAr.isEmpty():::ENTER ppt-type enter parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -94,11 +164,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -112,7 +182,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -127,10 +197,10 @@ ppt DataStructures.StackAr.isEmpty():::EXIT42 ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -146,11 +216,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -164,7 +234,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -175,19 +245,83 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt DataStructures.StackAr.isEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt DataStructures.StackAr.isFull():::ENTER ppt-type enter parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -203,11 +337,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -221,7 +355,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -236,10 +370,10 @@ ppt DataStructures.StackAr.isFull():::EXIT52 ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -255,11 +389,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -273,7 +407,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -284,19 +418,19 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt DataStructures.StackAr.makeEmpty():::ENTER -ppt-type enter +ppt DataStructures.StackAr.isFull():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -312,11 +446,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -330,7 +464,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -340,15 +474,27 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.StackAr.makeEmpty():::EXIT63 -ppt-type subexit +ppt DataStructures.StackAr.makeEmpty():::ENTER +ppt-type enter parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -364,11 +510,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -382,7 +528,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -393,14 +539,14 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 -ppt DataStructures.StackAr.top():::ENTER -ppt-type enter +ppt DataStructures.StackAr.makeEmpty():::EXIT63 +ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -416,11 +562,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -434,7 +580,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -445,14 +591,14 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 -ppt DataStructures.StackAr.top():::EXIT74 +ppt DataStructures.StackAr.makeEmpty():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -468,11 +614,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -486,7 +632,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -496,28 +642,79 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.StackAr.top():::EXIT75 +ppt DataStructures.StackAr.top():::ENTER +ppt-type enter +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 + +ppt DataStructures.StackAr.top():::EXIT74 ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -533,11 +730,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -551,7 +748,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -562,7 +759,7 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode comparability 22 @@ -572,17 +769,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.StackAr.pop():::ENTER -ppt-type enter +ppt DataStructures.StackAr.top():::EXIT75 +ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -598,11 +795,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -616,7 +813,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -626,15 +823,28 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags synthetic classname non_null + comparability 22 -ppt DataStructures.StackAr.pop():::EXIT87 +ppt DataStructures.StackAr.top():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -650,11 +860,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -668,7 +878,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -678,15 +888,27 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.StackAr.push(java.lang.Object):::ENTER +ppt DataStructures.StackAr.pop():::ENTER ppt-type enter parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -702,11 +924,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -720,7 +942,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -730,29 +952,15 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 -variable x - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param - comparability 22 -variable x.getClass().getName() - var-kind function getClass().getName() - enclosing-var x - dec-type java.lang.Class - rep-type java.lang.String - function-args x - flags synthetic classname - comparability 22 -ppt DataStructures.StackAr.push(java.lang.Object):::EXIT99 +ppt DataStructures.StackAr.pop():::EXIT87 ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -768,11 +976,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -786,7 +994,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -796,29 +1004,15 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 -variable x - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param - comparability 22 -variable x.getClass().getName() - var-kind function getClass().getName() - enclosing-var x - dec-type java.lang.Class - rep-type java.lang.String - function-args x - flags synthetic classname - comparability 22 -ppt DataStructures.StackAr.topAndPop():::ENTER -ppt-type enter +ppt DataStructures.StackAr.pop():::EXCEPTION85 +ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -834,11 +1028,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -852,7 +1046,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -862,15 +1056,27 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt DataStructures.StackAr.topAndPop():::EXIT111 +ppt DataStructures.StackAr.pop():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -886,11 +1092,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -904,7 +1110,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -914,28 +1120,27 @@ variable this.topOfStack rep-type int comparability 22 parent DataStructures.StackAr:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt DataStructures.StackAr.topAndPop():::EXIT108 -ppt-type subexit +ppt DataStructures.StackAr.push(java.lang.Object):::ENTER +ppt-type enter parent parent DataStructures.StackAr:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray @@ -951,11 +1156,11 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -969,7 +1174,412 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.StackAr.push(java.lang.Object):::EXIT99 +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.StackAr.push(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable x + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.StackAr.topAndPop():::ENTER +ppt-type enter +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 + +ppt DataStructures.StackAr.topAndPop():::EXIT108 +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.StackAr.topAndPop():::EXIT111 +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable this.topOfStack @@ -980,7 +1590,7 @@ variable this.topOfStack comparability 22 parent DataStructures.StackAr:::OBJECT 1 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode comparability 22 @@ -990,16 +1600,80 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags synthetic classname + flags synthetic classname non_null + comparability 22 + +ppt DataStructures.StackAr.topAndPop():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.StackAr:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.StackAr + rep-type hashcode + flags is_param non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray + var-kind field theArray + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray + dec-type java.lang.Class + rep-type java.lang.String + function-args this.theArray + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..] + var-kind array + enclosing-var this.theArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.theArray[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.theArray[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.theArray[] + flags synthetic classname non_null + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable this.topOfStack + var-kind field topOfStack + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent DataStructures.StackAr:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 ppt DataStructures.StackAr:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type DataStructures.StackAr rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.theArray var-kind field theArray @@ -1013,10 +1687,10 @@ variable this.theArray.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.theArray - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.theArray[..] - var-kind array + var-kind array enclosing-var this.theArray array 1 dec-type java.lang.Object[] @@ -1029,7 +1703,7 @@ variable this.theArray[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.theArray[] - flags synthetic classname + flags synthetic classname non_null comparability 22 variable this.topOfStack var-kind field topOfStack @@ -1049,10 +1723,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 0 this -1574116 +93122545 1 this.theArray -917732198 +2083562754 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1081,10 +1755,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1106,10 +1780,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 2 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1128,10 +1802,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 2 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1150,10 +1824,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 3 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1172,10 +1846,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 3 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1197,10 +1871,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 4 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1219,10 +1893,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 4 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1244,10 +1918,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 5 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1266,10 +1940,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 6 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1288,10 +1962,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 6 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1313,10 +1987,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 5 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1341,10 +2015,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 7 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1363,10 +2037,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 7 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1388,10 +2062,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 8 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1410,10 +2084,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 9 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1432,10 +2106,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 9 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1457,10 +2131,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 8 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1485,10 +2159,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 10 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1507,10 +2181,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 10 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1532,10 +2206,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 11 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1554,10 +2228,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 11 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1579,10 +2253,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 12 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1601,10 +2275,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 13 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1623,10 +2297,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 13 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1648,10 +2322,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 12 this -340475003 +557041912 1 this.theArray -1466939813 +1134712904 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1683,10 +2357,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 14 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1708,10 +2382,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 15 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1730,10 +2404,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 15 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1752,10 +2426,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 16 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1774,10 +2448,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 16 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1799,10 +2473,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 17 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1821,10 +2495,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 17 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1846,10 +2520,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 18 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1868,10 +2542,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 19 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1890,10 +2564,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 19 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1915,10 +2589,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 18 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1943,10 +2617,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 20 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1965,10 +2639,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 20 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -1990,10 +2664,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 21 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2012,10 +2686,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 22 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2034,10 +2708,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 22 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2059,10 +2733,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 21 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2087,10 +2761,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 23 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2109,10 +2783,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 23 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2134,10 +2808,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 24 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2156,10 +2830,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 24 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2181,10 +2855,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 25 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2203,10 +2877,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 26 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2225,10 +2899,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 26 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2250,10 +2924,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 25 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2278,10 +2952,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 27 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2300,10 +2974,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 27 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2322,10 +2996,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 28 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2344,10 +3018,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 28 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2369,10 +3043,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 29 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2391,10 +3065,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 29 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2413,10 +3087,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 30 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2435,10 +3109,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 30 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2460,10 +3134,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 31 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2482,10 +3156,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 31 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2507,10 +3181,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 32 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2529,10 +3203,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 33 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2551,10 +3225,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 33 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2576,10 +3250,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 32 this -732656791 +985922955 1 this.theArray -91454439 +1435804085 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2611,10 +3285,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 34 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2636,10 +3310,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 35 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2658,10 +3332,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 35 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2680,10 +3354,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 36 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2702,10 +3376,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 36 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2727,10 +3401,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 37 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2749,10 +3423,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 37 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2774,10 +3448,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 38 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2796,10 +3470,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 39 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2818,10 +3492,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 39 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2843,10 +3517,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 38 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2871,10 +3545,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 40 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2893,10 +3567,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 40 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2918,10 +3592,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 41 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2940,10 +3614,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 42 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2962,10 +3636,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 42 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -2987,10 +3661,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 41 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3015,10 +3689,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 43 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3037,10 +3711,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 43 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3062,10 +3736,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 44 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3084,10 +3758,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 44 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3109,10 +3783,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 45 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3131,10 +3805,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 46 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3153,10 +3827,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 46 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3178,10 +3852,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 45 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3206,10 +3880,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 47 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3224,7 +3898,7 @@ this.topOfStack -1 1 x -1623948668 +1784662007 1 x.getClass().getName() "DataStructures.StackAr" @@ -3234,10 +3908,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 48 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3256,10 +3930,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 48 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3277,14 +3951,48 @@ return true 1 +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +this_invocation_nonce +47 +this +1784662007 +1 +this.theArray +997110508 +1 +this.theArray.getClass().getName() +"java.lang.Object[]" +1 +this.theArray[..] +[] +1 +this.theArray[..].getClass().getName() +[] +1 +this.topOfStack +-1 +1 +x +1784662007 +1 +x.getClass().getName() +"DataStructures.StackAr" +1 +exception +509886383 +1 +exception.getClass().getName() +"DataStructures.Overflow" +1 + DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 49 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3303,10 +4011,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 49 this -1623948668 +1784662007 1 this.theArray -1335593353 +997110508 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3332,10 +4040,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 50 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3357,10 +4065,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 51 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3379,10 +4087,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 51 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3401,10 +4109,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 52 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3423,10 +4131,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 52 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3448,10 +4156,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 53 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3470,10 +4178,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 53 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3495,10 +4203,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 54 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3517,10 +4225,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 55 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3539,10 +4247,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 55 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3564,10 +4272,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 54 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3592,10 +4300,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 56 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3614,10 +4322,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 56 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3639,10 +4347,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 57 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3661,10 +4369,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 58 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3683,10 +4391,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 58 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3708,10 +4416,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 57 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3736,10 +4444,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 59 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3758,10 +4466,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 59 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3783,10 +4491,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 60 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3805,10 +4513,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 60 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3830,10 +4538,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 61 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3852,10 +4560,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 62 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3874,10 +4582,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 62 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3899,10 +4607,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 61 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3927,10 +4635,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 63 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3945,7 +4653,7 @@ this.topOfStack -1 1 x -583763294 +434091818 1 x.getClass().getName() "DataStructures.MyInteger" @@ -3955,10 +4663,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 64 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -3977,10 +4685,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 64 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -4002,16 +4710,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 63 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4020,7 +4728,7 @@ this.topOfStack 0 1 x -583763294 +434091818 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4030,16 +4738,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 65 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4052,16 +4760,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 65 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4077,16 +4785,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 66 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4099,16 +4807,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 66 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4124,16 +4832,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 67 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4146,16 +4854,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 68 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4168,16 +4876,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 68 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4193,16 +4901,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 67 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4211,7 +4919,7 @@ this.topOfStack 0 1 return -583763294 +434091818 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4221,16 +4929,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 69 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4239,7 +4947,7 @@ this.topOfStack 0 1 x -1604382762 +398887205 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4249,16 +4957,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 70 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4271,16 +4979,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 70 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -4296,16 +5004,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 69 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4314,7 +5022,7 @@ this.topOfStack 1 1 x -1604382762 +398887205 1 x.getClass().getName() "DataStructures.MyInteger" @@ -4324,16 +5032,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 71 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4346,16 +5054,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 71 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4371,16 +5079,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 72 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4393,16 +5101,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 72 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4418,16 +5126,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 73 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4440,16 +5148,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 74 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4462,16 +5170,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 74 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4487,16 +5195,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 73 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4505,7 +5213,7 @@ this.topOfStack 1 1 return -1604382762 +398887205 1 return.getClass().getName() "DataStructures.MyInteger" @@ -4515,16 +5223,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 75 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4533,7 +5241,7 @@ this.topOfStack 1 1 x -1056409202 +2114889273 1 x.getClass().getName() "java.lang.Object" @@ -4543,16 +5251,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 76 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4565,16 +5273,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 76 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -4590,16 +5298,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 75 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4608,7 +5316,7 @@ this.topOfStack 2 1 x -1056409202 +2114889273 1 x.getClass().getName() "java.lang.Object" @@ -4618,16 +5326,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 77 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4640,16 +5348,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 77 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4665,16 +5373,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 78 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4687,16 +5395,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 78 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4712,16 +5420,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 79 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4734,16 +5442,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 80 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4756,16 +5464,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 80 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4781,16 +5489,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 79 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4799,7 +5507,7 @@ this.topOfStack 2 1 return -1056409202 +2114889273 1 return.getClass().getName() "java.lang.Object" @@ -4809,16 +5517,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 81 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4827,7 +5535,7 @@ this.topOfStack 2 1 x -1822148265 +1025799482 1 x.getClass().getName() "java.lang.Object" @@ -4837,16 +5545,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 82 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4859,16 +5567,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 82 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -4884,16 +5592,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 81 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -4902,7 +5610,7 @@ this.topOfStack 3 1 x -1822148265 +1025799482 1 x.getClass().getName() "java.lang.Object" @@ -4912,16 +5620,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 83 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -4934,16 +5642,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 83 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -4959,16 +5667,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 84 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -4981,16 +5689,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 84 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5006,16 +5714,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 85 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5028,16 +5736,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 86 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5050,16 +5758,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 86 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5075,16 +5783,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 85 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5093,7 +5801,7 @@ this.topOfStack 3 1 return -1822148265 +1025799482 1 return.getClass().getName() "java.lang.Object" @@ -5103,16 +5811,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 87 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5121,7 +5829,7 @@ this.topOfStack 3 1 x -1729083635 +1504109395 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5131,16 +5839,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 88 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5153,16 +5861,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 88 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -5178,16 +5886,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 87 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5196,7 +5904,7 @@ this.topOfStack 4 1 x -1729083635 +1504109395 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5206,16 +5914,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 89 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5228,16 +5936,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 89 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5253,16 +5961,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 90 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5275,16 +5983,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 90 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5300,16 +6008,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 91 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5322,16 +6030,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 92 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5344,16 +6052,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 92 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5369,16 +6077,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 91 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5387,7 +6095,7 @@ this.topOfStack 4 1 return -1729083635 +1504109395 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5397,16 +6105,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 93 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5415,7 +6123,7 @@ this.topOfStack 4 1 x -959942241 +2047526627 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5425,16 +6133,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 94 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5447,16 +6155,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 94 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -5472,16 +6180,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 93 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5490,7 +6198,7 @@ this.topOfStack 5 1 x -959942241 +2047526627 1 x.getClass().getName() "DataStructures.MyInteger" @@ -5500,16 +6208,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 95 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5522,16 +6230,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 95 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5547,16 +6255,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 96 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5569,16 +6277,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 96 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5594,16 +6302,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 97 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5616,16 +6324,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 98 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5638,16 +6346,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 98 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5663,16 +6371,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 97 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5681,7 +6389,7 @@ this.topOfStack 5 1 return -959942241 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -5691,16 +6399,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 99 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5709,7 +6417,7 @@ this.topOfStack 5 1 x -1852088223 +1908316405 1 x.getClass().getName() "java.lang.Object" @@ -5719,16 +6427,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 100 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5741,16 +6449,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 100 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -5766,16 +6474,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 99 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5784,7 +6492,7 @@ this.topOfStack 6 1 x -1852088223 +1908316405 1 x.getClass().getName() "java.lang.Object" @@ -5794,16 +6502,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 101 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5816,16 +6524,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 101 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5841,16 +6549,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 102 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5863,16 +6571,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 102 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5888,16 +6596,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 103 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5910,16 +6618,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 104 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5932,16 +6640,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 104 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5957,16 +6665,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 103 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -5975,7 +6683,7 @@ this.topOfStack 6 1 return -1852088223 +1908316405 1 return.getClass().getName() "java.lang.Object" @@ -5985,16 +6693,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 105 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -6003,7 +6711,7 @@ this.topOfStack 6 1 x -271300696 +1873653341 1 x.getClass().getName() "java.lang.Object" @@ -6013,16 +6721,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 106 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -6035,16 +6743,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 106 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -6060,16 +6768,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 105 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6078,7 +6786,7 @@ this.topOfStack 7 1 x -271300696 +1873653341 1 x.getClass().getName() "java.lang.Object" @@ -6088,16 +6796,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 107 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6110,16 +6818,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 107 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6135,16 +6843,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 108 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6157,16 +6865,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 108 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6182,16 +6890,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 109 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6204,16 +6912,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 110 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6226,16 +6934,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 110 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6251,16 +6959,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 109 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6269,7 +6977,7 @@ this.topOfStack 7 1 return -271300696 +1873653341 1 return.getClass().getName() "java.lang.Object" @@ -6279,16 +6987,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 111 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6297,7 +7005,7 @@ this.topOfStack 7 1 x -643015091 +25126016 1 x.getClass().getName() "java.lang.Object" @@ -6307,16 +7015,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 112 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6329,16 +7037,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 112 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -6354,16 +7062,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 111 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6372,7 +7080,7 @@ this.topOfStack 8 1 x -643015091 +25126016 1 x.getClass().getName() "java.lang.Object" @@ -6382,16 +7090,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 113 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6404,16 +7112,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 113 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6429,16 +7137,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 114 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6451,16 +7159,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 114 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6476,16 +7184,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 115 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6498,16 +7206,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 116 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6520,16 +7228,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 116 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6545,16 +7253,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 115 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6563,7 +7271,7 @@ this.topOfStack 8 1 return -643015091 +25126016 1 return.getClass().getName() "java.lang.Object" @@ -6573,16 +7281,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 117 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6591,7 +7299,7 @@ this.topOfStack 8 1 x -1016922733 +762218386 1 x.getClass().getName() "java.lang.Object" @@ -6601,16 +7309,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 118 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6623,16 +7331,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 118 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -6648,16 +7356,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 117 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6666,7 +7374,7 @@ this.topOfStack 9 1 x -1016922733 +762218386 1 x.getClass().getName() "java.lang.Object" @@ -6676,16 +7384,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 119 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6698,16 +7406,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 119 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6723,16 +7431,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 120 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6745,16 +7453,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 120 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6770,16 +7478,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 121 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6792,16 +7500,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 122 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6814,16 +7522,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 122 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6839,16 +7547,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 121 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6857,7 +7565,7 @@ this.topOfStack 9 1 return -1016922733 +762218386 1 return.getClass().getName() "java.lang.Object" @@ -6867,16 +7575,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 123 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6889,16 +7597,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 123 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6914,16 +7622,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 124 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6936,16 +7644,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 124 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6961,16 +7669,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 125 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -6983,16 +7691,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 126 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -7005,16 +7713,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 126 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -7030,16 +7738,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 127 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -7052,16 +7760,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 128 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -7074,16 +7782,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 128 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -7099,16 +7807,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 127 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 1016922733] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 762218386] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -7117,7 +7825,7 @@ this.topOfStack 9 1 return -1016922733 +762218386 1 return.getClass().getName() "java.lang.Object" @@ -7127,16 +7835,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 125 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7145,7 +7853,7 @@ this.topOfStack 8 1 return -1016922733 +762218386 1 return.getClass().getName() "java.lang.Object" @@ -7155,16 +7863,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 129 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7177,16 +7885,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 129 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7202,16 +7910,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 130 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7224,16 +7932,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 130 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7249,16 +7957,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 131 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7271,16 +7979,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 132 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7293,16 +8001,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 132 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7318,16 +8026,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 131 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7336,7 +8044,7 @@ this.topOfStack 8 1 return -643015091 +25126016 1 return.getClass().getName() "java.lang.Object" @@ -7346,16 +8054,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 133 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7368,16 +8076,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 133 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7393,16 +8101,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 134 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7415,16 +8123,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 134 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7440,16 +8148,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 135 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7462,16 +8170,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 136 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7484,16 +8192,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 136 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 643015091 null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -7509,16 +8217,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 135 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7531,16 +8239,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 137 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7553,16 +8261,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 137 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7578,16 +8286,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 138 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7600,16 +8308,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 138 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7625,16 +8333,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 139 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7647,16 +8355,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 140 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7669,16 +8377,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 140 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7694,16 +8402,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 139 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7712,7 +8420,7 @@ this.topOfStack 7 1 return -271300696 +1873653341 1 return.getClass().getName() "java.lang.Object" @@ -7722,16 +8430,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 141 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7744,16 +8452,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 141 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7769,16 +8477,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 142 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7791,16 +8499,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 142 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7816,16 +8524,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 143 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7838,16 +8546,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 144 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7860,16 +8568,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 144 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7885,16 +8593,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 145 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7907,16 +8615,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 146 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7929,16 +8637,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 146 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7954,16 +8662,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 145 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696 null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null] @@ -7972,7 +8680,7 @@ this.topOfStack 7 1 return -271300696 +1873653341 1 return.getClass().getName() "java.lang.Object" @@ -7982,16 +8690,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 143 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8000,7 +8708,7 @@ this.topOfStack 6 1 return -271300696 +1873653341 1 return.getClass().getName() "java.lang.Object" @@ -8010,16 +8718,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 147 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8032,16 +8740,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 147 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8057,16 +8765,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 148 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8079,16 +8787,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 148 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8104,16 +8812,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 149 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8126,16 +8834,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 150 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8148,16 +8856,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 150 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8173,16 +8881,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 149 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8191,7 +8899,7 @@ this.topOfStack 6 1 return -1852088223 +1908316405 1 return.getClass().getName() "java.lang.Object" @@ -8201,16 +8909,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 151 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8223,16 +8931,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 151 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8248,16 +8956,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 152 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8270,16 +8978,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 152 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8295,16 +9003,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 153 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8317,16 +9025,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 154 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8339,16 +9047,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 154 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8364,16 +9072,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 155 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8386,16 +9094,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 156 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8408,16 +9116,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 156 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8433,16 +9141,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 155 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null] @@ -8451,7 +9159,7 @@ this.topOfStack 6 1 return -1852088223 +1908316405 1 return.getClass().getName() "java.lang.Object" @@ -8461,16 +9169,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 153 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8479,7 +9187,7 @@ this.topOfStack 5 1 return -1852088223 +1908316405 1 return.getClass().getName() "java.lang.Object" @@ -8489,16 +9197,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 157 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8511,16 +9219,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 157 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8536,16 +9244,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 158 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8558,16 +9266,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 158 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8583,16 +9291,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 159 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8605,16 +9313,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 160 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8627,16 +9335,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 160 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8652,16 +9360,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 159 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8670,7 +9378,7 @@ this.topOfStack 5 1 return -959942241 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8680,16 +9388,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 161 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8702,16 +9410,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 161 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8727,16 +9435,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 162 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8749,16 +9457,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 162 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8774,16 +9482,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 163 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8796,16 +9504,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 164 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8818,16 +9526,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 164 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8843,16 +9551,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 165 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8865,16 +9573,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 166 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8887,16 +9595,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 166 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8912,16 +9620,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 165 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 959942241 null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 2047526627 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -8930,7 +9638,7 @@ this.topOfStack 5 1 return -959942241 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8940,16 +9648,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 163 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -8958,7 +9666,7 @@ this.topOfStack 4 1 return -959942241 +2047526627 1 return.getClass().getName() "DataStructures.MyInteger" @@ -8968,16 +9676,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 167 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -8990,16 +9698,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 167 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9015,16 +9723,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 168 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9037,16 +9745,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 168 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9062,16 +9770,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 169 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9084,16 +9792,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 170 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9106,16 +9814,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 170 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9131,16 +9839,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 169 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9149,7 +9857,7 @@ this.topOfStack 4 1 return -1729083635 +1504109395 1 return.getClass().getName() "DataStructures.MyInteger" @@ -9159,16 +9867,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 171 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9181,16 +9889,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 171 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9206,16 +9914,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 172 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9228,16 +9936,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 172 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9253,16 +9961,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 173 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9275,16 +9983,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 174 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9297,16 +10005,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 174 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 1729083635 null null null null null] +[434091818 398887205 2114889273 1025799482 1504109395 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null] @@ -9322,16 +10030,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 173 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9344,16 +10052,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 175 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9366,16 +10074,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 175 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9391,16 +10099,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 176 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9413,16 +10121,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 176 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9438,16 +10146,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 177 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9460,16 +10168,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 178 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9482,16 +10190,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 178 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9507,16 +10215,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 177 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9525,7 +10233,7 @@ this.topOfStack 3 1 return -1822148265 +1025799482 1 return.getClass().getName() "java.lang.Object" @@ -9535,16 +10243,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 179 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9557,16 +10265,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 179 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9582,16 +10290,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 180 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9604,16 +10312,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 180 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9629,16 +10337,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 181 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9651,16 +10359,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 182 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9673,16 +10381,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 182 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9698,16 +10406,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 183 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9720,16 +10428,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 184 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9742,16 +10450,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 184 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9767,16 +10475,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 183 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 1822148265 null null null null null null] +[434091818 398887205 2114889273 1025799482 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -9785,7 +10493,7 @@ this.topOfStack 3 1 return -1822148265 +1025799482 1 return.getClass().getName() "java.lang.Object" @@ -9795,16 +10503,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 181 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9813,7 +10521,7 @@ this.topOfStack 2 1 return -1822148265 +1025799482 1 return.getClass().getName() "java.lang.Object" @@ -9823,16 +10531,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 185 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9845,16 +10553,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 185 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9870,16 +10578,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 186 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9892,16 +10600,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 186 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9917,16 +10625,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 187 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9939,16 +10647,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 188 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9961,16 +10669,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 188 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -9986,16 +10694,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 187 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10004,7 +10712,7 @@ this.topOfStack 2 1 return -1056409202 +2114889273 1 return.getClass().getName() "java.lang.Object" @@ -10014,16 +10722,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 189 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10036,16 +10744,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 189 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10061,16 +10769,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 190 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10083,16 +10791,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 190 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10108,16 +10816,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 191 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10130,16 +10838,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 192 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10152,16 +10860,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 192 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 1056409202 null null null null null null null] +[434091818 398887205 2114889273 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null] @@ -10177,16 +10885,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 191 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10199,16 +10907,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 193 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10221,16 +10929,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 193 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10246,16 +10954,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 194 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10268,16 +10976,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 194 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10293,16 +11001,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 195 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10315,16 +11023,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 196 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10337,16 +11045,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 196 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10362,16 +11070,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 195 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10380,7 +11088,7 @@ this.topOfStack 1 1 return -1604382762 +398887205 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10390,16 +11098,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 197 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10412,16 +11120,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 197 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10437,16 +11145,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 198 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10459,16 +11167,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 198 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10484,16 +11192,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 199 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10506,16 +11214,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 200 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10528,16 +11236,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 200 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10553,16 +11261,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 201 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10575,16 +11283,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 202 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10597,16 +11305,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 202 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10622,16 +11330,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 201 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 1604382762 null null null null null null null null] +[434091818 398887205 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null] @@ -10640,7 +11348,7 @@ this.topOfStack 1 1 return -1604382762 +398887205 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10650,16 +11358,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 199 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10668,7 +11376,7 @@ this.topOfStack 0 1 return -1604382762 +398887205 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10678,16 +11386,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 203 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10700,16 +11408,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 203 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10725,16 +11433,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 204 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10747,16 +11455,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 204 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10772,16 +11480,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 205 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10794,16 +11502,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 206 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10816,16 +11524,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 206 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10841,16 +11549,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 205 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10859,7 +11567,7 @@ this.topOfStack 0 1 return -583763294 +434091818 1 return.getClass().getName() "DataStructures.MyInteger" @@ -10869,16 +11577,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 207 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10891,16 +11599,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 207 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10916,16 +11624,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 208 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10938,16 +11646,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 208 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10963,16 +11671,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 209 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -10985,16 +11693,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 210 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -11007,16 +11715,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 210 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -11032,16 +11740,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 211 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -11054,16 +11762,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 212 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -11076,16 +11784,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 212 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -11101,16 +11809,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 211 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[583763294 null null null null null null null null null] +[434091818 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null] @@ -11119,7 +11827,7 @@ this.topOfStack 0 1 return -583763294 +434091818 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11129,10 +11837,10 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 209 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11147,7 +11855,7 @@ this.topOfStack -1 1 return -583763294 +434091818 1 return.getClass().getName() "DataStructures.MyInteger" @@ -11157,10 +11865,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 213 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11179,10 +11887,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 213 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11204,10 +11912,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 214 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11226,10 +11934,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 214 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11251,10 +11959,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 215 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11273,10 +11981,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 216 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11295,10 +12003,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 216 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11320,10 +12028,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 215 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11348,10 +12056,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 217 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11370,10 +12078,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 217 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11395,10 +12103,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 218 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11417,10 +12125,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 218 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11439,10 +12147,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 219 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11461,10 +12169,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 219 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11486,10 +12194,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 220 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11508,10 +12216,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 220 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11533,10 +12241,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 221 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11555,10 +12263,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 222 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11577,10 +12285,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 222 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11602,10 +12310,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 221 this -1818405427 +1854778591 1 this.theArray -1100231132 +2054798982 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11637,10 +12345,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 223 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11662,10 +12370,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 224 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11684,10 +12392,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 224 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11706,10 +12414,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 225 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11728,10 +12436,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 225 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11753,10 +12461,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 226 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11775,10 +12483,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 226 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11800,10 +12508,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 227 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11822,10 +12530,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 228 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11844,10 +12552,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 228 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11869,10 +12577,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 227 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11897,10 +12605,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 229 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11919,10 +12627,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 229 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11944,10 +12652,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 230 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11966,10 +12674,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 231 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -11988,10 +12696,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 231 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12013,10 +12721,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 230 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12041,10 +12749,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 232 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12063,10 +12771,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 232 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12088,10 +12796,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 233 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12110,10 +12818,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 233 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12135,10 +12843,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 234 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12157,10 +12865,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 235 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12179,10 +12887,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 235 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12204,10 +12912,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 234 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12232,10 +12940,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 236 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12250,7 +12958,7 @@ this.topOfStack -1 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -12260,10 +12968,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 237 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12282,10 +12990,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 237 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -12307,16 +13015,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 236 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12325,7 +13033,7 @@ this.topOfStack 0 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -12335,16 +13043,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 238 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12357,16 +13065,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 238 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12382,16 +13090,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 239 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12404,16 +13112,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 239 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12429,16 +13137,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 240 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12451,16 +13159,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 241 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12473,16 +13181,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 241 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12498,16 +13206,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 240 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12516,7 +13224,7 @@ this.topOfStack 0 1 return -1745510705 +672320506 1 return.getClass().getName() "DataStructures.StackAr" @@ -12526,16 +13234,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 242 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12544,7 +13252,7 @@ this.topOfStack 0 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -12554,16 +13262,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 243 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12576,16 +13284,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 243 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 null null null null null null null null null] +[672320506 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -12601,16 +13309,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 242 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12619,7 +13327,7 @@ this.topOfStack 1 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -12629,16 +13337,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 244 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12651,16 +13359,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 244 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12676,16 +13384,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 245 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12698,16 +13406,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 245 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12723,16 +13431,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 246 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12745,16 +13453,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 247 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12767,16 +13475,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 247 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12792,16 +13500,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 246 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12810,7 +13518,7 @@ this.topOfStack 1 1 return -1745510705 +672320506 1 return.getClass().getName() "DataStructures.StackAr" @@ -12820,16 +13528,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 248 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12838,7 +13546,7 @@ this.topOfStack 1 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -12848,16 +13556,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 249 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12870,16 +13578,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 249 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 null null null null null null null null] +[672320506 672320506 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -12895,16 +13603,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 248 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -12913,7 +13621,7 @@ this.topOfStack 2 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -12923,16 +13631,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 250 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -12945,16 +13653,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 250 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -12970,16 +13678,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 251 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -12992,16 +13700,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 251 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13017,16 +13725,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 252 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13039,16 +13747,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 253 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13061,16 +13769,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 253 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13086,16 +13794,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 252 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13104,7 +13812,7 @@ this.topOfStack 2 1 return -1745510705 +672320506 1 return.getClass().getName() "DataStructures.StackAr" @@ -13114,16 +13822,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 254 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13132,7 +13840,7 @@ this.topOfStack 2 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -13142,16 +13850,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 255 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13164,16 +13872,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 255 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 null null null null null null null] +[672320506 672320506 672320506 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -13189,16 +13897,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 254 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13207,7 +13915,7 @@ this.topOfStack 3 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -13217,16 +13925,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 256 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13239,16 +13947,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 256 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13264,16 +13972,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 257 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13286,16 +13994,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 257 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13311,16 +14019,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 258 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13333,16 +14041,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 259 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13355,16 +14063,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 259 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13380,16 +14088,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 258 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13398,7 +14106,7 @@ this.topOfStack 3 1 return -1745510705 +672320506 1 return.getClass().getName() "DataStructures.StackAr" @@ -13408,16 +14116,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 260 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13426,7 +14134,7 @@ this.topOfStack 3 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -13436,16 +14144,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 261 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13458,16 +14166,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 261 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 null null null null null null] +[672320506 672320506 672320506 672320506 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -13483,16 +14191,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 260 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13501,7 +14209,7 @@ this.topOfStack 4 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -13511,16 +14219,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 262 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13533,16 +14241,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 262 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13558,16 +14266,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 263 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13580,16 +14288,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 263 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13605,16 +14313,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 264 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13627,16 +14335,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 265 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13649,16 +14357,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 265 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13674,16 +14382,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 264 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13692,7 +14400,7 @@ this.topOfStack 4 1 return -1745510705 +672320506 1 return.getClass().getName() "DataStructures.StackAr" @@ -13702,16 +14410,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 266 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13720,7 +14428,7 @@ this.topOfStack 4 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -13730,16 +14438,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 267 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13752,16 +14460,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 267 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 null null null null null] +[672320506 672320506 672320506 672320506 672320506 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -13777,16 +14485,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 266 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13795,7 +14503,7 @@ this.topOfStack 5 1 x -1745510705 +672320506 1 x.getClass().getName() "DataStructures.StackAr" @@ -13805,16 +14513,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 268 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13827,16 +14535,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 268 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13852,16 +14560,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 269 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13874,16 +14582,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 269 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13899,16 +14607,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 270 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13921,16 +14629,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 271 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13943,16 +14651,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 271 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13968,16 +14676,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 270 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -13986,7 +14694,7 @@ this.topOfStack 5 1 return -1745510705 +672320506 1 return.getClass().getName() "DataStructures.StackAr" @@ -13996,16 +14704,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 272 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1745510705 1745510705 1745510705 1745510705 1745510705 1745510705 null null null null] +[672320506 672320506 672320506 672320506 672320506 672320506 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -14018,10 +14726,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 272 this -1745510705 +672320506 1 this.theArray -24317268 +718231523 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14047,10 +14755,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 273 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14072,10 +14780,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 274 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14094,10 +14802,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 274 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14116,10 +14824,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 275 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14138,10 +14846,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 275 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14163,10 +14871,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 276 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14185,10 +14893,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 276 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14210,10 +14918,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 277 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14232,10 +14940,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 278 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14254,10 +14962,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 278 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14279,10 +14987,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 277 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14307,10 +15015,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 279 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14329,10 +15037,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 279 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14354,10 +15062,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 280 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14376,10 +15084,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 281 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14398,10 +15106,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 281 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14423,10 +15131,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 280 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14451,10 +15159,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 282 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14473,10 +15181,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 282 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14498,10 +15206,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 283 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14520,10 +15228,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 283 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14545,10 +15253,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 284 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14567,10 +15275,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 285 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14589,10 +15297,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 285 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14614,10 +15322,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 284 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14642,10 +15350,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 286 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14660,7 +15368,7 @@ this.topOfStack -1 1 x -262085285 +932607259 1 x.getClass().getName() "java.lang.Object" @@ -14670,10 +15378,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 287 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14692,10 +15400,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 287 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -14717,16 +15425,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 286 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14735,7 +15443,7 @@ this.topOfStack 0 1 x -262085285 +932607259 1 x.getClass().getName() "java.lang.Object" @@ -14745,16 +15453,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 288 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14767,16 +15475,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 288 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14792,16 +15500,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 289 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14814,16 +15522,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 289 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14839,16 +15547,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 290 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14861,16 +15569,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 291 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14883,16 +15591,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 291 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14908,16 +15616,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 290 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14926,7 +15634,7 @@ this.topOfStack 0 1 return -262085285 +932607259 1 return.getClass().getName() "java.lang.Object" @@ -14936,16 +15644,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 292 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14954,7 +15662,7 @@ this.topOfStack 0 1 x -378424998 +1740000325 1 x.getClass().getName() "java.lang.Object" @@ -14964,16 +15672,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 293 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -14986,16 +15694,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 293 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -15011,16 +15719,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 292 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15029,7 +15737,7 @@ this.topOfStack 1 1 x -378424998 +1740000325 1 x.getClass().getName() "java.lang.Object" @@ -15039,16 +15747,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 294 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15061,16 +15769,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 294 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15086,16 +15794,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 295 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15108,16 +15816,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 295 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15133,16 +15841,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 296 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15155,16 +15863,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 297 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15177,16 +15885,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 297 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15202,16 +15910,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 296 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15220,7 +15928,7 @@ this.topOfStack 1 1 return -378424998 +1740000325 1 return.getClass().getName() "java.lang.Object" @@ -15230,16 +15938,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 298 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15248,7 +15956,7 @@ this.topOfStack 1 1 x -1489862619 +1142020464 1 x.getClass().getName() "java.lang.Object" @@ -15258,16 +15966,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 299 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15280,16 +15988,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 299 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -15305,16 +16013,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 298 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15323,7 +16031,7 @@ this.topOfStack 2 1 x -1489862619 +1142020464 1 x.getClass().getName() "java.lang.Object" @@ -15333,16 +16041,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 300 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15355,16 +16063,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 300 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15380,16 +16088,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 301 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15402,16 +16110,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 301 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15427,16 +16135,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 302 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15449,16 +16157,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 303 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15471,16 +16179,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 303 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15496,16 +16204,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 302 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15514,7 +16222,7 @@ this.topOfStack 2 1 return -1489862619 +1142020464 1 return.getClass().getName() "java.lang.Object" @@ -15524,16 +16232,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 304 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15542,7 +16250,7 @@ this.topOfStack 2 1 x -461713513 +1682092198 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15552,16 +16260,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 305 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15574,16 +16282,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 305 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -15599,16 +16307,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 304 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15617,7 +16325,7 @@ this.topOfStack 3 1 x -461713513 +1682092198 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15627,16 +16335,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 306 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15649,16 +16357,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 306 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15674,16 +16382,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 307 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15696,16 +16404,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 307 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15721,16 +16429,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 308 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15743,16 +16451,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 309 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15765,16 +16473,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 309 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15790,16 +16498,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 308 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15808,7 +16516,7 @@ this.topOfStack 3 1 return -461713513 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -15818,16 +16526,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 310 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15836,7 +16544,7 @@ this.topOfStack 3 1 x -1160596380 +1626877848 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15846,16 +16554,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 311 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15868,16 +16576,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 311 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -15893,16 +16601,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 310 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15911,7 +16619,7 @@ this.topOfStack 4 1 x -1160596380 +1626877848 1 x.getClass().getName() "DataStructures.MyInteger" @@ -15921,16 +16629,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 312 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15943,16 +16651,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 312 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15968,16 +16676,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 313 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -15990,16 +16698,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 313 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16015,16 +16723,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 314 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16037,16 +16745,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 315 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16059,16 +16767,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 315 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16084,16 +16792,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 314 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16102,7 +16810,7 @@ this.topOfStack 4 1 return -1160596380 +1626877848 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16112,16 +16820,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 316 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16130,7 +16838,7 @@ this.topOfStack 4 1 x -549392959 +905544614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16140,16 +16848,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 317 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16162,16 +16870,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 317 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -16187,16 +16895,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 316 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16205,7 +16913,7 @@ this.topOfStack 5 1 x -549392959 +905544614 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16215,16 +16923,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 318 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16237,16 +16945,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 318 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16262,16 +16970,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 319 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16284,16 +16992,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 319 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16309,16 +17017,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 320 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16331,16 +17039,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 321 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16353,16 +17061,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 321 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16378,16 +17086,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 320 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16396,7 +17104,7 @@ this.topOfStack 5 1 return -549392959 +905544614 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16406,16 +17114,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 322 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16424,7 +17132,7 @@ this.topOfStack 5 1 x -1615263460 +2137589296 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16434,16 +17142,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 323 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16456,16 +17164,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 323 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -16481,16 +17189,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 322 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16499,7 +17207,7 @@ this.topOfStack 6 1 x -1615263460 +2137589296 1 x.getClass().getName() "DataStructures.MyInteger" @@ -16509,16 +17217,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 324 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16531,16 +17239,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 324 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16556,16 +17264,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 325 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16578,16 +17286,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 325 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16603,16 +17311,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 326 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16625,16 +17333,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 327 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16647,16 +17355,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 327 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16672,16 +17380,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 326 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16690,7 +17398,7 @@ this.topOfStack 6 1 return -1615263460 +2137589296 1 return.getClass().getName() "DataStructures.MyInteger" @@ -16700,16 +17408,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 328 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16718,7 +17426,7 @@ this.topOfStack 6 1 x -1392190493 +249515771 1 x.getClass().getName() "java.lang.Object" @@ -16728,16 +17436,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 329 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16750,16 +17458,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 329 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -16775,16 +17483,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 328 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16793,7 +17501,7 @@ this.topOfStack 7 1 x -1392190493 +249515771 1 x.getClass().getName() "java.lang.Object" @@ -16803,16 +17511,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 330 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16825,16 +17533,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 330 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16850,16 +17558,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 331 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16872,16 +17580,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 331 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16897,16 +17605,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 332 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16919,16 +17627,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 333 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16941,16 +17649,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 333 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16966,16 +17674,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 332 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -16984,7 +17692,7 @@ this.topOfStack 7 1 return -1392190493 +249515771 1 return.getClass().getName() "java.lang.Object" @@ -16994,16 +17702,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 334 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -17012,7 +17720,7 @@ this.topOfStack 7 1 x -1711281786 +796533847 1 x.getClass().getName() "java.lang.Object" @@ -17022,16 +17730,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 335 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -17044,16 +17752,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 335 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -17069,16 +17777,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 334 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17087,7 +17795,7 @@ this.topOfStack 8 1 x -1711281786 +796533847 1 x.getClass().getName() "java.lang.Object" @@ -17097,16 +17805,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 336 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17119,16 +17827,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 336 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17144,16 +17852,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 337 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17166,16 +17874,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 337 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17191,16 +17899,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 338 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17213,16 +17921,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 339 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17235,16 +17943,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 339 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17260,16 +17968,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 338 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17278,7 +17986,7 @@ this.topOfStack 8 1 return -1711281786 +796533847 1 return.getClass().getName() "java.lang.Object" @@ -17288,16 +17996,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 340 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17306,7 +18014,7 @@ this.topOfStack 8 1 x -264493031 +1449621165 1 x.getClass().getName() "java.lang.Object" @@ -17316,16 +18024,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 341 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17338,16 +18046,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 341 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -17363,16 +18071,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 340 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17381,7 +18089,7 @@ this.topOfStack 9 1 x -264493031 +1449621165 1 x.getClass().getName() "java.lang.Object" @@ -17391,16 +18099,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 342 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17413,16 +18121,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 342 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17438,16 +18146,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 343 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17460,16 +18168,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 343 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17485,16 +18193,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 344 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17507,16 +18215,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 345 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17529,16 +18237,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 345 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17554,16 +18262,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 344 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17572,7 +18280,7 @@ this.topOfStack 9 1 return -264493031 +1449621165 1 return.getClass().getName() "java.lang.Object" @@ -17582,16 +18290,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 346 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17600,7 +18308,7 @@ this.topOfStack 9 1 x -43222727 +1627960023 1 x.getClass().getName() "java.lang.Object" @@ -17610,16 +18318,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 347 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17632,16 +18340,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 347 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -17657,16 +18365,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 346 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17675,7 +18383,7 @@ this.topOfStack 10 1 x -43222727 +1627960023 1 x.getClass().getName() "java.lang.Object" @@ -17685,16 +18393,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 348 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17707,16 +18415,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 348 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17732,16 +18440,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 349 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17754,16 +18462,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 349 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17779,16 +18487,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 350 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17801,16 +18509,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 351 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17823,16 +18531,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 351 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17848,16 +18556,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 350 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17866,7 +18574,7 @@ this.topOfStack 10 1 return -43222727 +1627960023 1 return.getClass().getName() "java.lang.Object" @@ -17876,16 +18584,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 352 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17894,7 +18602,7 @@ this.topOfStack 10 1 x -594900003 +357863579 1 x.getClass().getName() "java.lang.Object" @@ -17904,16 +18612,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 353 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17926,16 +18634,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 353 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -17951,16 +18659,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 352 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -17969,7 +18677,7 @@ this.topOfStack 11 1 x -594900003 +357863579 1 x.getClass().getName() "java.lang.Object" @@ -17979,16 +18687,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 354 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18001,16 +18709,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 354 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18026,16 +18734,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 355 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18048,16 +18756,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 355 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18073,16 +18781,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 356 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18095,16 +18803,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 357 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18117,16 +18825,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 357 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18142,16 +18850,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 356 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18160,7 +18868,7 @@ this.topOfStack 11 1 return -594900003 +357863579 1 return.getClass().getName() "java.lang.Object" @@ -18170,16 +18878,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 358 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18188,7 +18896,7 @@ this.topOfStack 11 1 x -1947973636 +1811044090 1 x.getClass().getName() "java.lang.Object" @@ -18198,16 +18906,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 359 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18220,16 +18928,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 359 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -18245,16 +18953,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 358 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18263,7 +18971,7 @@ this.topOfStack 12 1 x -1947973636 +1811044090 1 x.getClass().getName() "java.lang.Object" @@ -18273,16 +18981,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 360 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18295,16 +19003,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 360 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18320,16 +19028,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 361 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18342,16 +19050,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 361 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18367,16 +19075,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 362 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18389,16 +19097,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 363 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18411,16 +19119,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 363 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18436,16 +19144,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 362 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18454,7 +19162,7 @@ this.topOfStack 12 1 return -1947973636 +1811044090 1 return.getClass().getName() "java.lang.Object" @@ -18464,16 +19172,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 364 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18482,7 +19190,7 @@ this.topOfStack 12 1 x -1204701737 +114132791 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18492,16 +19200,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 365 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18514,16 +19222,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 365 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -18539,16 +19247,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 364 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18557,7 +19265,7 @@ this.topOfStack 13 1 x -1204701737 +114132791 1 x.getClass().getName() "DataStructures.MyInteger" @@ -18567,16 +19275,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 366 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18589,16 +19297,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 366 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18614,16 +19322,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 367 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18636,16 +19344,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 367 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18661,16 +19369,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 368 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18683,16 +19391,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 369 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18705,16 +19413,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 369 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18730,16 +19438,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 368 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18748,7 +19456,7 @@ this.topOfStack 13 1 return -1204701737 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -18758,16 +19466,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 370 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18776,7 +19484,7 @@ this.topOfStack 13 1 x -946269843 +586617651 1 x.getClass().getName() "java.lang.Object" @@ -18786,16 +19494,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 371 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18808,16 +19516,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 371 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -18833,16 +19541,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 370 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18851,7 +19559,7 @@ this.topOfStack 14 1 x -946269843 +586617651 1 x.getClass().getName() "java.lang.Object" @@ -18861,16 +19569,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 372 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18883,16 +19591,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 372 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18908,16 +19616,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 373 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18930,16 +19638,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 373 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18955,16 +19663,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 374 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18977,16 +19685,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 375 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -18999,16 +19707,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 375 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -19024,16 +19732,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 374 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -19042,7 +19750,7 @@ this.topOfStack 14 1 return -946269843 +586617651 1 return.getClass().getName() "java.lang.Object" @@ -19052,16 +19760,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 376 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -19070,7 +19778,7 @@ this.topOfStack 14 1 x -1840845266 +328638398 1 x.getClass().getName() "java.lang.Object" @@ -19080,16 +19788,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 377 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -19102,16 +19810,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 377 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -19127,16 +19835,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 376 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19145,7 +19853,7 @@ this.topOfStack 15 1 x -1840845266 +328638398 1 x.getClass().getName() "java.lang.Object" @@ -19155,16 +19863,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 378 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19177,16 +19885,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 378 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19202,16 +19910,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 379 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19224,16 +19932,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 379 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19249,16 +19957,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 380 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19271,16 +19979,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 381 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19293,16 +20001,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 381 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19318,16 +20026,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 380 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19336,7 +20044,7 @@ this.topOfStack 15 1 return -1840845266 +328638398 1 return.getClass().getName() "java.lang.Object" @@ -19346,16 +20054,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 382 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19364,7 +20072,7 @@ this.topOfStack 15 1 x -289483333 +1789550256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19374,16 +20082,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 383 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19396,16 +20104,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 383 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -19421,16 +20129,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 382 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19439,7 +20147,7 @@ this.topOfStack 16 1 x -289483333 +1789550256 1 x.getClass().getName() "DataStructures.MyInteger" @@ -19449,16 +20157,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 384 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19471,16 +20179,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 384 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19496,16 +20204,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 385 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19518,16 +20226,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 385 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19543,16 +20251,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 386 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19565,16 +20273,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 387 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19587,16 +20295,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 387 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19612,16 +20320,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 386 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19630,7 +20338,7 @@ this.topOfStack 16 1 return -289483333 +1789550256 1 return.getClass().getName() "DataStructures.MyInteger" @@ -19640,16 +20348,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 388 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19658,7 +20366,7 @@ this.topOfStack 16 1 x -1295917276 +3447021 1 x.getClass().getName() "java.lang.Object" @@ -19668,16 +20376,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 389 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19690,16 +20398,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 389 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -19715,16 +20423,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 388 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19733,7 +20441,7 @@ this.topOfStack 17 1 x -1295917276 +3447021 1 x.getClass().getName() "java.lang.Object" @@ -19743,16 +20451,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 390 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19765,16 +20473,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 390 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19790,16 +20498,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 391 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19812,16 +20520,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 391 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19837,16 +20545,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 392 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19859,16 +20567,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 393 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19881,16 +20589,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 393 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19906,16 +20614,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 392 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19924,7 +20632,7 @@ this.topOfStack 17 1 return -1295917276 +3447021 1 return.getClass().getName() "java.lang.Object" @@ -19934,16 +20642,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 394 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19952,7 +20660,7 @@ this.topOfStack 17 1 x -702509858 +440434003 1 x.getClass().getName() "java.lang.Object" @@ -19962,16 +20670,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 395 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -19984,16 +20692,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 395 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -20009,16 +20717,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 394 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20027,7 +20735,7 @@ this.topOfStack 18 1 x -702509858 +440434003 1 x.getClass().getName() "java.lang.Object" @@ -20037,16 +20745,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 396 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20059,16 +20767,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 396 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20084,16 +20792,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 397 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20106,16 +20814,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 397 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20131,16 +20839,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 398 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20153,16 +20861,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 399 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20175,16 +20883,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 399 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20200,16 +20908,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 398 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20218,7 +20926,7 @@ this.topOfStack 18 1 return -702509858 +440434003 1 return.getClass().getName() "java.lang.Object" @@ -20228,16 +20936,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 400 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20246,7 +20954,7 @@ this.topOfStack 18 1 x -218092200 +1032616650 1 x.getClass().getName() "java.lang.Object" @@ -20256,16 +20964,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 401 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20278,16 +20986,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 401 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20303,16 +21011,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 400 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20321,7 +21029,7 @@ this.topOfStack 19 1 x -218092200 +1032616650 1 x.getClass().getName() "java.lang.Object" @@ -20331,16 +21039,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 402 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20353,16 +21061,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 402 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20378,16 +21086,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 403 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20400,16 +21108,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 403 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20425,16 +21133,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 404 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20447,16 +21155,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 405 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20469,16 +21177,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 405 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20494,16 +21202,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 404 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20512,7 +21220,7 @@ this.topOfStack 19 1 return -218092200 +1032616650 1 return.getClass().getName() "java.lang.Object" @@ -20522,16 +21230,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 406 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20544,16 +21252,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 406 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20569,16 +21277,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 407 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20591,16 +21299,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 407 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20616,16 +21324,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 408 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20638,16 +21346,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 409 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20660,16 +21368,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 409 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20685,16 +21393,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 410 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20707,16 +21415,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 411 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20729,16 +21437,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 411 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20754,16 +21462,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 410 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 218092200] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 1032616650] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -20772,7 +21480,7 @@ this.topOfStack 19 1 return -218092200 +1032616650 1 return.getClass().getName() "java.lang.Object" @@ -20782,16 +21490,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 408 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20800,7 +21508,7 @@ this.topOfStack 18 1 return -218092200 +1032616650 1 return.getClass().getName() "java.lang.Object" @@ -20810,16 +21518,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 412 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20832,16 +21540,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 412 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20857,16 +21565,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 413 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20879,16 +21587,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 413 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20904,16 +21612,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 414 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20926,16 +21634,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 415 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20948,16 +21656,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 415 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20973,16 +21681,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 414 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -20991,7 +21699,7 @@ this.topOfStack 18 1 return -702509858 +440434003 1 return.getClass().getName() "java.lang.Object" @@ -21001,16 +21709,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 416 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21023,16 +21731,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 416 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21048,16 +21756,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 417 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21070,16 +21778,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 417 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21095,16 +21803,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 418 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21117,16 +21825,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 419 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21139,16 +21847,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 419 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21164,16 +21872,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 420 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21186,16 +21894,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 421 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21208,16 +21916,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 421 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21233,16 +21941,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 420 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 702509858 null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 440434003 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -21251,7 +21959,7 @@ this.topOfStack 18 1 return -702509858 +440434003 1 return.getClass().getName() "java.lang.Object" @@ -21261,16 +21969,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 418 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21279,7 +21987,7 @@ this.topOfStack 17 1 return -702509858 +440434003 1 return.getClass().getName() "java.lang.Object" @@ -21289,16 +21997,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 422 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21311,16 +22019,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 422 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21336,16 +22044,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 423 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21358,16 +22066,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 423 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21383,16 +22091,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 424 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21405,16 +22113,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 425 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21427,16 +22135,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 425 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21452,16 +22160,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 424 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21470,7 +22178,7 @@ this.topOfStack 17 1 return -1295917276 +3447021 1 return.getClass().getName() "java.lang.Object" @@ -21480,16 +22188,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 426 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21502,16 +22210,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 426 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21527,16 +22235,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 427 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21549,16 +22257,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 427 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21574,16 +22282,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 428 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21596,16 +22304,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 429 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21618,16 +22326,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 429 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 1295917276 null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 3447021 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -21643,16 +22351,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 428 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21665,16 +22373,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 430 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21687,16 +22395,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 430 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21712,16 +22420,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 431 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21734,16 +22442,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 431 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21759,16 +22467,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 432 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21781,16 +22489,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 433 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21803,16 +22511,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 433 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21828,16 +22536,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 432 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21846,7 +22554,7 @@ this.topOfStack 16 1 return -289483333 +1789550256 1 return.getClass().getName() "DataStructures.MyInteger" @@ -21856,16 +22564,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 434 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21878,16 +22586,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 434 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21903,16 +22611,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 435 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21925,16 +22633,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 435 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21950,16 +22658,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 436 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21972,16 +22680,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 437 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -21994,16 +22702,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 437 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 289483333 null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 1789550256 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -22019,16 +22727,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 436 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22041,16 +22749,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 438 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22063,16 +22771,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 438 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22088,16 +22796,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 439 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22110,16 +22818,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 439 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22135,16 +22843,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 440 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22157,16 +22865,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 441 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22179,16 +22887,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 441 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22204,16 +22912,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 440 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22222,7 +22930,7 @@ this.topOfStack 15 1 return -1840845266 +328638398 1 return.getClass().getName() "java.lang.Object" @@ -22232,16 +22940,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 442 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22254,16 +22962,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 442 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22279,16 +22987,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 443 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22301,16 +23009,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 443 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22326,16 +23034,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 444 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22348,16 +23056,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 445 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22370,16 +23078,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 445 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22395,16 +23103,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 446 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22417,16 +23125,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 447 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22439,16 +23147,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 447 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22464,16 +23172,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 446 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 1840845266 null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 328638398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null] @@ -22482,7 +23190,7 @@ this.topOfStack 15 1 return -1840845266 +328638398 1 return.getClass().getName() "java.lang.Object" @@ -22492,16 +23200,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 444 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22510,7 +23218,7 @@ this.topOfStack 14 1 return -1840845266 +328638398 1 return.getClass().getName() "java.lang.Object" @@ -22520,16 +23228,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 448 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22542,16 +23250,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 448 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22567,16 +23275,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 449 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22589,16 +23297,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 449 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22614,16 +23322,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 450 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22636,16 +23344,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 451 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22658,16 +23366,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 451 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22683,16 +23391,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 450 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22701,7 +23409,7 @@ this.topOfStack 14 1 return -946269843 +586617651 1 return.getClass().getName() "java.lang.Object" @@ -22711,16 +23419,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 452 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22733,16 +23441,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 452 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22758,16 +23466,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 453 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22780,16 +23488,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 453 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22805,16 +23513,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 454 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22827,16 +23535,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 455 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22849,16 +23557,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 455 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22874,16 +23582,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 456 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22896,16 +23604,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 457 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22918,16 +23626,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 457 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22943,16 +23651,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 456 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 946269843 null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 586617651 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null] @@ -22961,7 +23669,7 @@ this.topOfStack 14 1 return -946269843 +586617651 1 return.getClass().getName() "java.lang.Object" @@ -22971,16 +23679,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 454 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -22989,7 +23697,7 @@ this.topOfStack 13 1 return -946269843 +586617651 1 return.getClass().getName() "java.lang.Object" @@ -22999,16 +23707,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 458 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23021,16 +23729,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 458 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23046,16 +23754,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 459 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23068,16 +23776,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 459 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23093,16 +23801,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 460 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23115,16 +23823,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 461 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23137,16 +23845,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 461 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23162,16 +23870,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 460 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23180,7 +23888,7 @@ this.topOfStack 13 1 return -1204701737 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23190,16 +23898,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 462 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23212,16 +23920,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 462 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23237,16 +23945,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 463 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23259,16 +23967,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 463 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23284,16 +23992,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 464 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23306,16 +24014,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 465 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23328,16 +24036,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 465 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23353,16 +24061,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 466 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23375,16 +24083,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 467 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23397,16 +24105,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 467 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23422,16 +24130,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 466 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 1204701737 null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 114132791 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -23440,7 +24148,7 @@ this.topOfStack 13 1 return -1204701737 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23450,16 +24158,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 464 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23468,7 +24176,7 @@ this.topOfStack 12 1 return -1204701737 +114132791 1 return.getClass().getName() "DataStructures.MyInteger" @@ -23478,16 +24186,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 468 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23500,16 +24208,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 468 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23525,16 +24233,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 469 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23547,16 +24255,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 469 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23572,16 +24280,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 470 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23594,16 +24302,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 471 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23616,16 +24324,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 471 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23641,16 +24349,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 470 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23659,7 +24367,7 @@ this.topOfStack 12 1 return -1947973636 +1811044090 1 return.getClass().getName() "java.lang.Object" @@ -23669,16 +24377,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 472 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23691,16 +24399,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 472 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23716,16 +24424,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 473 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23738,16 +24446,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 473 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23763,16 +24471,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 474 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23785,16 +24493,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 475 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23807,16 +24515,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 475 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 1947973636 null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 1811044090 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -23832,16 +24540,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 474 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23854,16 +24562,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 476 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23876,16 +24584,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 476 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23901,16 +24609,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 477 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23923,16 +24631,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 477 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23948,16 +24656,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 478 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23970,16 +24678,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 479 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -23992,16 +24700,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 479 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24017,16 +24725,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 478 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24035,7 +24743,7 @@ this.topOfStack 11 1 return -594900003 +357863579 1 return.getClass().getName() "java.lang.Object" @@ -24045,16 +24753,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 480 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24067,16 +24775,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 480 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24092,16 +24800,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 481 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24114,16 +24822,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 481 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24139,16 +24847,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 482 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24161,16 +24869,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 483 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24183,16 +24891,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 483 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24208,16 +24916,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 484 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24230,16 +24938,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 485 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24252,16 +24960,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 485 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24277,16 +24985,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 484 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 594900003 null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 357863579 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -24295,7 +25003,7 @@ this.topOfStack 11 1 return -594900003 +357863579 1 return.getClass().getName() "java.lang.Object" @@ -24305,16 +25013,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 482 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24323,7 +25031,7 @@ this.topOfStack 10 1 return -594900003 +357863579 1 return.getClass().getName() "java.lang.Object" @@ -24333,16 +25041,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 486 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24355,16 +25063,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 486 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24380,16 +25088,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 487 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24402,16 +25110,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 487 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24427,16 +25135,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 488 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24449,16 +25157,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 489 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24471,16 +25179,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 489 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24496,16 +25204,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 488 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24514,7 +25222,7 @@ this.topOfStack 10 1 return -43222727 +1627960023 1 return.getClass().getName() "java.lang.Object" @@ -24524,16 +25232,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 490 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24546,16 +25254,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 490 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24571,16 +25279,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 491 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24593,16 +25301,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 491 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24618,16 +25326,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 492 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24640,16 +25348,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 493 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24662,16 +25370,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 493 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 43222727 null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 1627960023 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null] @@ -24687,16 +25395,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 492 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24709,16 +25417,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 494 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24731,16 +25439,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 494 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24756,16 +25464,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 495 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24778,16 +25486,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 495 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24803,16 +25511,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 496 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24825,16 +25533,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 497 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24847,16 +25555,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 497 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24872,16 +25580,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 496 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24890,7 +25598,7 @@ this.topOfStack 9 1 return -264493031 +1449621165 1 return.getClass().getName() "java.lang.Object" @@ -24900,16 +25608,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 498 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24922,16 +25630,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 498 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24947,16 +25655,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 499 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24969,16 +25677,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 499 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -24994,16 +25702,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 500 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25016,16 +25724,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 501 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25038,16 +25746,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 501 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25063,16 +25771,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 502 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25085,16 +25793,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 503 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25107,16 +25815,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 503 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25132,16 +25840,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 502 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 264493031 null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 1449621165 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null] @@ -25150,7 +25858,7 @@ this.topOfStack 9 1 return -264493031 +1449621165 1 return.getClass().getName() "java.lang.Object" @@ -25160,16 +25868,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 500 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25178,7 +25886,7 @@ this.topOfStack 8 1 return -264493031 +1449621165 1 return.getClass().getName() "java.lang.Object" @@ -25188,16 +25896,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 504 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25210,16 +25918,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 504 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25235,16 +25943,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 505 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25257,16 +25965,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 505 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25282,16 +25990,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 506 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25304,16 +26012,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 507 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25326,16 +26034,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 507 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25351,16 +26059,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 506 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25369,7 +26077,7 @@ this.topOfStack 8 1 return -1711281786 +796533847 1 return.getClass().getName() "java.lang.Object" @@ -25379,16 +26087,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 508 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25401,16 +26109,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 508 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25426,16 +26134,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 509 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25448,16 +26156,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 509 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25473,16 +26181,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 510 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25495,16 +26203,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 511 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25517,16 +26225,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 511 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25542,16 +26250,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 512 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25564,16 +26272,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 513 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25586,16 +26294,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 513 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25611,16 +26319,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 512 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 1711281786 null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 796533847 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -25629,7 +26337,7 @@ this.topOfStack 8 1 return -1711281786 +796533847 1 return.getClass().getName() "java.lang.Object" @@ -25639,16 +26347,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 510 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25657,7 +26365,7 @@ this.topOfStack 7 1 return -1711281786 +796533847 1 return.getClass().getName() "java.lang.Object" @@ -25667,16 +26375,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 514 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25689,16 +26397,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 514 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25714,16 +26422,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 515 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25736,16 +26444,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 515 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25761,16 +26469,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 516 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25783,16 +26491,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 517 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25805,16 +26513,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 517 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25830,16 +26538,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 516 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25848,7 +26556,7 @@ this.topOfStack 7 1 return -1392190493 +249515771 1 return.getClass().getName() "java.lang.Object" @@ -25858,16 +26566,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 518 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25880,16 +26588,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 518 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25905,16 +26613,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 519 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25927,16 +26635,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 519 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25952,16 +26660,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 520 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25974,16 +26682,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 521 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -25996,16 +26704,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 521 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 1392190493 null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 249515771 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null] @@ -26021,16 +26729,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 520 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26043,16 +26751,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 522 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26065,16 +26773,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 522 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26090,16 +26798,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 523 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26112,16 +26820,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 523 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26137,16 +26845,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 524 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26159,16 +26867,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 525 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26181,16 +26889,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 525 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26206,16 +26914,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 524 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26224,7 +26932,7 @@ this.topOfStack 6 1 return -1615263460 +2137589296 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26234,16 +26942,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 526 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26256,16 +26964,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 526 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26281,16 +26989,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 527 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26303,16 +27011,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 527 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26328,16 +27036,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 528 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26350,16 +27058,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 529 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26372,16 +27080,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 529 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26397,16 +27105,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 530 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26419,16 +27127,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 531 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26441,16 +27149,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 531 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26466,16 +27174,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 530 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 1615263460 null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -26484,7 +27192,7 @@ this.topOfStack 6 1 return -1615263460 +2137589296 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26494,16 +27202,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 528 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26512,7 +27220,7 @@ this.topOfStack 5 1 return -1615263460 +2137589296 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26522,16 +27230,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 532 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26544,16 +27252,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 532 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26569,16 +27277,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 533 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26591,16 +27299,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 533 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26616,16 +27324,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 534 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26638,16 +27346,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 535 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26660,16 +27368,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 535 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26685,16 +27393,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 534 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26703,7 +27411,7 @@ this.topOfStack 5 1 return -549392959 +905544614 1 return.getClass().getName() "DataStructures.MyInteger" @@ -26713,16 +27421,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 536 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26735,16 +27443,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 536 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26760,16 +27468,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 537 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26782,16 +27490,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 537 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26807,16 +27515,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 538 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26829,16 +27537,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 539 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26851,16 +27559,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 539 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 549392959 null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 905544614 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -26876,16 +27584,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 538 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -26898,16 +27606,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 540 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -26920,16 +27628,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 540 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -26945,16 +27653,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 541 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -26967,16 +27675,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 541 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -26992,16 +27700,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 542 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27014,16 +27722,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 543 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27036,16 +27744,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 543 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27061,16 +27769,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 542 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27079,7 +27787,7 @@ this.topOfStack 4 1 return -1160596380 +1626877848 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27089,16 +27797,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 544 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27111,16 +27819,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 544 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27136,16 +27844,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 545 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27158,16 +27866,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 545 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27183,16 +27891,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 546 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27205,16 +27913,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 547 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27227,16 +27935,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 547 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 1160596380 null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 1626877848 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null] @@ -27252,16 +27960,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 546 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27274,16 +27982,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 548 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27296,16 +28004,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 548 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27321,16 +28029,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 549 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27343,16 +28051,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 549 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27368,16 +28076,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 550 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27390,16 +28098,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 551 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27412,16 +28120,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 551 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27437,16 +28145,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 550 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27455,7 +28163,7 @@ this.topOfStack 3 1 return -461713513 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27465,16 +28173,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 552 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27487,16 +28195,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 552 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27512,16 +28220,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 553 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27534,16 +28242,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 553 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27559,16 +28267,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 554 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27581,16 +28289,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 555 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27603,16 +28311,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 555 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27628,16 +28336,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 556 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27650,16 +28358,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 557 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27672,16 +28380,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 557 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27697,16 +28405,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 556 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 461713513 null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 1682092198 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -27715,7 +28423,7 @@ this.topOfStack 3 1 return -461713513 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27725,16 +28433,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 554 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27743,7 +28451,7 @@ this.topOfStack 2 1 return -461713513 +1682092198 1 return.getClass().getName() "DataStructures.MyInteger" @@ -27753,16 +28461,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 558 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27775,16 +28483,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 558 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27800,16 +28508,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 559 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27822,16 +28530,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 559 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27847,16 +28555,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 560 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27869,16 +28577,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 561 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27891,16 +28599,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 561 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27916,16 +28624,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 560 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27934,7 +28642,7 @@ this.topOfStack 2 1 return -1489862619 +1142020464 1 return.getClass().getName() "java.lang.Object" @@ -27944,16 +28652,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 562 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27966,16 +28674,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 562 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -27991,16 +28699,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 563 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28013,16 +28721,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 563 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28038,16 +28746,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 564 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28060,16 +28768,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 565 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28082,16 +28790,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 565 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28107,16 +28815,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 566 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28129,16 +28837,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 567 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28151,16 +28859,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 567 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28176,16 +28884,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 566 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 1489862619 null null null null null null null null null null null null null null null null null] +[932607259 1740000325 1142020464 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -28194,7 +28902,7 @@ this.topOfStack 2 1 return -1489862619 +1142020464 1 return.getClass().getName() "java.lang.Object" @@ -28204,16 +28912,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 564 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28222,7 +28930,7 @@ this.topOfStack 1 1 return -1489862619 +1142020464 1 return.getClass().getName() "java.lang.Object" @@ -28232,16 +28940,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 568 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28254,16 +28962,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 568 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28279,16 +28987,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 569 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28301,16 +29009,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 569 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28326,16 +29034,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 570 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28348,16 +29056,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 571 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28370,16 +29078,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 571 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28395,16 +29103,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 570 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28413,7 +29121,7 @@ this.topOfStack 1 1 return -378424998 +1740000325 1 return.getClass().getName() "java.lang.Object" @@ -28423,16 +29131,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 572 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28445,16 +29153,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 572 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28470,16 +29178,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 573 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28492,16 +29200,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 573 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28517,16 +29225,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 574 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28539,16 +29247,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 575 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28561,16 +29269,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 575 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 378424998 null null null null null null null null null null null null null null null null null null] +[932607259 1740000325 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null null null] @@ -28586,16 +29294,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 574 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28608,16 +29316,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 576 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28630,16 +29338,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 576 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28655,16 +29363,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 577 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28677,16 +29385,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 577 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28702,16 +29410,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 578 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28724,16 +29432,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 579 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28746,16 +29454,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 579 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28771,16 +29479,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 578 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28789,7 +29497,7 @@ this.topOfStack 0 1 return -262085285 +932607259 1 return.getClass().getName() "java.lang.Object" @@ -28799,16 +29507,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 580 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28821,16 +29529,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 580 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28846,16 +29554,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 581 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28868,16 +29576,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 581 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28893,16 +29601,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 582 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28915,16 +29623,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 583 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28937,16 +29645,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 583 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28962,16 +29670,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 584 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -28984,16 +29692,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 585 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -29006,16 +29714,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 585 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -29031,16 +29739,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 584 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[262085285 null null null null null null null null null null null null null null null null null null null] +[932607259 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null null null null null null null null null null null] @@ -29049,7 +29757,7 @@ this.topOfStack 0 1 return -262085285 +932607259 1 return.getClass().getName() "java.lang.Object" @@ -29059,10 +29767,10 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 582 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29077,7 +29785,7 @@ this.topOfStack -1 1 return -262085285 +932607259 1 return.getClass().getName() "java.lang.Object" @@ -29087,10 +29795,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 586 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29109,10 +29817,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 586 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29134,10 +29842,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 587 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29156,10 +29864,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 587 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29181,10 +29889,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 588 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29203,10 +29911,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 589 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29225,10 +29933,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 589 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29250,10 +29958,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 588 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29278,10 +29986,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 590 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29300,10 +30008,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 590 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29325,10 +30033,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 591 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29347,10 +30055,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 591 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29369,10 +30077,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 592 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29391,10 +30099,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 592 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29416,10 +30124,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 593 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29438,10 +30146,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 593 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29463,10 +30171,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 594 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29485,10 +30193,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 595 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29507,10 +30215,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 595 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29532,10 +30240,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 594 this -678430346 +1349414238 1 this.theArray -1388143299 +157627094 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29567,10 +30275,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 596 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29592,10 +30300,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 597 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29614,10 +30322,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 597 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29636,10 +30344,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 598 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29658,10 +30366,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 598 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29683,10 +30391,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 599 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29705,10 +30413,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 599 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29730,10 +30438,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 600 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29752,10 +30460,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 601 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29774,10 +30482,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 601 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29799,10 +30507,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 600 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29827,10 +30535,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 602 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29849,10 +30557,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 602 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29874,10 +30582,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 603 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29896,10 +30604,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 604 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29918,10 +30626,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 604 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29943,10 +30651,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 603 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29971,10 +30679,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 605 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -29993,10 +30701,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 605 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30018,10 +30726,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 606 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30040,10 +30748,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 606 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30065,10 +30773,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 607 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30087,10 +30795,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 608 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30109,10 +30817,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 608 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30134,10 +30842,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 607 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30162,10 +30870,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 609 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30180,7 +30888,7 @@ this.topOfStack -1 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -30190,10 +30898,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 610 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30212,10 +30920,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 610 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -30237,16 +30945,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 609 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30255,7 +30963,7 @@ this.topOfStack 0 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -30265,16 +30973,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 611 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30287,16 +30995,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 611 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30312,16 +31020,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 612 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30334,16 +31042,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 612 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30359,16 +31067,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 613 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30381,16 +31089,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 614 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30403,16 +31111,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 614 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30428,16 +31136,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 613 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30446,7 +31154,7 @@ this.topOfStack 0 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -30456,16 +31164,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 615 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30474,7 +31182,7 @@ this.topOfStack 0 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -30484,16 +31192,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 616 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30506,16 +31214,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 616 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 null null null null null null null null null null null null null null null null null null null] +[99347477 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -30531,16 +31239,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 615 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30549,7 +31257,7 @@ this.topOfStack 1 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -30559,16 +31267,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 617 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30581,16 +31289,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 617 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30606,16 +31314,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 618 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30628,16 +31336,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 618 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30653,16 +31361,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 619 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30675,16 +31383,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 620 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30697,16 +31405,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 620 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30722,16 +31430,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 619 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30740,7 +31448,7 @@ this.topOfStack 1 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -30750,16 +31458,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 621 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30768,7 +31476,7 @@ this.topOfStack 1 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -30778,16 +31486,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 622 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30800,16 +31508,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 622 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 null null null null null null null null null null null null null null null null null null] +[99347477 99347477 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -30825,16 +31533,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 621 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30843,7 +31551,7 @@ this.topOfStack 2 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -30853,16 +31561,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 623 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30875,16 +31583,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 623 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30900,16 +31608,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 624 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30922,16 +31630,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 624 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30947,16 +31655,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 625 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30969,16 +31677,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 626 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -30991,16 +31699,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 626 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -31016,16 +31724,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 625 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -31034,7 +31742,7 @@ this.topOfStack 2 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -31044,16 +31752,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 627 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -31062,7 +31770,7 @@ this.topOfStack 2 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31072,16 +31780,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 628 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -31094,16 +31802,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 628 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 null null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -31119,16 +31827,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 627 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31137,7 +31845,7 @@ this.topOfStack 3 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31147,16 +31855,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 629 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31169,16 +31877,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 629 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31194,16 +31902,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 630 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31216,16 +31924,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 630 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31241,16 +31949,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 631 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31263,16 +31971,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 632 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31285,16 +31993,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 632 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31310,16 +32018,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 631 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31328,7 +32036,7 @@ this.topOfStack 3 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -31338,16 +32046,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 633 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31356,7 +32064,7 @@ this.topOfStack 3 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31366,16 +32074,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 634 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31388,16 +32096,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 634 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -31413,16 +32121,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 633 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31431,7 +32139,7 @@ this.topOfStack 4 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31441,16 +32149,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 635 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31463,16 +32171,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 635 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31488,16 +32196,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 636 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31510,16 +32218,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 636 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31535,16 +32243,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 637 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31557,16 +32265,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 638 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31579,16 +32287,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 638 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31604,16 +32312,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 637 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31622,7 +32330,7 @@ this.topOfStack 4 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -31632,16 +32340,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 639 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31650,7 +32358,7 @@ this.topOfStack 4 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31660,16 +32368,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 640 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31682,16 +32390,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 640 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -31707,16 +32415,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 639 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31725,7 +32433,7 @@ this.topOfStack 5 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31735,16 +32443,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 641 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31757,16 +32465,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 641 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31782,16 +32490,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 642 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31804,16 +32512,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 642 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31829,16 +32537,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 643 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31851,16 +32559,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 644 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31873,16 +32581,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 644 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31898,16 +32606,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 643 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31916,7 +32624,7 @@ this.topOfStack 5 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -31926,16 +32634,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 645 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31944,7 +32652,7 @@ this.topOfStack 5 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -31954,16 +32662,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 646 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -31976,16 +32684,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 646 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -32001,16 +32709,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 645 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32019,7 +32727,7 @@ this.topOfStack 6 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32029,16 +32737,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 647 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32051,16 +32759,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 647 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32076,16 +32784,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 648 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32098,16 +32806,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 648 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32123,16 +32831,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 649 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32145,16 +32853,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 650 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32167,16 +32875,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 650 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32192,16 +32900,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 649 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32210,7 +32918,7 @@ this.topOfStack 6 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -32220,16 +32928,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 651 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32238,7 +32946,7 @@ this.topOfStack 6 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32248,16 +32956,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 652 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32270,16 +32978,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 652 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -32295,16 +33003,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 651 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32313,7 +33021,7 @@ this.topOfStack 7 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32323,16 +33031,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 653 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32345,16 +33053,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 653 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32370,16 +33078,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 654 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32392,16 +33100,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 654 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32417,16 +33125,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 655 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32439,16 +33147,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 656 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32461,16 +33169,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 656 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32486,16 +33194,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 655 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32504,7 +33212,7 @@ this.topOfStack 7 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -32514,16 +33222,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 657 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32532,7 +33240,7 @@ this.topOfStack 7 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32542,16 +33250,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 658 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32564,16 +33272,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 658 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -32589,16 +33297,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 657 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32607,7 +33315,7 @@ this.topOfStack 8 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32617,16 +33325,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 659 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32639,16 +33347,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 659 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32664,16 +33372,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 660 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32686,16 +33394,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 660 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32711,16 +33419,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 661 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32733,16 +33441,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 662 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32755,16 +33463,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 662 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32780,16 +33488,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 661 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32798,7 +33506,7 @@ this.topOfStack 8 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -32808,16 +33516,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 663 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32826,7 +33534,7 @@ this.topOfStack 8 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32836,16 +33544,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 664 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32858,16 +33566,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 664 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -32883,16 +33591,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 663 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -32901,7 +33609,7 @@ this.topOfStack 9 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -32911,16 +33619,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 665 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -32933,16 +33641,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 665 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -32958,16 +33666,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 666 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -32980,16 +33688,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 666 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33005,16 +33713,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 667 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33027,16 +33735,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 668 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33049,16 +33757,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 668 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33074,16 +33782,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 667 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33092,7 +33800,7 @@ this.topOfStack 9 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -33102,16 +33810,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 669 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33120,7 +33828,7 @@ this.topOfStack 9 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -33130,16 +33838,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 670 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33152,16 +33860,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 670 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -33177,16 +33885,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 669 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33195,7 +33903,7 @@ this.topOfStack 10 1 x -647413248 +99347477 1 x.getClass().getName() "DataStructures.StackAr" @@ -33205,16 +33913,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 671 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33227,16 +33935,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 671 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33252,16 +33960,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 672 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33274,16 +33982,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 672 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33299,16 +34007,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 673 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33321,16 +34029,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 674 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33343,16 +34051,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 674 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33368,16 +34076,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 673 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33386,7 +34094,7 @@ this.topOfStack 10 1 return -647413248 +99347477 1 return.getClass().getName() "DataStructures.StackAr" @@ -33396,16 +34104,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 675 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 647413248 null null null null null null null null null] +[99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 99347477 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -33418,10 +34126,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 675 this -647413248 +99347477 1 this.theArray -1922303434 +566034357 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33447,10 +34155,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 676 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33472,10 +34180,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 677 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33494,10 +34202,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 677 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33516,10 +34224,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 678 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33538,10 +34246,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 678 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33563,10 +34271,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 679 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33585,10 +34293,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 679 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33610,10 +34318,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 680 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33632,10 +34340,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 681 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33654,10 +34362,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 681 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33679,10 +34387,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 680 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33707,10 +34415,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 682 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33729,10 +34437,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 682 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33754,10 +34462,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 683 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33776,10 +34484,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 684 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33798,10 +34506,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 684 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33823,10 +34531,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 683 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33851,10 +34559,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 685 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33873,10 +34581,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 685 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33898,10 +34606,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 686 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33920,10 +34628,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 686 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33945,10 +34653,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 687 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33967,10 +34675,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 688 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -33989,10 +34697,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 688 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34014,10 +34722,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 687 this -1409829770 +940553268 1 this.theArray -1821867039 +1720435669 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34049,10 +34757,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 689 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34074,10 +34782,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 690 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34096,10 +34804,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 690 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34118,10 +34826,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 691 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34140,10 +34848,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 691 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34165,10 +34873,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 692 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34187,10 +34895,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 692 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34212,10 +34920,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 693 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34234,10 +34942,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 694 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34256,10 +34964,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 694 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34281,10 +34989,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 693 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34309,10 +35017,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 695 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34331,10 +35039,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 695 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34356,10 +35064,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 696 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34378,10 +35086,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 697 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34400,10 +35108,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 697 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34425,10 +35133,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 696 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34453,10 +35161,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 698 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34475,10 +35183,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 698 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34500,10 +35208,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 699 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34522,10 +35230,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 699 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34547,10 +35255,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 700 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34569,10 +35277,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 701 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34591,10 +35299,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 701 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34616,10 +35324,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 700 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34644,10 +35352,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 702 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34662,7 +35370,7 @@ this.topOfStack -1 1 x -227990 +1068934215 1 x.getClass().getName() "java.lang.Object" @@ -34672,10 +35380,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 703 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34694,10 +35402,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 703 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -34719,16 +35427,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 702 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34737,7 +35445,7 @@ this.topOfStack 0 1 x -227990 +1068934215 1 x.getClass().getName() "java.lang.Object" @@ -34747,16 +35455,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 704 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34769,16 +35477,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 704 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34794,16 +35502,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 705 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34816,16 +35524,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 705 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34841,16 +35549,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 706 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34863,16 +35571,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 707 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34885,16 +35593,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 707 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34910,16 +35618,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 706 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34928,7 +35636,7 @@ this.topOfStack 0 1 return -227990 +1068934215 1 return.getClass().getName() "java.lang.Object" @@ -34938,16 +35646,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 708 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34960,16 +35668,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 708 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -34985,16 +35693,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 709 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35007,16 +35715,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 709 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35032,16 +35740,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 710 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35054,16 +35762,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 711 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35076,16 +35784,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 711 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35101,16 +35809,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 712 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35123,16 +35831,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 713 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35145,16 +35853,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 713 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35170,16 +35878,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 712 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[227990] +[1068934215] 1 this.theArray[..].getClass().getName() ["java.lang.Object"] @@ -35188,7 +35896,7 @@ this.topOfStack 0 1 return -227990 +1068934215 1 return.getClass().getName() "java.lang.Object" @@ -35198,10 +35906,10 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 710 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35216,7 +35924,7 @@ this.topOfStack -1 1 return -227990 +1068934215 1 return.getClass().getName() "java.lang.Object" @@ -35226,10 +35934,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 714 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35248,10 +35956,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 714 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35273,10 +35981,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 715 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35295,10 +36003,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 715 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35320,10 +36028,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 716 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35342,10 +36050,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 717 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35364,10 +36072,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 717 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35389,10 +36097,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 716 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35417,10 +36125,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 718 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35439,10 +36147,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 718 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35464,10 +36172,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 719 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35486,10 +36194,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 719 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35508,10 +36216,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 720 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35530,10 +36238,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 720 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35555,10 +36263,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 721 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35577,10 +36285,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 721 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35602,10 +36310,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 722 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35624,10 +36332,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 723 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35646,10 +36354,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 723 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35671,10 +36379,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 722 this -1297485547 +1020923989 1 this.theArray -1290636791 +2052915500 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35706,10 +36414,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 724 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35731,10 +36439,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 725 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35753,10 +36461,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 725 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35775,10 +36483,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 726 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35797,10 +36505,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 726 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35822,10 +36530,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 727 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35844,10 +36552,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 727 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35869,10 +36577,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 728 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35891,10 +36599,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 729 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35913,10 +36621,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 729 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35938,10 +36646,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 728 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35966,10 +36674,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 730 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -35988,10 +36696,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 730 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36013,10 +36721,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 731 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36035,10 +36743,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 732 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36057,10 +36765,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 732 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36082,10 +36790,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 731 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36110,10 +36818,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 733 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36132,10 +36840,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 733 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36157,10 +36865,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 734 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36179,10 +36887,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 734 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36204,10 +36912,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 735 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36226,10 +36934,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 736 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36248,10 +36956,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 736 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36273,10 +36981,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 735 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36301,10 +37009,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 737 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36319,7 +37027,7 @@ this.topOfStack -1 1 x -1684344283 +127618319 1 x.getClass().getName() "DataStructures.StackAr" @@ -36329,10 +37037,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 738 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36351,10 +37059,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 738 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36376,16 +37084,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 737 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36394,7 +37102,7 @@ this.topOfStack 0 1 x -1684344283 +127618319 1 x.getClass().getName() "DataStructures.StackAr" @@ -36404,16 +37112,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 739 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36426,16 +37134,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 739 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36451,16 +37159,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 740 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36473,16 +37181,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 740 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36498,16 +37206,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 741 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36520,16 +37228,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 742 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36542,16 +37250,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 742 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36567,16 +37275,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 741 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36585,7 +37293,7 @@ this.topOfStack 0 1 return -1684344283 +127618319 1 return.getClass().getName() "DataStructures.StackAr" @@ -36595,16 +37303,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 743 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1684344283] +[127618319] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr"] @@ -36617,10 +37325,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 743 this -1684344283 +127618319 1 this.theArray -644929627 +1798286609 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36646,10 +37354,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 744 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36671,10 +37379,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 745 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36693,10 +37401,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 745 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36715,10 +37423,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 746 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36737,10 +37445,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 746 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36762,10 +37470,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 747 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36784,10 +37492,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 747 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36809,10 +37517,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 748 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36831,10 +37539,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 749 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36853,10 +37561,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 749 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36878,10 +37586,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 748 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36906,10 +37614,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 750 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36928,10 +37636,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 750 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36953,10 +37661,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 751 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36975,10 +37683,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 752 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -36997,10 +37705,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 752 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37022,10 +37730,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 751 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37050,10 +37758,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 753 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37072,10 +37780,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 753 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37097,10 +37805,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 754 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37119,10 +37827,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 754 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37144,10 +37852,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 755 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37166,10 +37874,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 756 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37188,10 +37896,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 756 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37213,10 +37921,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 755 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37241,10 +37949,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 757 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37259,7 +37967,7 @@ this.topOfStack -1 1 x -1293767845 +785992331 1 x.getClass().getName() "java.lang.Object" @@ -37269,10 +37977,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 758 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37291,10 +37999,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 758 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -37316,16 +38024,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 757 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37334,7 +38042,7 @@ this.topOfStack 0 1 x -1293767845 +785992331 1 x.getClass().getName() "java.lang.Object" @@ -37344,16 +38052,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 759 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37366,16 +38074,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 759 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37391,16 +38099,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 760 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37413,16 +38121,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 760 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37438,16 +38146,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 761 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37460,16 +38168,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 762 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37482,16 +38190,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 762 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37507,16 +38215,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 761 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37525,7 +38233,7 @@ this.topOfStack 0 1 return -1293767845 +785992331 1 return.getClass().getName() "java.lang.Object" @@ -37535,16 +38243,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 763 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37553,7 +38261,7 @@ this.topOfStack 0 1 x -1084245040 +940060004 1 x.getClass().getName() "java.lang.Object" @@ -37563,16 +38271,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 764 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37585,16 +38293,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 764 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -37610,16 +38318,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 763 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37628,7 +38336,7 @@ this.topOfStack 1 1 x -1084245040 +940060004 1 x.getClass().getName() "java.lang.Object" @@ -37638,16 +38346,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 765 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37660,16 +38368,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 765 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37685,16 +38393,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 766 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37707,16 +38415,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 766 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37732,16 +38440,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 767 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37754,16 +38462,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 768 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37776,16 +38484,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 768 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37801,16 +38509,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 767 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37819,7 +38527,7 @@ this.topOfStack 1 1 return -1084245040 +940060004 1 return.getClass().getName() "java.lang.Object" @@ -37829,16 +38537,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 769 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37847,7 +38555,7 @@ this.topOfStack 1 1 x -1507642485 +234698513 1 x.getClass().getName() "java.lang.Object" @@ -37857,16 +38565,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 770 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37879,16 +38587,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 770 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -37904,16 +38612,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 769 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -37922,7 +38630,7 @@ this.topOfStack 2 1 x -1507642485 +234698513 1 x.getClass().getName() "java.lang.Object" @@ -37932,16 +38640,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 771 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -37954,16 +38662,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 771 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -37979,16 +38687,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 772 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38001,16 +38709,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 772 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38026,16 +38734,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 773 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38048,16 +38756,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 774 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38070,16 +38778,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 774 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38095,16 +38803,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 773 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38113,7 +38821,7 @@ this.topOfStack 2 1 return -1507642485 +234698513 1 return.getClass().getName() "java.lang.Object" @@ -38123,16 +38831,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 775 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38141,7 +38849,7 @@ this.topOfStack 2 1 x -787694442 +1121172875 1 x.getClass().getName() "java.lang.Object" @@ -38151,16 +38859,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 776 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38173,16 +38881,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 776 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -38198,16 +38906,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 775 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38216,7 +38924,7 @@ this.topOfStack 3 1 x -787694442 +1121172875 1 x.getClass().getName() "java.lang.Object" @@ -38226,16 +38934,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 777 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38248,16 +38956,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 777 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38273,16 +38981,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 778 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38295,16 +39003,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 778 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38320,16 +39028,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 779 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38342,16 +39050,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 780 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38364,16 +39072,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 780 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38389,16 +39097,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 779 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38407,7 +39115,7 @@ this.topOfStack 3 1 return -787694442 +1121172875 1 return.getClass().getName() "java.lang.Object" @@ -38417,16 +39125,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 781 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38435,7 +39143,7 @@ this.topOfStack 3 1 x -1691286586 +649734728 1 x.getClass().getName() "java.lang.Object" @@ -38445,16 +39153,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 782 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38467,16 +39175,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 782 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -38492,16 +39200,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 781 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38510,7 +39218,7 @@ this.topOfStack 4 1 x -1691286586 +649734728 1 x.getClass().getName() "java.lang.Object" @@ -38520,16 +39228,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 783 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38542,16 +39250,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 783 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38567,16 +39275,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 784 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38589,16 +39297,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 784 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38614,16 +39322,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 785 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38636,16 +39344,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 786 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38658,16 +39366,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 786 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38683,16 +39391,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 785 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38701,7 +39409,7 @@ this.topOfStack 4 1 return -1691286586 +649734728 1 return.getClass().getName() "java.lang.Object" @@ -38711,16 +39419,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 787 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38729,7 +39437,7 @@ this.topOfStack 4 1 x -1360099210 +1595953398 1 x.getClass().getName() "java.lang.Object" @@ -38739,16 +39447,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 788 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38761,16 +39469,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 788 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -38786,16 +39494,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 787 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38804,7 +39512,7 @@ this.topOfStack 5 1 x -1360099210 +1595953398 1 x.getClass().getName() "java.lang.Object" @@ -38814,16 +39522,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 789 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38836,16 +39544,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 789 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38861,16 +39569,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 790 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38883,16 +39591,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 790 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38908,16 +39616,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 791 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38930,16 +39638,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 792 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38952,16 +39660,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 792 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38977,16 +39685,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 791 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -38995,7 +39703,7 @@ this.topOfStack 5 1 return -1360099210 +1595953398 1 return.getClass().getName() "java.lang.Object" @@ -39005,16 +39713,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 793 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -39023,7 +39731,7 @@ this.topOfStack 5 1 x -1371483802 +998351292 1 x.getClass().getName() "java.lang.Object" @@ -39033,16 +39741,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 794 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -39055,16 +39763,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 794 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -39080,16 +39788,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 793 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39098,7 +39806,7 @@ this.topOfStack 6 1 x -1371483802 +998351292 1 x.getClass().getName() "java.lang.Object" @@ -39108,16 +39816,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 795 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39130,16 +39838,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 795 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39155,16 +39863,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 796 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39177,16 +39885,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 796 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39202,16 +39910,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 797 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39224,16 +39932,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 798 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39246,16 +39954,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 798 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39271,16 +39979,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 797 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39289,7 +39997,7 @@ this.topOfStack 6 1 return -1371483802 +998351292 1 return.getClass().getName() "java.lang.Object" @@ -39299,16 +40007,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 799 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39317,7 +40025,7 @@ this.topOfStack 6 1 x -1586276963 +1684106402 1 x.getClass().getName() "java.lang.Object" @@ -39327,16 +40035,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 800 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39349,16 +40057,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 800 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -39374,16 +40082,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 799 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39392,7 +40100,7 @@ this.topOfStack 7 1 x -1586276963 +1684106402 1 x.getClass().getName() "java.lang.Object" @@ -39402,16 +40110,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 801 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39424,16 +40132,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 801 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39449,16 +40157,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 802 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39471,16 +40179,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 802 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39496,16 +40204,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 803 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39518,16 +40226,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 804 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39540,16 +40248,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 804 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39565,16 +40273,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 803 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39583,7 +40291,7 @@ this.topOfStack 7 1 return -1586276963 +1684106402 1 return.getClass().getName() "java.lang.Object" @@ -39593,16 +40301,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 805 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39611,7 +40319,7 @@ this.topOfStack 7 1 x -1694923283 +335471116 1 x.getClass().getName() "java.lang.Object" @@ -39621,16 +40329,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 806 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39643,16 +40351,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 806 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -39668,16 +40376,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 805 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39686,7 +40394,7 @@ this.topOfStack 8 1 x -1694923283 +335471116 1 x.getClass().getName() "java.lang.Object" @@ -39696,16 +40404,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 807 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39718,16 +40426,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 807 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39743,16 +40451,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 808 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39765,16 +40473,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 808 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39790,16 +40498,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 809 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39812,16 +40520,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 810 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39834,16 +40542,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 810 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39859,16 +40567,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 809 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39877,7 +40585,7 @@ this.topOfStack 8 1 return -1694923283 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -39887,16 +40595,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 811 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39905,7 +40613,7 @@ this.topOfStack 8 1 x -205039926 +1308927845 1 x.getClass().getName() "java.lang.Object" @@ -39915,16 +40623,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 812 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39937,16 +40645,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 812 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -39962,16 +40670,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 811 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -39980,7 +40688,7 @@ this.topOfStack 9 1 x -205039926 +1308927845 1 x.getClass().getName() "java.lang.Object" @@ -39990,16 +40698,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 813 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40012,16 +40720,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 813 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40037,16 +40745,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 814 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40059,16 +40767,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 814 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40084,16 +40792,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 815 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40106,16 +40814,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 816 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40128,16 +40836,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 816 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40153,16 +40861,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 815 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40171,7 +40879,7 @@ this.topOfStack 9 1 return -205039926 +1308927845 1 return.getClass().getName() "java.lang.Object" @@ -40181,16 +40889,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 817 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40203,16 +40911,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 817 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40228,16 +40936,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 818 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40250,16 +40958,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 818 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40275,16 +40983,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 819 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40297,16 +41005,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 820 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40319,16 +41027,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 820 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 205039926] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 1308927845] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -40344,16 +41052,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 819 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40366,16 +41074,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 821 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40388,16 +41096,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 821 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40413,16 +41121,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 822 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40435,16 +41143,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 822 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40460,16 +41168,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 823 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40482,16 +41190,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 824 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40504,16 +41212,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 824 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40529,16 +41237,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 823 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40547,7 +41255,7 @@ this.topOfStack 8 1 return -1694923283 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -40557,16 +41265,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 825 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40579,16 +41287,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 825 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40604,16 +41312,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 826 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40626,16 +41334,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 826 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40651,16 +41359,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 827 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40673,16 +41381,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 828 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40695,16 +41403,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 828 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40720,16 +41428,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 829 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40742,16 +41450,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 830 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40764,16 +41472,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 830 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40789,16 +41497,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 829 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 1694923283 null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 335471116 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null] @@ -40807,7 +41515,7 @@ this.topOfStack 8 1 return -1694923283 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -40817,16 +41525,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 827 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40835,7 +41543,7 @@ this.topOfStack 7 1 return -1694923283 +335471116 1 return.getClass().getName() "java.lang.Object" @@ -40845,16 +41553,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 831 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40867,16 +41575,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 831 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40892,16 +41600,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 832 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40914,16 +41622,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 832 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40939,16 +41647,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 833 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40961,16 +41669,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 834 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -40983,16 +41691,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 834 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41008,16 +41716,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 833 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41026,7 +41734,7 @@ this.topOfStack 7 1 return -1586276963 +1684106402 1 return.getClass().getName() "java.lang.Object" @@ -41036,16 +41744,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 835 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41058,16 +41766,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 835 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41083,16 +41791,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 836 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41105,16 +41813,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 836 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41130,16 +41838,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 837 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41152,16 +41860,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 838 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41174,16 +41882,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 838 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41199,16 +41907,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 839 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41221,16 +41929,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 840 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41243,16 +41951,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 840 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41268,16 +41976,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 839 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 1586276963 null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 1684106402 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null] @@ -41286,7 +41994,7 @@ this.topOfStack 7 1 return -1586276963 +1684106402 1 return.getClass().getName() "java.lang.Object" @@ -41296,16 +42004,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 837 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41314,7 +42022,7 @@ this.topOfStack 6 1 return -1586276963 +1684106402 1 return.getClass().getName() "java.lang.Object" @@ -41324,16 +42032,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 841 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41346,16 +42054,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 841 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41371,16 +42079,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 842 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41393,16 +42101,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 842 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41418,16 +42126,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 843 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41440,16 +42148,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 844 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41462,16 +42170,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 844 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41487,16 +42195,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 843 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41505,7 +42213,7 @@ this.topOfStack 6 1 return -1371483802 +998351292 1 return.getClass().getName() "java.lang.Object" @@ -41515,16 +42223,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 845 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41537,16 +42245,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 845 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41562,16 +42270,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 846 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41584,16 +42292,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 846 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41609,16 +42317,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 847 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41631,16 +42339,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 848 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41653,16 +42361,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 848 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41678,16 +42386,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 849 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41700,16 +42408,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 850 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41722,16 +42430,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 850 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41747,16 +42455,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 849 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 1371483802 null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 998351292 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null] @@ -41765,7 +42473,7 @@ this.topOfStack 6 1 return -1371483802 +998351292 1 return.getClass().getName() "java.lang.Object" @@ -41775,16 +42483,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 847 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41793,7 +42501,7 @@ this.topOfStack 5 1 return -1371483802 +998351292 1 return.getClass().getName() "java.lang.Object" @@ -41803,16 +42511,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 851 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41825,16 +42533,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 851 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41850,16 +42558,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 852 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41872,16 +42580,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 852 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41897,16 +42605,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 853 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41919,16 +42627,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 854 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41941,16 +42649,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 854 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41966,16 +42674,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 853 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -41984,7 +42692,7 @@ this.topOfStack 5 1 return -1360099210 +1595953398 1 return.getClass().getName() "java.lang.Object" @@ -41994,16 +42702,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 855 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42016,16 +42724,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 855 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42041,16 +42749,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 856 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42063,16 +42771,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 856 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42088,16 +42796,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 857 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42110,16 +42818,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 858 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42132,16 +42840,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 858 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 1360099210 null null null null] +[785992331 940060004 234698513 1121172875 649734728 1595953398 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -42157,16 +42865,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 857 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42179,16 +42887,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 859 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42201,16 +42909,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 859 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42226,16 +42934,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 860 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42248,16 +42956,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 860 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42273,16 +42981,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 861 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42295,16 +43003,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 862 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42317,16 +43025,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 862 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42342,16 +43050,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 861 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42360,7 +43068,7 @@ this.topOfStack 4 1 return -1691286586 +649734728 1 return.getClass().getName() "java.lang.Object" @@ -42370,16 +43078,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 863 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42392,16 +43100,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 863 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42417,16 +43125,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 864 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42439,16 +43147,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 864 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42464,16 +43172,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 865 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42486,16 +43194,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 866 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42508,16 +43216,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 866 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 1691286586 null null null null null] +[785992331 940060004 234698513 1121172875 649734728 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null] @@ -42533,16 +43241,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 865 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42555,16 +43263,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 867 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42577,16 +43285,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 867 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42602,16 +43310,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 868 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42624,16 +43332,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 868 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42649,16 +43357,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 869 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42671,16 +43379,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 870 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42693,16 +43401,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 870 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42718,16 +43426,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 869 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42736,7 +43444,7 @@ this.topOfStack 3 1 return -787694442 +1121172875 1 return.getClass().getName() "java.lang.Object" @@ -42746,16 +43454,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 871 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42768,16 +43476,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 871 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42793,16 +43501,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 872 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42815,16 +43523,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 872 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42840,16 +43548,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 873 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42862,16 +43570,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 874 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42884,16 +43592,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 874 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42909,16 +43617,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 875 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42931,16 +43639,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 876 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42953,16 +43661,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 876 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42978,16 +43686,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 875 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 787694442 null null null null null null] +[785992331 940060004 234698513 1121172875 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null] @@ -42996,7 +43704,7 @@ this.topOfStack 3 1 return -787694442 +1121172875 1 return.getClass().getName() "java.lang.Object" @@ -43006,16 +43714,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 873 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43024,7 +43732,7 @@ this.topOfStack 2 1 return -787694442 +1121172875 1 return.getClass().getName() "java.lang.Object" @@ -43034,16 +43742,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 877 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43056,16 +43764,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 877 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43081,16 +43789,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 878 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43103,16 +43811,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 878 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43128,16 +43836,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 879 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43150,16 +43858,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 880 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43172,16 +43880,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 880 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43197,16 +43905,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 879 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43215,7 +43923,7 @@ this.topOfStack 2 1 return -1507642485 +234698513 1 return.getClass().getName() "java.lang.Object" @@ -43225,16 +43933,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 881 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43247,16 +43955,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 881 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43272,16 +43980,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 882 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43294,16 +44002,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 882 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43319,16 +44027,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 883 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43341,16 +44049,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 884 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43363,16 +44071,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 884 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43388,16 +44096,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 885 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43410,16 +44118,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 886 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43432,16 +44140,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 886 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43457,16 +44165,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 885 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 1507642485 null null null null null null null] +[785992331 940060004 234698513 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -43475,7 +44183,7 @@ this.topOfStack 2 1 return -1507642485 +234698513 1 return.getClass().getName() "java.lang.Object" @@ -43485,16 +44193,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 883 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43503,7 +44211,7 @@ this.topOfStack 1 1 return -1507642485 +234698513 1 return.getClass().getName() "java.lang.Object" @@ -43513,16 +44221,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 887 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43535,16 +44243,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 887 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43560,16 +44268,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 888 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43582,16 +44290,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 888 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43607,16 +44315,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 889 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43629,16 +44337,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 890 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43651,16 +44359,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 890 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43676,16 +44384,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 889 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43694,7 +44402,7 @@ this.topOfStack 1 1 return -1084245040 +940060004 1 return.getClass().getName() "java.lang.Object" @@ -43704,16 +44412,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 891 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43726,16 +44434,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 891 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43751,16 +44459,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 892 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43773,16 +44481,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 892 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43798,16 +44506,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 893 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43820,16 +44528,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 894 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43842,16 +44550,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 894 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 1084245040 null null null null null null null null] +[785992331 940060004 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -43867,16 +44575,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 893 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -43889,16 +44597,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 895 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -43911,16 +44619,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 895 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -43936,16 +44644,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 896 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -43958,16 +44666,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 896 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -43983,16 +44691,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 897 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44005,16 +44713,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 898 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44027,16 +44735,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 898 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44052,16 +44760,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 897 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44070,7 +44778,7 @@ this.topOfStack 0 1 return -1293767845 +785992331 1 return.getClass().getName() "java.lang.Object" @@ -44080,16 +44788,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 899 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44102,16 +44810,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 899 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44127,16 +44835,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 900 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44149,16 +44857,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 900 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44174,16 +44882,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 901 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44196,16 +44904,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 902 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44218,16 +44926,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 902 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44243,16 +44951,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 903 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44265,16 +44973,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 904 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44287,16 +44995,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 904 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44312,16 +45020,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 903 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1293767845 null null null null null null null null null] +[785992331 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -44330,7 +45038,7 @@ this.topOfStack 0 1 return -1293767845 +785992331 1 return.getClass().getName() "java.lang.Object" @@ -44340,10 +45048,10 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 901 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44358,7 +45066,7 @@ this.topOfStack -1 1 return -1293767845 +785992331 1 return.getClass().getName() "java.lang.Object" @@ -44368,10 +45076,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 905 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44390,10 +45098,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 905 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44415,10 +45123,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 906 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44437,10 +45145,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 906 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44462,10 +45170,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 907 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44484,10 +45192,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 908 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44506,10 +45214,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 908 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44531,10 +45239,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 907 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44559,10 +45267,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 909 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44581,10 +45289,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 909 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44606,10 +45314,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 910 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44628,10 +45336,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 910 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44650,10 +45358,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 911 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44672,10 +45380,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 911 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44697,10 +45405,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 912 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44719,10 +45427,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 912 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44744,10 +45452,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 913 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44766,10 +45474,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 914 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44788,10 +45496,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 914 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44813,10 +45521,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 913 this -982274580 +2036958521 1 this.theArray -1382071571 +1945604815 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44848,10 +45556,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 915 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44873,10 +45581,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 916 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44895,10 +45603,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 916 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44917,10 +45625,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 917 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44939,10 +45647,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 917 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44964,10 +45672,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 918 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -44986,10 +45694,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 918 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45011,10 +45719,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 919 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45033,10 +45741,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 920 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45055,10 +45763,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 920 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45080,10 +45788,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 919 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45108,10 +45816,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 921 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45130,10 +45838,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 921 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45155,10 +45863,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 922 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45177,10 +45885,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 923 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45199,10 +45907,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 923 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45224,10 +45932,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 922 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45252,10 +45960,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 924 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45274,10 +45982,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 924 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45299,10 +46007,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 925 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45321,10 +46029,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 925 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45346,10 +46054,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 926 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45368,10 +46076,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 927 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45390,10 +46098,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 927 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45415,10 +46123,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 926 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45443,10 +46151,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 928 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45461,7 +46169,7 @@ this.topOfStack -1 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -45471,10 +46179,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 929 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45493,10 +46201,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 929 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -45518,16 +46226,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 928 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45536,7 +46244,7 @@ this.topOfStack 0 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -45546,16 +46254,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 930 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45568,16 +46276,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 930 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45593,16 +46301,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 931 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45615,16 +46323,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 931 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45640,16 +46348,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 932 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45662,16 +46370,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 933 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45684,16 +46392,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 933 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45709,16 +46417,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 932 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45727,7 +46435,7 @@ this.topOfStack 0 1 return -1542266494 +2017354584 1 return.getClass().getName() "DataStructures.StackAr" @@ -45737,16 +46445,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 934 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45755,7 +46463,7 @@ this.topOfStack 0 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -45765,16 +46473,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 935 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45787,16 +46495,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 935 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 null null null null null null null null null] +[2017354584 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -45812,16 +46520,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 934 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45830,7 +46538,7 @@ this.topOfStack 1 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -45840,16 +46548,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 936 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45862,16 +46570,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 936 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45887,16 +46595,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 937 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45909,16 +46617,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 937 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45934,16 +46642,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 938 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45956,16 +46664,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 939 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -45978,16 +46686,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 939 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -46003,16 +46711,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 938 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -46021,7 +46729,7 @@ this.topOfStack 1 1 return -1542266494 +2017354584 1 return.getClass().getName() "DataStructures.StackAr" @@ -46031,16 +46739,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 940 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -46049,7 +46757,7 @@ this.topOfStack 1 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46059,16 +46767,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 941 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -46081,16 +46789,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 941 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 null null null null null null null null] +[2017354584 2017354584 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -46106,16 +46814,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 940 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46124,7 +46832,7 @@ this.topOfStack 2 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46134,16 +46842,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 942 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46156,16 +46864,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 942 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46181,16 +46889,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 943 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46203,16 +46911,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 943 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46228,16 +46936,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 944 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46250,16 +46958,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 945 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46272,16 +46980,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 945 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46297,16 +47005,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 944 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46315,7 +47023,7 @@ this.topOfStack 2 1 return -1542266494 +2017354584 1 return.getClass().getName() "DataStructures.StackAr" @@ -46325,16 +47033,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 946 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46343,7 +47051,7 @@ this.topOfStack 2 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46353,16 +47061,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 947 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46375,16 +47083,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 947 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 null null null null null null null] +[2017354584 2017354584 2017354584 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -46400,16 +47108,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 946 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46418,7 +47126,7 @@ this.topOfStack 3 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46428,16 +47136,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 948 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46450,16 +47158,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 948 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46475,16 +47183,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 949 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46497,16 +47205,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 949 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46522,16 +47230,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 950 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46544,16 +47252,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 951 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46566,16 +47274,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 951 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46591,16 +47299,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 950 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46609,7 +47317,7 @@ this.topOfStack 3 1 return -1542266494 +2017354584 1 return.getClass().getName() "DataStructures.StackAr" @@ -46619,16 +47327,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 952 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46637,7 +47345,7 @@ this.topOfStack 3 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46647,16 +47355,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 953 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46669,16 +47377,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 953 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 null null null null null null] +[2017354584 2017354584 2017354584 2017354584 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -46694,16 +47402,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 952 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46712,7 +47420,7 @@ this.topOfStack 4 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46722,16 +47430,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 954 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46744,16 +47452,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 954 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46769,16 +47477,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 955 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46791,16 +47499,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 955 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46816,16 +47524,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 956 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46838,16 +47546,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 957 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46860,16 +47568,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 957 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46885,16 +47593,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 956 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46903,7 +47611,7 @@ this.topOfStack 4 1 return -1542266494 +2017354584 1 return.getClass().getName() "DataStructures.StackAr" @@ -46913,16 +47621,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 958 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46931,7 +47639,7 @@ this.topOfStack 4 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -46941,16 +47649,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 959 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46963,16 +47671,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 959 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 null null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -46988,16 +47696,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 958 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47006,7 +47714,7 @@ this.topOfStack 5 1 x -1542266494 +2017354584 1 x.getClass().getName() "DataStructures.StackAr" @@ -47016,16 +47724,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 960 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47038,16 +47746,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 960 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47063,16 +47771,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 961 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47085,16 +47793,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 961 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47110,16 +47818,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 962 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47132,16 +47840,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 963 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47154,16 +47862,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 963 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47179,16 +47887,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 962 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47197,7 +47905,7 @@ this.topOfStack 5 1 return -1542266494 +2017354584 1 return.getClass().getName() "DataStructures.StackAr" @@ -47207,16 +47915,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 964 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1542266494 1542266494 1542266494 1542266494 1542266494 1542266494 null null null null] +[2017354584 2017354584 2017354584 2017354584 2017354584 2017354584 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -47229,10 +47937,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 964 this -1542266494 +2017354584 1 this.theArray -745345368 +391447681 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47258,10 +47966,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 965 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47283,10 +47991,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 966 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47305,10 +48013,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 966 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47327,10 +48035,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 967 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47349,10 +48057,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 967 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47374,10 +48082,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 968 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47396,10 +48104,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 968 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47421,10 +48129,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 969 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47443,10 +48151,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 970 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47465,10 +48173,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 970 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47490,10 +48198,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 969 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47518,10 +48226,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 971 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47540,10 +48248,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 971 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47565,10 +48273,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 972 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47587,10 +48295,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 973 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47609,10 +48317,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 973 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47634,10 +48342,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 972 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47662,10 +48370,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 974 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47684,10 +48392,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 974 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47709,10 +48417,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 975 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47731,10 +48439,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 975 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47756,10 +48464,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 976 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47778,10 +48486,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 977 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47800,10 +48508,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 977 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47825,10 +48533,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 976 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47853,10 +48561,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 978 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47871,7 +48579,7 @@ this.topOfStack -1 1 x -2006212742 +321142942 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47881,10 +48589,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 979 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47903,10 +48611,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 979 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -47928,16 +48636,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 978 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -47946,7 +48654,7 @@ this.topOfStack 0 1 x -2006212742 +321142942 1 x.getClass().getName() "DataStructures.MyInteger" @@ -47956,16 +48664,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 980 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -47978,16 +48686,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 980 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48003,16 +48711,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 981 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48025,16 +48733,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 981 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48050,16 +48758,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 982 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48072,16 +48780,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 983 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48094,16 +48802,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 983 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48119,16 +48827,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 982 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48137,7 +48845,7 @@ this.topOfStack 0 1 return -2006212742 +321142942 1 return.getClass().getName() "DataStructures.MyInteger" @@ -48147,16 +48855,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 984 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48165,7 +48873,7 @@ this.topOfStack 0 1 x -776813247 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48175,16 +48883,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 985 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48197,16 +48905,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 985 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -48222,16 +48930,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 984 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48240,7 +48948,7 @@ this.topOfStack 1 1 x -776813247 +745160567 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48250,16 +48958,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 986 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48272,16 +48980,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 986 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48297,16 +49005,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 987 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48319,16 +49027,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 987 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48344,16 +49052,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 988 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48366,16 +49074,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 989 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48388,16 +49096,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 989 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48413,16 +49121,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 988 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48431,7 +49139,7 @@ this.topOfStack 1 1 return -776813247 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -48441,16 +49149,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 990 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48459,7 +49167,7 @@ this.topOfStack 1 1 x -1347152216 +610984013 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48469,16 +49177,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 991 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48491,16 +49199,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 991 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -48516,16 +49224,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 990 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48534,7 +49242,7 @@ this.topOfStack 2 1 x -1347152216 +610984013 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48544,16 +49252,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 992 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48566,16 +49274,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 992 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48591,16 +49299,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 993 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48613,16 +49321,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 993 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48638,16 +49346,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 994 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48660,16 +49368,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 995 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48682,16 +49390,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 995 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48707,16 +49415,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 994 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48725,7 +49433,7 @@ this.topOfStack 2 1 return -1347152216 +610984013 1 return.getClass().getName() "DataStructures.MyInteger" @@ -48735,16 +49443,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 996 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48753,7 +49461,7 @@ this.topOfStack 2 1 x -667203991 +1644443712 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48763,16 +49471,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 997 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48785,16 +49493,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 997 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -48810,16 +49518,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 996 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48828,7 +49536,7 @@ this.topOfStack 3 1 x -667203991 +1644443712 1 x.getClass().getName() "DataStructures.MyInteger" @@ -48838,16 +49546,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 998 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48860,16 +49568,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 998 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48885,16 +49593,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 999 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48907,16 +49615,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 999 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48932,16 +49640,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1000 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48954,16 +49662,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1001 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -48976,16 +49684,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1001 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -49001,16 +49709,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1000 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -49019,7 +49727,7 @@ this.topOfStack 3 1 return -667203991 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49029,16 +49737,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1002 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -49047,7 +49755,7 @@ this.topOfStack 3 1 x -1685355750 +1393931310 1 x.getClass().getName() "java.lang.Object" @@ -49057,16 +49765,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1003 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -49079,16 +49787,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1003 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -49104,16 +49812,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1002 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49122,7 +49830,7 @@ this.topOfStack 4 1 x -1685355750 +1393931310 1 x.getClass().getName() "java.lang.Object" @@ -49132,16 +49840,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1004 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49154,16 +49862,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1004 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49179,16 +49887,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1005 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49201,16 +49909,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1005 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49226,16 +49934,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1006 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49248,16 +49956,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1007 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49270,16 +49978,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1007 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49295,16 +50003,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1006 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49313,7 +50021,7 @@ this.topOfStack 4 1 return -1685355750 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -49323,16 +50031,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1008 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49341,7 +50049,7 @@ this.topOfStack 4 1 x -464786320 +788117692 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49351,16 +50059,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1009 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49373,16 +50081,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1009 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -49398,16 +50106,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1008 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49416,7 +50124,7 @@ this.topOfStack 5 1 x -464786320 +788117692 1 x.getClass().getName() "DataStructures.MyInteger" @@ -49426,16 +50134,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1010 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49448,16 +50156,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1010 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49473,16 +50181,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1011 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49495,16 +50203,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1011 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49520,16 +50228,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1012 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49542,16 +50250,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1013 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49564,16 +50272,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1013 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49589,16 +50297,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1012 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49607,7 +50315,7 @@ this.topOfStack 5 1 return -464786320 +788117692 1 return.getClass().getName() "DataStructures.MyInteger" @@ -49617,16 +50325,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1014 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49635,7 +50343,7 @@ this.topOfStack 5 1 x -1265656101 +1566723494 1 x.getClass().getName() "java.lang.Object" @@ -49645,16 +50353,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1015 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49667,16 +50375,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1015 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -49692,16 +50400,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1014 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49710,7 +50418,7 @@ this.topOfStack 6 1 x -1265656101 +1566723494 1 x.getClass().getName() "java.lang.Object" @@ -49720,16 +50428,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1016 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49742,16 +50450,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1016 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49767,16 +50475,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1017 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49789,16 +50497,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1017 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49814,16 +50522,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1018 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49836,16 +50544,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1019 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49858,16 +50566,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1019 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49883,16 +50591,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1018 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49901,7 +50609,7 @@ this.topOfStack 6 1 return -1265656101 +1566723494 1 return.getClass().getName() "java.lang.Object" @@ -49911,16 +50619,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1020 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49929,7 +50637,7 @@ this.topOfStack 6 1 x -1056565972 +510113906 1 x.getClass().getName() "java.lang.Object" @@ -49939,16 +50647,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1021 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49961,16 +50669,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1021 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -49986,16 +50694,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1020 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50004,7 +50712,7 @@ this.topOfStack 7 1 x -1056565972 +510113906 1 x.getClass().getName() "java.lang.Object" @@ -50014,16 +50722,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1022 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50036,16 +50744,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1022 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50061,16 +50769,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1023 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50083,16 +50791,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1023 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50108,16 +50816,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1024 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50130,16 +50838,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1025 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50152,16 +50860,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1025 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50177,16 +50885,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1024 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50195,7 +50903,7 @@ this.topOfStack 7 1 return -1056565972 +510113906 1 return.getClass().getName() "java.lang.Object" @@ -50205,16 +50913,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1026 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50223,7 +50931,7 @@ this.topOfStack 7 1 x -162014361 +1622006612 1 x.getClass().getName() "java.lang.Object" @@ -50233,16 +50941,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1027 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50255,16 +50963,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1027 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -50280,16 +50988,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1026 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50298,7 +51006,7 @@ this.topOfStack 8 1 x -162014361 +1622006612 1 x.getClass().getName() "java.lang.Object" @@ -50308,16 +51016,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1028 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50330,16 +51038,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1028 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50355,16 +51063,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1029 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50377,16 +51085,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1029 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50402,16 +51110,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1030 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50424,16 +51132,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1031 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50446,16 +51154,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1031 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50471,16 +51179,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1030 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50489,7 +51197,7 @@ this.topOfStack 8 1 return -162014361 +1622006612 1 return.getClass().getName() "java.lang.Object" @@ -50499,16 +51207,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1032 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50517,7 +51225,7 @@ this.topOfStack 8 1 x -2113584578 +66233253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50527,16 +51235,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1033 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50549,16 +51257,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1033 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -50574,16 +51282,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1032 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50592,7 +51300,7 @@ this.topOfStack 9 1 x -2113584578 +66233253 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50602,16 +51310,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1034 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50624,16 +51332,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1034 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50649,16 +51357,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1035 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50671,16 +51379,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1035 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50696,16 +51404,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1036 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50718,16 +51426,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1037 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50740,16 +51448,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1037 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50765,16 +51473,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1036 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50783,7 +51491,7 @@ this.topOfStack 9 1 return -2113584578 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -50793,16 +51501,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1038 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50811,7 +51519,7 @@ this.topOfStack 9 1 x -1488997419 +1286783232 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50821,16 +51529,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1039 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50843,16 +51551,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1039 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -50868,16 +51576,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1038 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -50886,7 +51594,7 @@ this.topOfStack 10 1 x -1488997419 +1286783232 1 x.getClass().getName() "DataStructures.MyInteger" @@ -50896,16 +51604,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1040 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -50918,16 +51626,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1040 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -50943,16 +51651,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1041 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -50965,16 +51673,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1041 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -50990,16 +51698,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1042 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51012,16 +51720,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1043 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51034,16 +51742,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1043 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51059,16 +51767,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1042 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51077,7 +51785,7 @@ this.topOfStack 10 1 return -1488997419 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51087,16 +51795,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1044 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51105,7 +51813,7 @@ this.topOfStack 10 1 x -952682642 +1874154700 1 x.getClass().getName() "java.lang.Object" @@ -51115,16 +51823,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1045 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51137,16 +51845,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1045 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -51162,16 +51870,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1044 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51180,7 +51888,7 @@ this.topOfStack 11 1 x -952682642 +1874154700 1 x.getClass().getName() "java.lang.Object" @@ -51190,16 +51898,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1046 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51212,16 +51920,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1046 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51237,16 +51945,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1047 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51259,16 +51967,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1047 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51284,16 +51992,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1048 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51306,16 +52014,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1049 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51328,16 +52036,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1049 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51353,16 +52061,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1048 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51371,7 +52079,7 @@ this.topOfStack 11 1 return -952682642 +1874154700 1 return.getClass().getName() "java.lang.Object" @@ -51381,16 +52089,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1050 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51399,7 +52107,7 @@ this.topOfStack 11 1 x -99092062 +1632392469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51409,16 +52117,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1051 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51431,16 +52139,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1051 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -51456,16 +52164,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1050 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51474,7 +52182,7 @@ this.topOfStack 12 1 x -99092062 +1632392469 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51484,16 +52192,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1052 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51506,16 +52214,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1052 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51531,16 +52239,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1053 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51553,16 +52261,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1053 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51578,16 +52286,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1054 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51600,16 +52308,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1055 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51622,16 +52330,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1055 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51647,16 +52355,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1054 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51665,7 +52373,7 @@ this.topOfStack 12 1 return -99092062 +1632392469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51675,16 +52383,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1056 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51693,7 +52401,7 @@ this.topOfStack 12 1 x -1140459609 +2008362258 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51703,16 +52411,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1057 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51725,16 +52433,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1057 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -51750,16 +52458,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1056 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51768,7 +52476,7 @@ this.topOfStack 13 1 x -1140459609 +2008362258 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51778,16 +52486,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1058 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51800,16 +52508,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1058 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51825,16 +52533,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1059 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51847,16 +52555,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1059 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51872,16 +52580,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1060 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51894,16 +52602,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1061 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51916,16 +52624,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1061 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51941,16 +52649,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1060 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51959,7 +52667,7 @@ this.topOfStack 13 1 return -1140459609 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -51969,16 +52677,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1062 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -51987,7 +52695,7 @@ this.topOfStack 13 1 x -1413098988 +760563749 1 x.getClass().getName() "DataStructures.MyInteger" @@ -51997,16 +52705,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1063 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -52019,16 +52727,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1063 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -52044,16 +52752,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1062 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52062,7 +52770,7 @@ this.topOfStack 14 1 x -1413098988 +760563749 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52072,16 +52780,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1064 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52094,16 +52802,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1064 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52119,16 +52827,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1065 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52141,16 +52849,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1065 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52166,16 +52874,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1066 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52188,16 +52896,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1067 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52210,16 +52918,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1067 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52235,16 +52943,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1066 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52253,7 +52961,7 @@ this.topOfStack 14 1 return -1413098988 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52263,16 +52971,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1068 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52281,7 +52989,7 @@ this.topOfStack 14 1 x -933039143 +1753447031 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52291,16 +52999,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1069 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52313,16 +53021,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1069 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -52338,16 +53046,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1068 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52356,7 +53064,7 @@ this.topOfStack 15 1 x -933039143 +1753447031 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52366,16 +53074,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1070 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52388,16 +53096,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1070 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52413,16 +53121,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1071 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52435,16 +53143,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1071 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52460,16 +53168,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1072 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52482,16 +53190,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1073 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52504,16 +53212,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1073 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52529,16 +53237,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1072 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52547,7 +53255,7 @@ this.topOfStack 15 1 return -933039143 +1753447031 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52557,16 +53265,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1074 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52575,7 +53283,7 @@ this.topOfStack 15 1 x -663286007 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52585,16 +53293,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1075 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52607,16 +53315,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1075 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -52632,16 +53340,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1074 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52650,7 +53358,7 @@ this.topOfStack 16 1 x -663286007 +1810132623 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52660,16 +53368,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1076 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52682,16 +53390,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1076 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52707,16 +53415,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1077 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52729,16 +53437,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1077 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52754,16 +53462,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1078 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52776,16 +53484,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1079 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52798,16 +53506,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1079 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52823,16 +53531,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1078 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52841,7 +53549,7 @@ this.topOfStack 16 1 return -663286007 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -52851,16 +53559,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1080 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52869,7 +53577,7 @@ this.topOfStack 16 1 x -260308072 +895947612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52879,16 +53587,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1081 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52901,16 +53609,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1081 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -52926,16 +53634,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1080 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -52944,7 +53652,7 @@ this.topOfStack 17 1 x -260308072 +895947612 1 x.getClass().getName() "DataStructures.MyInteger" @@ -52954,16 +53662,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1082 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -52976,16 +53684,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1082 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53001,16 +53709,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1083 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53023,16 +53731,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1083 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53048,16 +53756,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1084 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53070,16 +53778,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1085 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53092,16 +53800,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1085 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53117,16 +53825,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1084 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53135,7 +53843,7 @@ this.topOfStack 17 1 return -260308072 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53145,16 +53853,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1086 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53163,7 +53871,7 @@ this.topOfStack 17 1 x -573577165 +846492085 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53173,16 +53881,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1087 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53195,16 +53903,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1087 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -53220,16 +53928,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1086 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53238,7 +53946,7 @@ this.topOfStack 18 1 x -573577165 +846492085 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53248,16 +53956,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1088 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53270,16 +53978,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1088 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53295,16 +54003,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1089 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53317,16 +54025,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1089 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53342,16 +54050,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1090 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53364,16 +54072,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1091 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53386,16 +54094,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1091 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53411,16 +54119,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1090 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53429,7 +54137,7 @@ this.topOfStack 18 1 return -573577165 +846492085 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53439,16 +54147,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1092 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53457,7 +54165,7 @@ this.topOfStack 18 1 x -57320772 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53467,16 +54175,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1093 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53489,16 +54197,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1093 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -53514,16 +54222,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1092 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53532,7 +54240,7 @@ this.topOfStack 19 1 x -57320772 +1096283470 1 x.getClass().getName() "DataStructures.MyInteger" @@ -53542,16 +54250,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1094 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53564,16 +54272,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1094 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53589,16 +54297,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1095 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53611,16 +54319,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1095 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53636,16 +54344,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1096 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53658,16 +54366,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1097 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53680,16 +54388,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1097 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53705,16 +54413,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1096 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53723,7 +54431,7 @@ this.topOfStack 19 1 return -57320772 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53733,16 +54441,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1098 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53755,16 +54463,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1098 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53780,16 +54488,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1099 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53802,16 +54510,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1099 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53827,16 +54535,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1100 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53849,16 +54557,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1101 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53871,16 +54579,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1101 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53896,16 +54604,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1102 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53918,16 +54626,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1103 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53940,16 +54648,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1103 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53965,16 +54673,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1102 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 57320772] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 1096283470] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -53983,7 +54691,7 @@ this.topOfStack 19 1 return -57320772 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -53993,16 +54701,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1100 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54011,7 +54719,7 @@ this.topOfStack 18 1 return -57320772 +1096283470 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54021,16 +54729,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1104 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54043,16 +54751,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1104 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54068,16 +54776,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1105 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54090,16 +54798,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1105 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54115,16 +54823,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1106 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54137,16 +54845,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1107 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54159,16 +54867,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1107 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54184,16 +54892,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1106 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54202,7 +54910,7 @@ this.topOfStack 18 1 return -573577165 +846492085 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54212,16 +54920,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1108 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54234,16 +54942,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1108 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54259,16 +54967,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1109 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54281,16 +54989,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1109 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54306,16 +55014,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1110 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54328,16 +55036,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1111 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54350,16 +55058,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1111 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 573577165 null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 846492085 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null] @@ -54375,16 +55083,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1110 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54397,16 +55105,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1112 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54419,16 +55127,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1112 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54444,16 +55152,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1113 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54466,16 +55174,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1113 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54491,16 +55199,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1114 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54513,16 +55221,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1115 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54535,16 +55243,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1115 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54560,16 +55268,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1114 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54578,7 +55286,7 @@ this.topOfStack 17 1 return -260308072 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54588,16 +55296,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1116 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54610,16 +55318,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1116 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54635,16 +55343,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1117 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54657,16 +55365,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1117 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54682,16 +55390,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1118 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54704,16 +55412,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1119 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54726,16 +55434,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1119 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54751,16 +55459,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1120 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54773,16 +55481,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1121 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54795,16 +55503,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1121 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54820,16 +55528,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1120 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 260308072 null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 895947612 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -54838,7 +55546,7 @@ this.topOfStack 17 1 return -260308072 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54848,16 +55556,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1118 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -54866,7 +55574,7 @@ this.topOfStack 16 1 return -260308072 +895947612 1 return.getClass().getName() "DataStructures.MyInteger" @@ -54876,16 +55584,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1122 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -54898,16 +55606,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1122 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -54923,16 +55631,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1123 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -54945,16 +55653,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1123 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -54970,16 +55678,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1124 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -54992,16 +55700,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1125 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55014,16 +55722,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1125 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55039,16 +55747,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1124 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55057,7 +55765,7 @@ this.topOfStack 16 1 return -663286007 +1810132623 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55067,16 +55775,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1126 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55089,16 +55797,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1126 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55114,16 +55822,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1127 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55136,16 +55844,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1127 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55161,16 +55869,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1128 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55183,16 +55891,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1129 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55205,16 +55913,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1129 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 663286007 null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 1810132623 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -55230,16 +55938,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1128 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55252,16 +55960,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1130 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55274,16 +55982,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1130 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55299,16 +56007,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1131 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55321,16 +56029,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1131 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55346,16 +56054,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1132 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55368,16 +56076,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1133 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55390,16 +56098,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1133 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55415,16 +56123,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1132 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55433,7 +56141,7 @@ this.topOfStack 15 1 return -933039143 +1753447031 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55443,16 +56151,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1134 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55465,16 +56173,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1134 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55490,16 +56198,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1135 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55512,16 +56220,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1135 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55537,16 +56245,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1136 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55559,16 +56267,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1137 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55581,16 +56289,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1137 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55606,16 +56314,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1138 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55628,16 +56336,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1139 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55650,16 +56358,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1139 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55675,16 +56383,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1138 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 933039143 null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 1753447031 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -55693,7 +56401,7 @@ this.topOfStack 15 1 return -933039143 +1753447031 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55703,16 +56411,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1136 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55721,7 +56429,7 @@ this.topOfStack 14 1 return -933039143 +1753447031 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55731,16 +56439,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1140 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55753,16 +56461,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1140 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55778,16 +56486,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1141 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55800,16 +56508,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1141 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55825,16 +56533,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1142 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55847,16 +56555,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1143 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55869,16 +56577,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1143 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55894,16 +56602,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1142 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55912,7 +56620,7 @@ this.topOfStack 14 1 return -1413098988 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -55922,16 +56630,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1144 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55944,16 +56652,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1144 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55969,16 +56677,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1145 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -55991,16 +56699,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1145 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56016,16 +56724,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1146 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56038,16 +56746,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1147 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56060,16 +56768,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1147 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56085,16 +56793,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1148 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56107,16 +56815,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1149 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56129,16 +56837,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1149 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56154,16 +56862,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1148 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 1413098988 null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 760563749 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -56172,7 +56880,7 @@ this.topOfStack 14 1 return -1413098988 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56182,16 +56890,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1146 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56200,7 +56908,7 @@ this.topOfStack 13 1 return -1413098988 +760563749 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56210,16 +56918,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1150 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56232,16 +56940,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1150 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56257,16 +56965,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1151 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56279,16 +56987,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1151 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56304,16 +57012,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1152 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56326,16 +57034,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1153 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56348,16 +57056,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1153 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56373,16 +57081,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1152 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56391,7 +57099,7 @@ this.topOfStack 13 1 return -1140459609 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56401,16 +57109,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1154 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56423,16 +57131,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1154 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56448,16 +57156,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1155 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56470,16 +57178,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1155 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56495,16 +57203,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1156 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56517,16 +57225,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1157 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56539,16 +57247,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1157 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56564,16 +57272,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1158 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56586,16 +57294,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1159 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56608,16 +57316,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1159 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56633,16 +57341,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1158 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 1140459609 null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 2008362258 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null] @@ -56651,7 +57359,7 @@ this.topOfStack 13 1 return -1140459609 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56661,16 +57369,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1156 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56679,7 +57387,7 @@ this.topOfStack 12 1 return -1140459609 +2008362258 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56689,16 +57397,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1160 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56711,16 +57419,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1160 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56736,16 +57444,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1161 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56758,16 +57466,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1161 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56783,16 +57491,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1162 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56805,16 +57513,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1163 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56827,16 +57535,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1163 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56852,16 +57560,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1162 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56870,7 +57578,7 @@ this.topOfStack 12 1 return -99092062 +1632392469 1 return.getClass().getName() "DataStructures.MyInteger" @@ -56880,16 +57588,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1164 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56902,16 +57610,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1164 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56927,16 +57635,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1165 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56949,16 +57657,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1165 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56974,16 +57682,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1166 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -56996,16 +57704,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1167 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -57018,16 +57726,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1167 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 99092062 null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 1632392469 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -57043,16 +57751,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1166 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57065,16 +57773,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1168 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57087,16 +57795,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1168 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57112,16 +57820,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1169 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57134,16 +57842,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1169 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57159,16 +57867,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1170 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57181,16 +57889,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1171 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57203,16 +57911,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1171 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57228,16 +57936,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1170 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57246,7 +57954,7 @@ this.topOfStack 11 1 return -952682642 +1874154700 1 return.getClass().getName() "java.lang.Object" @@ -57256,16 +57964,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1172 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57278,16 +57986,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1172 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57303,16 +58011,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1173 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57325,16 +58033,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1173 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57350,16 +58058,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1174 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57372,16 +58080,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1175 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57394,16 +58102,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1175 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57419,16 +58127,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1176 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57441,16 +58149,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1177 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57463,16 +58171,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1177 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57488,16 +58196,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1176 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 952682642 null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 1874154700 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -57506,7 +58214,7 @@ this.topOfStack 11 1 return -952682642 +1874154700 1 return.getClass().getName() "java.lang.Object" @@ -57516,16 +58224,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1174 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57534,7 +58242,7 @@ this.topOfStack 10 1 return -952682642 +1874154700 1 return.getClass().getName() "java.lang.Object" @@ -57544,16 +58252,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1178 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57566,16 +58274,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1178 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57591,16 +58299,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1179 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57613,16 +58321,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1179 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57638,16 +58346,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1180 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57660,16 +58368,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1181 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57682,16 +58390,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1181 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57707,16 +58415,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1180 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57725,7 +58433,7 @@ this.topOfStack 10 1 return -1488997419 +1286783232 1 return.getClass().getName() "DataStructures.MyInteger" @@ -57735,16 +58443,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1182 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57757,16 +58465,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1182 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57782,16 +58490,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1183 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57804,16 +58512,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1183 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57829,16 +58537,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1184 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57851,16 +58559,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1185 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57873,16 +58581,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1185 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 1488997419 null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 1286783232 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -57898,16 +58606,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1184 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -57920,16 +58628,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1186 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -57942,16 +58650,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1186 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -57967,16 +58675,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1187 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -57989,16 +58697,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1187 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58014,16 +58722,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1188 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58036,16 +58744,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1189 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58058,16 +58766,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1189 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58083,16 +58791,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1188 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58101,7 +58809,7 @@ this.topOfStack 9 1 return -2113584578 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58111,16 +58819,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1190 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58133,16 +58841,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1190 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58158,16 +58866,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1191 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58180,16 +58888,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1191 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58205,16 +58913,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1192 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58227,16 +58935,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1193 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58249,16 +58957,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1193 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58274,16 +58982,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1194 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58296,16 +59004,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1195 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58318,16 +59026,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1195 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58343,16 +59051,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1194 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 2113584578 null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 66233253 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -58361,7 +59069,7 @@ this.topOfStack 9 1 return -2113584578 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58371,16 +59079,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1192 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58389,7 +59097,7 @@ this.topOfStack 8 1 return -2113584578 +66233253 1 return.getClass().getName() "DataStructures.MyInteger" @@ -58399,16 +59107,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1196 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58421,16 +59129,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1196 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58446,16 +59154,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1197 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58468,16 +59176,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1197 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58493,16 +59201,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1198 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58515,16 +59223,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1199 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58537,16 +59245,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1199 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58562,16 +59270,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1198 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58580,7 +59288,7 @@ this.topOfStack 8 1 return -162014361 +1622006612 1 return.getClass().getName() "java.lang.Object" @@ -58590,16 +59298,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1200 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58612,16 +59320,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1200 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58637,16 +59345,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1201 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58659,16 +59367,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1201 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58684,16 +59392,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1202 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58706,16 +59414,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1203 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58728,16 +59436,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1203 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58753,16 +59461,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1204 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58775,16 +59483,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1205 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58797,16 +59505,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1205 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58822,16 +59530,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1204 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 162014361 null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 1622006612 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null] @@ -58840,7 +59548,7 @@ this.topOfStack 8 1 return -162014361 +1622006612 1 return.getClass().getName() "java.lang.Object" @@ -58850,16 +59558,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1202 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -58868,7 +59576,7 @@ this.topOfStack 7 1 return -162014361 +1622006612 1 return.getClass().getName() "java.lang.Object" @@ -58878,16 +59586,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1206 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -58900,16 +59608,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1206 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -58925,16 +59633,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1207 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -58947,16 +59655,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1207 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -58972,16 +59680,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1208 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -58994,16 +59702,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1209 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59016,16 +59724,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1209 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59041,16 +59749,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1208 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59059,7 +59767,7 @@ this.topOfStack 7 1 return -1056565972 +510113906 1 return.getClass().getName() "java.lang.Object" @@ -59069,16 +59777,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1210 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59091,16 +59799,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1210 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59116,16 +59824,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1211 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59138,16 +59846,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1211 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59163,16 +59871,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1212 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59185,16 +59893,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1213 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59207,16 +59915,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1213 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 1056565972 null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 510113906 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null] @@ -59232,16 +59940,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1212 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59254,16 +59962,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1214 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59276,16 +59984,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1214 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59301,16 +60009,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1215 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59323,16 +60031,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1215 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59348,16 +60056,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1216 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59370,16 +60078,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1217 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59392,16 +60100,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1217 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59417,16 +60125,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1216 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59435,7 +60143,7 @@ this.topOfStack 6 1 return -1265656101 +1566723494 1 return.getClass().getName() "java.lang.Object" @@ -59445,16 +60153,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1218 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59467,16 +60175,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1218 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59492,16 +60200,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1219 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59514,16 +60222,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1219 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59539,16 +60247,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1220 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59561,16 +60269,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1221 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59583,16 +60291,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1221 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59608,16 +60316,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1222 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59630,16 +60338,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1223 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59652,16 +60360,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1223 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59677,16 +60385,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1222 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 1265656101 null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 1566723494 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null] @@ -59695,7 +60403,7 @@ this.topOfStack 6 1 return -1265656101 +1566723494 1 return.getClass().getName() "java.lang.Object" @@ -59705,16 +60413,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1220 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59723,7 +60431,7 @@ this.topOfStack 5 1 return -1265656101 +1566723494 1 return.getClass().getName() "java.lang.Object" @@ -59733,16 +60441,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1224 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59755,16 +60463,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1224 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59780,16 +60488,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1225 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59802,16 +60510,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1225 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59827,16 +60535,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1226 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59849,16 +60557,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1227 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59871,16 +60579,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1227 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59896,16 +60604,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1226 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59914,7 +60622,7 @@ this.topOfStack 5 1 return -464786320 +788117692 1 return.getClass().getName() "DataStructures.MyInteger" @@ -59924,16 +60632,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1228 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59946,16 +60654,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1228 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59971,16 +60679,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1229 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -59993,16 +60701,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1229 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -60018,16 +60726,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1230 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -60040,16 +60748,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1231 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -60062,16 +60770,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1231 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 464786320 null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 788117692 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null null] @@ -60087,16 +60795,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1230 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60109,16 +60817,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1232 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60131,16 +60839,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1232 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60156,16 +60864,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1233 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60178,16 +60886,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1233 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60203,16 +60911,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1234 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60225,16 +60933,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1235 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60247,16 +60955,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1235 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60272,16 +60980,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1234 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60290,7 +60998,7 @@ this.topOfStack 4 1 return -1685355750 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -60300,16 +61008,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1236 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60322,16 +61030,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1236 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60347,16 +61055,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1237 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60369,16 +61077,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1237 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60394,16 +61102,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1238 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60416,16 +61124,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1239 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60438,16 +61146,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1239 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60463,16 +61171,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1240 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60485,16 +61193,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1241 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60507,16 +61215,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1241 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60532,16 +61240,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1240 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 1685355750 null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 1393931310 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -60550,7 +61258,7 @@ this.topOfStack 4 1 return -1685355750 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -60560,16 +61268,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1238 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60578,7 +61286,7 @@ this.topOfStack 3 1 return -1685355750 +1393931310 1 return.getClass().getName() "java.lang.Object" @@ -60588,16 +61296,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1242 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60610,16 +61318,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1242 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60635,16 +61343,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1243 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60657,16 +61365,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1243 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60682,16 +61390,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1244 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60704,16 +61412,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1245 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60726,16 +61434,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1245 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60751,16 +61459,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1244 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60769,7 +61477,7 @@ this.topOfStack 3 1 return -667203991 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -60779,16 +61487,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1246 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60801,16 +61509,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1246 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60826,16 +61534,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1247 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60848,16 +61556,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1247 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60873,16 +61581,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1248 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60895,16 +61603,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1249 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60917,16 +61625,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1249 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60942,16 +61650,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1250 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60964,16 +61672,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1251 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -60986,16 +61694,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1251 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -61011,16 +61719,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1250 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 667203991 null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 1644443712 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null] @@ -61029,7 +61737,7 @@ this.topOfStack 3 1 return -667203991 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61039,16 +61747,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1248 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61057,7 +61765,7 @@ this.topOfStack 2 1 return -667203991 +1644443712 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61067,16 +61775,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1252 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61089,16 +61797,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1252 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61114,16 +61822,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1253 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61136,16 +61844,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1253 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61161,16 +61869,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1254 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61183,16 +61891,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1255 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61205,16 +61913,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1255 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61230,16 +61938,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1254 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61248,7 +61956,7 @@ this.topOfStack 2 1 return -1347152216 +610984013 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61258,16 +61966,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1256 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61280,16 +61988,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1256 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61305,16 +62013,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1257 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61327,16 +62035,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1257 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61352,16 +62060,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1258 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61374,16 +62082,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1259 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61396,16 +62104,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1259 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 1347152216 null null null null null null null null null null null null null null null null null] +[321142942 745160567 610984013 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null] @@ -61421,16 +62129,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1258 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61443,16 +62151,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1260 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61465,16 +62173,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1260 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61490,16 +62198,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1261 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61512,16 +62220,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1261 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61537,16 +62245,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1262 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61559,16 +62267,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1263 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61581,16 +62289,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1263 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61606,16 +62314,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1262 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61624,7 +62332,7 @@ this.topOfStack 1 1 return -776813247 +745160567 1 return.getClass().getName() "DataStructures.MyInteger" @@ -61634,16 +62342,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1264 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61656,16 +62364,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1264 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61681,16 +62389,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1265 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61703,16 +62411,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1265 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61728,16 +62436,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1266 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61750,16 +62458,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1267 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61772,16 +62480,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1267 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 776813247 null null null null null null null null null null null null null null null null null null] +[321142942 745160567 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -61797,16 +62505,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1266 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61819,16 +62527,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1268 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61841,16 +62549,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1268 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61866,16 +62574,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1269 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61888,16 +62596,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1269 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61913,16 +62621,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1270 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61935,16 +62643,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1271 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61957,16 +62665,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1271 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -61982,16 +62690,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1270 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62000,7 +62708,7 @@ this.topOfStack 0 1 return -2006212742 +321142942 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62010,16 +62718,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1272 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62032,16 +62740,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1272 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62057,16 +62765,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1273 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62079,16 +62787,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1273 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62104,16 +62812,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1274 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62126,16 +62834,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1275 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62148,16 +62856,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1275 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62173,16 +62881,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1276 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62195,16 +62903,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1277 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62217,16 +62925,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1277 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62242,16 +62950,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1276 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2006212742 null null null null null null null null null null null null null null null null null null null] +[321142942 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -62260,7 +62968,7 @@ this.topOfStack 0 1 return -2006212742 +321142942 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62270,10 +62978,10 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1274 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62288,7 +62996,7 @@ this.topOfStack -1 1 return -2006212742 +321142942 1 return.getClass().getName() "DataStructures.MyInteger" @@ -62298,10 +63006,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1278 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62320,10 +63028,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1278 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62345,10 +63053,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1279 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62367,10 +63075,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1279 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62392,10 +63100,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1280 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62414,10 +63122,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1281 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62436,10 +63144,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1281 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62461,10 +63169,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1280 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62489,10 +63197,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1282 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62511,10 +63219,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1282 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62536,10 +63244,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1283 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62558,10 +63266,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1283 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62580,10 +63288,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1284 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62602,10 +63310,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1284 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62627,10 +63335,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1285 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62649,10 +63357,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1285 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62674,10 +63382,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1286 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62696,10 +63404,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1287 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62718,10 +63426,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1287 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62743,10 +63451,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1286 this -747487025 +1935637221 1 this.theArray -235094225 +403424356 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62778,10 +63486,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1288 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62803,10 +63511,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1289 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62825,10 +63533,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1289 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62847,10 +63555,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1290 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62869,10 +63577,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1290 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62894,10 +63602,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1291 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62916,10 +63624,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1291 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62941,10 +63649,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1292 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62963,10 +63671,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1293 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -62985,10 +63693,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1293 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63010,10 +63718,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1292 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63038,10 +63746,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1294 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63060,10 +63768,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1294 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63085,10 +63793,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1295 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63107,10 +63815,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1296 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63129,10 +63837,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1296 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63154,10 +63862,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1295 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63182,10 +63890,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1297 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63204,10 +63912,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1297 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63229,10 +63937,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1298 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63251,10 +63959,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1298 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63276,10 +63984,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1299 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63298,10 +64006,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1300 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63320,10 +64028,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1300 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63345,10 +64053,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1299 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63373,10 +64081,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1301 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63391,7 +64099,7 @@ this.topOfStack -1 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -63401,10 +64109,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1302 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63423,10 +64131,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1302 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -63448,16 +64156,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1301 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63466,7 +64174,7 @@ this.topOfStack 0 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -63476,16 +64184,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1303 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63498,16 +64206,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1303 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63523,16 +64231,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1304 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63545,16 +64253,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1304 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63570,16 +64278,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1305 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63592,16 +64300,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1306 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63614,16 +64322,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1306 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63639,16 +64347,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1305 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63657,7 +64365,7 @@ this.topOfStack 0 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -63667,16 +64375,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1307 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63685,7 +64393,7 @@ this.topOfStack 0 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -63695,16 +64403,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1308 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63717,16 +64425,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1308 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 null null null null null null null null null null null null null null null null null null null] +[152005629 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -63742,16 +64450,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1307 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63760,7 +64468,7 @@ this.topOfStack 1 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -63770,16 +64478,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1309 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63792,16 +64500,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1309 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63817,16 +64525,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1310 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63839,16 +64547,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1310 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63864,16 +64572,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1311 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63886,16 +64594,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1312 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63908,16 +64616,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1312 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63933,16 +64641,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1311 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63951,7 +64659,7 @@ this.topOfStack 1 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -63961,16 +64669,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1313 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -63979,7 +64687,7 @@ this.topOfStack 1 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -63989,16 +64697,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1314 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -64011,16 +64719,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1314 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 null null null null null null null null null null null null null null null null null null] +[152005629 152005629 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -64036,16 +64744,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1313 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64054,7 +64762,7 @@ this.topOfStack 2 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64064,16 +64772,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1315 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64086,16 +64794,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1315 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64111,16 +64819,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1316 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64133,16 +64841,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1316 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64158,16 +64866,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1317 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64180,16 +64888,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1318 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64202,16 +64910,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1318 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64227,16 +64935,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1317 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64245,7 +64953,7 @@ this.topOfStack 2 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -64255,16 +64963,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1319 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64273,7 +64981,7 @@ this.topOfStack 2 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64283,16 +64991,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1320 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64305,16 +65013,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1320 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -64330,16 +65038,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1319 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64348,7 +65056,7 @@ this.topOfStack 3 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64358,16 +65066,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1321 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64380,16 +65088,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1321 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64405,16 +65113,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1322 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64427,16 +65135,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1322 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64452,16 +65160,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1323 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64474,16 +65182,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1324 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64496,16 +65204,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1324 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64521,16 +65229,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1323 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64539,7 +65247,7 @@ this.topOfStack 3 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -64549,16 +65257,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1325 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64567,7 +65275,7 @@ this.topOfStack 3 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64577,16 +65285,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1326 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64599,16 +65307,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1326 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -64624,16 +65332,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1325 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64642,7 +65350,7 @@ this.topOfStack 4 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64652,16 +65360,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1327 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64674,16 +65382,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1327 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64699,16 +65407,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1328 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64721,16 +65429,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1328 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64746,16 +65454,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1329 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64768,16 +65476,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1330 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64790,16 +65498,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1330 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64815,16 +65523,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1329 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64833,7 +65541,7 @@ this.topOfStack 4 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -64843,16 +65551,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1331 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64861,7 +65569,7 @@ this.topOfStack 4 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64871,16 +65579,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1332 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64893,16 +65601,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1332 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -64918,16 +65626,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1331 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -64936,7 +65644,7 @@ this.topOfStack 5 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -64946,16 +65654,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1333 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -64968,16 +65676,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1333 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -64993,16 +65701,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1334 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65015,16 +65723,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1334 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65040,16 +65748,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1335 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65062,16 +65770,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1336 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65084,16 +65792,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1336 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65109,16 +65817,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1335 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65127,7 +65835,7 @@ this.topOfStack 5 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -65137,16 +65845,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1337 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65155,7 +65863,7 @@ this.topOfStack 5 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -65165,16 +65873,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1338 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65187,16 +65895,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1338 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -65212,16 +65920,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1337 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65230,7 +65938,7 @@ this.topOfStack 6 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -65240,16 +65948,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1339 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65262,16 +65970,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1339 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65287,16 +65995,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1340 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65309,16 +66017,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1340 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65334,16 +66042,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1341 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65356,16 +66064,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1342 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65378,16 +66086,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1342 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65403,16 +66111,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1341 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65421,7 +66129,7 @@ this.topOfStack 6 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -65431,16 +66139,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1343 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65449,7 +66157,7 @@ this.topOfStack 6 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -65459,16 +66167,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1344 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65481,16 +66189,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1344 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -65506,16 +66214,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1343 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65524,7 +66232,7 @@ this.topOfStack 7 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -65534,16 +66242,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1345 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65556,16 +66264,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1345 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65581,16 +66289,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1346 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65603,16 +66311,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1346 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65628,16 +66336,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1347 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65650,16 +66358,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1348 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65672,16 +66380,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1348 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65697,16 +66405,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1347 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65715,7 +66423,7 @@ this.topOfStack 7 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -65725,16 +66433,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1349 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65743,7 +66451,7 @@ this.topOfStack 7 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -65753,16 +66461,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1350 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65775,16 +66483,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1350 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -65800,16 +66508,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1349 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65818,7 +66526,7 @@ this.topOfStack 8 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -65828,16 +66536,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1351 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65850,16 +66558,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1351 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65875,16 +66583,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1352 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65897,16 +66605,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1352 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65922,16 +66630,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1353 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65944,16 +66652,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1354 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65966,16 +66674,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1354 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -65991,16 +66699,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1353 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -66009,7 +66717,7 @@ this.topOfStack 8 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -66019,16 +66727,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1355 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -66037,7 +66745,7 @@ this.topOfStack 8 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -66047,16 +66755,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1356 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -66069,16 +66777,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1356 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -66094,16 +66802,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1355 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66112,7 +66820,7 @@ this.topOfStack 9 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -66122,16 +66830,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1357 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66144,16 +66852,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1357 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66169,16 +66877,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1358 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66191,16 +66899,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1358 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66216,16 +66924,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1359 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66238,16 +66946,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1360 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66260,16 +66968,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1360 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66285,16 +66993,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1359 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66303,7 +67011,7 @@ this.topOfStack 9 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -66313,16 +67021,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1361 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66331,7 +67039,7 @@ this.topOfStack 9 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -66341,16 +67049,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1362 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66363,16 +67071,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1362 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -66388,16 +67096,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1361 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66406,7 +67114,7 @@ this.topOfStack 10 1 x -1317541148 +152005629 1 x.getClass().getName() "DataStructures.StackAr" @@ -66416,16 +67124,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1363 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66438,16 +67146,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1363 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66463,16 +67171,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1364 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66485,16 +67193,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1364 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66510,16 +67218,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1365 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66532,16 +67240,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1366 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66554,16 +67262,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1366 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66579,16 +67287,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1365 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66597,7 +67305,7 @@ this.topOfStack 10 1 return -1317541148 +152005629 1 return.getClass().getName() "DataStructures.StackAr" @@ -66607,16 +67315,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1367 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 1317541148 null null null null null null null null null] +[152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 152005629 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -66629,10 +67337,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1367 this -1317541148 +152005629 1 this.theArray -1210190219 +75457651 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66658,10 +67366,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1368 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66683,10 +67391,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1369 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66705,10 +67413,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1369 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66727,10 +67435,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1370 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66749,10 +67457,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1370 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66774,10 +67482,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1371 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66796,10 +67504,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1371 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66821,10 +67529,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1372 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66843,10 +67551,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1373 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66865,10 +67573,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1373 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66890,10 +67598,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1372 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66918,10 +67626,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1374 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66940,10 +67648,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1374 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66965,10 +67673,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1375 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -66987,10 +67695,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1376 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67009,10 +67717,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1376 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67034,10 +67742,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1375 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67062,10 +67770,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1377 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67084,10 +67792,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1377 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67109,10 +67817,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1378 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67131,10 +67839,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1378 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67156,10 +67864,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1379 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67178,10 +67886,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1380 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67200,10 +67908,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1380 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67225,10 +67933,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1379 this -849389996 +362239120 1 this.theArray -1373861163 +1796488937 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67260,10 +67968,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1381 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67285,10 +67993,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1382 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67307,10 +68015,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1382 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67329,10 +68037,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1383 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67351,10 +68059,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1383 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67376,10 +68084,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1384 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67398,10 +68106,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1384 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67423,10 +68131,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1385 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67445,10 +68153,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1386 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67467,10 +68175,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1386 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67492,10 +68200,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1385 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67520,10 +68228,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1387 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67542,10 +68250,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1387 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67567,10 +68275,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1388 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67589,10 +68297,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1389 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67611,10 +68319,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1389 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67636,10 +68344,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1388 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67664,10 +68372,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1390 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67686,10 +68394,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1390 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67711,10 +68419,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1391 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67733,10 +68441,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1391 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67758,10 +68466,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1392 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67780,10 +68488,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1393 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67802,10 +68510,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1393 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67827,10 +68535,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1392 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67855,10 +68563,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1394 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67873,7 +68581,7 @@ this.topOfStack -1 1 x -1545883417 +1225373914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67883,10 +68591,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1395 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67905,10 +68613,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1395 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -67930,16 +68638,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1394 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -67948,7 +68656,7 @@ this.topOfStack 0 1 x -1545883417 +1225373914 1 x.getClass().getName() "DataStructures.MyInteger" @@ -67958,16 +68666,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1396 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -67980,16 +68688,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1396 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68005,16 +68713,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1397 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68027,16 +68735,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1397 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68052,16 +68760,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1398 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68074,16 +68782,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1399 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68096,16 +68804,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1399 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68121,16 +68829,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1398 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68139,7 +68847,7 @@ this.topOfStack 0 1 return -1545883417 +1225373914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68149,16 +68857,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1400 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68167,7 +68875,7 @@ this.topOfStack 0 1 x -1405428113 +60830820 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68177,16 +68885,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1401 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68199,16 +68907,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1401 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68224,16 +68932,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1400 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68242,7 +68950,7 @@ this.topOfStack 1 1 x -1405428113 +60830820 1 x.getClass().getName() "DataStructures.MyInteger" @@ -68252,16 +68960,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1402 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68274,16 +68982,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1402 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68299,16 +69007,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1403 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68321,16 +69029,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1403 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68346,16 +69054,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1404 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68368,16 +69076,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1405 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68390,16 +69098,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1405 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68415,16 +69123,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1404 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68433,7 +69141,7 @@ this.topOfStack 1 1 return -1405428113 +60830820 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68443,16 +69151,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1406 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68465,16 +69173,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1406 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68490,16 +69198,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1407 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68512,16 +69220,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1407 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68537,16 +69245,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1408 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68559,16 +69267,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1409 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68581,16 +69289,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1409 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 1405428113] +[1225373914 60830820] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger"] @@ -68606,16 +69314,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1408 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68628,16 +69336,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1410 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68650,16 +69358,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1410 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68675,16 +69383,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1411 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68697,16 +69405,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1411 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68722,16 +69430,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1412 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68744,16 +69452,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1413 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68766,16 +69474,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1413 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68791,16 +69499,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1412 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68809,7 +69517,7 @@ this.topOfStack 0 1 return -1545883417 +1225373914 1 return.getClass().getName() "DataStructures.MyInteger" @@ -68819,16 +69527,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1414 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68841,16 +69549,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1414 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68866,16 +69574,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1415 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68888,16 +69596,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1415 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68913,16 +69621,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1416 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68935,16 +69643,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1417 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68957,16 +69665,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1417 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1545883417 null] +[1225373914 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null] @@ -68982,10 +69690,10 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1416 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69004,10 +69712,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1418 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69026,10 +69734,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1418 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69051,10 +69759,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1419 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69073,10 +69781,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1419 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69098,10 +69806,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1420 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69120,10 +69828,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1421 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69142,10 +69850,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1421 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69167,10 +69875,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1420 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69195,10 +69903,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1422 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69217,10 +69925,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1422 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69242,10 +69950,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1423 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69264,10 +69972,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1423 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69286,10 +69994,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1424 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69308,10 +70016,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1424 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69333,10 +70041,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1425 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69355,10 +70063,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1425 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69380,10 +70088,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1426 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69402,10 +70110,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1427 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69424,10 +70132,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1427 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69449,10 +70157,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1426 this -740393997 +423031029 1 this.theArray -1281656861 +1712669532 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69484,10 +70192,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1428 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69509,10 +70217,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1429 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69531,10 +70239,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1429 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69553,10 +70261,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1430 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69575,10 +70283,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1430 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69600,10 +70308,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1431 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69622,10 +70330,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1431 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69647,10 +70355,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1432 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69669,10 +70377,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1433 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69691,10 +70399,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1433 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69716,10 +70424,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1432 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69744,10 +70452,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1434 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69766,10 +70474,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1434 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69791,10 +70499,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1435 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69813,10 +70521,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1436 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69835,10 +70543,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1436 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69860,10 +70568,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1435 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69888,10 +70596,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1437 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69910,10 +70618,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1437 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69935,10 +70643,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1438 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69957,10 +70665,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1438 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -69982,10 +70690,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1439 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70004,10 +70712,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1440 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70026,10 +70734,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1440 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70051,10 +70759,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1439 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70079,10 +70787,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1441 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70097,7 +70805,7 @@ this.topOfStack -1 1 x -857661838 +759156157 1 x.getClass().getName() "DataStructures.StackAr" @@ -70107,10 +70815,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1442 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70129,10 +70837,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1442 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70154,16 +70862,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1441 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70172,7 +70880,7 @@ this.topOfStack 0 1 x -857661838 +759156157 1 x.getClass().getName() "DataStructures.StackAr" @@ -70182,16 +70890,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1443 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70204,16 +70912,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1443 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70229,16 +70937,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1444 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70251,16 +70959,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1444 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70276,16 +70984,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1445 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70298,16 +71006,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1446 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70320,16 +71028,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1446 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70345,16 +71053,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1445 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70363,7 +71071,7 @@ this.topOfStack 0 1 return -857661838 +759156157 1 return.getClass().getName() "DataStructures.StackAr" @@ -70373,16 +71081,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1447 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70391,7 +71099,7 @@ this.topOfStack 0 1 x -857661838 +759156157 1 x.getClass().getName() "DataStructures.StackAr" @@ -70401,16 +71109,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1448 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70423,16 +71131,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1448 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 null] +[759156157 null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null] @@ -70448,16 +71156,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1447 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70466,7 +71174,7 @@ this.topOfStack 1 1 x -857661838 +759156157 1 x.getClass().getName() "DataStructures.StackAr" @@ -70476,16 +71184,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1449 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70498,16 +71206,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1449 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70523,16 +71231,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1450 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70545,16 +71253,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1450 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70570,16 +71278,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1451 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70592,16 +71300,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1452 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70614,16 +71322,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1452 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70639,16 +71347,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1451 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70657,7 +71365,7 @@ this.topOfStack 1 1 return -857661838 +759156157 1 return.getClass().getName() "DataStructures.StackAr" @@ -70667,16 +71375,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1453 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[857661838 857661838] +[759156157 759156157] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr"] @@ -70689,10 +71397,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1453 this -857661838 +759156157 1 this.theArray -812272602 +1635546341 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70718,10 +71426,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1454 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70743,10 +71451,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1455 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70765,10 +71473,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1455 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70787,10 +71495,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1456 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70809,10 +71517,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1456 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70834,10 +71542,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1457 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70856,10 +71564,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1457 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70881,10 +71589,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1458 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70903,10 +71611,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1459 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70925,10 +71633,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1459 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70950,10 +71658,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1458 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -70978,10 +71686,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1460 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71000,10 +71708,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1460 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71025,10 +71733,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1461 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71047,10 +71755,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1462 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71069,10 +71777,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1462 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71094,10 +71802,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1461 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71122,10 +71830,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1463 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71144,10 +71852,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1463 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71169,10 +71877,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1464 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71191,10 +71899,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1464 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71216,10 +71924,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1465 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71238,10 +71946,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1466 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71260,10 +71968,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1466 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71285,10 +71993,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1465 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71313,10 +72021,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1467 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71331,7 +72039,7 @@ this.topOfStack -1 1 x -310113799 +884457408 1 x.getClass().getName() "java.lang.Object" @@ -71341,10 +72049,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1468 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71363,10 +72071,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1468 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -71388,16 +72096,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1467 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71406,7 +72114,7 @@ this.topOfStack 0 1 x -310113799 +884457408 1 x.getClass().getName() "java.lang.Object" @@ -71416,16 +72124,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1469 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71438,16 +72146,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1469 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71463,16 +72171,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1470 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71485,16 +72193,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1470 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71510,16 +72218,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1471 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71532,16 +72240,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1472 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71554,16 +72262,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1472 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71579,16 +72287,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1471 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71597,7 +72305,7 @@ this.topOfStack 0 1 return -310113799 +884457408 1 return.getClass().getName() "java.lang.Object" @@ -71607,16 +72315,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1473 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71625,7 +72333,7 @@ this.topOfStack 0 1 x -139808524 +913190639 1 x.getClass().getName() "java.lang.Object" @@ -71635,16 +72343,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1474 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71657,16 +72365,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1474 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 null null null null null null null null null] +[884457408 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null null null null null null null null] @@ -71682,16 +72390,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1473 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71700,7 +72408,7 @@ this.topOfStack 1 1 x -139808524 +913190639 1 x.getClass().getName() "java.lang.Object" @@ -71710,16 +72418,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1475 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71732,16 +72440,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1475 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71757,16 +72465,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1476 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71779,16 +72487,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1476 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71804,16 +72512,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1477 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71826,16 +72534,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1478 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71848,16 +72556,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1478 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71873,16 +72581,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1477 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71891,7 +72599,7 @@ this.topOfStack 1 1 return -139808524 +913190639 1 return.getClass().getName() "java.lang.Object" @@ -71901,16 +72609,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1479 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71919,7 +72627,7 @@ this.topOfStack 1 1 x -414753050 +1845066581 1 x.getClass().getName() "java.lang.Object" @@ -71929,16 +72637,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1480 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71951,16 +72659,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1480 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 null null null null null null null null] +[884457408 913190639 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null null null null null null null] @@ -71976,16 +72684,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1479 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -71994,7 +72702,7 @@ this.topOfStack 2 1 x -414753050 +1845066581 1 x.getClass().getName() "java.lang.Object" @@ -72004,16 +72712,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1481 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72026,16 +72734,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1481 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72051,16 +72759,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1482 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72073,16 +72781,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1482 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72098,16 +72806,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1483 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72120,16 +72828,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1484 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72142,16 +72850,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1484 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72167,16 +72875,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1483 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72185,7 +72893,7 @@ this.topOfStack 2 1 return -414753050 +1845066581 1 return.getClass().getName() "java.lang.Object" @@ -72195,16 +72903,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1485 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72213,7 +72921,7 @@ this.topOfStack 2 1 x -22593188 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72223,16 +72931,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1486 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72245,16 +72953,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1486 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 null null null null null null null] +[884457408 913190639 1845066581 null null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null] @@ -72270,16 +72978,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1485 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72288,7 +72996,7 @@ this.topOfStack 3 1 x -22593188 +1018937824 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72298,16 +73006,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1487 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72320,16 +73028,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1487 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72345,16 +73053,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1488 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72367,16 +73075,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1488 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72392,16 +73100,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1489 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72414,16 +73122,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1490 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72436,16 +73144,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1490 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72461,16 +73169,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1489 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72479,7 +73187,7 @@ this.topOfStack 3 1 return -22593188 +1018937824 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72489,16 +73197,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1491 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72507,7 +73215,7 @@ this.topOfStack 3 1 x -1766588844 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72517,16 +73225,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1492 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72539,16 +73247,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1492 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 null null null null null null] +[884457408 913190639 1845066581 1018937824 null null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null] @@ -72564,16 +73272,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1491 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72582,7 +73290,7 @@ this.topOfStack 4 1 x -1766588844 +905654280 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72592,16 +73300,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1493 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72614,16 +73322,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1493 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72639,16 +73347,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1494 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72661,16 +73369,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1494 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72686,16 +73394,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1495 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72708,16 +73416,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1496 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72730,16 +73438,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1496 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72755,16 +73463,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1495 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72773,7 +73481,7 @@ this.topOfStack 4 1 return -1766588844 +905654280 1 return.getClass().getName() "DataStructures.MyInteger" @@ -72783,16 +73491,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1497 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72801,7 +73509,7 @@ this.topOfStack 4 1 x -2097281333 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72811,16 +73519,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1498 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72833,16 +73541,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1498 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 null null null null null] +[884457408 913190639 1845066581 1018937824 905654280 null null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null] @@ -72858,16 +73566,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1497 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -72876,7 +73584,7 @@ this.topOfStack 5 1 x -2097281333 +1915058446 1 x.getClass().getName() "DataStructures.MyInteger" @@ -72886,16 +73594,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1499 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -72908,16 +73616,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1499 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -72933,16 +73641,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1500 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -72955,16 +73663,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1500 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -72980,16 +73688,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1501 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73002,16 +73710,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1502 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73024,16 +73732,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1502 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73049,16 +73757,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1501 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73067,7 +73775,7 @@ this.topOfStack 5 1 return -2097281333 +1915058446 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73077,16 +73785,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1503 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73095,7 +73803,7 @@ this.topOfStack 5 1 x -210781873 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73105,16 +73813,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1504 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73127,16 +73835,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1504 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 null null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 null null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null] @@ -73152,16 +73860,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1503 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73170,7 +73878,7 @@ this.topOfStack 6 1 x -210781873 +1419810764 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73180,16 +73888,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1505 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73202,16 +73910,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1505 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73227,16 +73935,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1506 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73249,16 +73957,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1506 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73274,16 +73982,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1507 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73296,16 +74004,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1508 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73318,16 +74026,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1508 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73343,16 +74051,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1507 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73361,7 +74069,7 @@ this.topOfStack 6 1 return -210781873 +1419810764 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73371,16 +74079,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1509 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73389,7 +74097,7 @@ this.topOfStack 6 1 x -1410405608 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73399,16 +74107,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1510 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73421,16 +74129,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1510 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 null null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 null null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null] @@ -73446,16 +74154,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1509 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73464,7 +74172,7 @@ this.topOfStack 7 1 x -1410405608 +922151033 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73474,16 +74182,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1511 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73496,16 +74204,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1511 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73521,16 +74229,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1512 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73543,16 +74251,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1512 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73568,16 +74276,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1513 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73590,16 +74298,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1514 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73612,16 +74320,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1514 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73637,16 +74345,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1513 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73655,7 +74363,7 @@ this.topOfStack 7 1 return -1410405608 +922151033 1 return.getClass().getName() "DataStructures.MyInteger" @@ -73665,16 +74373,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1515 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73683,7 +74391,7 @@ this.topOfStack 7 1 x -1843661383 +1516369375 1 x.getClass().getName() "java.lang.Object" @@ -73693,16 +74401,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1516 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73715,16 +74423,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1516 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 null null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" null null] @@ -73740,16 +74448,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1515 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73758,7 +74466,7 @@ this.topOfStack 8 1 x -1843661383 +1516369375 1 x.getClass().getName() "java.lang.Object" @@ -73768,16 +74476,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1517 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73790,16 +74498,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1517 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73815,16 +74523,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1518 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73837,16 +74545,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1518 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73862,16 +74570,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1519 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73884,16 +74592,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1520 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73906,16 +74614,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1520 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73931,16 +74639,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1519 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73949,7 +74657,7 @@ this.topOfStack 8 1 return -1843661383 +1516369375 1 return.getClass().getName() "java.lang.Object" @@ -73959,16 +74667,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1521 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -73977,7 +74685,7 @@ this.topOfStack 8 1 x -375321518 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -73987,16 +74695,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1522 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -74009,16 +74717,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1522 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 null] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null] @@ -74034,16 +74742,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1521 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74052,7 +74760,7 @@ this.topOfStack 9 1 x -375321518 +55909012 1 x.getClass().getName() "DataStructures.MyInteger" @@ -74062,16 +74770,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1523 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74084,16 +74792,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1523 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74109,16 +74817,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1524 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74131,16 +74839,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1524 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74156,16 +74864,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1525 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74178,16 +74886,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1526 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74200,16 +74908,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1526 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74225,16 +74933,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1525 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74243,7 +74951,7 @@ this.topOfStack 9 1 return -375321518 +55909012 1 return.getClass().getName() "DataStructures.MyInteger" @@ -74253,16 +74961,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1527 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[310113799 139808524 414753050 22593188 1766588844 2097281333 210781873 1410405608 1843661383 375321518] +[884457408 913190639 1845066581 1018937824 905654280 1915058446 1419810764 922151033 1516369375 55909012] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger"] @@ -74275,10 +74983,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1527 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74297,10 +75005,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1528 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74319,10 +75027,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1528 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74344,10 +75052,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1529 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74366,10 +75074,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1529 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74388,10 +75096,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1530 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74410,10 +75118,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1530 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74435,10 +75143,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1531 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74457,10 +75165,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1531 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74482,10 +75190,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1532 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74504,10 +75212,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1533 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74526,10 +75234,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1533 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74551,10 +75259,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1532 this -312077835 +1698156408 1 this.theArray -937106871 +1740035246 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74586,10 +75294,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1534 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74611,10 +75319,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1535 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74633,10 +75341,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1535 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74655,10 +75363,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1536 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74677,10 +75385,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1536 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74702,10 +75410,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1537 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74724,10 +75432,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1537 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74749,10 +75457,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1538 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74771,10 +75479,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1539 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74793,10 +75501,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1539 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74818,10 +75526,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1538 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74846,10 +75554,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1540 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74868,10 +75576,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1540 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74893,10 +75601,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1541 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74915,10 +75623,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1542 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74937,10 +75645,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1542 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74962,10 +75670,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1541 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -74990,10 +75698,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1543 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75012,10 +75720,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1543 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75037,10 +75745,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1544 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75059,10 +75767,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1544 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75084,10 +75792,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1545 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75106,10 +75814,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1546 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75128,10 +75836,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1546 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75153,10 +75861,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1545 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75181,10 +75889,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1547 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75199,7 +75907,7 @@ this.topOfStack -1 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -75209,10 +75917,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1548 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75231,10 +75939,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1548 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -75256,16 +75964,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1547 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75274,7 +75982,7 @@ this.topOfStack 0 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -75284,16 +75992,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1549 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75306,16 +76014,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1549 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75331,16 +76039,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1550 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75353,16 +76061,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1550 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75378,16 +76086,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1551 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75400,16 +76108,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1552 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75422,16 +76130,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1552 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75447,16 +76155,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1551 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75465,7 +76173,7 @@ this.topOfStack 0 1 return -869281787 +1394336709 1 return.getClass().getName() "DataStructures.StackAr" @@ -75475,16 +76183,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1553 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75493,7 +76201,7 @@ this.topOfStack 0 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -75503,16 +76211,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1554 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75525,16 +76233,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1554 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 null null null null null null null null null] +[1394336709 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null] @@ -75550,16 +76258,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1553 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75568,7 +76276,7 @@ this.topOfStack 1 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -75578,16 +76286,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1555 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75600,16 +76308,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1555 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75625,16 +76333,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1556 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75647,16 +76355,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1556 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75672,16 +76380,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1557 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75694,16 +76402,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1558 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75716,16 +76424,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1558 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75741,16 +76449,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1557 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75759,7 +76467,7 @@ this.topOfStack 1 1 return -869281787 +1394336709 1 return.getClass().getName() "DataStructures.StackAr" @@ -75769,16 +76477,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1559 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75787,7 +76495,7 @@ this.topOfStack 1 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -75797,16 +76505,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1560 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75819,16 +76527,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1560 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 null null null null null null null null] +[1394336709 1394336709 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null] @@ -75844,16 +76552,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1559 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -75862,7 +76570,7 @@ this.topOfStack 2 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -75872,16 +76580,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1561 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -75894,16 +76602,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1561 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -75919,16 +76627,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1562 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -75941,16 +76649,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1562 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -75966,16 +76674,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1563 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -75988,16 +76696,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1564 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -76010,16 +76718,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1564 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -76035,16 +76743,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1563 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -76053,7 +76761,7 @@ this.topOfStack 2 1 return -869281787 +1394336709 1 return.getClass().getName() "DataStructures.StackAr" @@ -76063,16 +76771,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1565 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -76081,7 +76789,7 @@ this.topOfStack 2 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -76091,16 +76799,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1566 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -76113,16 +76821,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1566 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 null null null null null null null] +[1394336709 1394336709 1394336709 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null] @@ -76138,16 +76846,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1565 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76156,7 +76864,7 @@ this.topOfStack 3 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -76166,16 +76874,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1567 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76188,16 +76896,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1567 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76213,16 +76921,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1568 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76235,16 +76943,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1568 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76260,16 +76968,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1569 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76282,16 +76990,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1570 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76304,16 +77012,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1570 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76329,16 +77037,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1569 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76347,7 +77055,7 @@ this.topOfStack 3 1 return -869281787 +1394336709 1 return.getClass().getName() "DataStructures.StackAr" @@ -76357,16 +77065,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1571 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76375,7 +77083,7 @@ this.topOfStack 3 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -76385,16 +77093,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1572 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76407,16 +77115,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1572 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 null null null null null null] +[1394336709 1394336709 1394336709 1394336709 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null] @@ -76432,16 +77140,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1571 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76450,7 +77158,7 @@ this.topOfStack 4 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -76460,16 +77168,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1573 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76482,16 +77190,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1573 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76507,16 +77215,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1574 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76529,16 +77237,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1574 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76554,16 +77262,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1575 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76576,16 +77284,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1576 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76598,16 +77306,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1576 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76623,16 +77331,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1575 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76641,7 +77349,7 @@ this.topOfStack 4 1 return -869281787 +1394336709 1 return.getClass().getName() "DataStructures.StackAr" @@ -76651,16 +77359,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1577 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76669,7 +77377,7 @@ this.topOfStack 4 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -76679,16 +77387,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1578 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76701,16 +77409,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1578 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 null null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null] @@ -76726,16 +77434,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1577 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76744,7 +77452,7 @@ this.topOfStack 5 1 x -869281787 +1394336709 1 x.getClass().getName() "DataStructures.StackAr" @@ -76754,16 +77462,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1579 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76776,16 +77484,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1579 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76801,16 +77509,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1580 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76823,16 +77531,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1580 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76848,16 +77556,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1581 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76870,16 +77578,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1582 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76892,16 +77600,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1582 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76917,16 +77625,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1581 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76935,7 +77643,7 @@ this.topOfStack 5 1 return -869281787 +1394336709 1 return.getClass().getName() "DataStructures.StackAr" @@ -76945,16 +77653,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1583 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[869281787 869281787 869281787 869281787 869281787 869281787 null null null null] +[1394336709 1394336709 1394336709 1394336709 1394336709 1394336709 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null] @@ -76967,10 +77675,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1583 this -869281787 +1394336709 1 this.theArray -687743568 +1387228415 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -76996,10 +77704,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1584 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77021,10 +77729,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1585 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77043,10 +77751,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1585 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77065,10 +77773,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1586 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77087,10 +77795,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1586 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77112,10 +77820,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1587 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77134,10 +77842,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1587 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77159,10 +77867,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1588 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77181,10 +77889,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1589 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77203,10 +77911,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1589 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77228,10 +77936,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1588 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77256,10 +77964,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1590 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77278,10 +77986,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1590 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77303,10 +78011,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1591 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77325,10 +78033,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1592 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77347,10 +78055,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1592 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77372,10 +78080,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1591 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77400,10 +78108,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1593 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77422,10 +78130,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1593 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77447,10 +78155,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1594 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77469,10 +78177,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1594 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77494,10 +78202,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1595 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77516,10 +78224,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1596 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77538,10 +78246,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1596 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77563,10 +78271,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1595 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77591,10 +78299,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1597 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77609,7 +78317,7 @@ this.topOfStack -1 1 x -614613564 +546718765 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77619,10 +78327,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1598 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77641,10 +78349,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1598 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -77666,16 +78374,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1597 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77684,7 +78392,7 @@ this.topOfStack 0 1 x -614613564 +546718765 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77694,16 +78402,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1599 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77716,16 +78424,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1599 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77741,16 +78449,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1600 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77763,16 +78471,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1600 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77788,16 +78496,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1601 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77810,16 +78518,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1602 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77832,16 +78540,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1602 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77857,16 +78565,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1601 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77875,7 +78583,7 @@ this.topOfStack 0 1 return -614613564 +546718765 1 return.getClass().getName() "DataStructures.MyInteger" @@ -77885,16 +78593,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1603 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77903,7 +78611,7 @@ this.topOfStack 0 1 x -413828078 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77913,16 +78621,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1604 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77935,16 +78643,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1604 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -77960,16 +78668,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1603 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -77978,7 +78686,7 @@ this.topOfStack 1 1 x -413828078 +167185492 1 x.getClass().getName() "DataStructures.MyInteger" @@ -77988,16 +78696,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1605 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78010,16 +78718,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1605 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78035,16 +78743,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1606 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78057,16 +78765,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1606 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78082,16 +78790,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1607 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78104,16 +78812,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1608 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78126,16 +78834,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1608 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78151,16 +78859,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1607 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78169,7 +78877,7 @@ this.topOfStack 1 1 return -413828078 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -78179,16 +78887,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1609 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78197,7 +78905,7 @@ this.topOfStack 1 1 x -1656457960 +592179046 1 x.getClass().getName() "java.lang.Object" @@ -78207,16 +78915,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1610 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78229,16 +78937,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1610 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -78254,16 +78962,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1609 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78272,7 +78980,7 @@ this.topOfStack 2 1 x -1656457960 +592179046 1 x.getClass().getName() "java.lang.Object" @@ -78282,16 +78990,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1611 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78304,16 +79012,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1611 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78329,16 +79037,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1612 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78351,16 +79059,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1612 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78376,16 +79084,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1613 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78398,16 +79106,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1614 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78420,16 +79128,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1614 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78445,16 +79153,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1613 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78463,7 +79171,7 @@ this.topOfStack 2 1 return -1656457960 +592179046 1 return.getClass().getName() "java.lang.Object" @@ -78473,16 +79181,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1615 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78491,7 +79199,7 @@ this.topOfStack 2 1 x -110934012 +1937348256 1 x.getClass().getName() "java.lang.Object" @@ -78501,16 +79209,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1616 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78523,16 +79231,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1616 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -78548,16 +79256,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1615 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78566,7 +79274,7 @@ this.topOfStack 3 1 x -110934012 +1937348256 1 x.getClass().getName() "java.lang.Object" @@ -78576,16 +79284,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1617 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78598,16 +79306,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1617 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78623,16 +79331,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1618 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78645,16 +79353,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1618 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78670,16 +79378,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1619 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78692,16 +79400,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1620 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78714,16 +79422,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1620 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78739,16 +79447,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1619 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78757,7 +79465,7 @@ this.topOfStack 3 1 return -110934012 +1937348256 1 return.getClass().getName() "java.lang.Object" @@ -78767,16 +79475,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1621 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78785,7 +79493,7 @@ this.topOfStack 3 1 x -452134088 +1641808846 1 x.getClass().getName() "java.lang.Object" @@ -78795,16 +79503,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1622 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78817,16 +79525,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1622 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -78842,16 +79550,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1621 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -78860,7 +79568,7 @@ this.topOfStack 4 1 x -452134088 +1641808846 1 x.getClass().getName() "java.lang.Object" @@ -78870,16 +79578,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1623 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -78892,16 +79600,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1623 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -78917,16 +79625,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1624 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -78939,16 +79647,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1624 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -78964,16 +79672,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1625 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -78986,16 +79694,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1626 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -79008,16 +79716,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1626 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -79033,16 +79741,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1625 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -79051,7 +79759,7 @@ this.topOfStack 4 1 return -452134088 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -79061,16 +79769,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1627 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -79079,7 +79787,7 @@ this.topOfStack 4 1 x -1220473930 +1358444045 1 x.getClass().getName() "java.lang.Object" @@ -79089,16 +79797,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1628 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -79111,16 +79819,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1628 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -79136,16 +79844,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1627 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79154,7 +79862,7 @@ this.topOfStack 5 1 x -1220473930 +1358444045 1 x.getClass().getName() "java.lang.Object" @@ -79164,16 +79872,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1629 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79186,16 +79894,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1629 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79211,16 +79919,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1630 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79233,16 +79941,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1630 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79258,16 +79966,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1631 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79280,16 +79988,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1632 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79302,16 +80010,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1632 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79327,16 +80035,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1631 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79345,7 +80053,7 @@ this.topOfStack 5 1 return -1220473930 +1358444045 1 return.getClass().getName() "java.lang.Object" @@ -79355,16 +80063,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1633 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79373,7 +80081,7 @@ this.topOfStack 5 1 x -1889029013 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79383,16 +80091,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1634 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79405,16 +80113,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1634 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -79430,16 +80138,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1633 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79448,7 +80156,7 @@ this.topOfStack 6 1 x -1889029013 +750044075 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79458,16 +80166,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1635 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79480,16 +80188,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1635 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79505,16 +80213,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1636 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79527,16 +80235,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1636 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79552,16 +80260,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1637 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79574,16 +80282,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1638 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79596,16 +80304,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1638 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79621,16 +80329,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1637 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79639,7 +80347,7 @@ this.topOfStack 6 1 return -1889029013 +750044075 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79649,16 +80357,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1639 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79667,7 +80375,7 @@ this.topOfStack 6 1 x -512384243 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79677,16 +80385,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1640 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79699,16 +80407,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1640 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -79724,16 +80432,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1639 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79742,7 +80450,7 @@ this.topOfStack 7 1 x -512384243 +331844619 1 x.getClass().getName() "DataStructures.MyInteger" @@ -79752,16 +80460,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1641 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79774,16 +80482,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1641 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79799,16 +80507,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1642 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79821,16 +80529,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1642 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79846,16 +80554,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1643 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79868,16 +80576,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1644 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79890,16 +80598,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1644 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79915,16 +80623,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1643 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79933,7 +80641,7 @@ this.topOfStack 7 1 return -512384243 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -79943,16 +80651,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1645 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79961,7 +80669,7 @@ this.topOfStack 7 1 x -232547631 +310656974 1 x.getClass().getName() "java.lang.Object" @@ -79971,16 +80679,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1646 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -79993,16 +80701,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1646 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -80018,16 +80726,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1645 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80036,7 +80744,7 @@ this.topOfStack 8 1 x -232547631 +310656974 1 x.getClass().getName() "java.lang.Object" @@ -80046,16 +80754,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1647 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80068,16 +80776,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1647 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80093,16 +80801,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1648 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80115,16 +80823,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1648 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80140,16 +80848,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1649 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80162,16 +80870,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1650 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80184,16 +80892,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1650 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80209,16 +80917,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1649 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80227,7 +80935,7 @@ this.topOfStack 8 1 return -232547631 +310656974 1 return.getClass().getName() "java.lang.Object" @@ -80237,16 +80945,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1651 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80255,7 +80963,7 @@ this.topOfStack 8 1 x -7796677 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80265,16 +80973,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1652 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80287,16 +80995,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1652 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -80312,16 +81020,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1651 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80330,7 +81038,7 @@ this.topOfStack 9 1 x -7796677 +64830413 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80340,16 +81048,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1653 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80362,16 +81070,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1653 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80387,16 +81095,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1654 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80409,16 +81117,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1654 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80434,16 +81142,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1655 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80456,16 +81164,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1656 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80478,16 +81186,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1656 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80503,16 +81211,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1655 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80521,7 +81229,7 @@ this.topOfStack 9 1 return -7796677 +64830413 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80531,16 +81239,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1657 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80549,7 +81257,7 @@ this.topOfStack 9 1 x -42247872 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80559,16 +81267,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1658 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80581,16 +81289,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1658 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -80606,16 +81314,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1657 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80624,7 +81332,7 @@ this.topOfStack 10 1 x -42247872 +159259014 1 x.getClass().getName() "DataStructures.MyInteger" @@ -80634,16 +81342,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1659 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80656,16 +81364,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1659 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80681,16 +81389,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1660 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80703,16 +81411,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1660 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80728,16 +81436,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1661 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80750,16 +81458,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1662 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80772,16 +81480,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1662 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80797,16 +81505,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1661 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80815,7 +81523,7 @@ this.topOfStack 10 1 return -42247872 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -80825,16 +81533,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1663 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80843,7 +81551,7 @@ this.topOfStack 10 1 x -1390381194 +653687670 1 x.getClass().getName() "java.lang.Object" @@ -80853,16 +81561,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1664 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80875,16 +81583,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1664 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -80900,16 +81608,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1663 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -80918,7 +81626,7 @@ this.topOfStack 11 1 x -1390381194 +653687670 1 x.getClass().getName() "java.lang.Object" @@ -80928,16 +81636,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1665 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -80950,16 +81658,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1665 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -80975,16 +81683,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1666 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -80997,16 +81705,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1666 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81022,16 +81730,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1667 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81044,16 +81752,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1668 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81066,16 +81774,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1668 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81091,16 +81799,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1667 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81109,7 +81817,7 @@ this.topOfStack 11 1 return -1390381194 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -81119,16 +81827,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1669 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81137,7 +81845,7 @@ this.topOfStack 11 1 x -1367164551 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81147,16 +81855,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1670 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81169,16 +81877,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1670 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -81194,16 +81902,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1669 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81212,7 +81920,7 @@ this.topOfStack 12 1 x -1367164551 +356473385 1 x.getClass().getName() "DataStructures.MyInteger" @@ -81222,16 +81930,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1671 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81244,16 +81952,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1671 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81269,16 +81977,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1672 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81291,16 +81999,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1672 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81316,16 +82024,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1673 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81338,16 +82046,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1674 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81360,16 +82068,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1674 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81385,16 +82093,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1673 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81403,7 +82111,7 @@ this.topOfStack 12 1 return -1367164551 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -81413,16 +82121,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1675 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81431,7 +82139,7 @@ this.topOfStack 12 1 x -2007069404 +2136344592 1 x.getClass().getName() "java.lang.Object" @@ -81441,16 +82149,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1676 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81463,16 +82171,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1676 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -81488,16 +82196,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1675 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81506,7 +82214,7 @@ this.topOfStack 13 1 x -2007069404 +2136344592 1 x.getClass().getName() "java.lang.Object" @@ -81516,16 +82224,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1677 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81538,16 +82246,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1677 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81563,16 +82271,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1678 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81585,16 +82293,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1678 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81610,16 +82318,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1679 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81632,16 +82340,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1680 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81654,16 +82362,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1680 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81679,16 +82387,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1679 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81697,7 +82405,7 @@ this.topOfStack 13 1 return -2007069404 +2136344592 1 return.getClass().getName() "java.lang.Object" @@ -81707,16 +82415,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1681 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81725,7 +82433,7 @@ this.topOfStack 13 1 x -142345952 +110992469 1 x.getClass().getName() "java.lang.Object" @@ -81735,16 +82443,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1682 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81757,16 +82465,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1682 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -81782,16 +82490,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1681 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81800,7 +82508,7 @@ this.topOfStack 14 1 x -142345952 +110992469 1 x.getClass().getName() "java.lang.Object" @@ -81810,16 +82518,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1683 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81832,16 +82540,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1683 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81857,16 +82565,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1684 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81879,16 +82587,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1684 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81904,16 +82612,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1685 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81926,16 +82634,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1686 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81948,16 +82656,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1686 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81973,16 +82681,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1685 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -81991,7 +82699,7 @@ this.topOfStack 14 1 return -142345952 +110992469 1 return.getClass().getName() "java.lang.Object" @@ -82001,16 +82709,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1687 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -82019,7 +82727,7 @@ this.topOfStack 14 1 x -111632506 +329611835 1 x.getClass().getName() "java.lang.Object" @@ -82029,16 +82737,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1688 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -82051,16 +82759,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1688 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -82076,16 +82784,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1687 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82094,7 +82802,7 @@ this.topOfStack 15 1 x -111632506 +329611835 1 x.getClass().getName() "java.lang.Object" @@ -82104,16 +82812,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1689 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82126,16 +82834,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1689 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82151,16 +82859,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1690 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82173,16 +82881,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1690 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82198,16 +82906,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1691 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82220,16 +82928,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1692 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82242,16 +82950,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1692 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82267,16 +82975,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1691 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82285,7 +82993,7 @@ this.topOfStack 15 1 return -111632506 +329611835 1 return.getClass().getName() "java.lang.Object" @@ -82295,16 +83003,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1693 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82313,7 +83021,7 @@ this.topOfStack 15 1 x -1454304511 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82323,16 +83031,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1694 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82345,16 +83053,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1694 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -82370,16 +83078,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1693 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82388,7 +83096,7 @@ this.topOfStack 16 1 x -1454304511 +2091156596 1 x.getClass().getName() "DataStructures.MyInteger" @@ -82398,16 +83106,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1695 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82420,16 +83128,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1695 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82445,16 +83153,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1696 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82467,16 +83175,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1696 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82492,16 +83200,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1697 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82514,16 +83222,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1698 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82536,16 +83244,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1698 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82561,16 +83269,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1697 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82579,7 +83287,7 @@ this.topOfStack 16 1 return -1454304511 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -82589,16 +83297,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1699 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82607,7 +83315,7 @@ this.topOfStack 16 1 x -1984529870 +863831416 1 x.getClass().getName() "java.lang.Object" @@ -82617,16 +83325,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1700 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82639,16 +83347,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1700 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -82664,16 +83372,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1699 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82682,7 +83390,7 @@ this.topOfStack 17 1 x -1984529870 +863831416 1 x.getClass().getName() "java.lang.Object" @@ -82692,16 +83400,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1701 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82714,16 +83422,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1701 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82739,16 +83447,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1702 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82761,16 +83469,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1702 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82786,16 +83494,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1703 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82808,16 +83516,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1704 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82830,16 +83538,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1704 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82855,16 +83563,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1703 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82873,7 +83581,7 @@ this.topOfStack 17 1 return -1984529870 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -82883,16 +83591,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1705 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82901,7 +83609,7 @@ this.topOfStack 17 1 x -1425003533 +1508395126 1 x.getClass().getName() "java.lang.Object" @@ -82911,16 +83619,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1706 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82933,16 +83641,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1706 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -82958,16 +83666,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1705 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -82976,7 +83684,7 @@ this.topOfStack 18 1 x -1425003533 +1508395126 1 x.getClass().getName() "java.lang.Object" @@ -82986,16 +83694,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1707 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83008,16 +83716,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1707 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83033,16 +83741,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1708 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83055,16 +83763,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1708 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83080,16 +83788,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1709 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83102,16 +83810,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1710 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83124,16 +83832,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1710 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83149,16 +83857,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1709 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83167,7 +83875,7 @@ this.topOfStack 18 1 return -1425003533 +1508395126 1 return.getClass().getName() "java.lang.Object" @@ -83177,16 +83885,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1711 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83195,7 +83903,7 @@ this.topOfStack 18 1 x -1296747787 +1638172114 1 x.getClass().getName() "DataStructures.MyInteger" @@ -83205,16 +83913,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1712 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83227,16 +83935,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1712 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83252,16 +83960,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1711 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83270,7 +83978,7 @@ this.topOfStack 19 1 x -1296747787 +1638172114 1 x.getClass().getName() "DataStructures.MyInteger" @@ -83280,16 +83988,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1713 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83302,16 +84010,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1713 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83327,16 +84035,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1714 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83349,16 +84057,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1714 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83374,16 +84082,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1715 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83396,16 +84104,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1716 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83418,16 +84126,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1716 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83443,16 +84151,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1715 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83461,7 +84169,7 @@ this.topOfStack 19 1 return -1296747787 +1638172114 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83471,16 +84179,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1717 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83493,16 +84201,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1717 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83518,16 +84226,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1718 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83540,16 +84248,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1718 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83565,16 +84273,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1719 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83587,16 +84295,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1720 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83609,16 +84317,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1720 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83634,16 +84342,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1721 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83656,16 +84364,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1722 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83678,16 +84386,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1722 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83703,16 +84411,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1721 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 1296747787] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 1638172114] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger"] @@ -83721,7 +84429,7 @@ this.topOfStack 19 1 return -1296747787 +1638172114 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83731,16 +84439,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1719 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83749,7 +84457,7 @@ this.topOfStack 18 1 return -1296747787 +1638172114 1 return.getClass().getName() "DataStructures.MyInteger" @@ -83759,16 +84467,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1723 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83781,16 +84489,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1723 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83806,16 +84514,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1724 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83828,16 +84536,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1724 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83853,16 +84561,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1725 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83875,16 +84583,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1726 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83897,16 +84605,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1726 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83922,16 +84630,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1725 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83940,7 +84648,7 @@ this.topOfStack 18 1 return -1425003533 +1508395126 1 return.getClass().getName() "java.lang.Object" @@ -83950,16 +84658,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1727 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83972,16 +84680,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1727 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -83997,16 +84705,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1728 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84019,16 +84727,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1728 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84044,16 +84752,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1729 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84066,16 +84774,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1730 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84088,16 +84796,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1730 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84113,16 +84821,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1731 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84135,16 +84843,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1732 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84157,16 +84865,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1732 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84182,16 +84890,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1731 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 1425003533 null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 1508395126 null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null] @@ -84200,7 +84908,7 @@ this.topOfStack 18 1 return -1425003533 +1508395126 1 return.getClass().getName() "java.lang.Object" @@ -84210,16 +84918,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1729 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84228,7 +84936,7 @@ this.topOfStack 17 1 return -1425003533 +1508395126 1 return.getClass().getName() "java.lang.Object" @@ -84238,16 +84946,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1733 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84260,16 +84968,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1733 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84285,16 +84993,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1734 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84307,16 +85015,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1734 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84332,16 +85040,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1735 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84354,16 +85062,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1736 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84376,16 +85084,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1736 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84401,16 +85109,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1735 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84419,7 +85127,7 @@ this.topOfStack 17 1 return -1984529870 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -84429,16 +85137,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1737 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84451,16 +85159,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1737 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84476,16 +85184,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1738 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84498,16 +85206,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1738 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84523,16 +85231,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1739 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84545,16 +85253,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1740 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84567,16 +85275,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1740 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84592,16 +85300,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1741 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84614,16 +85322,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1742 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84636,16 +85344,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1742 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84661,16 +85369,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1741 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 1984529870 null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 863831416 null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null] @@ -84679,7 +85387,7 @@ this.topOfStack 17 1 return -1984529870 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -84689,16 +85397,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1739 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84707,7 +85415,7 @@ this.topOfStack 16 1 return -1984529870 +863831416 1 return.getClass().getName() "java.lang.Object" @@ -84717,16 +85425,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1743 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84739,16 +85447,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1743 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84764,16 +85472,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1744 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84786,16 +85494,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1744 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84811,16 +85519,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1745 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84833,16 +85541,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1746 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84855,16 +85563,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1746 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84880,16 +85588,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1745 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84898,7 +85606,7 @@ this.topOfStack 16 1 return -1454304511 +2091156596 1 return.getClass().getName() "DataStructures.MyInteger" @@ -84908,16 +85616,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1747 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84930,16 +85638,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1747 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84955,16 +85663,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1748 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -84977,16 +85685,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1748 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -85002,16 +85710,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1749 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -85024,16 +85732,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1750 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -85046,16 +85754,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1750 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 1454304511 null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 2091156596 null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null] @@ -85071,16 +85779,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1749 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85093,16 +85801,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1751 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85115,16 +85823,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1751 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85140,16 +85848,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1752 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85162,16 +85870,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1752 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85187,16 +85895,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1753 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85209,16 +85917,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1754 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85231,16 +85939,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1754 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85256,16 +85964,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1753 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85274,7 +85982,7 @@ this.topOfStack 15 1 return -111632506 +329611835 1 return.getClass().getName() "java.lang.Object" @@ -85284,16 +85992,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1755 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85306,16 +86014,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1755 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85331,16 +86039,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1756 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85353,16 +86061,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1756 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85378,16 +86086,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1757 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85400,16 +86108,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1758 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85422,16 +86130,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1758 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 111632506 null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 329611835 null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null] @@ -85447,16 +86155,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1757 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85469,16 +86177,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1759 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85491,16 +86199,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1759 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85516,16 +86224,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1760 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85538,16 +86246,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1760 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85563,16 +86271,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1761 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85585,16 +86293,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1762 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85607,16 +86315,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1762 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85632,16 +86340,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1761 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85650,7 +86358,7 @@ this.topOfStack 14 1 return -142345952 +110992469 1 return.getClass().getName() "java.lang.Object" @@ -85660,16 +86368,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1763 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85682,16 +86390,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1763 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85707,16 +86415,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1764 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85729,16 +86437,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1764 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85754,16 +86462,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1765 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85776,16 +86484,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1766 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85798,16 +86506,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1766 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85823,16 +86531,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1767 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85845,16 +86553,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1768 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85867,16 +86575,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1768 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85892,16 +86600,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1767 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 142345952 null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 110992469 null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null] @@ -85910,7 +86618,7 @@ this.topOfStack 14 1 return -142345952 +110992469 1 return.getClass().getName() "java.lang.Object" @@ -85920,16 +86628,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1765 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -85938,7 +86646,7 @@ this.topOfStack 13 1 return -142345952 +110992469 1 return.getClass().getName() "java.lang.Object" @@ -85948,16 +86656,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1769 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -85970,16 +86678,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1769 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -85995,16 +86703,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1770 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86017,16 +86725,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1770 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86042,16 +86750,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1771 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86064,16 +86772,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1772 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86086,16 +86794,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1772 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86111,16 +86819,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1771 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86129,7 +86837,7 @@ this.topOfStack 13 1 return -2007069404 +2136344592 1 return.getClass().getName() "java.lang.Object" @@ -86139,16 +86847,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1773 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86161,16 +86869,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1773 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86186,16 +86894,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1774 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86208,16 +86916,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1774 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86233,16 +86941,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1775 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86255,16 +86963,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1776 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86277,16 +86985,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1776 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 2007069404 null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 2136344592 null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "java.lang.Object" null null null null null null] @@ -86302,16 +87010,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1775 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86324,16 +87032,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1777 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86346,16 +87054,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1777 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86371,16 +87079,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1778 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86393,16 +87101,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1778 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86418,16 +87126,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1779 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86440,16 +87148,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1780 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86462,16 +87170,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1780 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86487,16 +87195,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1779 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86505,7 +87213,7 @@ this.topOfStack 12 1 return -1367164551 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86515,16 +87223,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1781 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86537,16 +87245,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1781 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86562,16 +87270,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1782 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86584,16 +87292,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1782 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86609,16 +87317,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1783 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86631,16 +87339,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1784 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86653,16 +87361,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1784 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86678,16 +87386,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1785 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86700,16 +87408,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1786 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86722,16 +87430,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1786 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86747,16 +87455,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1785 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 1367164551 null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 356473385 null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null] @@ -86765,7 +87473,7 @@ this.topOfStack 12 1 return -1367164551 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86775,16 +87483,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1783 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86793,7 +87501,7 @@ this.topOfStack 11 1 return -1367164551 +356473385 1 return.getClass().getName() "DataStructures.MyInteger" @@ -86803,16 +87511,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1787 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86825,16 +87533,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1787 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86850,16 +87558,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1788 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86872,16 +87580,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1788 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86897,16 +87605,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1789 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86919,16 +87627,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1790 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86941,16 +87649,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1790 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86966,16 +87674,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1789 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -86984,7 +87692,7 @@ this.topOfStack 11 1 return -1390381194 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -86994,16 +87702,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1791 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87016,16 +87724,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1791 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87041,16 +87749,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1792 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87063,16 +87771,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1792 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87088,16 +87796,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1793 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87110,16 +87818,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1794 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87132,16 +87840,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1794 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87157,16 +87865,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1795 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87179,16 +87887,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1796 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87201,16 +87909,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1796 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87226,16 +87934,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1795 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 1390381194 null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 653687670 null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null] @@ -87244,7 +87952,7 @@ this.topOfStack 11 1 return -1390381194 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -87254,16 +87962,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1793 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87272,7 +87980,7 @@ this.topOfStack 10 1 return -1390381194 +653687670 1 return.getClass().getName() "java.lang.Object" @@ -87282,16 +87990,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1797 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87304,16 +88012,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1797 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87329,16 +88037,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1798 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87351,16 +88059,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1798 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87376,16 +88084,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1799 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87398,16 +88106,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1800 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87420,16 +88128,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1800 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87445,16 +88153,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1799 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87463,7 +88171,7 @@ this.topOfStack 10 1 return -42247872 +159259014 1 return.getClass().getName() "DataStructures.MyInteger" @@ -87473,16 +88181,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1801 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87495,16 +88203,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1801 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87520,16 +88228,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1802 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87542,16 +88250,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1802 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87567,16 +88275,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1803 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87589,16 +88297,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1804 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87611,16 +88319,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1804 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 42247872 null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 159259014 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null] @@ -87636,16 +88344,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1803 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87658,16 +88366,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1805 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87680,16 +88388,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1805 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87705,16 +88413,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1806 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87727,16 +88435,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1806 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87752,16 +88460,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1807 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87774,16 +88482,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1808 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87796,16 +88504,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1808 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87821,16 +88529,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1807 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87839,7 +88547,7 @@ this.topOfStack 9 1 return -7796677 +64830413 1 return.getClass().getName() "DataStructures.MyInteger" @@ -87849,16 +88557,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1809 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87871,16 +88579,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1809 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87896,16 +88604,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1810 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87918,16 +88626,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1810 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87943,16 +88651,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1811 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87965,16 +88673,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1812 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -87987,16 +88695,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1812 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 7796677 null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 64830413 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null] @@ -88012,16 +88720,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1811 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88034,16 +88742,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1813 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88056,16 +88764,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1813 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88081,16 +88789,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1814 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88103,16 +88811,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1814 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88128,16 +88836,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1815 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88150,16 +88858,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1816 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88172,16 +88880,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1816 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88197,16 +88905,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1815 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88215,7 +88923,7 @@ this.topOfStack 8 1 return -232547631 +310656974 1 return.getClass().getName() "java.lang.Object" @@ -88225,16 +88933,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1817 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88247,16 +88955,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1817 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88272,16 +88980,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1818 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88294,16 +89002,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1818 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88319,16 +89027,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1819 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88341,16 +89049,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1820 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88363,16 +89071,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1820 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 232547631 null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 310656974 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null] @@ -88388,16 +89096,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1819 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88410,16 +89118,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1821 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88432,16 +89140,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1821 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88457,16 +89165,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1822 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88479,16 +89187,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1822 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88504,16 +89212,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1823 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88526,16 +89234,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1824 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88548,16 +89256,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1824 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88573,16 +89281,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1823 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88591,7 +89299,7 @@ this.topOfStack 7 1 return -512384243 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88601,16 +89309,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1825 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88623,16 +89331,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1825 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88648,16 +89356,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1826 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88670,16 +89378,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1826 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88695,16 +89403,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1827 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88717,16 +89425,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1828 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88739,16 +89447,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1828 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88764,16 +89472,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1829 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88786,16 +89494,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1830 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88808,16 +89516,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1830 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88833,16 +89541,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1829 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 512384243 null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 331844619 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null] @@ -88851,7 +89559,7 @@ this.topOfStack 7 1 return -512384243 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88861,16 +89569,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1827 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -88879,7 +89587,7 @@ this.topOfStack 6 1 return -512384243 +331844619 1 return.getClass().getName() "DataStructures.MyInteger" @@ -88889,16 +89597,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1831 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -88911,16 +89619,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1831 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -88936,16 +89644,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1832 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -88958,16 +89666,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1832 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -88983,16 +89691,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1833 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89005,16 +89713,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1834 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89027,16 +89735,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1834 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89052,16 +89760,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1833 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89070,7 +89778,7 @@ this.topOfStack 6 1 return -1889029013 +750044075 1 return.getClass().getName() "DataStructures.MyInteger" @@ -89080,16 +89788,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1835 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89102,16 +89810,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1835 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89127,16 +89835,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1836 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89149,16 +89857,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1836 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89174,16 +89882,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1837 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89196,16 +89904,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1838 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89218,16 +89926,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1838 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 1889029013 null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 750044075 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" "DataStructures.MyInteger" null null null null null null null null null null null null null] @@ -89243,16 +89951,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1837 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89265,16 +89973,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1839 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89287,16 +89995,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1839 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89312,16 +90020,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1840 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89334,16 +90042,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1840 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89359,16 +90067,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1841 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89381,16 +90089,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1842 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89403,16 +90111,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1842 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89428,16 +90136,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1841 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89446,7 +90154,7 @@ this.topOfStack 5 1 return -1220473930 +1358444045 1 return.getClass().getName() "java.lang.Object" @@ -89456,16 +90164,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1843 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89478,16 +90186,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1843 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89503,16 +90211,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1844 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89525,16 +90233,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1844 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89550,16 +90258,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1845 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89572,16 +90280,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1846 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89594,16 +90302,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1846 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89619,16 +90327,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1847 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89641,16 +90349,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1848 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89663,16 +90371,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1848 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89688,16 +90396,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1847 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 1220473930 null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 1358444045 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null] @@ -89706,7 +90414,7 @@ this.topOfStack 5 1 return -1220473930 +1358444045 1 return.getClass().getName() "java.lang.Object" @@ -89716,16 +90424,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1845 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89734,7 +90442,7 @@ this.topOfStack 4 1 return -1220473930 +1358444045 1 return.getClass().getName() "java.lang.Object" @@ -89744,16 +90452,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1849 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89766,16 +90474,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1849 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89791,16 +90499,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1850 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89813,16 +90521,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1850 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89838,16 +90546,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1851 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89860,16 +90568,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1852 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89882,16 +90590,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1852 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89907,16 +90615,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1851 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89925,7 +90633,7 @@ this.topOfStack 4 1 return -452134088 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -89935,16 +90643,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1853 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89957,16 +90665,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1853 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -89982,16 +90690,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1854 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90004,16 +90712,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1854 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90029,16 +90737,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1855 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90051,16 +90759,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1856 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90073,16 +90781,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1856 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90098,16 +90806,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1857 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90120,16 +90828,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1858 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90142,16 +90850,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1858 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90167,16 +90875,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1857 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 452134088 null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 1641808846 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null] @@ -90185,7 +90893,7 @@ this.topOfStack 4 1 return -452134088 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -90195,16 +90903,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1855 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90213,7 +90921,7 @@ this.topOfStack 3 1 return -452134088 +1641808846 1 return.getClass().getName() "java.lang.Object" @@ -90223,16 +90931,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1859 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90245,16 +90953,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1859 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90270,16 +90978,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1860 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90292,16 +91000,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1860 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90317,16 +91025,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1861 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90339,16 +91047,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1862 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90361,16 +91069,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1862 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90386,16 +91094,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1861 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90404,7 +91112,7 @@ this.topOfStack 3 1 return -110934012 +1937348256 1 return.getClass().getName() "java.lang.Object" @@ -90414,16 +91122,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1863 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90436,16 +91144,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1863 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90461,16 +91169,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1864 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90483,16 +91191,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1864 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90508,16 +91216,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1865 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90530,16 +91238,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1866 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90552,16 +91260,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1866 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 110934012 null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 1937348256 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" "java.lang.Object" null null null null null null null null null null null null null null null null] @@ -90577,16 +91285,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1865 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90599,16 +91307,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1867 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90621,16 +91329,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1867 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90646,16 +91354,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1868 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90668,16 +91376,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1868 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90693,16 +91401,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1869 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90715,16 +91423,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1870 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90737,16 +91445,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1870 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90762,16 +91470,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1869 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90780,7 +91488,7 @@ this.topOfStack 2 1 return -1656457960 +592179046 1 return.getClass().getName() "java.lang.Object" @@ -90790,16 +91498,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1871 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90812,16 +91520,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1871 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90837,16 +91545,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1872 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90859,16 +91567,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1872 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90884,16 +91592,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1873 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90906,16 +91614,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1874 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90928,16 +91636,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1874 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90953,16 +91661,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1875 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90975,16 +91683,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1876 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -90997,16 +91705,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1876 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -91022,16 +91730,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1875 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 1656457960 null null null null null null null null null null null null null null null null null] +[546718765 167185492 592179046 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" "java.lang.Object" null null null null null null null null null null null null null null null null null] @@ -91040,7 +91748,7 @@ this.topOfStack 2 1 return -1656457960 +592179046 1 return.getClass().getName() "java.lang.Object" @@ -91050,16 +91758,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1873 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91068,7 +91776,7 @@ this.topOfStack 1 1 return -1656457960 +592179046 1 return.getClass().getName() "java.lang.Object" @@ -91078,16 +91786,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1877 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91100,16 +91808,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1877 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91125,16 +91833,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1878 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91147,16 +91855,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1878 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91172,16 +91880,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1879 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91194,16 +91902,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1880 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91216,16 +91924,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1880 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91241,16 +91949,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1879 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91259,7 +91967,7 @@ this.topOfStack 1 1 return -413828078 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91269,16 +91977,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1881 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91291,16 +91999,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1881 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91316,16 +92024,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1882 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91338,16 +92046,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1882 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91363,16 +92071,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1883 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91385,16 +92093,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1884 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91407,16 +92115,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1884 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91432,16 +92140,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1885 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91454,16 +92162,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1886 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91476,16 +92184,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1886 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91501,16 +92209,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1885 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 413828078 null null null null null null null null null null null null null null null null null null] +[546718765 167185492 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" "DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null] @@ -91519,7 +92227,7 @@ this.topOfStack 1 1 return -413828078 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91529,16 +92237,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 1883 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91547,7 +92255,7 @@ this.topOfStack 0 1 return -413828078 +167185492 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91557,16 +92265,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1887 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91579,16 +92287,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1887 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91604,16 +92312,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1888 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91626,16 +92334,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1888 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91651,16 +92359,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1889 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91673,16 +92381,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1890 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91695,16 +92403,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1890 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91720,16 +92428,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1889 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91738,7 +92446,7 @@ this.topOfStack 0 1 return -614613564 +546718765 1 return.getClass().getName() "DataStructures.MyInteger" @@ -91748,16 +92456,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1891 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91770,16 +92478,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1891 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91795,16 +92503,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1892 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91817,16 +92525,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1892 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91842,16 +92550,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 1893 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91864,16 +92572,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1894 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91886,16 +92594,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1894 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[614613564 null null null null null null null null null null null null null null null null null null null] +[546718765 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.MyInteger" null null null null null null null null null null null null null null null null null null null] @@ -91911,10 +92619,10 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 1893 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -91933,10 +92641,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1895 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -91955,10 +92663,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1895 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -91980,10 +92688,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1896 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92002,10 +92710,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1896 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92027,10 +92735,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1897 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92049,10 +92757,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1898 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92071,10 +92779,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1898 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92096,10 +92804,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1897 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92124,10 +92832,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1899 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92146,10 +92854,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1899 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92171,10 +92879,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1900 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92193,10 +92901,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1900 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92215,10 +92923,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1901 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92237,10 +92945,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1901 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92262,10 +92970,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1902 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92284,10 +92992,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1902 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92309,10 +93017,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1903 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92331,10 +93039,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1904 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92353,10 +93061,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1904 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92378,10 +93086,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1903 this -1149159222 +120960120 1 this.theArray -1598606683 +748658608 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92413,10 +93121,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1905 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92438,10 +93146,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1906 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92460,10 +93168,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1906 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92482,10 +93190,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1907 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92504,10 +93212,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1907 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92529,10 +93237,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1908 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92551,10 +93259,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1908 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92576,10 +93284,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1909 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92598,10 +93306,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1910 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92620,10 +93328,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1910 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92645,10 +93353,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1909 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92673,10 +93381,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1911 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92695,10 +93403,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1911 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92720,10 +93428,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1912 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92742,10 +93450,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1913 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92764,10 +93472,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1913 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92789,10 +93497,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1912 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92817,10 +93525,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1914 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92839,10 +93547,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1914 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92864,10 +93572,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1915 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92886,10 +93594,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1915 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92911,10 +93619,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1916 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92933,10 +93641,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1917 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92955,10 +93663,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1917 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -92980,10 +93688,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1916 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -93008,10 +93716,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1918 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -93026,7 +93734,7 @@ this.topOfStack -1 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93036,10 +93744,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1919 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -93058,10 +93766,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1919 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -93083,16 +93791,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1918 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93101,7 +93809,7 @@ this.topOfStack 0 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93111,16 +93819,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1920 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93133,16 +93841,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1920 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93158,16 +93866,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1921 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93180,16 +93888,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1921 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93205,16 +93913,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1922 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93227,16 +93935,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1923 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93249,16 +93957,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1923 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93274,16 +93982,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1922 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93292,7 +94000,7 @@ this.topOfStack 0 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -93302,16 +94010,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1924 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93320,7 +94028,7 @@ this.topOfStack 0 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93330,16 +94038,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1925 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93352,16 +94060,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1925 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 null null null null null null null null null null null null null null null null null null null] +[972765878 null null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" null null null null null null null null null null null null null null null null null null null] @@ -93377,16 +94085,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1924 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93395,7 +94103,7 @@ this.topOfStack 1 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93405,16 +94113,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1926 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93427,16 +94135,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1926 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93452,16 +94160,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1927 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93474,16 +94182,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1927 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93499,16 +94207,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1928 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93521,16 +94229,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1929 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93543,16 +94251,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1929 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93568,16 +94276,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1928 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93586,7 +94294,7 @@ this.topOfStack 1 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -93596,16 +94304,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1930 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93614,7 +94322,7 @@ this.topOfStack 1 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93624,16 +94332,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1931 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93646,16 +94354,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1931 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 null null null null null null null null null null null null null null null null null null] +[972765878 972765878 null null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null null] @@ -93671,16 +94379,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1930 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93689,7 +94397,7 @@ this.topOfStack 2 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93699,16 +94407,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1932 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93721,16 +94429,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1932 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93746,16 +94454,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1933 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93768,16 +94476,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1933 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93793,16 +94501,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1934 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93815,16 +94523,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1935 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93837,16 +94545,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1935 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93862,16 +94570,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1934 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93880,7 +94588,7 @@ this.topOfStack 2 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -93890,16 +94598,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1936 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93908,7 +94616,7 @@ this.topOfStack 2 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93918,16 +94626,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1937 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93940,16 +94648,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1937 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 null null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null null] @@ -93965,16 +94673,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1936 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -93983,7 +94691,7 @@ this.topOfStack 3 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -93993,16 +94701,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1938 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94015,16 +94723,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1938 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94040,16 +94748,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1939 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94062,16 +94770,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1939 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94087,16 +94795,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1940 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94109,16 +94817,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1941 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94131,16 +94839,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1941 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94156,16 +94864,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1940 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94174,7 +94882,7 @@ this.topOfStack 3 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -94184,16 +94892,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1942 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94202,7 +94910,7 @@ this.topOfStack 3 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -94212,16 +94920,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1943 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94234,16 +94942,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1943 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null null] @@ -94259,16 +94967,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1942 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94277,7 +94985,7 @@ this.topOfStack 4 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -94287,16 +94995,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1944 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94309,16 +95017,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1944 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94334,16 +95042,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1945 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94356,16 +95064,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1945 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94381,16 +95089,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1946 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94403,16 +95111,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1947 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94425,16 +95133,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1947 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94450,16 +95158,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1946 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94468,7 +95176,7 @@ this.topOfStack 4 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -94478,16 +95186,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1948 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94496,7 +95204,7 @@ this.topOfStack 4 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -94506,16 +95214,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1949 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94528,16 +95236,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1949 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null null] @@ -94553,16 +95261,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1948 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94571,7 +95279,7 @@ this.topOfStack 5 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -94581,16 +95289,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1950 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94603,16 +95311,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1950 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94628,16 +95336,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1951 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94650,16 +95358,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1951 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94675,16 +95383,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1952 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94697,16 +95405,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1953 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94719,16 +95427,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1953 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94744,16 +95452,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1952 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94762,7 +95470,7 @@ this.topOfStack 5 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -94772,16 +95480,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1954 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94790,7 +95498,7 @@ this.topOfStack 5 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -94800,16 +95508,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1955 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94822,16 +95530,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1955 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null null] @@ -94847,16 +95555,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1954 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -94865,7 +95573,7 @@ this.topOfStack 6 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -94875,16 +95583,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1956 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -94897,16 +95605,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1956 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -94922,16 +95630,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1957 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -94944,16 +95652,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1957 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -94969,16 +95677,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1958 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -94991,16 +95699,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1959 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -95013,16 +95721,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1959 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -95038,16 +95746,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1958 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -95056,7 +95764,7 @@ this.topOfStack 6 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -95066,16 +95774,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1960 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -95084,7 +95792,7 @@ this.topOfStack 6 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95094,16 +95802,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1961 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -95116,16 +95824,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1961 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null null] @@ -95141,16 +95849,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1960 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95159,7 +95867,7 @@ this.topOfStack 7 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95169,16 +95877,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1962 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95191,16 +95899,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1962 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95216,16 +95924,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1963 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95238,16 +95946,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1963 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95263,16 +95971,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1964 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95285,16 +95993,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1965 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95307,16 +96015,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1965 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95332,16 +96040,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1964 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95350,7 +96058,7 @@ this.topOfStack 7 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -95360,16 +96068,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1966 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95378,7 +96086,7 @@ this.topOfStack 7 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95388,16 +96096,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1967 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95410,16 +96118,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1967 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null null] @@ -95435,16 +96143,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1966 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95453,7 +96161,7 @@ this.topOfStack 8 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95463,16 +96171,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1968 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95485,16 +96193,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1968 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95510,16 +96218,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1969 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95532,16 +96240,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1969 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95557,16 +96265,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1970 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95579,16 +96287,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1971 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95601,16 +96309,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1971 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95626,16 +96334,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1970 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95644,7 +96352,7 @@ this.topOfStack 8 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -95654,16 +96362,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1972 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95672,7 +96380,7 @@ this.topOfStack 8 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95682,16 +96390,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1973 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95704,16 +96412,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1973 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null null] @@ -95729,16 +96437,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1972 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95747,7 +96455,7 @@ this.topOfStack 9 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95757,16 +96465,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1974 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95779,16 +96487,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1974 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95804,16 +96512,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1975 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95826,16 +96534,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1975 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95851,16 +96559,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1976 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95873,16 +96581,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1977 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95895,16 +96603,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1977 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95920,16 +96628,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1976 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95938,7 +96646,7 @@ this.topOfStack 9 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -95948,16 +96656,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 1978 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95966,7 +96674,7 @@ this.topOfStack 9 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -95976,16 +96684,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1979 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -95998,16 +96706,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1979 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null null] @@ -96023,16 +96731,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 1978 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96041,7 +96749,7 @@ this.topOfStack 10 1 x -1776006353 +972765878 1 x.getClass().getName() "DataStructures.StackAr" @@ -96051,16 +96759,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1980 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96073,16 +96781,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1980 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96098,16 +96806,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1981 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96120,16 +96828,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1981 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96145,16 +96853,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1982 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96167,16 +96875,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1983 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96189,16 +96897,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1983 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96214,16 +96922,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 1982 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96232,7 +96940,7 @@ this.topOfStack 10 1 return -1776006353 +972765878 1 return.getClass().getName() "DataStructures.StackAr" @@ -96242,16 +96950,16 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1984 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 1776006353 null null null null null null null null null] +[972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 972765878 null null null null null null null null null] 1 this.theArray[..].getClass().getName() ["DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" "DataStructures.StackAr" null null null null null null null null null] @@ -96264,10 +96972,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1984 this -1776006353 +972765878 1 this.theArray -1463565218 +1651945012 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96293,10 +97001,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1985 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96318,10 +97026,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1986 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96340,10 +97048,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1986 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96362,10 +97070,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1987 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96384,10 +97092,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1987 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96409,10 +97117,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1988 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96431,10 +97139,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1988 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96456,10 +97164,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1989 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96478,10 +97186,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1990 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96500,10 +97208,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1990 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96525,10 +97233,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1989 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96553,10 +97261,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1991 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96575,10 +97283,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1991 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96600,10 +97308,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 1992 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96622,10 +97330,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1993 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96644,10 +97352,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1993 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96669,10 +97377,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 1992 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96697,10 +97405,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 1994 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96719,10 +97427,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 1994 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96744,10 +97452,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1995 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96766,10 +97474,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1995 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96791,10 +97499,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 1996 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96813,10 +97521,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 1997 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96835,10 +97543,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 1997 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96860,10 +97568,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 1996 this -862926188 +2034688500 1 this.theArray -1243373525 +1007251739 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96895,10 +97603,10 @@ DataStructures.StackAr.StackAr(int):::EXIT33 this_invocation_nonce 1998 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96920,10 +97628,10 @@ DataStructures.StackAr.makeEmpty():::ENTER this_invocation_nonce 1999 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96942,10 +97650,10 @@ DataStructures.StackAr.makeEmpty():::EXIT63 this_invocation_nonce 1999 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96964,10 +97672,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2000 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -96986,10 +97694,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2000 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97011,10 +97719,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2001 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97033,10 +97741,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2001 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97058,10 +97766,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2002 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97080,10 +97788,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2003 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97102,10 +97810,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2003 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97127,10 +97835,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 2002 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97155,10 +97863,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2004 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97177,10 +97885,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2004 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97202,10 +97910,10 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 2005 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97224,10 +97932,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2006 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97246,10 +97954,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2006 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97271,10 +97979,10 @@ DataStructures.StackAr.topAndPop():::EXIT108 this_invocation_nonce 2005 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97299,10 +98007,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2007 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97321,10 +98029,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2007 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97346,10 +98054,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2008 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97368,10 +98076,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2008 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97393,10 +98101,10 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2009 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97415,10 +98123,10 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2010 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97437,10 +98145,10 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2010 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97462,10 +98170,10 @@ DataStructures.StackAr.top():::EXIT74 this_invocation_nonce 2009 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97490,10 +98198,10 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 2011 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97508,7 +98216,7 @@ this.topOfStack -1 1 x -2075326481 +1167116739 1 x.getClass().getName() "java.lang.Object" @@ -97518,10 +98226,10 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2012 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97540,10 +98248,10 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2012 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" @@ -97565,16 +98273,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 2011 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97583,7 +98291,7 @@ this.topOfStack 0 1 x -2075326481 +1167116739 1 x.getClass().getName() "java.lang.Object" @@ -97593,16 +98301,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2013 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97615,16 +98323,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2013 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97640,16 +98348,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2014 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97662,16 +98370,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2014 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97687,16 +98395,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2015 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97709,16 +98417,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2016 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97731,16 +98439,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2016 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97756,16 +98464,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 2015 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97774,7 +98482,7 @@ this.topOfStack 0 1 return -2075326481 +1167116739 1 return.getClass().getName() "java.lang.Object" @@ -97784,16 +98492,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 2017 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97802,7 +98510,7 @@ this.topOfStack 0 1 x -582771593 +853993923 1 x.getClass().getName() "java.lang.Object" @@ -97812,16 +98520,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2018 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97834,16 +98542,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2018 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -97859,16 +98567,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 2017 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -97877,7 +98585,7 @@ this.topOfStack 1 1 x -582771593 +853993923 1 x.getClass().getName() "java.lang.Object" @@ -97887,16 +98595,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2019 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -97909,16 +98617,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2019 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -97934,16 +98642,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2020 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -97956,16 +98664,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2020 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -97981,16 +98689,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2021 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98003,16 +98711,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2022 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98025,16 +98733,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2022 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98050,16 +98758,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 2021 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98068,7 +98776,7 @@ this.topOfStack 1 1 return -582771593 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -98078,16 +98786,16 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER this_invocation_nonce 2023 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98096,7 +98804,7 @@ this.topOfStack 1 1 x -2116733231 +1347870667 1 x.getClass().getName() "java.lang.Object" @@ -98106,16 +98814,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2024 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98128,16 +98836,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2024 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98153,16 +98861,16 @@ DataStructures.StackAr.push(java.lang.Object):::EXIT99 this_invocation_nonce 2023 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98171,7 +98879,7 @@ this.topOfStack 2 1 x -2116733231 +1347870667 1 x.getClass().getName() "java.lang.Object" @@ -98181,16 +98889,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2025 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98203,16 +98911,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2025 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98228,16 +98936,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2026 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98250,16 +98958,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2026 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98275,16 +98983,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2027 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98297,16 +99005,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2028 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98319,16 +99027,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2028 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98344,16 +99052,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 2027 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98362,7 +99070,7 @@ this.topOfStack 2 1 return -2116733231 +1347870667 1 return.getClass().getName() "java.lang.Object" @@ -98372,16 +99080,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2029 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98394,16 +99102,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2029 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98419,16 +99127,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2030 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98441,16 +99149,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2030 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98466,16 +99174,16 @@ DataStructures.StackAr.pop():::ENTER this_invocation_nonce 2031 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98488,16 +99196,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2032 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98510,16 +99218,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2032 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 2116733231] +[1167116739 853993923 1347870667] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" "java.lang.Object"] @@ -98535,16 +99243,16 @@ DataStructures.StackAr.pop():::EXIT87 this_invocation_nonce 2031 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98557,16 +99265,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2033 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98579,16 +99287,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2033 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98604,16 +99312,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2034 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98626,16 +99334,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2034 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98651,16 +99359,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2035 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98673,16 +99381,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2036 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98695,16 +99403,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2036 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98720,16 +99428,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 2035 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98738,7 +99446,7 @@ this.topOfStack 1 1 return -582771593 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -98748,16 +99456,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2037 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98770,16 +99478,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2037 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98795,16 +99503,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2038 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98817,16 +99525,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2038 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98842,16 +99550,16 @@ DataStructures.StackAr.topAndPop():::ENTER this_invocation_nonce 2039 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98864,16 +99572,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2040 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98886,16 +99594,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2040 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98911,16 +99619,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2041 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98933,16 +99641,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2042 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98955,16 +99663,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2042 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98980,16 +99688,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 2041 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 582771593 null] +[1167116739 853993923 null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -98998,7 +99706,7 @@ this.topOfStack 1 1 return -582771593 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -99008,16 +99716,16 @@ DataStructures.StackAr.topAndPop():::EXIT111 this_invocation_nonce 2039 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99026,7 +99734,7 @@ this.topOfStack 0 1 return -582771593 +853993923 1 return.getClass().getName() "java.lang.Object" @@ -99036,16 +99744,16 @@ DataStructures.StackAr.isFull():::ENTER this_invocation_nonce 2043 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99058,16 +99766,16 @@ DataStructures.StackAr.isFull():::EXIT52 this_invocation_nonce 2043 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99083,16 +99791,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2044 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99105,16 +99813,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2044 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99130,16 +99838,16 @@ DataStructures.StackAr.top():::ENTER this_invocation_nonce 2045 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99152,16 +99860,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2046 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99174,16 +99882,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2046 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99199,16 +99907,16 @@ DataStructures.StackAr.top():::EXIT75 this_invocation_nonce 2045 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99217,7 +99925,7 @@ this.topOfStack 0 1 return -2075326481 +1167116739 1 return.getClass().getName() "java.lang.Object" @@ -99227,16 +99935,16 @@ DataStructures.StackAr.isEmpty():::ENTER this_invocation_nonce 2047 this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99249,132 +99957,16 @@ DataStructures.StackAr.isEmpty():::EXIT42 this_invocation_nonce 2047 this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[2075326481 null null] -1 -this.theArray[..].getClass().getName() -["java.lang.Object" null null] -1 -this.topOfStack -0 -1 -return -false -1 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2048 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[2075326481 null null] -1 -this.theArray[..].getClass().getName() -["java.lang.Object" null null] -1 -this.topOfStack -0 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2048 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[2075326481 null null] -1 -this.theArray[..].getClass().getName() -["java.lang.Object" null null] -1 -this.topOfStack -0 -1 -return -false -1 - -DataStructures.StackAr.pop():::ENTER -this_invocation_nonce -2049 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[2075326481 null null] -1 -this.theArray[..].getClass().getName() -["java.lang.Object" null null] -1 -this.topOfStack -0 -1 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2050 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[2075326481 null null] -1 -this.theArray[..].getClass().getName() -["java.lang.Object" null null] -1 -this.topOfStack -0 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2050 -this -215465718 +1556595366 1 this.theArray -674893584 +194494468 1 this.theArray.getClass().getName() "java.lang.Object[]" 1 this.theArray[..] -[2075326481 null null] +[1167116739 null null] 1 this.theArray[..].getClass().getName() ["java.lang.Object" null null] @@ -99386,596 +99978,3 @@ return false 1 -DataStructures.StackAr.pop():::EXIT87 -this_invocation_nonce -2049 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isFull():::ENTER -this_invocation_nonce -2051 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isFull():::EXIT52 -this_invocation_nonce -2051 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -false -1 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2052 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2052 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -true -1 - -DataStructures.StackAr.top():::ENTER -this_invocation_nonce -2053 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2054 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2054 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -true -1 - -DataStructures.StackAr.top():::EXIT74 -this_invocation_nonce -2053 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -null -1 -return.getClass().getName() -nonsensical -2 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2055 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2055 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -true -1 - -DataStructures.StackAr.makeEmpty():::ENTER -this_invocation_nonce -2056 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.makeEmpty():::EXIT63 -this_invocation_nonce -2056 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isFull():::ENTER -this_invocation_nonce -2057 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isFull():::EXIT52 -this_invocation_nonce -2057 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -false -1 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2058 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2058 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -true -1 - -DataStructures.StackAr.top():::ENTER -this_invocation_nonce -2059 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::ENTER -this_invocation_nonce -2060 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isEmpty():::EXIT42 -this_invocation_nonce -2060 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -true -1 - -DataStructures.StackAr.top():::EXIT74 -this_invocation_nonce -2059 -this -215465718 -1 -this.theArray -674893584 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -return -null -1 -return.getClass().getName() -nonsensical -2 - -DataStructures.StackAr.StackAr(int):::ENTER -this_invocation_nonce -2061 -capacity -3 -1 - -DataStructures.StackAr.StackAr(int):::EXIT33 -this_invocation_nonce -2061 -this -721317215 -1 -this.theArray -633245190 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 -capacity -3 -1 - -DataStructures.StackAr.makeEmpty():::ENTER -this_invocation_nonce -2062 -this -721317215 -1 -this.theArray -633245190 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.makeEmpty():::EXIT63 -this_invocation_nonce -2062 -this -721317215 -1 -this.theArray -633245190 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - -DataStructures.StackAr.isFull():::ENTER -this_invocation_nonce -2063 -this -721317215 -1 -this.theArray -633245190 -1 -this.theArray.getClass().getName() -"java.lang.Object[]" -1 -this.theArray[..] -[null null null] -1 -this.theArray[..].getClass().getName() -[null null null] -1 -this.topOfStack --1 -1 - diff --git a/tests/daikon-tests/StackAr/StackAr.txt-daikon-end2end.goal b/tests/daikon-tests/StackAr/StackAr.txt-daikon-end2end.goal index 2ff9450091..a342ca7e02 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-daikon-end2end.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-daikon-end2end.goal @@ -6,7 +6,6 @@ this.topOfStack >= -1 this.theArray.getClass().getName().length() == 18 this.theArray[this.topOfStack+1..] elements == null this.theArray[0..this.topOfStack] elements != null -this.topOfStack <= size(this.theArray[])-1 (size(this.theArray[]) >> this.theArray.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != size(this.theArray[]) this.theArray.getClass().getName().length() != size(this.theArray[])-1 @@ -20,10 +19,12 @@ this.theArray[] elements == null this.theArray[].getClass().getName() elements == null this.topOfStack == -1 this.theArray[0..this.topOfStack] == [] +this.topOfStack <= size(this.theArray[])-1 (orig(capacity) >> this.theArray.getClass().getName().length() == 0) orig(capacity) != this.theArray.getClass().getName().length() =========================================================================== DataStructures.StackAr.isEmpty():::ENTER +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.isEmpty():::EXIT this.theArray == orig(this.theArray) @@ -43,6 +44,7 @@ this.theArray.getClass().getName().length() == orig(this.theArray.getClass().get (this.topOfStack >= 0) ==> (this.theArray[orig(this.topOfStack)..this.topOfStack-1] == []) (this.topOfStack >= 0) ==> (this.theArray[this.topOfStack..orig(this.topOfStack)-1] == []) this.theArray[this.topOfStack+1..orig(this.topOfStack)] == [] +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.isEmpty():::EXIT;condition="return == true" this.theArray[] elements == null @@ -148,6 +150,7 @@ DataStructures.StackAr.isFull():::ENTER (this.topOfStack >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0)) (this.topOfStack >= 0) ==> ((size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0)) (this.topOfStack >= 0) ==> ((this.topOfStack >> this.theArray.getClass().getName().length() == 0)) +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.isFull():::ENTER;condition="topOfStack == -1" this.theArray[] elements == null @@ -183,6 +186,7 @@ this.theArray.getClass().getName().length() == orig(this.theArray.getClass().get (this.topOfStack >= 0) ==> ((size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0)) (this.topOfStack >= 0) ==> ((this.topOfStack >> this.theArray.getClass().getName().length() == 0)) this.theArray[this.topOfStack+1..orig(this.topOfStack)] == [] +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.isFull():::EXIT;condition="return == true" this.topOfStack == size(this.theArray[])-1 @@ -364,6 +368,7 @@ DataStructures.StackAr.makeEmpty():::ENTER (size(this.theArray[]) == 0) ==> (this.topOfStack == size(this.theArray[])-1) this.topOfStack < this.theArray.getClass().getName().length() (this.topOfStack == 0) ==> (size(this.theArray[])-1 == 0) +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.makeEmpty():::ENTER;condition="topOfStack == -1" =========================================================================== @@ -434,6 +439,7 @@ this.theArray[].getClass().getName() elements == null this.topOfStack == -1 this.theArray[0..this.topOfStack] == [] this.topOfStack <= orig(this.topOfStack) +this.topOfStack <= size(this.theArray[])-1 orig(this.topOfStack) < this.theArray.getClass().getName().length() (orig(this.topOfStack) == 0) ==> (size(this.theArray[])-1 == 0) orig(this.topOfStack) <= size(this.theArray[])-1 @@ -563,6 +569,7 @@ DataStructures.StackAr.pop():::ENTER this.topOfStack >= 0 this.theArray[0..this.topOfStack] contains no duplicates (this.topOfStack >> this.theArray.getClass().getName().length() == 0) +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.pop():::ENTER;condition="topOfStack == -1" this.topOfStack == 0 @@ -894,45 +901,60 @@ this.theArray.getClass().getName().length() != size(this.theArray[])-1 this.theArray[this.topOfStack+1..] elements == this.theArray[orig(this.topOfStack)] =========================================================================== DataStructures.StackAr.push(java.lang.Object):::ENTER +(size(this.theArray[]) == 0) ==> (size(this.theArray[]) is a pointer) +(size(this.theArray[]) == 0) ==> (this has only one value) +(size(this.theArray[]) == 0) ==> (this.theArray has only one value) +(size(this.theArray[]) == 0) ==> (this.theArray[] == []) +(size(this.theArray[]) == 0) ==> (this.theArray[].getClass().getName() == []) +(size(this.theArray[]) == 0) ==> (this.topOfStack == -1) +(size(this.theArray[]) == 0) ==> (x has only one value) +(size(this.theArray[]) == 0) ==> (x.getClass().getName() == DataStructures.StackAr.class) +(size(this.theArray[]) == 0) ==> (x.getClass().getName().length() == 22) x != null x.getClass().getName() is printable x.getClass().getName().length() one of { 16, 22, 24 } -x.getClass().getName().length() == 0 (mod 2) -this.theArray.getClass().getName() != x.getClass().getName() this.topOfStack <= this.theArray.getClass().getName().length() -this.topOfStack < size(this.theArray[])-1 -(size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != x.getClass().getName().length() (size(this.theArray[]) >> x.getClass().getName().length() == 0) size(this.theArray[]) != x.getClass().getName().length() -(size(this.theArray[])-1 >> x.getClass().getName().length() == 0) size(this.theArray[])-1 != x.getClass().getName().length() =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::ENTER;condition="topOfStack == -1" +this has only one value +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +x has only one value +x.getClass().getName() == DataStructures.StackAr.class +x.getClass().getName().length() == 22 +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::ENTER;condition="not(topOfStack == -1)" +x.getClass().getName().length() == 0 (mod 2) +this.theArray.getClass().getName() != x.getClass().getName() +this.topOfStack < size(this.theArray[])-1 +(size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0) +(size(this.theArray[])-1 >> x.getClass().getName().length() == 0) =========================================================================== DataStructures.StackAr.push(java.lang.Object):::ENTER;condition="topOfStack == theArray.length - 1" this.theArray != null this.theArray.getClass().getName() == java.lang.Object[].class +this.topOfStack >= -1 x != null x.getClass().getName() is printable this.theArray.getClass().getName().length() == 18 x.getClass().getName().length() one of { 16, 22, 24 } -x.getClass().getName().length() == 0 (mod 2) this.theArray[this.topOfStack+1..] == [null] this.theArray[this.topOfStack+1..] elements == null this.theArray[0..this.topOfStack] elements != null -this.theArray.getClass().getName() != x.getClass().getName() this.topOfStack <= this.theArray.getClass().getName().length() -this.topOfStack - size(this.theArray[]) + 2 == 0 this.topOfStack != x.getClass().getName().length() (size(this.theArray[]) >> this.theArray.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != size(this.theArray[]) -(size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != size(this.theArray[])-1 this.theArray.getClass().getName().length() != x.getClass().getName().length() (size(this.theArray[]) >> x.getClass().getName().length() == 0) size(this.theArray[]) != x.getClass().getName().length() -(size(this.theArray[])-1 >> x.getClass().getName().length() == 0) size(this.theArray[])-1 != x.getClass().getName().length() =========================================================================== DataStructures.StackAr.push(java.lang.Object):::ENTER;condition="not(topOfStack == theArray.length - 1)" @@ -957,6 +979,18 @@ size(this.theArray[]) != x.getClass().getName().length() (size(this.theArray[])-1 >> x.getClass().getName().length() == 0) size(this.theArray[])-1 != x.getClass().getName().length() =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::ENTER;condition="isEmpty()" +this has only one value +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +x has only one value +x.getClass().getName() == DataStructures.StackAr.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::ENTER;condition="not(isEmpty())" this.theArray != null this.theArray.getClass().getName() == java.lang.Object[].class @@ -981,6 +1015,210 @@ size(this.theArray[]) != x.getClass().getName().length() (size(this.theArray[])-1 >> x.getClass().getName().length() == 0) size(this.theArray[])-1 != x.getClass().getName().length() =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="orig(topOfStack == -1)" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="topOfStack == -1" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="orig(topOfStack == theArray.length - 1)" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="topOfStack == theArray.length - 1" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="isEmpty()" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="orig(isEmpty())" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="isFull()" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION;condition="orig(isFull())" +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray.getClass().getName() == java.lang.Object[].class +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +this.topOfStack == -1 +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +this.theArray.getClass().getName().length() == 18 +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="orig(topOfStack == -1)" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="topOfStack == -1" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="orig(topOfStack == theArray.length - 1)" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="topOfStack == theArray.length - 1" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="isEmpty()" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="orig(isEmpty())" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="isFull()" +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97;condition="orig(isFull())" +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) @@ -1025,6 +1263,7 @@ orig(x.getClass().getName()) in this.theArray[].getClass().getName() this.topOfStack - orig(this.topOfStack) - 1 == 0 (this.topOfStack >> this.theArray.getClass().getName().length() == 0) (size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0) +this.topOfStack <= size(this.theArray[])-1 (this.topOfStack >> x.getClass().getName().length() == 0) orig(this.topOfStack) <= this.theArray.getClass().getName().length() orig(this.topOfStack) < size(this.theArray[])-1 @@ -1480,6 +1719,7 @@ DataStructures.StackAr.top():::ENTER (this.topOfStack >= 0) ==> ((size(this.theArray[])-1 == 0) ==> (this.topOfStack == 0)) (this.topOfStack >= 0) ==> ((size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0)) (this.topOfStack >= 0) ==> ((this.topOfStack >> this.theArray.getClass().getName().length() == 0)) +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.top():::ENTER;condition="topOfStack == -1" this.theArray[] elements == null @@ -1675,6 +1915,7 @@ return.getClass().getName().length() == 0 (mod 2) this.theArray[this.topOfStack+1..orig(this.topOfStack)] == [] this.theArray.getClass().getName() != return.getClass().getName() return.getClass().getName() in this.theArray[].getClass().getName() +this.topOfStack <= size(this.theArray[])-1 (this.topOfStack >> return.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != return.getClass().getName().length() (size(this.theArray[]) == 0) ==> (return.getClass().getName().length() == 0) @@ -2003,6 +2244,7 @@ DataStructures.StackAr.topAndPop():::ENTER (this.topOfStack >= 1) ==> (size(this.theArray[]) one of { 3, 10, 20 }) (this.topOfStack one of { -1, 0 }) ==> (this.topOfStack < this.theArray.getClass().getName().length()) this.theArray[0..this.topOfStack] contains no duplicates +this.topOfStack <= size(this.theArray[])-1 =========================================================================== DataStructures.StackAr.topAndPop():::ENTER;condition="topOfStack == -1" this.topOfStack one of { -1, 0 } @@ -2432,6 +2674,7 @@ this.theArray[0..orig(this.topOfStack)] contains no duplicates this.theArray.getClass().getName() != return.getClass().getName() this.topOfStack <= orig(this.topOfStack) this.topOfStack <= this.theArray.getClass().getName().length() +this.topOfStack <= size(this.theArray[])-1 return.getClass().getName() in orig(this.theArray[].getClass().getName()) orig(this.topOfStack) <= size(this.theArray[])-1 (orig(this.topOfStack) >> return.getClass().getName().length() == 0) diff --git a/tests/daikon-tests/StackAr/StackAr.txt-daikon.goal b/tests/daikon-tests/StackAr/StackAr.txt-daikon.goal index 44a451f934..74ac3778dc 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-daikon.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-daikon.goal @@ -137,17 +137,39 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER x != null x.getClass().getName() is printable x.getClass().getName().length() one of { 16, 22, 24 } -x.getClass().getName().length() == 0 (mod 2) this.theArray.getClass().getName() != x.getClass().getName() this.topOfStack <= this.theArray.getClass().getName().length() -this.topOfStack < size(this.theArray[])-1 -(size(this.theArray[])-1 >> this.theArray.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != x.getClass().getName().length() (size(this.theArray[]) >> x.getClass().getName().length() == 0) size(this.theArray[]) != x.getClass().getName().length() -(size(this.theArray[])-1 >> x.getClass().getName().length() == 0) size(this.theArray[])-1 != x.getClass().getName().length() =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +this == orig(this) +this.theArray == orig(this.theArray) +this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) +this.theArray[] == orig(this.theArray[]) +this.topOfStack == orig(this.topOfStack) +this.topOfStack == size(this.theArray[])-1 +this.topOfStack == orig(size(this.theArray[]))-1 +x == orig(x) +x.getClass().getName() == orig(x.getClass().getName()) +orig(this) == orig(x) +this.theArray.getClass().getName().length() == orig(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == orig(x.getClass().getName()).length() +this.theArray has only one value +this.theArray[] == [] +this.theArray[].getClass().getName() == [] +exception has only one value +exception.getClass().getName() == DataStructures.Overflow.class +orig(this) has only one value +orig(x) has only one value +orig(x.getClass().getName()) == DataStructures.StackAr.class +x.getClass().getName().length() == 22 +exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT this.theArray == orig(this.theArray) this.theArray.getClass().getName() == orig(this.theArray.getClass().getName()) diff --git a/tests/daikon-tests/StackAr/StackAr.txt-esc.goal b/tests/daikon-tests/StackAr/StackAr.txt-esc.goal index d6bffdf357..7f0c9cb374 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-esc.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-esc.goal @@ -116,17 +116,38 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER x != null warning: method daikon.inv.unary.string.PrintableString.format(OutputFormat:ESC/Java) needs to be implemented: x.getClass().getName() is printable \typeof(x).length() == 16 || \typeof(x).length() == 22 || \typeof(x).length() == 24 -warning: method daikon.inv.unary.scalar.Modulus.format(OutputFormat:ESC/Java) needs to be implemented: x.getClass().getName().length() == 0 (mod 2) \typeof(this.theArray) != \typeof(x) this.topOfStack <= \typeof(this.theArray).length() -this.topOfStack < this.theArray.length-1 -(this.theArray.length-1 >> \typeof(this.theArray).length() == 0) \typeof(this.theArray).length() != \typeof(x).length() (this.theArray.length >> \typeof(x).length() == 0) this.theArray.length != \typeof(x).length() -(this.theArray.length-1 >> \typeof(x).length() == 0) this.theArray.length-1 != \typeof(x).length() =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION + Variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.theArray) orig(this.theArray.getClass().getName()) orig(this.theArray[]) orig(this.theArray[].getClass().getName()) orig(this.topOfStack) orig(x) orig(x.getClass().getName()) this.theArray.getClass().getName().length() size(this.theArray[]) size(this.theArray[])-1 x.getClass().getName().length() exception.getClass().getName().length() orig(this.theArray.getClass().getName()).length() orig(size(this.theArray[])) orig(size(this.theArray[]))-1 orig(x.getClass().getName()).length() this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] this.theArray[0..this.topOfStack-1] this.theArray[orig(this.topOfStack)] this.theArray[orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)..] this.theArray[orig(this.topOfStack)+1..] this.theArray[0..orig(this.topOfStack)] this.theArray[0..orig(this.topOfStack)-1] orig(this.theArray[post(this.topOfStack)]) orig(this.theArray[post(this.topOfStack)-1]) orig(this.theArray[post(this.topOfStack)..]) orig(this.theArray[post(this.topOfStack)+1..]) orig(this.theArray[0..post(this.topOfStack)]) orig(this.theArray[0..post(this.topOfStack)-1]) orig(this.theArray[this.topOfStack]) orig(this.theArray[this.topOfStack-1]) orig(this.theArray[this.topOfStack..]) orig(this.theArray[this.topOfStack+1..]) orig(this.theArray[0..this.topOfStack]) orig(this.theArray[0..this.topOfStack-1]) this.theArray[this.topOfStack+1..orig(this.topOfStack)] this.theArray[this.topOfStack..orig(this.topOfStack)-1] this.theArray[this.topOfStack+1..orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack] this.theArray[orig(this.topOfStack)..this.topOfStack-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack-1] + Modified variables: this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[0..this.topOfStack-1] + Unmodified variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() size(this.theArray[]) this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] +modifies this.theArray[this.topOfStack], this.theArray[this.topOfStack-1], this.theArray[this.topOfStack..], this.theArray[0..this.topOfStack-1] +this.topOfStack == this.theArray.length-1 +this.topOfStack == \old(this.theArray.length)-1 +\old(this) == \old(x) +this.theArray != null +(this.theArray.length == 0) && ((\forall int i; (0 <= i && i <= this.theArray.length-1) ==> (this.theArray[i] != null))) +warning: method daikon.inv.unary.stringsequence.OneOfStringSequence.format(OutputFormat:ESC/Java) needs to be implemented: this.theArray[].getClass().getName() == [] +\result != null +\typeof(\result) == \type(DataStructures.Overflow) +\old(this) != null +\old(x) != null +\old(\typeof(x)) == \type(DataStructures.StackAr) +\typeof(x).length() == 22 +\typeof(\result).length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 + Variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.theArray) orig(this.theArray.getClass().getName()) orig(this.theArray[]) orig(this.theArray[].getClass().getName()) orig(this.topOfStack) orig(x) orig(x.getClass().getName()) this.theArray.getClass().getName().length() size(this.theArray[]) size(this.theArray[])-1 x.getClass().getName().length() exception.getClass().getName().length() orig(this.theArray.getClass().getName()).length() orig(size(this.theArray[])) orig(size(this.theArray[]))-1 orig(x.getClass().getName()).length() this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] this.theArray[0..this.topOfStack-1] this.theArray[orig(this.topOfStack)] this.theArray[orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)..] this.theArray[orig(this.topOfStack)+1..] this.theArray[0..orig(this.topOfStack)] this.theArray[0..orig(this.topOfStack)-1] orig(this.theArray[post(this.topOfStack)]) orig(this.theArray[post(this.topOfStack)-1]) orig(this.theArray[post(this.topOfStack)..]) orig(this.theArray[post(this.topOfStack)+1..]) orig(this.theArray[0..post(this.topOfStack)]) orig(this.theArray[0..post(this.topOfStack)-1]) orig(this.theArray[this.topOfStack]) orig(this.theArray[this.topOfStack-1]) orig(this.theArray[this.topOfStack..]) orig(this.theArray[this.topOfStack+1..]) orig(this.theArray[0..this.topOfStack]) orig(this.theArray[0..this.topOfStack-1]) this.theArray[this.topOfStack+1..orig(this.topOfStack)] this.theArray[this.topOfStack..orig(this.topOfStack)-1] this.theArray[this.topOfStack+1..orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack] this.theArray[orig(this.topOfStack)..this.topOfStack-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack-1] + Modified variables: this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[0..this.topOfStack-1] + Unmodified variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() size(this.theArray[]) this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] +modifies this.theArray[this.topOfStack], this.theArray[this.topOfStack-1], this.theArray[this.topOfStack..], this.theArray[0..this.topOfStack-1] +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT Variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() orig(this) orig(this.theArray) orig(this.theArray.getClass().getName()) orig(this.theArray[]) orig(this.theArray[].getClass().getName()) orig(this.topOfStack) orig(x) orig(x.getClass().getName()) this.theArray.getClass().getName().length() size(this.theArray[]) size(this.theArray[])-1 x.getClass().getName().length() orig(this.theArray.getClass().getName()).length() orig(size(this.theArray[])) orig(size(this.theArray[]))-1 orig(x.getClass().getName()).length() this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] this.theArray[0..this.topOfStack-1] this.theArray[orig(this.topOfStack)] this.theArray[orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)..] this.theArray[orig(this.topOfStack)+1..] this.theArray[0..orig(this.topOfStack)] this.theArray[0..orig(this.topOfStack)-1] orig(this.theArray[post(this.topOfStack)]) orig(this.theArray[post(this.topOfStack)-1]) orig(this.theArray[post(this.topOfStack)..]) orig(this.theArray[post(this.topOfStack)+1..]) orig(this.theArray[0..post(this.topOfStack)]) orig(this.theArray[0..post(this.topOfStack)-1]) orig(this.theArray[this.topOfStack]) orig(this.theArray[this.topOfStack-1]) orig(this.theArray[this.topOfStack..]) orig(this.theArray[this.topOfStack+1..]) orig(this.theArray[0..this.topOfStack]) orig(this.theArray[0..this.topOfStack-1]) this.theArray[this.topOfStack+1..orig(this.topOfStack)] this.theArray[this.topOfStack..orig(this.topOfStack)-1] this.theArray[this.topOfStack+1..orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack] this.theArray[orig(this.topOfStack)..this.topOfStack-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack-1] Modified variables: this.theArray[] this.theArray[].getClass().getName() this.topOfStack this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack-1] diff --git a/tests/daikon-tests/StackAr/StackAr.txt-jaif.goal b/tests/daikon-tests/StackAr/StackAr.txt-jaif.goal index 8deef2b442..d202665eb1 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-jaif.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-jaif.goal @@ -3,25 +3,43 @@ annotation @Nullable: annotation @NonNull: package DataStructures: -class StackAr : // 5193/- obj/class samples +class StackAr : // 5195/- obj/class samples field theArray : // java.lang.Object[] field topOfStack : // int + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // capacity method (I)V : // 29 samples - return: + return: parameter #0 : // capacity + method isEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method isEmpty()Z : // 1190 samples - return: + return: + method isFull()V throws Ljava/lang/Throwable; : // 0 samples + return: method isFull()Z : // 573 samples - return: + return: + method makeEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method makeEmpty()V : // 55 samples - return: + return: + method pop()V throws Ljava/lang/Throwable; : // 0 samples + return: method pop()V : // 48 samples - return: + return: + method push(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 1 samples + return: + parameter #0 : // x method push(Ljava/lang/Object;)V : // 199 samples - return: + return: parameter #0 : // x + method top()V throws Ljava/lang/Throwable; : // 0 samples + return: method top()Ljava/lang/Object; : // 431 samples return: @Nullable + method topAndPop()V throws Ljava/lang/Throwable; : // 0 samples + return: method topAndPop()Ljava/lang/Object; : // 86 samples return: @Nullable diff --git a/tests/daikon-tests/StackAr/StackAr.txt-jml.goal b/tests/daikon-tests/StackAr/StackAr.txt-jml.goal index 3cec5e8cdf..a89610c52e 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-jml.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-jml.goal @@ -125,17 +125,43 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER x != null warning: method daikon.inv.unary.string.PrintableString.format(OutputFormat:JML) needs to be implemented: x.getClass().getName() is printable x.getClass().getName().length() == 16 || x.getClass().getName().length() == 22 || x.getClass().getName().length() == 24 -x.getClass().getName().length() % 2 == 0 this.theArray.getClass().getName() != x.getClass().getName() this.topOfStack <= this.theArray.getClass().getName().length() -this.topOfStack < daikon.Quant.size(this.theArray)-1 -(daikon.Quant.size(this.theArray)-1 >> this.theArray.getClass().getName().length() == 0) this.theArray.getClass().getName().length() != x.getClass().getName().length() (daikon.Quant.size(this.theArray) >> x.getClass().getName().length() == 0) daikon.Quant.size(this.theArray) != x.getClass().getName().length() -(daikon.Quant.size(this.theArray)-1 >> x.getClass().getName().length() == 0) daikon.Quant.size(this.theArray)-1 != x.getClass().getName().length() =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION + Variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.theArray) orig(this.theArray.getClass().getName()) orig(this.theArray[]) orig(this.theArray[].getClass().getName()) orig(this.topOfStack) orig(x) orig(x.getClass().getName()) this.theArray.getClass().getName().length() size(this.theArray[]) size(this.theArray[])-1 x.getClass().getName().length() exception.getClass().getName().length() orig(this.theArray.getClass().getName()).length() orig(size(this.theArray[])) orig(size(this.theArray[]))-1 orig(x.getClass().getName()).length() this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] this.theArray[0..this.topOfStack-1] this.theArray[orig(this.topOfStack)] this.theArray[orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)..] this.theArray[orig(this.topOfStack)+1..] this.theArray[0..orig(this.topOfStack)] this.theArray[0..orig(this.topOfStack)-1] orig(this.theArray[post(this.topOfStack)]) orig(this.theArray[post(this.topOfStack)-1]) orig(this.theArray[post(this.topOfStack)..]) orig(this.theArray[post(this.topOfStack)+1..]) orig(this.theArray[0..post(this.topOfStack)]) orig(this.theArray[0..post(this.topOfStack)-1]) orig(this.theArray[this.topOfStack]) orig(this.theArray[this.topOfStack-1]) orig(this.theArray[this.topOfStack..]) orig(this.theArray[this.topOfStack+1..]) orig(this.theArray[0..this.topOfStack]) orig(this.theArray[0..this.topOfStack-1]) this.theArray[this.topOfStack+1..orig(this.topOfStack)] this.theArray[this.topOfStack..orig(this.topOfStack)-1] this.theArray[this.topOfStack+1..orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack] this.theArray[orig(this.topOfStack)..this.topOfStack-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack-1] +assignable this.theArray[this.topOfStack], this.theArray[this.topOfStack-1], this.theArray[this.topOfStack..], this.theArray[0..this.topOfStack-1] +this == \old(this) +this.theArray == \old(this.theArray) +this.theArray.getClass().getName() == \old(this.theArray.getClass().getName()) +daikon.Quant.pairwiseEqual(this.theArray, \old(this.theArray)) +this.topOfStack == \old(this.topOfStack) +this.topOfStack == daikon.Quant.size(this.theArray)-1 +this.topOfStack == \old(daikon.Quant.size(this.theArray))-1 +x == \old(x) +x.getClass().getName() == \old(x.getClass().getName()) +\old(this) == \old(x) +this.theArray.getClass().getName().length() == \old(this.theArray.getClass().getName()).length() +x.getClass().getName().length() == \old(x.getClass().getName()).length() +this.theArray != null +("oneOf.java.jpp: SEQUENCE unimplemented" != null) +daikon.Quant.pairwiseEqual(daikon.Quant.typeArray(this.theArray), new String[] { }) +Exception != null +Exception.getClass().getName() == DataStructures.Overflow.class.getName() +\old(this) != null +\old(x) != null +\old(x.getClass().getName()) == DataStructures.StackAr.class.getName() +x.getClass().getName().length() == 22 +Exception.getClass().getName().length() == 23 +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 + Variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() exception exception.getClass().getName() orig(this) orig(this.theArray) orig(this.theArray.getClass().getName()) orig(this.theArray[]) orig(this.theArray[].getClass().getName()) orig(this.topOfStack) orig(x) orig(x.getClass().getName()) this.theArray.getClass().getName().length() size(this.theArray[]) size(this.theArray[])-1 x.getClass().getName().length() exception.getClass().getName().length() orig(this.theArray.getClass().getName()).length() orig(size(this.theArray[])) orig(size(this.theArray[]))-1 orig(x.getClass().getName()).length() this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] this.theArray[0..this.topOfStack-1] this.theArray[orig(this.topOfStack)] this.theArray[orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)..] this.theArray[orig(this.topOfStack)+1..] this.theArray[0..orig(this.topOfStack)] this.theArray[0..orig(this.topOfStack)-1] orig(this.theArray[post(this.topOfStack)]) orig(this.theArray[post(this.topOfStack)-1]) orig(this.theArray[post(this.topOfStack)..]) orig(this.theArray[post(this.topOfStack)+1..]) orig(this.theArray[0..post(this.topOfStack)]) orig(this.theArray[0..post(this.topOfStack)-1]) orig(this.theArray[this.topOfStack]) orig(this.theArray[this.topOfStack-1]) orig(this.theArray[this.topOfStack..]) orig(this.theArray[this.topOfStack+1..]) orig(this.theArray[0..this.topOfStack]) orig(this.theArray[0..this.topOfStack-1]) this.theArray[this.topOfStack+1..orig(this.topOfStack)] this.theArray[this.topOfStack..orig(this.topOfStack)-1] this.theArray[this.topOfStack+1..orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack] this.theArray[orig(this.topOfStack)..this.topOfStack-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack-1] +assignable this.theArray[this.topOfStack], this.theArray[this.topOfStack-1], this.theArray[this.topOfStack..], this.theArray[0..this.topOfStack-1] +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT Variables: this this.theArray this.theArray.getClass().getName() this.theArray[] this.theArray[].getClass().getName() this.topOfStack x x.getClass().getName() orig(this) orig(this.theArray) orig(this.theArray.getClass().getName()) orig(this.theArray[]) orig(this.theArray[].getClass().getName()) orig(this.topOfStack) orig(x) orig(x.getClass().getName()) this.theArray.getClass().getName().length() size(this.theArray[]) size(this.theArray[])-1 x.getClass().getName().length() orig(this.theArray.getClass().getName()).length() orig(size(this.theArray[])) orig(size(this.theArray[]))-1 orig(x.getClass().getName()).length() this.theArray[this.topOfStack] this.theArray[this.topOfStack-1] this.theArray[this.topOfStack..] this.theArray[this.topOfStack+1..] this.theArray[0..this.topOfStack] this.theArray[0..this.topOfStack-1] this.theArray[orig(this.topOfStack)] this.theArray[orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)..] this.theArray[orig(this.topOfStack)+1..] this.theArray[0..orig(this.topOfStack)] this.theArray[0..orig(this.topOfStack)-1] orig(this.theArray[post(this.topOfStack)]) orig(this.theArray[post(this.topOfStack)-1]) orig(this.theArray[post(this.topOfStack)..]) orig(this.theArray[post(this.topOfStack)+1..]) orig(this.theArray[0..post(this.topOfStack)]) orig(this.theArray[0..post(this.topOfStack)-1]) orig(this.theArray[this.topOfStack]) orig(this.theArray[this.topOfStack-1]) orig(this.theArray[this.topOfStack..]) orig(this.theArray[this.topOfStack+1..]) orig(this.theArray[0..this.topOfStack]) orig(this.theArray[0..this.topOfStack-1]) this.theArray[this.topOfStack+1..orig(this.topOfStack)] this.theArray[this.topOfStack..orig(this.topOfStack)-1] this.theArray[this.topOfStack+1..orig(this.topOfStack)-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack] this.theArray[orig(this.topOfStack)..this.topOfStack-1] this.theArray[orig(this.topOfStack)+1..this.topOfStack-1] assignable this.theArray[*], this.topOfStack, this.theArray[this.topOfStack], this.theArray[this.topOfStack-1], this.theArray[this.topOfStack..], this.theArray[this.topOfStack+1..], this.theArray[0..this.topOfStack-1] diff --git a/tests/daikon-tests/StackAr/StackAr.txt-merge-esc.goal b/tests/daikon-tests/StackAr/StackAr.txt-merge-esc.goal index dd9779acdf..8eb5323154 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-merge-esc.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-merge-esc.goal @@ -177,7 +177,6 @@ public class StackAr /*@ requires \typeof(x).length() == 16 || \typeof(x).length() == 22 || \typeof(x).length() == 24; */ /*@ requires \typeof(this.theArray) != \typeof(x); */ /*@ requires this.topOfStack <= \typeof(this.theArray).length(); */ - /*@ requires this.topOfStack < this.theArray.length-1; */ /*@ requires \typeof(this.theArray).length() != \typeof(x).length(); */ /*@ requires this.theArray.length != \typeof(x).length(); */ /*@ requires this.theArray.length-1 != \typeof(x).length(); */ diff --git a/tests/daikon-tests/StackAr/StackAr.txt-merge-jml.goal b/tests/daikon-tests/StackAr/StackAr.txt-merge-jml.goal index e80e763878..fc012dc8e2 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-merge-jml.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-merge-jml.goal @@ -198,10 +198,8 @@ public class StackAr @ public normal_behavior // Generated by Daikon @ requires x != null; @ requires x.getClass().getName().length() == 16 || x.getClass().getName().length() == 22 || x.getClass().getName().length() == 24; - @ requires x.getClass().getName().length() % 2 == 0; @ requires this.theArray.getClass().getName() != x.getClass().getName(); @ requires this.topOfStack <= this.theArray.getClass().getName().length(); - @ requires this.topOfStack < daikon.Quant.size(this.theArray)-1; @ requires this.theArray.getClass().getName().length() != x.getClass().getName().length(); @ requires daikon.Quant.size(this.theArray) != x.getClass().getName().length(); @ requires daikon.Quant.size(this.theArray)-1 != x.getClass().getName().length(); @@ -224,6 +222,28 @@ public class StackAr @ ensures this.theArray.getClass().getName().length() != x.getClass().getName().length(); @ ensures daikon.Quant.size(this.theArray) != x.getClass().getName().length(); @ ensures daikon.Quant.size(this.theArray)-1 != x.getClass().getName().length(); + @ also + @ public exceptional_behavior // Generated by Daikon + @ requires this == \old(this); + @ requires this.theArray == \old(this.theArray); + @ requires this.theArray.getClass().getName() == \old(this.theArray.getClass().getName()); + @ requires daikon.Quant.pairwiseEqual(this.theArray, \old(this.theArray)); + @ requires this.topOfStack == \old(this.topOfStack); + @ requires this.topOfStack == daikon.Quant.size(this.theArray)-1; + @ requires this.topOfStack == \old(daikon.Quant.size(this.theArray))-1; + @ requires x == \old(x); + @ requires x.getClass().getName() == \old(x.getClass().getName()); + @ requires \old(this) == \old(x); + @ requires this.theArray.getClass().getName().length() == \old(this.theArray.getClass().getName()).length(); + @ requires x.getClass().getName().length() == \old(x.getClass().getName()).length(); + @ requires this.theArray != null; + @ requires Exception != null; + @ requires Exception.getClass().getName() == DataStructures.Overflow.class.getName(); + @ requires \old(this) != null; + @ requires \old(x) != null; + @ requires \old(x.getClass().getName()) == DataStructures.StackAr.class.getName(); + @ requires x.getClass().getName().length() == 22; + @ requires Exception.getClass().getName().length() == 23; @*/ /** * Insert a new item into the stack, if not already full. diff --git a/tests/daikon-tests/StackAr/StackAr.txt-simplify.goal b/tests/daikon-tests/StackAr/StackAr.txt-simplify.goal index eaccd224e5..18fa876cab 100644 --- a/tests/daikon-tests/StackAr/StackAr.txt-simplify.goal +++ b/tests/daikon-tests/StackAr/StackAr.txt-simplify.goal @@ -109,17 +109,39 @@ DataStructures.StackAr.push(java.lang.Object):::ENTER (NEQ (hash |x|) null) warning: method daikon.inv.unary.string.PrintableString.format(OutputFormat:Simplify) needs to be implemented: x.getClass().getName() is printable (OR (EQ (stringLength (typeof |x|)) 16) (EQ (stringLength (typeof |x|)) 22) (EQ (stringLength (typeof |x|)) 24)) -(EQ (MOD (stringLength (typeof |x|)) 2) 0) (NEQ (typeof (select |theArray| |this|)) (typeof |x|)) (<= (select |topOfStack| |this|) (stringLength (typeof (select |theArray| |this|)))) -(< (select |topOfStack| |this|) (- (arrayLength (select |theArray| |this|)) 1)) -(EQ (|java->>| (- (arrayLength (select |theArray| |this|)) 1) (stringLength (typeof (select |theArray| |this|)))) 0) (NEQ (stringLength (typeof (select |theArray| |this|))) (stringLength (typeof |x|))) (EQ (|java->>| (arrayLength (select |theArray| |this|)) (stringLength (typeof |x|))) 0) (NEQ (arrayLength (select |theArray| |this|)) (stringLength (typeof |x|))) -(EQ (|java->>| (- (arrayLength (select |theArray| |this|)) 1) (stringLength (typeof |x|))) 0) (NEQ (- (arrayLength (select |theArray| |this|)) 1) (stringLength (typeof |x|))) =========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION +(EQ (hash |this|) (hash |__orig__this|)) +(EQ (hash (select |theArray| |this|)) (hash (select |theArray| |__orig__this|))) +(EQ (typeof (select |theArray| |this|)) (typeof (select |theArray| |__orig__this|))) +(FORALL (|i| |j|) (IMPLIES (AND (<= 0 |i|) (<= |i| (- (arrayLength (select |theArray| |this|)) 1)) (<= 0 |j|) (<= |j| (- (arrayLength (select |theArray| |__orig__this|)) 1)) (EQ |i| |j|)) (EQ (select (select elems (select |theArray| |this|)) |i|) (select (select elems (select |theArray| |__orig__this|)) |j|)))) +(EQ (select |topOfStack| |this|) (select |topOfStack| |__orig__this|)) +(EQ (select |topOfStack| |this|) (- (arrayLength (select |theArray| |this|)) 1)) +(EQ (select |topOfStack| |this|) (- (arrayLength (select |theArray| |__orig__this|)) 1)) +(EQ (hash |x|) (hash |__orig__x|)) +(EQ (typeof |x|) (typeof |__orig__x|)) +(EQ (hash |__orig__this|) (hash |__orig__x|)) +(EQ (stringLength (typeof (select |theArray| |this|))) (stringLength (typeof (select |theArray| |__orig__this|)))) +(EQ (stringLength (typeof |x|)) (stringLength (typeof |__orig__x|))) +(EQ (hash (select |theArray| |this|)) (hashcode 1002)) +(AND (EQ (arrayLength (select |theArray| |this|)) 0) (FORALL (|i|) (IMPLIES (AND (<= 0 |i|) (<= |i| (- (arrayLength (select |theArray| |this|)) 1))) (NEQ (select (select elems (select |theArray| |this|)) |i|) null)))) +(EQ (arrayLength (select |theArray| |this|)) 0) +(EQ (hash |return|) (hashcode 1003)) +(EQ (typeof |return|) |T_DataStructures.Overflow|) +(EQ (hash |__orig__this|) (hashcode 1004)) +(EQ (hash |__orig__x|) (hashcode 1004)) +(EQ (typeof |__orig__x|) |T_DataStructures.StackAr|) +(EQ (stringLength (typeof |x|)) 22) +(EQ (stringLength (typeof |return|)) 23) +=========================================================================== +DataStructures.StackAr.push(java.lang.Object):::EXCEPTION97 +=========================================================================== DataStructures.StackAr.push(java.lang.Object):::EXIT (EQ (hash (select |theArray| |this|)) (hash (select |theArray| |__orig__this|))) (EQ (typeof (select |theArray| |this|)) (typeof (select |theArray| |__orig__this|))) diff --git a/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-chicory.goal b/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-chicory.goal index 591570950a..6e9ebba4f6 100644 --- a/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-chicory.goal +++ b/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for MapQuick1.StreetNumberSet -// Declarations written Thu Jul 14 13:00:31 PDT 2016 +// Declarations written Mon Jul 31 13:05:16 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER ppt-type enter variable numbers - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -25,10 +25,10 @@ ppt MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -39,7 +39,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -54,7 +54,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -62,7 +62,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable numbers - var-kind variable + var-kind variable dec-type java.lang.String rep-type hashcode flags is_param @@ -76,37 +76,148 @@ variable numbers.toString flags synthetic to_string comparability 22 -ppt MapQuick1.StreetNumberSet.parityOf(int):::ENTER -ppt-type enter -variable i - var-kind variable - dec-type int - rep-type int +ppt MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXCEPTION35 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable numbers + var-kind variable + dec-type java.lang.String + rep-type hashcode flags is_param comparability 22 +variable numbers.toString + var-kind function toString() + enclosing-var numbers + dec-type java.lang.String + rep-type java.lang.String + function-args numbers + flags synthetic to_string + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +ppt MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXCEPTION55 ppt-type subexit -variable i - var-kind variable - dec-type int - rep-type int +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable numbers + var-kind variable + dec-type java.lang.String + rep-type hashcode flags is_param comparability 22 -variable return - var-kind return - dec-type int - rep-type int +variable numbers.toString + var-kind function toString() + enclosing-var numbers + dec-type java.lang.String + rep-type java.lang.String + function-args numbers + flags synthetic to_string + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.checkRep():::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -117,7 +228,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -132,22 +243,92 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable numbers + var-kind variable + dec-type java.lang.String + rep-type hashcode + flags is_param + comparability 22 +variable numbers.toString + var-kind function toString() + enclosing-var numbers + dec-type java.lang.String + rep-type java.lang.String + function-args numbers + flags synthetic to_string + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt MapQuick1.StreetNumberSet.checkRep():::EXIT104 +ppt MapQuick1.StreetNumberSet.parityOf(int):::ENTER +ppt-type enter +variable i + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 + +ppt MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +ppt-type subexit +variable i + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 + +ppt MapQuick1.StreetNumberSet.parityOf(int):::EXCEPTIONUNCAUGHT ppt-type subexit +variable i + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.StreetNumberSet.checkRep():::ENTER +ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -158,7 +339,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -173,7 +354,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -181,14 +362,14 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -ppt MapQuick1.StreetNumberSet.contains(int):::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.checkRep():::EXIT104 +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -199,7 +380,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -214,28 +395,22 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable n - var-kind variable - dec-type int - rep-type int - flags is_param - comparability 22 -ppt MapQuick1.StreetNumberSet.contains(int):::EXIT118 +ppt MapQuick1.StreetNumberSet.checkRep():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -246,7 +421,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -261,33 +436,34 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable n - var-kind variable - dec-type int - rep-type int - flags is_param +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.contains(int):::EXIT123 -ppt-type subexit +ppt MapQuick1.StreetNumberSet.contains(int):::ENTER +ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -298,7 +474,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -313,7 +489,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -321,25 +497,20 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean - comparability 22 -ppt MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.contains(int):::EXIT118 +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -350,7 +521,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -365,7 +536,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -373,20 +544,25 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 -ppt MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +ppt MapQuick1.StreetNumberSet.contains(int):::EXIT123 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -397,7 +573,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -412,7 +588,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -420,25 +596,25 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return - dec-type int - rep-type int + var-kind return + dec-type boolean + rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.size():::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.contains(int):::EXCEPTION126 +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -449,7 +625,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -464,22 +640,40 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt MapQuick1.StreetNumberSet.size():::EXIT181 +ppt MapQuick1.StreetNumberSet.contains(int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -490,7 +684,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -505,27 +699,40 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable return - var-kind return +variable n + var-kind variable dec-type int rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.isEmpty():::ENTER +ppt MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -536,7 +743,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -551,22 +758,28 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 -ppt MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +ppt MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -577,7 +790,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -592,27 +805,33 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 variable return - var-kind return - dec-type boolean - rep-type boolean + var-kind return + dec-type int + rep-type int comparability 22 -ppt MapQuick1.StreetNumberSet.min():::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.orderStatistic(int):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -623,7 +842,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -638,22 +857,40 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt MapQuick1.StreetNumberSet.min():::EXIT210 -ppt-type subexit +ppt MapQuick1.StreetNumberSet.size():::ENTER +ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -664,7 +901,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -679,27 +916,22 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable return - var-kind return - dec-type int - rep-type int - comparability 22 -ppt MapQuick1.StreetNumberSet.max():::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.size():::EXIT181 +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -710,7 +942,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -725,22 +957,27 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 -ppt MapQuick1.StreetNumberSet.max():::EXIT230 +ppt MapQuick1.StreetNumberSet.size():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -751,7 +988,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -766,27 +1003,34 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable return - var-kind return - dec-type int - rep-type int +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +ppt MapQuick1.StreetNumberSet.isEmpty():::ENTER ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -797,7 +1041,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -812,54 +1056,22 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable other - var-kind variable - dec-type MapQuick1.StreetNumberSet - rep-type hashcode - flags is_param - comparability 22 -variable other.begins - var-kind field begins - enclosing-var other - dec-type int[] - rep-type hashcode - comparability 22 -variable other.begins[..] - var-kind array - enclosing-var other.begins - array 1 - dec-type int[] - rep-type int[] - comparability 22 -variable other.ends - var-kind field ends - enclosing-var other - dec-type int[] - rep-type hashcode - comparability 22 -variable other.ends[..] - var-kind array - enclosing-var other.ends - array 1 - dec-type int[] - rep-type int[] - comparability 22 -ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT240 +ppt MapQuick1.StreetNumberSet.isEmpty():::EXIT190 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -870,7 +1082,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -885,59 +1097,27 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable other - var-kind variable - dec-type MapQuick1.StreetNumberSet - rep-type hashcode - flags is_param - comparability 22 -variable other.begins - var-kind field begins - enclosing-var other - dec-type int[] - rep-type hashcode - comparability 22 -variable other.begins[..] - var-kind array - enclosing-var other.begins - array 1 - dec-type int[] - rep-type int[] - comparability 22 -variable other.ends - var-kind field ends - enclosing-var other - dec-type int[] - rep-type hashcode - comparability 22 -variable other.ends[..] - var-kind array - enclosing-var other.ends - array 1 - dec-type int[] - rep-type int[] - comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 +ppt MapQuick1.StreetNumberSet.isEmpty():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -948,7 +1128,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -963,59 +1143,34 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable other - var-kind variable - dec-type MapQuick1.StreetNumberSet - rep-type hashcode - flags is_param - comparability 22 -variable other.begins - var-kind field begins - enclosing-var other - dec-type int[] +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable other.begins[..] - var-kind array - enclosing-var other.begins - array 1 - dec-type int[] - rep-type int[] - comparability 22 -variable other.ends - var-kind field ends - enclosing-var other - dec-type int[] - rep-type hashcode - comparability 22 -variable other.ends[..] - var-kind array - enclosing-var other.ends - array 1 - dec-type int[] - rep-type int[] - comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 -ppt-type subexit +ppt MapQuick1.StreetNumberSet.min():::ENTER +ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1026,7 +1181,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1041,59 +1196,68 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable other - var-kind variable + +ppt MapQuick1.StreetNumberSet.min():::EXIT210 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 -variable other.begins + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins var-kind field begins - enclosing-var other + enclosing-var this dec-type int[] rep-type hashcode comparability 22 -variable other.begins[..] - var-kind array - enclosing-var other.begins + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins array 1 dec-type int[] rep-type int[] comparability 22 -variable other.ends + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends var-kind field ends - enclosing-var other + enclosing-var this dec-type int[] rep-type hashcode comparability 22 -variable other.ends[..] - var-kind array - enclosing-var other.ends + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 variable return - var-kind return - dec-type boolean - rep-type boolean + var-kind return + dec-type int + rep-type int comparability 22 -ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT239 +ppt MapQuick1.StreetNumberSet.min():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1104,7 +1268,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1119,59 +1283,34 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable other - var-kind variable - dec-type MapQuick1.StreetNumberSet - rep-type hashcode - flags is_param - comparability 22 -variable other.begins - var-kind field begins - enclosing-var other - dec-type int[] +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable other.begins[..] - var-kind array - enclosing-var other.begins - array 1 - dec-type int[] - rep-type int[] - comparability 22 -variable other.ends - var-kind field ends - enclosing-var other - dec-type int[] - rep-type hashcode - comparability 22 -variable other.ends[..] - var-kind array - enclosing-var other.ends - array 1 - dec-type int[] - rep-type int[] - comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +ppt MapQuick1.StreetNumberSet.max():::ENTER ppt-type enter parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1182,7 +1321,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1197,36 +1336,22 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable o - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param - comparability 22 -variable o.getClass().getName() - var-kind function getClass().getName() - enclosing-var o - dec-type java.lang.Class - rep-type java.lang.String - function-args o - flags synthetic classname - comparability 22 -ppt MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +ppt MapQuick1.StreetNumberSet.max():::EXIT230 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1237,7 +1362,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1252,41 +1377,27 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 -variable o - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param - comparability 22 -variable o.getClass().getName() - var-kind function getClass().getName() - enclosing-var o - dec-type java.lang.Class - rep-type java.lang.String - function-args o - flags synthetic classname - comparability 22 variable return - var-kind return - dec-type boolean - rep-type boolean + var-kind return + dec-type int + rep-type int comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.max():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1297,7 +1408,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1312,7 +1423,60 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +ppt-type enter +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1320,7 +1484,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1332,7 +1496,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1345,21 +1509,21 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT240 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1370,7 +1534,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1385,7 +1549,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1393,7 +1557,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1405,7 +1569,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1418,26 +1582,26 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT290 +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1448,7 +1612,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1463,7 +1627,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1471,7 +1635,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1483,7 +1647,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1496,26 +1660,26 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT275 +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1526,7 +1690,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1541,7 +1705,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1549,7 +1713,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1561,7 +1725,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1574,26 +1738,26 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT239 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1604,7 +1768,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1619,7 +1783,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1627,7 +1791,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1639,7 +1803,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1652,26 +1816,26 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT282 +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXCEPTION260 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1682,7 +1846,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1697,7 +1861,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1705,7 +1869,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1717,7 +1881,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1730,26 +1894,33 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT286 +ppt MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1760,7 +1931,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1775,7 +1946,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1783,7 +1954,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1795,7 +1966,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1808,27 +1979,216 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +ppt-type enter +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags synthetic classname non_null + comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 -ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +ppt MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode flags is_param comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +ppt-type enter +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins var-kind field begins @@ -1838,7 +2198,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1853,7 +2213,7 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -1861,7 +2221,7 @@ variable this.ends[..] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode flags is_param @@ -1873,7 +2233,7 @@ variable other.begins rep-type hashcode comparability 22 variable other.begins[..] - var-kind array + var-kind array enclosing-var other.begins array 1 dec-type int[] @@ -1886,26 +2246,21 @@ variable other.ends rep-type hashcode comparability 22 variable other.ends[..] - var-kind array + var-kind array enclosing-var other.ends array 1 dec-type int[] rep-type int[] comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean - comparability 22 -ppt MapQuick1.StreetNumberSet.hashCode():::ENTER -ppt-type enter +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1916,7 +2271,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1931,22 +2286,59 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 -ppt MapQuick1.StreetNumberSet.hashCode():::EXIT295 +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT290 ppt-type subexit parent parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins @@ -1957,7 +2349,7 @@ variable this.begins comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -1972,26 +2364,673 @@ variable this.ends comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] rep-type int[] comparability 22 parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT275 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 variable return - var-kind return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT282 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT286 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + comparability 22 + +ppt MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable other + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param + comparability 22 +variable other.begins + var-kind field begins + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.begins[..] + var-kind array + enclosing-var other.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable other.ends + var-kind field ends + enclosing-var other + dec-type int[] + rep-type hashcode + comparability 22 +variable other.ends[..] + var-kind array + enclosing-var other.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt MapQuick1.StreetNumberSet.hashCode():::ENTER +ppt-type enter +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 + +ppt MapQuick1.StreetNumberSet.hashCode():::EXIT295 +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable return + var-kind return dec-type int rep-type int comparability 22 +ppt MapQuick1.StreetNumberSet.hashCode():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick1.StreetNumberSet + rep-type hashcode + flags is_param non_null + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins + var-kind field begins + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.begins[..] + var-kind array + enclosing-var this.begins + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends + var-kind field ends + enclosing-var this + dec-type int[] + rep-type hashcode + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable this.ends[..] + var-kind array + enclosing-var this.ends + array 1 + dec-type int[] + rep-type int[] + comparability 22 + parent MapQuick1.StreetNumberSet:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt MapQuick1.StreetNumberSet:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type MapQuick1.StreetNumberSet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.begins var-kind field begins @@ -2000,7 +3039,7 @@ variable this.begins rep-type hashcode comparability 22 variable this.begins[..] - var-kind array + var-kind array enclosing-var this.begins array 1 dec-type int[] @@ -2013,7 +3052,7 @@ variable this.ends rep-type hashcode comparability 22 variable this.ends[..] - var-kind array + var-kind array enclosing-var this.ends array 1 dec-type int[] @@ -2024,7 +3063,7 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce 0 numbers -192794887 +2024542466 1 numbers.toString "857-859" @@ -2068,16 +3107,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 3 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2121,16 +3160,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 3 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2140,22 +3179,22 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce 0 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 numbers -192794887 +2024542466 1 numbers.toString "857-859" @@ -2165,16 +3204,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 6 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2187,16 +3226,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 7 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2240,16 +3279,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 7 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2293,16 +3332,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 12 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2346,16 +3385,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 12 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2365,16 +3404,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 6 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2390,16 +3429,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 15 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2412,16 +3451,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 16 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2465,16 +3504,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 16 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2518,16 +3557,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 21 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2571,16 +3610,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 21 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2590,16 +3629,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 24 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2609,16 +3648,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 25 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2662,16 +3701,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 25 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2681,16 +3720,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 28 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2734,16 +3773,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 28 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2753,16 +3792,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 24 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2775,16 +3814,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 15 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2800,16 +3839,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 31 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2822,16 +3861,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 32 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2875,16 +3914,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 32 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2928,16 +3967,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 37 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -2981,16 +4020,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 37 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3000,16 +4039,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce 31 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3025,16 +4064,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 40 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3047,16 +4086,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 41 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3100,16 +4139,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 41 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3153,16 +4192,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 46 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3206,16 +4245,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 46 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3225,16 +4264,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 49 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3244,16 +4283,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 50 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3297,16 +4336,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 50 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3316,16 +4355,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 53 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3369,16 +4408,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 53 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3388,16 +4427,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 49 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3410,16 +4449,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 40 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3435,16 +4474,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 56 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3457,16 +4496,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 57 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3510,16 +4549,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 57 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3563,16 +4602,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 62 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3616,16 +4655,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 62 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3635,16 +4674,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 56 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3660,16 +4699,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 65 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3682,16 +4721,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 66 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3735,16 +4774,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 66 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3788,16 +4827,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 71 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3841,16 +4880,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 71 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3860,16 +4899,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 74 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3879,16 +4918,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 75 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3932,16 +4971,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 75 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -3951,16 +4990,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 78 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4004,16 +5043,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 78 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4023,16 +5062,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 74 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4045,16 +5084,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 65 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4070,16 +5109,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 81 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4092,16 +5131,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 82 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4145,16 +5184,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 82 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4198,16 +5237,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 87 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4251,16 +5290,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 87 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4270,16 +5309,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 81 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4295,16 +5334,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 90 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4317,16 +5356,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 91 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4370,16 +5409,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 91 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4423,16 +5462,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 96 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4476,16 +5515,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 96 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4495,16 +5534,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 99 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4514,16 +5553,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 100 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4567,16 +5606,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 100 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4586,16 +5625,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 103 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4639,16 +5678,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 103 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4658,16 +5697,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 99 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4680,16 +5719,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 90 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4705,16 +5744,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 106 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4727,16 +5766,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 107 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4780,16 +5819,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 107 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4833,16 +5872,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 112 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4886,16 +5925,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 112 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4905,16 +5944,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 106 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4930,16 +5969,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 115 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -4952,16 +5991,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 116 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5005,16 +6044,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 116 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5058,16 +6097,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 121 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5111,16 +6150,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 121 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5130,16 +6169,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 124 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5149,16 +6188,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 125 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5202,16 +6241,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 125 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5221,16 +6260,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 128 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5274,16 +6313,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 128 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5293,16 +6332,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 124 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5315,16 +6354,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 115 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5340,16 +6379,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 131 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5362,16 +6401,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 132 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5415,16 +6454,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 132 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5468,16 +6507,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 137 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5521,16 +6560,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 137 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5540,16 +6579,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 131 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5565,16 +6604,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 140 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5587,16 +6626,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 141 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5640,16 +6679,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 141 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5693,16 +6732,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 146 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5746,16 +6785,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 146 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5765,16 +6804,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 149 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5784,16 +6823,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 150 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5837,16 +6876,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 150 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5856,16 +6895,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 153 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5909,16 +6948,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 153 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5928,16 +6967,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 149 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5950,16 +6989,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 140 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5975,16 +7014,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 156 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -5997,16 +7036,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 157 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6050,16 +7089,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 157 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6103,16 +7142,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 162 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6156,16 +7195,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 162 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6175,16 +7214,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 156 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6200,16 +7239,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 165 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6222,16 +7261,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 166 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6275,16 +7314,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 166 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6328,16 +7367,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 171 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6381,16 +7420,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 171 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6400,16 +7439,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 174 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6419,16 +7458,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 175 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6472,16 +7511,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 175 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6491,16 +7530,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 178 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6544,16 +7583,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 178 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6563,16 +7602,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 174 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6585,16 +7624,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 165 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6610,16 +7649,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 181 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6632,16 +7671,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 182 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6685,16 +7724,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 182 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6738,16 +7777,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 187 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6791,16 +7830,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 187 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6810,16 +7849,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 181 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6835,16 +7874,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 190 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6857,16 +7896,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 191 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6910,16 +7949,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 191 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -6963,16 +8002,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 196 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7016,16 +8055,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 196 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7035,16 +8074,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 199 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7054,16 +8093,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 200 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7107,16 +8146,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 200 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7126,16 +8165,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 203 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7179,16 +8218,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 203 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7198,16 +8237,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 199 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7220,16 +8259,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 190 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7245,16 +8284,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 206 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7267,16 +8306,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 207 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7320,16 +8359,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 207 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7373,16 +8412,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 212 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7426,16 +8465,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 212 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7445,16 +8484,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 206 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7470,16 +8509,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 215 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7492,16 +8531,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 216 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7545,16 +8584,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 216 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7598,16 +8637,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 221 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7651,16 +8690,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 221 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7670,16 +8709,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 224 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7689,16 +8728,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 225 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7742,16 +8781,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 225 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7761,16 +8800,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 228 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7814,16 +8853,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 228 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7833,16 +8872,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 224 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7855,16 +8894,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 215 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7880,16 +8919,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 231 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7902,16 +8941,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 232 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -7955,16 +8994,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 232 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8008,16 +9047,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 237 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8061,16 +9100,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 237 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8080,16 +9119,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce 231 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8105,16 +9144,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce 240 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8127,16 +9166,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 241 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8180,16 +9219,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 241 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8233,16 +9272,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 246 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8286,16 +9325,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 246 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8305,16 +9344,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 249 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8324,16 +9363,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 250 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8377,16 +9416,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 250 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8396,16 +9435,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 253 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8449,16 +9488,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 253 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8468,16 +9507,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 249 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8490,16 +9529,16 @@ MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce 240 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8515,16 +9554,16 @@ MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce 256 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8534,16 +9573,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 257 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8587,16 +9626,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 257 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8606,16 +9645,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 260 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8659,16 +9698,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 260 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8678,16 +9717,16 @@ MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce 256 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8700,16 +9739,16 @@ MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce 263 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8719,16 +9758,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 264 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8772,16 +9811,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 264 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8791,16 +9830,16 @@ MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce 263 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8813,16 +9852,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 267 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8832,16 +9871,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 268 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8885,16 +9924,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 268 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8904,16 +9943,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 271 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8957,16 +9996,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 271 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8976,16 +10015,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 267 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -8998,16 +10037,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 274 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9017,16 +10056,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 275 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9070,16 +10109,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 275 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9089,16 +10128,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 278 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9142,16 +10181,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 278 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9161,16 +10200,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 274 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9183,16 +10222,16 @@ MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce 281 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9208,16 +10247,16 @@ MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce 281 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9236,16 +10275,16 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 282 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9270,16 +10309,16 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 this_invocation_nonce 282 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9307,22 +10346,22 @@ MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce 283 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 o -1122805102 +770189387 1 o.getClass().getName() "MapQuick1.StreetNumberSet" @@ -9332,31 +10371,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 284 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1122805102 +770189387 1 other.begins -1391942103 +963522361 1 other.begins[..] [857] 1 other.ends -2092769598 +175408781 1 other.ends[..] [859] @@ -9366,31 +10405,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce 284 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1122805102 +770189387 1 other.begins -1391942103 +963522361 1 other.begins[..] [857] 1 other.ends -2092769598 +175408781 1 other.ends[..] [859] @@ -9403,22 +10442,22 @@ MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce 283 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 o -1122805102 +770189387 1 o.getClass().getName() "MapQuick1.StreetNumberSet" @@ -9431,31 +10470,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 285 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1122805102 +770189387 1 other.begins -1391942103 +963522361 1 other.begins[..] [857] 1 other.ends -2092769598 +175408781 1 other.ends[..] [859] @@ -9465,31 +10504,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce 285 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1122805102 +770189387 1 other.begins -1391942103 +963522361 1 other.begins[..] [857] 1 other.ends -2092769598 +175408781 1 other.ends[..] [859] @@ -9502,7 +10541,7 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce 286 numbers -422392391 +315138752 1 numbers.toString "1" @@ -9546,16 +10585,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 289 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -9599,16 +10638,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 289 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -9618,22 +10657,22 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce 286 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] 1 numbers -422392391 +315138752 1 numbers.toString "1" @@ -9643,31 +10682,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 292 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1053631449 +2114874018 1 other.begins -1453128758 +911312317 1 other.begins[..] [1] 1 other.ends -1136497418 +415186196 1 other.ends[..] [1] @@ -9677,16 +10716,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 293 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9696,16 +10735,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 294 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9749,16 +10788,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 294 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9768,16 +10807,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 297 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9821,16 +10860,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 297 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9840,16 +10879,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 293 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9862,16 +10901,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 300 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9881,16 +10920,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 301 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9934,16 +10973,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 301 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -9953,16 +10992,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 304 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10006,16 +11045,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 304 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10025,16 +11064,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 300 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10047,16 +11086,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 307 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -10066,16 +11105,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 308 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -10119,16 +11158,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 308 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -10138,16 +11177,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 311 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -10191,16 +11230,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 311 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -10210,16 +11249,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 307 this -1053631449 +2114874018 1 this.begins -1453128758 +911312317 1 this.begins[..] [1] 1 this.ends -1136497418 +415186196 1 this.ends[..] [1] @@ -10232,31 +11271,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce 292 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1053631449 +2114874018 1 other.begins -1453128758 +911312317 1 other.begins[..] [1] 1 other.ends -1136497418 +415186196 1 other.ends[..] [1] @@ -10269,7 +11308,7 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce 314 numbers -863125040 +1337344609 1 numbers.toString "1,7" @@ -10347,16 +11386,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 319 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -10468,16 +11507,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 319 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -10487,22 +11526,22 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce 314 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] 1 numbers -863125040 +1337344609 1 numbers.toString "1,7" @@ -10512,31 +11551,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 326 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1693847660 +1113619023 1 other.begins -1429880200 +2015781843 1 other.begins[..] [1 7] 1 other.ends -2050019814 +428910174 1 other.ends[..] [1 7] @@ -10546,16 +11585,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 327 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10565,16 +11604,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 328 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10618,16 +11657,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 328 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10637,16 +11676,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 331 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10690,16 +11729,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 331 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10709,16 +11748,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 327 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10731,16 +11770,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 334 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10750,16 +11789,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 335 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10803,16 +11842,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 335 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10822,16 +11861,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 338 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10875,16 +11914,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 338 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10894,16 +11933,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 334 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -10916,16 +11955,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 341 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -10935,16 +11974,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 342 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -11056,16 +12095,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 342 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -11075,16 +12114,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 349 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -11196,16 +12235,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 349 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -11215,16 +12254,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 341 this -1693847660 +1113619023 1 this.begins -1429880200 +2015781843 1 this.begins[..] [1 7] 1 this.ends -2050019814 +428910174 1 this.ends[..] [1 7] @@ -11237,31 +12276,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce 326 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1693847660 +1113619023 1 other.begins -1429880200 +2015781843 1 other.begins[..] [1 7] 1 other.ends -2050019814 +428910174 1 other.ends[..] [1 7] @@ -11274,7 +12313,7 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce 356 numbers -1485955886 +1682463303 1 numbers.toString "1,7,11" @@ -11386,16 +12425,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 363 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -11609,16 +12648,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 363 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -11628,22 +12667,22 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce 356 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] 1 numbers -1485955886 +1682463303 1 numbers.toString "1,7,11" @@ -11653,31 +12692,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 376 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -212921632 +633075331 1 other.begins -149047107 +1858609436 1 other.begins[..] [1 7 11] 1 other.ends -1956710488 +1920387277 1 other.ends[..] [1 7 11] @@ -11687,16 +12726,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 377 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11706,16 +12745,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 378 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11759,16 +12798,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 378 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11778,16 +12817,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 381 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11831,16 +12870,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 381 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11850,16 +12889,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 377 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11872,16 +12911,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 384 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11891,16 +12930,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 385 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11944,16 +12983,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 385 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -11963,16 +13002,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 388 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12016,16 +13055,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 388 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12035,16 +13074,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 384 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12057,16 +13096,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 391 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -12076,16 +13115,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 392 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -12299,16 +13338,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 392 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -12318,16 +13357,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 405 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -12541,16 +13580,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 405 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -12560,16 +13599,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 391 this -212921632 +633075331 1 this.begins -149047107 +1858609436 1 this.begins[..] [1 7 11] 1 this.ends -1956710488 +1920387277 1 this.ends[..] [1 7 11] @@ -12582,31 +13621,31 @@ MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce 376 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -212921632 +633075331 1 other.begins -149047107 +1858609436 1 other.begins[..] [1 7 11] 1 other.ends -1956710488 +1920387277 1 other.ends[..] [1 7 11] @@ -12619,31 +13658,31 @@ MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 418 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1122805102 +770189387 1 other.begins -1391942103 +963522361 1 other.begins[..] [857] 1 other.ends -2092769598 +175408781 1 other.ends[..] [859] @@ -12653,16 +13692,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 419 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12706,16 +13745,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 419 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12725,16 +13764,16 @@ MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce 422 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12744,16 +13783,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 423 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12797,16 +13836,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 423 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12816,16 +13855,16 @@ MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce 422 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12838,16 +13877,16 @@ MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce 426 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12857,16 +13896,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 427 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12910,16 +13949,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 427 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12929,16 +13968,16 @@ MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce 426 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12951,16 +13990,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 430 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -12970,16 +14009,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 431 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13023,16 +14062,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 431 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13042,16 +14081,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 434 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13095,16 +14134,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 434 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13114,16 +14153,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 430 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13136,16 +14175,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 437 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13155,16 +14194,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 438 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13208,16 +14247,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 438 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13227,16 +14266,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 441 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13280,16 +14319,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 441 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13299,16 +14338,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 437 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13321,16 +14360,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 444 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13340,16 +14379,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 445 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13393,16 +14432,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 445 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13412,16 +14451,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 448 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13465,16 +14504,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 448 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13484,16 +14523,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 444 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13506,16 +14545,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 451 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13525,16 +14564,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 452 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13578,16 +14617,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 452 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13597,16 +14636,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 455 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13650,16 +14689,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 455 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13669,16 +14708,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 451 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13691,16 +14730,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 458 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13713,16 +14752,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 459 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13766,16 +14805,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 459 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13819,16 +14858,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 464 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13872,16 +14911,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 464 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13891,16 +14930,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce 458 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13916,16 +14955,16 @@ MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce 467 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13938,16 +14977,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 468 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -13991,16 +15030,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 468 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14044,16 +15083,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 473 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14097,16 +15136,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 473 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14116,16 +15155,16 @@ MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce 467 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14141,16 +15180,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 476 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14194,16 +15233,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 476 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14213,31 +15252,31 @@ MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 this_invocation_nonce 418 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -1122805102 +770189387 1 other.begins -1391942103 +963522361 1 other.begins[..] [857] 1 other.ends -2092769598 +175408781 1 other.ends[..] [859] @@ -14250,7 +15289,7 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce 479 numbers -603856241 +1414147750 1 numbers.toString "1,100,10" @@ -14362,16 +15401,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 486 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -14585,16 +15624,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 486 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -14604,22 +15643,22 @@ MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce 479 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] 1 numbers -603856241 +1414147750 1 numbers.toString "1,100,10" @@ -14629,31 +15668,31 @@ MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 499 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] 1 other -682376643 +775931202 1 other.begins -854507466 +22069592 1 other.begins[..] [1 100 10] 1 other.ends -1316061703 +1160003871 1 other.ends[..] [1 100 10] @@ -14663,16 +15702,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 500 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14716,16 +15755,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 500 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14735,16 +15774,16 @@ MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce 503 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14754,16 +15793,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 504 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14807,16 +15846,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 504 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14826,16 +15865,16 @@ MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce 503 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -14848,16 +15887,16 @@ MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce 507 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -14867,16 +15906,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 508 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15090,16 +16129,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 508 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15109,16 +16148,16 @@ MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce 507 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15131,16 +16170,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 521 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15150,16 +16189,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 522 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15203,16 +16242,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 522 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15222,16 +16261,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 525 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15275,16 +16314,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 525 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15294,16 +16333,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 521 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15316,16 +16355,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 528 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15335,16 +16374,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 529 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15388,16 +16427,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 529 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15407,16 +16446,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 532 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15460,16 +16499,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 532 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15479,16 +16518,16 @@ MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce 528 this -1122805102 +770189387 1 this.begins -1391942103 +963522361 1 this.begins[..] [857] 1 this.ends -2092769598 +175408781 1 this.ends[..] [859] @@ -15501,16 +16540,16 @@ MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce 535 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15520,16 +16559,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 536 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15743,16 +16782,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 536 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15762,16 +16801,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 549 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -15985,16 +17024,16 @@ MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce 549 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -16004,16 +17043,16 @@ MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce 535 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -16026,16 +17065,16 @@ MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce 562 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -16045,16 +17084,16 @@ MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce 563 this -682376643 +775931202 1 this.begins -854507466 +22069592 1 this.begins[..] [1 100 10] 1 this.ends -1316061703 +1160003871 1 this.ends[..] [1 100 10] @@ -16154,530 +17193,60 @@ i MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -569 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -570 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -570 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -571 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -571 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -572 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -572 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -573 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -573 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -574 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -574 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -575 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -575 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -563 -this -682376643 -1 -this.begins -854507466 -1 -this.begins[..] -[1 100 10] -1 -this.ends -1316061703 -1 -this.ends[..] -[1 100 10] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -576 -this -682376643 -1 -this.begins -854507466 -1 -this.begins[..] -[1 100 10] -1 -this.ends -1316061703 -1 -this.ends[..] -[1 100 10] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -577 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -577 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -578 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -578 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -579 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -579 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -580 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -580 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -581 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -581 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -582 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -582 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -583 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -583 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -584 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -584 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -585 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -585 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -586 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -586 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -587 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -587 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -588 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -588 -i -10 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -576 -this -682376643 -1 -this.begins -854507466 -1 -this.begins[..] -[1 100 10] -1 -this.ends -1316061703 -1 -this.ends[..] -[1 100 10] -1 - -MapQuick1.StreetNumberSet.max():::EXIT230 -this_invocation_nonce -562 -this -682376643 -1 -this.begins -854507466 -1 -this.begins[..] -[1 100 10] -1 -this.ends -1316061703 -1 -this.ends[..] -[1 100 10] -1 -return -100 -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -589 -this -1122805102 -1 -this.begins -1391942103 -1 -this.begins[..] -[857] -1 -this.ends -2092769598 -1 -this.ends[..] -[859] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -590 -i -857 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -590 +569 i -857 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -591 +570 i -859 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -591 +570 i -859 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -589 -this -1122805102 -1 -this.begins -1391942103 -1 -this.begins[..] -[857] -1 -this.ends -2092769598 -1 -this.ends[..] -[859] +571 +i +100 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -499 -this -1122805102 -1 -this.begins -1391942103 -1 -this.begins[..] -[857] -1 -this.ends -2092769598 -1 -this.ends[..] -[859] -1 -other -682376643 -1 -other.begins -854507466 -1 -other.begins[..] -[1 100 10] -1 -other.ends -1316061703 -1 -other.ends[..] -[1 100 10] +571 +i +100 1 return -false -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -592 -numbers -490150701 -1 -numbers.toString -"690-692" +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -593 +572 i -690 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -593 +572 i -690 +100 1 return 0 @@ -16685,52 +17254,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -594 +573 i -692 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -594 +573 i -692 +10 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -595 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -596 +574 i -690 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -596 +574 i -690 +10 1 return 0 @@ -16738,16 +17288,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -597 +575 i -692 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -597 +575 i -692 +10 1 return 0 @@ -16755,154 +17305,139 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -595 +563 this -1413246829 +775931202 1 this.begins -334203599 +22069592 1 this.begins[..] -[690] +[1 100 10] 1 this.ends -1372082959 +1160003871 1 this.ends[..] -[692] +[1 100 10] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -592 +576 this -1413246829 +775931202 1 this.begins -334203599 +22069592 1 this.begins[..] -[690] +[1 100 10] 1 this.ends -1372082959 +1160003871 1 this.ends[..] -[692] +[1 100 10] 1 -numbers -490150701 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +577 +i 1 -numbers.toString -"690-692" 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -598 -this -1413246829 +577 +i 1 -this.begins -334203599 1 -this.begins[..] -[690] +return 1 -this.ends -1372082959 1 -this.ends[..] -[692] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +578 +i 1 -n -0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -599 -this -1413246829 -1 -this.begins -334203599 +578 +i 1 -this.begins[..] -[690] 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -600 +579 i -690 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -600 +579 i -690 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -601 +580 i -692 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -601 +580 i -692 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -599 -this -1413246829 +581 +i 1 -this.begins -334203599 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +581 +i 1 -this.ends -1372082959 1 -this.ends[..] -[692] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -602 +582 i -0 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -602 +582 i -0 +10 1 return 0 @@ -16910,52 +17445,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -603 +583 i -690 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -603 +583 i -690 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -604 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -605 +584 i -690 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -605 +584 i -690 +100 1 return 0 @@ -16963,118 +17479,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -606 +585 i -692 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -606 +585 i -692 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -604 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] +586 +i +10 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -598 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 -n -0 +586 +i +10 1 return -false -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER -this_invocation_nonce -607 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 -n 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -608 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -609 +587 i -690 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -609 +587 i -690 +10 1 return 0 @@ -17082,16 +17530,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -610 +588 i -692 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -610 +588 i -692 +10 1 return 0 @@ -17099,177 +17547,174 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -608 +576 this -1413246829 +775931202 1 this.begins -334203599 +22069592 1 this.begins[..] -[690] +[1 100 10] 1 this.ends -1372082959 +1160003871 1 this.ends[..] -[692] +[1 100 10] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -611 -i -0 +562 +this +775931202 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -611 -i -0 +this.begins +22069592 1 -return -0 +this.begins[..] +[1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -612 -i -690 +this.ends +1160003871 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -612 -i -690 +this.ends[..] +[1 100 10] 1 return -0 +100 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -613 +589 this -1413246829 +770189387 1 this.begins -334203599 +963522361 1 this.begins[..] -[690] +[857] 1 this.ends -1372082959 +175408781 1 this.ends[..] -[692] +[859] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -614 +590 i -690 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -614 +590 i -690 +857 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -615 +591 i -692 +859 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -615 +591 i -692 +859 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -613 +589 this -1413246829 +770189387 1 this.begins -334203599 +963522361 1 this.begins[..] -[690] +[857] 1 this.ends -1372082959 +175408781 1 this.ends[..] -[692] +[859] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 this_invocation_nonce -616 +499 this -1413246829 +770189387 1 this.begins -334203599 +963522361 1 this.begins[..] -[690] +[857] 1 this.ends -1372082959 +175408781 1 this.ends[..] -[692] +[859] 1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -617 -this -1413246829 +other +775931202 1 -this.begins -334203599 +other.begins +22069592 1 -this.begins[..] -[690] +other.begins[..] +[1 100 10] 1 -this.ends -1372082959 +other.ends +1160003871 1 -this.ends[..] -[692] +other.ends[..] +[1 100 10] +1 +return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +592 +numbers +1075738627 +1 +numbers.toString +"690-692" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -618 +593 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -618 +593 i 690 1 @@ -17279,14 +17724,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -619 +594 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -619 +594 i 692 1 @@ -17294,39 +17739,20 @@ return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -617 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -620 +595 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17334,14 +17760,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -621 +596 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -621 +596 i 690 1 @@ -17351,14 +17777,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -622 +597 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -622 +597 i 692 1 @@ -17368,106 +17794,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -620 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -616 +595 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -return -2 -1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -607 +592 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -n -0 +numbers +1075738627 1 -return -0 +numbers.toString +"690-692" 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -623 +598 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -857 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -624 +599 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17475,14 +17879,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -625 +600 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -625 +600 i 690 1 @@ -17492,14 +17896,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -626 +601 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -626 +601 i 692 1 @@ -17509,18 +17913,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -624 +599 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17528,31 +17932,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -627 +602 i -857 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -627 +602 i -857 +0 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -628 +603 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -628 +603 i 690 1 @@ -17562,18 +17966,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -629 +604 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17581,14 +17985,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -630 +605 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -630 +605 i 690 1 @@ -17598,14 +18002,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -631 +606 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -631 +606 i 692 1 @@ -17615,18 +18019,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -629 +604 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17634,24 +18038,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -623 +598 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -857 +0 1 return false @@ -17659,40 +18063,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -632 +607 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -857 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -633 +608 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17700,14 +18104,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -634 +609 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -634 +609 i 690 1 @@ -17717,14 +18121,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -635 +610 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -635 +610 i 692 1 @@ -17734,18 +18138,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -633 +608 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17753,31 +18157,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -636 +611 i -857 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -636 +611 i -857 +0 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -637 +612 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -637 +612 i 690 1 @@ -17787,18 +18191,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -638 +613 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17806,14 +18210,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -639 +614 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -639 +614 i 690 1 @@ -17823,14 +18227,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -640 +615 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -640 +615 i 692 1 @@ -17840,18 +18244,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -638 +613 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17859,18 +18263,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -641 +616 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17878,18 +18282,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -642 +617 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17897,14 +18301,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -643 +618 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -643 +618 i 690 1 @@ -17914,14 +18318,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -644 +619 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -644 +619 i 692 1 @@ -17931,18 +18335,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -642 +617 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17950,18 +18354,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -645 +620 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -17969,14 +18373,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -646 +621 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -646 +621 i 690 1 @@ -17986,14 +18390,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -647 +622 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -647 +622 i 692 1 @@ -18003,18 +18407,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -645 +620 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18022,18 +18426,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -641 +616 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18044,65 +18448,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -632 +607 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -857 +0 1 return -2 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -648 +623 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -690 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -649 +624 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18110,14 +18514,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -650 +625 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -650 +625 i 690 1 @@ -18127,14 +18531,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -651 +626 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -651 +626 i 692 1 @@ -18144,18 +18548,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -649 +624 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18163,31 +18567,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -652 +627 i -690 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -652 +627 i -690 +857 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -653 +628 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -653 +628 i 690 1 @@ -18197,18 +18601,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -654 +629 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18216,14 +18620,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -655 +630 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -655 +630 i 690 1 @@ -18233,14 +18637,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -656 +631 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -656 +631 i 692 1 @@ -18250,84 +18654,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -654 +629 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -648 +623 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -690 +857 1 return -true +false 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -657 +632 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -690 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -658 +633 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18335,14 +18739,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -659 +634 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -659 +634 i 690 1 @@ -18352,14 +18756,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -660 +635 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -660 +635 i 692 1 @@ -18369,18 +18773,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -658 +633 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18388,31 +18792,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -661 +636 i -690 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -661 +636 i -690 +857 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -662 +637 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -662 +637 i 690 1 @@ -18422,18 +18826,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -663 +638 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18441,14 +18845,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -664 +639 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -664 +639 i 690 1 @@ -18458,14 +18862,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -665 +640 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -665 +640 i 692 1 @@ -18475,18 +18879,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -663 +638 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18494,18 +18898,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -666 +641 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18513,18 +18917,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -667 +642 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18532,14 +18936,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -668 +643 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -668 +643 i 690 1 @@ -18549,14 +18953,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -669 +644 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -669 +644 i 692 1 @@ -18566,18 +18970,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -667 +642 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18585,18 +18989,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -670 +645 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18604,14 +19008,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -671 +646 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -671 +646 i 690 1 @@ -18621,14 +19025,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -672 +647 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -672 +647 i 692 1 @@ -18638,18 +19042,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -670 +645 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18657,18 +19061,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -666 +641 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18679,65 +19083,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -657 +632 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -690 +857 1 return -0 +2 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -673 +648 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -523 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -674 +649 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18745,14 +19149,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -675 +650 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -675 +650 i 690 1 @@ -18762,14 +19166,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -676 +651 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -676 +651 i 692 1 @@ -18779,18 +19183,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -674 +649 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18798,31 +19202,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -677 +652 i -523 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -677 +652 i -523 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -678 +653 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -678 +653 i 690 1 @@ -18832,18 +19236,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -679 +654 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18851,14 +19255,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -680 +655 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -680 +655 i 690 1 @@ -18868,14 +19272,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -681 +656 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -681 +656 i 692 1 @@ -18885,84 +19289,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -679 +654 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -673 +648 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -523 +690 1 return -false +true 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -682 +657 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -523 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -683 +658 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -18970,14 +19374,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -684 +659 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -684 +659 i 690 1 @@ -18987,14 +19391,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -685 +660 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -685 +660 i 692 1 @@ -19004,18 +19408,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -683 +658 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19023,31 +19427,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -686 +661 i -523 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -686 +661 i -523 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -687 +662 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -687 +662 i 690 1 @@ -19057,18 +19461,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -688 +663 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19076,14 +19480,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -689 +664 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -689 +664 i 690 1 @@ -19093,14 +19497,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -690 +665 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -690 +665 i 692 1 @@ -19110,18 +19514,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -688 +663 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19129,18 +19533,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -691 +666 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19148,18 +19552,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -692 +667 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19167,14 +19571,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -693 +668 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -693 +668 i 690 1 @@ -19184,14 +19588,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -694 +669 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -694 +669 i 692 1 @@ -19201,18 +19605,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -692 +667 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19220,18 +19624,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -695 +670 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19239,14 +19643,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -696 +671 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -696 +671 i 690 1 @@ -19256,14 +19660,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -697 +672 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -697 +672 i 692 1 @@ -19273,18 +19677,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -695 +670 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19292,18 +19696,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -691 +666 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19314,24 +19718,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -682 +657 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -523 +690 1 return 0 @@ -19339,40 +19743,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -698 +673 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -356 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -699 +674 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19380,14 +19784,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -700 +675 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -700 +675 i 690 1 @@ -19397,14 +19801,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -701 +676 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -701 +676 i 692 1 @@ -19414,18 +19818,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -699 +674 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19433,31 +19837,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -702 +677 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -702 +677 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -703 +678 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -703 +678 i 690 1 @@ -19467,18 +19871,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -704 +679 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19486,14 +19890,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -705 +680 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -705 +680 i 690 1 @@ -19503,14 +19907,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -706 +681 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -706 +681 i 692 1 @@ -19520,18 +19924,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -704 +679 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19539,24 +19943,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -698 +673 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -356 +523 1 return false @@ -19564,40 +19968,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -707 +682 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -356 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -708 +683 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19605,14 +20009,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -709 +684 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -709 +684 i 690 1 @@ -19622,14 +20026,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -710 +685 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -710 +685 i 692 1 @@ -19639,18 +20043,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -708 +683 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19658,31 +20062,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -711 +686 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -711 +686 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -712 +687 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -712 +687 i 690 1 @@ -19692,18 +20096,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -713 +688 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19711,14 +20115,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -714 +689 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -714 +689 i 690 1 @@ -19728,14 +20132,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -715 +690 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -715 +690 i 692 1 @@ -19745,18 +20149,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -713 +688 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19764,18 +20168,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -716 +691 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19783,18 +20187,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -717 +692 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19802,14 +20206,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -718 +693 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -718 +693 i 690 1 @@ -19819,14 +20223,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -719 +694 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -719 +694 i 692 1 @@ -19836,18 +20240,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -717 +692 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19855,18 +20259,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -720 +695 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19874,14 +20278,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -721 +696 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -721 +696 i 690 1 @@ -19891,14 +20295,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -722 +697 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -722 +697 i 692 1 @@ -19908,18 +20312,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -720 +695 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19927,18 +20331,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -716 +691 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -19949,24 +20353,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -707 +682 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -356 +523 1 return 0 @@ -19974,40 +20378,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -723 +698 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -189 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -724 +699 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20015,14 +20419,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -725 +700 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -725 +700 i 690 1 @@ -20032,14 +20436,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -726 +701 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -726 +701 i 692 1 @@ -20049,18 +20453,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -724 +699 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20068,31 +20472,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -727 +702 i -189 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -727 +702 i -189 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -728 +703 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -728 +703 i 690 1 @@ -20102,18 +20506,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -729 +704 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20121,14 +20525,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -730 +705 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -730 +705 i 690 1 @@ -20138,14 +20542,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -731 +706 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -731 +706 i 692 1 @@ -20155,18 +20559,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -729 +704 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20174,24 +20578,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -723 +698 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -189 +356 1 return false @@ -20199,40 +20603,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -732 +707 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -189 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -733 +708 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20240,14 +20644,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -734 +709 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -734 +709 i 690 1 @@ -20257,14 +20661,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -735 +710 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -735 +710 i 692 1 @@ -20274,18 +20678,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -733 +708 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20293,31 +20697,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -736 +711 i -189 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -736 +711 i -189 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -737 +712 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -737 +712 i 690 1 @@ -20327,18 +20731,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -738 +713 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20346,14 +20750,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -739 +714 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -739 +714 i 690 1 @@ -20363,14 +20767,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -740 +715 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -740 +715 i 692 1 @@ -20380,18 +20784,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -738 +713 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20399,18 +20803,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -741 +716 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20418,18 +20822,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -742 +717 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20437,14 +20841,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -743 +718 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -743 +718 i 690 1 @@ -20454,14 +20858,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -744 +719 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -744 +719 i 692 1 @@ -20471,18 +20875,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -742 +717 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20490,18 +20894,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -745 +720 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20509,14 +20913,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -746 +721 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -746 +721 i 690 1 @@ -20526,14 +20930,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -747 +722 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -747 +722 i 692 1 @@ -20543,18 +20947,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -745 +720 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20562,18 +20966,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -741 +716 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20584,24 +20988,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -732 +707 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -189 +356 1 return 0 @@ -20609,40 +21013,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -748 +723 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -22 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -749 +724 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20650,14 +21054,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -750 +725 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -750 +725 i 690 1 @@ -20667,14 +21071,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -751 +726 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -751 +726 i 692 1 @@ -20684,18 +21088,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -749 +724 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20703,31 +21107,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -752 +727 i -22 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -752 +727 i -22 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -753 +728 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -753 +728 i 690 1 @@ -20737,18 +21141,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -754 +729 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20756,14 +21160,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -755 +730 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -755 +730 i 690 1 @@ -20773,14 +21177,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -756 +731 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -756 +731 i 692 1 @@ -20790,18 +21194,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -754 +729 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20809,24 +21213,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -748 +723 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -22 +189 1 return false @@ -20834,40 +21238,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -757 +732 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -22 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -758 +733 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20875,14 +21279,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -759 +734 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -759 +734 i 690 1 @@ -20892,14 +21296,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -760 +735 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -760 +735 i 692 1 @@ -20909,18 +21313,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -758 +733 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20928,31 +21332,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -761 +736 i -22 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -761 +736 i -22 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -762 +737 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -762 +737 i 690 1 @@ -20962,18 +21366,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -763 +738 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -20981,14 +21385,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -764 +739 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -764 +739 i 690 1 @@ -20998,14 +21402,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -765 +740 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -765 +740 i 692 1 @@ -21015,18 +21419,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -763 +738 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21034,18 +21438,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -766 +741 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21053,18 +21457,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -767 +742 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21072,14 +21476,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -768 +743 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -768 +743 i 690 1 @@ -21089,14 +21493,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -769 +744 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -769 +744 i 692 1 @@ -21106,18 +21510,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -767 +742 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21125,18 +21529,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -770 +745 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21144,14 +21548,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -771 +746 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -771 +746 i 690 1 @@ -21161,14 +21565,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -772 +747 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -772 +747 i 692 1 @@ -21178,18 +21582,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -770 +745 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21197,18 +21601,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -766 +741 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21219,24 +21623,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -757 +732 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -22 +189 1 return 0 @@ -21244,40 +21648,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -773 +748 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -879 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -774 +749 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21285,14 +21689,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -775 +750 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -775 +750 i 690 1 @@ -21302,14 +21706,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -776 +751 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -776 +751 i 692 1 @@ -21319,18 +21723,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -774 +749 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21338,31 +21742,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -777 +752 i -879 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -777 +752 i -879 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -778 +753 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -778 +753 i 690 1 @@ -21372,18 +21776,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -779 +754 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21391,14 +21795,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -780 +755 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -780 +755 i 690 1 @@ -21408,14 +21812,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -781 +756 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -781 +756 i 692 1 @@ -21425,18 +21829,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -779 +754 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21444,24 +21848,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -773 +748 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -879 +22 1 return false @@ -21469,40 +21873,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -782 +757 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -879 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -783 +758 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21510,14 +21914,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -784 +759 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -784 +759 i 690 1 @@ -21527,14 +21931,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -785 +760 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -785 +760 i 692 1 @@ -21544,18 +21948,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -783 +758 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21563,31 +21967,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -786 +761 i -879 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -786 +761 i -879 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -787 +762 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -787 +762 i 690 1 @@ -21597,18 +22001,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -788 +763 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21616,14 +22020,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -789 +764 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -789 +764 i 690 1 @@ -21633,14 +22037,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -790 +765 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -790 +765 i 692 1 @@ -21650,18 +22054,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -788 +763 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21669,18 +22073,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -791 +766 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21688,18 +22092,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -792 +767 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21707,14 +22111,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -793 +768 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -793 +768 i 690 1 @@ -21724,14 +22128,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -794 +769 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -794 +769 i 692 1 @@ -21741,18 +22145,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -792 +767 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21760,18 +22164,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -795 +770 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21779,14 +22183,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -796 +771 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -796 +771 i 690 1 @@ -21796,14 +22200,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -797 +772 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -797 +772 i 692 1 @@ -21813,18 +22217,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -795 +770 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21832,18 +22236,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -791 +766 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21854,65 +22258,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -782 +757 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -879 +22 1 return -2 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -798 +773 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -712 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -799 +774 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21920,14 +22324,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -800 +775 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -800 +775 i 690 1 @@ -21937,14 +22341,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -801 +776 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -801 +776 i 692 1 @@ -21954,18 +22358,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -799 +774 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -21973,31 +22377,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -802 +777 i -712 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -802 +777 i -712 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -803 +778 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -803 +778 i 690 1 @@ -22007,18 +22411,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -804 +779 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22026,14 +22430,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -805 +780 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -805 +780 i 690 1 @@ -22043,14 +22447,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -806 +781 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -806 +781 i 692 1 @@ -22060,18 +22464,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -804 +779 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22079,24 +22483,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -798 +773 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -712 +879 1 return false @@ -22104,40 +22508,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -807 +782 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -712 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -808 +783 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22145,14 +22549,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -809 +784 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -809 +784 i 690 1 @@ -22162,14 +22566,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -810 +785 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -810 +785 i 692 1 @@ -22179,18 +22583,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -808 +783 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22198,31 +22602,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -811 +786 i -712 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -811 +786 i -712 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -812 +787 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -812 +787 i 690 1 @@ -22232,18 +22636,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -813 +788 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22251,14 +22655,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -814 +789 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -814 +789 i 690 1 @@ -22268,14 +22672,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -815 +790 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -815 +790 i 692 1 @@ -22285,18 +22689,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -813 +788 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22304,18 +22708,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -816 +791 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22323,18 +22727,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -817 +792 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22342,14 +22746,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -818 +793 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -818 +793 i 690 1 @@ -22359,14 +22763,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -819 +794 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -819 +794 i 692 1 @@ -22376,18 +22780,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -817 +792 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22395,18 +22799,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -820 +795 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22414,14 +22818,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -821 +796 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -821 +796 i 690 1 @@ -22431,14 +22835,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -822 +797 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -822 +797 i 692 1 @@ -22448,18 +22852,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -820 +795 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22467,18 +22871,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -816 +791 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22489,24 +22893,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -807 +782 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -712 +879 1 return 2 @@ -22514,40 +22918,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -823 +798 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -545 +712 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -824 +799 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22555,14 +22959,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -825 +800 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -825 +800 i 690 1 @@ -22572,14 +22976,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -826 +801 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -826 +801 i 692 1 @@ -22589,18 +22993,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -824 +799 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22608,31 +23012,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -827 +802 i -545 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -827 +802 i -545 +712 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -828 +803 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -828 +803 i 690 1 @@ -22642,18 +23046,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -829 +804 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22661,14 +23065,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -830 +805 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -830 +805 i 690 1 @@ -22678,14 +23082,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -831 +806 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -831 +806 i 692 1 @@ -22695,18 +23099,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -829 +804 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22714,24 +23118,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -823 +798 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -545 +712 1 return false @@ -22739,40 +23143,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -832 +807 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -545 +712 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -833 +808 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22780,14 +23184,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -834 +809 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -834 +809 i 690 1 @@ -22797,14 +23201,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -835 +810 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -835 +810 i 692 1 @@ -22814,18 +23218,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -833 +808 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22833,31 +23237,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -836 +811 i -545 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -836 +811 i -545 +712 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -837 +812 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -837 +812 i 690 1 @@ -22867,18 +23271,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -838 +813 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22886,14 +23290,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -839 +814 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -839 +814 i 690 1 @@ -22903,14 +23307,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -840 +815 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -840 +815 i 692 1 @@ -22920,18 +23324,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -838 +813 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22939,18 +23343,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -841 +816 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22958,18 +23362,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -842 +817 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -22977,14 +23381,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -843 +818 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -843 +818 i 690 1 @@ -22994,14 +23398,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -844 +819 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -844 +819 i 692 1 @@ -23011,18 +23415,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -842 +817 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23030,18 +23434,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -845 +820 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23049,14 +23453,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -846 +821 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -846 +821 i 690 1 @@ -23066,14 +23470,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -847 +822 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -847 +822 i 692 1 @@ -23083,18 +23487,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -845 +820 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23102,18 +23506,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -841 +816 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23124,62 +23528,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -832 +807 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 n -545 +712 1 return -0 +2 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -848 +823 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -849 +824 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23187,14 +23594,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -850 +825 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -850 +825 i 690 1 @@ -23204,14 +23611,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -851 +826 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -851 +826 i 692 1 @@ -23221,37 +23628,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -849 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -852 +824 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23259,112 +23647,52 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -853 +827 i -690 +545 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -853 +827 i -690 +545 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -854 +828 i -692 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -854 +828 i -692 +690 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -852 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -848 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 -return -2 -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -855 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -856 +829 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23372,14 +23700,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -857 +830 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -857 +830 i 690 1 @@ -23389,14 +23717,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -858 +831 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -858 +831 i 692 1 @@ -23406,78 +23734,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -856 +829 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -855 +823 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +n +545 +1 return false 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -859 +832 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -860 +833 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23485,14 +23819,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -861 +834 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -861 +834 i 690 1 @@ -23502,14 +23836,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -862 +835 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -862 +835 i 692 1 @@ -23519,37 +23853,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -860 +833 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +836 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +836 +i +545 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +837 +i +690 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +837 +i +690 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -863 +838 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23557,14 +23925,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -864 +839 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -864 +839 i 690 1 @@ -23574,14 +23942,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -865 +840 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -865 +840 i 692 1 @@ -23591,59 +23959,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -863 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.min():::EXIT210 -this_invocation_nonce -859 +838 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -return -690 -1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -866 +841 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23651,18 +23997,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -867 +842 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23670,14 +24016,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -868 +843 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -868 +843 i 690 1 @@ -23687,14 +24033,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -869 +844 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -869 +844 i 692 1 @@ -23704,18 +24050,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -867 +842 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23723,18 +24069,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -870 +845 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -23742,14 +24088,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -871 +846 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -871 +846 i 690 1 @@ -23759,14 +24105,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -872 +847 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -872 +847 i 692 1 @@ -23776,553 +24122,382 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -870 +845 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -866 +841 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 return -692 +2 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -873 +832 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -o -null +n +545 +1 +return +0 1 -o.getClass().getName() -nonsensical -2 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -873 +848 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -o -null -1 -o.getClass().getName() -nonsensical -2 -return -false -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -874 +849 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -null -1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -874 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] +850 +i +690 1 -other -null + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +850 +i +690 1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 return -false +0 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -875 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] +851 +i +692 1 -o -1413246829 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +851 +i +692 1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" +return +0 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -876 +849 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1413246829 -1 -other.begins -334203599 -1 -other.begins[..] -[690] -1 -other.ends -1372082959 -1 -other.ends[..] -[692] -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -876 +852 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1413246829 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +853 +i +690 1 -other.begins -334203599 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +853 +i +690 1 -other.begins[..] -[690] +return +0 1 -other.ends -1372082959 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +854 +i +692 1 -other.ends[..] -[692] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +854 +i +692 1 return -true +0 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -875 +852 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -o -1413246829 -1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" -1 -return -true -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -877 +848 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1413246829 -1 -other.begins -334203599 -1 -other.begins[..] -[690] -1 -other.ends -1372082959 -1 -other.ends[..] -[692] +return +2 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -877 +855 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1413246829 -1 -other.begins -334203599 -1 -other.begins[..] -[690] -1 -other.ends -1372082959 -1 -other.ends[..] -[692] -1 -return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -878 -numbers -422392391 -1 -numbers.toString -"1" -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -879 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -879 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -880 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -880 -i -1 -1 -return -1 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -881 +856 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -882 +857 i -1 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -882 +857 i -1 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -883 +858 i -1 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -883 +858 i -1 +692 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -881 -this -1946403944 -1 -this.begins -1131645570 -1 -this.begins[..] -[1] -1 -this.ends -209833425 -1 -this.ends[..] -[1] -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 -this_invocation_nonce -878 +856 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] -1 -numbers -422392391 -1 -numbers.toString -"1" +[692] 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -884 +855 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1946403944 -1 -other.begins -1131645570 -1 -other.begins[..] -[1] -1 -other.ends -209833425 -1 -other.ends[..] -[1] +return +false 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -885 +859 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24330,18 +24505,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -886 +860 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24349,14 +24524,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -887 +861 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -887 +861 i 690 1 @@ -24366,14 +24541,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -888 +862 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -888 +862 i 692 1 @@ -24383,18 +24558,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -886 +860 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24402,18 +24577,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -889 +863 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24421,14 +24596,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -890 +864 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -890 +864 i 690 1 @@ -24438,14 +24613,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -891 +865 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -891 +865 i 692 1 @@ -24455,18 +24630,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -889 +863 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24474,18 +24649,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -885 +859 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24496,18 +24671,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -892 +866 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24515,18 +24690,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -893 +867 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24534,14 +24709,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -894 +868 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -894 +868 i 690 1 @@ -24551,14 +24726,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -895 +869 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -895 +869 i 692 1 @@ -24568,18 +24743,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -893 +867 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24587,18 +24762,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -896 +870 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24606,14 +24781,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -897 +871 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -897 +871 i 690 1 @@ -24623,14 +24798,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -898 +872 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -898 +872 i 692 1 @@ -24640,18 +24815,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -896 +870 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24659,18 +24834,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -892 +866 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -24679,248 +24854,345 @@ return 692 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -899 +873 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] +1 +o +null 1 +o.getClass().getName() +nonsensical +2 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -900 +873 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -901 -i +o +null 1 +o.getClass().getName() +nonsensical +2 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -901 -i +874 +this +282828951 1 +this.begins +394721749 1 -return +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 this_invocation_nonce -902 -i +874 +this +282828951 1 +this.begins +394721749 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -902 -i +this.begins[..] +[690] +1 +this.ends +1884122755 1 +this.ends[..] +[692] 1 -return +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 +return +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -900 +875 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] +1 +o +282828951 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -903 +876 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -904 -i +other +282828951 +1 +other.begins +394721749 +1 +other.begins[..] +[690] +1 +other.ends +1884122755 1 +other.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -904 -i +876 +this +282828951 1 +this.begins +394721749 1 -return +this.begins[..] +[690] 1 +this.ends +1884122755 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -905 -i +this.ends[..] +[692] +1 +other +282828951 +1 +other.begins +394721749 1 +other.begins[..] +[690] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -905 -i +other.ends +1884122755 1 +other.ends[..] +[692] 1 return -1 +true 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -903 +875 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] +1 +o +282828951 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" +1 +return +true 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -899 +877 this -1946403944 +282828951 1 this.begins -1131645570 +394721749 1 this.begins[..] -[1] +[690] 1 this.ends -209833425 +1884122755 1 this.ends[..] -[1] +[692] 1 -return +other +282828951 1 +other.begins +394721749 +1 +other.begins[..] +[690] +1 +other.ends +1884122755 +1 +other.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -884 +877 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 other -1946403944 +282828951 1 other.begins -1131645570 +394721749 1 other.begins[..] -[1] +[690] 1 other.ends -209833425 +1884122755 1 other.ends[..] -[1] +[692] 1 return -false +true 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -906 +878 numbers -863125040 +315138752 1 numbers.toString -"1,7" +"1" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -907 +879 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -907 +879 i 1 1 @@ -24930,50 +25202,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -908 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -908 +880 i 1 1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -909 -i -7 -1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -909 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -910 +880 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -910 -i -7 1 return 1 @@ -24981,67 +25219,33 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -911 +881 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -912 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -912 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -913 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -913 -i -1 -1 -return -1 +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -914 +882 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -914 +882 i 1 1 @@ -25051,50 +25255,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -915 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -915 +883 i -7 -1 -return -1 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -916 -i -7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -916 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -917 +883 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -917 -i -7 1 return 1 @@ -25102,96 +25272,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -911 +881 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -906 +878 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] +[1] 1 numbers -863125040 +315138752 1 numbers.toString -"1,7" +"1" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -918 +884 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 other -532854629 +1134612201 1 other.begins -1971851377 +246550802 1 other.begins[..] -[1 7] +[1] 1 other.ends -712025048 +786041152 1 other.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -919 +885 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25199,18 +25369,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -920 +886 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25218,14 +25388,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -921 +887 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -921 +887 i 690 1 @@ -25235,14 +25405,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -922 +888 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -922 +888 i 692 1 @@ -25252,18 +25422,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -920 +886 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25271,18 +25441,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -923 +889 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25290,14 +25460,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -924 +890 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -924 +890 i 690 1 @@ -25307,14 +25477,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -925 +891 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -925 +891 i 692 1 @@ -25324,18 +25494,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -923 +889 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25343,18 +25513,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -919 +885 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25365,18 +25535,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -926 +892 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25384,18 +25554,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -927 +893 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25403,14 +25573,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -928 +894 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -928 +894 i 690 1 @@ -25420,14 +25590,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -929 +895 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -929 +895 i 692 1 @@ -25437,18 +25607,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -927 +893 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25456,18 +25626,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -930 +896 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25475,14 +25645,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -931 +897 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -931 +897 i 690 1 @@ -25492,14 +25662,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -932 +898 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -932 +898 i 692 1 @@ -25509,18 +25679,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -930 +896 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25528,18 +25698,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -926 +892 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -25550,86 +25720,52 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -933 +899 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -934 +900 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -935 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -935 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -936 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -936 -i -1 -1 -return -1 +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -937 +901 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -937 +901 i 1 1 @@ -25639,50 +25775,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -938 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -938 +902 i -7 -1 -return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -939 -i -7 -1 - MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -939 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -940 +902 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -940 -i -7 1 return 1 @@ -25690,122 +25792,54 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -934 +900 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -941 +903 this -532854629 +1134612201 1 this.begins -1971851377 -1 -this.begins[..] -[1 7] -1 -this.ends -712025048 -1 -this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -942 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -942 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -943 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -943 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -944 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -944 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -945 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -945 -i -7 +246550802 1 -return +this.begins[..] +[1] +1 +this.ends +786041152 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -946 +904 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -946 +904 i -7 +1 1 return 1 @@ -25813,16 +25847,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -947 +905 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -947 +905 i -7 +1 1 return 1 @@ -25830,40 +25864,40 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -941 +903 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -933 +899 this -532854629 +1134612201 1 this.begins -1971851377 +246550802 1 this.begins[..] -[1 7] +[1] 1 this.ends -712025048 +786041152 1 this.ends[..] -[1 7] +[1] 1 return 1 @@ -25871,36 +25905,36 @@ return MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -918 +884 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 other -532854629 +1134612201 1 other.begins -1971851377 +246550802 1 other.begins[..] -[1 7] +[1] 1 other.ends -712025048 +786041152 1 other.ends[..] -[1 7] +[1] 1 return false @@ -25908,24 +25942,24 @@ false MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -948 +906 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -949 +907 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -949 +907 i 1 1 @@ -25935,14 +25969,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -950 +908 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -950 +908 i 1 1 @@ -25952,14 +25986,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -951 +909 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -951 +909 i 7 1 @@ -25969,14 +26003,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -952 +910 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -952 +910 i 7 1 @@ -25984,69 +26018,35 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -953 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -953 -i -11 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -954 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -954 -i -11 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -955 +911 this -681384962 +897074030 1 this.begins -586084331 +1885996206 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -399534175 +1859039536 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -956 +912 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -956 +912 i 1 1 @@ -26056,14 +26056,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -957 +913 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -957 +913 i 1 1 @@ -26073,14 +26073,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -958 +914 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -958 +914 i 1 1 @@ -26090,14 +26090,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -959 +915 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -959 +915 i 7 1 @@ -26107,16 +26107,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -960 +916 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -960 +916 i -1 +7 1 return 1 @@ -26124,215 +26124,298 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -961 +917 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -961 +917 i -11 +7 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -962 -i -7 +911 +this +897074030 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -962 -i -7 +this.begins +1885996206 1 -return +this.begins[..] +[1 7] 1 +this.ends +1859039536 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -963 -i -7 +this.ends[..] +[1 7] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -963 -i -7 +906 +this +897074030 1 -return +this.begins +1885996206 +1 +this.begins[..] +[1 7] 1 +this.ends +1859039536 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -964 -i -7 +this.ends[..] +[1 7] +1 +numbers +1337344609 +1 +numbers.toString +"1,7" 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -964 -i -7 +918 +this +282828951 1 -return +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 +other +897074030 +1 +other.begins +1885996206 +1 +other.begins[..] +[1 7] +1 +other.ends +1859039536 1 +other.ends[..] +[1 7] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -965 -i -11 +919 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -965 -i -11 +920 +this +282828951 1 -return +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -966 +921 i -11 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -966 +921 i -11 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -967 +922 i -11 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -967 +922 i -11 +692 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -955 +920 this -681384962 +282828951 1 this.begins -586084331 +394721749 1 this.begins[..] -[1 7 11] +[690] 1 this.ends -399534175 +1884122755 1 this.ends[..] -[1 7 11] +[692] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -948 +923 this -681384962 +282828951 1 this.begins -586084331 +394721749 1 this.begins[..] -[1 7 11] +[690] 1 this.ends -399534175 +1884122755 1 this.ends[..] -[1 7 11] +[692] 1 -numbers -1485955886 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +924 +i +690 1 -numbers.toString -"1,7,11" + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +924 +i +690 +1 +return +0 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -968 +925 +i +692 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +925 +i +692 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +923 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -681384962 + +MapQuick1.StreetNumberSet.min():::EXIT210 +this_invocation_nonce +919 +this +282828951 1 -other.begins -586084331 +this.begins +394721749 1 -other.begins[..] -[1 7 11] +this.begins[..] +[690] 1 -other.ends -399534175 +this.ends +1884122755 1 -other.ends[..] -[1 7 11] +this.ends[..] +[692] +1 +return +690 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -969 +926 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -26340,18 +26423,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -970 +927 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -26359,14 +26442,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -971 +928 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -971 +928 i 690 1 @@ -26376,14 +26459,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -972 +929 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -972 +929 i 692 1 @@ -26393,18 +26476,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -970 +927 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -26412,18 +26495,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -973 +930 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -26431,14 +26514,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -974 +931 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -974 +931 i 690 1 @@ -26448,14 +26531,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -975 +932 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -975 +932 i 692 1 @@ -26465,278 +26548,250 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -973 +930 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -969 +926 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 return -690 +692 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -976 +933 this -1413246829 +897074030 1 this.begins -334203599 +1885996206 1 this.begins[..] -[690] +[1 7] 1 this.ends -1372082959 +1859039536 1 this.ends[..] -[692] +[1 7] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -977 +934 this -1413246829 +897074030 1 this.begins -334203599 +1885996206 1 this.begins[..] -[690] +[1 7] 1 this.ends -1372082959 +1859039536 1 this.ends[..] -[692] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -978 +935 i -690 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -978 +935 i -690 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -979 +936 i -692 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -979 +936 i -692 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -977 -this -1413246829 +937 +i 1 -this.begins -334203599 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +937 +i 1 -this.ends -1372082959 1 -this.ends[..] -[692] +return +1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -980 -this -1413246829 -1 -this.begins -334203599 +938 +i +7 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +938 +i +7 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -981 +939 i -690 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -981 +939 i -690 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -982 +940 i -692 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -982 +940 i -692 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -980 +934 this -1413246829 +897074030 1 this.begins -334203599 +1885996206 1 this.begins[..] -[690] +[1 7] 1 this.ends -1372082959 +1859039536 1 this.ends[..] -[692] +[1 7] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -976 +941 this -1413246829 +897074030 1 this.begins -334203599 +1885996206 1 this.begins[..] -[690] +[1 7] 1 this.ends -1372082959 +1859039536 1 this.ends[..] -[692] -1 -return -692 +[1 7] 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -983 -this -681384962 -1 -this.begins -586084331 -1 -this.begins[..] -[1 7 11] -1 -this.ends -399534175 +942 +i 1 -this.ends[..] -[1 7 11] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -984 -this -681384962 -1 -this.begins -586084331 +942 +i 1 -this.begins[..] -[1 7 11] 1 -this.ends -399534175 +return 1 -this.ends[..] -[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -985 +943 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -985 +943 i 1 1 @@ -26746,14 +26801,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -986 +944 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -986 +944 i 1 1 @@ -26763,16 +26818,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -987 +945 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -987 +945 i -1 +7 1 return 1 @@ -26780,14 +26835,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -988 +946 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -988 +946 i 7 1 @@ -26797,50 +26852,121 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -989 +947 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -989 +947 i -1 +7 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -990 -i -11 +941 +this +897074030 +1 +this.begins +1885996206 +1 +this.begins[..] +[1 7] +1 +this.ends +1859039536 +1 +this.ends[..] +[1 7] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -990 -i -11 +933 +this +897074030 +1 +this.begins +1885996206 +1 +this.begins[..] +[1 7] +1 +this.ends +1859039536 +1 +this.ends[..] +[1 7] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +918 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 +other +897074030 +1 +other.begins +1885996206 +1 +other.begins[..] +[1 7] +1 +other.ends +1859039536 +1 +other.ends[..] +[1 7] 1 return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +948 +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -991 +949 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -991 +949 i -7 +1 1 return 1 @@ -26848,16 +26974,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -992 +950 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -992 +950 i -7 +1 1 return 1 @@ -26865,14 +26991,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -993 +951 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -993 +951 i 7 1 @@ -26882,16 +27008,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -994 +952 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -994 +952 i -11 +7 1 return 1 @@ -26899,14 +27025,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -995 +953 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -995 +953 i 11 1 @@ -26916,14 +27042,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -996 +954 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -996 +954 i 11 1 @@ -26931,39 +27057,20 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -984 -this -681384962 -1 -this.begins -586084331 -1 -this.begins[..] -[1 7 11] -1 -this.ends -399534175 -1 -this.ends[..] -[1 7 11] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -997 +955 this -681384962 +278934944 1 this.begins -586084331 +1739876329 1 this.begins[..] [1 7 11] 1 this.ends -399534175 +1205555397 1 this.ends[..] [1 7 11] @@ -26971,14 +27078,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -998 +956 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -998 +956 i 1 1 @@ -26988,14 +27095,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -999 +957 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -999 +957 i 1 1 @@ -27005,14 +27112,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1000 +958 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1000 +958 i 1 1 @@ -27022,14 +27129,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1001 +959 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1001 +959 i 7 1 @@ -27039,14 +27146,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1002 +960 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1002 +960 i 1 1 @@ -27056,14 +27163,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1003 +961 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1003 +961 i 11 1 @@ -27073,14 +27180,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1004 +962 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1004 +962 i 7 1 @@ -27090,14 +27197,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1005 +963 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1005 +963 i 7 1 @@ -27107,14 +27214,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1006 +964 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1006 +964 i 7 1 @@ -27124,14 +27231,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1007 +965 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1007 +965 i 11 1 @@ -27141,14 +27248,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1008 +966 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1008 +966 i 11 1 @@ -27158,14 +27265,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1009 +967 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1009 +967 i 11 1 @@ -27175,130 +27282,115 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -997 +955 this -681384962 +278934944 1 this.begins -586084331 +1739876329 1 this.begins[..] [1 7 11] 1 this.ends -399534175 +1205555397 1 this.ends[..] [1 7 11] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -983 +948 this -681384962 +278934944 1 this.begins -586084331 +1739876329 1 this.begins[..] [1 7 11] 1 this.ends -399534175 +1205555397 1 this.ends[..] [1 7 11] 1 -return +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 968 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 other -681384962 +278934944 1 other.begins -586084331 +1739876329 1 other.begins[..] [1 7 11] 1 other.ends -399534175 +1205555397 1 other.ends[..] [1 7 11] 1 -return -false -1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1010 +969 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1413246829 -1 -other.begins -334203599 -1 -other.begins[..] -[690] -1 -other.ends -1372082959 -1 -other.ends[..] -[692] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1011 +970 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27306,14 +27398,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1012 +971 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1012 +971 i 690 1 @@ -27323,14 +27415,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1013 +972 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1013 +972 i 692 1 @@ -27340,37 +27432,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1011 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -1014 +970 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27378,18 +27451,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1015 +973 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27397,14 +27470,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1016 +974 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1016 +974 i 690 1 @@ -27414,14 +27487,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1017 +975 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1017 +975 i 692 1 @@ -27431,172 +27504,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1015 +973 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1014 +969 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 return -false -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -1018 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -1019 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1020 -i -690 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1020 -i 690 1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1021 -i -692 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1021 -i -692 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -1019 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 -this_invocation_nonce -1018 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 -return -false -1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1022 +976 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27604,18 +27564,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1023 +977 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27623,14 +27583,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1024 +978 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1024 +978 i 690 1 @@ -27640,14 +27600,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1025 +979 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1025 +979 i 692 1 @@ -27657,18 +27617,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1023 +977 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27676,18 +27636,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1026 +980 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -27695,14 +27655,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1027 +981 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1027 +981 i 690 1 @@ -27712,14 +27672,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1028 +982 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1028 +982 i 692 1 @@ -27729,636 +27689,655 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1026 +980 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1022 +976 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 return -690 +692 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1029 +983 this -1413246829 +278934944 1 this.begins -334203599 +1739876329 1 this.begins[..] -[690] +[1 7 11] 1 this.ends -1372082959 +1205555397 1 this.ends[..] -[692] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1030 +984 this -1413246829 +278934944 1 this.begins -334203599 +1739876329 1 this.begins[..] -[690] +[1 7 11] 1 this.ends -1372082959 +1205555397 1 this.ends[..] -[692] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1031 +985 i -690 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1031 +985 i -690 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1032 +986 i -692 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1032 +986 i -692 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1030 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 +987 +i 1 -this.ends[..] -[692] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1033 -this -1413246829 -1 -this.begins -334203599 +987 +i 1 -this.begins[..] -[690] 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1034 +988 i -690 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1034 +988 i -690 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1035 +989 i -692 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1035 +989 i -692 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1033 -this -1413246829 +990 +i +11 1 -this.begins -334203599 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +990 +i +11 1 -this.begins[..] -[690] +return 1 -this.ends -1372082959 1 -this.ends[..] -[692] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +991 +i +7 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1029 -this -1413246829 +991 +i +7 1 -this.begins -334203599 +return 1 -this.begins[..] -[690] 1 -this.ends -1372082959 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +992 +i +7 1 -this.ends[..] -[692] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +992 +i +7 1 return -692 +1 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1036 -this -1413246829 -1 -this.begins -334203599 +993 +i +7 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +993 +i +7 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1037 -this -1413246829 -1 -this.begins -334203599 +994 +i +11 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +994 +i +11 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1038 +995 i -690 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1038 +995 i -690 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1039 +996 i -692 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1039 +996 i -692 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1037 +984 this -1413246829 +278934944 1 this.begins -334203599 +1739876329 1 this.begins[..] -[690] +[1 7 11] 1 this.ends -1372082959 +1205555397 1 this.ends[..] -[692] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1040 +997 this -1413246829 +278934944 1 this.begins -334203599 +1739876329 1 this.begins[..] -[690] +[1 7 11] 1 this.ends -1372082959 +1205555397 1 this.ends[..] -[692] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1041 +998 i -690 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1041 +998 i -690 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1042 +999 i -692 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1042 +999 i -692 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1040 -this -1413246829 +1000 +i 1 -this.begins -334203599 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1000 +i 1 -this.ends -1372082959 1 -this.ends[..] -[692] +return +1 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1036 -this -1413246829 +1001 +i +7 1 -this.begins -334203599 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1001 +i +7 1 -this.begins[..] -[690] +return 1 -this.ends -1372082959 1 -this.ends[..] -[692] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1002 +i 1 -return -690 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1043 -this -1413246829 -1 -this.begins -334203599 +1002 +i 1 -this.begins[..] -[690] 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1044 -this -1413246829 -1 -this.begins -334203599 +1003 +i +11 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1003 +i +11 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1045 +1004 i -690 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1045 +1004 i -690 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1046 +1005 i -692 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1046 +1005 i -692 +7 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1044 -this -1413246829 -1 -this.begins -334203599 +1006 +i +7 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1006 +i +7 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1047 -this -1413246829 -1 -this.begins -334203599 +1007 +i +11 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1007 +i +11 1 -this.ends -1372082959 +return 1 -this.ends[..] -[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1048 +1008 i -690 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1048 +1008 i -690 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1049 +1009 i -692 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1049 +1009 i -692 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1047 +997 this -1413246829 +278934944 1 this.begins -334203599 +1739876329 1 this.begins[..] -[690] +[1 7 11] 1 this.ends -1372082959 +1205555397 1 this.ends[..] -[692] +[1 7 11] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1043 +983 +this +278934944 +1 +this.begins +1739876329 +1 +this.begins[..] +[1 7 11] +1 +this.ends +1205555397 +1 +this.ends[..] +[1 7 11] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +968 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +other +278934944 +1 +other.begins +1739876329 +1 +other.begins[..] +[1 7 11] +1 +other.ends +1205555397 +1 +other.ends[..] +[1 7 11] +1 return -692 +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1050 +1010 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -n -690 +other +282828951 +1 +other.begins +394721749 +1 +other.begins[..] +[690] +1 +other.ends +1884122755 +1 +other.ends[..] +[692] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1051 +1011 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -28366,14 +28345,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1052 +1012 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1052 +1012 i 690 1 @@ -28383,14 +28362,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1053 +1013 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1053 +1013 i 692 1 @@ -28400,71 +28379,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1051 +1011 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1054 -i -690 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1054 -i -690 +1014 +this +282828951 1 -return -0 +this.begins +394721749 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1055 -i -690 +this.begins[..] +[690] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1055 -i -690 +this.ends +1884122755 1 -return -0 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1056 +1015 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -28472,14 +28436,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1057 +1016 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1057 +1016 i 690 1 @@ -28489,14 +28453,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1058 +1017 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1058 +1017 i 692 1 @@ -28506,84 +28470,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1056 +1015 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1050 +1014 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -n -690 -1 return -true +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1059 +1018 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -n -690 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1060 +1019 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -28591,14 +28549,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1061 +1020 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1061 +1020 i 690 1 @@ -28608,14 +28566,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1062 +1021 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1062 +1021 i 692 1 @@ -28625,71 +28583,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1060 +1019 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1063 -i -690 +1018 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1063 -i -690 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 return -0 +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1064 -i -690 +1022 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1064 -i -690 +this.begins +394721749 1 -return -0 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1065 +1023 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -28697,14 +28662,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1066 +1024 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1066 +1024 i 690 1 @@ -28714,14 +28679,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1067 +1025 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1067 +1025 i 692 1 @@ -28731,62 +28696,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1065 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.contains(int):::EXIT118 -this_invocation_nonce -1059 +1023 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -n -690 -1 -return -true -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1068 +1026 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -28794,14 +28734,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1069 +1027 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1069 +1027 i 690 1 @@ -28811,14 +28751,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1070 +1028 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1070 +1028 i 692 1 @@ -28828,116 +28768,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1068 +1026 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1010 +1022 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -1413246829 -1 -other.begins -334203599 -1 -other.begins[..] -[690] -1 -other.ends -1372082959 -1 -other.ends[..] -[692] -1 return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -1071 -numbers -603856241 -1 -numbers.toString -"1,100,10" +690 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1072 -i -1 +1029 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1072 -i +this.begins +394721749 1 +this.begins[..] +[690] 1 -return +this.ends +1884122755 1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1073 -i -1 +1030 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1073 -i +this.begins +394721749 1 +this.begins[..] +[690] 1 -return +this.ends +1884122755 1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1074 +1031 i -100 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1074 +1031 i -100 +690 1 return 0 @@ -28945,205 +28864,184 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1075 +1032 i -100 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1075 +1032 i -100 +692 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1076 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1076 -i -10 +1030 +this +282828951 1 -return -0 +this.begins +394721749 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1077 -i -10 +this.begins[..] +[690] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1077 -i -10 +this.ends +1884122755 1 -return -0 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1078 +1033 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1079 +1034 i -1 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1079 +1034 i -1 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1080 +1035 i -1 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1080 +1035 i -1 +692 1 return -1 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1081 -i -1 +1033 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1081 -i +this.begins +394721749 1 +this.begins[..] +[690] 1 -return +this.ends +1884122755 1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1082 -i -100 +1029 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1082 -i -100 +this.begins +394721749 1 -return -0 +this.begins[..] +[690] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1083 -i +this.ends +1884122755 +1 +this.ends[..] +[692] 1 +return +692 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1083 -i +1036 +this +282828951 1 +this.begins +394721749 1 -return +this.begins[..] +[690] 1 +this.ends +1884122755 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1084 -i -10 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1084 -i -10 -1 -return -0 +1037 +this +282828951 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1085 -i -100 +this.begins +394721749 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1085 -i -100 +this.begins[..] +[690] 1 -return -0 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1086 +1038 i -100 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1086 +1038 i -100 +690 1 return 0 @@ -29151,50 +29049,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1087 +1039 i -100 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1087 +1039 i -100 +692 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1088 -i -10 +1037 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1088 -i -10 +1040 +this +282828951 1 -return -0 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1089 +1041 i -10 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1089 +1041 i -10 +690 1 return 0 @@ -29202,16 +29121,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1090 +1042 i -10 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1090 +1042 i -10 +692 1 return 0 @@ -29219,96 +29138,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1078 +1040 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1071 +1036 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] -1 -numbers -603856241 +[692] 1 -numbers.toString -"1,100,10" +return +690 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1091 +1043 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -other -949057310 -1 -other.begins -2024542466 -1 -other.begins[..] -[1 100 10] -1 -other.ends -770189387 -1 -other.ends[..] -[1 100 10] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1092 +1044 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -29316,14 +29217,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1093 +1045 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1093 +1045 i 690 1 @@ -29333,14 +29234,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1094 +1046 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1094 +1046 i 692 1 @@ -29350,37 +29251,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1092 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -1095 +1044 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -29388,18 +29270,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1096 +1047 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -29407,14 +29289,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1097 +1048 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1097 +1048 i 690 1 @@ -29424,14 +29306,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1098 +1049 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1098 +1049 i 692 1 @@ -29441,197 +29323,151 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1096 +1047 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1095 +1043 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 return -false +692 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1099 +1050 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] +1 +n +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1100 +1051 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1101 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1101 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1102 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1102 -i -1 -1 -return -1 +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1103 +1052 i -1 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1103 +1052 i -1 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1104 +1053 i -100 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1104 +1053 i -100 +692 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1105 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1105 -i -1 -1 -return +1051 +this +282828951 1 +this.begins +394721749 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1106 -i -10 +this.begins[..] +[690] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1106 -i -10 +this.ends +1884122755 1 -return -0 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1107 +1054 i -100 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1107 +1054 i -100 +690 1 return 0 @@ -29639,67 +29475,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1108 +1055 i -100 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1108 +1055 i -100 +690 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1109 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1109 -i -100 +1056 +this +282828951 1 -return -0 +this.begins +394721749 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1110 -i -10 +this.begins[..] +[690] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1110 -i -10 +this.ends +1884122755 1 -return -0 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1111 +1057 i -10 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1111 +1057 i -10 +690 1 return 0 @@ -29707,16 +29528,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1112 +1058 i -10 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1112 +1058 i -10 +692 1 return 0 @@ -29724,78 +29545,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1100 +1056 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -1099 +1050 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] +1 +n +690 1 return -false +true 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1113 +1059 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +n +690 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1114 +1060 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -29803,14 +29630,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1115 +1061 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1115 +1061 i 690 1 @@ -29820,14 +29647,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1116 +1062 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1116 +1062 i 692 1 @@ -29837,37 +29664,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1114 +1060 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1063 +i +690 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1063 +i +690 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1064 +i +690 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1064 +i +690 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1117 +1065 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -29875,14 +29736,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1118 +1066 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1118 +1066 i 690 1 @@ -29892,14 +29753,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1119 +1067 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1119 +1067 i 692 1 @@ -29909,78 +29770,62 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1117 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] -1 - -MapQuick1.StreetNumberSet.min():::EXIT210 -this_invocation_nonce -1113 +1065 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -return -690 -1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -1120 +1059 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +n +690 +1 +return +true +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1121 +1068 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] @@ -29988,14 +29833,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1122 +1069 i 690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1122 +1069 i 690 1 @@ -30005,14 +29850,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1123 +1070 i 692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1123 +1070 i 692 1 @@ -30022,150 +29867,186 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1121 +1068 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 this_invocation_nonce -1124 +1010 this -1413246829 +282828951 1 this.begins -334203599 +394721749 1 this.begins[..] [690] 1 this.ends -1372082959 +1884122755 1 this.ends[..] [692] 1 +other +282828951 +1 +other.begins +394721749 +1 +other.begins[..] +[690] +1 +other.ends +1884122755 +1 +other.ends[..] +[692] +1 +return +true +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +1071 +numbers +1414147750 +1 +numbers.toString +"1,100,10" +1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1125 +1072 i -690 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1125 +1072 i -690 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1126 +1073 i -692 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1126 +1073 i -692 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1124 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] +1074 +i +100 1 -this.ends -1372082959 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1074 +i +100 1 -this.ends[..] -[692] +return +0 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1120 -this -1413246829 +1075 +i +100 1 -this.begins -334203599 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1075 +i +100 1 -this.begins[..] -[690] +return +0 1 -this.ends -1372082959 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1076 +i +10 1 -this.ends[..] -[692] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1076 +i +10 1 return -692 +0 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1127 -this -949057310 -1 -this.begins -2024542466 -1 -this.begins[..] -[1 100 10] +1077 +i +10 1 -this.ends -770189387 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1077 +i +10 1 -this.ends[..] -[1 100 10] +return +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1128 +1078 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] @@ -30173,14 +30054,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1129 +1079 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1129 +1079 i 1 1 @@ -30190,14 +30071,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1130 +1080 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1130 +1080 i 1 1 @@ -30207,14 +30088,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1131 +1081 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1131 +1081 i 1 1 @@ -30224,14 +30105,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1132 +1082 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1132 +1082 i 100 1 @@ -30241,14 +30122,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1133 +1083 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1133 +1083 i 1 1 @@ -30258,14 +30139,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1134 +1084 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1134 +1084 i 10 1 @@ -30275,14 +30156,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1135 +1085 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1135 +1085 i 100 1 @@ -30292,14 +30173,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1136 +1086 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1136 +1086 i 100 1 @@ -30309,14 +30190,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1137 +1087 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1137 +1087 i 100 1 @@ -30326,14 +30207,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1138 +1088 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1138 +1088 i 10 1 @@ -30343,14 +30224,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1139 +1089 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1139 +1089 i 10 1 @@ -30360,14 +30241,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1140 +1090 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1140 +1090 i 10 1 @@ -30377,37 +30258,300 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1128 +1078 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 +1 +this.ends[..] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +this_invocation_nonce +1071 +this +1543974463 +1 +this.begins +1293618474 +1 +this.begins[..] +[1 100 10] +1 +this.ends +156545103 +1 +this.ends[..] +[1 100 10] +1 +numbers +1414147750 +1 +numbers.toString +"1,100,10" +1 + +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +this_invocation_nonce +1091 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 1 this.ends[..] +[692] +1 +other +1543974463 +1 +other.begins +1293618474 +1 +other.begins[..] +[1 100 10] +1 +other.ends +156545103 +1 +other.ends[..] [1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1141 +1092 this -949057310 +282828951 1 this.begins -2024542466 +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1093 +i +690 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1093 +i +690 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1094 +i +692 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1094 +i +692 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1092 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 + +MapQuick1.StreetNumberSet.isEmpty():::ENTER +this_invocation_nonce +1095 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1096 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1097 +i +690 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1097 +i +690 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1098 +i +692 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1098 +i +692 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1096 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 + +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +this_invocation_nonce +1095 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 +return +false +1 + +MapQuick1.StreetNumberSet.isEmpty():::ENTER +this_invocation_nonce +1099 +this +1543974463 +1 +this.begins +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 +1 +this.ends[..] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1100 +this +1543974463 +1 +this.begins +1293618474 +1 +this.begins[..] +[1 100 10] +1 +this.ends +156545103 1 this.ends[..] [1 100 10] @@ -30415,14 +30559,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1142 +1101 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1142 +1101 i 1 1 @@ -30432,14 +30576,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1143 +1102 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1143 +1102 i 1 1 @@ -30449,14 +30593,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1144 +1103 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1144 +1103 i 1 1 @@ -30466,14 +30610,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1145 +1104 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1145 +1104 i 100 1 @@ -30483,14 +30627,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1146 +1105 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1146 +1105 i 1 1 @@ -30500,14 +30644,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1147 +1106 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1147 +1106 i 10 1 @@ -30517,14 +30661,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1148 +1107 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1148 +1107 i 100 1 @@ -30534,14 +30678,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1149 +1108 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1149 +1108 i 100 1 @@ -30551,14 +30695,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1150 +1109 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1150 +1109 i 100 1 @@ -30568,14 +30712,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1151 +1110 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1151 +1110 i 10 1 @@ -30585,14 +30729,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1152 +1111 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1152 +1111 i 10 1 @@ -30602,14 +30746,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1153 +1112 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1153 +1112 i 10 1 @@ -30619,146 +30763,167 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1141 +1100 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1127 +1099 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] 1 return -1 +false 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1154 +1113 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1155 +1114 this -949057310 +282828951 1 this.begins -2024542466 +394721749 1 this.begins[..] -[1 100 10] +[690] 1 this.ends -770189387 +1884122755 1 this.ends[..] -[1 100 10] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1156 +1115 i -1 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1156 +1115 i -1 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1157 +1116 i -1 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1157 +1116 i -1 +692 1 return -1 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1158 -i +1114 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1158 -i +1117 +this +282828951 1 +this.begins +394721749 1 -return +this.begins[..] +[690] +1 +this.ends +1884122755 1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1159 +1118 i -100 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1159 +1118 i -100 +690 1 return 0 @@ -30766,67 +30931,112 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1160 +1119 i -1 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1160 +1119 i -1 +692 1 return -1 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1161 -i -10 +1117 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1161 -i -10 +1113 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 return -0 +690 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1162 -i -100 +1120 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1162 -i -100 +1121 +this +282828951 1 -return -0 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1163 +1122 i -100 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1163 +1122 i -100 +690 1 return 0 @@ -30834,50 +31044,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1164 +1123 i -100 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1164 +1123 i -100 +692 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1165 -i -10 +1121 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1165 -i -10 +1124 +this +282828951 1 -return -0 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1166 +1125 i -10 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1166 +1125 i -10 +690 1 return 0 @@ -30885,16 +31116,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1167 +1126 i -10 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1167 +1126 i -10 +692 1 return 0 @@ -30902,18 +31133,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1155 +1124 this -949057310 +282828951 1 this.begins -2024542466 +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 + +MapQuick1.StreetNumberSet.max():::EXIT230 +this_invocation_nonce +1120 +this +282828951 +1 +this.begins +394721749 +1 +this.begins[..] +[690] +1 +this.ends +1884122755 +1 +this.ends[..] +[692] +1 +return +692 +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +1127 +this +1543974463 +1 +this.begins +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] @@ -30921,18 +31193,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1168 +1128 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] @@ -30940,14 +31212,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1169 +1129 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1169 +1129 i 1 1 @@ -30957,14 +31229,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1170 +1130 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1170 +1130 i 1 1 @@ -30974,14 +31246,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1171 +1131 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1171 +1131 i 1 1 @@ -30991,14 +31263,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1172 +1132 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1172 +1132 i 100 1 @@ -31008,14 +31280,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1173 +1133 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1173 +1133 i 1 1 @@ -31025,14 +31297,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1174 +1134 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1174 +1134 i 10 1 @@ -31042,14 +31314,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1175 +1135 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1175 +1135 i 100 1 @@ -31059,14 +31331,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1176 +1136 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1176 +1136 i 100 1 @@ -31076,14 +31348,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1177 +1137 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1177 +1137 i 100 1 @@ -31093,14 +31365,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1178 +1138 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1178 +1138 i 10 1 @@ -31110,14 +31382,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1179 +1139 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1179 +1139 i 10 1 @@ -31127,14 +31399,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1180 +1140 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1180 +1140 i 10 1 @@ -31144,348 +31416,337 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1168 +1128 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1154 +1141 this -949057310 +1543974463 1 this.begins -2024542466 +1293618474 1 this.begins[..] [1 100 10] 1 this.ends -770189387 +156545103 1 this.ends[..] [1 100 10] 1 -return -100 -1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1181 -this -1413246829 +1142 +i 1 -this.begins -334203599 1 -this.begins[..] -[690] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1142 +i 1 -this.ends -1372082959 1 -this.ends[..] -[692] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1182 +1143 i -690 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1182 +1143 i -690 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1183 +1144 i -692 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1183 +1144 i -692 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1181 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] +1145 +i +100 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1091 -this -1413246829 -1 -this.begins -334203599 -1 -this.begins[..] -[690] -1 -this.ends -1372082959 -1 -this.ends[..] -[692] +1145 +i +100 1 -other -949057310 +return +0 1 -other.begins -2024542466 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1146 +i 1 -other.begins[..] -[1 100 10] 1 -other.ends -770189387 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1146 +i 1 -other.ends[..] -[1 100 10] 1 return -false +1 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1184 -numbers -963522361 +1147 +i +10 1 -numbers.toString -"523-527" + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1147 +i +10 +1 +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1185 +1148 i -523 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1185 +1148 i -523 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1186 +1149 i -527 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1186 +1149 i -527 +100 1 return +0 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1150 +i +100 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1187 -this -175408781 +1150 +i +100 1 -this.begins -315138752 +return +0 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1151 +i +10 1 -this.ends -2114874018 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1151 +i +10 1 -this.ends[..] -[527] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1188 +1152 i -523 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1188 +1152 i -523 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1189 +1153 i -527 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1189 +1153 i -527 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1187 +1141 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1184 +1127 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] 1 -numbers -963522361 +return 1 -numbers.toString -"523-527" 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1190 +1154 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] -1 -n -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1191 +1155 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1192 +1156 i -523 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1192 +1156 i -523 +1 1 return 1 @@ -31493,52 +31754,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1193 +1157 i -527 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1193 +1157 i -527 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1191 -this -175408781 +1158 +i 1 -this.begins -315138752 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1158 +i 1 -this.ends -2114874018 1 -this.ends[..] -[527] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1194 +1159 i -0 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1194 +1159 i -0 +100 1 return 0 @@ -31546,171 +31805,224 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1195 +1160 i -523 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1195 +1160 i -523 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1196 -this -175408781 +1161 +i +10 1 -this.begins -315138752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1161 +i +10 1 -this.begins[..] -[523] +return +0 1 -this.ends -2114874018 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1162 +i +100 1 -this.ends[..] -[527] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1162 +i +100 +1 +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1197 +1163 i -523 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1197 +1163 i -523 +100 1 return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1164 +i +100 1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1164 +i +100 +1 +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1198 +1165 i -527 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1198 +1165 i -527 +10 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1166 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1166 +i +10 1 return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1167 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1167 +i +10 1 +return +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1196 +1155 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1190 +1168 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] 1 -n -0 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1169 +i 1 -return -false 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1199 -this -175408781 +1169 +i 1 -this.begins -315138752 1 -this.begins[..] -[523] +return 1 -this.ends -2114874018 1 -this.ends[..] -[527] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1170 +i 1 -n -0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1200 -this -175408781 -1 -this.begins -315138752 +1170 +i 1 -this.begins[..] -[523] 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1201 +1171 i -523 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1201 +1171 i -523 +1 1 return 1 @@ -31718,266 +32030,327 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1202 +1172 i -527 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1202 +1172 i -527 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1200 -this -175408781 +1173 +i 1 -this.begins -315138752 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1173 +i 1 -this.ends -2114874018 1 -this.ends[..] -[527] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1203 +1174 i -0 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1203 +1174 i +10 +1 +return 0 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1175 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1175 +i +100 +1 return 0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1204 +1176 i -523 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1204 +1176 i -523 +100 1 return +0 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1177 +i +100 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1205 -this -175408781 +1177 +i +100 1 -this.begins -315138752 +return +0 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1178 +i +10 1 -this.ends -2114874018 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1178 +i +10 1 -this.ends[..] -[527] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1206 +1179 i -523 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1206 +1179 i -523 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1207 +1180 i -527 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1207 +1180 i -527 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1205 +1168 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1208 +1154 this -175408781 +1543974463 1 this.begins -315138752 +1293618474 1 this.begins[..] -[523] +[1 100 10] 1 this.ends -2114874018 +156545103 1 this.ends[..] -[527] +[1 100 10] +1 +return +100 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1209 +1181 this -175408781 +282828951 1 this.begins -315138752 +394721749 1 this.begins[..] -[523] +[690] 1 this.ends -2114874018 +1884122755 1 this.ends[..] -[527] +[692] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1210 +1182 i -523 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1210 +1182 i -523 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1211 +1183 i -527 +692 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1211 +1183 i -527 +692 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1209 +1181 this -175408781 +282828951 1 this.begins -315138752 +394721749 1 this.begins[..] -[523] +[690] 1 this.ends -2114874018 +1884122755 1 this.ends[..] -[527] +[692] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 this_invocation_nonce -1212 +1091 this -175408781 +282828951 1 this.begins -315138752 +394721749 1 this.begins[..] -[523] +[690] 1 this.ends -2114874018 +1884122755 1 this.ends[..] -[527] +[692] +1 +other +1543974463 +1 +other.begins +1293618474 +1 +other.begins[..] +[1 100 10] +1 +other.ends +156545103 +1 +other.ends[..] +[1 100 10] +1 +return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +1184 +numbers +345281752 +1 +numbers.toString +"523-527" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1213 +1185 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1213 +1185 i 523 1 @@ -31987,14 +32360,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1214 +1186 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1214 +1186 i 527 1 @@ -32002,108 +32375,139 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1212 +1187 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1208 +1188 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1188 +i +523 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1189 +i +527 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1189 +i +527 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1187 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -return -3 -1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -1199 +1184 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -n -0 +numbers +345281752 1 -return -0 +numbers.toString +"523-527" 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1215 +1190 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -857 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1216 +1191 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32111,14 +32515,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1217 +1192 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1217 +1192 i 523 1 @@ -32128,14 +32532,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1218 +1193 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1218 +1193 i 527 1 @@ -32145,18 +32549,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1216 +1191 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32164,31 +32568,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1219 +1194 i -857 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1219 +1194 i -857 +0 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1220 +1195 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1220 +1195 i 523 1 @@ -32198,18 +32602,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1221 +1196 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32217,14 +32621,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1222 +1197 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1222 +1197 i 523 1 @@ -32234,14 +32638,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1223 +1198 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1223 +1198 i 527 1 @@ -32251,18 +32655,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1221 +1196 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32270,24 +32674,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1215 +1190 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -857 +0 1 return false @@ -32295,40 +32699,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1224 +1199 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -857 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1225 +1200 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32336,14 +32740,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1226 +1201 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1226 +1201 i 523 1 @@ -32353,14 +32757,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1227 +1202 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1227 +1202 i 527 1 @@ -32370,18 +32774,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1225 +1200 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32389,31 +32793,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1228 +1203 i -857 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1228 +1203 i -857 +0 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1229 +1204 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1229 +1204 i 523 1 @@ -32423,18 +32827,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1230 +1205 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32442,14 +32846,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1231 +1206 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1231 +1206 i 523 1 @@ -32459,14 +32863,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1232 +1207 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1232 +1207 i 527 1 @@ -32476,18 +32880,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1230 +1205 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32495,18 +32899,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1233 +1208 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32514,18 +32918,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1234 +1209 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32533,14 +32937,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1235 +1210 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1235 +1210 i 523 1 @@ -32550,14 +32954,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1236 +1211 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1236 +1211 i 527 1 @@ -32567,18 +32971,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1234 +1209 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32586,18 +32990,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1237 +1212 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32605,14 +33009,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1238 +1213 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1238 +1213 i 523 1 @@ -32622,14 +33026,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1239 +1214 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1239 +1214 i 527 1 @@ -32639,18 +33043,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1237 +1212 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32658,18 +33062,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1233 +1208 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32680,65 +33084,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1224 +1199 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -857 +0 1 return -3 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1240 +1215 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -690 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1241 +1216 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32746,14 +33150,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1242 +1217 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1242 +1217 i 523 1 @@ -32763,14 +33167,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1243 +1218 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1243 +1218 i 527 1 @@ -32780,18 +33184,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1241 +1216 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32799,31 +33203,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1244 +1219 i -690 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1244 +1219 i -690 +857 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1245 +1220 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1245 +1220 i 523 1 @@ -32833,18 +33237,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1246 +1221 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32852,14 +33256,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1247 +1222 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1247 +1222 i 523 1 @@ -32869,14 +33273,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1248 +1223 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1248 +1223 i 527 1 @@ -32886,18 +33290,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1246 +1221 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32905,24 +33309,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1240 +1215 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -690 +857 1 return false @@ -32930,40 +33334,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1249 +1224 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -690 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1250 +1225 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -32971,14 +33375,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1251 +1226 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1251 +1226 i 523 1 @@ -32988,14 +33392,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1252 +1227 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1252 +1227 i 527 1 @@ -33005,18 +33409,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1250 +1225 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33024,31 +33428,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1253 +1228 i -690 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1253 +1228 i -690 +857 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1254 +1229 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1254 +1229 i 523 1 @@ -33058,18 +33462,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1255 +1230 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33077,14 +33481,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1256 +1231 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1256 +1231 i 523 1 @@ -33094,14 +33498,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1257 +1232 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1257 +1232 i 527 1 @@ -33111,18 +33515,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1255 +1230 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33130,18 +33534,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1258 +1233 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33149,18 +33553,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1259 +1234 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33168,14 +33572,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1260 +1235 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1260 +1235 i 523 1 @@ -33185,14 +33589,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1261 +1236 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1261 +1236 i 527 1 @@ -33202,18 +33606,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1259 +1234 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33221,18 +33625,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1262 +1237 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33240,14 +33644,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1263 +1238 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1263 +1238 i 523 1 @@ -33257,14 +33661,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1264 +1239 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1264 +1239 i 527 1 @@ -33274,18 +33678,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1262 +1237 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33293,18 +33697,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1258 +1233 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33315,24 +33719,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1249 +1224 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -690 +857 1 return 3 @@ -33340,40 +33744,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1265 +1240 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -523 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1266 +1241 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33381,14 +33785,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1267 +1242 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1267 +1242 i 523 1 @@ -33398,14 +33802,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1268 +1243 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1268 +1243 i 527 1 @@ -33415,18 +33819,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1266 +1241 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33434,31 +33838,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1269 +1244 i -523 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1269 +1244 i -523 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1270 +1245 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1270 +1245 i 523 1 @@ -33468,18 +33872,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1271 +1246 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33487,14 +33891,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1272 +1247 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1272 +1247 i 523 1 @@ -33504,14 +33908,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1273 +1248 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1273 +1248 i 527 1 @@ -33521,84 +33925,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1271 +1246 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1265 +1240 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -523 +690 1 return -true +false 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1274 +1249 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -523 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1275 +1250 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33606,14 +34010,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1276 +1251 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1276 +1251 i 523 1 @@ -33623,14 +34027,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1277 +1252 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1277 +1252 i 527 1 @@ -33640,18 +34044,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1275 +1250 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33659,31 +34063,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1278 +1253 i -523 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1278 +1253 i -523 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1279 +1254 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1279 +1254 i 523 1 @@ -33693,18 +34097,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1280 +1255 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33712,14 +34116,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1281 +1256 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1281 +1256 i 523 1 @@ -33729,14 +34133,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1282 +1257 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1282 +1257 i 527 1 @@ -33746,18 +34150,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1280 +1255 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33765,18 +34169,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1283 +1258 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33784,18 +34188,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1284 +1259 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33803,14 +34207,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1285 +1260 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1285 +1260 i 523 1 @@ -33820,14 +34224,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1286 +1261 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1286 +1261 i 527 1 @@ -33837,18 +34241,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1284 +1259 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33856,18 +34260,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1287 +1262 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33875,14 +34279,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1288 +1263 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1288 +1263 i 523 1 @@ -33892,14 +34296,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1289 +1264 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1289 +1264 i 527 1 @@ -33909,18 +34313,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1287 +1262 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33928,18 +34332,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1283 +1258 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -33950,65 +34354,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1274 +1249 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -523 +690 1 return -0 +3 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1290 +1265 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -356 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1291 +1266 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34016,14 +34420,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1292 +1267 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1292 +1267 i 523 1 @@ -34033,14 +34437,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1293 +1268 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1293 +1268 i 527 1 @@ -34050,18 +34454,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1291 +1266 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34069,31 +34473,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1294 +1269 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1294 +1269 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1295 +1270 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1295 +1270 i 523 1 @@ -34103,18 +34507,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1296 +1271 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34122,14 +34526,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1297 +1272 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1297 +1272 i 523 1 @@ -34139,14 +34543,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1298 +1273 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1298 +1273 i 527 1 @@ -34156,84 +34560,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1296 +1271 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -1290 +1265 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -356 +523 1 return -false +true 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1299 +1274 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -356 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1300 +1275 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34241,14 +34645,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1301 +1276 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1301 +1276 i 523 1 @@ -34258,14 +34662,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1302 +1277 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1302 +1277 i 527 1 @@ -34275,18 +34679,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1300 +1275 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34294,31 +34698,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1303 +1278 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1303 +1278 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1304 +1279 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1304 +1279 i 523 1 @@ -34328,18 +34732,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1305 +1280 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34347,14 +34751,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1306 +1281 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1306 +1281 i 523 1 @@ -34364,14 +34768,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1307 +1282 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1307 +1282 i 527 1 @@ -34381,18 +34785,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1305 +1280 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34400,18 +34804,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1308 +1283 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34419,18 +34823,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1309 +1284 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34438,14 +34842,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1310 +1285 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1310 +1285 i 523 1 @@ -34455,14 +34859,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1311 +1286 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1311 +1286 i 527 1 @@ -34472,18 +34876,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1309 +1284 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34491,18 +34895,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1312 +1287 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34510,14 +34914,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1313 +1288 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1313 +1288 i 523 1 @@ -34527,14 +34931,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1314 +1289 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1314 +1289 i 527 1 @@ -34544,18 +34948,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1312 +1287 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34563,18 +34967,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1308 +1283 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34585,24 +34989,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1299 +1274 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -356 +523 1 return 0 @@ -34610,40 +35014,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1315 +1290 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -189 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1316 +1291 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34651,14 +35055,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1317 +1292 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1317 +1292 i 523 1 @@ -34668,14 +35072,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1318 +1293 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1318 +1293 i 527 1 @@ -34685,18 +35089,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1316 +1291 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34704,31 +35108,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1319 +1294 i -189 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1319 +1294 i -189 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1320 +1295 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1320 +1295 i 523 1 @@ -34738,18 +35142,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1321 +1296 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34757,14 +35161,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1322 +1297 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1322 +1297 i 523 1 @@ -34774,14 +35178,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1323 +1298 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1323 +1298 i 527 1 @@ -34791,18 +35195,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1321 +1296 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34810,24 +35214,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1315 +1290 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -189 +356 1 return false @@ -34835,40 +35239,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1324 +1299 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -189 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1325 +1300 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34876,14 +35280,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1326 +1301 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1326 +1301 i 523 1 @@ -34893,14 +35297,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1327 +1302 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1327 +1302 i 527 1 @@ -34910,18 +35314,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1325 +1300 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34929,31 +35333,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1328 +1303 i -189 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1328 +1303 i -189 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1329 +1304 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1329 +1304 i 523 1 @@ -34963,18 +35367,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1330 +1305 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -34982,14 +35386,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1331 +1306 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1331 +1306 i 523 1 @@ -34999,14 +35403,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1332 +1307 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1332 +1307 i 527 1 @@ -35016,18 +35420,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1330 +1305 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35035,18 +35439,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1333 +1308 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35054,18 +35458,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1334 +1309 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35073,14 +35477,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1335 +1310 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1335 +1310 i 523 1 @@ -35090,14 +35494,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1336 +1311 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1336 +1311 i 527 1 @@ -35107,18 +35511,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1334 +1309 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35126,18 +35530,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1337 +1312 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35145,14 +35549,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1338 +1313 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1338 +1313 i 523 1 @@ -35162,14 +35566,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1339 +1314 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1339 +1314 i 527 1 @@ -35179,18 +35583,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1337 +1312 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35198,18 +35602,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1333 +1308 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35220,24 +35624,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1324 +1299 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -189 +356 1 return 0 @@ -35245,40 +35649,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1340 +1315 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -22 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1341 +1316 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35286,14 +35690,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1342 +1317 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1342 +1317 i 523 1 @@ -35303,14 +35707,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1343 +1318 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1343 +1318 i 527 1 @@ -35320,18 +35724,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1341 +1316 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35339,31 +35743,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1344 +1319 i -22 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1344 +1319 i -22 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1345 +1320 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1345 +1320 i 523 1 @@ -35373,18 +35777,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1346 +1321 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35392,14 +35796,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1347 +1322 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1347 +1322 i 523 1 @@ -35409,14 +35813,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1348 +1323 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1348 +1323 i 527 1 @@ -35426,18 +35830,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1346 +1321 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35445,24 +35849,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1340 +1315 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -22 +189 1 return false @@ -35470,40 +35874,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1349 +1324 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -22 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1350 +1325 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35511,14 +35915,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1351 +1326 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1351 +1326 i 523 1 @@ -35528,14 +35932,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1352 +1327 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1352 +1327 i 527 1 @@ -35545,18 +35949,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1350 +1325 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35564,31 +35968,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1353 +1328 i -22 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1353 +1328 i -22 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1354 +1329 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1354 +1329 i 523 1 @@ -35598,18 +36002,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1355 +1330 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35617,14 +36021,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1356 +1331 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1356 +1331 i 523 1 @@ -35634,14 +36038,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1357 +1332 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1357 +1332 i 527 1 @@ -35651,18 +36055,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1355 +1330 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35670,18 +36074,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1358 +1333 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35689,18 +36093,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1359 +1334 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35708,14 +36112,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1360 +1335 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1360 +1335 i 523 1 @@ -35725,14 +36129,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1361 +1336 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1361 +1336 i 527 1 @@ -35742,18 +36146,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1359 +1334 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35761,18 +36165,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1362 +1337 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35780,14 +36184,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1363 +1338 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1363 +1338 i 523 1 @@ -35797,14 +36201,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1364 +1339 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1364 +1339 i 527 1 @@ -35814,18 +36218,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1362 +1337 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35833,18 +36237,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1358 +1333 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35855,24 +36259,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1349 +1324 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -22 +189 1 return 0 @@ -35880,40 +36284,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1365 +1340 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -879 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1366 +1341 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35921,14 +36325,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1367 +1342 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1367 +1342 i 523 1 @@ -35938,14 +36342,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1368 +1343 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1368 +1343 i 527 1 @@ -35955,18 +36359,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1366 +1341 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -35974,31 +36378,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1369 +1344 i -879 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1369 +1344 i -879 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1370 +1345 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1370 +1345 i 523 1 @@ -36008,18 +36412,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1371 +1346 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36027,14 +36431,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1372 +1347 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1372 +1347 i 523 1 @@ -36044,14 +36448,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1373 +1348 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1373 +1348 i 527 1 @@ -36061,18 +36465,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1371 +1346 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36080,24 +36484,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1365 +1340 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -879 +22 1 return false @@ -36105,40 +36509,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1374 +1349 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -879 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1375 +1350 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36146,14 +36550,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1376 +1351 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1376 +1351 i 523 1 @@ -36163,14 +36567,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1377 +1352 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1377 +1352 i 527 1 @@ -36180,18 +36584,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1375 +1350 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36199,31 +36603,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1378 +1353 i -879 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1378 +1353 i -879 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1379 +1354 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1379 +1354 i 523 1 @@ -36233,18 +36637,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1380 +1355 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36252,14 +36656,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1381 +1356 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1381 +1356 i 523 1 @@ -36269,14 +36673,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1382 +1357 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1382 +1357 i 527 1 @@ -36286,18 +36690,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1380 +1355 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36305,18 +36709,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1383 +1358 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36324,18 +36728,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1384 +1359 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36343,14 +36747,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1385 +1360 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1385 +1360 i 523 1 @@ -36360,14 +36764,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1386 +1361 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1386 +1361 i 527 1 @@ -36377,18 +36781,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1384 +1359 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36396,18 +36800,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1387 +1362 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36415,14 +36819,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1388 +1363 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1388 +1363 i 523 1 @@ -36432,14 +36836,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1389 +1364 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1389 +1364 i 527 1 @@ -36449,18 +36853,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1387 +1362 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36468,18 +36872,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1383 +1358 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36490,65 +36894,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1374 +1349 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -879 +22 1 return -3 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1390 +1365 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -712 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1391 +1366 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36556,14 +36960,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1392 +1367 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1392 +1367 i 523 1 @@ -36573,14 +36977,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1393 +1368 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1393 +1368 i 527 1 @@ -36590,18 +36994,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1391 +1366 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36609,31 +37013,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1394 +1369 i -712 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1394 +1369 i -712 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1395 +1370 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1395 +1370 i 523 1 @@ -36643,18 +37047,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1396 +1371 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36662,14 +37066,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1397 +1372 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1397 +1372 i 523 1 @@ -36679,14 +37083,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1398 +1373 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1398 +1373 i 527 1 @@ -36696,18 +37100,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1396 +1371 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36715,24 +37119,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1390 +1365 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -712 +879 1 return false @@ -36740,40 +37144,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1399 +1374 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -712 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1400 +1375 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36781,14 +37185,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1401 +1376 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1401 +1376 i 523 1 @@ -36798,14 +37202,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1402 +1377 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1402 +1377 i 527 1 @@ -36815,18 +37219,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1400 +1375 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36834,31 +37238,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1403 +1378 i -712 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1403 +1378 i -712 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1404 +1379 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1404 +1379 i 523 1 @@ -36868,18 +37272,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1405 +1380 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36887,14 +37291,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1406 +1381 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1406 +1381 i 523 1 @@ -36904,14 +37308,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1407 +1382 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1407 +1382 i 527 1 @@ -36921,18 +37325,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1405 +1380 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36940,18 +37344,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1408 +1383 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36959,18 +37363,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1409 +1384 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -36978,14 +37382,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1410 +1385 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1410 +1385 i 523 1 @@ -36995,14 +37399,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1411 +1386 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1411 +1386 i 527 1 @@ -37012,18 +37416,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1409 +1384 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37031,18 +37435,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1412 +1387 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37050,14 +37454,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1413 +1388 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1413 +1388 i 523 1 @@ -37067,14 +37471,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1414 +1389 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1414 +1389 i 527 1 @@ -37084,18 +37488,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1412 +1387 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37103,18 +37507,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1408 +1383 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37125,24 +37529,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1399 +1374 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -712 +879 1 return 3 @@ -37150,40 +37554,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1415 +1390 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -545 +712 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1416 +1391 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37191,14 +37595,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1417 +1392 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1417 +1392 i 523 1 @@ -37208,14 +37612,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1418 +1393 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1418 +1393 i 527 1 @@ -37225,18 +37629,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1416 +1391 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37244,31 +37648,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1419 +1394 i -545 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1419 +1394 i -545 +712 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1420 +1395 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1420 +1395 i 523 1 @@ -37278,18 +37682,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1421 +1396 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37297,14 +37701,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1422 +1397 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1422 +1397 i 523 1 @@ -37314,14 +37718,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1423 +1398 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1423 +1398 i 527 1 @@ -37331,18 +37735,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1421 +1396 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37350,24 +37754,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1415 +1390 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -545 +712 1 return false @@ -37375,40 +37779,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1424 +1399 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -545 +712 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1425 +1400 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37416,14 +37820,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1426 +1401 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1426 +1401 i 523 1 @@ -37433,14 +37837,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1427 +1402 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1427 +1402 i 527 1 @@ -37450,18 +37854,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1425 +1400 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37469,31 +37873,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1428 +1403 i -545 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1428 +1403 i -545 +712 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1429 +1404 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1429 +1404 i 523 1 @@ -37503,18 +37907,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1430 +1405 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37522,14 +37926,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1431 +1406 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1431 +1406 i 523 1 @@ -37539,14 +37943,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1432 +1407 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1432 +1407 i 527 1 @@ -37556,18 +37960,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1430 +1405 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37575,18 +37979,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1433 +1408 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37594,18 +37998,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1434 +1409 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37613,14 +38017,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1435 +1410 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1435 +1410 i 523 1 @@ -37630,14 +38034,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1436 +1411 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1436 +1411 i 527 1 @@ -37647,18 +38051,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1434 +1409 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37666,18 +38070,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1437 +1412 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37685,14 +38089,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1438 +1413 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1438 +1413 i 523 1 @@ -37702,14 +38106,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1439 +1414 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1439 +1414 i 527 1 @@ -37719,18 +38123,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1437 +1412 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37738,18 +38142,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1433 +1408 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37760,62 +38164,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1424 +1399 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 n -545 +712 1 return 3 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1440 +1415 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1441 +1416 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37823,14 +38230,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1442 +1417 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1442 +1417 i 523 1 @@ -37840,14 +38247,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1443 +1418 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1443 +1418 i 527 1 @@ -37857,37 +38264,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1441 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -1444 +1416 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -37895,16 +38283,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1445 +1419 i -523 +545 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1445 +1419 i -523 +545 1 return 1 @@ -37912,95 +38300,35 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1446 +1420 i -527 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1446 +1420 i -527 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -1444 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -1440 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +523 1 return -3 -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -1447 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1448 +1421 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38008,14 +38336,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1449 +1422 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1449 +1422 i 523 1 @@ -38025,14 +38353,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1450 +1423 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1450 +1423 i 527 1 @@ -38042,78 +38370,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1448 +1421 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1447 +1415 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +n +545 +1 return false 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1451 +1424 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1452 +1425 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38121,14 +38455,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1453 +1426 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1453 +1426 i 523 1 @@ -38138,14 +38472,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1454 +1427 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1454 +1427 i 527 1 @@ -38155,37 +38489,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1452 +1425 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1428 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1428 +i +545 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1429 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1429 +i +523 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1455 +1430 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38193,14 +38561,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1456 +1431 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1456 +1431 i 523 1 @@ -38210,14 +38578,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1457 +1432 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1457 +1432 i 527 1 @@ -38227,59 +38595,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1455 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 - -MapQuick1.StreetNumberSet.min():::EXIT210 -this_invocation_nonce -1451 +1430 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -return -523 -1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1458 +1433 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38287,18 +38633,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1459 +1434 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38306,14 +38652,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1460 +1435 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1460 +1435 i 523 1 @@ -38323,14 +38669,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1461 +1436 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1461 +1436 i 527 1 @@ -38340,18 +38686,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1459 +1434 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38359,18 +38705,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1462 +1437 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38378,14 +38724,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1463 +1438 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1463 +1438 i 523 1 @@ -38395,14 +38741,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1464 +1439 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1464 +1439 i 527 1 @@ -38412,439 +38758,305 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1462 +1437 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1458 +1433 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 return -527 +3 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1465 +1424 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -o -null +n +545 +1 +return +3 1 -o.getClass().getName() -nonsensical -2 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1465 +1440 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -o -null -1 -o.getClass().getName() -nonsensical -2 -return -false -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1466 +1441 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -null -1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1466 -this -175408781 +1442 +i +523 1 -this.begins -315138752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1442 +i +523 1 -this.begins[..] -[523] +return 1 -this.ends -2114874018 1 -this.ends[..] -[527] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1443 +i +527 1 -other -null + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1443 +i +527 1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 return -false +1 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1467 +1441 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -o -175408781 -1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1468 +1444 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -175408781 -1 -other.begins -315138752 -1 -other.begins[..] -[523] -1 -other.ends -2114874018 -1 -other.ends[..] -[527] -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1468 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1445 +i +523 1 -other -175408781 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1445 +i +523 1 -other.begins -315138752 +return 1 -other.begins[..] -[523] 1 -other.ends -2114874018 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1446 +i +527 1 -other.ends[..] -[527] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1446 +i +527 1 return -true +1 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1467 +1444 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -o -175408781 -1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" -1 -return -true -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1469 +1440 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -175408781 -1 -other.begins -315138752 -1 -other.begins[..] -[523] -1 -other.ends -2114874018 -1 -other.ends[..] -[527] +return +3 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1469 +1447 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -175408781 -1 -other.begins -315138752 -1 -other.begins[..] -[523] -1 -other.ends -2114874018 -1 -other.ends[..] -[527] -1 -return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -1470 -numbers -422392391 -1 -numbers.toString -"1" -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1471 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1471 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1472 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1472 -i -1 -1 -return -1 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1473 +1448 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1474 +1449 i -1 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1474 +1449 i -1 +523 1 return 1 @@ -38852,16 +39064,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1475 +1450 i -1 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1475 +1450 i -1 +527 1 return 1 @@ -38869,96 +39081,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1473 -this -911312317 -1 -this.begins -415186196 -1 -this.begins[..] -[1] -1 -this.ends -1337344609 -1 -this.ends[..] -[1] -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 -this_invocation_nonce -1470 +1448 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] -1 -numbers -422392391 -1 -numbers.toString -"1" +[527] 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1476 +1447 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -911312317 -1 -other.begins -415186196 -1 -other.begins[..] -[1] -1 -other.ends -1337344609 -1 -other.ends[..] -[1] +return +false 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1477 +1451 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38966,18 +39141,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1478 +1452 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -38985,14 +39160,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1479 +1453 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1479 +1453 i 523 1 @@ -39002,14 +39177,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1480 +1454 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1480 +1454 i 527 1 @@ -39019,18 +39194,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1478 +1452 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39038,18 +39213,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1481 +1455 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39057,14 +39232,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1482 +1456 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1482 +1456 i 523 1 @@ -39074,14 +39249,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1483 +1457 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1483 +1457 i 527 1 @@ -39091,18 +39266,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1481 +1455 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39110,18 +39285,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1477 +1451 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39132,18 +39307,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1484 +1458 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39151,18 +39326,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1485 +1459 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39170,14 +39345,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1486 +1460 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1486 +1460 i 523 1 @@ -39187,14 +39362,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1487 +1461 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1487 +1461 i 527 1 @@ -39204,18 +39379,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1485 +1459 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39223,18 +39398,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1488 +1462 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39242,14 +39417,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1489 +1463 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1489 +1463 i 523 1 @@ -39259,14 +39434,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1490 +1464 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1490 +1464 i 527 1 @@ -39276,18 +39451,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1488 +1462 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39295,18 +39470,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1484 +1458 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39315,352 +39490,345 @@ return 527 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -1491 +1465 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] +[527] +1 +o +null 1 +o.getClass().getName() +nonsensical +2 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -1492 +1465 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1493 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1493 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1494 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1494 -i +[527] 1 +o +null 1 +o.getClass().getName() +nonsensical +2 return -1 +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1492 +1466 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] +[527] +1 +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 this_invocation_nonce -1495 +1466 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1496 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1496 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1497 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1497 -i +[527] 1 +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 return -1 +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -1495 +1467 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] +[527] +1 +o +1896294051 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1491 +1468 this -911312317 +1896294051 1 this.begins -415186196 +1684015092 1 this.begins[..] -[1] +[523] 1 this.ends -1337344609 +1209669119 1 this.ends[..] -[1] +[527] 1 -return +other +1896294051 +1 +other.begins +1684015092 +1 +other.begins[..] +[523] 1 +other.ends +1209669119 +1 +other.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -1476 +1468 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 other -911312317 +1896294051 1 other.begins -415186196 +1684015092 1 other.begins[..] -[1] +[523] 1 other.ends -1337344609 +1209669119 1 other.ends[..] -[1] +[527] 1 return -false -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -1498 -numbers -863125040 -1 -numbers.toString -"1,7" +true 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -1499 -i +1467 +this +1896294051 1 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1499 -i +this.begins[..] +[523] 1 +this.ends +1209669119 1 -return +this.ends[..] +[527] 1 +o +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1500 -i +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 +return +true 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1500 -i -1 -1 -return +1469 +this +1896294051 1 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1501 -i -7 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1501 -i -7 +this.ends +1209669119 1 -return +this.ends[..] +[527] 1 +other +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1502 -i -7 +other.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1502 -i -7 +other.begins[..] +[523] 1 -return +other.ends +1209669119 1 +other.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -1503 +1469 this -1113619023 +1896294051 1 this.begins -2015781843 +1684015092 1 this.begins[..] -[1 7] +[523] 1 this.ends -428910174 +1209669119 1 this.ends[..] -[1 7] +[527] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1504 -i +other +1896294051 1 +other.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1504 -i +other.begins[..] +[523] 1 +other.ends +1209669119 +1 +other.ends[..] +[527] 1 return +true +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +1470 +numbers +315138752 1 +numbers.toString +"1" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1505 +1471 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1505 +1471 i 1 1 @@ -39670,14 +39838,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1506 +1472 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1506 +1472 i 1 1 @@ -39685,35 +39853,37 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1507 -i -7 +1473 +this +2014866032 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1507 -i -7 +this.begins +811760110 1 -return +this.begins[..] +[1] +1 +this.ends +1415157681 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1508 +1474 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1508 +1474 i -7 +1 1 return 1 @@ -39721,16 +39891,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1509 +1475 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1509 +1475 i -7 +1 1 return 1 @@ -39738,96 +39908,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1503 +1473 this -1113619023 +2014866032 1 this.begins -2015781843 +811760110 1 this.begins[..] -[1 7] +[1] 1 this.ends -428910174 +1415157681 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -1498 +1470 this -1113619023 +2014866032 1 this.begins -2015781843 +811760110 1 this.begins[..] -[1 7] +[1] 1 this.ends -428910174 +1415157681 1 this.ends[..] -[1 7] +[1] 1 numbers -863125040 +315138752 1 numbers.toString -"1,7" +"1" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1510 +1476 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 other -1113619023 +2014866032 1 other.begins -2015781843 +811760110 1 other.begins[..] -[1 7] +[1] 1 other.ends -428910174 +1415157681 1 other.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1511 +1477 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39835,18 +40005,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1512 +1478 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39854,14 +40024,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1513 +1479 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1513 +1479 i 523 1 @@ -39871,14 +40041,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1514 +1480 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1514 +1480 i 527 1 @@ -39888,18 +40058,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1512 +1478 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39907,18 +40077,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1515 +1481 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39926,14 +40096,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1516 +1482 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1516 +1482 i 523 1 @@ -39943,14 +40113,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1517 +1483 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1517 +1483 i 527 1 @@ -39960,18 +40130,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1515 +1481 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -39979,18 +40149,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1511 +1477 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40001,18 +40171,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1518 +1484 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40020,18 +40190,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1519 +1485 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40039,14 +40209,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1520 +1486 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1520 +1486 i 523 1 @@ -40056,14 +40226,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1521 +1487 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1521 +1487 i 527 1 @@ -40073,18 +40243,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1519 +1485 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40092,18 +40262,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1522 +1488 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40111,14 +40281,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1523 +1489 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1523 +1489 i 523 1 @@ -40128,14 +40298,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1524 +1490 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1524 +1490 i 527 1 @@ -40145,18 +40315,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1522 +1488 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40164,18 +40334,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1518 +1484 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40186,86 +40356,52 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1525 +1491 this -1113619023 +2014866032 1 this.begins -2015781843 +811760110 1 this.begins[..] -[1 7] +[1] 1 this.ends -428910174 +1415157681 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1526 +1492 this -1113619023 +2014866032 1 this.begins -2015781843 +811760110 1 this.begins[..] -[1 7] +[1] 1 this.ends -428910174 +1415157681 1 this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1527 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1527 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1528 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1528 -i -1 -1 -return -1 +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1529 +1493 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1529 +1493 i 1 1 @@ -40275,50 +40411,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1530 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1530 +1494 i -7 1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1531 -i -7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1531 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1532 +1494 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1532 -i -7 1 return 1 @@ -40326,259 +40428,52 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1526 +1492 this -1113619023 +2014866032 1 this.begins -2015781843 +811760110 1 this.begins[..] -[1 7] +[1] 1 this.ends -428910174 +1415157681 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1533 -this -1113619023 -1 -this.begins -2015781843 -1 -this.begins[..] -[1 7] -1 -this.ends -428910174 -1 -this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1534 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1534 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1535 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1535 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1536 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1536 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1537 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1537 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1538 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1538 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1539 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1539 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -1533 -this -1113619023 -1 -this.begins -2015781843 -1 -this.begins[..] -[1 7] -1 -this.ends -428910174 -1 -this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.min():::EXIT210 -this_invocation_nonce -1525 -this -1113619023 -1 -this.begins -2015781843 -1 -this.begins[..] -[1 7] -1 -this.ends -428910174 -1 -this.ends[..] -[1 7] -1 -return -1 -1 - -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 -this_invocation_nonce -1510 +1495 this -175408781 +2014866032 1 this.begins -315138752 +811760110 1 this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 -other -1113619023 -1 -other.begins -2015781843 -1 -other.begins[..] -[1 7] -1 -other.ends -428910174 -1 -other.ends[..] -[1 7] -1 -return -false -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -1540 -numbers -1485955886 -1 -numbers.toString -"1,7,11" -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1541 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1541 -i -1 +[1] 1 -return +this.ends +1415157681 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1542 +1496 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1542 +1496 i 1 1 @@ -40588,118 +40483,119 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1543 +1497 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1543 +1497 i -7 +1 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1544 -i -7 +1495 +this +2014866032 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1544 -i -7 +this.begins +811760110 1 -return +this.begins[..] +[1] 1 +this.ends +1415157681 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1545 -i -11 +this.ends[..] +[1] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1545 -i -11 +1491 +this +2014866032 1 -return +this.begins +811760110 1 +this.begins[..] +[1] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1546 -i -11 +this.ends +1415157681 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1546 -i -11 +this.ends[..] +[1] 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -1547 +1476 this -1682463303 +1896294051 1 this.begins -633075331 +1684015092 1 this.begins[..] -[1 7 11] +[523] 1 this.ends -1858609436 +1209669119 1 this.ends[..] -[1 7 11] +[527] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1548 -i +other +2014866032 1 +other.begins +811760110 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1548 -i +other.begins[..] +[1] +1 +other.ends +1415157681 1 +other.ends[..] +[1] 1 return +false 1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +1498 +numbers +1337344609 +1 +numbers.toString +"1,7" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1549 +1499 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1549 +1499 i 1 1 @@ -40709,14 +40605,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1550 +1500 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1550 +1500 i 1 1 @@ -40726,14 +40622,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1551 +1501 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1551 +1501 i 7 1 @@ -40743,50 +40639,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1552 +1502 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1552 +1502 i -1 +7 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1553 -i -11 +1503 +this +1291113768 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1553 -i -11 +this.begins +2005167404 1 -return +this.begins[..] +[1 7] 1 +this.ends +1418385211 +1 +this.ends[..] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1554 +1504 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1554 +1504 i -7 +1 1 return 1 @@ -40794,16 +40692,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1555 +1505 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1555 +1505 i -7 +1 1 return 1 @@ -40811,16 +40709,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1556 +1506 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1556 +1506 i -7 +1 1 return 1 @@ -40828,16 +40726,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1557 +1507 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1557 +1507 i -11 +7 1 return 1 @@ -40845,16 +40743,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1558 +1508 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1558 +1508 i -11 +7 1 return 1 @@ -40862,16 +40760,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1559 +1509 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1559 +1509 i -11 +7 1 return 1 @@ -40879,96 +40777,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1547 +1503 this -1682463303 +1291113768 1 this.begins -633075331 +2005167404 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1858609436 +1418385211 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -1540 +1498 this -1682463303 +1291113768 1 this.begins -633075331 +2005167404 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1858609436 +1418385211 1 this.ends[..] -[1 7 11] +[1 7] 1 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1560 +1510 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 other -1682463303 +1291113768 1 other.begins -633075331 +2005167404 1 other.begins[..] -[1 7 11] +[1 7] 1 other.ends -1858609436 +1418385211 1 other.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1561 +1511 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40976,18 +40874,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1562 +1512 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -40995,14 +40893,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1563 +1513 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1563 +1513 i 523 1 @@ -41012,14 +40910,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1564 +1514 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1564 +1514 i 527 1 @@ -41029,18 +40927,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1562 +1512 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41048,18 +40946,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1565 +1515 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41067,14 +40965,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1566 +1516 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1566 +1516 i 523 1 @@ -41084,14 +40982,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1567 +1517 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1567 +1517 i 527 1 @@ -41101,18 +40999,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1565 +1515 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41120,18 +41018,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1561 +1511 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41142,18 +41040,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1568 +1518 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41161,18 +41059,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1569 +1519 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41180,14 +41078,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1570 +1520 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1570 +1520 i 523 1 @@ -41197,14 +41095,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1571 +1521 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1571 +1521 i 527 1 @@ -41214,18 +41112,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1569 +1519 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41233,18 +41131,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1572 +1522 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41252,14 +41150,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1573 +1523 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1573 +1523 i 523 1 @@ -41269,14 +41167,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1574 +1524 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1574 +1524 i 527 1 @@ -41286,18 +41184,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1572 +1522 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41305,18 +41203,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1568 +1518 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -41327,156 +41225,54 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1575 +1525 this -1682463303 +1291113768 1 this.begins -633075331 +2005167404 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1858609436 +1418385211 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1576 +1526 this -1682463303 +1291113768 1 this.begins -633075331 -1 -this.begins[..] -[1 7 11] -1 -this.ends -1858609436 -1 -this.ends[..] -[1 7 11] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1577 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1577 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1578 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1578 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1579 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1579 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1580 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1580 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1581 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1581 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1582 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1582 -i -11 +2005167404 1 -return +this.begins[..] +[1 7] +1 +this.ends +1418385211 1 +this.ends[..] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1583 +1527 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1583 +1527 i -7 +1 1 return 1 @@ -41484,16 +41280,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1584 +1528 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1584 +1528 i -7 +1 1 return 1 @@ -41501,16 +41297,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1585 +1529 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1585 +1529 i -7 +1 1 return 1 @@ -41518,16 +41314,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1586 +1530 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1586 +1530 i -11 +7 1 return 1 @@ -41535,16 +41331,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1587 +1531 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1587 +1531 i -11 +7 1 return 1 @@ -41552,16 +41348,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1588 +1532 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1588 +1532 i -11 +7 1 return 1 @@ -41569,52 +41365,52 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1576 +1526 this -1682463303 +1291113768 1 this.begins -633075331 +2005167404 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1858609436 +1418385211 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1589 +1533 this -1682463303 +1291113768 1 this.begins -633075331 +2005167404 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1858609436 +1418385211 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1590 +1534 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1590 +1534 i 1 1 @@ -41624,14 +41420,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1591 +1535 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1591 +1535 i 1 1 @@ -41641,14 +41437,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1592 +1536 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1592 +1536 i 1 1 @@ -41658,14 +41454,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1593 +1537 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1593 +1537 i 7 1 @@ -41675,16 +41471,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1594 +1538 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1594 +1538 i -1 +7 1 return 1 @@ -41692,33 +41488,121 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1595 +1539 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1595 +1539 i -11 +7 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1533 +this +1291113768 +1 +this.begins +2005167404 +1 +this.begins[..] +[1 7] +1 +this.ends +1418385211 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.min():::EXIT210 +this_invocation_nonce +1525 +this +1291113768 +1 +this.begins +2005167404 +1 +this.begins[..] +[1 7] +1 +this.ends +1418385211 +1 +this.ends[..] +[1 7] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +1510 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] +1 +other +1291113768 +1 +other.begins +2005167404 +1 +other.begins[..] +[1 7] +1 +other.ends +1418385211 +1 +other.ends[..] +[1 7] 1 return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +1540 +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1596 +1541 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1596 +1541 i -7 +1 1 return 1 @@ -41726,16 +41610,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1597 +1542 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1597 +1542 i -7 +1 1 return 1 @@ -41743,14 +41627,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1598 +1543 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1598 +1543 i 7 1 @@ -41760,16 +41644,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1599 +1544 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1599 +1544 i -11 +7 1 return 1 @@ -41777,14 +41661,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1600 +1545 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1600 +1545 i 11 1 @@ -41794,14 +41678,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1601 +1546 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1601 +1546 i 11 1 @@ -41809,149 +41693,71 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1589 +1547 this -1682463303 +1282811396 1 this.begins -633075331 +641853239 1 this.begins[..] [1 7 11] 1 this.ends -1858609436 +1920467934 1 this.ends[..] [1 7 11] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1575 -this -1682463303 -1 -this.begins -633075331 -1 -this.begins[..] -[1 7 11] -1 -this.ends -1858609436 -1 -this.ends[..] -[1 7 11] -1 -return +1548 +i 1 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1560 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 -other -1682463303 -1 -other.begins -633075331 -1 -other.begins[..] -[1 7 11] -1 -other.ends -1858609436 +1548 +i 1 -other.ends[..] -[1 7 11] 1 return -false +1 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1602 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 -other -175408781 -1 -other.begins -315138752 -1 -other.begins[..] -[523] -1 -other.ends -2114874018 +1549 +i 1 -other.ends[..] -[527] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1603 -this -175408781 -1 -this.begins -315138752 +1549 +i 1 -this.begins[..] -[523] 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1604 +1550 i -523 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1604 +1550 i -523 +1 1 return 1 @@ -41959,90 +41765,67 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1605 +1551 i -527 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1605 +1551 i -527 +7 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1603 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 +1552 +i 1 -this.ends[..] -[527] 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1606 -this -175408781 -1 -this.begins -315138752 +1552 +i 1 -this.begins[..] -[523] 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1607 -this -175408781 -1 -this.begins -315138752 +1553 +i +11 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1553 +i +11 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1608 +1554 i -523 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1608 +1554 i -523 +7 1 return 1 @@ -42050,112 +41833,67 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1609 +1555 i -527 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1609 +1555 i -527 +7 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1607 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1556 +i +7 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1606 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1556 +i +7 1 return -false -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -1610 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 1 -this.ends[..] -[527] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1611 -this -175408781 -1 -this.begins -315138752 +1557 +i +11 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1557 +i +11 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1612 +1558 i -523 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1612 +1558 i -523 +11 1 return 1 @@ -42163,16 +41901,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1613 +1559 i -527 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1613 +1559 i -527 +11 1 return 1 @@ -42180,59 +41918,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1611 +1547 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] +[1 7 11] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -1610 +1540 this -175408781 +1282811396 1 this.begins -315138752 +641853239 +1 +this.begins[..] +[1 7 11] +1 +this.ends +1920467934 +1 +this.ends[..] +[1 7 11] +1 +numbers +1682463303 +1 +numbers.toString +"1,7,11" +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +this_invocation_nonce +1560 +this +1896294051 +1 +this.begins +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -return -false +other +1282811396 +1 +other.begins +641853239 +1 +other.begins[..] +[1 7 11] +1 +other.ends +1920467934 +1 +other.ends[..] +[1 7 11] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1614 +1561 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42240,18 +42015,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1615 +1562 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42259,14 +42034,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1616 +1563 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1616 +1563 i 523 1 @@ -42276,14 +42051,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1617 +1564 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1617 +1564 i 527 1 @@ -42293,18 +42068,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1615 +1562 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42312,18 +42087,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1618 +1565 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42331,14 +42106,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1619 +1566 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1619 +1566 i 523 1 @@ -42348,14 +42123,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1620 +1567 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1620 +1567 i 527 1 @@ -42365,18 +42140,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1618 +1565 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42384,18 +42159,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1614 +1561 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42406,18 +42181,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1621 +1568 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42425,18 +42200,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1622 +1569 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42444,14 +42219,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1623 +1570 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1623 +1570 i 523 1 @@ -42461,14 +42236,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1624 +1571 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1624 +1571 i 527 1 @@ -42478,18 +42253,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1622 +1569 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42497,18 +42272,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1625 +1572 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42516,14 +42291,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1626 +1573 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1626 +1573 i 523 1 @@ -42533,14 +42308,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1627 +1574 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1627 +1574 i 527 1 @@ -42550,18 +42325,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1625 +1572 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42569,18 +42344,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1621 +1568 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -42591,54 +42366,54 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1628 +1575 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1629 +1576 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1630 +1577 i -523 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1630 +1577 i -523 +1 1 return 1 @@ -42646,71 +42421,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1631 +1578 i -527 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1631 +1578 i -527 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1629 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 +1579 +i 1 -this.ends[..] -[527] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1632 -this -175408781 -1 -this.begins -315138752 +1579 +i 1 -this.begins[..] -[523] 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1633 +1580 i -523 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1633 +1580 i -523 +7 1 return 1 @@ -42718,112 +42472,67 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1634 +1581 i -527 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1634 +1581 i -527 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1632 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1582 +i +11 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1628 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1582 +i +11 1 return -523 +1 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1635 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1583 +i +7 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1636 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] +1583 +i +7 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1637 +1584 i -523 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1637 +1584 i -523 +7 1 return 1 @@ -42831,71 +42540,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1638 +1585 i -527 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1638 +1585 i -527 +7 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1636 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] +1586 +i +11 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1639 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] +1586 +i +11 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1640 +1587 i -523 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1640 +1587 i -523 +11 1 return 1 @@ -42903,16 +42591,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1641 +1588 i -527 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1641 +1588 i -527 +11 1 return 1 @@ -42920,98 +42608,105 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1639 +1576 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] +[1 7 11] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1635 +1589 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] +[1 7 11] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1590 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1590 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1591 +i 1 -return -527 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1642 -this -175408781 +1591 +i 1 -this.begins -315138752 1 -this.begins[..] -[523] +return 1 -this.ends -2114874018 1 -this.ends[..] -[527] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1592 +i 1 -n -523 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1643 -this -175408781 -1 -this.begins -315138752 +1592 +i 1 -this.begins[..] -[523] 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1644 +1593 i -523 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1644 +1593 i -523 +7 1 return 1 @@ -43019,52 +42714,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1645 +1594 i -527 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1645 +1594 i -527 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1643 -this -175408781 -1 -this.begins -315138752 +1595 +i +11 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1595 +i +11 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1646 +1596 i -523 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1646 +1596 i -523 +7 1 return 1 @@ -43072,52 +42765,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1647 +1597 i -523 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1647 +1597 i -523 +7 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1648 -this -175408781 -1 -this.begins -315138752 +1598 +i +7 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1598 +i +7 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1649 +1599 i -523 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1649 +1599 i -523 +11 1 return 1 @@ -43125,207 +42816,164 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1650 +1600 i -527 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1650 +1600 i -527 +11 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1648 -this -175408781 -1 -this.begins -315138752 +1601 +i +11 1 -this.begins[..] -[523] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1601 +i +11 1 -this.ends -2114874018 +return 1 -this.ends[..] -[527] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1642 +1589 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] -1 -n -523 -1 -return -true +[1 7 11] 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1651 +1575 this -175408781 +1282811396 1 this.begins -315138752 +641853239 1 this.begins[..] -[523] +[1 7 11] 1 this.ends -2114874018 +1920467934 1 this.ends[..] -[527] +[1 7 11] +1 +return 1 -n -523 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -1652 +1560 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1653 -i -523 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1653 -i -523 +other +1282811396 1 -return +other.begins +641853239 1 +other.begins[..] +[1 7 11] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1654 -i -527 +other.ends +1920467934 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1654 -i -527 +other.ends[..] +[1 7 11] 1 return -1 +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1652 +1602 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1655 -i -523 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1655 -i -523 -1 -return -1 +other +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1656 -i -523 +other.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1656 -i -523 +other.begins[..] +[523] 1 -return +other.ends +1209669119 1 +other.ends[..] +[527] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1657 +1603 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -43333,14 +42981,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1658 +1604 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1658 +1604 i 523 1 @@ -43350,14 +42998,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1659 +1605 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1659 +1605 i 527 1 @@ -43367,62 +43015,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1657 +1603 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1651 +1606 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -n -523 -1 -return -true -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1660 +1607 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -43430,14 +43072,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1661 +1608 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1661 +1608 i 523 1 @@ -43447,14 +43089,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1662 +1609 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1662 +1609 i 527 1 @@ -43464,203 +43106,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1660 +1607 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1602 +1606 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -175408781 -1 -other.begins -315138752 -1 -other.begins[..] -[523] -1 -other.ends -2114874018 -1 -other.ends[..] -[527] -1 -return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -1663 -numbers -603856241 -1 -numbers.toString -"1,100,10" -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1664 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1664 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1665 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1665 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1666 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1666 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1667 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1667 -i -100 -1 return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1668 -i -10 +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1668 -i -10 +1610 +this +1896294051 1 -return -0 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1669 -i -10 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1669 -i -10 +this.ends +1209669119 1 -return -0 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1670 +1611 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1671 +1612 i -1 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1671 +1612 i -1 +523 1 return 1 @@ -43668,283 +43202,280 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1672 +1613 i -1 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1672 +1613 i -1 +527 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1673 -i -1 +1611 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1673 -i +this.begins +1684015092 1 +this.begins[..] +[523] 1 -return +this.ends +1209669119 1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1674 -i -100 +1610 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1674 -i -100 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 return -0 +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1675 -i +1614 +this +1896294051 +1 +this.begins +1684015092 1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1675 -i +1615 +this +1896294051 +1 +this.begins +1684015092 1 +this.begins[..] +[523] 1 -return +this.ends +1209669119 1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1676 +1616 i -10 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1676 +1616 i -10 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1677 +1617 i -100 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1677 +1617 i -100 +527 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1678 -i -100 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1678 -i -100 +1615 +this +1896294051 1 -return -0 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1679 -i -100 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1679 -i -100 +this.ends +1209669119 1 -return -0 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1680 -i -10 +1618 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1680 -i -10 +this.begins +1684015092 1 -return -0 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1681 +1619 i -10 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1681 +1619 i -10 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1682 +1620 i -10 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1682 +1620 i -10 +527 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1670 +1618 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1663 +1614 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] -1 -numbers -603856241 +[527] 1 -numbers.toString -"1,100,10" +return +523 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1683 +1621 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -1920387277 -1 -other.begins -1414147750 -1 -other.begins[..] -[1 100 10] -1 -other.ends -775931202 -1 -other.ends[..] -[1 100 10] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1684 +1622 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -43952,14 +43483,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1685 +1623 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1685 +1623 i 523 1 @@ -43969,14 +43500,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1686 +1624 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1686 +1624 i 527 1 @@ -43986,37 +43517,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1684 -this -175408781 -1 -this.begins -315138752 -1 -this.begins[..] -[523] -1 -this.ends -2114874018 -1 -this.ends[..] -[527] -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -1687 +1622 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -44024,18 +43536,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1688 +1625 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -44043,14 +43555,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1689 +1626 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1689 +1626 i 523 1 @@ -44060,14 +43572,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1690 +1627 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1690 +1627 i 527 1 @@ -44077,95 +43589,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1688 +1625 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1687 +1621 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 return -false +527 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1691 +1628 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1692 +1629 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1693 +1630 i -1 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1693 +1630 i -1 +523 1 return 1 @@ -44173,265 +43685,355 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1694 +1631 i -1 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1694 +1631 i -1 +527 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1695 -i +1629 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1695 -i +1632 +this +1896294051 1 +this.begins +1684015092 1 -return +this.begins[..] +[523] 1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1696 +1633 i -100 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1696 +1633 i -100 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1697 +1634 i -1 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1697 +1634 i -1 +527 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1698 -i -10 +1632 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1698 -i -10 +1628 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] +1 +return +523 +1 + +MapQuick1.StreetNumberSet.max():::ENTER +this_invocation_nonce +1635 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1636 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] 1 -return -0 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1699 +1637 i -100 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1699 +1637 i -100 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1700 +1638 i -100 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1700 +1638 i -100 +527 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1701 -i -100 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1701 -i -100 +1636 +this +1896294051 1 -return -0 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1702 -i -10 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1702 -i -10 +1639 +this +1896294051 1 -return -0 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1703 +1640 i -10 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1703 +1640 i -10 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1704 +1641 i -10 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1704 +1641 i -10 +527 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1692 +1639 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1691 +1635 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 return -false +527 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1705 +1642 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +n +523 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1706 +1643 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -44439,14 +44041,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1707 +1644 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1707 +1644 i 523 1 @@ -44456,14 +44058,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1708 +1645 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1708 +1645 i 527 1 @@ -44473,37 +44075,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1706 +1643 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1646 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1646 +i +523 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1647 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1647 +i +523 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1709 +1648 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -44511,14 +44147,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1710 +1649 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1710 +1649 i 523 1 @@ -44528,14 +44164,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1711 +1650 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1711 +1650 i 527 1 @@ -44545,78 +44181,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1709 +1648 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -1705 +1642 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -return +n 523 1 +return +true +1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1712 +1651 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +n +523 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1713 +1652 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -44624,14 +44266,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1714 +1653 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1714 +1653 i 523 1 @@ -44641,14 +44283,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1715 +1654 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1715 +1654 i 527 1 @@ -44658,37 +44300,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1713 +1652 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1655 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1655 +i +523 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1656 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1656 +i +523 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1716 +1657 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -44696,14 +44372,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1717 +1658 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1717 +1658 i 523 1 @@ -44713,14 +44389,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1718 +1659 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1718 +1659 i 527 1 @@ -44730,95 +44406,79 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1716 +1657 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -1712 +1651 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -return -527 -1 - -MapQuick1.StreetNumberSet.min():::ENTER -this_invocation_nonce -1719 -this -1920387277 -1 -this.begins -1414147750 -1 -this.begins[..] -[1 100 10] -1 -this.ends -775931202 +n +523 1 -this.ends[..] -[1 100 10] +return +true 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1720 +1660 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1721 +1661 i -1 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1721 +1661 i -1 +523 1 return 1 @@ -44826,133 +44486,131 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1722 +1662 i -1 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1722 +1662 i -1 +527 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1723 -i -1 +1660 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1723 -i +this.begins +1684015092 1 +this.begins[..] +[523] 1 -return +this.ends +1209669119 1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 this_invocation_nonce -1724 -i -100 +1602 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1724 -i -100 +this.begins +1684015092 1 -return -0 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1725 -i +this.ends +1209669119 1 +this.ends[..] +[527] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1725 -i +other +1896294051 1 +other.begins +1684015092 1 -return +other.begins[..] +[523] 1 +other.ends +1209669119 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1726 -i -10 +other.ends[..] +[527] +1 +return +true 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -1726 -i -10 +1663 +numbers +1414147750 1 -return -0 +numbers.toString +"1,100,10" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1727 +1664 i -100 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1727 +1664 i -100 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1728 +1665 i -100 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1728 +1665 i -100 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1729 +1666 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1729 +1666 i 100 1 @@ -44962,16 +44620,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1730 +1667 i -10 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1730 +1667 i -10 +100 1 return 0 @@ -44979,14 +44637,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1731 +1668 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1731 +1668 i 10 1 @@ -44996,14 +44654,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1732 +1669 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1732 +1669 i 10 1 @@ -45011,39 +44669,20 @@ return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -1720 -this -1920387277 -1 -this.begins -1414147750 -1 -this.begins[..] -[1 100 10] -1 -this.ends -775931202 -1 -this.ends[..] -[1 100 10] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1733 +1670 this -1920387277 +1883840933 1 this.begins -1414147750 +233996206 1 this.begins[..] [1 100 10] 1 this.ends -775931202 +614685048 1 this.ends[..] [1 100 10] @@ -45051,14 +44690,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1734 +1671 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1734 +1671 i 1 1 @@ -45068,14 +44707,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1735 +1672 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1735 +1672 i 1 1 @@ -45085,14 +44724,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1736 +1673 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1736 +1673 i 1 1 @@ -45102,14 +44741,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1737 +1674 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1737 +1674 i 100 1 @@ -45119,14 +44758,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1738 +1675 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1738 +1675 i 1 1 @@ -45136,14 +44775,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1739 +1676 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1739 +1676 i 10 1 @@ -45153,14 +44792,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1740 +1677 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1740 +1677 i 100 1 @@ -45170,14 +44809,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1741 +1678 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1741 +1678 i 100 1 @@ -45187,14 +44826,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1742 +1679 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1742 +1679 i 100 1 @@ -45204,14 +44843,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1743 +1680 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1743 +1680 i 10 1 @@ -45221,14 +44860,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1744 +1681 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1744 +1681 i 10 1 @@ -45238,14 +44877,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1745 +1682 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1745 +1682 i 10 1 @@ -45255,95 +44894,113 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1733 +1670 this -1920387277 +1883840933 1 this.begins -1414147750 +233996206 1 this.begins[..] [1 100 10] 1 this.ends -775931202 +614685048 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -1719 +1663 this -1920387277 +1883840933 1 this.begins -1414147750 +233996206 1 this.begins[..] [1 100 10] 1 this.ends -775931202 +614685048 1 this.ends[..] [1 100 10] 1 -return +numbers +1414147750 1 +numbers.toString +"1,100,10" 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -1746 +1683 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] +[527] +1 +other +1883840933 +1 +other.begins +233996206 +1 +other.begins[..] +[1 100 10] +1 +other.ends +614685048 +1 +other.ends[..] [1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1747 +1684 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1748 +1685 i -1 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1748 +1685 i -1 +523 1 return 1 @@ -45351,205 +45008,167 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1749 +1686 i -1 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1749 +1686 i -1 +527 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1750 -i -1 +1684 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1750 -i +this.begins +1684015092 1 +this.begins[..] +[523] 1 -return +this.ends +1209669119 1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1751 -i -100 +1687 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1751 -i -100 +this.begins +1684015092 1 -return -0 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1752 -i +this.ends +1209669119 1 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1752 -i -1 -1 -return +1688 +this +1896294051 1 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1753 -i -10 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1753 -i -10 +this.ends +1209669119 1 -return -0 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1754 +1689 i -100 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1754 +1689 i -100 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1755 +1690 i -100 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1755 +1690 i -100 +527 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1756 -i -100 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1756 -i -100 +1688 +this +1896294051 1 -return -0 +this.begins +1684015092 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1757 -i -10 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1757 -i -10 +this.ends +1209669119 1 -return -0 +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -1758 -i -10 +1687 +this +1896294051 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1758 -i -10 +this.begins +1684015092 1 -return -0 +this.begins[..] +[523] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1759 -i -10 +this.ends +1209669119 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1759 -i -10 +this.ends[..] +[527] 1 return -0 +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -1747 +1691 this -1920387277 +1883840933 1 this.begins -1414147750 +233996206 1 this.begins[..] [1 100 10] 1 this.ends -775931202 +614685048 1 this.ends[..] [1 100 10] @@ -45557,18 +45176,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1760 +1692 this -1920387277 +1883840933 1 this.begins -1414147750 +233996206 1 this.begins[..] [1 100 10] 1 this.ends -775931202 +614685048 1 this.ends[..] [1 100 10] @@ -45576,14 +45195,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1761 +1693 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1761 +1693 i 1 1 @@ -45593,14 +45212,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1762 +1694 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1762 +1694 i 1 1 @@ -45610,14 +45229,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1763 +1695 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1763 +1695 i 1 1 @@ -45627,14 +45246,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1764 +1696 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1764 +1696 i 100 1 @@ -45644,14 +45263,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1765 +1697 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1765 +1697 i 1 1 @@ -45661,14 +45280,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1766 +1698 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1766 +1698 i 10 1 @@ -45678,14 +45297,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1767 +1699 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1767 +1699 i 100 1 @@ -45695,14 +45314,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1768 +1700 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1768 +1700 i 100 1 @@ -45712,14 +45331,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1769 +1701 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1769 +1701 i 100 1 @@ -45729,14 +45348,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1770 +1702 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1770 +1702 i 10 1 @@ -45746,14 +45365,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1771 +1703 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1771 +1703 i 10 1 @@ -45763,14 +45382,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1772 +1704 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1772 +1704 i 10 1 @@ -45780,59 +45399,150 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1760 +1692 this -1920387277 +1883840933 1 this.begins -1414147750 +233996206 1 this.begins[..] [1 100 10] 1 this.ends -775931202 +614685048 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +this_invocation_nonce +1691 +this +1883840933 +1 +this.begins +233996206 +1 +this.begins[..] +[1 100 10] +1 +this.ends +614685048 +1 +this.ends[..] +[1 100 10] +1 +return +false +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +1705 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1706 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1707 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1707 +i +523 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1708 +i +527 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1708 +i +527 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1746 +1706 this -1920387277 +1896294051 1 this.begins -1414147750 +1684015092 1 this.begins[..] -[1 100 10] +[523] 1 this.ends -775931202 +1209669119 1 this.ends[..] -[1 100 10] -1 -return -100 +[527] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1773 +1709 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] @@ -45840,14 +45550,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1774 +1710 i 523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1774 +1710 i 523 1 @@ -45857,14 +45567,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1775 +1711 i 527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1775 +1711 i 527 1 @@ -45874,360 +45584,450 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1773 +1709 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1683 +1705 this -175408781 +1896294051 1 this.begins -315138752 +1684015092 1 this.begins[..] [523] 1 this.ends -2114874018 +1209669119 1 this.ends[..] [527] 1 -other -1920387277 +return +523 1 -other.begins -1414147750 + +MapQuick1.StreetNumberSet.max():::ENTER +this_invocation_nonce +1712 +this +1896294051 1 -other.begins[..] -[1 100 10] +this.begins +1684015092 1 -other.ends -775931202 +this.begins[..] +[523] 1 -other.ends[..] -[1 100 10] +this.ends +1209669119 1 -return -false +this.ends[..] +[527] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1776 -numbers -22069592 +1713 +this +1896294051 1 -numbers.toString -"356-360" +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1777 +1714 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1777 +1714 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1778 +1715 i -360 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1778 +1715 i -360 +527 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1713 +this +1896294051 +1 +this.begins +1684015092 +1 +this.begins[..] +[523] +1 +this.ends +1209669119 +1 +this.ends[..] +[527] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1779 +1716 this -1160003871 +1896294051 1 this.begins -1075738627 +1684015092 1 this.begins[..] -[356] +[523] 1 this.ends -282828951 +1209669119 1 this.ends[..] -[360] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1780 +1717 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1780 +1717 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1781 +1718 i -360 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1781 +1718 i -360 +527 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1779 +1716 this -1160003871 +1896294051 1 this.begins -1075738627 +1684015092 1 this.begins[..] -[356] +[523] 1 this.ends -282828951 +1209669119 1 this.ends[..] -[360] +[527] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1776 +1712 this -1160003871 +1896294051 1 this.begins -1075738627 +1684015092 1 this.begins[..] -[356] +[523] 1 this.ends -282828951 +1209669119 1 this.ends[..] -[360] -1 -numbers -22069592 +[527] 1 -numbers.toString -"356-360" +return +527 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -1782 +1719 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] -1 -n -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1783 +1720 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1784 +1721 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1784 +1721 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1785 +1722 i -360 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1785 +1722 i -360 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1783 -this -1160003871 +1723 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1723 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1786 +1724 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1724 i +100 +1 +return 0 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1725 +i +1 +1 + MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1786 +1725 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1726 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1726 i +10 +1 +return 0 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1727 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1727 +i +100 +1 return 0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1787 +1728 i -356 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1787 +1728 i -356 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1788 -this -1160003871 +1729 +i +100 1 -this.begins -1075738627 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1729 +i +100 1 -this.begins[..] -[356] +return +0 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1730 +i +10 1 -this.ends[..] -[360] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1730 +i +10 +1 +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1789 +1731 i -356 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1789 +1731 i -356 +10 1 return 0 @@ -46235,16 +46035,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1790 +1732 i -360 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1790 +1732 i -360 +10 1 return 0 @@ -46252,101 +46052,139 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1788 +1720 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1782 +1733 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1734 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1734 +i 1 -n -0 1 return -false +1 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1791 -this -1160003871 +1735 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1735 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return 1 -n +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1736 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1736 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1737 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1737 +i +100 +1 +return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1792 -this -1160003871 +1738 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1738 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1793 +1739 i -356 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1793 +1739 i -356 +10 1 return 0 @@ -46354,52 +46192,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1794 +1740 i -360 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1794 +1740 i -360 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -1792 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1795 +1741 i -0 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1795 +1741 i -0 +100 1 return 0 @@ -46407,52 +46226,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1796 +1742 i -356 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1796 +1742 i -356 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1797 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] +1743 +i +10 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1743 +i +10 1 -this.ends[..] -[360] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1798 +1744 i -356 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1798 +1744 i -356 +10 1 return 0 @@ -46460,16 +46277,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1799 +1745 i -360 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1799 +1745 i -360 +10 1 return 0 @@ -46477,286 +46294,180 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1797 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.size():::ENTER -this_invocation_nonce -1800 +1733 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -1801 +1719 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1802 -i -356 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1802 -i -356 +[1 100 10] 1 return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -1803 -i -360 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -1803 -i -360 -1 -return -0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -1801 +1746 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1804 +1747 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1805 +1748 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1805 +1748 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1806 +1749 i -360 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1806 +1749 i -360 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1804 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 +1750 +i 1 -this.ends[..] -[360] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1800 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 +1750 +i 1 -this.ends[..] -[360] 1 return -3 +1 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1791 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] +1751 +i +100 1 -n -0 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1751 +i +100 1 return 0 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1807 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] +1752 +i 1 -n -857 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1808 -this -1160003871 -1 -this.begins -1075738627 +1752 +i 1 -this.begins[..] -[356] 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1809 +1753 i -356 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1809 +1753 i -356 +10 1 return 0 @@ -46764,105 +46475,84 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1810 +1754 i -360 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1810 +1754 i -360 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -1808 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1811 +1755 i -857 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1811 +1755 i -857 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1812 +1756 i -356 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1812 +1756 i -356 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1813 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] +1757 +i +10 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1757 +i +10 1 -this.ends[..] -[360] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1814 +1758 i -356 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1814 +1758 i -356 +10 1 return 0 @@ -46870,16 +46560,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1815 +1759 i -360 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1815 +1759 i -360 +10 1 return 0 @@ -46887,207 +46577,224 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1813 +1747 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1807 +1760 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1761 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1761 +i 1 -n -857 1 return -false +1 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1816 -this -1160003871 +1762 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1762 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return 1 -n -857 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1817 -this -1160003871 +1763 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1763 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1764 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1764 +i +100 +1 +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1818 +1765 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1818 +1765 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1819 +1766 i -360 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1819 +1766 i -360 +10 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1817 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] +1767 +i +100 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1767 +i +100 1 -this.ends[..] -[360] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1820 +1768 i -857 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1820 +1768 i -857 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1821 +1769 i -356 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1821 +1769 i -356 +100 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1822 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] +1770 +i +10 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1770 +i +10 1 -this.ends[..] -[360] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1823 +1771 i -356 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1823 +1771 i -356 +10 1 return 0 @@ -47095,16 +46802,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1824 +1772 i -360 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1824 +1772 i -360 +10 1 return 0 @@ -47112,143 +46819,174 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1822 +1760 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -1825 +1746 this -1160003871 +1883840933 1 this.begins -1075738627 +233996206 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +614685048 1 this.ends[..] -[360] +[1 100 10] +1 +return +100 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1826 +1773 this -1160003871 +1896294051 1 this.begins -1075738627 +1684015092 1 this.begins[..] -[356] +[523] 1 this.ends -282828951 +1209669119 1 this.ends[..] -[360] +[527] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1827 +1774 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1827 +1774 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1828 +1775 i -360 +527 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1828 +1775 i -360 +527 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1826 +1773 this -1160003871 +1896294051 1 this.begins -1075738627 +1684015092 1 this.begins[..] -[356] +[523] 1 this.ends -282828951 +1209669119 1 this.ends[..] -[360] +[527] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 this_invocation_nonce -1829 +1683 this -1160003871 +1896294051 1 this.begins -1075738627 +1684015092 1 this.begins[..] -[356] +[523] 1 this.ends -282828951 +1209669119 1 this.ends[..] -[360] +[527] +1 +other +1883840933 +1 +other.begins +233996206 +1 +other.begins[..] +[1 100 10] +1 +other.ends +614685048 +1 +other.ends[..] +[1 100 10] +1 +return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +1776 +numbers +385337537 +1 +numbers.toString +"356-360" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1830 +1777 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1830 +1777 i 356 1 @@ -47258,14 +46996,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1831 +1778 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1831 +1778 i 360 1 @@ -47273,108 +47011,139 @@ return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1829 +1779 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1825 +1780 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1780 +i +356 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1781 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1781 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1779 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -return -3 -1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -1816 +1776 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -857 +numbers +385337537 1 -return -3 +numbers.toString +"356-360" 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1832 +1782 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -690 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1833 +1783 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47382,14 +47151,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1834 +1784 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1834 +1784 i 356 1 @@ -47399,14 +47168,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1835 +1785 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1835 +1785 i 360 1 @@ -47416,18 +47185,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1833 +1783 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47435,16 +47204,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1836 +1786 i -690 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1836 +1786 i -690 +0 1 return 0 @@ -47452,14 +47221,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1837 +1787 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1837 +1787 i 356 1 @@ -47469,18 +47238,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1838 +1788 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47488,14 +47257,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1839 +1789 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1839 +1789 i 356 1 @@ -47505,14 +47274,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1840 +1790 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1840 +1790 i 360 1 @@ -47522,18 +47291,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1838 +1788 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47541,24 +47310,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1832 +1782 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -690 +0 1 return false @@ -47566,40 +47335,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1841 +1791 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -690 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1842 +1792 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47607,14 +47376,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1843 +1793 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1843 +1793 i 356 1 @@ -47624,14 +47393,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1844 +1794 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1844 +1794 i 360 1 @@ -47641,18 +47410,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1842 +1792 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47660,16 +47429,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1845 +1795 i -690 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1845 +1795 i -690 +0 1 return 0 @@ -47677,14 +47446,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1846 +1796 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1846 +1796 i 356 1 @@ -47694,18 +47463,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1847 +1797 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47713,14 +47482,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1848 +1798 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1848 +1798 i 356 1 @@ -47730,14 +47499,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1849 +1799 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1849 +1799 i 360 1 @@ -47747,18 +47516,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1847 +1797 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47766,18 +47535,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1850 +1800 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47785,18 +47554,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1851 +1801 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47804,14 +47573,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1852 +1802 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1852 +1802 i 356 1 @@ -47821,14 +47590,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1853 +1803 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1853 +1803 i 360 1 @@ -47838,18 +47607,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1851 +1801 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47857,18 +47626,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1854 +1804 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47876,14 +47645,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1855 +1805 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1855 +1805 i 356 1 @@ -47893,14 +47662,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1856 +1806 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1856 +1806 i 360 1 @@ -47910,18 +47679,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1854 +1804 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47929,18 +47698,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1850 +1800 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -47951,65 +47720,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1841 +1791 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -690 +0 1 return -3 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1857 +1807 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -523 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1858 +1808 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48017,14 +47786,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1859 +1809 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1859 +1809 i 356 1 @@ -48034,14 +47803,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1860 +1810 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1860 +1810 i 360 1 @@ -48051,18 +47820,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1858 +1808 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48070,16 +47839,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1861 +1811 i -523 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1861 +1811 i -523 +857 1 return 1 @@ -48087,14 +47856,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1862 +1812 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1862 +1812 i 356 1 @@ -48104,18 +47873,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1863 +1813 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48123,14 +47892,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1864 +1814 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1864 +1814 i 356 1 @@ -48140,14 +47909,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1865 +1815 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1865 +1815 i 360 1 @@ -48157,18 +47926,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1863 +1813 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48176,24 +47945,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1857 +1807 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -523 +857 1 return false @@ -48201,40 +47970,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1866 +1816 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -523 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1867 +1817 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48242,14 +48011,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1868 +1818 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1868 +1818 i 356 1 @@ -48259,14 +48028,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1869 +1819 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1869 +1819 i 360 1 @@ -48276,18 +48045,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1867 +1817 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48295,16 +48064,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1870 +1820 i -523 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1870 +1820 i -523 +857 1 return 1 @@ -48312,14 +48081,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1871 +1821 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1871 +1821 i 356 1 @@ -48329,18 +48098,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1872 +1822 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48348,14 +48117,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1873 +1823 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1873 +1823 i 356 1 @@ -48365,14 +48134,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1874 +1824 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1874 +1824 i 360 1 @@ -48382,18 +48151,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1872 +1822 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48401,18 +48170,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1875 +1825 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48420,18 +48189,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1876 +1826 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48439,14 +48208,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1877 +1827 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1877 +1827 i 356 1 @@ -48456,14 +48225,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1878 +1828 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1878 +1828 i 360 1 @@ -48473,18 +48242,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1876 +1826 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48492,18 +48261,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1879 +1829 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48511,14 +48280,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1880 +1830 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1880 +1830 i 356 1 @@ -48528,14 +48297,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1881 +1831 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1881 +1831 i 360 1 @@ -48545,18 +48314,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1879 +1829 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48564,18 +48333,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1875 +1825 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48586,24 +48355,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1866 +1816 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -523 +857 1 return 3 @@ -48611,40 +48380,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1882 +1832 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -356 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1883 +1833 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48652,14 +48421,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1884 +1834 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1884 +1834 i 356 1 @@ -48669,14 +48438,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1885 +1835 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1885 +1835 i 360 1 @@ -48686,18 +48455,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1883 +1833 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48705,16 +48474,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1886 +1836 i -356 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1886 +1836 i -356 +690 1 return 0 @@ -48722,14 +48491,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1887 +1837 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1887 +1837 i 356 1 @@ -48739,18 +48508,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1888 +1838 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48758,14 +48527,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1889 +1839 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1889 +1839 i 356 1 @@ -48775,14 +48544,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1890 +1840 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1890 +1840 i 360 1 @@ -48792,84 +48561,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1888 +1838 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1882 +1832 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -356 +690 1 return -true +false 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1891 +1841 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -356 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1892 +1842 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48877,14 +48646,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1893 +1843 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1893 +1843 i 356 1 @@ -48894,14 +48663,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1894 +1844 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1894 +1844 i 360 1 @@ -48911,18 +48680,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1892 +1842 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48930,16 +48699,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1895 +1845 i -356 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1895 +1845 i -356 +690 1 return 0 @@ -48947,14 +48716,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1896 +1846 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1896 +1846 i 356 1 @@ -48964,18 +48733,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1897 +1847 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -48983,14 +48752,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1898 +1848 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1898 +1848 i 356 1 @@ -49000,14 +48769,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1899 +1849 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1899 +1849 i 360 1 @@ -49017,18 +48786,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1897 +1847 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49036,18 +48805,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1900 +1850 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49055,18 +48824,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1901 +1851 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49074,14 +48843,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1902 +1852 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1902 +1852 i 356 1 @@ -49091,14 +48860,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1903 +1853 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1903 +1853 i 360 1 @@ -49108,18 +48877,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1901 +1851 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49127,18 +48896,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1904 +1854 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49146,14 +48915,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1905 +1855 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1905 +1855 i 356 1 @@ -49163,14 +48932,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1906 +1856 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1906 +1856 i 360 1 @@ -49180,18 +48949,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1904 +1854 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49199,18 +48968,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1900 +1850 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49221,65 +48990,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1891 +1841 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -356 +690 1 return -0 +3 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1907 +1857 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -189 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1908 +1858 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49287,14 +49056,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1909 +1859 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1909 +1859 i 356 1 @@ -49304,14 +49073,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1910 +1860 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1910 +1860 i 360 1 @@ -49321,18 +49090,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1908 +1858 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49340,16 +49109,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1911 +1861 i -189 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1911 +1861 i -189 +523 1 return 1 @@ -49357,14 +49126,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1912 +1862 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1912 +1862 i 356 1 @@ -49374,18 +49143,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1913 +1863 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49393,14 +49162,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1914 +1864 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1914 +1864 i 356 1 @@ -49410,14 +49179,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1915 +1865 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1915 +1865 i 360 1 @@ -49427,18 +49196,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1913 +1863 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49446,24 +49215,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1907 +1857 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -189 +523 1 return false @@ -49471,40 +49240,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1916 +1866 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -189 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1917 +1867 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49512,14 +49281,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1918 +1868 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1918 +1868 i 356 1 @@ -49529,14 +49298,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1919 +1869 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1919 +1869 i 360 1 @@ -49546,18 +49315,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1917 +1867 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49565,16 +49334,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1920 +1870 i -189 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1920 +1870 i -189 +523 1 return 1 @@ -49582,14 +49351,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1921 +1871 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1921 +1871 i 356 1 @@ -49599,18 +49368,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1922 +1872 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49618,14 +49387,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1923 +1873 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1923 +1873 i 356 1 @@ -49635,14 +49404,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1924 +1874 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1924 +1874 i 360 1 @@ -49652,18 +49421,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1922 +1872 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49671,18 +49440,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1925 +1875 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49690,18 +49459,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1926 +1876 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49709,14 +49478,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1927 +1877 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1927 +1877 i 356 1 @@ -49726,14 +49495,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1928 +1878 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1928 +1878 i 360 1 @@ -49743,18 +49512,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1926 +1876 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49762,18 +49531,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1929 +1879 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49781,14 +49550,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1930 +1880 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1930 +1880 i 356 1 @@ -49798,14 +49567,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1931 +1881 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1931 +1881 i 360 1 @@ -49815,18 +49584,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1929 +1879 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49834,18 +49603,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1925 +1875 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49856,65 +49625,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1916 +1866 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -189 +523 1 return -0 +3 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1932 +1882 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -22 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1933 +1883 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49922,14 +49691,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1934 +1884 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1934 +1884 i 356 1 @@ -49939,14 +49708,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1935 +1885 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1935 +1885 i 360 1 @@ -49956,18 +49725,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1933 +1883 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -49975,16 +49744,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1936 +1886 i -22 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1936 +1886 i -22 +356 1 return 0 @@ -49992,14 +49761,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1937 +1887 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1937 +1887 i 356 1 @@ -50009,18 +49778,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1938 +1888 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50028,14 +49797,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1939 +1889 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1939 +1889 i 356 1 @@ -50045,14 +49814,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1940 +1890 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1940 +1890 i 360 1 @@ -50062,84 +49831,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1938 +1888 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -1932 +1882 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -22 +356 1 return -false +true 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1941 +1891 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -22 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1942 +1892 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50147,14 +49916,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1943 +1893 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1943 +1893 i 356 1 @@ -50164,14 +49933,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1944 +1894 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1944 +1894 i 360 1 @@ -50181,18 +49950,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1942 +1892 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50200,16 +49969,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1945 +1895 i -22 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1945 +1895 i -22 +356 1 return 0 @@ -50217,14 +49986,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1946 +1896 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1946 +1896 i 356 1 @@ -50234,18 +50003,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1947 +1897 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50253,14 +50022,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1948 +1898 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1948 +1898 i 356 1 @@ -50270,14 +50039,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1949 +1899 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1949 +1899 i 360 1 @@ -50287,18 +50056,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1947 +1897 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50306,18 +50075,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1950 +1900 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50325,18 +50094,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1951 +1901 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50344,14 +50113,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1952 +1902 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1952 +1902 i 356 1 @@ -50361,14 +50130,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1953 +1903 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1953 +1903 i 360 1 @@ -50378,18 +50147,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1951 +1901 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50397,18 +50166,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1954 +1904 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50416,14 +50185,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1955 +1905 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1955 +1905 i 356 1 @@ -50433,14 +50202,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1956 +1906 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1956 +1906 i 360 1 @@ -50450,18 +50219,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1954 +1904 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50469,18 +50238,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1950 +1900 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50491,24 +50260,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1941 +1891 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -22 +356 1 return 0 @@ -50516,40 +50285,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1957 +1907 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -879 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1958 +1908 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50557,14 +50326,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1959 +1909 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1959 +1909 i 356 1 @@ -50574,14 +50343,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1960 +1910 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1960 +1910 i 360 1 @@ -50591,18 +50360,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1958 +1908 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50610,16 +50379,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1961 +1911 i -879 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1961 +1911 i -879 +189 1 return 1 @@ -50627,14 +50396,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1962 +1912 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1962 +1912 i 356 1 @@ -50644,18 +50413,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1963 +1913 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50663,14 +50432,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1964 +1914 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1964 +1914 i 356 1 @@ -50680,14 +50449,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1965 +1915 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1965 +1915 i 360 1 @@ -50697,18 +50466,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1963 +1913 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50716,24 +50485,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1957 +1907 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -879 +189 1 return false @@ -50741,40 +50510,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1966 +1916 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -879 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1967 +1917 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50782,14 +50551,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1968 +1918 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1968 +1918 i 356 1 @@ -50799,14 +50568,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1969 +1919 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1969 +1919 i 360 1 @@ -50816,18 +50585,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1967 +1917 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50835,16 +50604,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1970 +1920 i -879 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1970 +1920 i -879 +189 1 return 1 @@ -50852,14 +50621,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1971 +1921 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1971 +1921 i 356 1 @@ -50869,18 +50638,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1972 +1922 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50888,14 +50657,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1973 +1923 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1973 +1923 i 356 1 @@ -50905,14 +50674,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1974 +1924 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1974 +1924 i 360 1 @@ -50922,18 +50691,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1972 +1922 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50941,18 +50710,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -1975 +1925 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50960,18 +50729,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1976 +1926 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -50979,14 +50748,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1977 +1927 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1977 +1927 i 356 1 @@ -50996,14 +50765,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1978 +1928 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1978 +1928 i 360 1 @@ -51013,18 +50782,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1976 +1926 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51032,18 +50801,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1979 +1929 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51051,14 +50820,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1980 +1930 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1980 +1930 i 356 1 @@ -51068,14 +50837,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1981 +1931 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1981 +1931 i 360 1 @@ -51085,18 +50854,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1979 +1929 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51104,18 +50873,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -1975 +1925 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51126,65 +50895,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -1966 +1916 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -879 +189 1 return -3 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -1982 +1932 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -712 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1983 +1933 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51192,14 +50961,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1984 +1934 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1984 +1934 i 356 1 @@ -51209,14 +50978,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1985 +1935 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1985 +1935 i 360 1 @@ -51226,18 +50995,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1983 +1933 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51245,16 +51014,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1986 +1936 i -712 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1986 +1936 i -712 +22 1 return 0 @@ -51262,14 +51031,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1987 +1937 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1987 +1937 i 356 1 @@ -51279,18 +51048,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1988 +1938 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51298,14 +51067,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1989 +1939 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1989 +1939 i 356 1 @@ -51315,14 +51084,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1990 +1940 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1990 +1940 i 360 1 @@ -51332,18 +51101,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1988 +1938 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51351,24 +51120,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1982 +1932 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -712 +22 1 return false @@ -51376,40 +51145,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -1991 +1941 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -712 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1992 +1942 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51417,14 +51186,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1993 +1943 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1993 +1943 i 356 1 @@ -51434,14 +51203,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1994 +1944 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1994 +1944 i 360 1 @@ -51451,18 +51220,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1992 +1942 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51470,16 +51239,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1995 +1945 i -712 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1995 +1945 i -712 +22 1 return 0 @@ -51487,14 +51256,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1996 +1946 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1996 +1946 i 356 1 @@ -51504,18 +51273,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -1997 +1947 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51523,14 +51292,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1998 +1948 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1998 +1948 i 356 1 @@ -51540,14 +51309,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -1999 +1949 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -1999 +1949 i 360 1 @@ -51557,18 +51326,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -1997 +1947 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51576,18 +51345,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2000 +1950 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51595,18 +51364,231 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2001 +1951 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1952 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1952 +i +356 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1953 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1953 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1951 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1954 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1955 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1955 +i +356 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1956 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1956 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +1954 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.size():::EXIT181 +this_invocation_nonce +1950 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 +return +3 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +1941 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 +n +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.contains(int):::ENTER +this_invocation_nonce +1957 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 +n +879 +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1958 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 this.ends[..] [360] @@ -51614,14 +51596,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2002 +1959 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2002 +1959 i 356 1 @@ -51631,14 +51613,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2003 +1960 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2003 +1960 i 360 1 @@ -51648,37 +51630,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2001 +1958 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1961 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1961 +i +879 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1962 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1962 +i +356 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2004 +1963 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51686,14 +51702,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2005 +1964 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2005 +1964 i 356 1 @@ -51703,14 +51719,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2006 +1965 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2006 +1965 i 360 1 @@ -51720,106 +51736,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2004 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -2000 +1963 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -return -3 -1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -1991 +1957 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -712 +879 1 return -3 +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2007 +1966 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -545 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2008 +1967 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51827,14 +51821,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2009 +1968 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2009 +1968 i 356 1 @@ -51844,14 +51838,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2010 +1969 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2010 +1969 i 360 1 @@ -51861,18 +51855,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2008 +1967 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51880,16 +51874,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2011 +1970 i -545 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2011 +1970 i -545 +879 1 return 1 @@ -51897,14 +51891,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2012 +1971 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2012 +1971 i 356 1 @@ -51914,18 +51908,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2013 +1972 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -51933,14 +51927,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2014 +1973 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2014 +1973 i 356 1 @@ -51950,14 +51944,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2015 +1974 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2015 +1974 i 360 1 @@ -51967,84 +51961,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2013 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.contains(int):::EXIT123 -this_invocation_nonce -2007 +1972 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -545 -1 -return -false -1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2016 +1975 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -545 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2017 +1976 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52052,14 +52018,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2018 +1977 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2018 +1977 i 356 1 @@ -52069,14 +52035,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2019 +1978 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2019 +1978 i 360 1 @@ -52086,18 +52052,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2017 +1976 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +1979 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 this.ends[..] [360] @@ -52105,143 +52090,140 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2020 +1980 i -545 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2020 +1980 i -545 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2021 +1981 i -356 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2021 +1981 i -356 +360 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2022 +1979 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2023 -i -356 +1975 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2023 -i -356 +this.begins +832279283 1 -return -0 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2024 -i -360 +this.ends +265119009 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2024 -i -360 +this.ends[..] +[360] 1 return -0 +3 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2022 +1966 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +n +879 +1 +return +3 +1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2025 +1982 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +n +712 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2026 +1983 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52249,14 +52231,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2027 +1984 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2027 +1984 i 356 1 @@ -52266,14 +52248,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2028 +1985 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2028 +1985 i 360 1 @@ -52283,37 +52265,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2026 +1983 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1986 +i +712 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1986 +i +712 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1987 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1987 +i +356 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2029 +1988 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52321,14 +52337,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2030 +1989 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2030 +1989 i 356 1 @@ -52338,14 +52354,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2031 +1990 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2031 +1990 i 360 1 @@ -52355,103 +52371,137 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2029 +1988 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2025 +1982 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +n +712 +1 return -3 +false 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2016 +1991 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 n -545 -1 -return -3 +712 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2032 +1992 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1993 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1993 +i +356 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +1994 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +1994 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2033 +1992 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52459,16 +52509,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2034 +1995 i -356 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2034 +1995 i -356 +712 1 return 0 @@ -52476,54 +52526,35 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2035 +1996 i -360 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2035 +1996 i -360 +356 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2033 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2036 +1997 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52531,14 +52562,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2037 +1998 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2037 +1998 i 356 1 @@ -52548,14 +52579,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2038 +1999 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2038 +1999 i 360 1 @@ -52565,59 +52596,109 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2036 +1997 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2032 +2000 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2001 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 this.ends[..] [360] 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2002 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2002 +i +356 +1 return -3 +0 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2039 +2003 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2003 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2001 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52625,18 +52706,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2040 +2004 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52644,14 +52725,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2041 +2005 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2041 +2005 i 356 1 @@ -52661,14 +52742,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2042 +2006 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2042 +2006 i 360 1 @@ -52678,78 +52759,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2040 +2004 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2039 +2000 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 return -false +3 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2043 +1991 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 +1 +this.ends[..] +[360] +1 +n +712 +1 +return +3 +1 + +MapQuick1.StreetNumberSet.contains(int):::ENTER +this_invocation_nonce +2007 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 this.ends[..] [360] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2044 +2008 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52757,14 +52866,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2045 +2009 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2045 +2009 i 356 1 @@ -52774,14 +52883,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2046 +2010 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2046 +2010 i 360 1 @@ -52791,37 +52900,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2044 +2008 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2011 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2011 +i +545 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2012 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2012 +i +356 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2047 +2013 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52829,14 +52972,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2048 +2014 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2048 +2014 i 356 1 @@ -52846,14 +52989,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2049 +2015 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2049 +2015 i 360 1 @@ -52863,78 +53006,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2047 +2013 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2043 +2007 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +n +545 +1 return -356 +false 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2050 +2016 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2051 +2017 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -52942,14 +53091,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2052 +2018 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2052 +2018 i 356 1 @@ -52959,14 +53108,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2053 +2019 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2053 +2019 i 360 1 @@ -52976,37 +53125,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2051 +2017 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2020 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2020 +i +545 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2021 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2021 +i +356 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2054 +2022 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53014,14 +53197,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2055 +2023 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2055 +2023 i 356 1 @@ -53031,14 +53214,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2056 +2024 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2056 +2024 i 360 1 @@ -53048,553 +53231,545 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2054 +2022 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2050 +2025 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -return -360 -1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2057 +2026 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -o -null -1 -o.getClass().getName() -nonsensical -2 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2057 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] +2027 +i +356 1 -o -null + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2027 +i +356 1 -o.getClass().getName() -nonsensical -2 return -false +0 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2058 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 -other -null +2028 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2028 +i +360 +1 +return +0 1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2058 +2026 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -null -1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 -return -false -1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2059 +2029 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -o -1160003871 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2030 +i +356 1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2030 +i +356 +1 +return +0 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2060 +2031 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2031 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2029 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1160003871 + +MapQuick1.StreetNumberSet.size():::EXIT181 +this_invocation_nonce +2025 +this +789219251 1 -other.begins -1075738627 +this.begins +832279283 1 -other.begins[..] +this.begins[..] [356] 1 -other.ends -282828951 +this.ends +265119009 1 -other.ends[..] +this.ends[..] [360] 1 +return +3 +1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2060 +2016 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1160003871 -1 -other.begins -1075738627 -1 -other.begins[..] -[356] -1 -other.ends -282828951 -1 -other.ends[..] -[360] +n +545 1 return -true +3 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2059 +2032 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -o -1160003871 -1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" -1 -return -true -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2061 +2033 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1160003871 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2034 +i +356 1 -other.begins -1075738627 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2034 +i +356 1 -other.begins[..] -[356] +return +0 1 -other.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2035 +i +360 1 -other.ends[..] -[360] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2035 +i +360 +1 +return +0 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2061 +2033 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1160003871 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2036 +this +789219251 1 -other.begins -1075738627 +this.begins +832279283 1 -other.begins[..] +this.begins[..] [356] 1 -other.ends -282828951 +this.ends +265119009 1 -other.ends[..] +this.ends[..] [360] 1 -return -true + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2037 +i +356 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2062 -numbers -422392391 +2037 +i +356 1 -numbers.toString -"1" +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2063 +2038 i -1 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2063 +2038 i -1 +360 1 return -1 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2064 -i +2036 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2064 -i +2032 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 +this.ends[..] +[360] 1 return +3 +1 + +MapQuick1.StreetNumberSet.isEmpty():::ENTER +this_invocation_nonce +2039 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] 1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2065 +2040 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2066 +2041 i -1 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2066 +2041 i -1 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2067 +2042 i -1 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2067 +2042 i -1 +360 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2065 -this -394721749 -1 -this.begins -1884122755 -1 -this.begins[..] -[1] -1 -this.ends -1134612201 -1 -this.ends[..] -[1] -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 -this_invocation_nonce -2062 +2040 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] -1 -numbers -422392391 -1 -numbers.toString -"1" +[360] 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2068 +2039 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -394721749 -1 -other.begins -1884122755 -1 -other.begins[..] -[1] -1 -other.ends -1134612201 -1 -other.ends[..] -[1] +return +false 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2069 +2043 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53602,18 +53777,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2070 +2044 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53621,14 +53796,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2071 +2045 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2071 +2045 i 356 1 @@ -53638,14 +53813,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2072 +2046 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2072 +2046 i 360 1 @@ -53655,18 +53830,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2070 +2044 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53674,18 +53849,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2073 +2047 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53693,14 +53868,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2074 +2048 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2074 +2048 i 356 1 @@ -53710,14 +53885,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2075 +2049 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2075 +2049 i 360 1 @@ -53727,18 +53902,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2073 +2047 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53746,18 +53921,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2069 +2043 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53768,18 +53943,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2076 +2050 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53787,18 +53962,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2077 +2051 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53806,14 +53981,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2078 +2052 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2078 +2052 i 356 1 @@ -53823,14 +53998,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2079 +2053 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2079 +2053 i 360 1 @@ -53840,18 +54015,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2077 +2051 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53859,18 +54034,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2080 +2054 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53878,14 +54053,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2081 +2055 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2081 +2055 i 356 1 @@ -53895,14 +54070,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2082 +2056 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2082 +2056 i 360 1 @@ -53912,18 +54087,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2080 +2054 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53931,18 +54106,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2076 +2050 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -53951,248 +54126,345 @@ return 360 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -2083 +2057 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] +1 +o +null 1 +o.getClass().getName() +nonsensical +2 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -2084 +2057 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2085 -i +o +null 1 +o.getClass().getName() +nonsensical +2 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2085 -i +2058 +this +789219251 1 +this.begins +832279283 1 -return +this.begins[..] +[356] 1 +this.ends +265119009 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2086 -i +this.ends[..] +[360] 1 +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 this_invocation_nonce -2086 -i +2058 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] 1 +this.ends +265119009 1 -return +this.ends[..] +[360] +1 +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 +return +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -2084 +2059 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] +1 +o +789219251 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2087 +2060 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2088 -i +other +789219251 +1 +other.begins +832279283 +1 +other.begins[..] +[356] +1 +other.ends +265119009 1 +other.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -2088 -i +2060 +this +789219251 1 +this.begins +832279283 1 -return +this.begins[..] +[356] 1 +this.ends +265119009 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2089 -i +this.ends[..] +[360] 1 +other +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2089 -i +other.begins +832279283 1 +other.begins[..] +[356] 1 -return +other.ends +265119009 +1 +other.ends[..] +[360] 1 +return +true 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -2087 +2059 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] +1 +o +789219251 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" +1 +return +true 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2083 +2061 this -394721749 +789219251 1 this.begins -1884122755 +832279283 1 this.begins[..] -[1] +[356] 1 this.ends -1134612201 +265119009 1 this.ends[..] -[1] +[360] 1 -return +other +789219251 +1 +other.begins +832279283 +1 +other.begins[..] +[356] +1 +other.ends +265119009 1 +other.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -2068 +2061 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 other -394721749 +789219251 1 other.begins -1884122755 +832279283 1 other.begins[..] -[1] +[356] 1 other.ends -1134612201 +265119009 1 other.ends[..] -[1] +[360] 1 return -false +true 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -2090 +2062 numbers -863125040 +315138752 1 numbers.toString -"1,7" +"1" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2091 +2063 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2091 +2063 i 1 1 @@ -54202,50 +54474,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2092 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2092 +2064 i 1 1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2093 -i -7 -1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2093 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2094 +2064 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2094 -i -7 1 return 1 @@ -54253,67 +54491,33 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2095 +2065 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2096 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2096 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2097 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2097 -i -1 -1 -return -1 +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2098 +2066 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2098 +2066 i 1 1 @@ -54323,50 +54527,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2099 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2099 +2067 i -7 -1 -return -1 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2100 -i -7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2100 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2101 +2067 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2101 -i -7 1 return 1 @@ -54374,96 +54544,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2095 +2065 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2090 +2062 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] +[1] 1 numbers -863125040 +315138752 1 numbers.toString -"1,7" +"1" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2102 +2068 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 other -246550802 +668210649 1 other.begins -786041152 +1545087375 1 other.begins[..] -[1 7] +[1] 1 other.ends -897074030 +838411509 1 other.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2103 +2069 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54471,18 +54641,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2104 +2070 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54490,14 +54660,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2105 +2071 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2105 +2071 i 356 1 @@ -54507,14 +54677,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2106 +2072 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2106 +2072 i 360 1 @@ -54524,18 +54694,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2104 +2070 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54543,18 +54713,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2107 +2073 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54562,14 +54732,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2108 +2074 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2108 +2074 i 356 1 @@ -54579,14 +54749,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2109 +2075 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2109 +2075 i 360 1 @@ -54596,18 +54766,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2107 +2073 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54615,18 +54785,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2103 +2069 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54637,18 +54807,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2110 +2076 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54656,18 +54826,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2111 +2077 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54675,14 +54845,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2112 +2078 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2112 +2078 i 356 1 @@ -54692,14 +54862,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2113 +2079 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2113 +2079 i 360 1 @@ -54709,18 +54879,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2111 +2077 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54728,18 +54898,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2114 +2080 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54747,14 +54917,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2115 +2081 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2115 +2081 i 356 1 @@ -54764,14 +54934,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2116 +2082 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2116 +2082 i 360 1 @@ -54781,18 +54951,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2114 +2080 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54800,18 +54970,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2110 +2076 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -54822,86 +54992,52 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2117 +2083 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2118 +2084 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2119 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2119 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2120 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2120 -i -1 -1 -return -1 +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2121 +2085 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2121 +2085 i 1 1 @@ -54911,50 +55047,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2122 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2122 +2086 i -7 1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2123 -i -7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2123 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2124 +2086 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2124 -i -7 1 return 1 @@ -54962,86 +55064,52 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2118 +2084 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2125 +2087 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2126 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2126 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2127 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2127 -i -1 -1 -return -1 +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2128 +2088 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2128 +2088 i 1 1 @@ -55051,50 +55119,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2129 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2129 +2089 i -7 1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2130 -i -7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2130 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2131 +2089 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2131 -i -7 1 return 1 @@ -55102,40 +55136,40 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2125 +2087 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2117 +2083 this -246550802 +668210649 1 this.begins -786041152 +1545087375 1 this.begins[..] -[1 7] +[1] 1 this.ends -897074030 +838411509 1 this.ends[..] -[1 7] +[1] 1 return 1 @@ -55143,36 +55177,36 @@ return MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -2102 +2068 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 other -246550802 +668210649 1 other.begins -786041152 +1545087375 1 other.begins[..] -[1 7] +[1] 1 other.ends -897074030 +838411509 1 other.ends[..] -[1 7] +[1] 1 return false @@ -55180,24 +55214,24 @@ false MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -2132 +2090 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2133 +2091 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2133 +2091 i 1 1 @@ -55207,14 +55241,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2134 +2092 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2134 +2092 i 1 1 @@ -55224,14 +55258,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2135 +2093 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2135 +2093 i 7 1 @@ -55241,14 +55275,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2136 +2094 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2136 +2094 i 7 1 @@ -55256,173 +55290,37 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2137 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2137 -i -11 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2138 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2138 -i -11 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2139 +2095 this -1885996206 -1 -this.begins -1859039536 -1 -this.begins[..] -[1 7 11] -1 -this.ends -278934944 -1 -this.ends[..] -[1 7 11] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2140 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2140 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2141 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2141 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2142 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2142 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2143 -i -7 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2143 -i -7 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2144 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2144 -i -1 -1 -return -1 +1434041222 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2145 -i -11 +this.begins +1375995437 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2145 -i -11 +this.begins[..] +[1 7] 1 -return +this.ends +1338841523 1 +this.ends[..] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2146 +2096 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2146 +2096 i -7 +1 1 return 1 @@ -55430,16 +55328,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2147 +2097 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2147 +2097 i -7 +1 1 return 1 @@ -55447,16 +55345,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2148 +2098 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2148 +2098 i -7 +1 1 return 1 @@ -55464,16 +55362,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2149 +2099 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2149 +2099 i -11 +7 1 return 1 @@ -55481,16 +55379,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2150 +2100 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2150 +2100 i -11 +7 1 return 1 @@ -55498,16 +55396,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2151 +2101 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2151 +2101 i -11 +7 1 return 1 @@ -55515,96 +55413,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2139 +2095 this -1885996206 +1434041222 1 this.begins -1859039536 +1375995437 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -278934944 +1338841523 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2132 +2090 this -1885996206 +1434041222 1 this.begins -1859039536 +1375995437 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -278934944 +1338841523 1 this.ends[..] -[1 7 11] +[1 7] 1 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2152 +2102 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 other -1885996206 +1434041222 1 other.begins -1859039536 +1375995437 1 other.begins[..] -[1 7 11] +[1 7] 1 other.ends -278934944 +1338841523 1 other.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2153 +2103 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55612,18 +55510,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2154 +2104 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55631,14 +55529,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2155 +2105 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2155 +2105 i 356 1 @@ -55648,14 +55546,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2156 +2106 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2156 +2106 i 360 1 @@ -55665,18 +55563,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2154 +2104 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55684,18 +55582,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2157 +2107 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55703,14 +55601,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2158 +2108 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2158 +2108 i 356 1 @@ -55720,14 +55618,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2159 +2109 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2159 +2109 i 360 1 @@ -55737,18 +55635,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2157 +2107 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55756,18 +55654,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2153 +2103 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55778,18 +55676,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2160 +2110 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55797,18 +55695,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2161 +2111 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55816,14 +55714,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2162 +2112 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2162 +2112 i 356 1 @@ -55833,14 +55731,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2163 +2113 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2163 +2113 i 360 1 @@ -55850,18 +55748,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2161 +2111 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55869,18 +55767,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2164 +2114 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55888,14 +55786,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2165 +2115 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2165 +2115 i 356 1 @@ -55905,14 +55803,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2166 +2116 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2166 +2116 i 360 1 @@ -55922,18 +55820,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2164 +2114 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55941,18 +55839,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2160 +2110 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -55963,52 +55861,52 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2167 +2117 this -1885996206 +1434041222 1 this.begins -1859039536 +1375995437 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -278934944 +1338841523 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2168 +2118 this -1885996206 +1434041222 1 this.begins -1859039536 +1375995437 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -278934944 +1338841523 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2169 +2119 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2169 +2119 i 1 1 @@ -56018,14 +55916,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2170 +2120 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2170 +2120 i 1 1 @@ -56035,14 +55933,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2171 +2121 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2171 +2121 i 1 1 @@ -56052,14 +55950,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2172 +2122 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2172 +2122 i 7 1 @@ -56069,14 +55967,86 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2173 +2123 +i +7 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2123 i +7 +1 +return 1 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2124 +i +7 +1 + MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2173 +2124 +i +7 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2118 +this +1434041222 +1 +this.begins +1375995437 +1 +this.begins[..] +[1 7] +1 +this.ends +1338841523 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2125 +this +1434041222 +1 +this.begins +1375995437 +1 +this.begins[..] +[1 7] +1 +this.ends +1338841523 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2126 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2126 i 1 1 @@ -56086,33 +56056,189 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2174 +2127 i -11 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2174 +2127 i -11 +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2128 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2128 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2129 +i +7 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2129 +i +7 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2130 +i +7 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2130 +i +7 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2131 +i +7 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2131 +i +7 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2125 +this +1434041222 +1 +this.begins +1375995437 +1 +this.begins[..] +[1 7] +1 +this.ends +1338841523 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.min():::EXIT210 +this_invocation_nonce +2117 +this +1434041222 +1 +this.begins +1375995437 +1 +this.begins[..] +[1 7] +1 +this.ends +1338841523 +1 +this.ends[..] +[1 7] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +2102 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 +other +1434041222 +1 +other.begins +1375995437 +1 +other.begins[..] +[1 7] +1 +other.ends +1338841523 +1 +other.ends[..] +[1 7] 1 return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +2132 +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2175 +2133 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2175 +2133 i -7 +1 1 return 1 @@ -56120,16 +56246,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2176 +2134 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2176 +2134 i -7 +1 1 return 1 @@ -56137,14 +56263,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2177 +2135 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2177 +2135 i 7 1 @@ -56154,16 +56280,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2178 +2136 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2178 +2136 i -11 +7 1 return 1 @@ -56171,14 +56297,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2179 +2137 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2179 +2137 i 11 1 @@ -56188,14 +56314,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2180 +2138 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2180 +2138 i 11 1 @@ -56203,39 +56329,20 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2168 -this -1885996206 -1 -this.begins -1859039536 -1 -this.begins[..] -[1 7 11] -1 -this.ends -278934944 -1 -this.ends[..] -[1 7 11] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2181 +2139 this -1885996206 +929776179 1 this.begins -1859039536 +802581203 1 this.begins[..] [1 7 11] 1 this.ends -278934944 +1561408618 1 this.ends[..] [1 7 11] @@ -56243,14 +56350,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2182 +2140 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2182 +2140 i 1 1 @@ -56260,14 +56367,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2183 +2141 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2183 +2141 i 1 1 @@ -56277,14 +56384,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2184 +2142 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2184 +2142 i 1 1 @@ -56294,14 +56401,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2185 +2143 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2185 +2143 i 7 1 @@ -56311,14 +56418,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2186 +2144 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2186 +2144 i 1 1 @@ -56328,14 +56435,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2187 +2145 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2187 +2145 i 11 1 @@ -56345,14 +56452,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2188 +2146 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2188 +2146 i 7 1 @@ -56362,14 +56469,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2189 +2147 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2189 +2147 i 7 1 @@ -56379,14 +56486,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2190 +2148 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2190 +2148 i 7 1 @@ -56396,14 +56503,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2191 +2149 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2191 +2149 i 11 1 @@ -56413,14 +56520,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2192 +2150 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2192 +2150 i 11 1 @@ -56430,14 +56537,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2193 +2151 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2193 +2151 i 11 1 @@ -56447,130 +56554,115 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2181 +2139 this -1885996206 +929776179 1 this.begins -1859039536 +802581203 1 this.begins[..] [1 7 11] 1 this.ends -278934944 +1561408618 1 this.ends[..] [1 7 11] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2167 +2132 this -1885996206 +929776179 1 this.begins -1859039536 +802581203 1 this.begins[..] [1 7 11] 1 this.ends -278934944 +1561408618 1 this.ends[..] [1 7 11] 1 -return +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 2152 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 other -1885996206 +929776179 1 other.begins -1859039536 +802581203 1 other.begins[..] [1 7 11] 1 other.ends -278934944 +1561408618 1 other.ends[..] [1 7 11] 1 -return -false -1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2194 +2153 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1160003871 -1 -other.begins -1075738627 -1 -other.begins[..] -[356] -1 -other.ends -282828951 -1 -other.ends[..] -[360] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2195 +2154 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56578,14 +56670,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2196 +2155 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2196 +2155 i 356 1 @@ -56595,14 +56687,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2197 +2156 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2197 +2156 i 360 1 @@ -56612,37 +56704,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2195 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -2198 +2154 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56650,18 +56723,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2199 +2157 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56669,14 +56742,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2200 +2158 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2200 +2158 i 356 1 @@ -56686,14 +56759,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2201 +2159 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2201 +2159 i 360 1 @@ -56703,59 +56776,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2199 +2157 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2198 +2153 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 return -false +356 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2202 +2160 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56763,18 +56836,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2203 +2161 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56782,14 +56855,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2204 +2162 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2204 +2162 i 356 1 @@ -56799,14 +56872,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2205 +2163 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2205 +2163 i 360 1 @@ -56816,59 +56889,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2203 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 -this_invocation_nonce -2202 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 -return -false -1 - -MapQuick1.StreetNumberSet.min():::ENTER -this_invocation_nonce -2206 +2161 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56876,18 +56908,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2207 +2164 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -56895,14 +56927,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2208 +2165 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2208 +2165 i 356 1 @@ -56912,14 +56944,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2209 +2166 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2209 +2166 i 360 1 @@ -56929,708 +56961,655 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2207 +2164 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2210 +2160 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +return +360 +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +2167 +this +929776179 +1 +this.begins +802581203 +1 +this.begins[..] +[1 7 11] +1 +this.ends +1561408618 +1 +this.ends[..] +[1 7 11] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2168 +this +929776179 +1 +this.begins +802581203 +1 +this.begins[..] +[1 7 11] +1 +this.ends +1561408618 +1 +this.ends[..] +[1 7 11] +1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2211 +2169 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2211 +2169 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2212 +2170 i -360 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2212 +2170 i -360 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2210 -this -1160003871 +2171 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2171 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2206 -this -1160003871 +2172 +i +7 1 -this.begins -1075738627 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2172 +i +7 1 -this.begins[..] -[356] +return 1 -this.ends -282828951 1 -this.ends[..] -[360] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2173 +i 1 -return -356 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2213 -this -1160003871 -1 -this.begins -1075738627 +2173 +i 1 -this.begins[..] -[356] 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2214 -this -1160003871 -1 -this.begins -1075738627 +2174 +i +11 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2174 +i +11 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2215 +2175 i -356 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2215 +2175 i -356 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2216 +2176 i -360 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2216 +2176 i -360 +7 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2214 -this -1160003871 -1 -this.begins -1075738627 +2177 +i +7 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2177 +i +7 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2217 -this -1160003871 -1 -this.begins -1075738627 +2178 +i +11 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2178 +i +11 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2218 +2179 i -356 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2218 +2179 i -356 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2219 +2180 i -360 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2219 +2180 i -360 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2217 +2168 this -1160003871 +929776179 1 this.begins -1075738627 +802581203 1 this.begins[..] -[356] +[1 7 11] 1 this.ends -282828951 +1561408618 1 this.ends[..] -[360] +[1 7 11] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2213 +2181 this -1160003871 +929776179 1 this.begins -1075738627 +802581203 1 this.begins[..] -[356] +[1 7 11] 1 this.ends -282828951 +1561408618 1 this.ends[..] -[360] -1 -return -360 +[1 7 11] 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2220 -this -1160003871 +2182 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2182 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2221 -this -1160003871 +2183 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2183 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2222 +2184 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2222 +2184 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2223 +2185 i -360 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2223 +2185 i -360 +7 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2221 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 +2186 +i 1 -this.ends[..] -[360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2224 -this -1160003871 -1 -this.begins -1075738627 +2186 +i 1 -this.begins[..] -[356] 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2225 +2187 i -356 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2225 +2187 i -356 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2226 +2188 i -360 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2226 +2188 i -360 +7 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2224 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] +2189 +i +7 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2220 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] +2189 +i +7 1 return -356 +1 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2227 -this -1160003871 -1 -this.begins -1075738627 +2190 +i +7 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2190 +i +7 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2228 -this -1160003871 -1 -this.begins -1075738627 +2191 +i +11 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2191 +i +11 1 -this.ends -282828951 +return 1 -this.ends[..] -[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2229 +2192 i -356 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2229 +2192 i -356 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2230 +2193 i -360 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2230 +2193 i -360 +11 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2228 +2181 this -1160003871 +929776179 1 this.begins -1075738627 +802581203 1 this.begins[..] -[356] +[1 7 11] 1 this.ends -282828951 +1561408618 1 this.ends[..] -[360] +[1 7 11] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2231 +2167 this -1160003871 +929776179 1 this.begins -1075738627 +802581203 1 this.begins[..] -[356] +[1 7 11] 1 this.ends -282828951 +1561408618 1 this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2232 -i -356 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2232 -i -356 +[1 7 11] 1 return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2233 -i -360 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2233 -i -360 1 -return -0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -2231 +2152 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 - -MapQuick1.StreetNumberSet.max():::EXIT230 -this_invocation_nonce -2227 -this -1160003871 +other +929776179 1 -this.begins -1075738627 +other.begins +802581203 1 -this.begins[..] -[356] +other.begins[..] +[1 7 11] 1 -this.ends -282828951 +other.ends +1561408618 1 -this.ends[..] -[360] +other.ends[..] +[1 7 11] 1 return -360 +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2234 +2194 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -356 +other +789219251 +1 +other.begins +832279283 +1 +other.begins[..] +[356] +1 +other.ends +265119009 +1 +other.ends[..] +[360] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2235 +2195 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -57638,14 +57617,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2236 +2196 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2236 +2196 i 356 1 @@ -57655,14 +57634,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2237 +2197 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2237 +2197 i 360 1 @@ -57672,71 +57651,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2235 +2195 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.isEmpty():::ENTER +this_invocation_nonce +2198 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2238 -i -356 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2238 -i -356 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2239 -i -356 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2239 -i -356 -1 -return -0 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2240 +2199 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -57744,14 +57708,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2241 +2200 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2241 +2200 i 356 1 @@ -57761,14 +57725,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2242 +2201 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2242 +2201 i 360 1 @@ -57778,84 +57742,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2240 +2199 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2234 +2198 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -356 -1 return -true +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2243 +2202 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -356 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2244 +2203 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -57863,14 +57821,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2245 +2204 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2245 +2204 i 356 1 @@ -57880,14 +57838,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2246 +2205 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2246 +2205 i 360 1 @@ -57897,71 +57855,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2244 +2203 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2247 -i -356 +2202 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2247 -i -356 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 return -0 +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2248 -i -356 +2206 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2248 -i -356 +this.begins +832279283 1 -return -0 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2249 +2207 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -57969,14 +57934,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2250 +2208 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2250 +2208 i 356 1 @@ -57986,14 +57951,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2251 +2209 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2251 +2209 i 360 1 @@ -58003,62 +57968,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2249 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.contains(int):::EXIT118 -this_invocation_nonce -2243 +2207 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -n -356 -1 -return -true -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2252 +2210 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -58066,14 +58006,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2253 +2211 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2253 +2211 i 356 1 @@ -58083,14 +58023,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2254 +2212 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2254 +2212 i 360 1 @@ -58100,116 +58040,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2252 +2210 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2194 +2206 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1160003871 -1 -other.begins -1075738627 -1 -other.begins[..] -[356] -1 -other.ends -282828951 -1 -other.ends[..] -[360] -1 return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -2255 -numbers -603856241 -1 -numbers.toString -"1,100,10" +356 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2256 -i -1 +2213 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2256 -i +this.begins +832279283 1 +this.begins[..] +[356] 1 -return +this.ends +265119009 1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2257 -i -1 +2214 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2257 -i +this.begins +832279283 1 +this.begins[..] +[356] 1 -return +this.ends +265119009 1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2258 +2215 i -100 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2258 +2215 i -100 +356 1 return 0 @@ -58217,205 +58136,184 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2259 +2216 i -100 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2259 +2216 i -100 +360 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2260 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2260 -i -10 +2214 +this +789219251 1 -return -0 +this.begins +832279283 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2261 -i -10 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2261 -i -10 +this.ends +265119009 1 -return -0 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2262 +2217 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2263 +2218 i -1 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2263 +2218 i -1 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2264 +2219 i -1 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2264 +2219 i -1 +360 1 return -1 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2265 -i -1 +2217 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2265 -i +this.begins +832279283 1 +this.begins[..] +[356] 1 -return +this.ends +265119009 1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2266 -i -100 +2213 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2266 -i -100 +this.begins +832279283 1 -return -0 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2267 -i +this.ends +265119009 +1 +this.ends[..] +[360] 1 +return +360 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2267 -i +2220 +this +789219251 1 +this.begins +832279283 1 -return +this.begins[..] +[356] 1 +this.ends +265119009 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2268 -i -10 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2268 -i -10 +2221 +this +789219251 1 -return -0 +this.begins +832279283 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2269 -i -100 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2269 -i -100 +this.ends +265119009 1 -return -0 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2270 +2222 i -100 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2270 +2222 i -100 +356 1 return 0 @@ -58423,50 +58321,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2271 +2223 i -100 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2271 +2223 i -100 +360 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2272 -i -10 +2221 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2272 -i -10 +2224 +this +789219251 1 -return -0 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2273 +2225 i -10 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2273 +2225 i -10 +356 1 return 0 @@ -58474,16 +58393,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2274 +2226 i -10 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2274 +2226 i -10 +360 1 return 0 @@ -58491,96 +58410,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2262 +2224 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2255 +2220 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] -1 -numbers -603856241 +[360] 1 -numbers.toString -"1,100,10" +return +356 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2275 +2227 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -other -1739876329 -1 -other.begins -1205555397 -1 -other.begins[..] -[1 100 10] -1 -other.ends -1543974463 -1 -other.ends[..] -[1 100 10] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2276 +2228 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -58588,14 +58489,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2277 +2229 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2277 +2229 i 356 1 @@ -58605,14 +58506,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2278 +2230 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2278 +2230 i 360 1 @@ -58622,37 +58523,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2276 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -2279 +2228 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -58660,18 +58542,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2280 +2231 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -58679,14 +58561,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2281 +2232 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2281 +2232 i 356 1 @@ -58696,14 +58578,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2282 +2233 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2282 +2233 i 360 1 @@ -58713,146 +58595,151 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2280 +2231 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2279 +2227 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 return -false +360 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2283 +2234 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] +1 +n +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2284 +2235 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2285 +2236 i -1 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2285 +2236 i -1 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2286 +2237 i -1 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2286 +2237 i -1 +360 1 return -1 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2287 -i -1 +2235 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2287 -i +this.begins +832279283 1 +this.begins[..] +[356] 1 -return +this.ends +265119009 1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2288 +2238 i -100 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2288 +2238 i -100 +356 1 return 0 @@ -58860,84 +58747,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2289 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2289 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2290 +2239 i -10 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2290 +2239 i -10 +356 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2291 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2291 -i -100 +2240 +this +789219251 1 -return -0 +this.begins +832279283 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2292 -i -100 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2292 -i -100 +this.ends +265119009 1 -return -0 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2293 +2241 i -100 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2293 +2241 i -100 +356 1 return 0 @@ -58945,129 +58800,154 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2294 +2242 i -10 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2294 +2242 i -10 +360 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2295 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2295 -i -10 +2240 +this +789219251 1 -return -0 +this.begins +832279283 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2296 -i -10 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2296 -i -10 +this.ends +265119009 1 -return -0 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -2284 +2234 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] +1 +n +356 +1 +return +true 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2283 +2243 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 -return -false +n +356 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2297 +2244 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2298 +2245 +i +356 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2245 +i +356 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2246 +i +360 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2246 +i +360 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2244 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -59075,14 +58955,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2299 +2247 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2299 +2247 i 356 1 @@ -59092,54 +58972,35 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2300 +2248 i -360 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2300 +2248 i -360 +356 1 return 0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2298 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2301 +2249 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -59147,14 +59008,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2302 +2250 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2302 +2250 i 356 1 @@ -59164,14 +59025,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2303 +2251 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2303 +2251 i 360 1 @@ -59181,78 +59042,62 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2301 +2249 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -2297 +2243 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -return +n 356 1 - -MapQuick1.StreetNumberSet.max():::ENTER -this_invocation_nonce -2304 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] -1 -this.ends -282828951 -1 -this.ends[..] -[360] +return +true 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2305 +2252 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] @@ -59260,14 +59105,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2306 +2253 i 356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2306 +2253 i 356 1 @@ -59277,14 +59122,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2307 +2254 i 360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2307 +2254 i 360 1 @@ -59294,150 +59139,186 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2305 +2252 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 this_invocation_nonce -2308 +2194 this -1160003871 +789219251 1 this.begins -1075738627 +832279283 1 this.begins[..] [356] 1 this.ends -282828951 +265119009 1 this.ends[..] [360] 1 +other +789219251 +1 +other.begins +832279283 +1 +other.begins[..] +[356] +1 +other.ends +265119009 +1 +other.ends[..] +[360] +1 +return +true +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +2255 +numbers +1414147750 +1 +numbers.toString +"1,100,10" +1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2309 +2256 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2309 +2256 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2310 +2257 i -360 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2310 +2257 i -360 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2308 -this -1160003871 -1 -this.begins -1075738627 -1 -this.begins[..] -[356] +2258 +i +100 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2258 +i +100 1 -this.ends[..] -[360] +return +0 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2304 -this -1160003871 +2259 +i +100 1 -this.begins -1075738627 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2259 +i +100 1 -this.begins[..] -[356] +return +0 1 -this.ends -282828951 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2260 +i +10 1 -this.ends[..] -[360] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2260 +i +10 1 return -360 +0 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2311 -this -1739876329 -1 -this.begins -1205555397 -1 -this.begins[..] -[1 100 10] +2261 +i +10 1 -this.ends -1543974463 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2261 +i +10 1 -this.ends[..] -[1 100 10] +return +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2312 +2262 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] @@ -59445,14 +59326,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2313 +2263 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2313 +2263 i 1 1 @@ -59462,14 +59343,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2314 +2264 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2314 +2264 i 1 1 @@ -59479,14 +59360,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2315 +2265 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2315 +2265 i 1 1 @@ -59496,14 +59377,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2316 +2266 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2316 +2266 i 100 1 @@ -59513,14 +59394,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2317 +2267 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2317 +2267 i 1 1 @@ -59530,14 +59411,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2318 +2268 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2318 +2268 i 10 1 @@ -59547,14 +59428,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2319 +2269 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2319 +2269 i 100 1 @@ -59564,14 +59445,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2320 +2270 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2320 +2270 i 100 1 @@ -59581,14 +59462,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2321 +2271 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2321 +2271 i 100 1 @@ -59598,14 +59479,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2322 +2272 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2322 +2272 i 10 1 @@ -59615,14 +59496,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2323 +2273 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2323 +2273 i 10 1 @@ -59632,14 +59513,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2324 +2274 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2324 +2274 i 10 1 @@ -59649,105 +59530,113 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2312 +2262 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2325 +2255 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2326 -i +numbers +1414147750 1 +numbers.toString +"1,100,10" 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2326 -i +2275 +this +789219251 1 +this.begins +832279283 1 -return +this.begins[..] +[356] 1 +this.ends +265119009 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2327 -i +this.ends[..] +[360] 1 +other +2050404090 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2327 -i +other.begins +388043093 1 +other.begins[..] +[1 100 10] 1 -return +other.ends +188576144 1 +other.ends[..] +[1 100 10] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2328 -i -1 +2276 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2328 -i +this.begins +832279283 1 +this.begins[..] +[356] 1 -return +this.ends +265119009 1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2329 +2277 i -100 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2329 +2277 i -100 +356 1 return 0 @@ -59755,118 +59644,90 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2330 +2278 i -1 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2330 +2278 i -1 +360 1 return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2331 -i -10 +0 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2331 -i -10 +2276 +this +789219251 1 -return -0 +this.begins +832279283 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2332 -i -100 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2332 -i -100 +this.ends +265119009 1 -return -0 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2333 -i -100 +2279 +this +789219251 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2333 -i -100 +this.begins +832279283 1 -return -0 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2334 -i -100 +this.ends +265119009 +1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2334 -i -100 +2280 +this +789219251 1 -return -0 +this.begins +832279283 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2335 -i -10 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2335 -i -10 +this.ends +265119009 1 -return -0 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2336 +2281 i -10 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2336 +2281 i -10 +356 1 return 0 @@ -59874,16 +59735,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2337 +2282 i -10 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2337 +2282 i -10 +360 1 return 0 @@ -59891,59 +59752,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2325 +2280 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2311 +2279 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 return -1 +false 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2338 +2283 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] @@ -59951,18 +59812,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2339 +2284 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] @@ -59970,14 +59831,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2340 +2285 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2340 +2285 i 1 1 @@ -59987,14 +59848,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2341 +2286 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2341 +2286 i 1 1 @@ -60004,14 +59865,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2342 +2287 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2342 +2287 i 1 1 @@ -60021,14 +59882,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2343 +2288 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2343 +2288 i 100 1 @@ -60038,14 +59899,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2344 +2289 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2344 +2289 i 1 1 @@ -60055,14 +59916,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2345 +2290 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2345 +2290 i 10 1 @@ -60072,14 +59933,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2346 +2291 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2346 +2291 i 100 1 @@ -60089,14 +59950,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2347 +2292 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2347 +2292 i 100 1 @@ -60106,14 +59967,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2348 +2293 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2348 +2293 i 100 1 @@ -60123,14 +59984,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2349 +2294 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2349 +2294 i 10 1 @@ -60140,14 +60001,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2350 +2295 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2350 +2295 i 10 1 @@ -60157,14 +60018,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2351 +2296 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2351 +2296 i 10 1 @@ -60174,139 +60035,167 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2339 +2284 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2352 +2283 this -1739876329 +2050404090 1 this.begins -1205555397 +388043093 1 this.begins[..] [1 100 10] 1 this.ends -1543974463 +188576144 1 this.ends[..] [1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2353 -i -1 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2353 -i -1 +2297 +this +789219251 1 -return +this.begins +832279283 1 +this.begins[..] +[356] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2354 -i +this.ends +265119009 1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2354 -i +2298 +this +789219251 +1 +this.begins +832279283 1 +this.begins[..] +[356] 1 -return +this.ends +265119009 1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2355 +2299 i -1 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2355 +2299 i -1 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2356 +2300 i -100 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2356 +2300 i -100 +360 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2357 -i +2298 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2357 -i +2301 +this +789219251 1 +this.begins +832279283 1 -return +this.begins[..] +[356] 1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2358 +2302 i -10 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2358 +2302 i -10 +356 1 return 0 @@ -60314,50 +60203,112 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2359 +2303 i -100 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2359 +2303 i -100 +360 1 return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2360 -i -100 +2301 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2360 -i -100 +2297 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 return -0 +356 +1 + +MapQuick1.StreetNumberSet.max():::ENTER +this_invocation_nonce +2304 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2305 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2361 +2306 i -100 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2361 +2306 i -100 +356 1 return 0 @@ -60365,33 +60316,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2362 +2307 i -10 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2362 +2307 i -10 +360 1 return 0 1 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2305 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2308 +this +789219251 +1 +this.begins +832279283 +1 +this.begins[..] +[356] +1 +this.ends +265119009 +1 +this.ends[..] +[360] +1 + MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2363 +2309 i -10 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2363 +2309 i -10 +356 1 return 0 @@ -60399,16 +60388,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2364 +2310 i -10 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2364 +2310 i -10 +360 1 return 0 @@ -60416,348 +60405,371 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2352 +2308 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2338 +2304 this -1739876329 +789219251 1 this.begins -1205555397 +832279283 1 this.begins[..] -[1 100 10] +[356] 1 this.ends -1543974463 +265119009 1 this.ends[..] -[1 100 10] +[360] 1 return -100 +360 +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +2311 +this +2050404090 +1 +this.begins +388043093 +1 +this.begins[..] +[1 100 10] +1 +this.ends +188576144 +1 +this.ends[..] +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2365 +2312 this -1160003871 +2050404090 1 this.begins -1075738627 +388043093 1 this.begins[..] -[356] +[1 100 10] 1 this.ends -282828951 +188576144 1 this.ends[..] -[360] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2366 +2313 i -356 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2366 +2313 i -356 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2367 +2314 i -360 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2367 +2314 i -360 +1 1 return -0 +1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2365 -this -1160003871 +2315 +i 1 -this.begins -1075738627 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2315 +i 1 -this.ends -282828951 1 -this.ends[..] -[360] +return +1 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2275 -this -1160003871 -1 -this.begins -1075738627 +2316 +i +100 1 -this.begins[..] -[356] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2316 +i +100 1 -this.ends -282828951 +return +0 1 -this.ends[..] -[360] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2317 +i 1 -other -1739876329 1 -other.begins -1205555397 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2317 +i 1 -other.begins[..] -[1 100 10] 1 -other.ends -1543974463 +return 1 -other.ends[..] -[1 100 10] 1 -return -false + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2318 +i +10 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2368 -numbers -1293618474 +2318 +i +10 1 -numbers.toString -"189-195" +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2369 +2319 i -189 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2369 +2319 i -189 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2370 +2320 i -195 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2370 +2320 i -195 +100 1 return +0 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2321 +i +100 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2371 -this -156545103 +2321 +i +100 1 -this.begins -345281752 +return +0 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2322 +i +10 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2322 +i +10 1 -this.ends[..] -[195] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2372 +2323 i -189 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2372 +2323 i -189 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2373 +2324 i -195 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2373 +2324 i -195 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2371 +2312 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] +[1 100 10] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2368 +2325 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] +[1 100 10] 1 -numbers -1293618474 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2326 +i 1 -numbers.toString -"189-195" 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2374 -this -156545103 +2326 +i 1 -this.begins -345281752 1 -this.begins[..] -[189] +return 1 -this.ends -1896294051 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2327 +i 1 -n -0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2375 -this -156545103 -1 -this.begins -345281752 +2327 +i 1 -this.begins[..] -[189] 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2376 +2328 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2376 +2328 i -189 +1 1 return 1 @@ -60765,52 +60777,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2377 +2329 i -195 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2377 +2329 i -195 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2375 -this -156545103 +2330 +i 1 -this.begins -345281752 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2330 +i 1 -this.ends -1896294051 1 -this.ends[..] -[195] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2378 +2331 i -0 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2378 +2331 i -0 +10 1 return 0 @@ -60818,171 +60828,197 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2379 +2332 i -189 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2379 +2332 i -189 +100 1 return +0 1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2333 +i +100 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2380 -this -156545103 +2333 +i +100 1 -this.begins -345281752 +return +0 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2334 +i +100 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2334 +i +100 1 -this.ends[..] -[195] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2381 +2335 i -189 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2381 +2335 i -189 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2382 +2336 i -195 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2382 +2336 i -195 +10 1 return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2337 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2337 +i +10 1 +return +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2380 +2325 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] +[1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2374 +2311 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] -1 -n -0 +[1 100 10] 1 return -false +1 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2383 +2338 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] -1 -n -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2384 +2339 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2385 +2340 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2385 +2340 i -189 +1 1 return 1 @@ -60990,409 +61026,241 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2386 +2341 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2386 +2341 i -195 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2384 -this -156545103 -1 -this.begins -345281752 1 -this.begins[..] -[189] 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2387 -i -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2387 +2342 i -0 -1 -return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2388 -i -189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2388 +2342 i -189 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -2389 -this -156545103 -1 -this.begins -345281752 1 -this.begins[..] -[189] 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2390 +2343 i -189 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2390 +2343 i -189 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2391 +2344 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2391 +2344 i -195 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2389 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.size():::ENTER -this_invocation_nonce -2392 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -2393 -this -156545103 1 -this.begins -345281752 -1 -this.begins[..] -[189] 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2394 +2345 i -189 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2394 +2345 i -189 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2395 +2346 i -195 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2395 +2346 i -195 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2393 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] +2347 +i +100 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2396 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 +2347 +i +100 1 -this.ends[..] -[195] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2397 +2348 i -189 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2397 +2348 i -189 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2398 +2349 i -195 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2398 +2349 i -195 +10 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2396 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] +2350 +i +10 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2392 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] +2350 +i +10 1 return -4 +0 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2383 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] +2351 +i +10 1 -n -0 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2351 +i +10 1 return 0 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2399 +2339 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] -1 -n -857 +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2400 +2352 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2401 +2353 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2401 +2353 i -189 +1 1 return 1 @@ -61400,419 +61268,361 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2402 +2354 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2402 +2354 i -195 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2400 -this -156545103 +2355 +i 1 -this.begins -345281752 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2355 +i 1 -this.ends -1896294051 1 -this.ends[..] -[195] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2403 +2356 i -857 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2403 +2356 i -857 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2404 +2357 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2404 +2357 i -189 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2405 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] +2358 +i +10 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2358 +i +10 1 -this.ends[..] -[195] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2406 +2359 i -189 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2406 +2359 i -189 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2407 +2360 i -195 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2407 +2360 i -195 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2405 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] +2361 +i +100 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2399 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 -n -857 +2361 +i +100 1 return -false +0 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2408 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 -n -857 +2362 +i +10 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2409 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 +2362 +i +10 1 -this.ends[..] -[195] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2410 +2363 i -189 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2410 +2363 i -189 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2411 +2364 i -195 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2411 +2364 i -195 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2409 +2352 this -156545103 +2050404090 1 this.begins -345281752 +388043093 1 this.begins[..] -[189] +[1 100 10] 1 this.ends -1896294051 +188576144 1 this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2412 -i -857 +[1 100 10] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2412 -i -857 +2338 +this +2050404090 1 -return +this.begins +388043093 1 +this.begins[..] +[1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2413 -i -189 +this.ends +188576144 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2413 -i -189 +this.ends[..] +[1 100 10] 1 return -1 +100 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2414 +2365 this -156545103 +789219251 1 this.begins -345281752 +832279283 1 this.begins[..] -[189] +[356] 1 this.ends -1896294051 +265119009 1 this.ends[..] -[195] +[360] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2415 +2366 i -189 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2415 +2366 i -189 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2416 +2367 i -195 +360 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2416 +2367 i -195 +360 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2414 +2365 this -156545103 +789219251 1 this.begins -345281752 +832279283 1 this.begins[..] -[189] +[356] 1 this.ends -1896294051 +265119009 1 this.ends[..] -[195] +[360] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 this_invocation_nonce -2417 +2275 this -156545103 +789219251 1 this.begins -345281752 +832279283 1 this.begins[..] -[189] +[356] 1 this.ends -1896294051 +265119009 1 this.ends[..] -[195] +[360] 1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -2418 -this -156545103 +other +2050404090 1 -this.begins -345281752 +other.begins +388043093 1 -this.begins[..] -[189] +other.begins[..] +[1 100 10] +1 +other.ends +188576144 +1 +other.ends[..] +[1 100 10] +1 +return +false 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +2368 +numbers +1608230649 1 -this.ends[..] -[195] +numbers.toString +"189-195" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2419 +2369 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2419 +2369 i 189 1 @@ -61822,14 +61632,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2420 +2370 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2420 +2370 i 195 1 @@ -61837,39 +61647,20 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2418 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2421 +2371 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -61877,14 +61668,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2422 +2372 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2422 +2372 i 189 1 @@ -61894,14 +61685,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2423 +2373 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2423 +2373 i 195 1 @@ -61911,106 +61702,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2421 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -2417 +2371 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -return -4 -1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2408 +2368 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -n -857 +numbers +1608230649 1 -return -4 +numbers.toString +"189-195" 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2424 +2374 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -690 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2425 +2375 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62018,14 +61787,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2426 +2376 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2426 +2376 i 189 1 @@ -62035,14 +61804,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2427 +2377 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2427 +2377 i 195 1 @@ -62052,18 +61821,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2425 +2375 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62071,16 +61840,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2428 +2378 i -690 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2428 +2378 i -690 +0 1 return 0 @@ -62088,14 +61857,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2429 +2379 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2429 +2379 i 189 1 @@ -62105,18 +61874,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2430 +2380 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62124,14 +61893,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2431 +2381 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2431 +2381 i 189 1 @@ -62141,14 +61910,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2432 +2382 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2432 +2382 i 195 1 @@ -62158,18 +61927,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2430 +2380 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62177,24 +61946,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2424 +2374 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -690 +0 1 return false @@ -62202,40 +61971,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2433 +2383 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -690 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2434 +2384 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62243,14 +62012,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2435 +2385 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2435 +2385 i 189 1 @@ -62260,14 +62029,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2436 +2386 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2436 +2386 i 195 1 @@ -62277,18 +62046,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2434 +2384 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62296,16 +62065,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2437 +2387 i -690 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2437 +2387 i -690 +0 1 return 0 @@ -62313,14 +62082,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2438 +2388 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2438 +2388 i 189 1 @@ -62330,18 +62099,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2439 +2389 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62349,14 +62118,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2440 +2390 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2440 +2390 i 189 1 @@ -62366,14 +62135,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2441 +2391 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2441 +2391 i 195 1 @@ -62383,18 +62152,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2439 +2389 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62402,18 +62171,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2442 +2392 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62421,18 +62190,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2443 +2393 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62440,14 +62209,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2444 +2394 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2444 +2394 i 189 1 @@ -62457,14 +62226,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2445 +2395 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2445 +2395 i 195 1 @@ -62474,18 +62243,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2443 +2393 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62493,18 +62262,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2446 +2396 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62512,14 +62281,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2447 +2397 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2447 +2397 i 189 1 @@ -62529,14 +62298,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2448 +2398 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2448 +2398 i 195 1 @@ -62546,18 +62315,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2446 +2396 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62565,18 +62334,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2442 +2392 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62587,65 +62356,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2433 +2383 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -690 +0 1 return -4 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2449 +2399 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -523 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2450 +2400 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62653,14 +62422,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2451 +2401 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2451 +2401 i 189 1 @@ -62670,14 +62439,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2452 +2402 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2452 +2402 i 195 1 @@ -62687,18 +62456,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2450 +2400 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62706,16 +62475,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2453 +2403 i -523 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2453 +2403 i -523 +857 1 return 1 @@ -62723,14 +62492,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2454 +2404 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2454 +2404 i 189 1 @@ -62740,18 +62509,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2455 +2405 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62759,14 +62528,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2456 +2406 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2456 +2406 i 189 1 @@ -62776,14 +62545,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2457 +2407 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2457 +2407 i 195 1 @@ -62793,18 +62562,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2455 +2405 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62812,24 +62581,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2449 +2399 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -523 +857 1 return false @@ -62837,40 +62606,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2458 +2408 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -523 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2459 +2409 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62878,14 +62647,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2460 +2410 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2460 +2410 i 189 1 @@ -62895,14 +62664,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2461 +2411 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2461 +2411 i 195 1 @@ -62912,18 +62681,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2459 +2409 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62931,16 +62700,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2462 +2412 i -523 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2462 +2412 i -523 +857 1 return 1 @@ -62948,14 +62717,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2463 +2413 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2463 +2413 i 189 1 @@ -62965,18 +62734,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2464 +2414 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -62984,14 +62753,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2465 +2415 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2465 +2415 i 189 1 @@ -63001,14 +62770,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2466 +2416 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2466 +2416 i 195 1 @@ -63018,18 +62787,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2464 +2414 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63037,18 +62806,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2467 +2417 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63056,18 +62825,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2468 +2418 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63075,14 +62844,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2469 +2419 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2469 +2419 i 189 1 @@ -63092,14 +62861,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2470 +2420 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2470 +2420 i 195 1 @@ -63109,18 +62878,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2468 +2418 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63128,18 +62897,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2471 +2421 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63147,14 +62916,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2472 +2422 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2472 +2422 i 189 1 @@ -63164,14 +62933,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2473 +2423 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2473 +2423 i 195 1 @@ -63181,18 +62950,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2471 +2421 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63200,18 +62969,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2467 +2417 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63222,24 +62991,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2458 +2408 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -523 +857 1 return 4 @@ -63247,40 +63016,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2474 +2424 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -356 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2475 +2425 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63288,14 +63057,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2476 +2426 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2476 +2426 i 189 1 @@ -63305,14 +63074,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2477 +2427 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2477 +2427 i 195 1 @@ -63322,18 +63091,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2475 +2425 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63341,16 +63110,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2478 +2428 i -356 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2478 +2428 i -356 +690 1 return 0 @@ -63358,14 +63127,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2479 +2429 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2479 +2429 i 189 1 @@ -63375,18 +63144,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2480 +2430 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63394,14 +63163,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2481 +2431 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2481 +2431 i 189 1 @@ -63411,14 +63180,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2482 +2432 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2482 +2432 i 195 1 @@ -63428,18 +63197,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2480 +2430 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63447,24 +63216,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2474 +2424 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -356 +690 1 return false @@ -63472,40 +63241,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2483 +2433 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -356 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2484 +2434 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63513,14 +63282,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2485 +2435 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2485 +2435 i 189 1 @@ -63530,14 +63299,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2486 +2436 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2486 +2436 i 195 1 @@ -63547,18 +63316,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2484 +2434 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63566,16 +63335,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2487 +2437 i -356 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2487 +2437 i -356 +690 1 return 0 @@ -63583,14 +63352,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2488 +2438 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2488 +2438 i 189 1 @@ -63600,18 +63369,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2489 +2439 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63619,14 +63388,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2490 +2440 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2490 +2440 i 189 1 @@ -63636,14 +63405,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2491 +2441 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2491 +2441 i 195 1 @@ -63653,18 +63422,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2489 +2439 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63672,18 +63441,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2492 +2442 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63691,18 +63460,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2493 +2443 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63710,14 +63479,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2494 +2444 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2494 +2444 i 189 1 @@ -63727,14 +63496,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2495 +2445 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2495 +2445 i 195 1 @@ -63744,18 +63513,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2493 +2443 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63763,18 +63532,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2496 +2446 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63782,14 +63551,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2497 +2447 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2497 +2447 i 189 1 @@ -63799,14 +63568,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2498 +2448 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2498 +2448 i 195 1 @@ -63816,18 +63585,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2496 +2446 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63835,18 +63604,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2492 +2442 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63857,24 +63626,24 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2483 +2433 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -356 +690 1 return 4 @@ -63882,40 +63651,40 @@ return MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2499 +2449 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -189 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2500 +2450 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63923,14 +63692,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2501 +2451 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2501 +2451 i 189 1 @@ -63940,14 +63709,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2502 +2452 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2502 +2452 i 195 1 @@ -63957,18 +63726,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2500 +2450 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -63976,16 +63745,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2503 +2453 i -189 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2503 +2453 i -189 +523 1 return 1 @@ -63993,14 +63762,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2504 +2454 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2504 +2454 i 189 1 @@ -64010,18 +63779,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2505 +2455 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64029,14 +63798,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2506 +2456 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2506 +2456 i 189 1 @@ -64046,14 +63815,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2507 +2457 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2507 +2457 i 195 1 @@ -64063,84 +63832,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2505 +2455 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2499 +2449 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -189 +523 1 return -true +false 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2508 +2458 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -189 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2509 +2459 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64148,14 +63917,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2510 +2460 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2510 +2460 i 189 1 @@ -64165,14 +63934,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2511 +2461 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2511 +2461 i 195 1 @@ -64182,18 +63951,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2509 +2459 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64201,16 +63970,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2512 +2462 i -189 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2512 +2462 i -189 +523 1 return 1 @@ -64218,14 +63987,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2513 +2463 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2513 +2463 i 189 1 @@ -64235,18 +64004,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2514 +2464 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64254,14 +64023,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2515 +2465 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2515 +2465 i 189 1 @@ -64271,14 +64040,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2516 +2466 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2516 +2466 i 195 1 @@ -64288,18 +64057,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2514 +2464 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64307,18 +64076,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2517 +2467 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64326,18 +64095,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2518 +2468 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64345,14 +64114,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2519 +2469 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2519 +2469 i 189 1 @@ -64362,14 +64131,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2520 +2470 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2520 +2470 i 195 1 @@ -64379,18 +64148,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2518 +2468 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64398,18 +64167,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2521 +2471 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64417,14 +64186,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2522 +2472 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2522 +2472 i 189 1 @@ -64434,14 +64203,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2523 +2473 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2523 +2473 i 195 1 @@ -64451,18 +64220,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2521 +2471 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64470,18 +64239,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2517 +2467 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64492,65 +64261,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2508 +2458 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -189 +523 1 return -0 +4 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2524 +2474 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -22 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2525 +2475 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64558,14 +64327,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2526 +2476 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2526 +2476 i 189 1 @@ -64575,14 +64344,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2527 +2477 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2527 +2477 i 195 1 @@ -64592,18 +64361,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2525 +2475 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64611,16 +64380,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2528 +2478 i -22 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2528 +2478 i -22 +356 1 return 0 @@ -64628,14 +64397,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2529 +2479 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2529 +2479 i 189 1 @@ -64645,18 +64414,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2530 +2480 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64664,14 +64433,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2531 +2481 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2531 +2481 i 189 1 @@ -64681,14 +64450,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2532 +2482 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2532 +2482 i 195 1 @@ -64698,18 +64467,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2530 +2480 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64717,24 +64486,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2524 +2474 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -22 +356 1 return false @@ -64742,40 +64511,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2533 +2483 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -22 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2534 +2484 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64783,14 +64552,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2535 +2485 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2535 +2485 i 189 1 @@ -64800,14 +64569,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2536 +2486 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2536 +2486 i 195 1 @@ -64817,18 +64586,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2534 +2484 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64836,16 +64605,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2537 +2487 i -22 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2537 +2487 i -22 +356 1 return 0 @@ -64853,14 +64622,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2538 +2488 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2538 +2488 i 189 1 @@ -64870,18 +64639,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2539 +2489 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64889,14 +64658,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2540 +2490 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2540 +2490 i 189 1 @@ -64906,14 +64675,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2541 +2491 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2541 +2491 i 195 1 @@ -64923,18 +64692,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2539 +2489 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64942,18 +64711,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2542 +2492 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64961,18 +64730,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2543 +2493 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -64980,14 +64749,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2544 +2494 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2544 +2494 i 189 1 @@ -64997,14 +64766,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2545 +2495 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2545 +2495 i 195 1 @@ -65014,18 +64783,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2543 +2493 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65033,18 +64802,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2546 +2496 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65052,14 +64821,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2547 +2497 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2547 +2497 i 189 1 @@ -65069,14 +64838,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2548 +2498 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2548 +2498 i 195 1 @@ -65086,18 +64855,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2546 +2496 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65105,18 +64874,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2542 +2492 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65127,65 +64896,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2533 +2483 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -22 +356 1 return -0 +4 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2549 +2499 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -879 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2550 +2500 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65193,14 +64962,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2551 +2501 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2551 +2501 i 189 1 @@ -65210,14 +64979,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2552 +2502 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2552 +2502 i 195 1 @@ -65227,18 +64996,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2550 +2500 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65246,16 +65015,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2553 +2503 i -879 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2553 +2503 i -879 +189 1 return 1 @@ -65263,14 +65032,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2554 +2504 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2554 +2504 i 189 1 @@ -65280,18 +65049,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2555 +2505 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65299,14 +65068,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2556 +2506 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2556 +2506 i 189 1 @@ -65316,14 +65085,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2557 +2507 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2557 +2507 i 195 1 @@ -65333,84 +65102,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2555 +2505 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -2549 +2499 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -879 +189 1 return -false +true 1 MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2558 +2508 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -879 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2559 +2509 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65418,14 +65187,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2560 +2510 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2560 +2510 i 189 1 @@ -65435,14 +65204,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2561 +2511 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2561 +2511 i 195 1 @@ -65452,18 +65221,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2559 +2509 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65471,16 +65240,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2562 +2512 i -879 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2562 +2512 i -879 +189 1 return 1 @@ -65488,14 +65257,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2563 +2513 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2563 +2513 i 189 1 @@ -65505,18 +65274,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2564 +2514 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65524,14 +65293,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2565 +2515 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2565 +2515 i 189 1 @@ -65541,14 +65310,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2566 +2516 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2566 +2516 i 195 1 @@ -65558,18 +65327,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2564 +2514 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65577,18 +65346,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2567 +2517 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65596,18 +65365,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2568 +2518 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65615,14 +65384,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2569 +2519 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2569 +2519 i 189 1 @@ -65632,14 +65401,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2570 +2520 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2570 +2520 i 195 1 @@ -65649,18 +65418,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2568 +2518 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65668,18 +65437,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2571 +2521 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65687,14 +65456,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2572 +2522 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2572 +2522 i 189 1 @@ -65704,14 +65473,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2573 +2523 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2573 +2523 i 195 1 @@ -65721,18 +65490,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2571 +2521 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65740,18 +65509,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2567 +2517 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65762,65 +65531,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2558 +2508 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -879 +189 1 return -4 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2574 +2524 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -712 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2575 +2525 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65828,14 +65597,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2576 +2526 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2576 +2526 i 189 1 @@ -65845,14 +65614,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2577 +2527 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2577 +2527 i 195 1 @@ -65862,18 +65631,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2575 +2525 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65881,16 +65650,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2578 +2528 i -712 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2578 +2528 i -712 +22 1 return 0 @@ -65898,14 +65667,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2579 +2529 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2579 +2529 i 189 1 @@ -65915,18 +65684,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2580 +2530 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65934,14 +65703,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2581 +2531 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2581 +2531 i 189 1 @@ -65951,14 +65720,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2582 +2532 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2582 +2532 i 195 1 @@ -65968,18 +65737,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2580 +2530 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -65987,24 +65756,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2574 +2524 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -712 +22 1 return false @@ -66012,40 +65781,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2583 +2533 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -712 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2584 +2534 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66053,14 +65822,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2585 +2535 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2585 +2535 i 189 1 @@ -66070,14 +65839,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2586 +2536 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2586 +2536 i 195 1 @@ -66087,18 +65856,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2584 +2534 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66106,16 +65875,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2587 +2537 i -712 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2587 +2537 i -712 +22 1 return 0 @@ -66123,14 +65892,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2588 +2538 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2588 +2538 i 189 1 @@ -66140,18 +65909,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2589 +2539 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66159,14 +65928,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2590 +2540 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2590 +2540 i 189 1 @@ -66176,14 +65945,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2591 +2541 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2591 +2541 i 195 1 @@ -66193,18 +65962,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2589 +2539 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66212,18 +65981,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2592 +2542 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66231,18 +66000,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2593 +2543 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66250,14 +66019,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2594 +2544 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2594 +2544 i 189 1 @@ -66267,14 +66036,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2595 +2545 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2595 +2545 i 195 1 @@ -66284,18 +66053,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2593 +2543 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66303,18 +66072,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2596 +2546 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66322,14 +66091,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2597 +2547 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2597 +2547 i 189 1 @@ -66339,14 +66108,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2598 +2548 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2598 +2548 i 195 1 @@ -66356,18 +66125,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2596 +2546 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66375,18 +66144,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2592 +2542 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66397,65 +66166,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2583 +2533 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -712 +22 1 return -4 +0 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2599 +2549 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -545 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2600 +2550 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66463,14 +66232,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2601 +2551 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2601 +2551 i 189 1 @@ -66480,14 +66249,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2602 +2552 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2602 +2552 i 195 1 @@ -66497,18 +66266,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2600 +2550 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66516,16 +66285,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2603 +2553 i -545 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2603 +2553 i -545 +879 1 return 1 @@ -66533,14 +66302,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2604 +2554 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2604 +2554 i 189 1 @@ -66550,18 +66319,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2605 +2555 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66569,14 +66338,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2606 +2556 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2606 +2556 i 189 1 @@ -66586,14 +66355,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2607 +2557 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2607 +2557 i 195 1 @@ -66603,18 +66372,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2605 +2555 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66622,24 +66391,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2599 +2549 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -545 +879 1 return false @@ -66647,40 +66416,40 @@ false MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2608 +2558 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 n -545 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2609 +2559 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66688,14 +66457,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2610 +2560 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2610 +2560 i 189 1 @@ -66705,14 +66474,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2611 +2561 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2611 +2561 i 195 1 @@ -66722,18 +66491,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2609 +2559 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66741,16 +66510,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2612 +2562 i -545 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2612 +2562 i -545 +879 1 return 1 @@ -66758,14 +66527,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2613 +2563 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2613 +2563 i 189 1 @@ -66775,18 +66544,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2614 +2564 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66794,14 +66563,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2615 +2565 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2615 +2565 i 189 1 @@ -66811,14 +66580,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2616 +2566 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2616 +2566 i 195 1 @@ -66828,18 +66597,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2614 +2564 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66847,18 +66616,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2617 +2567 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66866,18 +66635,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2618 +2568 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66885,14 +66654,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2619 +2569 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2619 +2569 i 189 1 @@ -66902,14 +66671,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2620 +2570 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2620 +2570 i 195 1 @@ -66919,18 +66688,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2618 +2568 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66938,18 +66707,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2621 +2571 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -66957,14 +66726,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2622 +2572 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2622 +2572 i 189 1 @@ -66974,14 +66743,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2623 +2573 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2623 +2573 i 195 1 @@ -66991,18 +66760,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2621 +2571 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67010,18 +66779,18 @@ this.ends[..] MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2617 +2567 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67032,134 +66801,65 @@ return MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2608 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 -n -545 -1 -return -4 -1 - -MapQuick1.StreetNumberSet.size():::ENTER -this_invocation_nonce -2624 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -2625 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2626 -i -189 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2626 -i -189 +2558 +this +282432134 1 -return +this.begins +266437232 1 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2627 -i -195 +this.ends +1873859565 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2627 -i -195 +this.ends[..] +[195] 1 -return +n +879 1 +return +4 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2625 +2574 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +n +712 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2628 +2575 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67167,14 +66867,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2629 +2576 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2629 +2576 i 189 1 @@ -67184,14 +66884,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2630 +2577 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2630 +2577 i 195 1 @@ -67201,78 +66901,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2628 +2575 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2624 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 +2578 +i +712 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2578 +i +712 1 return -4 +0 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2631 -this -156545103 -1 -this.begins -345281752 +2579 +i +189 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2579 +i +189 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2632 +2580 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67280,14 +66973,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2633 +2581 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2633 +2581 i 189 1 @@ -67297,14 +66990,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2634 +2582 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2634 +2582 i 195 1 @@ -67314,78 +67007,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2632 +2580 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2631 +2574 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +n +712 +1 return false 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2635 +2583 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +n +712 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2636 +2584 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67393,14 +67092,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2637 +2585 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2637 +2585 i 189 1 @@ -67410,14 +67109,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2638 +2586 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2638 +2586 i 195 1 @@ -67427,37 +67126,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2636 +2584 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2587 +i +712 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2587 +i +712 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2588 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2588 +i +189 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2639 +2589 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67465,14 +67198,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2640 +2590 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2640 +2590 i 189 1 @@ -67482,14 +67215,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2641 +2591 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2641 +2591 i 195 1 @@ -67499,59 +67232,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2639 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.min():::EXIT210 -this_invocation_nonce -2635 +2589 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -return -189 -1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2642 +2592 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67559,18 +67270,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2643 +2593 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67578,14 +67289,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2644 +2594 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2644 +2594 i 189 1 @@ -67595,14 +67306,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2645 +2595 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2645 +2595 i 195 1 @@ -67612,18 +67323,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2643 +2593 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67631,18 +67342,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2646 +2596 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -67650,14 +67361,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2647 +2597 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2647 +2597 i 189 1 @@ -67667,14 +67378,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2648 +2598 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2648 +2598 i 195 1 @@ -67684,386 +67395,348 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2646 +2596 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2642 +2592 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -195 +4 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2649 +2583 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -o -null +n +712 +1 +return +4 1 -o.getClass().getName() -nonsensical -2 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2649 +2599 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -o -null -1 -o.getClass().getName() -nonsensical -2 -return -false +n +545 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2650 +2600 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -null -1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2650 -this -156545103 +2601 +i +189 1 -this.begins -345281752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2601 +i +189 1 -this.begins[..] -[189] +return 1 -this.ends -1896294051 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2602 +i +195 1 -other -null + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2602 +i +195 1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 return -false +1 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2651 +2600 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -o -156545103 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2603 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2603 +i +545 +1 +return 1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2652 +2604 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2604 +i +189 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2605 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -156545103 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2606 +i +189 1 -other.begins -345281752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2606 +i +189 1 -other.begins[..] -[189] +return 1 -other.ends -1896294051 1 -other.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2607 +i +195 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2652 +2607 +i +195 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2605 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -156545103 -1 -other.begins -345281752 -1 -other.begins[..] -[189] -1 -other.ends -1896294051 -1 -other.ends[..] -[195] -1 -return -true -1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -2651 +2599 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -o -156545103 -1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" +n +545 1 return -true +false 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -2653 +2608 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -156545103 -1 -other.begins -345281752 -1 -other.begins[..] -[189] -1 -other.ends -1896294051 -1 -other.ends[..] -[195] +n +545 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2653 +2609 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -156545103 -1 -other.begins -345281752 -1 -other.begins[..] -[189] -1 -other.ends -1896294051 -1 -other.ends[..] -[195] -1 -return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -2654 -numbers -422392391 -1 -numbers.toString -"1" -1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2655 +2610 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2655 +2610 i -1 +189 1 return 1 @@ -68071,52 +67744,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2656 +2611 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2656 +2611 i -1 +195 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2657 +2609 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2658 +2612 i -1 +545 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2658 +2612 i -1 +545 1 return 1 @@ -68124,113 +67797,107 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2659 +2613 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2659 +2613 i -1 +189 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2657 +2614 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2654 -this -1684015092 +2615 +i +189 1 -this.begins -1209669119 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2615 +i +189 1 -this.begins[..] -[1] +return 1 -this.ends -2014866032 1 -this.ends[..] -[1] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2616 +i +195 1 -numbers -422392391 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2616 +i +195 +1 +return 1 -numbers.toString -"1" 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2660 +2614 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -1684015092 -1 -other.begins -1209669119 -1 -other.begins[..] -[1] -1 -other.ends -2014866032 -1 -other.ends[..] -[1] -1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -2661 +2617 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68238,18 +67905,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2662 +2618 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68257,14 +67924,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2663 +2619 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2663 +2619 i 189 1 @@ -68274,14 +67941,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2664 +2620 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2664 +2620 i 195 1 @@ -68291,18 +67958,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2662 +2618 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68310,18 +67977,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2665 +2621 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68329,14 +67996,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2666 +2622 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2666 +2622 i 189 1 @@ -68346,14 +68013,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2667 +2623 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2667 +2623 i 195 1 @@ -68363,59 +68030,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2665 +2621 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2661 +2617 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -189 +4 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -2668 +2608 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 +1 +this.ends[..] +[195] +1 +n +545 +1 +return +4 +1 + +MapQuick1.StreetNumberSet.size():::ENTER +this_invocation_nonce +2624 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 1 this.ends[..] [195] @@ -68423,18 +68115,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2669 +2625 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68442,14 +68134,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2670 +2626 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2670 +2626 i 189 1 @@ -68459,14 +68151,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2671 +2627 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2671 +2627 i 195 1 @@ -68476,18 +68168,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2669 +2625 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68495,18 +68187,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2672 +2628 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -68514,14 +68206,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2673 +2629 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2673 +2629 i 189 1 @@ -68531,14 +68223,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2674 +2630 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2674 +2630 i 195 1 @@ -68548,95 +68240,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2672 +2628 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -2668 +2624 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -195 +4 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2675 +2631 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2676 +2632 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2677 +2633 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2677 +2633 i -1 +189 1 return 1 @@ -68644,16 +68336,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2678 +2634 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2678 +2634 i -1 +195 1 return 1 @@ -68661,54 +68353,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2676 +2632 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] +1 + +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +this_invocation_nonce +2631 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] +1 +return +false +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +2635 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2679 +2636 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2680 +2637 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2680 +2637 i -1 +189 1 return 1 @@ -68716,16 +68449,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2681 +2638 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2681 +2638 i -1 +195 1 return 1 @@ -68733,121 +68466,167 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2679 +2636 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2675 +2639 this -1684015092 +282432134 1 this.begins -1209669119 +266437232 1 this.begins[..] -[1] +[189] 1 this.ends -2014866032 +1873859565 1 this.ends[..] -[1] +[195] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2640 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2640 +i +189 1 return 1 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2660 +2641 +i +195 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2641 +i +195 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2639 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -1684015092 + +MapQuick1.StreetNumberSet.min():::EXIT210 +this_invocation_nonce +2635 +this +282432134 1 -other.begins -1209669119 +this.begins +266437232 1 -other.begins[..] -[1] +this.begins[..] +[189] 1 -other.ends -2014866032 +this.ends +1873859565 1 -other.ends[..] -[1] +this.ends[..] +[195] 1 return -false +189 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2682 -numbers -863125040 -1 -numbers.toString -"1,7" +2642 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2683 -i +this.begins +266437232 1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2683 -i +2643 +this +282432134 1 +this.begins +266437232 1 -return +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2684 +2644 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2684 +2644 i -1 +189 1 return 1 @@ -68855,69 +68634,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2685 +2645 i -7 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2685 +2645 i -7 +195 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2686 -i -7 +2643 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2686 -i -7 +this.begins +266437232 1 -return +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2687 +2646 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2688 +2647 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2688 +2647 i -1 +189 1 return 1 @@ -68925,289 +68706,456 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2689 +2648 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2689 +2648 i -1 +195 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2690 -i +2646 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2690 -i +2642 +this +282432134 1 +this.begins +266437232 1 -return +this.begins[..] +[189] 1 +this.ends +1873859565 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2691 -i -7 +this.ends[..] +[195] +1 +return +195 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -2691 -i -7 +2649 +this +282432134 1 -return +this.begins +266437232 1 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2692 -i -7 +this.ends +1873859565 +1 +this.ends[..] +[195] +1 +o +null 1 +o.getClass().getName() +nonsensical +2 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -2692 -i -7 +2649 +this +282432134 1 -return +this.begins +266437232 1 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2693 -i -7 +this.ends +1873859565 +1 +this.ends[..] +[195] +1 +o +null +1 +o.getClass().getName() +nonsensical +2 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2693 -i -7 +2650 +this +282432134 1 -return +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 +other +null 1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 this_invocation_nonce -2687 +2650 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] +1 +other +null +1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 +return +false 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -2682 +2651 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] 1 -numbers -863125040 +o +282432134 1 -numbers.toString -"1,7" +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2694 +2652 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 other -811760110 +282432134 1 other.begins -1415157681 +266437232 1 other.begins[..] -[1 7] +[189] 1 other.ends -1291113768 +1873859565 1 other.ends[..] -[1 7] +[195] 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -2695 +2652 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +other +282432134 +1 +other.begins +266437232 +1 +other.begins[..] +[189] +1 +other.ends +1873859565 +1 +other.ends[..] +[195] +1 +return +true +1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -2696 +2651 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +o +282432134 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" +1 +return +true +1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2697 -i -189 +2653 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] +1 +other +282432134 +1 +other.begins +266437232 +1 +other.begins[..] +[189] +1 +other.ends +1873859565 +1 +other.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -2697 -i -189 +2653 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] +1 +other +282432134 +1 +other.begins +266437232 +1 +other.begins[..] +[189] +1 +other.ends +1873859565 +1 +other.ends[..] +[195] 1 return +true +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +2654 +numbers +315138752 1 +numbers.toString +"1" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2698 +2655 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2698 +2655 i -195 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2696 -this -156545103 +2656 +i 1 -this.begins -345281752 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2656 +i 1 -this.ends -1896294051 1 -this.ends[..] -[195] +return +1 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2699 +2657 this -156545103 +1843289228 1 this.begins -345281752 +1361289747 1 this.begins[..] -[189] +[1] 1 this.ends -1896294051 +1381128261 1 this.ends[..] -[195] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2700 +2658 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2700 +2658 i -189 +1 1 return 1 @@ -69215,16 +69163,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2701 +2659 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2701 +2659 i -195 +1 1 return 1 @@ -69232,59 +69180,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2699 +2657 this -156545103 +1843289228 1 this.begins -345281752 +1361289747 1 this.begins[..] -[189] +[1] 1 this.ends -1896294051 +1381128261 1 this.ends[..] -[195] +[1] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2695 +2654 this -156545103 +1843289228 1 this.begins -345281752 +1361289747 +1 +this.begins[..] +[1] +1 +this.ends +1381128261 +1 +this.ends[..] +[1] +1 +numbers +315138752 +1 +numbers.toString +"1" +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +this_invocation_nonce +2660 +this +282432134 +1 +this.begins +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -return -189 +other +1843289228 +1 +other.begins +1361289747 +1 +other.begins[..] +[1] +1 +other.ends +1381128261 +1 +other.ends[..] +[1] 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2702 +2661 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -69292,18 +69277,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2703 +2662 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -69311,14 +69296,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2704 +2663 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2704 +2663 i 189 1 @@ -69328,14 +69313,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2705 +2664 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2705 +2664 i 195 1 @@ -69345,18 +69330,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2703 +2662 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -69364,18 +69349,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2706 +2665 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -69383,14 +69368,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2707 +2666 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2707 +2666 i 189 1 @@ -69400,14 +69385,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2708 +2667 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2708 +2667 i 195 1 @@ -69417,95 +69402,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2706 +2665 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2702 +2661 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -195 +189 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2709 +2668 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2710 +2669 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2711 +2670 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2711 +2670 i -1 +189 1 return 1 @@ -69513,67 +69498,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2712 +2671 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2712 +2671 i -1 +195 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2713 -i -1 +2669 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2713 -i +this.begins +266437232 1 +this.begins[..] +[189] 1 -return +this.ends +1873859565 1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2714 -i -7 +2672 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2714 -i -7 +this.begins +266437232 1 -return +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2715 +2673 i -7 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2715 +2673 i -7 +189 1 return 1 @@ -69581,16 +69570,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2716 +2674 i -7 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2716 +2674 i -7 +195 1 return 1 @@ -69598,69 +69587,93 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2710 +2672 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2717 +2668 this -811760110 +282432134 1 this.begins -1415157681 +266437232 1 this.begins[..] -[1 7] +[189] 1 this.ends -1291113768 +1873859565 1 this.ends[..] -[1 7] +[195] +1 +return +195 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2718 -i +2675 +this +1843289228 +1 +this.begins +1361289747 +1 +this.begins[..] +[1] +1 +this.ends +1381128261 1 +this.ends[..] +[1] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2718 -i +2676 +this +1843289228 1 +this.begins +1361289747 1 -return +this.begins[..] +[1] +1 +this.ends +1381128261 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2719 +2677 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2719 +2677 i 1 1 @@ -69670,14 +69683,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2720 +2678 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2720 +2678 i 1 1 @@ -69685,35 +69698,56 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2721 -i -7 +2676 +this +1843289228 +1 +this.begins +1361289747 +1 +this.begins[..] +[1] +1 +this.ends +1381128261 +1 +this.ends[..] +[1] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2721 -i -7 +2679 +this +1843289228 1 -return +this.begins +1361289747 +1 +this.begins[..] +[1] +1 +this.ends +1381128261 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2722 +2680 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2722 +2680 i -7 +1 1 return 1 @@ -69721,16 +69755,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2723 +2681 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2723 +2681 i -7 +1 1 return 1 @@ -69738,40 +69772,40 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2717 +2679 this -811760110 +1843289228 1 this.begins -1415157681 +1361289747 1 this.begins[..] -[1 7] +[1] 1 this.ends -1291113768 +1381128261 1 this.ends[..] -[1 7] +[1] 1 MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2709 +2675 this -811760110 +1843289228 1 this.begins -1415157681 +1361289747 1 this.begins[..] -[1 7] +[1] 1 this.ends -1291113768 +1381128261 1 this.ends[..] -[1 7] +[1] 1 return 1 @@ -69779,36 +69813,36 @@ return MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -2694 +2660 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 other -811760110 +1843289228 1 other.begins -1415157681 +1361289747 1 other.begins[..] -[1 7] +[1] 1 other.ends -1291113768 +1381128261 1 other.ends[..] -[1 7] +[1] 1 return false @@ -69816,24 +69850,24 @@ false MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -2724 +2682 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2725 +2683 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2725 +2683 i 1 1 @@ -69843,14 +69877,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2726 +2684 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2726 +2684 i 1 1 @@ -69860,14 +69894,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2727 +2685 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2727 +2685 i 7 1 @@ -69877,14 +69911,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2728 +2686 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2728 +2686 i 7 1 @@ -69892,86 +69926,35 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2729 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2729 -i -11 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2730 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2730 -i -11 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2731 +2687 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2732 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2732 -i -1 -1 -return -1 +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2733 +2688 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2733 +2688 i 1 1 @@ -69981,33 +69964,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2734 +2689 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2734 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2735 +2689 i -7 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2735 -i -7 1 return 1 @@ -70015,33 +69981,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2736 +2690 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2736 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2737 +2690 i -11 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2737 -i -11 1 return 1 @@ -70049,14 +69998,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2738 +2691 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2738 +2691 i 7 1 @@ -70066,14 +70015,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2739 +2692 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2739 +2692 i 7 1 @@ -70083,14 +70032,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2740 +2693 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2740 +2693 i 7 1 @@ -70098,149 +70047,98 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2741 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2741 -i -11 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2742 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2742 -i -11 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2743 -i -11 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2743 -i -11 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2731 +2687 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2724 +2682 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] +[1 7] 1 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2744 +2694 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 other -2005167404 +999609945 1 other.begins -1418385211 +615634843 1 other.begins[..] -[1 7 11] +[1 7] 1 other.ends -1282811396 +1758386724 1 other.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2745 +2695 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70248,18 +70146,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2746 +2696 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70267,14 +70165,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2747 +2697 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2747 +2697 i 189 1 @@ -70284,14 +70182,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2748 +2698 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2748 +2698 i 195 1 @@ -70301,18 +70199,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2746 +2696 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70320,18 +70218,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2749 +2699 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70339,14 +70237,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2750 +2700 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2750 +2700 i 189 1 @@ -70356,14 +70254,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2751 +2701 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2751 +2701 i 195 1 @@ -70373,18 +70271,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2749 +2699 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70392,18 +70290,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2745 +2695 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70414,18 +70312,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2752 +2702 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70433,18 +70331,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2753 +2703 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70452,14 +70350,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2754 +2704 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2754 +2704 i 189 1 @@ -70469,14 +70367,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2755 +2705 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2755 +2705 i 195 1 @@ -70486,18 +70384,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2753 +2703 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70505,18 +70403,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2756 +2706 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70524,14 +70422,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2757 +2707 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2757 +2707 i 189 1 @@ -70541,14 +70439,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2758 +2708 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2758 +2708 i 195 1 @@ -70558,18 +70456,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2756 +2706 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70577,18 +70475,18 @@ this.ends[..] MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2752 +2702 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -70599,52 +70497,52 @@ return MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2759 +2709 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2760 +2710 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2761 +2711 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2761 +2711 i 1 1 @@ -70654,14 +70552,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2762 +2712 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2762 +2712 i 1 1 @@ -70671,14 +70569,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2763 +2713 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2763 +2713 i 1 1 @@ -70688,14 +70586,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2764 +2714 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2764 +2714 i 7 1 @@ -70705,16 +70603,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2765 +2715 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2765 +2715 i -1 +7 1 return 1 @@ -70722,33 +70620,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2766 +2716 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2766 +2716 i -11 +7 1 return 1 1 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2710 +this +999609945 +1 +this.begins +615634843 +1 +this.begins[..] +[1 7] +1 +this.ends +1758386724 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2717 +this +999609945 +1 +this.begins +615634843 +1 +this.begins[..] +[1 7] +1 +this.ends +1758386724 +1 +this.ends[..] +[1 7] +1 + MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2767 +2718 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2767 +2718 i -7 +1 1 return 1 @@ -70756,16 +70692,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2768 +2719 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2768 +2719 i -7 +1 1 return 1 @@ -70773,16 +70709,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2769 +2720 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2769 +2720 i -7 +1 1 return 1 @@ -70790,16 +70726,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2770 +2721 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2770 +2721 i -11 +7 1 return 1 @@ -70807,16 +70743,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2771 +2722 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2771 +2722 i -11 +7 1 return 1 @@ -70824,16 +70760,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2772 +2723 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2772 +2723 i -11 +7 1 return 1 @@ -70841,52 +70777,102 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2760 +2717 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] +[1 7] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2773 +2709 this -2005167404 +999609945 1 this.begins -1418385211 +615634843 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -1282811396 +1758386724 1 this.ends[..] -[1 7 11] +[1 7] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +2694 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] +1 +other +999609945 +1 +other.begins +615634843 +1 +other.begins[..] +[1 7] +1 +other.ends +1758386724 +1 +other.ends[..] +[1 7] +1 +return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +2724 +numbers +1682463303 +1 +numbers.toString +"1,7,11" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2774 +2725 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2774 +2725 i 1 1 @@ -70896,14 +70882,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2775 +2726 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2775 +2726 i 1 1 @@ -70913,16 +70899,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2776 +2727 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2776 +2727 i -1 +7 1 return 1 @@ -70930,14 +70916,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2777 +2728 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2777 +2728 i 7 1 @@ -70947,16 +70933,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2778 +2729 i -1 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2778 +2729 i -1 +11 1 return 1 @@ -70964,14 +70950,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2779 +2730 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2779 +2730 i 11 1 @@ -70979,18 +70965,37 @@ return 1 1 +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +2731 +this +673068808 +1 +this.begins +900008524 +1 +this.begins[..] +[1 7 11] +1 +this.ends +520232556 +1 +this.ends[..] +[1 7 11] +1 + MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2780 +2732 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2780 +2732 i -7 +1 1 return 1 @@ -70998,16 +71003,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2781 +2733 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2781 +2733 i -7 +1 1 return 1 @@ -71015,16 +71020,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2782 +2734 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2782 +2734 i -7 +1 1 return 1 @@ -71032,16 +71037,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2783 +2735 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2783 +2735 i -11 +7 1 return 1 @@ -71049,16 +71054,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2784 +2736 i -11 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2784 +2736 i -11 +1 1 return 1 @@ -71066,14 +71071,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2785 +2737 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2785 +2737 i 11 1 @@ -71081,204 +71086,200 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2773 -this -2005167404 +2738 +i +7 1 -this.begins -1418385211 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2738 +i +7 1 -this.begins[..] -[1 7 11] +return 1 -this.ends -1282811396 1 -this.ends[..] -[1 7 11] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2739 +i +7 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2759 -this -2005167404 +2739 +i +7 1 -this.begins -1418385211 +return 1 -this.begins[..] -[1 7 11] 1 -this.ends -1282811396 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2740 +i +7 1 -this.ends[..] -[1 7 11] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2740 +i +7 1 return 1 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2744 -this -156545103 +2741 +i +11 1 -this.begins -345281752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2741 +i +11 1 -this.begins[..] -[189] +return 1 -this.ends -1896294051 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2742 +i +11 1 -other -2005167404 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2742 +i +11 1 -other.begins -1418385211 +return 1 -other.begins[..] -[1 7 11] 1 -other.ends -1282811396 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2743 +i +11 1 -other.ends[..] -[1 7 11] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2743 +i +11 1 return -false +1 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2786 +2731 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] +[1 7 11] 1 this.ends -1896294051 +520232556 1 this.ends[..] -[195] -1 -other -156545103 -1 -other.begins -345281752 -1 -other.begins[..] -[189] -1 -other.ends -1896294051 -1 -other.ends[..] -[195] +[1 7 11] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2787 +2724 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2788 -i -189 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2788 -i -189 -1 -return -1 +[1 7 11] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2789 -i -195 +this.ends +520232556 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2789 -i -195 +this.ends[..] +[1 7 11] 1 -return +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2787 +2744 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +other +673068808 +1 +other.begins +900008524 +1 +other.begins[..] +[1 7 11] +1 +other.ends +520232556 +1 +other.ends[..] +[1 7 11] +1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2790 +2745 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71286,18 +71287,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2791 +2746 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71305,14 +71306,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2792 +2747 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2792 +2747 i 189 1 @@ -71322,14 +71323,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2793 +2748 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2793 +2748 i 195 1 @@ -71339,59 +71340,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2791 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 -this_invocation_nonce -2790 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 -return -false -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -2794 +2746 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71399,18 +71359,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2795 +2749 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71418,14 +71378,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2796 +2750 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2796 +2750 i 189 1 @@ -71435,14 +71395,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2797 +2751 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2797 +2751 i 195 1 @@ -71452,59 +71412,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2795 +2749 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2794 +2745 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -false +189 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2798 +2752 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71512,18 +71472,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2799 +2753 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71531,14 +71491,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2800 +2754 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2800 +2754 i 189 1 @@ -71548,14 +71508,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2801 +2755 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2801 +2755 i 195 1 @@ -71565,18 +71525,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2799 +2753 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71584,18 +71544,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2802 +2756 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -71603,14 +71563,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2803 +2757 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2803 +2757 i 189 1 @@ -71620,14 +71580,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2804 +2758 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2804 +2758 i 195 1 @@ -71637,95 +71597,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2802 +2756 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2798 +2752 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -189 +195 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2805 +2759 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] +[1 7 11] 1 this.ends -1896294051 +520232556 1 this.ends[..] -[195] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2806 +2760 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] +[1 7 11] 1 this.ends -1896294051 +520232556 1 this.ends[..] -[195] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2807 +2761 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2807 +2761 i -189 +1 1 return 1 @@ -71733,71 +71693,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2808 +2762 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2808 +2762 i -195 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2806 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 +2763 +i 1 -this.ends[..] -[195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2809 -this -156545103 -1 -this.begins -345281752 +2763 +i 1 -this.begins[..] -[189] 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2810 +2764 i -189 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2810 +2764 i -189 +7 1 return 1 @@ -71805,112 +71744,118 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2811 +2765 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2811 +2765 i -195 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2809 -this -156545103 +2766 +i +11 1 -this.begins -345281752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2766 +i +11 1 -this.begins[..] -[189] +return 1 -this.ends -1896294051 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2767 +i +7 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2805 -this -156545103 +2767 +i +7 1 -this.begins -345281752 +return 1 -this.begins[..] -[189] 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2768 +i +7 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2768 +i +7 1 return -195 +1 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2812 -this -156545103 -1 -this.begins -345281752 +2769 +i +7 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2769 +i +7 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2813 -this -156545103 -1 -this.begins -345281752 +2770 +i +11 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2770 +i +11 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2814 +2771 i -189 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2814 +2771 i -189 +11 1 return 1 @@ -71918,16 +71863,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2815 +2772 i -195 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2815 +2772 i -195 +11 1 return 1 @@ -71935,54 +71880,54 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2813 +2760 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] +[1 7 11] 1 this.ends -1896294051 +520232556 1 this.ends[..] -[195] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2816 +2773 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] +[1 7 11] 1 this.ends -1896294051 +520232556 1 this.ends[..] -[195] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2817 +2774 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2817 +2774 i -189 +1 1 return 1 @@ -71990,112 +71935,101 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2818 +2775 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2818 +2775 i -195 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2816 -this -156545103 +2776 +i 1 -this.begins -345281752 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2776 +i 1 -this.ends -1896294051 1 -this.ends[..] -[195] +return +1 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2812 -this -156545103 +2777 +i +7 1 -this.begins -345281752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2777 +i +7 1 -this.begins[..] -[189] +return 1 -this.ends -1896294051 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2778 +i 1 -return -189 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2819 -this -156545103 -1 -this.begins -345281752 +2778 +i 1 -this.begins[..] -[189] 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2820 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] +2779 +i +11 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2779 +i +11 +1 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2821 +2780 i -189 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2821 +2780 i -189 +7 1 return 1 @@ -72103,71 +72037,67 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2822 +2781 i -195 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2822 +2781 i -195 +7 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2820 -this -156545103 -1 -this.begins -345281752 +2782 +i +7 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2782 +i +7 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2823 -this -156545103 -1 -this.begins -345281752 +2783 +i +11 1 -this.begins[..] -[189] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2783 +i +11 1 -this.ends -1896294051 +return 1 -this.ends[..] -[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2824 +2784 i -189 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2824 +2784 i -189 +11 1 return 1 @@ -72175,16 +72105,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2825 +2785 i -195 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2825 +2785 i -195 +11 1 return 1 @@ -72192,81 +72122,130 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2823 +2773 this -156545103 +673068808 1 this.begins -345281752 +900008524 1 this.begins[..] -[189] +[1 7 11] 1 this.ends -1896294051 +520232556 1 this.ends[..] -[195] +[1 7 11] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2819 +2759 this -156545103 +673068808 1 this.begins -345281752 +900008524 +1 +this.begins[..] +[1 7 11] +1 +this.ends +520232556 +1 +this.ends[..] +[1 7 11] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +2744 +this +282432134 +1 +this.begins +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +other +673068808 +1 +other.begins +900008524 +1 +other.begins[..] +[1 7 11] +1 +other.ends +520232556 +1 +other.ends[..] +[1 7 11] +1 return -195 +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2826 +2786 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -n -189 +other +282432134 +1 +other.begins +266437232 +1 +other.begins[..] +[189] +1 +other.ends +1873859565 +1 +other.ends[..] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2827 +2787 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -72274,14 +72253,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2828 +2788 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2828 +2788 i 189 1 @@ -72291,14 +72270,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2829 +2789 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2829 +2789 i 195 1 @@ -72308,71 +72287,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2827 +2787 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2830 -i -189 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2830 -i -189 -1 -return -1 +2790 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2831 -i -189 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2831 -i -189 +this.begins[..] +[189] 1 -return +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2832 +2791 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -72380,14 +72344,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2833 +2792 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2833 +2792 i 189 1 @@ -72397,14 +72361,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2834 +2793 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2834 +2793 i 195 1 @@ -72414,84 +72378,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2832 +2791 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2826 +2790 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -n -189 -1 return -true +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2835 +2794 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -n -189 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2836 +2795 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -72499,14 +72457,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2837 +2796 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2837 +2796 i 189 1 @@ -72516,14 +72474,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2838 +2797 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2838 +2797 i 195 1 @@ -72533,71 +72491,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2836 +2795 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2839 -i -189 +2794 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2839 -i -189 +this.begins +266437232 1 -return +this.begins[..] +[189] 1 +this.ends +1873859565 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2840 -i -189 +this.ends[..] +[195] +1 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2840 -i -189 +2798 +this +282432134 1 -return +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2841 +2799 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -72605,14 +72570,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2842 +2800 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2842 +2800 i 189 1 @@ -72622,14 +72587,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2843 +2801 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2843 +2801 i 195 1 @@ -72639,62 +72604,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2841 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.contains(int):::EXIT118 -this_invocation_nonce -2835 +2799 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -n -189 -1 -return -true -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2844 +2802 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -72702,14 +72642,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2845 +2803 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2845 +2803 i 189 1 @@ -72719,14 +72659,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2846 +2804 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2846 +2804 i 195 1 @@ -72736,203 +72676,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2844 +2802 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2786 +2798 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -156545103 -1 -other.begins -345281752 -1 -other.begins[..] -[189] -1 -other.ends -1896294051 -1 -other.ends[..] -[195] -1 -return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -2847 -numbers -603856241 -1 -numbers.toString -"1,100,10" -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2848 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2848 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2849 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2849 -i -1 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2850 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2850 -i -100 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2851 -i -100 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2851 -i -100 -1 return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2852 -i -10 +189 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2852 -i -10 +2805 +this +282432134 1 -return -0 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2853 -i -10 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2853 -i -10 +this.ends +1873859565 1 -return -0 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2854 +2806 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2855 +2807 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2855 +2807 i -1 +189 1 return 1 @@ -72940,283 +72772,352 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2856 +2808 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2856 +2808 i -1 +195 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2857 -i +2806 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] 1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2857 -i +2809 +this +282432134 1 +this.begins +266437232 1 -return +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2858 +2810 i -100 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2858 +2810 i -100 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2859 +2811 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2859 +2811 i -1 +195 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2860 -i -10 +2809 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2860 -i -10 +2805 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 return -0 +195 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2861 -i -100 +2812 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2861 -i -100 +2813 +this +282432134 1 -return -0 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2862 +2814 i -100 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2862 +2814 i -100 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2863 +2815 i -100 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2863 +2815 i -100 +195 1 return -0 +1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2864 -i -10 +2813 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2864 -i -10 +2816 +this +282432134 1 -return -0 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2865 +2817 i -10 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2865 +2817 i -10 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2866 +2818 i -10 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2866 +2818 i -10 +195 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2854 +2816 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2847 +2812 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] -1 -numbers -603856241 +[195] 1 -numbers.toString -"1,100,10" +return +189 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2867 +2819 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -641853239 -1 -other.begins -1920467934 -1 -other.begins[..] -[1 100 10] -1 -other.ends -1883840933 -1 -other.ends[..] -[1 100 10] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2868 +2820 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -73224,14 +73125,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2869 +2821 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2869 +2821 i 189 1 @@ -73241,14 +73142,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2870 +2822 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2870 +2822 i 195 1 @@ -73258,37 +73159,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2868 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -2871 +2820 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -73296,18 +73178,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2872 +2823 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -73315,14 +73197,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2873 +2824 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2873 +2824 i 189 1 @@ -73332,14 +73214,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2874 +2825 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2874 +2825 i 195 1 @@ -73349,95 +73231,98 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2872 +2823 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2871 +2819 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 return -false +195 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2875 +2826 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] +1 +n +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2876 +2827 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2877 +2828 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2877 +2828 i -1 +189 1 return 1 @@ -73445,67 +73330,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2878 +2829 i -1 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2878 +2829 i -1 +195 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2879 -i -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2879 -i -1 -1 -return +2827 +this +282432134 1 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2880 -i -100 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2880 -i -100 +this.ends +1873859565 1 -return -0 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2881 +2830 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2881 +2830 i -1 +189 1 return 1 @@ -73513,197 +73383,154 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2882 +2831 i -10 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2882 +2831 i -10 +189 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2883 -i -100 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2883 -i -100 +2832 +this +282432134 1 -return -0 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2884 -i -100 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2884 -i -100 +this.ends +1873859565 1 -return -0 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2885 +2833 i -100 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2885 +2833 i -100 +189 1 return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2886 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2886 -i -10 1 -return -0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2887 +2834 i -10 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2887 +2834 i -10 +195 1 return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2888 -i -10 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2888 -i -10 1 -return -0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2876 +2832 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -2875 +2826 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] +1 +n +189 1 return -false +true 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -2889 +2835 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +n +189 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2890 +2836 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -73711,14 +73538,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2891 +2837 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2891 +2837 i 189 1 @@ -73728,14 +73555,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2892 +2838 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2892 +2838 i 195 1 @@ -73745,37 +73572,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2890 +2836 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2839 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2839 +i +189 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2840 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2840 +i +189 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2893 +2841 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -73783,14 +73644,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2894 +2842 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2894 +2842 i 189 1 @@ -73800,14 +73661,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2895 +2843 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2895 +2843 i 195 1 @@ -73817,78 +73678,62 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2893 +2841 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -2889 +2835 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -return +n 189 1 - -MapQuick1.StreetNumberSet.max():::ENTER -this_invocation_nonce -2896 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] -1 -this.ends -1896294051 -1 -this.ends[..] -[195] +return +true 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2897 +2844 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -73896,14 +73741,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2898 +2845 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2898 +2845 i 189 1 @@ -73913,14 +73758,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2899 +2846 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2899 +2846 i 195 1 @@ -73930,54 +73775,82 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2897 +2844 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 this_invocation_nonce -2900 +2786 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 +other +282432134 +1 +other.begins +266437232 +1 +other.begins[..] +[189] +1 +other.ends +1873859565 +1 +other.ends[..] +[195] +1 +return +true +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +2847 +numbers +1414147750 +1 +numbers.toString +"1,100,10" +1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2901 +2848 i -189 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2901 +2848 i -189 +1 1 return 1 @@ -73985,95 +73858,103 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2902 +2849 i -195 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2902 +2849 i -195 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2900 -this -156545103 -1 -this.begins -345281752 -1 -this.begins[..] -[189] +2850 +i +100 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2850 +i +100 1 -this.ends[..] -[195] +return +0 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2896 -this -156545103 +2851 +i +100 1 -this.begins -345281752 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2851 +i +100 1 -this.begins[..] -[189] +return +0 1 -this.ends -1896294051 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2852 +i +10 1 -this.ends[..] -[195] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2852 +i +10 1 return -195 +0 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2903 -this -641853239 -1 -this.begins -1920467934 -1 -this.begins[..] -[1 100 10] +2853 +i +10 1 -this.ends -1883840933 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2853 +i +10 1 -this.ends[..] -[1 100 10] +return +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2904 +2854 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] @@ -74081,14 +73962,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2905 +2855 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2905 +2855 i 1 1 @@ -74098,14 +73979,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2906 +2856 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2906 +2856 i 1 1 @@ -74115,14 +73996,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2907 +2857 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2907 +2857 i 1 1 @@ -74132,14 +74013,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2908 +2858 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2908 +2858 i 100 1 @@ -74149,14 +74030,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2909 +2859 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2909 +2859 i 1 1 @@ -74166,14 +74047,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2910 +2860 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2910 +2860 i 10 1 @@ -74183,14 +74064,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2911 +2861 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2911 +2861 i 100 1 @@ -74200,14 +74081,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2912 +2862 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2912 +2862 i 100 1 @@ -74217,14 +74098,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2913 +2863 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2913 +2863 i 100 1 @@ -74234,14 +74115,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2914 +2864 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2914 +2864 i 10 1 @@ -74251,14 +74132,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2915 +2865 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2915 +2865 i 10 1 @@ -74268,14 +74149,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2916 +2866 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2916 +2866 i 10 1 @@ -74285,122 +74166,113 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2904 +2854 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -2917 +2847 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2918 -i +numbers +1414147750 1 +numbers.toString +"1,100,10" 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -2918 -i -1 -1 -return +2867 +this +282432134 1 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2919 -i +this.begins[..] +[189] 1 +this.ends +1873859565 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2919 -i +this.ends[..] +[195] 1 +other +17037394 1 -return +other.begins +1484531981 1 +other.begins[..] +[1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2920 -i +other.ends +1159114532 1 +other.ends[..] +[1 100 10] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2920 -i -1 -1 -return +2868 +this +282432134 1 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2921 -i -100 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2921 -i -100 +this.ends +1873859565 1 -return -0 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2922 +2869 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2922 +2869 i -1 +189 1 return 1 @@ -74408,178 +74280,167 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2923 +2870 i -10 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2923 +2870 i -10 +195 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2924 -i -100 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2924 -i -100 +2868 +this +282432134 1 -return -0 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2925 -i -100 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2925 -i -100 +this.ends +1873859565 1 -return -0 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2926 -i -100 +2871 +this +282432134 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2926 -i -100 +this.begins +266437232 1 -return -0 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2927 -i -10 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2927 -i -10 +2872 +this +282432134 1 -return -0 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2928 +2873 i -10 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2928 +2873 i -10 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2929 +2874 i -10 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2929 +2874 i -10 +195 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2917 +2872 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2903 +2871 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] +[195] 1 return -1 +false 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -2930 +2875 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] @@ -74587,18 +74448,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2931 +2876 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] @@ -74606,14 +74467,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2932 +2877 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2932 +2877 i 1 1 @@ -74623,14 +74484,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2933 +2878 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2933 +2878 i 1 1 @@ -74640,14 +74501,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2934 +2879 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2934 +2879 i 1 1 @@ -74657,14 +74518,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2935 +2880 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2935 +2880 i 100 1 @@ -74674,14 +74535,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2936 +2881 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2936 +2881 i 1 1 @@ -74691,14 +74552,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2937 +2882 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2937 +2882 i 10 1 @@ -74708,14 +74569,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2938 +2883 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2938 +2883 i 100 1 @@ -74725,14 +74586,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2939 +2884 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2939 +2884 i 100 1 @@ -74742,14 +74603,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2940 +2885 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2940 +2885 i 100 1 @@ -74759,14 +74620,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2941 +2886 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2941 +2886 i 10 1 @@ -74776,14 +74637,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2942 +2887 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2942 +2887 i 10 1 @@ -74793,14 +74654,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2943 +2888 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2943 +2888 i 10 1 @@ -74810,88 +74671,95 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2931 +2876 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -2944 +2875 this -641853239 +17037394 1 this.begins -1920467934 +1484531981 1 this.begins[..] [1 100 10] 1 this.ends -1883840933 +1159114532 1 this.ends[..] [1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2945 -i -1 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -2945 -i -1 +2889 +this +282432134 1 -return +this.begins +266437232 1 +this.begins[..] +[189] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2946 -i +this.ends +1873859565 1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2946 -i +2890 +this +282432134 +1 +this.begins +266437232 1 +this.begins[..] +[189] 1 -return +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2947 +2891 i -1 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2947 +2891 i -1 +189 1 return 1 @@ -74899,212 +74767,239 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2948 +2892 i -100 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2948 +2892 i -100 +195 1 return -0 +1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2949 -i +2890 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] 1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2949 -i +2893 +this +282432134 1 +this.begins +266437232 1 -return +this.begins[..] +[189] +1 +this.ends +1873859565 1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2950 +2894 i -10 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2950 +2894 i -10 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2951 +2895 i -100 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2951 +2895 i -100 +195 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2952 -i -100 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2952 -i -100 +2893 +this +282432134 1 -return -0 +this.begins +266437232 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2953 -i -100 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2953 -i -100 +2889 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 return -0 +189 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2954 -i -10 +2896 +this +282432134 +1 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2954 -i -10 +2897 +this +282432134 1 -return -0 +this.begins +266437232 +1 +this.begins[..] +[189] +1 +this.ends +1873859565 +1 +this.ends[..] +[195] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2955 +2898 i -10 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2955 +2898 i -10 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2956 +2899 i -10 +195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2956 +2899 i -10 +195 1 return -0 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2944 -this -641853239 -1 -this.begins -1920467934 -1 -this.begins[..] -[1 100 10] 1 -this.ends -1883840933 -1 -this.ends[..] -[1 100 10] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2930 +2897 this -641853239 +282432134 1 this.begins -1920467934 +266437232 1 this.begins[..] -[1 100 10] +[189] 1 this.ends -1883840933 +1873859565 1 this.ends[..] -[1 100 10] -1 -return -100 +[195] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2957 +2900 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] @@ -75112,14 +75007,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2958 +2901 i 189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2958 +2901 i 189 1 @@ -75129,14 +75024,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2959 +2902 i 195 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2959 +2902 i 195 1 @@ -75146,116 +75041,129 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2957 +2900 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -2867 +2896 this -156545103 +282432134 1 this.begins -345281752 +266437232 1 this.begins[..] [189] 1 this.ends -1896294051 +1873859565 1 this.ends[..] [195] 1 -other -641853239 +return +195 1 -other.begins -1920467934 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +2903 +this +17037394 1 -other.begins[..] +this.begins +1484531981 +1 +this.begins[..] [1 100 10] 1 -other.ends -1883840933 +this.ends +1159114532 1 -other.ends[..] +this.ends[..] [1 100 10] 1 -return -false -1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2960 -numbers -233996206 +2904 +this +17037394 1 -numbers.toString -"22-868,879-887" +this.begins +1484531981 +1 +this.begins[..] +[1 100 10] +1 +this.ends +1159114532 +1 +this.ends[..] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2961 +2905 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2961 +2905 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2962 +2906 i -868 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2962 +2906 i -868 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2963 +2907 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2963 +2907 i -879 +1 1 return 1 @@ -75263,52 +75171,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2964 +2908 i -887 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2964 +2908 i -887 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2965 -this -614685048 +2909 +i 1 -this.begins -385337537 1 -this.begins[..] -[22 879] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2909 +i 1 -this.ends -789219251 1 -this.ends[..] -[868 887] +return +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2966 +2910 i -22 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2966 +2910 i -22 +10 1 return 0 @@ -75316,16 +75222,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2967 +2911 i -868 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2967 +2911 i -868 +100 1 return 0 @@ -75333,16 +75239,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2968 +2912 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2968 +2912 i -22 +100 1 return 0 @@ -75350,203 +75256,122 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2969 +2913 i -879 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2969 +2913 i -879 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2970 +2914 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2970 +2914 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2971 +2915 i -887 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2971 +2915 i -887 +10 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2965 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +2916 +i +10 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2960 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -numbers -233996206 +2916 +i +10 1 -numbers.toString -"22-868,879-887" +return +0 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2972 +2904 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] -1 -n -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2973 +2917 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2974 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2974 -i -22 -1 -return -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2975 -i -868 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2975 +2918 i -868 1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2976 -i -22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2976 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2977 +2918 i -879 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2977 -i -879 1 return 1 @@ -75554,16 +75379,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2978 +2919 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2978 +2919 i -879 +1 1 return 1 @@ -75571,52 +75396,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2979 +2920 i -887 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2979 +2920 i -887 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2973 -this -614685048 -1 -this.begins -385337537 1 -this.begins[..] -[22 879] 1 -this.ends -789219251 +return 1 -this.ends[..] -[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2980 +2921 i -0 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2980 +2921 i -0 +100 1 return 0 @@ -75624,69 +75430,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2981 +2922 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2981 +2922 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2982 +2923 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2982 +2923 i -879 +10 1 return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -2983 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2984 +2924 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2984 +2924 i -22 +100 1 return 0 @@ -75694,16 +75481,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2985 +2925 i -868 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2985 +2925 i -868 +100 1 return 0 @@ -75711,16 +75498,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2986 +2926 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2986 +2926 i -22 +100 1 return 0 @@ -75728,203 +75515,146 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2987 +2927 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2987 +2927 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2988 +2928 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2988 +2928 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2989 +2929 i -887 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2989 +2929 i -887 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -2983 +2917 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] +[1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -2972 +2903 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] -1 -n -0 +[1 100 10] 1 return -false +1 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -2990 +2930 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] -1 -n -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2991 +2931 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2992 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2992 -i -22 -1 -return -0 +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2993 -i -868 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2993 +2932 i -868 -1 -return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2994 -i -22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2994 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -2995 +2932 i -879 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -2995 -i -879 1 return 1 @@ -75932,16 +75662,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2996 +2933 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2996 +2933 i -879 +1 1 return 1 @@ -75949,52 +75679,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2997 +2934 i -887 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2997 +2934 i -887 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -2991 -this -614685048 1 -this.begins -385337537 -1 -this.begins[..] -[22 879] 1 -this.ends -789219251 +return 1 -this.ends[..] -[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2998 +2935 i -0 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2998 +2935 i -0 +100 1 return 0 @@ -76002,69 +75713,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -2999 +2936 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -2999 +2936 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3000 +2937 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3000 +2937 i -879 +10 1 return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -3001 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3002 +2938 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3002 +2938 i -22 +100 1 return 0 @@ -76072,16 +75764,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3003 +2939 i -868 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3003 +2939 i -868 +100 1 return 0 @@ -76089,16 +75781,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3004 +2940 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3004 +2940 i -22 +100 1 return 0 @@ -76106,192 +75798,173 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3005 +2941 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3005 +2941 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3006 +2942 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3006 +2942 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3007 +2943 i -887 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3007 +2943 i -887 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3001 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::ENTER -this_invocation_nonce -3008 +2931 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] +[1 100 10] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3009 +2944 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] +[1 100 10] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3010 +2945 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3010 +2945 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3011 +2946 i -868 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3011 +2946 i -868 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3012 +2947 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3012 +2947 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3013 +2948 i -879 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3013 +2948 i -879 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3014 +2949 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3014 +2949 i -879 +1 1 return 1 @@ -76299,71 +75972,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3015 +2950 i -887 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3015 +2950 i -887 +10 1 return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3009 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -3016 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3017 +2951 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3017 +2951 i -22 +100 1 return 0 @@ -76371,16 +76006,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3018 +2952 i -868 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3018 +2952 i -868 +100 1 return 0 @@ -76388,16 +76023,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3019 +2953 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3019 +2953 i -22 +100 1 return 0 @@ -76405,206 +76040,225 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3020 +2954 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3020 +2954 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3021 +2955 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3021 +2955 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3022 +2956 i -887 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3022 +2956 i -887 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3016 +2944 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] +[1 100 10] 1 -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -3008 +2930 this -614685048 +17037394 1 this.begins -385337537 +1484531981 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +1159114532 1 this.ends[..] -[868 887] +[1 100 10] 1 return -429 +100 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -2990 +2957 this -614685048 +282432134 1 this.begins -385337537 +266437232 1 this.begins[..] -[22 879] +[189] 1 this.ends -789219251 +1873859565 1 this.ends[..] -[868 887] +[195] 1 -n -0 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2958 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2958 +i +189 1 return -0 +1 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3023 +2959 +i +195 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2959 +i +195 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +2957 this -614685048 +282432134 1 this.begins -385337537 +266437232 1 this.begins[..] -[22 879] +[189] 1 this.ends -789219251 +1873859565 1 this.ends[..] -[868 887] -1 -n -857 +[195] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT257 this_invocation_nonce -3024 +2867 this -614685048 +282432134 1 this.begins -385337537 +266437232 1 this.begins[..] -[22 879] +[189] 1 this.ends -789219251 +1873859565 1 this.ends[..] -[868 887] +[195] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3025 -i -22 +other +17037394 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3025 -i -22 +other.begins +1484531981 1 -return -0 +other.begins[..] +[1 100 10] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3026 -i -868 +other.ends +1159114532 +1 +other.ends[..] +[1 100 10] +1 +return +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -3026 -i -868 +2960 +numbers +1256728724 1 -return -0 +numbers.toString +"22-868,879-887" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3027 +2961 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3027 +2961 i 22 1 @@ -76614,31 +76268,31 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3028 +2962 i -879 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3028 +2962 i -879 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3029 +2963 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3029 +2963 i 879 1 @@ -76648,14 +76302,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3030 +2964 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3030 +2964 i 887 1 @@ -76663,90 +76317,20 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3024 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3031 -i -857 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3031 -i -857 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3032 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3032 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3033 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3033 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3034 +2965 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -76754,14 +76338,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3035 +2966 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3035 +2966 i 22 1 @@ -76771,14 +76355,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3036 +2967 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3036 +2967 i 868 1 @@ -76788,14 +76372,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3037 +2968 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3037 +2968 i 22 1 @@ -76805,14 +76389,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3038 +2969 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3038 +2969 i 879 1 @@ -76822,14 +76406,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3039 +2970 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3039 +2970 i 879 1 @@ -76839,14 +76423,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3040 +2971 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3040 +2971 i 887 1 @@ -76856,84 +76440,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3034 +2965 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -3023 +2960 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -857 +numbers +1256728724 1 -return -false +numbers.toString +"22-868,879-887" 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3041 +2972 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -857 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3042 +2973 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -76941,14 +76525,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3043 +2974 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3043 +2974 i 22 1 @@ -76958,14 +76542,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3044 +2975 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3044 +2975 i 868 1 @@ -76975,14 +76559,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3045 +2976 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3045 +2976 i 22 1 @@ -76992,14 +76576,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3046 +2977 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3046 +2977 i 879 1 @@ -77009,14 +76593,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3047 +2978 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3047 +2978 i 879 1 @@ -77026,14 +76610,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3048 +2979 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3048 +2979 i 887 1 @@ -77043,18 +76627,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3042 +2973 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -77062,31 +76646,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3049 +2980 i -857 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3049 +2980 i -857 +0 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3050 +2981 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3050 +2981 i 22 1 @@ -77096,14 +76680,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3051 +2982 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3051 +2982 i 879 1 @@ -77113,18 +76697,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3052 +2983 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -77132,14 +76716,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3053 +2984 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3053 +2984 i 22 1 @@ -77149,14 +76733,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3054 +2985 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3054 +2985 i 868 1 @@ -77166,14 +76750,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3055 +2986 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3055 +2986 i 22 1 @@ -77183,14 +76767,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3056 +2987 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3056 +2987 i 879 1 @@ -77200,14 +76784,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3057 +2988 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3057 +2988 i 879 1 @@ -77217,14 +76801,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3058 +2989 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3058 +2989 i 887 1 @@ -77234,56 +76818,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3052 +2983 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -3059 +2972 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +0 +1 +return +false +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +2990 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +0 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3060 +2991 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -77291,14 +76903,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3061 +2992 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3061 +2992 i 22 1 @@ -77308,14 +76920,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3062 +2993 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3062 +2993 i 868 1 @@ -77325,14 +76937,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3063 +2994 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3063 +2994 i 22 1 @@ -77342,14 +76954,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3064 +2995 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3064 +2995 i 879 1 @@ -77359,14 +76971,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3065 +2996 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3065 +2996 i 879 1 @@ -77376,14 +76988,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3066 +2997 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3066 +2997 i 887 1 @@ -77393,37 +77005,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3060 +2991 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2998 +i +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2998 +i +0 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +2999 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +2999 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3000 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3000 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3067 +3001 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -77431,14 +77094,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3068 +3002 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3068 +3002 i 22 1 @@ -77448,14 +77111,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3069 +3003 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3069 +3003 i 868 1 @@ -77465,14 +77128,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3070 +3004 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3070 +3004 i 22 1 @@ -77482,14 +77145,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3071 +3005 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3071 +3005 i 879 1 @@ -77499,14 +77162,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3072 +3006 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3072 +3006 i 879 1 @@ -77516,14 +77179,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3073 +3007 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3073 +3007 i 887 1 @@ -77533,106 +77196,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3067 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3059 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3041 +3001 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -857 -1 -return -418 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3074 +3008 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -690 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3075 +3009 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -77640,14 +77253,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3076 +3010 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3076 +3010 i 22 1 @@ -77657,14 +77270,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3077 +3011 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3077 +3011 i 868 1 @@ -77674,14 +77287,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3078 +3012 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3078 +3012 i 22 1 @@ -77691,14 +77304,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3079 +3013 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3079 +3013 i 879 1 @@ -77708,14 +77321,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3080 +3014 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3080 +3014 i 879 1 @@ -77725,14 +77338,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3081 +3015 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3081 +3015 i 887 1 @@ -77742,71 +77355,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3075 +3009 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3082 -i -690 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3082 -i -690 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3083 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3083 -i -22 -1 -return -0 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3084 +3016 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -77814,14 +77393,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3085 +3017 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3085 +3017 i 22 1 @@ -77831,14 +77410,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3086 +3018 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3086 +3018 i 868 1 @@ -77848,14 +77427,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3087 +3019 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3087 +3019 i 22 1 @@ -77865,14 +77444,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3088 +3020 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3088 +3020 i 879 1 @@ -77882,14 +77461,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3089 +3021 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3089 +3021 i 879 1 @@ -77899,14 +77478,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3090 +3022 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3090 +3022 i 887 1 @@ -77916,84 +77495,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3084 +3016 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3074 +3008 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +2990 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -690 +0 1 return -true +0 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3091 +3023 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -690 +857 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3092 +3024 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78001,14 +77602,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3093 +3025 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3093 +3025 i 22 1 @@ -78018,14 +77619,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3094 +3026 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3094 +3026 i 868 1 @@ -78035,14 +77636,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3095 +3027 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3095 +3027 i 22 1 @@ -78052,14 +77653,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3096 +3028 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3096 +3028 i 879 1 @@ -78069,14 +77670,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3097 +3029 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3097 +3029 i 879 1 @@ -78086,14 +77687,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3098 +3030 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3098 +3030 i 887 1 @@ -78103,18 +77704,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3092 +3024 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78122,31 +77723,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3099 +3031 i -690 +857 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3099 +3031 i -690 +857 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3100 +3032 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3100 +3032 i 22 1 @@ -78156,14 +77757,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3101 +3033 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3101 +3033 i 879 1 @@ -78173,18 +77774,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3102 +3034 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78192,14 +77793,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3103 +3035 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3103 +3035 i 22 1 @@ -78209,14 +77810,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3104 +3036 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3104 +3036 i 868 1 @@ -78226,14 +77827,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3105 +3037 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3105 +3037 i 22 1 @@ -78243,14 +77844,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3106 +3038 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3106 +3038 i 879 1 @@ -78260,14 +77861,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3107 +3039 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3107 +3039 i 879 1 @@ -78277,73 +77878,101 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3108 +3040 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3108 +3040 i 887 1 -return +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3034 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 +this.ends[..] +[868 887] 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -3102 +3023 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +n +857 +1 +return +false +1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -3109 +3041 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +n +857 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3110 +3042 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78351,14 +77980,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3111 +3043 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3111 +3043 i 22 1 @@ -78368,14 +77997,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3112 +3044 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3112 +3044 i 868 1 @@ -78385,14 +78014,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3113 +3045 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3113 +3045 i 22 1 @@ -78402,14 +78031,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3114 +3046 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3114 +3046 i 879 1 @@ -78419,14 +78048,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3115 +3047 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3115 +3047 i 879 1 @@ -78436,14 +78065,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3116 +3048 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3116 +3048 i 887 1 @@ -78453,37 +78082,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3110 +3042 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3049 +i +857 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3049 +i +857 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3050 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3050 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3051 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3051 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3117 +3052 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78491,14 +78171,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3118 +3053 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3118 +3053 i 22 1 @@ -78508,14 +78188,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3119 +3054 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3119 +3054 i 868 1 @@ -78525,14 +78205,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3120 +3055 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3120 +3055 i 22 1 @@ -78542,14 +78222,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3121 +3056 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3121 +3056 i 879 1 @@ -78559,14 +78239,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3122 +3057 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3122 +3057 i 879 1 @@ -78576,14 +78256,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3123 +3058 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3123 +3058 i 887 1 @@ -78593,106 +78273,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3117 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3109 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3091 +3052 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -690 -1 -return -334 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3124 +3059 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -523 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3125 +3060 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78700,14 +78330,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3126 +3061 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3126 +3061 i 22 1 @@ -78717,14 +78347,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3127 +3062 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3127 +3062 i 868 1 @@ -78734,14 +78364,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3128 +3063 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3128 +3063 i 22 1 @@ -78751,14 +78381,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3129 +3064 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3129 +3064 i 879 1 @@ -78768,14 +78398,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3130 +3065 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3130 +3065 i 879 1 @@ -78785,14 +78415,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3131 +3066 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3131 +3066 i 887 1 @@ -78802,88 +78432,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3125 +3060 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3132 -i -523 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3132 -i -523 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3133 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3133 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3134 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3134 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3135 +3067 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -78891,14 +78470,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3136 +3068 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3136 +3068 i 22 1 @@ -78908,14 +78487,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3137 +3069 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3137 +3069 i 868 1 @@ -78925,14 +78504,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3138 +3070 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3138 +3070 i 22 1 @@ -78942,14 +78521,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3139 +3071 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3139 +3071 i 879 1 @@ -78959,14 +78538,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3140 +3072 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3140 +3072 i 879 1 @@ -78976,14 +78555,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3141 +3073 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3141 +3073 i 887 1 @@ -78993,84 +78572,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3135 +3067 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3124 +3059 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +3041 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -523 +857 1 return -false +418 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3142 +3074 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -523 +690 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3143 +3075 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79078,14 +78679,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3144 +3076 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3144 +3076 i 22 1 @@ -79095,14 +78696,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3145 +3077 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3145 +3077 i 868 1 @@ -79112,14 +78713,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3146 +3078 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3146 +3078 i 22 1 @@ -79129,14 +78730,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3147 +3079 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3147 +3079 i 879 1 @@ -79146,14 +78747,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3148 +3080 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3148 +3080 i 879 1 @@ -79163,14 +78764,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3149 +3081 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3149 +3081 i 887 1 @@ -79180,18 +78781,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3143 +3075 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79199,31 +78800,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3150 +3082 i -523 +690 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3150 +3082 i -523 +690 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3151 +3083 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3151 +3083 i 22 1 @@ -79231,37 +78832,20 @@ return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3152 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3152 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3153 +3084 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79269,14 +78853,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3154 +3085 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3154 +3085 i 22 1 @@ -79286,14 +78870,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3155 +3086 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3155 +3086 i 868 1 @@ -79303,14 +78887,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3156 +3087 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3156 +3087 i 22 1 @@ -79320,14 +78904,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3157 +3088 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3157 +3088 i 879 1 @@ -79337,14 +78921,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3158 +3089 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3158 +3089 i 879 1 @@ -79354,14 +78938,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3159 +3090 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3159 +3090 i 887 1 @@ -79371,56 +78955,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3153 +3084 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3160 +3074 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +690 +1 +return +true +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3091 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +690 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3161 +3092 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79428,14 +79040,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3162 +3093 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3162 +3093 i 22 1 @@ -79445,14 +79057,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3163 +3094 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3163 +3094 i 868 1 @@ -79462,14 +79074,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3164 +3095 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3164 +3095 i 22 1 @@ -79479,14 +79091,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3165 +3096 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3165 +3096 i 879 1 @@ -79496,14 +79108,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3166 +3097 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3166 +3097 i 879 1 @@ -79513,14 +79125,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3167 +3098 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3167 +3098 i 887 1 @@ -79530,37 +79142,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3161 +3092 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3099 +i +690 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3099 +i +690 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3100 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3100 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3101 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3101 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3168 +3102 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79568,14 +79231,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3169 +3103 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3169 +3103 i 22 1 @@ -79585,14 +79248,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3170 +3104 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3170 +3104 i 868 1 @@ -79602,14 +79265,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3171 +3105 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3171 +3105 i 22 1 @@ -79619,14 +79282,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3172 +3106 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3172 +3106 i 879 1 @@ -79636,14 +79299,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3173 +3107 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3173 +3107 i 879 1 @@ -79653,14 +79316,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3174 +3108 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3174 +3108 i 887 1 @@ -79670,106 +79333,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3168 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3160 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3142 +3102 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -523 -1 -return -251 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3175 +3109 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -356 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3176 +3110 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79777,14 +79390,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3177 +3111 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3177 +3111 i 22 1 @@ -79794,14 +79407,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3178 +3112 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3178 +3112 i 868 1 @@ -79811,14 +79424,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3179 +3113 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3179 +3113 i 22 1 @@ -79828,14 +79441,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3180 +3114 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3180 +3114 i 879 1 @@ -79845,14 +79458,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3181 +3115 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3181 +3115 i 879 1 @@ -79862,14 +79475,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3182 +3116 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3182 +3116 i 887 1 @@ -79879,71 +79492,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3176 +3110 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3183 -i -356 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3183 -i -356 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3184 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3184 -i -22 -1 -return -0 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3185 +3117 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -79951,14 +79530,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3186 +3118 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3186 +3118 i 22 1 @@ -79968,14 +79547,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3187 +3119 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3187 +3119 i 868 1 @@ -79985,14 +79564,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3188 +3120 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3188 +3120 i 22 1 @@ -80002,14 +79581,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3189 +3121 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3189 +3121 i 879 1 @@ -80019,14 +79598,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3190 +3122 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3190 +3122 i 879 1 @@ -80036,14 +79615,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3191 +3123 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3191 +3123 i 887 1 @@ -80053,84 +79632,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3185 +3117 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3175 +3109 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +3091 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -356 +690 1 return -true +334 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3192 +3124 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -356 +523 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3193 +3125 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -80138,14 +79739,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3194 +3126 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3194 +3126 i 22 1 @@ -80155,14 +79756,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3195 +3127 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3195 +3127 i 868 1 @@ -80172,14 +79773,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3196 +3128 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3196 +3128 i 22 1 @@ -80189,14 +79790,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3197 +3129 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3197 +3129 i 879 1 @@ -80206,14 +79807,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3198 +3130 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3198 +3130 i 879 1 @@ -80223,14 +79824,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3199 +3131 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3199 +3131 i 887 1 @@ -80240,18 +79841,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3193 +3125 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -80259,31 +79860,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3200 +3132 i -356 +523 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3200 +3132 i -356 +523 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3201 +3133 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3201 +3133 i 22 1 @@ -80293,14 +79894,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3202 +3134 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3202 +3134 i 879 1 @@ -80310,18 +79911,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3203 +3135 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -80329,14 +79930,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3204 +3136 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3204 +3136 i 22 1 @@ -80346,14 +79947,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3205 +3137 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3205 +3137 i 868 1 @@ -80363,14 +79964,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3206 +3138 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3206 +3138 i 22 1 @@ -80380,14 +79981,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3207 +3139 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3207 +3139 i 879 1 @@ -80397,14 +79998,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3208 +3140 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3208 +3140 i 879 1 @@ -80414,14 +80015,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3209 +3141 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3209 +3141 i 887 1 @@ -80431,56 +80032,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3203 +3135 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -3210 +3124 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +523 +1 +return +false +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3142 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +523 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3211 +3143 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -80488,14 +80117,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3212 +3144 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3212 +3144 i 22 1 @@ -80505,14 +80134,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3213 +3145 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3213 +3145 i 868 1 @@ -80522,14 +80151,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3214 +3146 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3214 +3146 i 22 1 @@ -80539,14 +80168,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3215 +3147 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3215 +3147 i 879 1 @@ -80556,14 +80185,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3216 +3148 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3216 +3148 i 879 1 @@ -80573,14 +80202,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3217 +3149 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3217 +3149 i 887 1 @@ -80590,37 +80219,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3211 +3143 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3150 +i +523 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3150 +i +523 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3151 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3151 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3152 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3152 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3218 +3153 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -80628,14 +80308,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3219 +3154 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3219 +3154 i 22 1 @@ -80645,14 +80325,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3220 +3155 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3220 +3155 i 868 1 @@ -80662,14 +80342,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3221 +3156 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3221 +3156 i 22 1 @@ -80679,14 +80359,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3222 +3157 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3222 +3157 i 879 1 @@ -80696,14 +80376,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3223 +3158 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3223 +3158 i 879 1 @@ -80713,14 +80393,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3224 +3159 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3224 +3159 i 887 1 @@ -80730,106 +80410,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3218 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3210 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3192 +3153 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -356 -1 -return -167 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3225 +3160 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -189 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3226 +3161 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -80837,14 +80467,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3227 +3162 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3227 +3162 i 22 1 @@ -80854,14 +80484,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3228 +3163 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3228 +3163 i 868 1 @@ -80871,14 +80501,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3229 +3164 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3229 +3164 i 22 1 @@ -80888,14 +80518,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3230 +3165 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3230 +3165 i 879 1 @@ -80905,14 +80535,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3231 +3166 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3231 +3166 i 879 1 @@ -80922,14 +80552,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3232 +3167 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3232 +3167 i 887 1 @@ -80939,88 +80569,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3226 +3161 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3233 -i -189 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3233 -i -189 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3234 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3234 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3235 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3235 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3236 +3168 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -81028,14 +80607,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3237 +3169 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3237 +3169 i 22 1 @@ -81045,14 +80624,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3238 +3170 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3238 +3170 i 868 1 @@ -81062,14 +80641,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3239 +3171 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3239 +3171 i 22 1 @@ -81079,14 +80658,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3240 +3172 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3240 +3172 i 879 1 @@ -81096,14 +80675,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3241 +3173 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3241 +3173 i 879 1 @@ -81113,14 +80692,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3242 +3174 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3242 +3174 i 887 1 @@ -81130,84 +80709,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3236 +3168 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3225 +3160 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +3142 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -189 +523 1 return -false +251 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3243 +3175 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -189 +356 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3244 +3176 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -81215,14 +80816,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3245 +3177 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3245 +3177 i 22 1 @@ -81232,14 +80833,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3246 +3178 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3246 +3178 i 868 1 @@ -81249,14 +80850,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3247 +3179 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3247 +3179 i 22 1 @@ -81266,14 +80867,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3248 +3180 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3248 +3180 i 879 1 @@ -81283,14 +80884,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3249 +3181 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3249 +3181 i 879 1 @@ -81300,14 +80901,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3250 +3182 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3250 +3182 i 887 1 @@ -81317,18 +80918,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3244 +3176 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -81336,31 +80937,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3251 +3183 i -189 +356 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3251 +3183 i -189 +356 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3252 +3184 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3252 +3184 i 22 1 @@ -81368,37 +80969,20 @@ return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3253 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3253 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3254 +3185 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -81406,14 +80990,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3255 +3186 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3255 +3186 i 22 1 @@ -81423,14 +81007,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3256 +3187 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3256 +3187 i 868 1 @@ -81440,14 +81024,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3257 +3188 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3257 +3188 i 22 1 @@ -81457,14 +81041,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3258 +3189 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3258 +3189 i 879 1 @@ -81474,14 +81058,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3259 +3190 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3259 +3190 i 879 1 @@ -81491,14 +81075,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3260 +3191 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3260 +3191 i 887 1 @@ -81508,56 +81092,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3254 +3185 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3261 +3175 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +356 +1 +return +true +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3192 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +356 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3262 +3193 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -81565,14 +81177,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3263 +3194 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3263 +3194 i 22 1 @@ -81582,14 +81194,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3264 +3195 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3264 +3195 i 868 1 @@ -81599,14 +81211,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3265 +3196 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3265 +3196 i 22 1 @@ -81616,14 +81228,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3266 +3197 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3266 +3197 i 879 1 @@ -81633,14 +81245,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3267 +3198 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3267 +3198 i 879 1 @@ -81650,14 +81262,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3268 +3199 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3268 +3199 i 887 1 @@ -81667,52 +81279,50 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3262 +3193 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3269 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] +3200 +i +356 1 -this.ends -789219251 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3200 +i +356 1 -this.ends[..] -[868 887] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3270 +3201 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3270 +3201 i 22 1 @@ -81722,31 +81332,50 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3271 +3202 i -868 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3271 +3202 i -868 +879 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3203 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3272 +3204 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3272 +3204 i 22 1 @@ -81756,157 +81385,141 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3273 +3205 i -879 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3273 +3205 i -879 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3274 +3206 i -879 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3274 +3206 i -879 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3275 +3207 i -887 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3275 +3207 i -887 +879 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3269 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3261 -this -614685048 +3208 +i +879 1 -this.begins -385337537 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3208 +i +879 1 -this.begins[..] -[22 879] +return 1 -this.ends -789219251 1 -this.ends[..] -[868 887] + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3209 +i +887 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3209 +i +887 1 return -429 +1 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3243 +3203 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -189 -1 -return -84 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3276 +3210 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3277 +3211 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -81914,14 +81527,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3278 +3212 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3278 +3212 i 22 1 @@ -81931,14 +81544,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3279 +3213 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3279 +3213 i 868 1 @@ -81948,14 +81561,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3280 +3214 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3280 +3214 i 22 1 @@ -81965,14 +81578,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3281 +3215 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3281 +3215 i 879 1 @@ -81982,14 +81595,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3282 +3216 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3282 +3216 i 879 1 @@ -81999,14 +81612,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3283 +3217 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3283 +3217 i 887 1 @@ -82016,71 +81629,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3277 +3211 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3284 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3284 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3285 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3285 -i -22 -1 -return -0 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3286 +3218 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82088,14 +81667,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3287 +3219 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3287 +3219 i 22 1 @@ -82105,14 +81684,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3288 +3220 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3288 +3220 i 868 1 @@ -82122,14 +81701,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3289 +3221 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3289 +3221 i 22 1 @@ -82139,14 +81718,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3290 +3222 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3290 +3222 i 879 1 @@ -82156,14 +81735,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3291 +3223 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3291 +3223 i 879 1 @@ -82173,14 +81752,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3292 +3224 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3292 +3224 i 887 1 @@ -82190,84 +81769,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3286 +3218 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3276 +3210 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +3192 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -22 +356 1 return -true +167 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3293 +3225 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -22 +189 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3294 +3226 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82275,14 +81876,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3295 +3227 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3295 +3227 i 22 1 @@ -82292,14 +81893,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3296 +3228 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3296 +3228 i 868 1 @@ -82309,14 +81910,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3297 +3229 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3297 +3229 i 22 1 @@ -82326,14 +81927,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3298 +3230 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3298 +3230 i 879 1 @@ -82343,14 +81944,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3299 +3231 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3299 +3231 i 879 1 @@ -82360,14 +81961,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3300 +3232 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3300 +3232 i 887 1 @@ -82377,18 +81978,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3294 +3226 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82396,31 +81997,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3301 +3233 i -22 +189 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3301 +3233 i -22 +189 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3302 +3234 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3302 +3234 i 22 1 @@ -82430,14 +82031,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3303 +3235 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3303 +3235 i 879 1 @@ -82447,18 +82048,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3304 +3236 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82466,14 +82067,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3305 +3237 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3305 +3237 i 22 1 @@ -82483,14 +82084,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3306 +3238 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3306 +3238 i 868 1 @@ -82500,14 +82101,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3307 +3239 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3307 +3239 i 22 1 @@ -82517,14 +82118,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3308 +3240 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3308 +3240 i 879 1 @@ -82534,14 +82135,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3309 +3241 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3309 +3241 i 879 1 @@ -82551,14 +82152,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3310 +3242 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3310 +3242 i 887 1 @@ -82568,56 +82169,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3304 +3236 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -3311 +3225 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +189 +1 +return +false +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3243 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +189 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3312 +3244 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82625,14 +82254,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3313 +3245 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3313 +3245 i 22 1 @@ -82642,14 +82271,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3314 +3246 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3314 +3246 i 868 1 @@ -82659,14 +82288,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3315 +3247 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3315 +3247 i 22 1 @@ -82676,14 +82305,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3316 +3248 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3316 +3248 i 879 1 @@ -82693,14 +82322,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3317 +3249 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3317 +3249 i 879 1 @@ -82710,14 +82339,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3318 +3250 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3318 +3250 i 887 1 @@ -82727,37 +82356,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3312 +3244 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3251 +i +189 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3251 +i +189 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3252 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3252 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3253 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3253 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3319 +3254 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82765,14 +82445,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3320 +3255 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3320 +3255 i 22 1 @@ -82782,14 +82462,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3321 +3256 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3321 +3256 i 868 1 @@ -82799,14 +82479,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3322 +3257 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3322 +3257 i 22 1 @@ -82816,14 +82496,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3323 +3258 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3323 +3258 i 879 1 @@ -82833,14 +82513,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3324 +3259 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3324 +3259 i 879 1 @@ -82850,14 +82530,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3325 +3260 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3325 +3260 i 887 1 @@ -82867,106 +82547,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3319 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3311 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3293 +3254 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 -return -0 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3326 +3261 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -879 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3327 +3262 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -82974,14 +82604,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3328 +3263 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3328 +3263 i 22 1 @@ -82991,14 +82621,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3329 +3264 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3329 +3264 i 868 1 @@ -83008,14 +82638,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3330 +3265 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3330 +3265 i 22 1 @@ -83025,14 +82655,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3331 +3266 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3331 +3266 i 879 1 @@ -83042,14 +82672,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3332 +3267 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3332 +3267 i 879 1 @@ -83059,14 +82689,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3333 +3268 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3333 +3268 i 887 1 @@ -83076,88 +82706,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3327 +3262 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3334 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3334 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3335 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3335 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3336 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3336 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3337 +3269 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -83165,14 +82744,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3338 +3270 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3338 +3270 i 22 1 @@ -83182,14 +82761,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3339 +3271 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3339 +3271 i 868 1 @@ -83199,14 +82778,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3340 +3272 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3340 +3272 i 22 1 @@ -83216,14 +82795,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3341 +3273 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3341 +3273 i 879 1 @@ -83233,14 +82812,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3342 +3274 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3342 +3274 i 879 1 @@ -83250,14 +82829,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3343 +3275 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3343 +3275 i 887 1 @@ -83267,84 +82846,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3337 +3269 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3326 +3261 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +3243 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -879 +189 1 return -true +84 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3344 +3276 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -879 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3345 +3277 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -83352,14 +82953,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3346 +3278 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3346 +3278 i 22 1 @@ -83369,14 +82970,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3347 +3279 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3347 +3279 i 868 1 @@ -83386,14 +82987,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3348 +3280 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3348 +3280 i 22 1 @@ -83403,14 +83004,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3349 +3281 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3349 +3281 i 879 1 @@ -83420,14 +83021,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3350 +3282 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3350 +3282 i 879 1 @@ -83437,14 +83038,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3351 +3283 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3351 +3283 i 887 1 @@ -83454,18 +83055,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3345 +3277 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -83473,31 +83074,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3352 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3352 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3353 +3284 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3353 +3284 i 22 1 @@ -83507,35 +83091,35 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3354 +3285 i -879 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3354 +3285 i -879 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3355 +3286 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -83543,14 +83127,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3356 +3287 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3356 +3287 i 22 1 @@ -83560,14 +83144,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3357 +3288 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3357 +3288 i 868 1 @@ -83577,14 +83161,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3358 +3289 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3358 +3289 i 22 1 @@ -83594,14 +83178,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3359 +3290 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3359 +3290 i 879 1 @@ -83611,14 +83195,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3360 +3291 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3360 +3291 i 879 1 @@ -83628,14 +83212,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3361 +3292 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3361 +3292 i 887 1 @@ -83645,56 +83229,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3355 +3286 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3362 +3276 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +22 +1 +return +true +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3293 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +22 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3363 +3294 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -83702,14 +83314,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3364 +3295 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3364 +3295 i 22 1 @@ -83719,14 +83331,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3365 +3296 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3365 +3296 i 868 1 @@ -83736,14 +83348,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3366 +3297 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3366 +3297 i 22 1 @@ -83753,14 +83365,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3367 +3298 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3367 +3298 i 879 1 @@ -83770,14 +83382,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3368 +3299 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3368 +3299 i 879 1 @@ -83787,14 +83399,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3369 +3300 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3369 +3300 i 887 1 @@ -83804,37 +83416,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3363 +3294 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3301 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3301 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3302 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3302 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3303 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3303 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3370 +3304 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -83842,14 +83505,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3371 +3305 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3371 +3305 i 22 1 @@ -83859,14 +83522,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3372 +3306 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3372 +3306 i 868 1 @@ -83876,14 +83539,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3373 +3307 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3373 +3307 i 22 1 @@ -83893,14 +83556,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3374 +3308 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3374 +3308 i 879 1 @@ -83910,14 +83573,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3375 +3309 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3375 +3309 i 879 1 @@ -83927,14 +83590,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3376 +3310 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3376 +3310 i 887 1 @@ -83944,106 +83607,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3370 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3362 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3344 +3304 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -879 -1 -return -424 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3377 +3311 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -712 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3378 +3312 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84051,14 +83664,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3379 +3313 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3379 +3313 i 22 1 @@ -84068,14 +83681,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3380 +3314 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3380 +3314 i 868 1 @@ -84085,14 +83698,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3381 +3315 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3381 +3315 i 22 1 @@ -84102,14 +83715,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3382 +3316 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3382 +3316 i 879 1 @@ -84119,14 +83732,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3383 +3317 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3383 +3317 i 879 1 @@ -84136,14 +83749,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3384 +3318 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3384 +3318 i 887 1 @@ -84153,71 +83766,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3378 +3312 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3385 -i -712 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3385 -i -712 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3386 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3386 -i -22 +this.ends +497359413 1 -return -0 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3387 +3319 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84225,14 +83804,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3388 +3320 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3388 +3320 i 22 1 @@ -84242,14 +83821,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3389 +3321 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3389 +3321 i 868 1 @@ -84259,14 +83838,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3390 +3322 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3390 +3322 i 22 1 @@ -84276,14 +83855,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3391 +3323 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3391 +3323 i 879 1 @@ -84293,14 +83872,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3392 +3324 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3392 +3324 i 879 1 @@ -84310,14 +83889,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3393 +3325 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3393 +3325 i 887 1 @@ -84327,84 +83906,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3387 +3319 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3377 +3311 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +return +429 +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 +this_invocation_nonce +3293 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 n -712 +22 1 return -true +0 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3394 +3326 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -712 +879 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3395 +3327 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84412,14 +84013,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3396 +3328 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3396 +3328 i 22 1 @@ -84429,14 +84030,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3397 +3329 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3397 +3329 i 868 1 @@ -84446,14 +84047,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3398 +3330 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3398 +3330 i 22 1 @@ -84463,14 +84064,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3399 +3331 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3399 +3331 i 879 1 @@ -84480,14 +84081,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3400 +3332 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3400 +3332 i 879 1 @@ -84497,14 +84098,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3401 +3333 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3401 +3333 i 887 1 @@ -84514,18 +84115,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3395 +3327 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84533,31 +84134,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3402 +3334 i -712 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3402 +3334 i -712 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3403 +3335 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3403 +3335 i 22 1 @@ -84567,14 +84168,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3404 +3336 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3404 +3336 i 879 1 @@ -84584,18 +84185,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3405 +3337 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84603,14 +84204,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3406 +3338 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3406 +3338 i 22 1 @@ -84620,14 +84221,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3407 +3339 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3407 +3339 i 868 1 @@ -84637,14 +84238,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3408 +3340 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3408 +3340 i 22 1 @@ -84654,14 +84255,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3409 +3341 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3409 +3341 i 879 1 @@ -84671,14 +84272,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3410 +3342 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3410 +3342 i 879 1 @@ -84688,14 +84289,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3411 +3343 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3411 +3343 i 887 1 @@ -84705,56 +84306,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3405 +3337 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3412 +3326 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +879 +1 +return +true +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3344 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +879 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3413 +3345 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84762,14 +84391,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3414 +3346 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3414 +3346 i 22 1 @@ -84779,14 +84408,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3415 +3347 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3415 +3347 i 868 1 @@ -84796,14 +84425,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3416 +3348 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3416 +3348 i 22 1 @@ -84813,14 +84442,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3417 +3349 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3417 +3349 i 879 1 @@ -84830,14 +84459,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3418 +3350 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3418 +3350 i 879 1 @@ -84847,14 +84476,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3419 +3351 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3419 +3351 i 887 1 @@ -84864,37 +84493,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3413 +3345 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3352 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3352 +i +879 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3353 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3353 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3354 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3354 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3420 +3355 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -84902,14 +84582,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3421 +3356 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3421 +3356 i 22 1 @@ -84919,14 +84599,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3422 +3357 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3422 +3357 i 868 1 @@ -84936,14 +84616,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3423 +3358 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3423 +3358 i 22 1 @@ -84953,14 +84633,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3424 +3359 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3424 +3359 i 879 1 @@ -84970,14 +84650,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3425 +3360 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3425 +3360 i 879 1 @@ -84987,14 +84667,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3426 +3361 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3426 +3361 i 887 1 @@ -85004,106 +84684,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3420 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3412 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3394 +3355 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -712 -1 -return -345 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3427 +3362 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -545 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3428 +3363 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85111,14 +84741,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3429 +3364 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3429 +3364 i 22 1 @@ -85128,14 +84758,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3430 +3365 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3430 +3365 i 868 1 @@ -85145,14 +84775,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3431 +3366 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3431 +3366 i 22 1 @@ -85162,14 +84792,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3432 +3367 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3432 +3367 i 879 1 @@ -85179,14 +84809,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3433 +3368 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3433 +3368 i 879 1 @@ -85196,14 +84826,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3434 +3369 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3434 +3369 i 887 1 @@ -85213,88 +84843,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3428 +3363 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3435 -i -545 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3435 -i -545 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3436 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3436 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3437 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3437 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3438 +3370 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85302,14 +84881,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3439 +3371 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3439 +3371 i 22 1 @@ -85319,14 +84898,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3440 +3372 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3440 +3372 i 868 1 @@ -85336,14 +84915,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3441 +3373 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3441 +3373 i 22 1 @@ -85353,14 +84932,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3442 +3374 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3442 +3374 i 879 1 @@ -85370,14 +84949,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3443 +3375 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3443 +3375 i 879 1 @@ -85387,14 +84966,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3444 +3376 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3444 +3376 i 887 1 @@ -85404,84 +84983,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3438 +3370 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.size():::EXIT181 +this_invocation_nonce +3362 +this +1412925683 +1 +this.begins +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +return +429 +1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -3427 +3344 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -545 +879 1 return -false +424 1 -MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3445 +3377 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -545 +712 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3446 +3378 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85489,14 +85090,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3447 +3379 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3447 +3379 i 22 1 @@ -85506,14 +85107,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3448 +3380 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3448 +3380 i 868 1 @@ -85523,14 +85124,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3449 +3381 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3449 +3381 i 22 1 @@ -85540,14 +85141,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3450 +3382 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3450 +3382 i 879 1 @@ -85557,14 +85158,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3451 +3383 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3451 +3383 i 879 1 @@ -85574,14 +85175,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3452 +3384 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3452 +3384 i 887 1 @@ -85591,18 +85192,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3446 +3378 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85610,31 +85211,31 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3453 +3385 i -545 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3453 +3385 i -545 +712 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3454 +3386 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3454 +3386 i 22 1 @@ -85642,37 +85243,20 @@ return 0 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3455 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3455 -i -879 -1 -return -1 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3456 +3387 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85680,14 +85264,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3457 +3388 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3457 +3388 i 22 1 @@ -85697,14 +85281,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3458 +3389 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3458 +3389 i 868 1 @@ -85714,14 +85298,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3459 +3390 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3459 +3390 i 22 1 @@ -85731,14 +85315,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3460 +3391 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3460 +3391 i 879 1 @@ -85748,14 +85332,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3461 +3392 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3461 +3392 i 879 1 @@ -85765,14 +85349,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3462 +3393 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3462 +3393 i 887 1 @@ -85782,56 +85366,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3456 +3387 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.size():::ENTER +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3463 +3377 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +712 +1 +return +true +1 + +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER +this_invocation_nonce +3394 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +712 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3464 +3395 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85839,14 +85451,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3465 +3396 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3465 +3396 i 22 1 @@ -85856,14 +85468,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3466 +3397 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3466 +3397 i 868 1 @@ -85873,14 +85485,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3467 +3398 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3467 +3398 i 22 1 @@ -85890,14 +85502,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3468 +3399 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3468 +3399 i 879 1 @@ -85907,14 +85519,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3469 +3400 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3469 +3400 i 879 1 @@ -85924,14 +85536,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3470 +3401 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3470 +3401 i 887 1 @@ -85941,37 +85553,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3464 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -3471 +3395 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -85979,33 +85572,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3472 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3472 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3473 +3402 i -868 +712 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3473 +3402 i -868 +712 1 return 0 @@ -86013,14 +85589,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3474 +3403 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3474 +3403 i 22 1 @@ -86030,31 +85606,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3475 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3475 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3476 +3404 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3476 +3404 i 879 1 @@ -86062,122 +85621,20 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3477 -i -887 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3477 -i -887 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3471 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3463 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 -this_invocation_nonce -3445 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -n -545 -1 -return -262 -1 - -MapQuick1.StreetNumberSet.size():::ENTER -this_invocation_nonce -3478 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3479 +3405 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -86185,14 +85642,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3480 +3406 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3480 +3406 i 22 1 @@ -86202,14 +85659,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3481 +3407 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3481 +3407 i 868 1 @@ -86219,14 +85676,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3482 +3408 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3482 +3408 i 22 1 @@ -86236,14 +85693,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3483 +3409 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3483 +3409 i 879 1 @@ -86253,14 +85710,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3484 +3410 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3484 +3410 i 879 1 @@ -86270,14 +85727,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3485 +3411 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3485 +3411 i 887 1 @@ -86287,18 +85744,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3479 +3405 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.size():::ENTER +this_invocation_nonce +3412 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] @@ -86306,18 +85782,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3486 +3413 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -86325,14 +85801,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3487 +3414 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3487 +3414 i 22 1 @@ -86342,14 +85818,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3488 +3415 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3488 +3415 i 868 1 @@ -86359,14 +85835,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3489 +3416 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3489 +3416 i 22 1 @@ -86376,14 +85852,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3490 +3417 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3490 +3417 i 879 1 @@ -86393,14 +85869,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3491 +3418 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3491 +3418 i 879 1 @@ -86410,14 +85886,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3492 +3419 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3492 +3419 i 887 1 @@ -86427,59 +85903,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3486 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.size():::EXIT181 -this_invocation_nonce -3478 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -429 -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -3493 +3413 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -86487,18 +85922,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3494 +3420 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -86506,14 +85941,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3495 +3421 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3495 +3421 i 22 1 @@ -86523,14 +85958,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3496 +3422 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3496 +3422 i 868 1 @@ -86540,14 +85975,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3497 +3423 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3497 +3423 i 22 1 @@ -86557,14 +85992,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3498 +3424 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3498 +3424 i 879 1 @@ -86574,14 +86009,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3499 +3425 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3499 +3425 i 879 1 @@ -86591,14 +86026,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3500 +3426 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3500 +3426 i 887 1 @@ -86608,78 +86043,106 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3494 +3420 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3493 +3412 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 return -false +429 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -3501 +3394 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 +n +712 +1 +return +345 +1 + +MapQuick1.StreetNumberSet.contains(int):::ENTER +this_invocation_nonce +3427 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3502 +3428 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -86687,14 +86150,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3503 +3429 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3503 +3429 i 22 1 @@ -86704,14 +86167,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3504 +3430 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3504 +3430 i 868 1 @@ -86721,14 +86184,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3505 +3431 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3505 +3431 i 22 1 @@ -86738,14 +86201,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3506 +3432 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3506 +3432 i 879 1 @@ -86755,14 +86218,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3507 +3433 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3507 +3433 i 879 1 @@ -86772,14 +86235,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3508 +3434 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3508 +3434 i 887 1 @@ -86789,37 +86252,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3502 +3428 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3435 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3435 +i +545 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3436 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3436 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3437 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3437 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3509 +3438 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -86827,14 +86341,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3510 +3439 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3510 +3439 i 22 1 @@ -86844,14 +86358,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3511 +3440 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3511 +3440 i 868 1 @@ -86861,14 +86375,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3512 +3441 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3512 +3441 i 22 1 @@ -86878,14 +86392,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3513 +3442 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3513 +3442 i 879 1 @@ -86895,14 +86409,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3514 +3443 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3514 +3443 i 879 1 @@ -86912,14 +86426,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3515 +3444 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3515 +3444 i 887 1 @@ -86929,78 +86443,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3509 +3438 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -3501 +3427 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +n +545 +1 return -22 +false 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::ENTER this_invocation_nonce -3516 +3445 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +n +545 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3517 +3446 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -87008,14 +86528,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3518 +3447 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3518 +3447 i 22 1 @@ -87025,14 +86545,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3519 +3448 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3519 +3448 i 868 1 @@ -87042,14 +86562,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3520 +3449 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3520 +3449 i 22 1 @@ -87059,14 +86579,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3521 +3450 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3521 +3450 i 879 1 @@ -87076,14 +86596,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3522 +3451 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3522 +3451 i 879 1 @@ -87093,14 +86613,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3523 +3452 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3523 +3452 i 887 1 @@ -87110,37 +86630,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3517 +3446 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3453 +i +545 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3453 +i +545 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3454 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3454 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3455 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3455 +i +879 +1 +return +1 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3524 +3456 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -87148,14 +86719,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3525 +3457 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3525 +3457 i 22 1 @@ -87165,14 +86736,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3526 +3458 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3526 +3458 i 868 1 @@ -87182,14 +86753,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3527 +3459 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3527 +3459 i 22 1 @@ -87199,14 +86770,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3528 +3460 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3528 +3460 i 879 1 @@ -87216,14 +86787,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3529 +3461 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3529 +3461 i 879 1 @@ -87233,14 +86804,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3530 +3462 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3530 +3462 i 887 1 @@ -87250,439 +86821,281 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3524 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.max():::EXIT230 -this_invocation_nonce -3516 +3456 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -return -887 -1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3531 +3463 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -o -null -1 -o.getClass().getName() -nonsensical -2 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3531 +3464 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -o -null -1 -o.getClass().getName() -nonsensical -2 -return -false -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3532 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -other -null +3465 +i +22 1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3532 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -other -null +3465 +i +22 1 -other.begins -nonsensical -2 -other.begins[..] -nonsensical -2 -other.ends -nonsensical -2 -other.ends[..] -nonsensical -2 return -false -1 - -MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER -this_invocation_nonce -3533 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -o -614685048 -1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" +0 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3534 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -other -614685048 -1 -other.begins -385337537 -1 -other.begins[..] -[22 879] -1 -other.ends -789219251 -1 -other.ends[..] -[868 887] +3466 +i +868 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3534 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 +3466 +i +868 1 -this.ends[..] -[868 887] +return +0 1 -other -614685048 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3467 +i +22 1 -other.begins -385337537 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3467 +i +22 1 -other.begins[..] -[22 879] +return +0 1 -other.ends -789219251 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3468 +i +879 1 -other.ends[..] -[868 887] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3468 +i +879 1 return -true +1 1 -MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3533 -this -614685048 -1 -this.begins -385337537 +3469 +i +879 1 -this.begins[..] -[22 879] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3469 +i +879 1 -this.ends -789219251 +return 1 -this.ends[..] -[868 887] 1 -o -614685048 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3470 +i +887 1 -o.getClass().getName() -"MapQuick1.StreetNumberSet" + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3470 +i +887 1 return -true +1 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3535 +3464 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -other -614685048 -1 -other.begins -385337537 -1 -other.begins[..] -[22 879] -1 -other.ends -789219251 -1 -other.ends[..] -[868 887] -1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3535 +3471 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -other -614685048 -1 -other.begins -385337537 -1 -other.begins[..] -[22 879] -1 -other.ends -789219251 -1 -other.ends[..] -[868 887] -1 -return -true + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3472 +i +22 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3536 -numbers -422392391 +3472 +i +22 1 -numbers.toString -"1" +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3537 +3473 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3537 +3473 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3538 +3474 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3538 +3474 i -1 +22 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3539 -this -832279283 -1 -this.begins -265119009 +3475 +i +879 1 -this.begins[..] -[1] + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3475 +i +879 1 -this.ends -668210649 +return 1 -this.ends[..] -[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3540 +3476 i -1 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3540 +3476 i -1 +879 1 return 1 @@ -87690,16 +87103,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3541 +3477 i -1 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3541 +3477 i -1 +887 1 return 1 @@ -87707,96 +87120,84 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3539 +3471 this -832279283 +1412925683 1 this.begins -265119009 +1832580921 1 this.begins[..] -[1] +[22 879] 1 this.ends -668210649 +497359413 1 this.ends[..] -[1] +[868 887] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3536 +3463 this -832279283 +1412925683 1 this.begins -265119009 +1832580921 1 this.begins[..] -[1] +[22 879] 1 this.ends -668210649 +497359413 1 this.ends[..] -[1] -1 -numbers -422392391 +[868 887] 1 -numbers.toString -"1" +return +429 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.orderStatistic(int):::EXIT162 this_invocation_nonce -3542 +3445 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -other -832279283 -1 -other.begins -265119009 -1 -other.begins[..] -[1] -1 -other.ends -668210649 +n +545 1 -other.ends[..] -[1] +return +262 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.size():::ENTER this_invocation_nonce -3543 +3478 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -87804,18 +87205,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3544 +3479 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -87823,14 +87224,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3545 +3480 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3545 +3480 i 22 1 @@ -87840,14 +87241,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3546 +3481 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3546 +3481 i 868 1 @@ -87857,14 +87258,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3547 +3482 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3547 +3482 i 22 1 @@ -87874,14 +87275,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3548 +3483 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3548 +3483 i 879 1 @@ -87891,14 +87292,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3549 +3484 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3549 +3484 i 879 1 @@ -87908,14 +87309,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3550 +3485 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3550 +3485 i 887 1 @@ -87925,18 +87326,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3544 +3479 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -87944,18 +87345,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3551 +3486 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -87963,14 +87364,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3552 +3487 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3552 +3487 i 22 1 @@ -87980,14 +87381,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3553 +3488 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3553 +3488 i 868 1 @@ -87997,14 +87398,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3554 +3489 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3554 +3489 i 22 1 @@ -88014,14 +87415,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3555 +3490 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3555 +3490 i 879 1 @@ -88031,14 +87432,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3556 +3491 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3556 +3491 i 879 1 @@ -88048,14 +87449,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3557 +3492 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3557 +3492 i 887 1 @@ -88065,59 +87466,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3551 +3486 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.size():::EXIT181 this_invocation_nonce -3543 +3478 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 return -22 +429 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -3558 +3493 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -88125,18 +87526,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3559 +3494 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -88144,14 +87545,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3560 +3495 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3560 +3495 i 22 1 @@ -88161,14 +87562,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3561 +3496 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3561 +3496 i 868 1 @@ -88178,14 +87579,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3562 +3497 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3562 +3497 i 22 1 @@ -88195,14 +87596,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3563 +3498 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3563 +3498 i 879 1 @@ -88212,14 +87613,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3564 +3499 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3564 +3499 i 879 1 @@ -88229,14 +87630,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3565 +3500 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3565 +3500 i 887 1 @@ -88246,18 +87647,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3559 +3494 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +this_invocation_nonce +3493 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +return +false +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +3501 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] @@ -88265,18 +87707,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3566 +3502 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -88284,14 +87726,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3567 +3503 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3567 +3503 i 22 1 @@ -88301,14 +87743,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3568 +3504 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3568 +3504 i 868 1 @@ -88318,14 +87760,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3569 +3505 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3569 +3505 i 22 1 @@ -88335,14 +87777,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3570 +3506 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3570 +3506 i 879 1 @@ -88352,14 +87794,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3571 +3507 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3571 +3507 i 879 1 @@ -88369,14 +87811,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3572 +3508 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3572 +3508 i 887 1 @@ -88386,167 +87828,122 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3566 +3502 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3558 +3509 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -return -887 -1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3573 -this -832279283 -1 -this.begins -265119009 -1 -this.begins[..] -[1] -1 -this.ends -668210649 -1 -this.ends[..] -[1] +3510 +i +22 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3574 -this -832279283 -1 -this.begins -265119009 -1 -this.begins[..] -[1] -1 -this.ends -668210649 +3510 +i +22 1 -this.ends[..] -[1] +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3575 +3511 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3575 +3511 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3576 +3512 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3576 +3512 i -1 +22 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3574 -this -832279283 -1 -this.begins -265119009 -1 -this.begins[..] -[1] -1 -this.ends -668210649 -1 -this.ends[..] -[1] +3513 +i +879 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3577 -this -832279283 -1 -this.begins -265119009 -1 -this.begins[..] -[1] +3513 +i +879 1 -this.ends -668210649 +return 1 -this.ends[..] -[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3578 +3514 i -1 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3578 +3514 i -1 +879 1 return 1 @@ -88554,16 +87951,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3579 +3515 i -1 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3579 +3515 i -1 +887 1 return 1 @@ -88571,121 +87968,146 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3577 +3509 this -832279283 +1412925683 1 this.begins -265119009 +1832580921 1 this.begins[..] -[1] +[22 879] 1 this.ends -668210649 +497359413 1 this.ends[..] -[1] +[868 887] 1 MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3573 +3501 this -832279283 +1412925683 1 this.begins -265119009 +1832580921 1 this.begins[..] -[1] +[22 879] 1 this.ends -668210649 +497359413 1 this.ends[..] -[1] +[868 887] 1 return -1 +22 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -3542 +3516 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -other -832279283 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3517 +this +1412925683 1 -other.begins -265119009 +this.begins +1832580921 1 -other.begins[..] -[1] +this.begins[..] +[22 879] 1 -other.ends -668210649 +this.ends +497359413 1 -other.ends[..] -[1] +this.ends[..] +[868 887] 1 -return -false + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3518 +i +22 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3580 -numbers -863125040 +3518 +i +22 1 -numbers.toString -"1,7" +return +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3581 +3519 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3581 +3519 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3582 +3520 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3582 +3520 i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3521 +i +879 1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3521 +i +879 1 return 1 @@ -88693,16 +88115,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3583 +3522 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3583 +3522 i -7 +879 1 return 1 @@ -88710,103 +88132,122 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3584 +3523 i -7 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3584 +3523 i -7 +887 1 return 1 1 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3517 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3585 +3524 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3586 +3525 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3586 +3525 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3587 +3526 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3587 +3526 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3588 +3527 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3588 +3527 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3589 +3528 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3589 +3528 i -7 +879 1 return 1 @@ -88814,16 +88255,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3590 +3529 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3590 +3529 i -7 +879 1 return 1 @@ -88831,16 +88272,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3591 +3530 i -7 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3591 +3530 i -7 +887 1 return 1 @@ -88848,340 +88289,439 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3585 +3524 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -3580 +3516 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 -numbers -863125040 +return +887 1 -numbers.toString -"1,7" + +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER +this_invocation_nonce +3531 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +o +null +1 +o.getClass().getName() +nonsensical +2 + +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 +this_invocation_nonce +3531 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +o +null +1 +o.getClass().getName() +nonsensical +2 +return +false 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -3592 +3532 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 other -1545087375 +null 1 other.begins -838411509 -1 +nonsensical +2 other.begins[..] -[1 7] -1 +nonsensical +2 other.ends -1434041222 -1 +nonsensical +2 other.ends[..] -[1 7] -1 +nonsensical +2 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT271 this_invocation_nonce -3593 +3532 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +other +null +1 +other.begins +nonsensical +2 +other.begins[..] +nonsensical +2 +other.ends +nonsensical +2 +other.ends[..] +nonsensical +2 +return +false +1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(java.lang.Object):::ENTER this_invocation_nonce -3594 +3533 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3595 -i -22 +o +1412925683 +1 +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -3595 -i -22 +3534 +this +1412925683 1 -return -0 +this.begins +1832580921 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3596 -i -868 +this.begins[..] +[22 879] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3596 -i -868 +this.ends +497359413 1 -return -0 +this.ends[..] +[868 887] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3597 -i -22 +other +1412925683 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3597 -i -22 +other.begins +1832580921 1 -return -0 +other.begins[..] +[22 879] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3598 -i -879 +other.ends +497359413 +1 +other.ends[..] +[868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -3598 -i -879 +3534 +this +1412925683 1 -return +this.begins +1832580921 1 +this.begins[..] +[22 879] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3599 -i -879 +this.ends +497359413 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3599 -i -879 +this.ends[..] +[868 887] 1 -return +other +1412925683 1 +other.begins +1832580921 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3600 -i -887 +other.begins[..] +[22 879] +1 +other.ends +497359413 +1 +other.ends[..] +[868 887] +1 +return +true 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(java.lang.Object):::EXIT266 this_invocation_nonce -3600 -i -887 +3533 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +o +1412925683 1 -return +o.getClass().getName() +"MapQuick1.StreetNumberSet" 1 +return +true 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -3594 +3535 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +other +1412925683 +1 +other.begins +1832580921 +1 +other.begins[..] +[22 879] +1 +other.ends +497359413 +1 +other.ends[..] +[868 887] +1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT272 this_invocation_nonce -3601 +3535 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3602 -i -22 +other +1412925683 +1 +other.begins +1832580921 +1 +other.begins[..] +[22 879] +1 +other.ends +497359413 +1 +other.ends[..] +[868 887] +1 +return +true 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -3602 -i -22 +3536 +numbers +315138752 1 -return -0 +numbers.toString +"1" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3603 +3537 i -868 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3603 +3537 i -868 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3604 +3538 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3604 +3538 i -22 +1 1 return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3605 -i -879 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3605 -i -879 +3539 +this +369241501 1 -return +this.begins +2124046270 +1 +this.begins[..] +[1] +1 +this.ends +1151593579 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3606 +3540 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3606 +3540 i -879 +1 1 return 1 @@ -89189,16 +88729,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3607 +3541 i -887 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3607 +3541 i -887 +1 1 return 1 @@ -89206,59 +88746,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3601 +3539 this -614685048 +369241501 1 this.begins -385337537 +2124046270 1 this.begins[..] -[22 879] +[1] 1 this.ends -789219251 +1151593579 1 this.ends[..] -[868 887] +[1] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -3593 +3536 this -614685048 +369241501 1 this.begins -385337537 +2124046270 +1 +this.begins[..] +[1] +1 +this.ends +1151593579 +1 +this.ends[..] +[1] +1 +numbers +315138752 +1 +numbers.toString +"1" +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER +this_invocation_nonce +3542 +this +1412925683 +1 +this.begins +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -return -22 +other +369241501 +1 +other.begins +2124046270 +1 +other.begins[..] +[1] +1 +other.ends +1151593579 +1 +other.ends[..] +[1] 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3608 +3543 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -89266,18 +88843,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3609 +3544 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -89285,14 +88862,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3610 +3545 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3610 +3545 i 22 1 @@ -89302,14 +88879,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3611 +3546 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3611 +3546 i 868 1 @@ -89319,14 +88896,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3612 +3547 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3612 +3547 i 22 1 @@ -89336,14 +88913,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3613 +3548 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3613 +3548 i 879 1 @@ -89353,14 +88930,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3614 +3549 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3614 +3549 i 879 1 @@ -89370,14 +88947,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3615 +3550 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3615 +3550 i 887 1 @@ -89387,18 +88964,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3609 +3544 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -89406,18 +88983,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3616 +3551 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -89425,14 +89002,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3617 +3552 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3617 +3552 i 22 1 @@ -89442,14 +89019,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3618 +3553 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3618 +3553 i 868 1 @@ -89459,14 +89036,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3619 +3554 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3619 +3554 i 22 1 @@ -89476,14 +89053,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3620 +3555 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3620 +3555 i 879 1 @@ -89493,14 +89070,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3621 +3556 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3621 +3556 i 879 1 @@ -89510,14 +89087,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3622 +3557 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3622 +3557 i 887 1 @@ -89527,146 +89104,146 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3616 +3551 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3608 +3543 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 return -887 +22 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -3623 +3558 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3624 +3559 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3625 +3560 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3625 +3560 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3626 +3561 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3626 +3561 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3627 +3562 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3627 +3562 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3628 +3563 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3628 +3563 i -7 +879 1 return 1 @@ -89674,16 +89251,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3629 +3564 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3629 +3564 i -7 +879 1 return 1 @@ -89691,16 +89268,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3630 +3565 i -7 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3630 +3565 i -7 +887 1 return 1 @@ -89708,105 +89285,105 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3624 +3559 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3631 +3566 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3632 +3567 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3632 +3567 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3633 +3568 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3633 +3568 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3634 +3569 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3634 +3569 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3635 +3570 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3635 +3570 i -7 +879 1 return 1 @@ -89814,16 +89391,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3636 +3571 i -7 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3636 +3571 i -7 +879 1 return 1 @@ -89831,16 +89408,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3637 +3572 i -7 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3637 +3572 i -7 +887 1 return 1 @@ -89848,102 +89425,93 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3631 +3566 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -3623 +3558 this -1545087375 +1412925683 1 this.begins -838411509 +1832580921 1 this.begins[..] -[1 7] +[22 879] 1 this.ends -1434041222 +497359413 1 this.ends[..] -[1 7] +[868 887] 1 return -1 +887 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3592 +3573 this -614685048 +369241501 1 this.begins -385337537 +2124046270 1 this.begins[..] -[22 879] +[1] 1 this.ends -789219251 +1151593579 1 this.ends[..] -[868 887] -1 -other -1545087375 -1 -other.begins -838411509 -1 -other.begins[..] -[1 7] +[1] 1 -other.ends -1434041222 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3574 +this +369241501 1 -other.ends[..] -[1 7] +this.begins +2124046270 1 -return -false +this.begins[..] +[1] 1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -3638 -numbers -1485955886 +this.ends +1151593579 1 -numbers.toString -"1,7,11" +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3639 +3575 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3639 +3575 i 1 1 @@ -89953,14 +89521,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3640 +3576 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3640 +3576 i 1 1 @@ -89968,52 +89536,56 @@ return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3641 -i -7 +3574 +this +369241501 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3641 -i -7 +this.begins +2124046270 1 -return +this.begins[..] +[1] 1 +this.ends +1151593579 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3642 -i -7 +this.ends[..] +[1] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3642 -i -7 +3577 +this +369241501 +1 +this.begins +2124046270 +1 +this.begins[..] +[1] 1 -return +this.ends +1151593579 1 +this.ends[..] +[1] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3643 +3578 i -11 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3643 +3578 i -11 +1 1 return 1 @@ -90021,67 +89593,119 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3644 +3579 i -11 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3644 +3579 i -11 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3645 +3577 this -1375995437 +369241501 1 this.begins -1338841523 +2124046270 1 this.begins[..] -[1 7 11] +[1] 1 this.ends -929776179 +1151593579 1 this.ends[..] -[1 7 11] +[1] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3646 -i +3573 +this +369241501 +1 +this.begins +2124046270 +1 +this.begins[..] +[1] +1 +this.ends +1151593579 +1 +this.ends[..] +[1] +1 +return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -3646 -i +3542 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 +this.ends[..] +[868 887] +1 +other +369241501 +1 +other.begins +2124046270 +1 +other.begins[..] +[1] +1 +other.ends +1151593579 +1 +other.ends[..] +[1] 1 return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +3580 +numbers +1337344609 1 +numbers.toString +"1,7" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3647 +3581 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3647 +3581 i 1 1 @@ -90091,14 +89715,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3648 +3582 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3648 +3582 i 1 1 @@ -90108,14 +89732,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3649 +3583 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3649 +3583 i 7 1 @@ -90125,50 +89749,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3650 +3584 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3650 +3584 i -1 +7 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3651 -i -11 +3585 +this +1902260856 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3651 -i -11 +this.begins +1988859660 1 -return +this.begins[..] +[1 7] +1 +this.ends +1514160588 1 +this.ends[..] +[1 7] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3652 +3586 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3652 +3586 i -7 +1 1 return 1 @@ -90176,16 +89802,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3653 +3587 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3653 +3587 i -7 +1 1 return 1 @@ -90193,16 +89819,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3654 +3588 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3654 +3588 i -7 +1 1 return 1 @@ -90210,16 +89836,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3655 +3589 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3655 +3589 i -11 +7 1 return 1 @@ -90227,16 +89853,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3656 +3590 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3656 +3590 i -11 +7 1 return 1 @@ -90244,16 +89870,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3657 +3591 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3657 +3591 i -11 +7 1 return 1 @@ -90261,96 +89887,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3645 +3585 this -1375995437 +1902260856 1 this.begins -1338841523 +1988859660 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -929776179 +1514160588 1 this.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -3638 +3580 this -1375995437 +1902260856 1 this.begins -1338841523 +1988859660 1 this.begins[..] -[1 7 11] +[1 7] 1 this.ends -929776179 +1514160588 1 this.ends[..] -[1 7 11] +[1 7] 1 numbers -1485955886 +1337344609 1 numbers.toString -"1,7,11" +"1,7" 1 MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -3658 +3592 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 other -1375995437 +1902260856 1 other.begins -1338841523 +1988859660 1 other.begins[..] -[1 7 11] +[1 7] 1 other.ends -929776179 +1514160588 1 other.ends[..] -[1 7 11] +[1 7] 1 MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3659 +3593 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90358,18 +89984,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3660 +3594 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90377,14 +90003,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3661 +3595 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3661 +3595 i 22 1 @@ -90394,14 +90020,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3662 +3596 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3662 +3596 i 868 1 @@ -90411,14 +90037,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3663 +3597 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3663 +3597 i 22 1 @@ -90428,14 +90054,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3664 +3598 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3664 +3598 i 879 1 @@ -90445,14 +90071,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3665 +3599 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3665 +3599 i 879 1 @@ -90462,14 +90088,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3666 +3600 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3666 +3600 i 887 1 @@ -90479,18 +90105,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3660 +3594 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90498,18 +90124,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3667 +3601 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90517,14 +90143,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3668 +3602 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3668 +3602 i 22 1 @@ -90534,14 +90160,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3669 +3603 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3669 +3603 i 868 1 @@ -90551,14 +90177,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3670 +3604 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3670 +3604 i 22 1 @@ -90568,14 +90194,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3671 +3605 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3671 +3605 i 879 1 @@ -90585,14 +90211,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3672 +3606 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3672 +3606 i 879 1 @@ -90602,14 +90228,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3673 +3607 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3673 +3607 i 887 1 @@ -90619,18 +90245,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3667 +3601 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90638,18 +90264,18 @@ this.ends[..] MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3659 +3593 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90660,18 +90286,18 @@ return MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -3674 +3608 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90679,18 +90305,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3675 +3609 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90698,14 +90324,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3676 +3610 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3676 +3610 i 22 1 @@ -90715,14 +90341,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3677 +3611 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3677 +3611 i 868 1 @@ -90732,14 +90358,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3678 +3612 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3678 +3612 i 22 1 @@ -90749,14 +90375,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3679 +3613 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3679 +3613 i 879 1 @@ -90766,14 +90392,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3680 +3614 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3680 +3614 i 879 1 @@ -90783,14 +90409,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3681 +3615 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3681 +3615 i 887 1 @@ -90800,18 +90426,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3675 +3609 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90819,18 +90445,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3682 +3616 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -90838,14 +90464,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3683 +3617 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3683 +3617 i 22 1 @@ -90855,14 +90481,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3684 +3618 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3684 +3618 i 868 1 @@ -90872,33 +90498,214 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3685 +3619 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3685 +3619 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3620 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3620 +i +879 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3621 +i +879 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3621 +i +879 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3622 +i +887 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3622 +i +887 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3616 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.max():::EXIT230 +this_invocation_nonce +3608 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +return +887 +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +3623 +this +1902260856 +1 +this.begins +1988859660 +1 +this.begins[..] +[1 7] +1 +this.ends +1514160588 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3624 +this +1902260856 +1 +this.begins +1988859660 +1 +this.begins[..] +[1 7] +1 +this.ends +1514160588 +1 +this.ends[..] +[1 7] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3625 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3625 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3626 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3626 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3627 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3627 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3686 +3628 i -879 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3686 +3628 i -879 +7 1 return 1 @@ -90906,16 +90713,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3687 +3629 i -879 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3687 +3629 i -879 +7 1 return 1 @@ -90923,16 +90730,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3688 +3630 i -887 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3688 +3630 i -887 +7 1 return 1 @@ -90940,93 +90747,69 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3682 +3624 this -614685048 +1902260856 1 this.begins -385337537 +1988859660 1 this.begins[..] -[22 879] +[1 7] 1 this.ends -789219251 +1514160588 1 this.ends[..] -[868 887] +[1 7] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3674 +3631 this -614685048 +1902260856 1 this.begins -385337537 +1988859660 1 this.begins[..] -[22 879] +[1 7] 1 this.ends -789219251 +1514160588 1 this.ends[..] -[868 887] -1 -return -887 +[1 7] 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3689 -this -1375995437 -1 -this.begins -1338841523 -1 -this.begins[..] -[1 7 11] -1 -this.ends -929776179 +3632 +i 1 -this.ends[..] -[1 7 11] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3690 -this -1375995437 -1 -this.begins -1338841523 +3632 +i 1 -this.begins[..] -[1 7 11] 1 -this.ends -929776179 +return 1 -this.ends[..] -[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3691 +3633 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3691 +3633 i 1 1 @@ -91036,14 +90819,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3692 +3634 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3692 +3634 i 1 1 @@ -91053,16 +90836,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3693 +3635 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3693 +3635 i -1 +7 1 return 1 @@ -91070,14 +90853,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3694 +3636 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3694 +3636 i 7 1 @@ -91087,50 +90870,121 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3695 +3637 i -1 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3695 +3637 i -1 +7 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3696 -i -11 +3631 +this +1902260856 +1 +this.begins +1988859660 +1 +this.begins[..] +[1 7] +1 +this.ends +1514160588 +1 +this.ends[..] +[1 7] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3696 -i -11 +3623 +this +1902260856 +1 +this.begins +1988859660 +1 +this.begins[..] +[1 7] +1 +this.ends +1514160588 +1 +this.ends[..] +[1 7] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +this_invocation_nonce +3592 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +other +1902260856 +1 +other.begins +1988859660 +1 +other.begins[..] +[1 7] +1 +other.ends +1514160588 +1 +other.ends[..] +[1 7] 1 return +false +1 + +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER +this_invocation_nonce +3638 +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3697 +3639 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3697 +3639 i -7 +1 1 return 1 @@ -91138,16 +90992,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3698 +3640 i -7 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3698 +3640 i -7 +1 1 return 1 @@ -91155,14 +91009,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3699 +3641 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3699 +3641 i 7 1 @@ -91172,16 +91026,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3700 +3642 i -11 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3700 +3642 i -11 +7 1 return 1 @@ -91189,14 +91043,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3701 +3643 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3701 +3643 i 11 1 @@ -91206,14 +91060,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3702 +3644 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3702 +3644 i 11 1 @@ -91221,39 +91075,20 @@ return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3690 -this -1375995437 -1 -this.begins -1338841523 -1 -this.begins[..] -[1 7 11] -1 -this.ends -929776179 -1 -this.ends[..] -[1 7 11] -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3703 +3645 this -1375995437 +22756955 1 this.begins -1338841523 +1640639994 1 this.begins[..] [1 7 11] 1 this.ends -929776179 +1263793464 1 this.ends[..] [1 7 11] @@ -91261,14 +91096,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3704 +3646 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3704 +3646 i 1 1 @@ -91278,14 +91113,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3705 +3647 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3705 +3647 i 1 1 @@ -91295,14 +91130,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3706 +3648 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3706 +3648 i 1 1 @@ -91312,14 +91147,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3707 +3649 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3707 +3649 i 7 1 @@ -91329,14 +91164,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3708 +3650 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3708 +3650 i 1 1 @@ -91346,14 +91181,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3709 +3651 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3709 +3651 i 11 1 @@ -91363,14 +91198,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3710 +3652 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3710 +3652 i 7 1 @@ -91380,14 +91215,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3711 +3653 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3711 +3653 i 7 1 @@ -91397,14 +91232,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3712 +3654 i 7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3712 +3654 i 7 1 @@ -91414,14 +91249,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3713 +3655 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3713 +3655 i 11 1 @@ -91431,14 +91266,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3714 +3656 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3714 +3656 i 11 1 @@ -91448,14 +91283,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3715 +3657 i 11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3715 +3657 i 11 1 @@ -91465,270 +91300,96 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3703 +3645 this -1375995437 +22756955 1 this.begins -1338841523 +1640639994 1 this.begins[..] [1 7 11] 1 this.ends -929776179 +1263793464 1 this.ends[..] [1 7 11] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -3689 +3638 this -1375995437 +22756955 1 this.begins -1338841523 +1640639994 1 this.begins[..] [1 7 11] 1 this.ends -929776179 +1263793464 1 this.ends[..] [1 7 11] 1 -return +numbers +1682463303 1 +numbers.toString +"1,7,11" 1 -MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce 3658 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 other -1375995437 +22756955 1 other.begins -1338841523 +1640639994 1 other.begins[..] [1 7 11] 1 other.ends -929776179 +1263793464 1 other.ends[..] [1 7 11] 1 -return -false -1 - -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER -this_invocation_nonce -3716 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -other -614685048 -1 -other.begins -385337537 -1 -other.begins[..] -[22 879] -1 -other.ends -789219251 -1 -other.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -3717 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3718 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3718 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3719 -i -868 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3719 -i -868 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3720 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3720 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3721 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3721 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3722 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3722 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3723 -i -887 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3723 -i -887 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3717 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3724 +3659 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -91736,18 +91397,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3725 +3660 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -91755,14 +91416,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3726 +3661 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3726 +3661 i 22 1 @@ -91772,14 +91433,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3727 +3662 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3727 +3662 i 868 1 @@ -91789,14 +91450,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3728 +3663 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3728 +3663 i 22 1 @@ -91806,14 +91467,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3729 +3664 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3729 +3664 i 879 1 @@ -91823,14 +91484,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3730 +3665 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3730 +3665 i 879 1 @@ -91840,14 +91501,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3731 +3666 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3731 +3666 i 887 1 @@ -91857,59 +91518,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3725 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 -this_invocation_nonce -3724 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -false -1 - -MapQuick1.StreetNumberSet.isEmpty():::ENTER -this_invocation_nonce -3732 +3660 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -91917,18 +91537,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3733 +3667 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -91936,14 +91556,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3734 +3668 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3734 +3668 i 22 1 @@ -91953,14 +91573,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3735 +3669 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3735 +3669 i 868 1 @@ -91970,14 +91590,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3736 +3670 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3736 +3670 i 22 1 @@ -91987,14 +91607,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3737 +3671 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3737 +3671 i 879 1 @@ -92004,14 +91624,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3738 +3672 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3738 +3672 i 879 1 @@ -92021,14 +91641,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3739 +3673 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3739 +3673 i 887 1 @@ -92038,59 +91658,59 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3733 +3667 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3732 +3659 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 return -false +22 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -3740 +3674 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -92098,18 +91718,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3741 +3675 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -92117,14 +91737,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3742 +3676 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3742 +3676 i 22 1 @@ -92134,14 +91754,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3743 +3677 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3743 +3677 i 868 1 @@ -92151,14 +91771,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3744 +3678 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3744 +3678 i 22 1 @@ -92168,14 +91788,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3745 +3679 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3745 +3679 i 879 1 @@ -92185,14 +91805,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3746 +3680 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3746 +3680 i 879 1 @@ -92202,14 +91822,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3747 +3681 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3747 +3681 i 887 1 @@ -92219,18 +91839,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3741 +3675 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -92238,18 +91858,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3748 +3682 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -92257,14 +91877,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3749 +3683 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3749 +3683 i 22 1 @@ -92274,14 +91894,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3750 +3684 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3750 +3684 i 868 1 @@ -92291,14 +91911,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3751 +3685 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3751 +3685 i 22 1 @@ -92308,14 +91928,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3752 +3686 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3752 +3686 i 879 1 @@ -92325,14 +91945,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3753 +3687 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3753 +3687 i 879 1 @@ -92342,14 +91962,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3754 +3688 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3754 +3688 i 887 1 @@ -92359,146 +91979,146 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3748 +3682 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -3740 +3674 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 return -22 +887 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3755 +3689 this -614685048 +22756955 1 this.begins -385337537 +1640639994 1 this.begins[..] -[22 879] +[1 7 11] 1 this.ends -789219251 +1263793464 1 this.ends[..] -[868 887] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3756 +3690 this -614685048 +22756955 1 this.begins -385337537 +1640639994 1 this.begins[..] -[22 879] +[1 7 11] 1 this.ends -789219251 +1263793464 1 this.ends[..] -[868 887] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3757 +3691 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3757 +3691 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3758 +3692 i -868 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3758 +3692 i -868 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3759 +3693 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3759 +3693 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3760 +3694 i -879 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3760 +3694 i -879 +7 1 return 1 @@ -92506,16 +92126,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3761 +3695 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3761 +3695 i -879 +1 1 return 1 @@ -92523,122 +92143,84 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3762 +3696 i -887 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3762 +3696 i -887 +11 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3756 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -3763 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3764 +3697 i -22 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3764 +3697 i -22 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3765 +3698 i -868 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3765 +3698 i -868 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3766 +3699 i -22 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3766 +3699 i -22 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3767 +3700 i -879 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3767 +3700 i -879 +11 1 return 1 @@ -92646,16 +92228,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3768 +3701 i -879 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3768 +3701 i -879 +11 1 return 1 @@ -92663,16 +92245,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3769 +3702 i -887 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3769 +3702 i -887 +11 1 return 1 @@ -92680,146 +92262,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3763 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.max():::EXIT230 -this_invocation_nonce -3755 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -return -887 -1 - -MapQuick1.StreetNumberSet.min():::ENTER -this_invocation_nonce -3770 +3690 this -614685048 +22756955 1 this.begins -385337537 +1640639994 1 this.begins[..] -[22 879] +[1 7 11] 1 this.ends -789219251 +1263793464 1 this.ends[..] -[868 887] +[1 7 11] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3771 +3703 this -614685048 +22756955 1 this.begins -385337537 +1640639994 1 this.begins[..] -[22 879] +[1 7 11] 1 this.ends -789219251 +1263793464 1 this.ends[..] -[868 887] +[1 7 11] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3772 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3772 +3704 i -22 1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3773 -i -868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3773 +3704 i -868 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3774 +3705 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3774 +3705 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3775 +3706 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3775 +3706 i -879 +1 1 return 1 @@ -92827,16 +92351,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3776 +3707 i -879 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3776 +3707 i -879 +7 1 return 1 @@ -92844,122 +92368,101 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3777 +3708 i -887 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3777 +3708 i -887 +1 1 return 1 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3771 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +3709 +i +11 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -3778 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3709 +i +11 1 -this.ends -789219251 +return 1 -this.ends[..] -[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3779 +3710 i -22 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3779 +3710 i -22 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3780 +3711 i -868 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3780 +3711 i -868 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3781 +3712 i -22 +7 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3781 +3712 i -22 +7 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3782 +3713 i -879 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3782 +3713 i -879 +11 1 return 1 @@ -92967,16 +92470,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3783 +3714 i -879 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3783 +3714 i -879 +11 1 return 1 @@ -92984,16 +92487,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3784 +3715 i -887 +11 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3784 +3715 i -887 +11 1 return 1 @@ -93001,218 +92504,130 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3778 +3703 this -614685048 +22756955 1 this.begins -385337537 +1640639994 1 this.begins[..] -[22 879] +[1 7 11] 1 this.ends -789219251 +1263793464 1 this.ends[..] -[868 887] +[1 7 11] 1 MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3770 +3689 this -614685048 +22756955 1 this.begins -385337537 +1640639994 1 this.begins[..] -[22 879] +[1 7 11] 1 this.ends -789219251 +1263793464 1 this.ends[..] -[868 887] +[1 7 11] 1 return -22 -1 - -MapQuick1.StreetNumberSet.max():::ENTER -this_invocation_nonce -3785 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] 1 -this.ends -789219251 -1 -this.ends[..] -[868 887] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.equals(MapQuick1.StreetNumberSet):::EXIT281 this_invocation_nonce -3786 +3658 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3787 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3787 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3788 -i -868 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3788 -i -868 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3789 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3789 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3790 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3790 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3791 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3791 -i -879 +other +22756955 1 -return +other.begins +1640639994 1 +other.begins[..] +[1 7 11] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3792 -i -887 +other.ends +1263793464 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3792 -i -887 +other.ends[..] +[1 7 11] 1 return -1 +false 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -3786 +3716 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +other +1412925683 +1 +other.begins +1832580921 +1 +other.begins[..] +[22 879] +1 +other.ends +497359413 +1 +other.ends[..] +[868 887] +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3793 +3717 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -93220,14 +92635,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3794 +3718 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3794 +3718 i 22 1 @@ -93237,14 +92652,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3795 +3719 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3795 +3719 i 868 1 @@ -93254,14 +92669,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3796 +3720 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3796 +3720 i 22 1 @@ -93271,14 +92686,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3797 +3721 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3797 +3721 i 879 1 @@ -93288,14 +92703,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3798 +3722 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3798 +3722 i 879 1 @@ -93305,14 +92720,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3799 +3723 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3799 +3723 i 887 1 @@ -93322,81 +92737,56 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3793 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.max():::EXIT230 -this_invocation_nonce -3785 +3717 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -return -887 -1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -3800 +3724 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3801 +3725 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -93404,14 +92794,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3802 +3726 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3802 +3726 i 22 1 @@ -93421,14 +92811,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3803 +3727 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3803 +3727 i 868 1 @@ -93438,14 +92828,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3804 +3728 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3804 +3728 i 22 1 @@ -93455,14 +92845,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3805 +3729 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3805 +3729 i 879 1 @@ -93472,14 +92862,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3806 +3730 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3806 +3730 i 879 1 @@ -93489,14 +92879,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3807 +3731 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3807 +3731 i 887 1 @@ -93506,71 +92896,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3801 +3725 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -3808 -i -22 +3724 +this +1412925683 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3808 -i -22 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 return -0 +false 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -3809 -i -22 +3732 +this +1412925683 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3809 -i -22 +this.begins +1832580921 1 -return -0 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3810 +3733 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -93578,14 +92975,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3811 +3734 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3811 +3734 i 22 1 @@ -93595,14 +92992,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3812 +3735 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3812 +3735 i 868 1 @@ -93612,14 +93009,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3813 +3736 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3813 +3736 i 22 1 @@ -93629,14 +93026,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3814 +3737 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3814 +3737 i 879 1 @@ -93646,14 +93043,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3815 +3738 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3815 +3738 i 879 1 @@ -93663,14 +93060,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3816 +3739 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3816 +3739 i 887 1 @@ -93680,84 +93077,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3810 +3733 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -3800 +3732 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 return -true +false 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3817 +3740 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3818 +3741 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -93765,14 +93156,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3819 +3742 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3819 +3742 i 22 1 @@ -93782,14 +93173,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3820 +3743 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3820 +3743 i 868 1 @@ -93799,14 +93190,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3821 +3744 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3821 +3744 i 22 1 @@ -93816,14 +93207,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3822 +3745 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3822 +3745 i 879 1 @@ -93833,105 +93224,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3823 +3746 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3823 +3746 i 879 1 return 1 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3824 -i -887 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3824 -i -887 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3818 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3825 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3825 -i -22 -1 -return -0 -1 +1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3826 +3747 i -22 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3826 +3747 i -22 +887 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3741 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3827 +3748 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -93939,14 +93296,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3828 +3749 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3828 +3749 i 22 1 @@ -93956,14 +93313,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3829 +3750 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3829 +3750 i 868 1 @@ -93973,14 +93330,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3830 +3751 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3830 +3751 i 22 1 @@ -93990,14 +93347,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3831 +3752 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3831 +3752 i 879 1 @@ -94007,14 +93364,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3832 +3753 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3832 +3753 i 879 1 @@ -94024,14 +93381,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3833 +3754 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3833 +3754 i 887 1 @@ -94041,62 +93398,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3827 +3748 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3817 +3740 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n +return 22 1 -return -true + +MapQuick1.StreetNumberSet.max():::ENTER +this_invocation_nonce +3755 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3834 +3756 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -94104,14 +93477,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3835 +3757 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3835 +3757 i 22 1 @@ -94121,14 +93494,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3836 +3758 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3836 +3758 i 868 1 @@ -94138,14 +93511,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3837 +3759 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3837 +3759 i 22 1 @@ -94155,14 +93528,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3838 +3760 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3838 +3760 i 879 1 @@ -94172,14 +93545,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3839 +3761 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3839 +3761 i 879 1 @@ -94189,14 +93562,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3840 +3762 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3840 +3762 i 887 1 @@ -94206,116 +93579,88 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3834 +3756 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3716 +3763 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -other -614685048 -1 -other.begins -385337537 -1 -other.begins[..] -[22 879] -1 -other.ends -789219251 -1 -other.ends[..] -[868 887] -1 -return -true -1 - -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER -this_invocation_nonce -3841 -numbers -603856241 -1 -numbers.toString -"1,100,10" -1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3842 +3764 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3842 +3764 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3843 +3765 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3843 +3765 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3844 +3766 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3844 +3766 i -100 +22 1 return 0 @@ -94323,154 +93668,214 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3845 +3767 i -100 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3845 +3767 i -100 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3846 +3768 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3846 +3768 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3847 +3769 i -10 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3847 +3769 i -10 +887 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3763 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.max():::EXIT230 +this_invocation_nonce +3755 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +return +887 +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +3770 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3848 +3771 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3849 +3772 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3849 +3772 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3850 +3773 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3850 +3773 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3851 +3774 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3851 +3774 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3852 +3775 i -100 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3852 +3775 i -100 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3853 +3776 i -1 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3853 +3776 i -1 +879 1 return 1 @@ -94478,33 +93883,71 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3854 +3777 i -10 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3854 +3777 i -10 +887 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3771 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3778 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3855 +3779 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3855 +3779 i -100 +22 1 return 0 @@ -94512,16 +93955,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3856 +3780 i -100 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3856 +3780 i -100 +868 1 return 0 @@ -94529,16 +93972,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3857 +3781 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3857 +3781 i -100 +22 1 return 0 @@ -94546,147 +93989,129 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3858 +3782 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3858 +3782 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3859 +3783 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3859 +3783 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3860 +3784 i -10 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3860 +3784 i -10 +887 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3848 +3778 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 -MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3841 +3770 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] -1 -numbers -603856241 +[868 887] 1 -numbers.toString -"1,100,10" +return +22 1 -MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -3861 +3785 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -other -802581203 -1 -other.begins -1561408618 -1 -other.begins[..] -[1 100 10] -1 -other.ends -2050404090 -1 -other.ends[..] -[1 100 10] -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3862 +3786 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -94694,14 +94119,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3863 +3787 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3863 +3787 i 22 1 @@ -94711,14 +94136,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3864 +3788 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3864 +3788 i 868 1 @@ -94728,14 +94153,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3865 +3789 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3865 +3789 i 22 1 @@ -94745,14 +94170,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3866 +3790 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3866 +3790 i 879 1 @@ -94762,14 +94187,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3867 +3791 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3867 +3791 i 879 1 @@ -94779,54 +94204,35 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3868 +3792 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3868 +3792 i 887 1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -3862 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 +return 1 -this.ends[..] -[868 887] 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3869 +3786 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -94834,18 +94240,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3870 +3793 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -94853,14 +94259,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3871 +3794 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3871 +3794 i 22 1 @@ -94870,14 +94276,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3872 +3795 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3872 +3795 i 868 1 @@ -94887,14 +94293,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3873 +3796 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3873 +3796 i 22 1 @@ -94904,14 +94310,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3874 +3797 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3874 +3797 i 879 1 @@ -94921,14 +94327,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3875 +3798 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3875 +3798 i 879 1 @@ -94938,14 +94344,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3876 +3799 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3876 +3799 i 887 1 @@ -94955,129 +94361,149 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3870 +3793 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -3869 +3785 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 return -false +887 1 -MapQuick1.StreetNumberSet.isEmpty():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3877 +3800 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] +1 +n +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3878 +3801 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3879 +3802 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3879 +3802 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3880 +3803 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3880 +3803 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3881 +3804 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3881 +3804 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3805 i +879 1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3805 +i +879 1 return 1 @@ -95085,50 +94511,69 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3882 +3806 i -100 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3882 +3806 i -100 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3883 +3807 i -1 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3883 +3807 i -1 +887 1 return 1 1 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3801 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3884 +3808 i -10 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3884 +3808 i -10 +22 1 return 0 @@ -95136,33 +94581,52 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3885 +3809 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3885 +3809 i -100 +22 1 return 0 1 +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3810 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3886 +3811 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3886 +3811 i -100 +22 1 return 0 @@ -95170,16 +94634,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3887 +3812 i -100 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3887 +3812 i -100 +868 1 return 0 @@ -95187,16 +94651,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3888 +3813 i -10 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3888 +3813 i -10 +22 1 return 0 @@ -95204,112 +94668,135 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3889 +3814 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3889 +3814 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3890 +3815 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3890 +3815 i -10 +879 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3816 +i +887 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3816 +i +887 +1 +return +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3878 +3810 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 -MapQuick1.StreetNumberSet.isEmpty():::EXIT190 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3877 +3800 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] +1 +n +22 1 return -false +true 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -3891 +3817 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +n +22 +1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3892 +3818 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -95317,14 +94804,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3893 +3819 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3893 +3819 i 22 1 @@ -95334,14 +94821,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3894 +3820 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3894 +3820 i 868 1 @@ -95351,14 +94838,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3895 +3821 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3895 +3821 i 22 1 @@ -95368,14 +94855,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3896 +3822 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3896 +3822 i 879 1 @@ -95385,14 +94872,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3897 +3823 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3897 +3823 i 879 1 @@ -95402,14 +94889,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3898 +3824 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3898 +3824 i 887 1 @@ -95419,37 +94906,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3892 +3818 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3825 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3825 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3826 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3826 +i +22 +1 +return +0 +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3899 +3827 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -95457,14 +94978,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3900 +3828 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3900 +3828 i 22 1 @@ -95474,14 +94995,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3901 +3829 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3901 +3829 i 868 1 @@ -95491,14 +95012,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3902 +3830 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3902 +3830 i 22 1 @@ -95508,14 +95029,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3903 +3831 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3903 +3831 i 879 1 @@ -95525,14 +95046,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3904 +3832 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3904 +3832 i 879 1 @@ -95542,14 +95063,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3905 +3833 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3905 +3833 i 887 1 @@ -95559,78 +95080,62 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3899 +3827 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -3891 +3817 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -return +n 22 1 - -MapQuick1.StreetNumberSet.max():::ENTER -this_invocation_nonce -3906 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +return +true 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3907 +3834 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -95638,14 +95143,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3908 +3835 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3908 +3835 i 22 1 @@ -95655,14 +95160,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3909 +3836 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3909 +3836 i 868 1 @@ -95672,14 +95177,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3910 +3837 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3910 +3837 i 22 1 @@ -95689,14 +95194,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3911 +3838 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3911 +3838 i 879 1 @@ -95706,14 +95211,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3912 +3839 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3912 +3839 i 879 1 @@ -95723,14 +95228,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3913 +3840 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3913 +3840 i 887 1 @@ -95740,105 +95245,99 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3907 +3834 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::EXIT253 this_invocation_nonce -3914 +3716 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3915 -i -22 +other +1412925683 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3915 -i -22 +other.begins +1832580921 1 -return -0 +other.begins[..] +[22 879] 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3916 -i -868 +other.ends +497359413 +1 +other.ends[..] +[868 887] +1 +return +true 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::ENTER this_invocation_nonce -3916 -i -868 +3841 +numbers +1414147750 1 -return -0 +numbers.toString +"1,100,10" 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3917 +3842 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3917 +3842 i -22 +1 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3918 +3843 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3918 +3843 i -879 +1 1 return 1 @@ -95846,112 +95345,86 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3919 +3844 i -879 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3919 +3844 i -879 +100 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3920 +3845 i -887 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3920 +3845 i -887 +100 1 return -1 +0 1 -MapQuick1.StreetNumberSet.checkRep():::EXIT104 +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3914 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +3846 +i +10 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3906 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +3846 +i +10 1 return -887 +0 1 -MapQuick1.StreetNumberSet.min():::ENTER +MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3921 -this -802581203 -1 -this.begins -1561408618 -1 -this.begins[..] -[1 100 10] +3847 +i +10 1 -this.ends -2050404090 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3847 +i +10 1 -this.ends[..] -[1 100 10] +return +0 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3922 +3848 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -95959,14 +95432,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3923 +3849 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3923 +3849 i 1 1 @@ -95976,14 +95449,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3924 +3850 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3924 +3850 i 1 1 @@ -95993,14 +95466,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3925 +3851 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3925 +3851 i 1 1 @@ -96010,14 +95483,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3926 +3852 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3926 +3852 i 100 1 @@ -96027,14 +95500,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3927 +3853 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3927 +3853 i 1 1 @@ -96044,14 +95517,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3928 +3854 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3928 +3854 i 10 1 @@ -96061,14 +95534,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3929 +3855 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3929 +3855 i 100 1 @@ -96078,14 +95551,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3930 +3856 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3930 +3856 i 100 1 @@ -96095,14 +95568,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3931 +3857 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3931 +3857 i 100 1 @@ -96112,14 +95585,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3932 +3858 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3932 +3858 i 10 1 @@ -96129,14 +95602,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3933 +3859 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3933 +3859 i 10 1 @@ -96146,14 +95619,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3934 +3860 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3934 +3860 i 10 1 @@ -96163,105 +95636,147 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3922 +3848 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.StreetNumberSet(java.lang.String):::EXIT68 this_invocation_nonce -3935 +3841 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 +numbers +1414147750 +1 +numbers.toString +"1,100,10" +1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.intersects(MapQuick1.StreetNumberSet):::ENTER this_invocation_nonce -3936 -i +3861 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 +other +323326911 +1 +other.begins +1270144618 +1 +other.begins[..] +[1 100 10] 1 +other.ends +2074185499 +1 +other.ends[..] +[1 100 10] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3936 -i +3862 +this +1412925683 1 +this.begins +1832580921 1 -return +this.begins[..] +[22 879] +1 +this.ends +497359413 1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3937 +3863 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3937 +3863 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3938 +3864 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3938 +3864 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3939 +3865 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3939 +3865 i -100 +22 1 return 0 @@ -96269,16 +95784,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3940 +3866 i -1 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3940 +3866 +i +879 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3867 i +879 1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3867 +i +879 1 return 1 @@ -96286,33 +95818,90 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3941 +3868 i -10 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3941 +3868 i -10 +887 1 return -0 +1 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3862 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.isEmpty():::ENTER +this_invocation_nonce +3869 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3870 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3942 +3871 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3942 +3871 i -100 +22 1 return 0 @@ -96320,16 +95909,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3943 +3872 i -100 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3943 +3872 i -100 +868 1 return 0 @@ -96337,16 +95926,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3944 +3873 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3944 +3873 i -100 +22 1 return 0 @@ -96354,110 +95943,110 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3945 +3874 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3945 +3874 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3946 +3875 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3946 +3875 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3947 +3876 i -10 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3947 +3876 i -10 +887 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3935 +3870 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 -MapQuick1.StreetNumberSet.min():::EXIT210 +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -3921 +3869 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 return -1 +false 1 -MapQuick1.StreetNumberSet.max():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::ENTER this_invocation_nonce -3948 +3877 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -96465,18 +96054,18 @@ this.ends[..] MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3949 +3878 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -96484,14 +96073,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3950 +3879 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3950 +3879 i 1 1 @@ -96501,14 +96090,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3951 +3880 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3951 +3880 i 1 1 @@ -96518,14 +96107,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3952 +3881 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3952 +3881 i 1 1 @@ -96535,14 +96124,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3953 +3882 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3953 +3882 i 100 1 @@ -96552,14 +96141,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3954 +3883 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3954 +3883 i 1 1 @@ -96569,14 +96158,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3955 +3884 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3955 +3884 i 10 1 @@ -96586,14 +96175,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3956 +3885 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3956 +3885 i 100 1 @@ -96603,14 +96192,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3957 +3886 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3957 +3886 i 100 1 @@ -96620,14 +96209,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3958 +3887 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3958 +3887 i 100 1 @@ -96637,14 +96226,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3959 +3888 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3959 +3888 i 10 1 @@ -96654,14 +96243,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3960 +3889 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3960 +3889 i 10 1 @@ -96671,14 +96260,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3961 +3890 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3961 +3890 i 10 1 @@ -96688,88 +96277,146 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3949 +3878 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.checkRep():::ENTER +MapQuick1.StreetNumberSet.isEmpty():::EXIT190 this_invocation_nonce -3962 +3877 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 +return +false +1 + +MapQuick1.StreetNumberSet.min():::ENTER +this_invocation_nonce +3891 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3892 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] +1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3963 +3893 +i +22 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3893 +i +22 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3894 i -1 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3963 +3894 i -1 +868 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3964 +3895 i -1 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3964 +3895 i -1 +22 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3965 +3896 i -1 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3965 +3896 i -1 +879 1 return 1 @@ -96777,67 +96424,88 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3966 +3897 i -100 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3966 +3897 i -100 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3967 +3898 i -1 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3967 +3898 i -1 +887 1 return 1 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER +MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3968 -i -10 +3892 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3968 -i -10 +3899 +this +1412925683 1 -return -0 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 +1 +this.ends[..] +[868 887] 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3969 +3900 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3969 +3900 i -100 +22 1 return 0 @@ -96845,16 +96513,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3970 +3901 i -100 +868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3970 +3901 i -100 +868 1 return 0 @@ -96862,16 +96530,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3971 +3902 i -100 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3971 +3902 i -100 +22 1 return 0 @@ -96879,132 +96547,129 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3972 +3903 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3972 +3903 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3973 +3904 i -10 +879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3973 +3904 i -10 +879 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3974 +3905 i -10 +887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3974 +3905 i -10 +887 1 return -0 +1 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3962 +3899 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 -MapQuick1.StreetNumberSet.max():::EXIT230 +MapQuick1.StreetNumberSet.min():::EXIT210 this_invocation_nonce -3948 +3891 this -802581203 +1412925683 1 this.begins -1561408618 +1832580921 1 this.begins[..] -[1 100 10] +[22 879] 1 this.ends -2050404090 +497359413 1 this.ends[..] -[1 100 10] +[868 887] 1 return -100 +22 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.max():::ENTER this_invocation_nonce -3975 +3906 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3976 +3907 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -97012,14 +96677,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3977 +3908 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3977 +3908 i 22 1 @@ -97029,14 +96694,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3978 +3909 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3978 +3909 i 868 1 @@ -97046,14 +96711,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3979 +3910 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3979 +3910 i 22 1 @@ -97063,14 +96728,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3980 +3911 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3980 +3911 i 879 1 @@ -97080,14 +96745,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3981 +3912 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3981 +3912 i 879 1 @@ -97097,14 +96762,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3982 +3913 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3982 +3913 i 887 1 @@ -97114,71 +96779,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3976 +3907 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3983 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3983 -i -22 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -3984 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -3984 -i -22 -1 -return -0 -1 - MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3985 +3914 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -97186,14 +96817,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3986 +3915 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3986 +3915 i 22 1 @@ -97203,14 +96834,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3987 +3916 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3987 +3916 i 868 1 @@ -97220,14 +96851,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3988 +3917 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3988 +3917 i 22 1 @@ -97237,14 +96868,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3989 +3918 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3989 +3918 i 879 1 @@ -97254,14 +96885,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3990 +3919 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3990 +3919 i 879 1 @@ -97271,14 +96902,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3991 +3920 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3991 +3920 i 887 1 @@ -97288,84 +96919,78 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3985 +3914 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT118 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -3975 +3906 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 -n -22 -1 return -true +887 1 -MapQuick1.StreetNumberSet.contains(int):::ENTER +MapQuick1.StreetNumberSet.min():::ENTER this_invocation_nonce -3992 +3921 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 -n -22 -1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3993 +3922 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -97373,14 +96998,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3994 +3923 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3994 +3923 i 1 1 @@ -97390,14 +97015,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3995 +3924 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3995 +3924 i 1 1 @@ -97407,14 +97032,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3996 +3925 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3996 +3925 i 1 1 @@ -97424,14 +97049,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3997 +3926 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3997 +3926 i 100 1 @@ -97441,14 +97066,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3998 +3927 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3998 +3927 i 1 1 @@ -97458,14 +97083,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -3999 +3928 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -3999 +3928 i 10 1 @@ -97475,14 +97100,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4000 +3929 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4000 +3929 i 100 1 @@ -97492,14 +97117,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4001 +3930 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4001 +3930 i 100 1 @@ -97509,14 +97134,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4002 +3931 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4002 +3931 i 100 1 @@ -97526,14 +97151,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4003 +3932 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4003 +3932 i 10 1 @@ -97543,14 +97168,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4004 +3933 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4004 +3933 i 10 1 @@ -97560,14 +97185,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4005 +3934 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4005 +3934 i 10 1 @@ -97577,18 +97202,37 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -3993 +3922 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 +1 +this.ends[..] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +3935 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 1 this.ends[..] [1 100 10] @@ -97596,16 +97240,67 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4006 +3936 i -22 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4006 +3936 i -22 +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3937 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3937 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3938 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3938 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3939 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3939 +i +100 1 return 0 @@ -97613,33 +97308,118 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4007 +3940 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4007 +3940 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3941 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3941 +i +10 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3942 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3942 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3943 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3943 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3944 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3944 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +3945 i +10 1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +3945 +i +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4008 +3946 i -100 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4008 +3946 i -100 +10 1 return 0 @@ -97647,14 +97427,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4009 +3947 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4009 +3947 i 10 1 @@ -97662,20 +97442,80 @@ return 0 1 +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +3935 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 +1 +this.ends[..] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.min():::EXIT210 +this_invocation_nonce +3921 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 +1 +this.ends[..] +[1 100 10] +1 +return +1 +1 + +MapQuick1.StreetNumberSet.max():::ENTER +this_invocation_nonce +3948 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 +1 +this.ends[..] +[1 100 10] +1 + MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4010 +3949 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -97683,14 +97523,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4011 +3950 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4011 +3950 i 1 1 @@ -97700,14 +97540,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4012 +3951 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4012 +3951 i 1 1 @@ -97717,14 +97557,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4013 +3952 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4013 +3952 i 1 1 @@ -97734,14 +97574,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4014 +3953 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4014 +3953 i 100 1 @@ -97751,14 +97591,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4015 +3954 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4015 +3954 i 1 1 @@ -97768,14 +97608,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4016 +3955 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4016 +3955 i 10 1 @@ -97785,14 +97625,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4017 +3956 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4017 +3956 i 100 1 @@ -97802,14 +97642,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4018 +3957 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4018 +3957 i 100 1 @@ -97819,14 +97659,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4019 +3958 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4019 +3958 i 100 1 @@ -97836,14 +97676,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4020 +3959 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4020 +3959 i 10 1 @@ -97853,14 +97693,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4021 +3960 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4021 +3960 i 10 1 @@ -97870,14 +97710,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4022 +3961 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4022 +3961 i 10 1 @@ -97887,152 +97727,71 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4010 +3949 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -3992 +3962 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 -n -22 -1 -return -false -1 - -MapQuick1.StreetNumberSet.contains(int):::ENTER -this_invocation_nonce -4023 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 -n -23 -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -4024 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4025 -i -22 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -4025 +3963 i -22 -1 -return -0 1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -4026 -i -868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4026 -i -868 -1 -return -0 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -4027 +3963 i -22 1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -4027 -i -22 1 return -0 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4028 +3964 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4028 +3964 i -879 +1 1 return 1 @@ -98040,16 +97799,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4029 +3965 i -879 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4029 +3965 i -879 +1 1 return 1 @@ -98057,52 +97816,33 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4030 +3966 i -887 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4030 +3966 i -887 +100 1 return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::EXIT104 -this_invocation_nonce -4024 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4031 +3967 i -23 +1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4031 +3967 i -23 +1 1 return 1 @@ -98110,16 +97850,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4032 +3968 i -22 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4032 +3968 i -22 +10 1 return 0 @@ -98127,52 +97867,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4033 -i -879 -1 - -MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 -this_invocation_nonce -4033 -i -879 -1 -return -1 -1 - -MapQuick1.StreetNumberSet.checkRep():::ENTER -this_invocation_nonce -4034 -this -614685048 -1 -this.begins -385337537 -1 -this.begins[..] -[22 879] -1 -this.ends -789219251 -1 -this.ends[..] -[868 887] -1 - -MapQuick1.StreetNumberSet.parityOf(int):::ENTER -this_invocation_nonce -4035 +3969 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4035 +3969 i -22 +100 1 return 0 @@ -98180,16 +97884,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4036 +3970 i -868 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4036 +3970 i -868 +100 1 return 0 @@ -98197,16 +97901,16 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4037 +3971 i -22 +100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4037 +3971 i -22 +100 1 return 0 @@ -98214,135 +97918,132 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4038 +3972 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4038 +3972 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4039 +3973 i -879 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4039 +3973 i -879 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4040 +3974 i -887 +10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4040 +3974 i -887 +10 1 return -1 +0 1 MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4034 +3962 this -614685048 +323326911 1 this.begins -385337537 +1270144618 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +2074185499 1 this.ends[..] -[868 887] +[1 100 10] 1 -MapQuick1.StreetNumberSet.contains(int):::EXIT123 +MapQuick1.StreetNumberSet.max():::EXIT230 this_invocation_nonce -4023 +3948 this -614685048 +323326911 1 this.begins -385337537 +1270144618 1 this.begins[..] -[22 879] +[1 100 10] 1 this.ends -789219251 +2074185499 1 this.ends[..] -[868 887] -1 -n -23 +[1 100 10] 1 return -false +100 1 MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -4041 +3975 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -24 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4042 +3976 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -98350,14 +98051,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4043 +3977 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4043 +3977 i 22 1 @@ -98367,14 +98068,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4044 +3978 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4044 +3978 i 868 1 @@ -98384,14 +98085,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4045 +3979 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4045 +3979 i 22 1 @@ -98401,14 +98102,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4046 +3980 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4046 +3980 i 879 1 @@ -98418,14 +98119,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4047 +3981 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4047 +3981 i 879 1 @@ -98435,14 +98136,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4048 +3982 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4048 +3982 i 887 1 @@ -98452,18 +98153,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4042 +3976 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -98471,16 +98172,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4049 +3983 i -24 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4049 +3983 i -24 +22 1 return 0 @@ -98488,14 +98189,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4050 +3984 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4050 +3984 i 22 1 @@ -98505,18 +98206,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4051 +3985 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -98524,14 +98225,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4052 +3986 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4052 +3986 i 22 1 @@ -98541,14 +98242,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4053 +3987 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4053 +3987 i 868 1 @@ -98558,14 +98259,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4054 +3988 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4054 +3988 i 22 1 @@ -98575,14 +98276,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4055 +3989 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4055 +3989 i 879 1 @@ -98592,14 +98293,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4056 +3990 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4056 +3990 i 879 1 @@ -98609,14 +98310,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4057 +3991 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4057 +3991 i 887 1 @@ -98626,18 +98327,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4051 +3985 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -98645,24 +98346,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT118 this_invocation_nonce -4041 +3975 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -24 +22 1 return true @@ -98670,40 +98371,40 @@ true MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -4058 +3992 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 n -24 +22 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4059 +3993 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -98711,14 +98412,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4060 +3994 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4060 +3994 i 1 1 @@ -98728,14 +98429,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4061 +3995 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4061 +3995 i 1 1 @@ -98745,14 +98446,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4062 +3996 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4062 +3996 i 1 1 @@ -98762,14 +98463,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4063 +3997 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4063 +3997 i 100 1 @@ -98779,14 +98480,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4064 +3998 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4064 +3998 i 1 1 @@ -98796,14 +98497,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4065 +3999 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4065 +3999 i 10 1 @@ -98813,14 +98514,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4066 +4000 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4066 +4000 i 100 1 @@ -98830,14 +98531,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4067 +4001 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4067 +4001 i 100 1 @@ -98847,14 +98548,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4068 +4002 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4068 +4002 i 100 1 @@ -98864,14 +98565,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4069 +4003 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4069 +4003 i 10 1 @@ -98881,14 +98582,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4070 +4004 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4070 +4004 i 10 1 @@ -98898,14 +98599,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4071 +4005 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4071 +4005 i 10 1 @@ -98915,18 +98616,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4059 +3993 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -98934,16 +98635,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4072 +4006 i -24 +22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4072 +4006 i -24 +22 1 return 0 @@ -98951,14 +98652,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4073 +4007 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4073 +4007 i 1 1 @@ -98968,14 +98669,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4074 +4008 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4074 +4008 i 100 1 @@ -98985,14 +98686,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4075 +4009 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4075 +4009 i 10 1 @@ -99002,18 +98703,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4076 +4010 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -99021,14 +98722,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4077 +4011 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4077 +4011 i 1 1 @@ -99038,14 +98739,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4078 +4012 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4078 +4012 i 1 1 @@ -99055,14 +98756,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4079 +4013 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4079 +4013 i 1 1 @@ -99072,14 +98773,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4080 +4014 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4080 +4014 i 100 1 @@ -99089,14 +98790,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4081 +4015 i 1 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4081 +4015 i 1 1 @@ -99106,14 +98807,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4082 +4016 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4082 +4016 i 10 1 @@ -99123,14 +98824,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4083 +4017 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4083 +4017 i 100 1 @@ -99140,14 +98841,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4084 +4018 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4084 +4018 i 100 1 @@ -99157,14 +98858,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4085 +4019 i 100 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4085 +4019 i 100 1 @@ -99174,14 +98875,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4086 +4020 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4086 +4020 i 10 1 @@ -99191,14 +98892,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4087 +4021 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4087 +4021 i 10 1 @@ -99208,14 +98909,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4088 +4022 i 10 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4088 +4022 i 10 1 @@ -99225,18 +98926,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4076 +4010 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] @@ -99244,24 +98945,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -4058 +3992 this -802581203 +323326911 1 this.begins -1561408618 +1270144618 1 this.begins[..] [1 100 10] 1 this.ends -2050404090 +2074185499 1 this.ends[..] [1 100 10] 1 n -24 +22 1 return false @@ -99269,40 +98970,40 @@ false MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -4089 +4023 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -25 +23 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4090 +4024 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99310,14 +99011,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4091 +4025 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4091 +4025 i 22 1 @@ -99327,14 +99028,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4092 +4026 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4092 +4026 i 868 1 @@ -99344,14 +99045,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4093 +4027 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4093 +4027 i 22 1 @@ -99361,14 +99062,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4094 +4028 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4094 +4028 i 879 1 @@ -99378,14 +99079,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4095 +4029 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4095 +4029 i 879 1 @@ -99395,14 +99096,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4096 +4030 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4096 +4030 i 887 1 @@ -99412,18 +99113,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4090 +4024 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99431,16 +99132,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4097 +4031 i -25 +23 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4097 +4031 i -25 +23 1 return 1 @@ -99448,14 +99149,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4098 +4032 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4098 +4032 i 22 1 @@ -99465,14 +99166,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4099 +4033 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4099 +4033 i 879 1 @@ -99482,18 +99183,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4100 +4034 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99501,14 +99202,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4101 +4035 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4101 +4035 i 22 1 @@ -99518,14 +99219,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4102 +4036 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4102 +4036 i 868 1 @@ -99535,14 +99236,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4103 +4037 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4103 +4037 i 22 1 @@ -99552,14 +99253,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4104 +4038 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4104 +4038 i 879 1 @@ -99569,14 +99270,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4105 +4039 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4105 +4039 i 879 1 @@ -99586,14 +99287,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4106 +4040 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4106 +4040 i 887 1 @@ -99603,18 +99304,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4100 +4034 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99622,24 +99323,24 @@ this.ends[..] MapQuick1.StreetNumberSet.contains(int):::EXIT123 this_invocation_nonce -4089 +4023 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -25 +23 1 return false @@ -99647,40 +99348,40 @@ false MapQuick1.StreetNumberSet.contains(int):::ENTER this_invocation_nonce -4107 +4041 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] 1 n -26 +24 1 MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4108 +4042 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99688,14 +99389,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4109 +4043 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4109 +4043 i 22 1 @@ -99705,14 +99406,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4110 +4044 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4110 +4044 i 868 1 @@ -99722,14 +99423,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4111 +4045 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4111 +4045 i 22 1 @@ -99739,14 +99440,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4112 +4046 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4112 +4046 i 879 1 @@ -99756,14 +99457,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4113 +4047 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4113 +4047 i 879 1 @@ -99773,14 +99474,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4114 +4048 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4114 +4048 i 887 1 @@ -99790,18 +99491,18 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4108 +4042 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99809,16 +99510,16 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4115 +4049 i -26 +24 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4115 +4049 i -26 +24 1 return 0 @@ -99826,14 +99527,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4116 +4050 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4116 +4050 i 22 1 @@ -99843,18 +99544,18 @@ return MapQuick1.StreetNumberSet.checkRep():::ENTER this_invocation_nonce -4117 +4051 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 1 this.ends[..] [868 887] @@ -99862,14 +99563,14 @@ this.ends[..] MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4118 +4052 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4118 +4052 i 22 1 @@ -99879,14 +99580,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4119 +4053 i 868 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4119 +4053 i 868 1 @@ -99896,14 +99597,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4120 +4054 i 22 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4120 +4054 i 22 1 @@ -99913,14 +99614,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4121 +4055 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4121 +4055 i 879 1 @@ -99930,14 +99631,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4122 +4056 i 879 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4122 +4056 i 879 1 @@ -99947,14 +99648,14 @@ return MapQuick1.StreetNumberSet.parityOf(int):::ENTER this_invocation_nonce -4123 +4057 i 887 1 MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 this_invocation_nonce -4123 +4057 i 887 1 @@ -99964,20 +99665,333 @@ return MapQuick1.StreetNumberSet.checkRep():::EXIT104 this_invocation_nonce -4117 +4051 this -614685048 +1412925683 1 this.begins -385337537 +1832580921 1 this.begins[..] [22 879] 1 this.ends -789219251 +497359413 +1 +this.ends[..] +[868 887] +1 + +MapQuick1.StreetNumberSet.contains(int):::EXIT118 +this_invocation_nonce +4041 +this +1412925683 +1 +this.begins +1832580921 +1 +this.begins[..] +[22 879] +1 +this.ends +497359413 1 this.ends[..] [868 887] 1 +n +24 +1 +return +true +1 + +MapQuick1.StreetNumberSet.contains(int):::ENTER +this_invocation_nonce +4058 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 +1 +this.ends[..] +[1 100 10] +1 +n +24 +1 + +MapQuick1.StreetNumberSet.checkRep():::ENTER +this_invocation_nonce +4059 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 +1 +this.ends[..] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4060 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4060 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4061 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4061 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4062 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4062 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4063 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4063 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4064 +i +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4064 +i +1 +1 +return +1 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4065 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4065 +i +10 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4066 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4066 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4067 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4067 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4068 +i +100 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4068 +i +100 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4069 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4069 +i +10 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4070 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4070 +i +10 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4071 +i +10 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4071 +i +10 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.checkRep():::EXIT104 +this_invocation_nonce +4059 +this +323326911 +1 +this.begins +1270144618 +1 +this.begins[..] +[1 100 10] +1 +this.ends +2074185499 +1 +this.ends[..] +[1 100 10] +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4072 +i +24 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::EXIT72 +this_invocation_nonce +4072 +i +24 +1 +return +0 +1 + +MapQuick1.StreetNumberSet.parityOf(int):::ENTER +this_invocation_nonce +4073 +i +1 +1 diff --git a/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-jaif.goal b/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-jaif.goal index d8d17dfc16..a075743021 100644 --- a/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-jaif.goal +++ b/tests/daikon-tests/StreetNumberSet/StreetNumberSet.txt-jaif.goal @@ -6,38 +6,71 @@ package MapQuick1: class StreetNumberSet : // 41796/- obj/class samples field begins : // int[] field ends : // int[] + method parityOf(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // i method parityOf(I)I : // 176250 samples - return: + return: parameter #0 : // i + method (Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // numbers method (Ljava/lang/String;)V : // 242 samples - return: + return: parameter #0 : // numbers + method checkRep()V throws Ljava/lang/Throwable; : // 0 samples + return: method checkRep()V : // 13526 samples - return: + return: + method contains(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n method contains(I)Z : // 2171 samples - return: + return: parameter #0 : // n + method equals(LMapQuick1/StreetNumberSet;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // other method equals(LMapQuick1/StreetNumberSet;)Z : // 364 samples - return: - parameter #0 : @Nullable // other + return: + parameter #0 : @Nullable // other + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // o method equals(Ljava/lang/Object;)Z : // 89 samples - return: - parameter #0 : @Nullable // o + return: + parameter #0 : @Nullable // o + method hashCode()V throws Ljava/lang/Throwable; : // 0 samples + return: method hashCode()I : // 2 samples - return: + return: + method intersects(LMapQuick1/StreetNumberSet;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // other method intersects(LMapQuick1/StreetNumberSet;)Z : // 135 samples - return: + return: parameter #0 : // other + method isEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method isEmpty()Z : // 308 samples - return: + return: + method max()V throws Ljava/lang/Throwable; : // 0 samples + return: method max()I : // 606 samples - return: + return: + method min()V throws Ljava/lang/Throwable; : // 0 samples + return: method min()I : // 770 samples - return: + return: + method orderStatistic(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // n method orderStatistic(I)I : // 1384 samples - return: + return: parameter #0 : // n + method size()V throws Ljava/lang/Throwable; : // 0 samples + return: method size()I : // 1422 samples - return: + return: diff --git a/tests/daikon-tests/TinySet/TinySet.txt-chicory.goal b/tests/daikon-tests/TinySet/TinySet.txt-chicory.goal index ae8f45ce97..569d543b12 100644 --- a/tests/daikon-tests/TinySet/TinySet.txt-chicory.goal +++ b/tests/daikon-tests/TinySet/TinySet.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for six170.TinySet -// Declarations written Thu Jun 04 13:23:45 PDT 2015 +// Declarations written Mon Jul 31 13:15:48 PDT 2017 decl-version 2.0 var-comparability none @@ -11,10 +11,10 @@ ppt six170.TinySet.TinySet():::EXIT25 ppt-type subexit parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -25,14 +25,44 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 +ppt six170.TinySet.TinySet():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.TinySet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt six170.TinySet.add(int):::ENTER ppt-type enter parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -43,7 +73,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -53,11 +83,35 @@ ppt six170.TinySet.add(int):::EXIT33 ppt-type subexit parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt six170.TinySet.add(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.TinySet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits var-kind field bits @@ -67,20 +121,32 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.TinySet.remove(int):::ENTER ppt-type enter parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -91,7 +157,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -101,11 +167,35 @@ ppt six170.TinySet.remove(int):::EXIT41 ppt-type subexit parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int flags is_param comparability 22 + +ppt six170.TinySet.remove(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.TinySet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits var-kind field bits @@ -115,20 +205,32 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.TinySet.contains(int):::ENTER ppt-type enter parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -139,7 +241,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -149,10 +251,10 @@ ppt six170.TinySet.contains(int):::EXIT48 ppt-type subexit parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -163,25 +265,61 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable n - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable return - var-kind return + var-kind return dec-type boolean rep-type boolean comparability 22 +ppt six170.TinySet.contains(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.TinySet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable n + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + ppt six170.TinySet.intersect(six170.TinySet):::ENTER ppt-type enter parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -192,7 +330,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode flags is_param @@ -208,11 +346,41 @@ ppt six170.TinySet.intersect(six170.TinySet):::EXIT58 ppt-type subexit parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable other + var-kind variable dec-type six170.TinySet rep-type hashcode flags is_param comparability 22 +variable other.bits + var-kind field bits + enclosing-var other + dec-type int + rep-type int + comparability 22 + +ppt six170.TinySet.intersect(six170.TinySet):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.TinySet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits var-kind field bits @@ -222,7 +390,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode flags is_param @@ -233,15 +401,27 @@ variable other.bits dec-type int rep-type int comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.TinySet.union(six170.TinySet):::ENTER ppt-type enter parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits @@ -252,7 +432,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode flags is_param @@ -268,11 +448,41 @@ ppt six170.TinySet.union(six170.TinySet):::EXIT67 ppt-type subexit parent parent six170.TinySet:::OBJECT 1 variable this - var-kind variable + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable this.bits + var-kind field bits + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent six170.TinySet:::OBJECT 1 +variable other + var-kind variable dec-type six170.TinySet rep-type hashcode flags is_param comparability 22 +variable other.bits + var-kind field bits + enclosing-var other + dec-type int + rep-type int + comparability 22 + +ppt six170.TinySet.union(six170.TinySet):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent six170.TinySet:::OBJECT 1 +variable this + var-kind variable + dec-type six170.TinySet + rep-type hashcode + flags is_param non_null + comparability 22 parent six170.TinySet:::OBJECT 1 variable this.bits var-kind field bits @@ -282,7 +492,7 @@ variable this.bits comparability 22 parent six170.TinySet:::OBJECT 1 variable other - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode flags is_param @@ -293,14 +503,26 @@ variable other.bits dec-type int rep-type int comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 ppt six170.TinySet:::OBJECT ppt-type object variable this - var-kind variable + var-kind variable dec-type six170.TinySet rep-type hashcode - flags is_param + flags is_param non_null comparability 22 variable this.bits var-kind field bits @@ -317,7 +539,7 @@ six170.TinySet.TinySet():::EXIT25 this_invocation_nonce 0 this -1926788825 +532445947 1 this.bits 0 @@ -327,7 +549,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1 this -1926788825 +532445947 1 this.bits 0 @@ -340,7 +562,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1 this -1926788825 +532445947 1 this.bits 0 @@ -356,7 +578,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2 this -1926788825 +532445947 1 this.bits 0 @@ -369,7 +591,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2 this -1926788825 +532445947 1 this.bits 0 @@ -385,7 +607,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3 this -1926788825 +532445947 1 this.bits 0 @@ -398,7 +620,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3 this -1926788825 +532445947 1 this.bits 0 @@ -414,7 +636,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 4 this -1926788825 +532445947 1 this.bits 0 @@ -427,7 +649,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 4 this -1926788825 +532445947 1 this.bits 0 @@ -443,7 +665,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 5 this -1926788825 +532445947 1 this.bits 0 @@ -456,7 +678,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 5 this -1926788825 +532445947 1 this.bits 0 @@ -472,7 +694,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 6 this -1926788825 +532445947 1 this.bits 0 @@ -485,7 +707,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 6 this -1926788825 +532445947 1 this.bits 0 @@ -501,7 +723,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 7 this -1926788825 +532445947 1 this.bits 0 @@ -514,7 +736,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 7 this -1926788825 +532445947 1 this.bits 0 @@ -530,7 +752,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 8 this -1926788825 +532445947 1 this.bits 0 @@ -543,7 +765,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 8 this -1926788825 +532445947 1 this.bits 0 @@ -559,7 +781,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 9 this -1926788825 +532445947 1 this.bits 0 @@ -572,7 +794,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 9 this -1926788825 +532445947 1 this.bits 0 @@ -588,7 +810,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 10 this -1926788825 +532445947 1 this.bits 0 @@ -601,7 +823,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 10 this -1926788825 +532445947 1 this.bits 0 @@ -617,7 +839,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 11 this -1926788825 +532445947 1 this.bits 0 @@ -630,7 +852,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 11 this -1926788825 +532445947 1 this.bits 0 @@ -646,7 +868,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 12 this -1926788825 +532445947 1 this.bits 0 @@ -659,7 +881,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 12 this -1926788825 +532445947 1 this.bits 0 @@ -675,7 +897,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 13 this -1926788825 +532445947 1 this.bits 0 @@ -688,7 +910,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 13 this -1926788825 +532445947 1 this.bits 0 @@ -704,7 +926,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 14 this -1926788825 +532445947 1 this.bits 0 @@ -717,7 +939,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 14 this -1926788825 +532445947 1 this.bits 0 @@ -733,7 +955,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 15 this -1926788825 +532445947 1 this.bits 0 @@ -746,7 +968,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 15 this -1926788825 +532445947 1 this.bits 0 @@ -762,7 +984,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 16 this -1926788825 +532445947 1 this.bits 0 @@ -775,7 +997,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 16 this -1926788825 +532445947 1 this.bits 0 @@ -791,7 +1013,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 17 this -1926788825 +532445947 1 this.bits 0 @@ -804,7 +1026,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 17 this -1926788825 +532445947 1 this.bits 128 @@ -817,7 +1039,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 18 this -1926788825 +532445947 1 this.bits 128 @@ -830,7 +1052,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 18 this -1926788825 +532445947 1 this.bits 128 @@ -846,7 +1068,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 19 this -1926788825 +532445947 1 this.bits 128 @@ -859,7 +1081,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 19 this -1926788825 +532445947 1 this.bits 128 @@ -875,7 +1097,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 20 this -1926788825 +532445947 1 this.bits 128 @@ -888,7 +1110,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 20 this -1926788825 +532445947 1 this.bits 128 @@ -904,7 +1126,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 21 this -1926788825 +532445947 1 this.bits 128 @@ -917,7 +1139,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 21 this -1926788825 +532445947 1 this.bits 128 @@ -933,7 +1155,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 22 this -1926788825 +532445947 1 this.bits 128 @@ -946,7 +1168,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 22 this -1926788825 +532445947 1 this.bits 128 @@ -962,7 +1184,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 23 this -1926788825 +532445947 1 this.bits 128 @@ -975,7 +1197,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 23 this -1926788825 +532445947 1 this.bits 128 @@ -991,7 +1213,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 24 this -1926788825 +532445947 1 this.bits 128 @@ -1004,7 +1226,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 24 this -1926788825 +532445947 1 this.bits 128 @@ -1020,7 +1242,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 25 this -1926788825 +532445947 1 this.bits 128 @@ -1033,7 +1255,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 25 this -1926788825 +532445947 1 this.bits 128 @@ -1049,7 +1271,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 26 this -1926788825 +532445947 1 this.bits 128 @@ -1062,7 +1284,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 26 this -1926788825 +532445947 1 this.bits 0 @@ -1075,7 +1297,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 27 this -1926788825 +532445947 1 this.bits 0 @@ -1088,7 +1310,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 27 this -1926788825 +532445947 1 this.bits 0 @@ -1104,7 +1326,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 28 this -1926788825 +532445947 1 this.bits 0 @@ -1117,7 +1339,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 28 this -1926788825 +532445947 1 this.bits 0 @@ -1133,7 +1355,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 29 this -1926788825 +532445947 1 this.bits 0 @@ -1146,7 +1368,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 29 this -1926788825 +532445947 1 this.bits 0 @@ -1162,7 +1384,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 30 this -1926788825 +532445947 1 this.bits 0 @@ -1175,7 +1397,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 30 this -1926788825 +532445947 1 this.bits 0 @@ -1191,7 +1413,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 31 this -1926788825 +532445947 1 this.bits 0 @@ -1204,7 +1426,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 31 this -1926788825 +532445947 1 this.bits 0 @@ -1220,7 +1442,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 32 this -1926788825 +532445947 1 this.bits 0 @@ -1233,7 +1455,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 32 this -1926788825 +532445947 1 this.bits 0 @@ -1249,7 +1471,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 33 this -1926788825 +532445947 1 this.bits 0 @@ -1262,7 +1484,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 33 this -1926788825 +532445947 1 this.bits 0 @@ -1278,7 +1500,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 34 this -1926788825 +532445947 1 this.bits 0 @@ -1291,7 +1513,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 34 this -1926788825 +532445947 1 this.bits 0 @@ -1307,7 +1529,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 35 this -1926788825 +532445947 1 this.bits 0 @@ -1320,7 +1542,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 35 this -1926788825 +532445947 1 this.bits 128 @@ -1333,7 +1555,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 36 this -1926788825 +532445947 1 this.bits 128 @@ -1346,7 +1568,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 36 this -1926788825 +532445947 1 this.bits 128 @@ -1362,7 +1584,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 37 this -1926788825 +532445947 1 this.bits 128 @@ -1375,7 +1597,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 37 this -1926788825 +532445947 1 this.bits 128 @@ -1391,7 +1613,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 38 this -1926788825 +532445947 1 this.bits 128 @@ -1404,7 +1626,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 38 this -1926788825 +532445947 1 this.bits 128 @@ -1420,7 +1642,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 39 this -1926788825 +532445947 1 this.bits 128 @@ -1433,7 +1655,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 39 this -1926788825 +532445947 1 this.bits 128 @@ -1449,7 +1671,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 40 this -1926788825 +532445947 1 this.bits 128 @@ -1462,7 +1684,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 40 this -1926788825 +532445947 1 this.bits 128 @@ -1478,7 +1700,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 41 this -1926788825 +532445947 1 this.bits 128 @@ -1491,7 +1713,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 41 this -1926788825 +532445947 1 this.bits 128 @@ -1507,7 +1729,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 42 this -1926788825 +532445947 1 this.bits 128 @@ -1520,7 +1742,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 42 this -1926788825 +532445947 1 this.bits 128 @@ -1536,7 +1758,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 43 this -1926788825 +532445947 1 this.bits 128 @@ -1549,7 +1771,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 43 this -1926788825 +532445947 1 this.bits 128 @@ -1565,7 +1787,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 44 this -1926788825 +532445947 1 this.bits 128 @@ -1578,7 +1800,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 44 this -1926788825 +532445947 1 this.bits 0 @@ -1591,7 +1813,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 45 this -1926788825 +532445947 1 this.bits 0 @@ -1604,7 +1826,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 45 this -1926788825 +532445947 1 this.bits 0 @@ -1620,7 +1842,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 46 this -1926788825 +532445947 1 this.bits 0 @@ -1633,7 +1855,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 46 this -1926788825 +532445947 1 this.bits 0 @@ -1649,7 +1871,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 47 this -1926788825 +532445947 1 this.bits 0 @@ -1662,7 +1884,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 47 this -1926788825 +532445947 1 this.bits 0 @@ -1678,7 +1900,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 48 this -1926788825 +532445947 1 this.bits 0 @@ -1691,7 +1913,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 48 this -1926788825 +532445947 1 this.bits 0 @@ -1707,7 +1929,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 49 this -1926788825 +532445947 1 this.bits 0 @@ -1720,7 +1942,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 49 this -1926788825 +532445947 1 this.bits 0 @@ -1736,7 +1958,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 50 this -1926788825 +532445947 1 this.bits 0 @@ -1749,7 +1971,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 50 this -1926788825 +532445947 1 this.bits 0 @@ -1765,7 +1987,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 51 this -1926788825 +532445947 1 this.bits 0 @@ -1778,7 +2000,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 51 this -1926788825 +532445947 1 this.bits 0 @@ -1794,7 +2016,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 52 this -1926788825 +532445947 1 this.bits 0 @@ -1807,7 +2029,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 52 this -1926788825 +532445947 1 this.bits 0 @@ -1823,7 +2045,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 53 this -1926788825 +532445947 1 this.bits 0 @@ -1836,7 +2058,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 53 this -1926788825 +532445947 1 this.bits 1 @@ -1849,7 +2071,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 54 this -1926788825 +532445947 1 this.bits 1 @@ -1862,7 +2084,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 54 this -1926788825 +532445947 1 this.bits 1 @@ -1878,7 +2100,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 55 this -1926788825 +532445947 1 this.bits 1 @@ -1891,7 +2113,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 55 this -1926788825 +532445947 1 this.bits 1 @@ -1907,7 +2129,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 56 this -1926788825 +532445947 1 this.bits 1 @@ -1920,7 +2142,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 56 this -1926788825 +532445947 1 this.bits 1 @@ -1936,7 +2158,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 57 this -1926788825 +532445947 1 this.bits 1 @@ -1949,7 +2171,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 57 this -1926788825 +532445947 1 this.bits 1 @@ -1965,7 +2187,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 58 this -1926788825 +532445947 1 this.bits 1 @@ -1978,7 +2200,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 58 this -1926788825 +532445947 1 this.bits 1 @@ -1994,7 +2216,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 59 this -1926788825 +532445947 1 this.bits 1 @@ -2007,7 +2229,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 59 this -1926788825 +532445947 1 this.bits 1 @@ -2023,7 +2245,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 60 this -1926788825 +532445947 1 this.bits 1 @@ -2036,7 +2258,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 60 this -1926788825 +532445947 1 this.bits 1 @@ -2052,7 +2274,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 61 this -1926788825 +532445947 1 this.bits 1 @@ -2065,7 +2287,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 61 this -1926788825 +532445947 1 this.bits 1 @@ -2081,7 +2303,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 62 this -1926788825 +532445947 1 this.bits 1 @@ -2094,7 +2316,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 62 this -1926788825 +532445947 1 this.bits 0 @@ -2107,7 +2329,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 63 this -1926788825 +532445947 1 this.bits 0 @@ -2120,7 +2342,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 63 this -1926788825 +532445947 1 this.bits 0 @@ -2136,7 +2358,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 64 this -1926788825 +532445947 1 this.bits 0 @@ -2149,7 +2371,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 64 this -1926788825 +532445947 1 this.bits 0 @@ -2165,7 +2387,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 65 this -1926788825 +532445947 1 this.bits 0 @@ -2178,7 +2400,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 65 this -1926788825 +532445947 1 this.bits 0 @@ -2194,7 +2416,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 66 this -1926788825 +532445947 1 this.bits 0 @@ -2207,7 +2429,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 66 this -1926788825 +532445947 1 this.bits 0 @@ -2223,7 +2445,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 67 this -1926788825 +532445947 1 this.bits 0 @@ -2236,7 +2458,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 67 this -1926788825 +532445947 1 this.bits 0 @@ -2252,7 +2474,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 68 this -1926788825 +532445947 1 this.bits 0 @@ -2265,7 +2487,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 68 this -1926788825 +532445947 1 this.bits 0 @@ -2281,7 +2503,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 69 this -1926788825 +532445947 1 this.bits 0 @@ -2294,7 +2516,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 69 this -1926788825 +532445947 1 this.bits 0 @@ -2310,7 +2532,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 70 this -1926788825 +532445947 1 this.bits 0 @@ -2323,7 +2545,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 70 this -1926788825 +532445947 1 this.bits 0 @@ -2339,7 +2561,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 71 this -1926788825 +532445947 1 this.bits 0 @@ -2352,7 +2574,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 71 this -1926788825 +532445947 1 this.bits 1 @@ -2365,7 +2587,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 72 this -1926788825 +532445947 1 this.bits 1 @@ -2378,7 +2600,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 72 this -1926788825 +532445947 1 this.bits 1 @@ -2394,7 +2616,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 73 this -1926788825 +532445947 1 this.bits 1 @@ -2407,7 +2629,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 73 this -1926788825 +532445947 1 this.bits 1 @@ -2423,7 +2645,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 74 this -1926788825 +532445947 1 this.bits 1 @@ -2436,7 +2658,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 74 this -1926788825 +532445947 1 this.bits 1 @@ -2452,7 +2674,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 75 this -1926788825 +532445947 1 this.bits 1 @@ -2465,7 +2687,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 75 this -1926788825 +532445947 1 this.bits 1 @@ -2481,7 +2703,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 76 this -1926788825 +532445947 1 this.bits 1 @@ -2494,7 +2716,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 76 this -1926788825 +532445947 1 this.bits 1 @@ -2510,7 +2732,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 77 this -1926788825 +532445947 1 this.bits 1 @@ -2523,7 +2745,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 77 this -1926788825 +532445947 1 this.bits 1 @@ -2539,7 +2761,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 78 this -1926788825 +532445947 1 this.bits 1 @@ -2552,7 +2774,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 78 this -1926788825 +532445947 1 this.bits 1 @@ -2568,7 +2790,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 79 this -1926788825 +532445947 1 this.bits 1 @@ -2581,7 +2803,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 79 this -1926788825 +532445947 1 this.bits 1 @@ -2597,7 +2819,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 80 this -1926788825 +532445947 1 this.bits 1 @@ -2610,7 +2832,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 80 this -1926788825 +532445947 1 this.bits 0 @@ -2623,7 +2845,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 81 this -1926788825 +532445947 1 this.bits 0 @@ -2636,7 +2858,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 81 this -1926788825 +532445947 1 this.bits 0 @@ -2652,7 +2874,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 82 this -1926788825 +532445947 1 this.bits 0 @@ -2665,7 +2887,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 82 this -1926788825 +532445947 1 this.bits 0 @@ -2681,7 +2903,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 83 this -1926788825 +532445947 1 this.bits 0 @@ -2694,7 +2916,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 83 this -1926788825 +532445947 1 this.bits 0 @@ -2710,7 +2932,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 84 this -1926788825 +532445947 1 this.bits 0 @@ -2723,7 +2945,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 84 this -1926788825 +532445947 1 this.bits 0 @@ -2739,7 +2961,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 85 this -1926788825 +532445947 1 this.bits 0 @@ -2752,7 +2974,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 85 this -1926788825 +532445947 1 this.bits 0 @@ -2768,7 +2990,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 86 this -1926788825 +532445947 1 this.bits 0 @@ -2781,7 +3003,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 86 this -1926788825 +532445947 1 this.bits 0 @@ -2797,7 +3019,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 87 this -1926788825 +532445947 1 this.bits 0 @@ -2810,7 +3032,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 87 this -1926788825 +532445947 1 this.bits 0 @@ -2826,7 +3048,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 88 this -1926788825 +532445947 1 this.bits 0 @@ -2839,7 +3061,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 88 this -1926788825 +532445947 1 this.bits 0 @@ -2855,7 +3077,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 89 this -1926788825 +532445947 1 this.bits 0 @@ -2868,7 +3090,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 89 this -1926788825 +532445947 1 this.bits 1 @@ -2881,7 +3103,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 90 this -1926788825 +532445947 1 this.bits 1 @@ -2894,7 +3116,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 90 this -1926788825 +532445947 1 this.bits 1 @@ -2910,7 +3132,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 91 this -1926788825 +532445947 1 this.bits 1 @@ -2923,7 +3145,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 91 this -1926788825 +532445947 1 this.bits 1 @@ -2939,7 +3161,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 92 this -1926788825 +532445947 1 this.bits 1 @@ -2952,7 +3174,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 92 this -1926788825 +532445947 1 this.bits 1 @@ -2968,7 +3190,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 93 this -1926788825 +532445947 1 this.bits 1 @@ -2981,7 +3203,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 93 this -1926788825 +532445947 1 this.bits 1 @@ -2997,7 +3219,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 94 this -1926788825 +532445947 1 this.bits 1 @@ -3010,7 +3232,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 94 this -1926788825 +532445947 1 this.bits 1 @@ -3026,7 +3248,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 95 this -1926788825 +532445947 1 this.bits 1 @@ -3039,7 +3261,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 95 this -1926788825 +532445947 1 this.bits 1 @@ -3055,7 +3277,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 96 this -1926788825 +532445947 1 this.bits 1 @@ -3068,7 +3290,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 96 this -1926788825 +532445947 1 this.bits 1 @@ -3084,7 +3306,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 97 this -1926788825 +532445947 1 this.bits 1 @@ -3097,7 +3319,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 97 this -1926788825 +532445947 1 this.bits 1 @@ -3113,7 +3335,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 98 this -1926788825 +532445947 1 this.bits 1 @@ -3126,7 +3348,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 98 this -1926788825 +532445947 1 this.bits 0 @@ -3139,7 +3361,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 99 this -1926788825 +532445947 1 this.bits 0 @@ -3152,7 +3374,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 99 this -1926788825 +532445947 1 this.bits 0 @@ -3168,7 +3390,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 100 this -1926788825 +532445947 1 this.bits 0 @@ -3181,7 +3403,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 100 this -1926788825 +532445947 1 this.bits 0 @@ -3197,7 +3419,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 101 this -1926788825 +532445947 1 this.bits 0 @@ -3210,7 +3432,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 101 this -1926788825 +532445947 1 this.bits 0 @@ -3226,7 +3448,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 102 this -1926788825 +532445947 1 this.bits 0 @@ -3239,7 +3461,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 102 this -1926788825 +532445947 1 this.bits 0 @@ -3255,7 +3477,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 103 this -1926788825 +532445947 1 this.bits 0 @@ -3268,7 +3490,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 103 this -1926788825 +532445947 1 this.bits 0 @@ -3284,7 +3506,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 104 this -1926788825 +532445947 1 this.bits 0 @@ -3297,7 +3519,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 104 this -1926788825 +532445947 1 this.bits 0 @@ -3313,7 +3535,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 105 this -1926788825 +532445947 1 this.bits 0 @@ -3326,7 +3548,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 105 this -1926788825 +532445947 1 this.bits 0 @@ -3342,7 +3564,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 106 this -1926788825 +532445947 1 this.bits 0 @@ -3355,7 +3577,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 106 this -1926788825 +532445947 1 this.bits 0 @@ -3371,7 +3593,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 107 this -1926788825 +532445947 1 this.bits 0 @@ -3384,7 +3606,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 107 this -1926788825 +532445947 1 this.bits 4 @@ -3397,7 +3619,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 108 this -1926788825 +532445947 1 this.bits 4 @@ -3410,7 +3632,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 108 this -1926788825 +532445947 1 this.bits 4 @@ -3426,7 +3648,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 109 this -1926788825 +532445947 1 this.bits 4 @@ -3439,7 +3661,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 109 this -1926788825 +532445947 1 this.bits 4 @@ -3455,7 +3677,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 110 this -1926788825 +532445947 1 this.bits 4 @@ -3468,7 +3690,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 110 this -1926788825 +532445947 1 this.bits 4 @@ -3484,7 +3706,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 111 this -1926788825 +532445947 1 this.bits 4 @@ -3497,7 +3719,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 111 this -1926788825 +532445947 1 this.bits 4 @@ -3513,7 +3735,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 112 this -1926788825 +532445947 1 this.bits 4 @@ -3526,7 +3748,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 112 this -1926788825 +532445947 1 this.bits 4 @@ -3542,7 +3764,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 113 this -1926788825 +532445947 1 this.bits 4 @@ -3555,7 +3777,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 113 this -1926788825 +532445947 1 this.bits 4 @@ -3571,7 +3793,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 114 this -1926788825 +532445947 1 this.bits 4 @@ -3584,7 +3806,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 114 this -1926788825 +532445947 1 this.bits 4 @@ -3600,7 +3822,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 115 this -1926788825 +532445947 1 this.bits 4 @@ -3613,7 +3835,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 115 this -1926788825 +532445947 1 this.bits 4 @@ -3629,7 +3851,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 116 this -1926788825 +532445947 1 this.bits 4 @@ -3642,7 +3864,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 116 this -1926788825 +532445947 1 this.bits 0 @@ -3655,7 +3877,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 117 this -1926788825 +532445947 1 this.bits 0 @@ -3668,7 +3890,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 117 this -1926788825 +532445947 1 this.bits 0 @@ -3684,7 +3906,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 118 this -1926788825 +532445947 1 this.bits 0 @@ -3697,7 +3919,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 118 this -1926788825 +532445947 1 this.bits 0 @@ -3713,7 +3935,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 119 this -1926788825 +532445947 1 this.bits 0 @@ -3726,7 +3948,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 119 this -1926788825 +532445947 1 this.bits 0 @@ -3742,7 +3964,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 120 this -1926788825 +532445947 1 this.bits 0 @@ -3755,7 +3977,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 120 this -1926788825 +532445947 1 this.bits 0 @@ -3771,7 +3993,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 121 this -1926788825 +532445947 1 this.bits 0 @@ -3784,7 +4006,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 121 this -1926788825 +532445947 1 this.bits 0 @@ -3800,7 +4022,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 122 this -1926788825 +532445947 1 this.bits 0 @@ -3813,7 +4035,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 122 this -1926788825 +532445947 1 this.bits 0 @@ -3829,7 +4051,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 123 this -1926788825 +532445947 1 this.bits 0 @@ -3842,7 +4064,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 123 this -1926788825 +532445947 1 this.bits 0 @@ -3858,7 +4080,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 124 this -1926788825 +532445947 1 this.bits 0 @@ -3871,7 +4093,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 124 this -1926788825 +532445947 1 this.bits 0 @@ -3887,7 +4109,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 125 this -1926788825 +532445947 1 this.bits 0 @@ -3900,7 +4122,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 125 this -1926788825 +532445947 1 this.bits 4 @@ -3913,7 +4135,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 126 this -1926788825 +532445947 1 this.bits 4 @@ -3926,7 +4148,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 126 this -1926788825 +532445947 1 this.bits 4 @@ -3942,7 +4164,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 127 this -1926788825 +532445947 1 this.bits 4 @@ -3955,7 +4177,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 127 this -1926788825 +532445947 1 this.bits 4 @@ -3971,7 +4193,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 128 this -1926788825 +532445947 1 this.bits 4 @@ -3984,7 +4206,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 128 this -1926788825 +532445947 1 this.bits 4 @@ -4000,7 +4222,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 129 this -1926788825 +532445947 1 this.bits 4 @@ -4013,7 +4235,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 129 this -1926788825 +532445947 1 this.bits 4 @@ -4029,7 +4251,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 130 this -1926788825 +532445947 1 this.bits 4 @@ -4042,7 +4264,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 130 this -1926788825 +532445947 1 this.bits 4 @@ -4058,7 +4280,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 131 this -1926788825 +532445947 1 this.bits 4 @@ -4071,7 +4293,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 131 this -1926788825 +532445947 1 this.bits 4 @@ -4087,7 +4309,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 132 this -1926788825 +532445947 1 this.bits 4 @@ -4100,7 +4322,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 132 this -1926788825 +532445947 1 this.bits 4 @@ -4116,7 +4338,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 133 this -1926788825 +532445947 1 this.bits 4 @@ -4129,7 +4351,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 133 this -1926788825 +532445947 1 this.bits 4 @@ -4145,7 +4367,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 134 this -1926788825 +532445947 1 this.bits 4 @@ -4158,7 +4380,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 134 this -1926788825 +532445947 1 this.bits 0 @@ -4171,7 +4393,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 135 this -1926788825 +532445947 1 this.bits 0 @@ -4184,7 +4406,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 135 this -1926788825 +532445947 1 this.bits 0 @@ -4200,7 +4422,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 136 this -1926788825 +532445947 1 this.bits 0 @@ -4213,7 +4435,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 136 this -1926788825 +532445947 1 this.bits 0 @@ -4229,7 +4451,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 137 this -1926788825 +532445947 1 this.bits 0 @@ -4242,7 +4464,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 137 this -1926788825 +532445947 1 this.bits 0 @@ -4258,7 +4480,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 138 this -1926788825 +532445947 1 this.bits 0 @@ -4271,7 +4493,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 138 this -1926788825 +532445947 1 this.bits 0 @@ -4287,7 +4509,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 139 this -1926788825 +532445947 1 this.bits 0 @@ -4300,7 +4522,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 139 this -1926788825 +532445947 1 this.bits 0 @@ -4316,7 +4538,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 140 this -1926788825 +532445947 1 this.bits 0 @@ -4329,7 +4551,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 140 this -1926788825 +532445947 1 this.bits 0 @@ -4345,7 +4567,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 141 this -1926788825 +532445947 1 this.bits 0 @@ -4358,7 +4580,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 141 this -1926788825 +532445947 1 this.bits 0 @@ -4374,7 +4596,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 142 this -1926788825 +532445947 1 this.bits 0 @@ -4387,7 +4609,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 142 this -1926788825 +532445947 1 this.bits 0 @@ -4403,7 +4625,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 143 this -1926788825 +532445947 1 this.bits 0 @@ -4416,7 +4638,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 143 this -1926788825 +532445947 1 this.bits 8 @@ -4429,7 +4651,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 144 this -1926788825 +532445947 1 this.bits 8 @@ -4442,7 +4664,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 144 this -1926788825 +532445947 1 this.bits 8 @@ -4458,7 +4680,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 145 this -1926788825 +532445947 1 this.bits 8 @@ -4471,7 +4693,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 145 this -1926788825 +532445947 1 this.bits 8 @@ -4487,7 +4709,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 146 this -1926788825 +532445947 1 this.bits 8 @@ -4500,7 +4722,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 146 this -1926788825 +532445947 1 this.bits 8 @@ -4516,7 +4738,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 147 this -1926788825 +532445947 1 this.bits 8 @@ -4529,7 +4751,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 147 this -1926788825 +532445947 1 this.bits 8 @@ -4545,7 +4767,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 148 this -1926788825 +532445947 1 this.bits 8 @@ -4558,7 +4780,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 148 this -1926788825 +532445947 1 this.bits 8 @@ -4574,7 +4796,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 149 this -1926788825 +532445947 1 this.bits 8 @@ -4587,7 +4809,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 149 this -1926788825 +532445947 1 this.bits 8 @@ -4603,7 +4825,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 150 this -1926788825 +532445947 1 this.bits 8 @@ -4616,7 +4838,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 150 this -1926788825 +532445947 1 this.bits 8 @@ -4632,7 +4854,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 151 this -1926788825 +532445947 1 this.bits 8 @@ -4645,7 +4867,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 151 this -1926788825 +532445947 1 this.bits 8 @@ -4661,7 +4883,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 152 this -1926788825 +532445947 1 this.bits 8 @@ -4674,7 +4896,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 152 this -1926788825 +532445947 1 this.bits 0 @@ -4687,7 +4909,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 153 this -1926788825 +532445947 1 this.bits 0 @@ -4700,7 +4922,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 153 this -1926788825 +532445947 1 this.bits 0 @@ -4716,7 +4938,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 154 this -1926788825 +532445947 1 this.bits 0 @@ -4729,7 +4951,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 154 this -1926788825 +532445947 1 this.bits 0 @@ -4745,7 +4967,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 155 this -1926788825 +532445947 1 this.bits 0 @@ -4758,7 +4980,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 155 this -1926788825 +532445947 1 this.bits 0 @@ -4774,7 +4996,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 156 this -1926788825 +532445947 1 this.bits 0 @@ -4787,7 +5009,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 156 this -1926788825 +532445947 1 this.bits 0 @@ -4803,7 +5025,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 157 this -1926788825 +532445947 1 this.bits 0 @@ -4816,7 +5038,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 157 this -1926788825 +532445947 1 this.bits 0 @@ -4832,7 +5054,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 158 this -1926788825 +532445947 1 this.bits 0 @@ -4845,7 +5067,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 158 this -1926788825 +532445947 1 this.bits 0 @@ -4861,7 +5083,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 159 this -1926788825 +532445947 1 this.bits 0 @@ -4874,7 +5096,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 159 this -1926788825 +532445947 1 this.bits 0 @@ -4890,7 +5112,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 160 this -1926788825 +532445947 1 this.bits 0 @@ -4903,7 +5125,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 160 this -1926788825 +532445947 1 this.bits 0 @@ -4919,7 +5141,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 161 this -1926788825 +532445947 1 this.bits 0 @@ -4932,7 +5154,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 161 this -1926788825 +532445947 1 this.bits 1 @@ -4945,7 +5167,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 162 this -1926788825 +532445947 1 this.bits 1 @@ -4958,7 +5180,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 162 this -1926788825 +532445947 1 this.bits 1 @@ -4974,7 +5196,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 163 this -1926788825 +532445947 1 this.bits 1 @@ -4987,7 +5209,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 163 this -1926788825 +532445947 1 this.bits 1 @@ -5003,7 +5225,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 164 this -1926788825 +532445947 1 this.bits 1 @@ -5016,7 +5238,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 164 this -1926788825 +532445947 1 this.bits 1 @@ -5032,7 +5254,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 165 this -1926788825 +532445947 1 this.bits 1 @@ -5045,7 +5267,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 165 this -1926788825 +532445947 1 this.bits 1 @@ -5061,7 +5283,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 166 this -1926788825 +532445947 1 this.bits 1 @@ -5074,7 +5296,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 166 this -1926788825 +532445947 1 this.bits 1 @@ -5090,7 +5312,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 167 this -1926788825 +532445947 1 this.bits 1 @@ -5103,7 +5325,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 167 this -1926788825 +532445947 1 this.bits 1 @@ -5119,7 +5341,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 168 this -1926788825 +532445947 1 this.bits 1 @@ -5132,7 +5354,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 168 this -1926788825 +532445947 1 this.bits 1 @@ -5148,7 +5370,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 169 this -1926788825 +532445947 1 this.bits 1 @@ -5161,7 +5383,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 169 this -1926788825 +532445947 1 this.bits 1 @@ -5177,7 +5399,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 170 this -1926788825 +532445947 1 this.bits 1 @@ -5190,7 +5412,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 170 this -1926788825 +532445947 1 this.bits 0 @@ -5203,7 +5425,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 171 this -1926788825 +532445947 1 this.bits 0 @@ -5216,7 +5438,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 171 this -1926788825 +532445947 1 this.bits 0 @@ -5232,7 +5454,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 172 this -1926788825 +532445947 1 this.bits 0 @@ -5245,7 +5467,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 172 this -1926788825 +532445947 1 this.bits 0 @@ -5261,7 +5483,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 173 this -1926788825 +532445947 1 this.bits 0 @@ -5274,7 +5496,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 173 this -1926788825 +532445947 1 this.bits 0 @@ -5290,7 +5512,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 174 this -1926788825 +532445947 1 this.bits 0 @@ -5303,7 +5525,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 174 this -1926788825 +532445947 1 this.bits 0 @@ -5319,7 +5541,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 175 this -1926788825 +532445947 1 this.bits 0 @@ -5332,7 +5554,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 175 this -1926788825 +532445947 1 this.bits 0 @@ -5348,7 +5570,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 176 this -1926788825 +532445947 1 this.bits 0 @@ -5361,7 +5583,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 176 this -1926788825 +532445947 1 this.bits 0 @@ -5377,7 +5599,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 177 this -1926788825 +532445947 1 this.bits 0 @@ -5390,7 +5612,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 177 this -1926788825 +532445947 1 this.bits 0 @@ -5406,7 +5628,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 178 this -1926788825 +532445947 1 this.bits 0 @@ -5419,7 +5641,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 178 this -1926788825 +532445947 1 this.bits 0 @@ -5435,7 +5657,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 179 this -1926788825 +532445947 1 this.bits 0 @@ -5448,7 +5670,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 179 this -1926788825 +532445947 1 this.bits 16 @@ -5461,7 +5683,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 180 this -1926788825 +532445947 1 this.bits 16 @@ -5474,7 +5696,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 180 this -1926788825 +532445947 1 this.bits 16 @@ -5490,7 +5712,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 181 this -1926788825 +532445947 1 this.bits 16 @@ -5503,7 +5725,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 181 this -1926788825 +532445947 1 this.bits 16 @@ -5519,7 +5741,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 182 this -1926788825 +532445947 1 this.bits 16 @@ -5532,7 +5754,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 182 this -1926788825 +532445947 1 this.bits 16 @@ -5548,7 +5770,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 183 this -1926788825 +532445947 1 this.bits 16 @@ -5561,7 +5783,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 183 this -1926788825 +532445947 1 this.bits 16 @@ -5577,7 +5799,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 184 this -1926788825 +532445947 1 this.bits 16 @@ -5590,7 +5812,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 184 this -1926788825 +532445947 1 this.bits 16 @@ -5606,7 +5828,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 185 this -1926788825 +532445947 1 this.bits 16 @@ -5619,7 +5841,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 185 this -1926788825 +532445947 1 this.bits 16 @@ -5635,7 +5857,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 186 this -1926788825 +532445947 1 this.bits 16 @@ -5648,7 +5870,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 186 this -1926788825 +532445947 1 this.bits 16 @@ -5664,7 +5886,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 187 this -1926788825 +532445947 1 this.bits 16 @@ -5677,7 +5899,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 187 this -1926788825 +532445947 1 this.bits 16 @@ -5693,7 +5915,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 188 this -1926788825 +532445947 1 this.bits 16 @@ -5706,7 +5928,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 188 this -1926788825 +532445947 1 this.bits 0 @@ -5719,7 +5941,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 189 this -1926788825 +532445947 1 this.bits 0 @@ -5732,7 +5954,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 189 this -1926788825 +532445947 1 this.bits 0 @@ -5748,7 +5970,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 190 this -1926788825 +532445947 1 this.bits 0 @@ -5761,7 +5983,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 190 this -1926788825 +532445947 1 this.bits 0 @@ -5777,7 +5999,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 191 this -1926788825 +532445947 1 this.bits 0 @@ -5790,7 +6012,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 191 this -1926788825 +532445947 1 this.bits 0 @@ -5806,7 +6028,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 192 this -1926788825 +532445947 1 this.bits 0 @@ -5819,7 +6041,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 192 this -1926788825 +532445947 1 this.bits 0 @@ -5835,7 +6057,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 193 this -1926788825 +532445947 1 this.bits 0 @@ -5848,7 +6070,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 193 this -1926788825 +532445947 1 this.bits 0 @@ -5864,7 +6086,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 194 this -1926788825 +532445947 1 this.bits 0 @@ -5877,7 +6099,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 194 this -1926788825 +532445947 1 this.bits 0 @@ -5893,7 +6115,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 195 this -1926788825 +532445947 1 this.bits 0 @@ -5906,7 +6128,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 195 this -1926788825 +532445947 1 this.bits 0 @@ -5922,7 +6144,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 196 this -1926788825 +532445947 1 this.bits 0 @@ -5935,7 +6157,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 196 this -1926788825 +532445947 1 this.bits 0 @@ -5951,7 +6173,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 197 this -1926788825 +532445947 1 this.bits 0 @@ -5964,7 +6186,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 197 this -1926788825 +532445947 1 this.bits 128 @@ -5977,7 +6199,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 198 this -1926788825 +532445947 1 this.bits 128 @@ -5990,7 +6212,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 198 this -1926788825 +532445947 1 this.bits 128 @@ -6006,7 +6228,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 199 this -1926788825 +532445947 1 this.bits 128 @@ -6019,7 +6241,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 199 this -1926788825 +532445947 1 this.bits 128 @@ -6035,7 +6257,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 200 this -1926788825 +532445947 1 this.bits 128 @@ -6048,7 +6270,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 200 this -1926788825 +532445947 1 this.bits 128 @@ -6064,7 +6286,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 201 this -1926788825 +532445947 1 this.bits 128 @@ -6077,7 +6299,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 201 this -1926788825 +532445947 1 this.bits 128 @@ -6093,7 +6315,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 202 this -1926788825 +532445947 1 this.bits 128 @@ -6106,7 +6328,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 202 this -1926788825 +532445947 1 this.bits 128 @@ -6122,7 +6344,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 203 this -1926788825 +532445947 1 this.bits 128 @@ -6135,7 +6357,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 203 this -1926788825 +532445947 1 this.bits 128 @@ -6151,7 +6373,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 204 this -1926788825 +532445947 1 this.bits 128 @@ -6164,7 +6386,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 204 this -1926788825 +532445947 1 this.bits 128 @@ -6180,7 +6402,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 205 this -1926788825 +532445947 1 this.bits 128 @@ -6193,7 +6415,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 205 this -1926788825 +532445947 1 this.bits 128 @@ -6209,7 +6431,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 206 this -1926788825 +532445947 1 this.bits 128 @@ -6222,7 +6444,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 206 this -1926788825 +532445947 1 this.bits 0 @@ -6235,7 +6457,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 207 this -1926788825 +532445947 1 this.bits 0 @@ -6248,7 +6470,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 207 this -1926788825 +532445947 1 this.bits 0 @@ -6264,7 +6486,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 208 this -1926788825 +532445947 1 this.bits 0 @@ -6277,7 +6499,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 208 this -1926788825 +532445947 1 this.bits 0 @@ -6293,7 +6515,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 209 this -1926788825 +532445947 1 this.bits 0 @@ -6306,7 +6528,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 209 this -1926788825 +532445947 1 this.bits 0 @@ -6322,7 +6544,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 210 this -1926788825 +532445947 1 this.bits 0 @@ -6335,7 +6557,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 210 this -1926788825 +532445947 1 this.bits 0 @@ -6351,7 +6573,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 211 this -1926788825 +532445947 1 this.bits 0 @@ -6364,7 +6586,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 211 this -1926788825 +532445947 1 this.bits 0 @@ -6380,7 +6602,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 212 this -1926788825 +532445947 1 this.bits 0 @@ -6393,7 +6615,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 212 this -1926788825 +532445947 1 this.bits 0 @@ -6409,7 +6631,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 213 this -1926788825 +532445947 1 this.bits 0 @@ -6422,7 +6644,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 213 this -1926788825 +532445947 1 this.bits 0 @@ -6438,7 +6660,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 214 this -1926788825 +532445947 1 this.bits 0 @@ -6451,7 +6673,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 214 this -1926788825 +532445947 1 this.bits 0 @@ -6467,7 +6689,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 215 this -1926788825 +532445947 1 this.bits 0 @@ -6480,7 +6702,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 215 this -1926788825 +532445947 1 this.bits 64 @@ -6493,7 +6715,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 216 this -1926788825 +532445947 1 this.bits 64 @@ -6506,7 +6728,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 216 this -1926788825 +532445947 1 this.bits 64 @@ -6522,7 +6744,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 217 this -1926788825 +532445947 1 this.bits 64 @@ -6535,7 +6757,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 217 this -1926788825 +532445947 1 this.bits 64 @@ -6551,7 +6773,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 218 this -1926788825 +532445947 1 this.bits 64 @@ -6564,7 +6786,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 218 this -1926788825 +532445947 1 this.bits 64 @@ -6580,7 +6802,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 219 this -1926788825 +532445947 1 this.bits 64 @@ -6593,7 +6815,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 219 this -1926788825 +532445947 1 this.bits 64 @@ -6609,7 +6831,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 220 this -1926788825 +532445947 1 this.bits 64 @@ -6622,7 +6844,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 220 this -1926788825 +532445947 1 this.bits 64 @@ -6638,7 +6860,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 221 this -1926788825 +532445947 1 this.bits 64 @@ -6651,7 +6873,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 221 this -1926788825 +532445947 1 this.bits 64 @@ -6667,7 +6889,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 222 this -1926788825 +532445947 1 this.bits 64 @@ -6680,7 +6902,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 222 this -1926788825 +532445947 1 this.bits 64 @@ -6696,7 +6918,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 223 this -1926788825 +532445947 1 this.bits 64 @@ -6709,7 +6931,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 223 this -1926788825 +532445947 1 this.bits 64 @@ -6725,7 +6947,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 224 this -1926788825 +532445947 1 this.bits 64 @@ -6738,7 +6960,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 224 this -1926788825 +532445947 1 this.bits 0 @@ -6751,7 +6973,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 225 this -1926788825 +532445947 1 this.bits 0 @@ -6764,7 +6986,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 225 this -1926788825 +532445947 1 this.bits 0 @@ -6780,7 +7002,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 226 this -1926788825 +532445947 1 this.bits 0 @@ -6793,7 +7015,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 226 this -1926788825 +532445947 1 this.bits 0 @@ -6809,7 +7031,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 227 this -1926788825 +532445947 1 this.bits 0 @@ -6822,7 +7044,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 227 this -1926788825 +532445947 1 this.bits 0 @@ -6838,7 +7060,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 228 this -1926788825 +532445947 1 this.bits 0 @@ -6851,7 +7073,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 228 this -1926788825 +532445947 1 this.bits 0 @@ -6867,7 +7089,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 229 this -1926788825 +532445947 1 this.bits 0 @@ -6880,7 +7102,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 229 this -1926788825 +532445947 1 this.bits 0 @@ -6896,7 +7118,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 230 this -1926788825 +532445947 1 this.bits 0 @@ -6909,7 +7131,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 230 this -1926788825 +532445947 1 this.bits 0 @@ -6925,7 +7147,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 231 this -1926788825 +532445947 1 this.bits 0 @@ -6938,7 +7160,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 231 this -1926788825 +532445947 1 this.bits 0 @@ -6954,7 +7176,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 232 this -1926788825 +532445947 1 this.bits 0 @@ -6967,7 +7189,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 232 this -1926788825 +532445947 1 this.bits 0 @@ -6983,7 +7205,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 233 this -1926788825 +532445947 1 this.bits 0 @@ -6996,7 +7218,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 233 this -1926788825 +532445947 1 this.bits 1 @@ -7009,7 +7231,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 234 this -1926788825 +532445947 1 this.bits 1 @@ -7022,7 +7244,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 234 this -1926788825 +532445947 1 this.bits 1 @@ -7038,7 +7260,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 235 this -1926788825 +532445947 1 this.bits 1 @@ -7051,7 +7273,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 235 this -1926788825 +532445947 1 this.bits 1 @@ -7067,7 +7289,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 236 this -1926788825 +532445947 1 this.bits 1 @@ -7080,7 +7302,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 236 this -1926788825 +532445947 1 this.bits 1 @@ -7096,7 +7318,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 237 this -1926788825 +532445947 1 this.bits 1 @@ -7109,7 +7331,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 237 this -1926788825 +532445947 1 this.bits 1 @@ -7125,7 +7347,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 238 this -1926788825 +532445947 1 this.bits 1 @@ -7138,7 +7360,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 238 this -1926788825 +532445947 1 this.bits 1 @@ -7154,7 +7376,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 239 this -1926788825 +532445947 1 this.bits 1 @@ -7167,7 +7389,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 239 this -1926788825 +532445947 1 this.bits 1 @@ -7183,7 +7405,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 240 this -1926788825 +532445947 1 this.bits 1 @@ -7196,7 +7418,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 240 this -1926788825 +532445947 1 this.bits 1 @@ -7212,7 +7434,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 241 this -1926788825 +532445947 1 this.bits 1 @@ -7225,7 +7447,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 241 this -1926788825 +532445947 1 this.bits 1 @@ -7241,7 +7463,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 242 this -1926788825 +532445947 1 this.bits 1 @@ -7254,7 +7476,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 242 this -1926788825 +532445947 1 this.bits 0 @@ -7267,7 +7489,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 243 this -1926788825 +532445947 1 this.bits 0 @@ -7280,7 +7502,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 243 this -1926788825 +532445947 1 this.bits 0 @@ -7296,7 +7518,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 244 this -1926788825 +532445947 1 this.bits 0 @@ -7309,7 +7531,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 244 this -1926788825 +532445947 1 this.bits 0 @@ -7325,7 +7547,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 245 this -1926788825 +532445947 1 this.bits 0 @@ -7338,7 +7560,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 245 this -1926788825 +532445947 1 this.bits 0 @@ -7354,7 +7576,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 246 this -1926788825 +532445947 1 this.bits 0 @@ -7367,7 +7589,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 246 this -1926788825 +532445947 1 this.bits 0 @@ -7383,7 +7605,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 247 this -1926788825 +532445947 1 this.bits 0 @@ -7396,7 +7618,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 247 this -1926788825 +532445947 1 this.bits 0 @@ -7412,7 +7634,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 248 this -1926788825 +532445947 1 this.bits 0 @@ -7425,7 +7647,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 248 this -1926788825 +532445947 1 this.bits 0 @@ -7441,7 +7663,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 249 this -1926788825 +532445947 1 this.bits 0 @@ -7454,7 +7676,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 249 this -1926788825 +532445947 1 this.bits 0 @@ -7470,7 +7692,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 250 this -1926788825 +532445947 1 this.bits 0 @@ -7483,7 +7705,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 250 this -1926788825 +532445947 1 this.bits 0 @@ -7499,7 +7721,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 251 this -1926788825 +532445947 1 this.bits 0 @@ -7512,7 +7734,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 251 this -1926788825 +532445947 1 this.bits 128 @@ -7525,7 +7747,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 252 this -1926788825 +532445947 1 this.bits 128 @@ -7538,7 +7760,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 252 this -1926788825 +532445947 1 this.bits 128 @@ -7554,7 +7776,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 253 this -1926788825 +532445947 1 this.bits 128 @@ -7567,7 +7789,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 253 this -1926788825 +532445947 1 this.bits 128 @@ -7583,7 +7805,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 254 this -1926788825 +532445947 1 this.bits 128 @@ -7596,7 +7818,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 254 this -1926788825 +532445947 1 this.bits 128 @@ -7612,7 +7834,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 255 this -1926788825 +532445947 1 this.bits 128 @@ -7625,7 +7847,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 255 this -1926788825 +532445947 1 this.bits 128 @@ -7641,7 +7863,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 256 this -1926788825 +532445947 1 this.bits 128 @@ -7654,7 +7876,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 256 this -1926788825 +532445947 1 this.bits 128 @@ -7670,7 +7892,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 257 this -1926788825 +532445947 1 this.bits 128 @@ -7683,7 +7905,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 257 this -1926788825 +532445947 1 this.bits 128 @@ -7699,7 +7921,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 258 this -1926788825 +532445947 1 this.bits 128 @@ -7712,7 +7934,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 258 this -1926788825 +532445947 1 this.bits 128 @@ -7728,7 +7950,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 259 this -1926788825 +532445947 1 this.bits 128 @@ -7741,7 +7963,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 259 this -1926788825 +532445947 1 this.bits 128 @@ -7757,7 +7979,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 260 this -1926788825 +532445947 1 this.bits 128 @@ -7770,7 +7992,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 260 this -1926788825 +532445947 1 this.bits 0 @@ -7783,7 +8005,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 261 this -1926788825 +532445947 1 this.bits 0 @@ -7796,7 +8018,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 261 this -1926788825 +532445947 1 this.bits 0 @@ -7812,7 +8034,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 262 this -1926788825 +532445947 1 this.bits 0 @@ -7825,7 +8047,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 262 this -1926788825 +532445947 1 this.bits 0 @@ -7841,7 +8063,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 263 this -1926788825 +532445947 1 this.bits 0 @@ -7854,7 +8076,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 263 this -1926788825 +532445947 1 this.bits 0 @@ -7870,7 +8092,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 264 this -1926788825 +532445947 1 this.bits 0 @@ -7883,7 +8105,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 264 this -1926788825 +532445947 1 this.bits 0 @@ -7899,7 +8121,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 265 this -1926788825 +532445947 1 this.bits 0 @@ -7912,7 +8134,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 265 this -1926788825 +532445947 1 this.bits 0 @@ -7928,7 +8150,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 266 this -1926788825 +532445947 1 this.bits 0 @@ -7941,7 +8163,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 266 this -1926788825 +532445947 1 this.bits 0 @@ -7957,7 +8179,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 267 this -1926788825 +532445947 1 this.bits 0 @@ -7970,7 +8192,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 267 this -1926788825 +532445947 1 this.bits 0 @@ -7986,7 +8208,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 268 this -1926788825 +532445947 1 this.bits 0 @@ -7999,7 +8221,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 268 this -1926788825 +532445947 1 this.bits 0 @@ -8015,7 +8237,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 269 this -1926788825 +532445947 1 this.bits 0 @@ -8028,7 +8250,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 269 this -1926788825 +532445947 1 this.bits 2 @@ -8041,7 +8263,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 270 this -1926788825 +532445947 1 this.bits 2 @@ -8054,7 +8276,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 270 this -1926788825 +532445947 1 this.bits 2 @@ -8070,7 +8292,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 271 this -1926788825 +532445947 1 this.bits 2 @@ -8083,7 +8305,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 271 this -1926788825 +532445947 1 this.bits 2 @@ -8099,7 +8321,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 272 this -1926788825 +532445947 1 this.bits 2 @@ -8112,7 +8334,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 272 this -1926788825 +532445947 1 this.bits 2 @@ -8128,7 +8350,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 273 this -1926788825 +532445947 1 this.bits 2 @@ -8141,7 +8363,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 273 this -1926788825 +532445947 1 this.bits 2 @@ -8157,7 +8379,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 274 this -1926788825 +532445947 1 this.bits 2 @@ -8170,7 +8392,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 274 this -1926788825 +532445947 1 this.bits 2 @@ -8186,7 +8408,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 275 this -1926788825 +532445947 1 this.bits 2 @@ -8199,7 +8421,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 275 this -1926788825 +532445947 1 this.bits 2 @@ -8215,7 +8437,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 276 this -1926788825 +532445947 1 this.bits 2 @@ -8228,7 +8450,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 276 this -1926788825 +532445947 1 this.bits 2 @@ -8244,7 +8466,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 277 this -1926788825 +532445947 1 this.bits 2 @@ -8257,7 +8479,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 277 this -1926788825 +532445947 1 this.bits 2 @@ -8273,7 +8495,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 278 this -1926788825 +532445947 1 this.bits 2 @@ -8286,7 +8508,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 278 this -1926788825 +532445947 1 this.bits 0 @@ -8299,7 +8521,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 279 this -1926788825 +532445947 1 this.bits 0 @@ -8312,7 +8534,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 279 this -1926788825 +532445947 1 this.bits 0 @@ -8328,7 +8550,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 280 this -1926788825 +532445947 1 this.bits 0 @@ -8341,7 +8563,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 280 this -1926788825 +532445947 1 this.bits 0 @@ -8357,7 +8579,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 281 this -1926788825 +532445947 1 this.bits 0 @@ -8370,7 +8592,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 281 this -1926788825 +532445947 1 this.bits 0 @@ -8386,7 +8608,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 282 this -1926788825 +532445947 1 this.bits 0 @@ -8399,7 +8621,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 282 this -1926788825 +532445947 1 this.bits 0 @@ -8415,7 +8637,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 283 this -1926788825 +532445947 1 this.bits 0 @@ -8428,7 +8650,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 283 this -1926788825 +532445947 1 this.bits 0 @@ -8444,7 +8666,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 284 this -1926788825 +532445947 1 this.bits 0 @@ -8457,7 +8679,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 284 this -1926788825 +532445947 1 this.bits 0 @@ -8473,7 +8695,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 285 this -1926788825 +532445947 1 this.bits 0 @@ -8486,7 +8708,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 285 this -1926788825 +532445947 1 this.bits 0 @@ -8502,7 +8724,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 286 this -1926788825 +532445947 1 this.bits 0 @@ -8515,7 +8737,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 286 this -1926788825 +532445947 1 this.bits 0 @@ -8531,7 +8753,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 287 this -1926788825 +532445947 1 this.bits 0 @@ -8544,7 +8766,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 287 this -1926788825 +532445947 1 this.bits 64 @@ -8557,7 +8779,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 288 this -1926788825 +532445947 1 this.bits 64 @@ -8570,7 +8792,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 288 this -1926788825 +532445947 1 this.bits 64 @@ -8586,7 +8808,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 289 this -1926788825 +532445947 1 this.bits 64 @@ -8599,7 +8821,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 289 this -1926788825 +532445947 1 this.bits 64 @@ -8615,7 +8837,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 290 this -1926788825 +532445947 1 this.bits 64 @@ -8628,7 +8850,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 290 this -1926788825 +532445947 1 this.bits 64 @@ -8644,7 +8866,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 291 this -1926788825 +532445947 1 this.bits 64 @@ -8657,7 +8879,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 291 this -1926788825 +532445947 1 this.bits 64 @@ -8673,7 +8895,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 292 this -1926788825 +532445947 1 this.bits 64 @@ -8686,7 +8908,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 292 this -1926788825 +532445947 1 this.bits 64 @@ -8702,7 +8924,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 293 this -1926788825 +532445947 1 this.bits 64 @@ -8715,7 +8937,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 293 this -1926788825 +532445947 1 this.bits 64 @@ -8731,7 +8953,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 294 this -1926788825 +532445947 1 this.bits 64 @@ -8744,7 +8966,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 294 this -1926788825 +532445947 1 this.bits 64 @@ -8760,7 +8982,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 295 this -1926788825 +532445947 1 this.bits 64 @@ -8773,7 +8995,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 295 this -1926788825 +532445947 1 this.bits 64 @@ -8789,7 +9011,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 296 this -1926788825 +532445947 1 this.bits 64 @@ -8802,7 +9024,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 296 this -1926788825 +532445947 1 this.bits 0 @@ -8815,7 +9037,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 297 this -1926788825 +532445947 1 this.bits 0 @@ -8828,7 +9050,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 297 this -1926788825 +532445947 1 this.bits 0 @@ -8844,7 +9066,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 298 this -1926788825 +532445947 1 this.bits 0 @@ -8857,7 +9079,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 298 this -1926788825 +532445947 1 this.bits 0 @@ -8873,7 +9095,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 299 this -1926788825 +532445947 1 this.bits 0 @@ -8886,7 +9108,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 299 this -1926788825 +532445947 1 this.bits 0 @@ -8902,7 +9124,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 300 this -1926788825 +532445947 1 this.bits 0 @@ -8915,7 +9137,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 300 this -1926788825 +532445947 1 this.bits 0 @@ -8931,7 +9153,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 301 this -1926788825 +532445947 1 this.bits 0 @@ -8944,7 +9166,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 301 this -1926788825 +532445947 1 this.bits 0 @@ -8960,7 +9182,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 302 this -1926788825 +532445947 1 this.bits 0 @@ -8973,7 +9195,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 302 this -1926788825 +532445947 1 this.bits 0 @@ -8989,7 +9211,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 303 this -1926788825 +532445947 1 this.bits 0 @@ -9002,7 +9224,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 303 this -1926788825 +532445947 1 this.bits 0 @@ -9018,7 +9240,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 304 this -1926788825 +532445947 1 this.bits 0 @@ -9031,7 +9253,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 304 this -1926788825 +532445947 1 this.bits 0 @@ -9047,7 +9269,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 305 this -1926788825 +532445947 1 this.bits 0 @@ -9060,7 +9282,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 305 this -1926788825 +532445947 1 this.bits 32 @@ -9073,7 +9295,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 306 this -1926788825 +532445947 1 this.bits 32 @@ -9086,7 +9308,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 306 this -1926788825 +532445947 1 this.bits 32 @@ -9102,7 +9324,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 307 this -1926788825 +532445947 1 this.bits 32 @@ -9115,7 +9337,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 307 this -1926788825 +532445947 1 this.bits 32 @@ -9131,7 +9353,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 308 this -1926788825 +532445947 1 this.bits 32 @@ -9144,7 +9366,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 308 this -1926788825 +532445947 1 this.bits 32 @@ -9160,7 +9382,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 309 this -1926788825 +532445947 1 this.bits 32 @@ -9173,7 +9395,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 309 this -1926788825 +532445947 1 this.bits 32 @@ -9189,7 +9411,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 310 this -1926788825 +532445947 1 this.bits 32 @@ -9202,7 +9424,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 310 this -1926788825 +532445947 1 this.bits 32 @@ -9218,7 +9440,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 311 this -1926788825 +532445947 1 this.bits 32 @@ -9231,7 +9453,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 311 this -1926788825 +532445947 1 this.bits 32 @@ -9247,7 +9469,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 312 this -1926788825 +532445947 1 this.bits 32 @@ -9260,7 +9482,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 312 this -1926788825 +532445947 1 this.bits 32 @@ -9276,7 +9498,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 313 this -1926788825 +532445947 1 this.bits 32 @@ -9289,7 +9511,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 313 this -1926788825 +532445947 1 this.bits 32 @@ -9305,7 +9527,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 314 this -1926788825 +532445947 1 this.bits 32 @@ -9318,7 +9540,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 314 this -1926788825 +532445947 1 this.bits 0 @@ -9331,7 +9553,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 315 this -1926788825 +532445947 1 this.bits 0 @@ -9344,7 +9566,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 315 this -1926788825 +532445947 1 this.bits 0 @@ -9360,7 +9582,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 316 this -1926788825 +532445947 1 this.bits 0 @@ -9373,7 +9595,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 316 this -1926788825 +532445947 1 this.bits 0 @@ -9389,7 +9611,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 317 this -1926788825 +532445947 1 this.bits 0 @@ -9402,7 +9624,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 317 this -1926788825 +532445947 1 this.bits 0 @@ -9418,7 +9640,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 318 this -1926788825 +532445947 1 this.bits 0 @@ -9431,7 +9653,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 318 this -1926788825 +532445947 1 this.bits 0 @@ -9447,7 +9669,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 319 this -1926788825 +532445947 1 this.bits 0 @@ -9460,7 +9682,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 319 this -1926788825 +532445947 1 this.bits 0 @@ -9476,7 +9698,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 320 this -1926788825 +532445947 1 this.bits 0 @@ -9489,7 +9711,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 320 this -1926788825 +532445947 1 this.bits 0 @@ -9505,7 +9727,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 321 this -1926788825 +532445947 1 this.bits 0 @@ -9518,7 +9740,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 321 this -1926788825 +532445947 1 this.bits 0 @@ -9534,7 +9756,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 322 this -1926788825 +532445947 1 this.bits 0 @@ -9547,7 +9769,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 322 this -1926788825 +532445947 1 this.bits 0 @@ -9563,7 +9785,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 323 this -1926788825 +532445947 1 this.bits 0 @@ -9576,7 +9798,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 323 this -1926788825 +532445947 1 this.bits 16 @@ -9589,7 +9811,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 324 this -1926788825 +532445947 1 this.bits 16 @@ -9602,7 +9824,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 324 this -1926788825 +532445947 1 this.bits 16 @@ -9618,7 +9840,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 325 this -1926788825 +532445947 1 this.bits 16 @@ -9631,7 +9853,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 325 this -1926788825 +532445947 1 this.bits 16 @@ -9647,7 +9869,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 326 this -1926788825 +532445947 1 this.bits 16 @@ -9660,7 +9882,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 326 this -1926788825 +532445947 1 this.bits 16 @@ -9676,7 +9898,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 327 this -1926788825 +532445947 1 this.bits 16 @@ -9689,7 +9911,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 327 this -1926788825 +532445947 1 this.bits 16 @@ -9705,7 +9927,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 328 this -1926788825 +532445947 1 this.bits 16 @@ -9718,7 +9940,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 328 this -1926788825 +532445947 1 this.bits 16 @@ -9734,7 +9956,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 329 this -1926788825 +532445947 1 this.bits 16 @@ -9747,7 +9969,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 329 this -1926788825 +532445947 1 this.bits 16 @@ -9763,7 +9985,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 330 this -1926788825 +532445947 1 this.bits 16 @@ -9776,7 +9998,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 330 this -1926788825 +532445947 1 this.bits 16 @@ -9792,7 +10014,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 331 this -1926788825 +532445947 1 this.bits 16 @@ -9805,7 +10027,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 331 this -1926788825 +532445947 1 this.bits 16 @@ -9821,7 +10043,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 332 this -1926788825 +532445947 1 this.bits 16 @@ -9834,7 +10056,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 332 this -1926788825 +532445947 1 this.bits 0 @@ -9847,7 +10069,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 333 this -1926788825 +532445947 1 this.bits 0 @@ -9860,7 +10082,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 333 this -1926788825 +532445947 1 this.bits 0 @@ -9876,7 +10098,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 334 this -1926788825 +532445947 1 this.bits 0 @@ -9889,7 +10111,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 334 this -1926788825 +532445947 1 this.bits 0 @@ -9905,7 +10127,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 335 this -1926788825 +532445947 1 this.bits 0 @@ -9918,7 +10140,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 335 this -1926788825 +532445947 1 this.bits 0 @@ -9934,7 +10156,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 336 this -1926788825 +532445947 1 this.bits 0 @@ -9947,7 +10169,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 336 this -1926788825 +532445947 1 this.bits 0 @@ -9963,7 +10185,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 337 this -1926788825 +532445947 1 this.bits 0 @@ -9976,7 +10198,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 337 this -1926788825 +532445947 1 this.bits 0 @@ -9992,7 +10214,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 338 this -1926788825 +532445947 1 this.bits 0 @@ -10005,7 +10227,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 338 this -1926788825 +532445947 1 this.bits 0 @@ -10021,7 +10243,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 339 this -1926788825 +532445947 1 this.bits 0 @@ -10034,7 +10256,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 339 this -1926788825 +532445947 1 this.bits 0 @@ -10050,7 +10272,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 340 this -1926788825 +532445947 1 this.bits 0 @@ -10063,7 +10285,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 340 this -1926788825 +532445947 1 this.bits 0 @@ -10079,7 +10301,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 341 this -1926788825 +532445947 1 this.bits 0 @@ -10092,7 +10314,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 341 this -1926788825 +532445947 1 this.bits 128 @@ -10105,7 +10327,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 342 this -1926788825 +532445947 1 this.bits 128 @@ -10118,7 +10340,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 342 this -1926788825 +532445947 1 this.bits 128 @@ -10134,7 +10356,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 343 this -1926788825 +532445947 1 this.bits 128 @@ -10147,7 +10369,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 343 this -1926788825 +532445947 1 this.bits 128 @@ -10163,7 +10385,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 344 this -1926788825 +532445947 1 this.bits 128 @@ -10176,7 +10398,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 344 this -1926788825 +532445947 1 this.bits 128 @@ -10192,7 +10414,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 345 this -1926788825 +532445947 1 this.bits 128 @@ -10205,7 +10427,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 345 this -1926788825 +532445947 1 this.bits 128 @@ -10221,7 +10443,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 346 this -1926788825 +532445947 1 this.bits 128 @@ -10234,7 +10456,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 346 this -1926788825 +532445947 1 this.bits 128 @@ -10250,7 +10472,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 347 this -1926788825 +532445947 1 this.bits 128 @@ -10263,7 +10485,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 347 this -1926788825 +532445947 1 this.bits 128 @@ -10279,7 +10501,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 348 this -1926788825 +532445947 1 this.bits 128 @@ -10292,7 +10514,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 348 this -1926788825 +532445947 1 this.bits 128 @@ -10308,7 +10530,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 349 this -1926788825 +532445947 1 this.bits 128 @@ -10321,7 +10543,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 349 this -1926788825 +532445947 1 this.bits 128 @@ -10337,7 +10559,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 350 this -1926788825 +532445947 1 this.bits 128 @@ -10350,7 +10572,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 350 this -1926788825 +532445947 1 this.bits 0 @@ -10363,7 +10585,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 351 this -1926788825 +532445947 1 this.bits 0 @@ -10376,7 +10598,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 351 this -1926788825 +532445947 1 this.bits 0 @@ -10392,7 +10614,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 352 this -1926788825 +532445947 1 this.bits 0 @@ -10405,7 +10627,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 352 this -1926788825 +532445947 1 this.bits 0 @@ -10421,7 +10643,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 353 this -1926788825 +532445947 1 this.bits 0 @@ -10434,7 +10656,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 353 this -1926788825 +532445947 1 this.bits 0 @@ -10450,7 +10672,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 354 this -1926788825 +532445947 1 this.bits 0 @@ -10463,7 +10685,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 354 this -1926788825 +532445947 1 this.bits 0 @@ -10479,7 +10701,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 355 this -1926788825 +532445947 1 this.bits 0 @@ -10492,7 +10714,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 355 this -1926788825 +532445947 1 this.bits 0 @@ -10508,7 +10730,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 356 this -1926788825 +532445947 1 this.bits 0 @@ -10521,7 +10743,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 356 this -1926788825 +532445947 1 this.bits 0 @@ -10537,7 +10759,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 357 this -1926788825 +532445947 1 this.bits 0 @@ -10550,7 +10772,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 357 this -1926788825 +532445947 1 this.bits 0 @@ -10566,7 +10788,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 358 this -1926788825 +532445947 1 this.bits 0 @@ -10579,7 +10801,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 358 this -1926788825 +532445947 1 this.bits 0 @@ -10595,7 +10817,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 359 this -1926788825 +532445947 1 this.bits 0 @@ -10608,7 +10830,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 359 this -1926788825 +532445947 1 this.bits 4 @@ -10621,7 +10843,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 360 this -1926788825 +532445947 1 this.bits 4 @@ -10634,7 +10856,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 360 this -1926788825 +532445947 1 this.bits 4 @@ -10650,7 +10872,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 361 this -1926788825 +532445947 1 this.bits 4 @@ -10663,7 +10885,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 361 this -1926788825 +532445947 1 this.bits 4 @@ -10679,7 +10901,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 362 this -1926788825 +532445947 1 this.bits 4 @@ -10692,7 +10914,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 362 this -1926788825 +532445947 1 this.bits 4 @@ -10708,7 +10930,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 363 this -1926788825 +532445947 1 this.bits 4 @@ -10721,7 +10943,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 363 this -1926788825 +532445947 1 this.bits 4 @@ -10737,7 +10959,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 364 this -1926788825 +532445947 1 this.bits 4 @@ -10750,7 +10972,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 364 this -1926788825 +532445947 1 this.bits 4 @@ -10766,7 +10988,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 365 this -1926788825 +532445947 1 this.bits 4 @@ -10779,7 +11001,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 365 this -1926788825 +532445947 1 this.bits 4 @@ -10795,7 +11017,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 366 this -1926788825 +532445947 1 this.bits 4 @@ -10808,7 +11030,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 366 this -1926788825 +532445947 1 this.bits 4 @@ -10824,7 +11046,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 367 this -1926788825 +532445947 1 this.bits 4 @@ -10837,7 +11059,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 367 this -1926788825 +532445947 1 this.bits 4 @@ -10853,7 +11075,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 368 this -1926788825 +532445947 1 this.bits 4 @@ -10866,7 +11088,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 368 this -1926788825 +532445947 1 this.bits 0 @@ -10879,7 +11101,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 369 this -1926788825 +532445947 1 this.bits 0 @@ -10892,7 +11114,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 369 this -1926788825 +532445947 1 this.bits 0 @@ -10908,7 +11130,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 370 this -1926788825 +532445947 1 this.bits 0 @@ -10921,7 +11143,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 370 this -1926788825 +532445947 1 this.bits 0 @@ -10937,7 +11159,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 371 this -1926788825 +532445947 1 this.bits 0 @@ -10950,7 +11172,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 371 this -1926788825 +532445947 1 this.bits 0 @@ -10966,7 +11188,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 372 this -1926788825 +532445947 1 this.bits 0 @@ -10979,7 +11201,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 372 this -1926788825 +532445947 1 this.bits 0 @@ -10995,7 +11217,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 373 this -1926788825 +532445947 1 this.bits 0 @@ -11008,7 +11230,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 373 this -1926788825 +532445947 1 this.bits 0 @@ -11024,7 +11246,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 374 this -1926788825 +532445947 1 this.bits 0 @@ -11037,7 +11259,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 374 this -1926788825 +532445947 1 this.bits 0 @@ -11053,7 +11275,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 375 this -1926788825 +532445947 1 this.bits 0 @@ -11066,7 +11288,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 375 this -1926788825 +532445947 1 this.bits 0 @@ -11082,7 +11304,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 376 this -1926788825 +532445947 1 this.bits 0 @@ -11095,7 +11317,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 376 this -1926788825 +532445947 1 this.bits 0 @@ -11111,7 +11333,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 377 this -1926788825 +532445947 1 this.bits 0 @@ -11124,7 +11346,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 377 this -1926788825 +532445947 1 this.bits 32 @@ -11137,7 +11359,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 378 this -1926788825 +532445947 1 this.bits 32 @@ -11150,7 +11372,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 378 this -1926788825 +532445947 1 this.bits 32 @@ -11166,7 +11388,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 379 this -1926788825 +532445947 1 this.bits 32 @@ -11179,7 +11401,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 379 this -1926788825 +532445947 1 this.bits 32 @@ -11195,7 +11417,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 380 this -1926788825 +532445947 1 this.bits 32 @@ -11208,7 +11430,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 380 this -1926788825 +532445947 1 this.bits 32 @@ -11224,7 +11446,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 381 this -1926788825 +532445947 1 this.bits 32 @@ -11237,7 +11459,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 381 this -1926788825 +532445947 1 this.bits 32 @@ -11253,7 +11475,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 382 this -1926788825 +532445947 1 this.bits 32 @@ -11266,7 +11488,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 382 this -1926788825 +532445947 1 this.bits 32 @@ -11282,7 +11504,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 383 this -1926788825 +532445947 1 this.bits 32 @@ -11295,7 +11517,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 383 this -1926788825 +532445947 1 this.bits 32 @@ -11311,7 +11533,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 384 this -1926788825 +532445947 1 this.bits 32 @@ -11324,7 +11546,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 384 this -1926788825 +532445947 1 this.bits 32 @@ -11340,7 +11562,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 385 this -1926788825 +532445947 1 this.bits 32 @@ -11353,7 +11575,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 385 this -1926788825 +532445947 1 this.bits 32 @@ -11369,7 +11591,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 386 this -1926788825 +532445947 1 this.bits 32 @@ -11382,7 +11604,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 386 this -1926788825 +532445947 1 this.bits 0 @@ -11395,7 +11617,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 387 this -1926788825 +532445947 1 this.bits 0 @@ -11408,7 +11630,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 387 this -1926788825 +532445947 1 this.bits 0 @@ -11424,7 +11646,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 388 this -1926788825 +532445947 1 this.bits 0 @@ -11437,7 +11659,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 388 this -1926788825 +532445947 1 this.bits 0 @@ -11453,7 +11675,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 389 this -1926788825 +532445947 1 this.bits 0 @@ -11466,7 +11688,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 389 this -1926788825 +532445947 1 this.bits 0 @@ -11482,7 +11704,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 390 this -1926788825 +532445947 1 this.bits 0 @@ -11495,7 +11717,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 390 this -1926788825 +532445947 1 this.bits 0 @@ -11511,7 +11733,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 391 this -1926788825 +532445947 1 this.bits 0 @@ -11524,7 +11746,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 391 this -1926788825 +532445947 1 this.bits 0 @@ -11540,7 +11762,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 392 this -1926788825 +532445947 1 this.bits 0 @@ -11553,7 +11775,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 392 this -1926788825 +532445947 1 this.bits 0 @@ -11569,7 +11791,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 393 this -1926788825 +532445947 1 this.bits 0 @@ -11582,7 +11804,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 393 this -1926788825 +532445947 1 this.bits 0 @@ -11598,7 +11820,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 394 this -1926788825 +532445947 1 this.bits 0 @@ -11611,7 +11833,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 394 this -1926788825 +532445947 1 this.bits 0 @@ -11627,7 +11849,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 395 this -1926788825 +532445947 1 this.bits 0 @@ -11640,7 +11862,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 395 this -1926788825 +532445947 1 this.bits 64 @@ -11653,7 +11875,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 396 this -1926788825 +532445947 1 this.bits 64 @@ -11666,7 +11888,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 396 this -1926788825 +532445947 1 this.bits 64 @@ -11682,7 +11904,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 397 this -1926788825 +532445947 1 this.bits 64 @@ -11695,7 +11917,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 397 this -1926788825 +532445947 1 this.bits 64 @@ -11711,7 +11933,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 398 this -1926788825 +532445947 1 this.bits 64 @@ -11724,7 +11946,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 398 this -1926788825 +532445947 1 this.bits 64 @@ -11740,7 +11962,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 399 this -1926788825 +532445947 1 this.bits 64 @@ -11753,7 +11975,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 399 this -1926788825 +532445947 1 this.bits 64 @@ -11769,7 +11991,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 400 this -1926788825 +532445947 1 this.bits 64 @@ -11782,7 +12004,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 400 this -1926788825 +532445947 1 this.bits 64 @@ -11798,7 +12020,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 401 this -1926788825 +532445947 1 this.bits 64 @@ -11811,7 +12033,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 401 this -1926788825 +532445947 1 this.bits 64 @@ -11827,7 +12049,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 402 this -1926788825 +532445947 1 this.bits 64 @@ -11840,7 +12062,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 402 this -1926788825 +532445947 1 this.bits 64 @@ -11856,7 +12078,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 403 this -1926788825 +532445947 1 this.bits 64 @@ -11869,7 +12091,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 403 this -1926788825 +532445947 1 this.bits 64 @@ -11885,7 +12107,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 404 this -1926788825 +532445947 1 this.bits 64 @@ -11898,7 +12120,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 404 this -1926788825 +532445947 1 this.bits 0 @@ -11911,7 +12133,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 405 this -1926788825 +532445947 1 this.bits 0 @@ -11924,7 +12146,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 405 this -1926788825 +532445947 1 this.bits 0 @@ -11940,7 +12162,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 406 this -1926788825 +532445947 1 this.bits 0 @@ -11953,7 +12175,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 406 this -1926788825 +532445947 1 this.bits 0 @@ -11969,7 +12191,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 407 this -1926788825 +532445947 1 this.bits 0 @@ -11982,7 +12204,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 407 this -1926788825 +532445947 1 this.bits 0 @@ -11998,7 +12220,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 408 this -1926788825 +532445947 1 this.bits 0 @@ -12011,7 +12233,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 408 this -1926788825 +532445947 1 this.bits 0 @@ -12027,7 +12249,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 409 this -1926788825 +532445947 1 this.bits 0 @@ -12040,7 +12262,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 409 this -1926788825 +532445947 1 this.bits 0 @@ -12056,7 +12278,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 410 this -1926788825 +532445947 1 this.bits 0 @@ -12069,7 +12291,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 410 this -1926788825 +532445947 1 this.bits 0 @@ -12085,7 +12307,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 411 this -1926788825 +532445947 1 this.bits 0 @@ -12098,7 +12320,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 411 this -1926788825 +532445947 1 this.bits 0 @@ -12114,7 +12336,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 412 this -1926788825 +532445947 1 this.bits 0 @@ -12127,7 +12349,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 412 this -1926788825 +532445947 1 this.bits 0 @@ -12143,7 +12365,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 413 this -1926788825 +532445947 1 this.bits 0 @@ -12156,7 +12378,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 413 this -1926788825 +532445947 1 this.bits 8 @@ -12169,7 +12391,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 414 this -1926788825 +532445947 1 this.bits 8 @@ -12182,7 +12404,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 414 this -1926788825 +532445947 1 this.bits 8 @@ -12198,7 +12420,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 415 this -1926788825 +532445947 1 this.bits 8 @@ -12211,7 +12433,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 415 this -1926788825 +532445947 1 this.bits 8 @@ -12227,7 +12449,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 416 this -1926788825 +532445947 1 this.bits 8 @@ -12240,7 +12462,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 416 this -1926788825 +532445947 1 this.bits 8 @@ -12256,7 +12478,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 417 this -1926788825 +532445947 1 this.bits 8 @@ -12269,7 +12491,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 417 this -1926788825 +532445947 1 this.bits 8 @@ -12285,7 +12507,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 418 this -1926788825 +532445947 1 this.bits 8 @@ -12298,7 +12520,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 418 this -1926788825 +532445947 1 this.bits 8 @@ -12314,7 +12536,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 419 this -1926788825 +532445947 1 this.bits 8 @@ -12327,7 +12549,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 419 this -1926788825 +532445947 1 this.bits 8 @@ -12343,7 +12565,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 420 this -1926788825 +532445947 1 this.bits 8 @@ -12356,7 +12578,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 420 this -1926788825 +532445947 1 this.bits 8 @@ -12372,7 +12594,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 421 this -1926788825 +532445947 1 this.bits 8 @@ -12385,7 +12607,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 421 this -1926788825 +532445947 1 this.bits 8 @@ -12401,7 +12623,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 422 this -1926788825 +532445947 1 this.bits 8 @@ -12414,7 +12636,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 422 this -1926788825 +532445947 1 this.bits 0 @@ -12427,7 +12649,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 423 this -1926788825 +532445947 1 this.bits 0 @@ -12440,7 +12662,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 423 this -1926788825 +532445947 1 this.bits 0 @@ -12456,7 +12678,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 424 this -1926788825 +532445947 1 this.bits 0 @@ -12469,7 +12691,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 424 this -1926788825 +532445947 1 this.bits 0 @@ -12485,7 +12707,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 425 this -1926788825 +532445947 1 this.bits 0 @@ -12498,7 +12720,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 425 this -1926788825 +532445947 1 this.bits 0 @@ -12514,7 +12736,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 426 this -1926788825 +532445947 1 this.bits 0 @@ -12527,7 +12749,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 426 this -1926788825 +532445947 1 this.bits 0 @@ -12543,7 +12765,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 427 this -1926788825 +532445947 1 this.bits 0 @@ -12556,7 +12778,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 427 this -1926788825 +532445947 1 this.bits 0 @@ -12572,7 +12794,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 428 this -1926788825 +532445947 1 this.bits 0 @@ -12585,7 +12807,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 428 this -1926788825 +532445947 1 this.bits 0 @@ -12601,7 +12823,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 429 this -1926788825 +532445947 1 this.bits 0 @@ -12614,7 +12836,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 429 this -1926788825 +532445947 1 this.bits 0 @@ -12630,7 +12852,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 430 this -1926788825 +532445947 1 this.bits 0 @@ -12643,7 +12865,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 430 this -1926788825 +532445947 1 this.bits 0 @@ -12659,7 +12881,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 431 this -1926788825 +532445947 1 this.bits 0 @@ -12672,7 +12894,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 431 this -1926788825 +532445947 1 this.bits 32 @@ -12685,7 +12907,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 432 this -1926788825 +532445947 1 this.bits 32 @@ -12698,7 +12920,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 432 this -1926788825 +532445947 1 this.bits 32 @@ -12714,7 +12936,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 433 this -1926788825 +532445947 1 this.bits 32 @@ -12727,7 +12949,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 433 this -1926788825 +532445947 1 this.bits 32 @@ -12743,7 +12965,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 434 this -1926788825 +532445947 1 this.bits 32 @@ -12756,7 +12978,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 434 this -1926788825 +532445947 1 this.bits 32 @@ -12772,7 +12994,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 435 this -1926788825 +532445947 1 this.bits 32 @@ -12785,7 +13007,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 435 this -1926788825 +532445947 1 this.bits 32 @@ -12801,7 +13023,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 436 this -1926788825 +532445947 1 this.bits 32 @@ -12814,7 +13036,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 436 this -1926788825 +532445947 1 this.bits 32 @@ -12830,7 +13052,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 437 this -1926788825 +532445947 1 this.bits 32 @@ -12843,7 +13065,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 437 this -1926788825 +532445947 1 this.bits 32 @@ -12859,7 +13081,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 438 this -1926788825 +532445947 1 this.bits 32 @@ -12872,7 +13094,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 438 this -1926788825 +532445947 1 this.bits 32 @@ -12888,7 +13110,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 439 this -1926788825 +532445947 1 this.bits 32 @@ -12901,7 +13123,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 439 this -1926788825 +532445947 1 this.bits 32 @@ -12917,7 +13139,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 440 this -1926788825 +532445947 1 this.bits 32 @@ -12930,7 +13152,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 440 this -1926788825 +532445947 1 this.bits 0 @@ -12943,7 +13165,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 441 this -1926788825 +532445947 1 this.bits 0 @@ -12956,7 +13178,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 441 this -1926788825 +532445947 1 this.bits 0 @@ -12972,7 +13194,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 442 this -1926788825 +532445947 1 this.bits 0 @@ -12985,7 +13207,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 442 this -1926788825 +532445947 1 this.bits 0 @@ -13001,7 +13223,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 443 this -1926788825 +532445947 1 this.bits 0 @@ -13014,7 +13236,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 443 this -1926788825 +532445947 1 this.bits 0 @@ -13030,7 +13252,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 444 this -1926788825 +532445947 1 this.bits 0 @@ -13043,7 +13265,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 444 this -1926788825 +532445947 1 this.bits 0 @@ -13059,7 +13281,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 445 this -1926788825 +532445947 1 this.bits 0 @@ -13072,7 +13294,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 445 this -1926788825 +532445947 1 this.bits 0 @@ -13088,7 +13310,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 446 this -1926788825 +532445947 1 this.bits 0 @@ -13101,7 +13323,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 446 this -1926788825 +532445947 1 this.bits 0 @@ -13117,7 +13339,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 447 this -1926788825 +532445947 1 this.bits 0 @@ -13130,7 +13352,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 447 this -1926788825 +532445947 1 this.bits 0 @@ -13146,7 +13368,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 448 this -1926788825 +532445947 1 this.bits 0 @@ -13159,7 +13381,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 448 this -1926788825 +532445947 1 this.bits 0 @@ -13175,7 +13397,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 449 this -1926788825 +532445947 1 this.bits 0 @@ -13188,7 +13410,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 449 this -1926788825 +532445947 1 this.bits 4 @@ -13201,7 +13423,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 450 this -1926788825 +532445947 1 this.bits 4 @@ -13214,7 +13436,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 450 this -1926788825 +532445947 1 this.bits 4 @@ -13230,7 +13452,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 451 this -1926788825 +532445947 1 this.bits 4 @@ -13243,7 +13465,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 451 this -1926788825 +532445947 1 this.bits 4 @@ -13259,7 +13481,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 452 this -1926788825 +532445947 1 this.bits 4 @@ -13272,7 +13494,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 452 this -1926788825 +532445947 1 this.bits 4 @@ -13288,7 +13510,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 453 this -1926788825 +532445947 1 this.bits 4 @@ -13301,7 +13523,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 453 this -1926788825 +532445947 1 this.bits 4 @@ -13317,7 +13539,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 454 this -1926788825 +532445947 1 this.bits 4 @@ -13330,7 +13552,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 454 this -1926788825 +532445947 1 this.bits 4 @@ -13346,7 +13568,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 455 this -1926788825 +532445947 1 this.bits 4 @@ -13359,7 +13581,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 455 this -1926788825 +532445947 1 this.bits 4 @@ -13375,7 +13597,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 456 this -1926788825 +532445947 1 this.bits 4 @@ -13388,7 +13610,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 456 this -1926788825 +532445947 1 this.bits 4 @@ -13404,7 +13626,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 457 this -1926788825 +532445947 1 this.bits 4 @@ -13417,7 +13639,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 457 this -1926788825 +532445947 1 this.bits 4 @@ -13433,7 +13655,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 458 this -1926788825 +532445947 1 this.bits 4 @@ -13446,7 +13668,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 458 this -1926788825 +532445947 1 this.bits 0 @@ -13459,7 +13681,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 459 this -1926788825 +532445947 1 this.bits 0 @@ -13472,7 +13694,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 459 this -1926788825 +532445947 1 this.bits 0 @@ -13488,7 +13710,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 460 this -1926788825 +532445947 1 this.bits 0 @@ -13501,7 +13723,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 460 this -1926788825 +532445947 1 this.bits 0 @@ -13517,7 +13739,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 461 this -1926788825 +532445947 1 this.bits 0 @@ -13530,7 +13752,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 461 this -1926788825 +532445947 1 this.bits 0 @@ -13546,7 +13768,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 462 this -1926788825 +532445947 1 this.bits 0 @@ -13559,7 +13781,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 462 this -1926788825 +532445947 1 this.bits 0 @@ -13575,7 +13797,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 463 this -1926788825 +532445947 1 this.bits 0 @@ -13588,7 +13810,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 463 this -1926788825 +532445947 1 this.bits 0 @@ -13604,7 +13826,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 464 this -1926788825 +532445947 1 this.bits 0 @@ -13617,7 +13839,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 464 this -1926788825 +532445947 1 this.bits 0 @@ -13633,7 +13855,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 465 this -1926788825 +532445947 1 this.bits 0 @@ -13646,7 +13868,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 465 this -1926788825 +532445947 1 this.bits 0 @@ -13662,7 +13884,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 466 this -1926788825 +532445947 1 this.bits 0 @@ -13675,7 +13897,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 466 this -1926788825 +532445947 1 this.bits 0 @@ -13691,7 +13913,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 467 this -1926788825 +532445947 1 this.bits 0 @@ -13704,7 +13926,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 467 this -1926788825 +532445947 1 this.bits 16 @@ -13717,7 +13939,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 468 this -1926788825 +532445947 1 this.bits 16 @@ -13730,7 +13952,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 468 this -1926788825 +532445947 1 this.bits 16 @@ -13746,7 +13968,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 469 this -1926788825 +532445947 1 this.bits 16 @@ -13759,7 +13981,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 469 this -1926788825 +532445947 1 this.bits 16 @@ -13775,7 +13997,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 470 this -1926788825 +532445947 1 this.bits 16 @@ -13788,7 +14010,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 470 this -1926788825 +532445947 1 this.bits 16 @@ -13804,7 +14026,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 471 this -1926788825 +532445947 1 this.bits 16 @@ -13817,7 +14039,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 471 this -1926788825 +532445947 1 this.bits 16 @@ -13833,7 +14055,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 472 this -1926788825 +532445947 1 this.bits 16 @@ -13846,7 +14068,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 472 this -1926788825 +532445947 1 this.bits 16 @@ -13862,7 +14084,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 473 this -1926788825 +532445947 1 this.bits 16 @@ -13875,7 +14097,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 473 this -1926788825 +532445947 1 this.bits 16 @@ -13891,7 +14113,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 474 this -1926788825 +532445947 1 this.bits 16 @@ -13904,7 +14126,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 474 this -1926788825 +532445947 1 this.bits 16 @@ -13920,7 +14142,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 475 this -1926788825 +532445947 1 this.bits 16 @@ -13933,7 +14155,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 475 this -1926788825 +532445947 1 this.bits 16 @@ -13949,7 +14171,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 476 this -1926788825 +532445947 1 this.bits 16 @@ -13962,7 +14184,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 476 this -1926788825 +532445947 1 this.bits 0 @@ -13975,7 +14197,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 477 this -1926788825 +532445947 1 this.bits 0 @@ -13988,7 +14210,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 477 this -1926788825 +532445947 1 this.bits 0 @@ -14004,7 +14226,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 478 this -1926788825 +532445947 1 this.bits 0 @@ -14017,7 +14239,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 478 this -1926788825 +532445947 1 this.bits 0 @@ -14033,7 +14255,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 479 this -1926788825 +532445947 1 this.bits 0 @@ -14046,7 +14268,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 479 this -1926788825 +532445947 1 this.bits 0 @@ -14062,7 +14284,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 480 this -1926788825 +532445947 1 this.bits 0 @@ -14075,7 +14297,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 480 this -1926788825 +532445947 1 this.bits 0 @@ -14091,7 +14313,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 481 this -1926788825 +532445947 1 this.bits 0 @@ -14104,7 +14326,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 481 this -1926788825 +532445947 1 this.bits 0 @@ -14120,7 +14342,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 482 this -1926788825 +532445947 1 this.bits 0 @@ -14133,7 +14355,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 482 this -1926788825 +532445947 1 this.bits 0 @@ -14149,7 +14371,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 483 this -1926788825 +532445947 1 this.bits 0 @@ -14162,7 +14384,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 483 this -1926788825 +532445947 1 this.bits 0 @@ -14178,7 +14400,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 484 this -1926788825 +532445947 1 this.bits 0 @@ -14191,7 +14413,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 484 this -1926788825 +532445947 1 this.bits 0 @@ -14207,7 +14429,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 485 this -1926788825 +532445947 1 this.bits 0 @@ -14220,7 +14442,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 485 this -1926788825 +532445947 1 this.bits 4 @@ -14233,7 +14455,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 486 this -1926788825 +532445947 1 this.bits 4 @@ -14246,7 +14468,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 486 this -1926788825 +532445947 1 this.bits 4 @@ -14262,7 +14484,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 487 this -1926788825 +532445947 1 this.bits 4 @@ -14275,7 +14497,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 487 this -1926788825 +532445947 1 this.bits 4 @@ -14291,7 +14513,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 488 this -1926788825 +532445947 1 this.bits 4 @@ -14304,7 +14526,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 488 this -1926788825 +532445947 1 this.bits 4 @@ -14320,7 +14542,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 489 this -1926788825 +532445947 1 this.bits 4 @@ -14333,7 +14555,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 489 this -1926788825 +532445947 1 this.bits 4 @@ -14349,7 +14571,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 490 this -1926788825 +532445947 1 this.bits 4 @@ -14362,7 +14584,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 490 this -1926788825 +532445947 1 this.bits 4 @@ -14378,7 +14600,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 491 this -1926788825 +532445947 1 this.bits 4 @@ -14391,7 +14613,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 491 this -1926788825 +532445947 1 this.bits 4 @@ -14407,7 +14629,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 492 this -1926788825 +532445947 1 this.bits 4 @@ -14420,7 +14642,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 492 this -1926788825 +532445947 1 this.bits 4 @@ -14436,7 +14658,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 493 this -1926788825 +532445947 1 this.bits 4 @@ -14449,7 +14671,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 493 this -1926788825 +532445947 1 this.bits 4 @@ -14465,7 +14687,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 494 this -1926788825 +532445947 1 this.bits 4 @@ -14478,7 +14700,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 494 this -1926788825 +532445947 1 this.bits 0 @@ -14491,7 +14713,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 495 this -1926788825 +532445947 1 this.bits 0 @@ -14504,7 +14726,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 495 this -1926788825 +532445947 1 this.bits 0 @@ -14520,7 +14742,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 496 this -1926788825 +532445947 1 this.bits 0 @@ -14533,7 +14755,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 496 this -1926788825 +532445947 1 this.bits 0 @@ -14549,7 +14771,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 497 this -1926788825 +532445947 1 this.bits 0 @@ -14562,7 +14784,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 497 this -1926788825 +532445947 1 this.bits 0 @@ -14578,7 +14800,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 498 this -1926788825 +532445947 1 this.bits 0 @@ -14591,7 +14813,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 498 this -1926788825 +532445947 1 this.bits 0 @@ -14607,7 +14829,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 499 this -1926788825 +532445947 1 this.bits 0 @@ -14620,7 +14842,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 499 this -1926788825 +532445947 1 this.bits 0 @@ -14636,7 +14858,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 500 this -1926788825 +532445947 1 this.bits 0 @@ -14649,7 +14871,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 500 this -1926788825 +532445947 1 this.bits 0 @@ -14665,7 +14887,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 501 this -1926788825 +532445947 1 this.bits 0 @@ -14678,7 +14900,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 501 this -1926788825 +532445947 1 this.bits 0 @@ -14694,7 +14916,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 502 this -1926788825 +532445947 1 this.bits 0 @@ -14707,7 +14929,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 502 this -1926788825 +532445947 1 this.bits 0 @@ -14723,7 +14945,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 503 this -1926788825 +532445947 1 this.bits 0 @@ -14736,7 +14958,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 503 this -1926788825 +532445947 1 this.bits 16 @@ -14749,7 +14971,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 504 this -1926788825 +532445947 1 this.bits 16 @@ -14762,7 +14984,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 504 this -1926788825 +532445947 1 this.bits 16 @@ -14778,7 +15000,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 505 this -1926788825 +532445947 1 this.bits 16 @@ -14791,7 +15013,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 505 this -1926788825 +532445947 1 this.bits 16 @@ -14807,7 +15029,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 506 this -1926788825 +532445947 1 this.bits 16 @@ -14820,7 +15042,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 506 this -1926788825 +532445947 1 this.bits 16 @@ -14836,7 +15058,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 507 this -1926788825 +532445947 1 this.bits 16 @@ -14849,7 +15071,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 507 this -1926788825 +532445947 1 this.bits 16 @@ -14865,7 +15087,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 508 this -1926788825 +532445947 1 this.bits 16 @@ -14878,7 +15100,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 508 this -1926788825 +532445947 1 this.bits 16 @@ -14894,7 +15116,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 509 this -1926788825 +532445947 1 this.bits 16 @@ -14907,7 +15129,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 509 this -1926788825 +532445947 1 this.bits 16 @@ -14923,7 +15145,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 510 this -1926788825 +532445947 1 this.bits 16 @@ -14936,7 +15158,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 510 this -1926788825 +532445947 1 this.bits 16 @@ -14952,7 +15174,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 511 this -1926788825 +532445947 1 this.bits 16 @@ -14965,7 +15187,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 511 this -1926788825 +532445947 1 this.bits 16 @@ -14981,7 +15203,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 512 this -1926788825 +532445947 1 this.bits 16 @@ -14994,7 +15216,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 512 this -1926788825 +532445947 1 this.bits 0 @@ -15007,7 +15229,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 513 this -1926788825 +532445947 1 this.bits 0 @@ -15020,7 +15242,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 513 this -1926788825 +532445947 1 this.bits 0 @@ -15036,7 +15258,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 514 this -1926788825 +532445947 1 this.bits 0 @@ -15049,7 +15271,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 514 this -1926788825 +532445947 1 this.bits 0 @@ -15065,7 +15287,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 515 this -1926788825 +532445947 1 this.bits 0 @@ -15078,7 +15300,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 515 this -1926788825 +532445947 1 this.bits 0 @@ -15094,7 +15316,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 516 this -1926788825 +532445947 1 this.bits 0 @@ -15107,7 +15329,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 516 this -1926788825 +532445947 1 this.bits 0 @@ -15123,7 +15345,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 517 this -1926788825 +532445947 1 this.bits 0 @@ -15136,7 +15358,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 517 this -1926788825 +532445947 1 this.bits 0 @@ -15152,7 +15374,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 518 this -1926788825 +532445947 1 this.bits 0 @@ -15165,7 +15387,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 518 this -1926788825 +532445947 1 this.bits 0 @@ -15181,7 +15403,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 519 this -1926788825 +532445947 1 this.bits 0 @@ -15194,7 +15416,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 519 this -1926788825 +532445947 1 this.bits 0 @@ -15210,7 +15432,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 520 this -1926788825 +532445947 1 this.bits 0 @@ -15223,7 +15445,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 520 this -1926788825 +532445947 1 this.bits 0 @@ -15239,7 +15461,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 521 this -1926788825 +532445947 1 this.bits 0 @@ -15252,7 +15474,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 521 this -1926788825 +532445947 1 this.bits 64 @@ -15265,7 +15487,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 522 this -1926788825 +532445947 1 this.bits 64 @@ -15278,7 +15500,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 522 this -1926788825 +532445947 1 this.bits 64 @@ -15294,7 +15516,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 523 this -1926788825 +532445947 1 this.bits 64 @@ -15307,7 +15529,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 523 this -1926788825 +532445947 1 this.bits 64 @@ -15323,7 +15545,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 524 this -1926788825 +532445947 1 this.bits 64 @@ -15336,7 +15558,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 524 this -1926788825 +532445947 1 this.bits 64 @@ -15352,7 +15574,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 525 this -1926788825 +532445947 1 this.bits 64 @@ -15365,7 +15587,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 525 this -1926788825 +532445947 1 this.bits 64 @@ -15381,7 +15603,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 526 this -1926788825 +532445947 1 this.bits 64 @@ -15394,7 +15616,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 526 this -1926788825 +532445947 1 this.bits 64 @@ -15410,7 +15632,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 527 this -1926788825 +532445947 1 this.bits 64 @@ -15423,7 +15645,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 527 this -1926788825 +532445947 1 this.bits 64 @@ -15439,7 +15661,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 528 this -1926788825 +532445947 1 this.bits 64 @@ -15452,7 +15674,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 528 this -1926788825 +532445947 1 this.bits 64 @@ -15468,7 +15690,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 529 this -1926788825 +532445947 1 this.bits 64 @@ -15481,7 +15703,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 529 this -1926788825 +532445947 1 this.bits 64 @@ -15497,7 +15719,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 530 this -1926788825 +532445947 1 this.bits 64 @@ -15510,7 +15732,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 530 this -1926788825 +532445947 1 this.bits 0 @@ -15523,7 +15745,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 531 this -1926788825 +532445947 1 this.bits 0 @@ -15536,7 +15758,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 531 this -1926788825 +532445947 1 this.bits 0 @@ -15552,7 +15774,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 532 this -1926788825 +532445947 1 this.bits 0 @@ -15565,7 +15787,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 532 this -1926788825 +532445947 1 this.bits 0 @@ -15581,7 +15803,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 533 this -1926788825 +532445947 1 this.bits 0 @@ -15594,7 +15816,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 533 this -1926788825 +532445947 1 this.bits 0 @@ -15610,7 +15832,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 534 this -1926788825 +532445947 1 this.bits 0 @@ -15623,7 +15845,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 534 this -1926788825 +532445947 1 this.bits 0 @@ -15639,7 +15861,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 535 this -1926788825 +532445947 1 this.bits 0 @@ -15652,7 +15874,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 535 this -1926788825 +532445947 1 this.bits 0 @@ -15668,7 +15890,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 536 this -1926788825 +532445947 1 this.bits 0 @@ -15681,7 +15903,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 536 this -1926788825 +532445947 1 this.bits 0 @@ -15697,7 +15919,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 537 this -1926788825 +532445947 1 this.bits 0 @@ -15710,7 +15932,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 537 this -1926788825 +532445947 1 this.bits 0 @@ -15726,7 +15948,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 538 this -1926788825 +532445947 1 this.bits 0 @@ -15739,7 +15961,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 538 this -1926788825 +532445947 1 this.bits 0 @@ -15755,7 +15977,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 539 this -1926788825 +532445947 1 this.bits 0 @@ -15768,7 +15990,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 539 this -1926788825 +532445947 1 this.bits 2 @@ -15781,7 +16003,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 540 this -1926788825 +532445947 1 this.bits 2 @@ -15794,7 +16016,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 540 this -1926788825 +532445947 1 this.bits 2 @@ -15810,7 +16032,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 541 this -1926788825 +532445947 1 this.bits 2 @@ -15823,7 +16045,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 541 this -1926788825 +532445947 1 this.bits 2 @@ -15839,7 +16061,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 542 this -1926788825 +532445947 1 this.bits 2 @@ -15852,7 +16074,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 542 this -1926788825 +532445947 1 this.bits 2 @@ -15868,7 +16090,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 543 this -1926788825 +532445947 1 this.bits 2 @@ -15881,7 +16103,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 543 this -1926788825 +532445947 1 this.bits 2 @@ -15897,7 +16119,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 544 this -1926788825 +532445947 1 this.bits 2 @@ -15910,7 +16132,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 544 this -1926788825 +532445947 1 this.bits 2 @@ -15926,7 +16148,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 545 this -1926788825 +532445947 1 this.bits 2 @@ -15939,7 +16161,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 545 this -1926788825 +532445947 1 this.bits 2 @@ -15955,7 +16177,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 546 this -1926788825 +532445947 1 this.bits 2 @@ -15968,7 +16190,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 546 this -1926788825 +532445947 1 this.bits 2 @@ -15984,7 +16206,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 547 this -1926788825 +532445947 1 this.bits 2 @@ -15997,7 +16219,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 547 this -1926788825 +532445947 1 this.bits 2 @@ -16013,7 +16235,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 548 this -1926788825 +532445947 1 this.bits 2 @@ -16026,7 +16248,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 548 this -1926788825 +532445947 1 this.bits 0 @@ -16039,7 +16261,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 549 this -1926788825 +532445947 1 this.bits 0 @@ -16052,7 +16274,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 549 this -1926788825 +532445947 1 this.bits 0 @@ -16068,7 +16290,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 550 this -1926788825 +532445947 1 this.bits 0 @@ -16081,7 +16303,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 550 this -1926788825 +532445947 1 this.bits 0 @@ -16097,7 +16319,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 551 this -1926788825 +532445947 1 this.bits 0 @@ -16110,7 +16332,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 551 this -1926788825 +532445947 1 this.bits 0 @@ -16126,7 +16348,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 552 this -1926788825 +532445947 1 this.bits 0 @@ -16139,7 +16361,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 552 this -1926788825 +532445947 1 this.bits 0 @@ -16155,7 +16377,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 553 this -1926788825 +532445947 1 this.bits 0 @@ -16168,7 +16390,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 553 this -1926788825 +532445947 1 this.bits 0 @@ -16184,7 +16406,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 554 this -1926788825 +532445947 1 this.bits 0 @@ -16197,7 +16419,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 554 this -1926788825 +532445947 1 this.bits 0 @@ -16213,7 +16435,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 555 this -1926788825 +532445947 1 this.bits 0 @@ -16226,7 +16448,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 555 this -1926788825 +532445947 1 this.bits 0 @@ -16242,7 +16464,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 556 this -1926788825 +532445947 1 this.bits 0 @@ -16255,7 +16477,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 556 this -1926788825 +532445947 1 this.bits 0 @@ -16271,7 +16493,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 557 this -1926788825 +532445947 1 this.bits 0 @@ -16284,7 +16506,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 557 this -1926788825 +532445947 1 this.bits 2 @@ -16297,7 +16519,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 558 this -1926788825 +532445947 1 this.bits 2 @@ -16310,7 +16532,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 558 this -1926788825 +532445947 1 this.bits 2 @@ -16326,7 +16548,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 559 this -1926788825 +532445947 1 this.bits 2 @@ -16339,7 +16561,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 559 this -1926788825 +532445947 1 this.bits 2 @@ -16355,7 +16577,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 560 this -1926788825 +532445947 1 this.bits 2 @@ -16368,7 +16590,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 560 this -1926788825 +532445947 1 this.bits 2 @@ -16384,7 +16606,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 561 this -1926788825 +532445947 1 this.bits 2 @@ -16397,7 +16619,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 561 this -1926788825 +532445947 1 this.bits 2 @@ -16413,7 +16635,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 562 this -1926788825 +532445947 1 this.bits 2 @@ -16426,7 +16648,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 562 this -1926788825 +532445947 1 this.bits 2 @@ -16442,7 +16664,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 563 this -1926788825 +532445947 1 this.bits 2 @@ -16455,7 +16677,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 563 this -1926788825 +532445947 1 this.bits 2 @@ -16471,7 +16693,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 564 this -1926788825 +532445947 1 this.bits 2 @@ -16484,7 +16706,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 564 this -1926788825 +532445947 1 this.bits 2 @@ -16500,7 +16722,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 565 this -1926788825 +532445947 1 this.bits 2 @@ -16513,7 +16735,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 565 this -1926788825 +532445947 1 this.bits 2 @@ -16529,7 +16751,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 566 this -1926788825 +532445947 1 this.bits 2 @@ -16542,7 +16764,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 566 this -1926788825 +532445947 1 this.bits 0 @@ -16555,7 +16777,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 567 this -1926788825 +532445947 1 this.bits 0 @@ -16568,7 +16790,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 567 this -1926788825 +532445947 1 this.bits 0 @@ -16584,7 +16806,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 568 this -1926788825 +532445947 1 this.bits 0 @@ -16597,7 +16819,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 568 this -1926788825 +532445947 1 this.bits 0 @@ -16613,7 +16835,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 569 this -1926788825 +532445947 1 this.bits 0 @@ -16626,7 +16848,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 569 this -1926788825 +532445947 1 this.bits 0 @@ -16642,7 +16864,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 570 this -1926788825 +532445947 1 this.bits 0 @@ -16655,7 +16877,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 570 this -1926788825 +532445947 1 this.bits 0 @@ -16671,7 +16893,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 571 this -1926788825 +532445947 1 this.bits 0 @@ -16684,7 +16906,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 571 this -1926788825 +532445947 1 this.bits 0 @@ -16700,7 +16922,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 572 this -1926788825 +532445947 1 this.bits 0 @@ -16713,7 +16935,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 572 this -1926788825 +532445947 1 this.bits 0 @@ -16729,7 +16951,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 573 this -1926788825 +532445947 1 this.bits 0 @@ -16742,7 +16964,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 573 this -1926788825 +532445947 1 this.bits 0 @@ -16758,7 +16980,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 574 this -1926788825 +532445947 1 this.bits 0 @@ -16771,7 +16993,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 574 this -1926788825 +532445947 1 this.bits 0 @@ -16787,7 +17009,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 575 this -1926788825 +532445947 1 this.bits 0 @@ -16800,7 +17022,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 575 this -1926788825 +532445947 1 this.bits 1 @@ -16813,7 +17035,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 576 this -1926788825 +532445947 1 this.bits 1 @@ -16826,7 +17048,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 576 this -1926788825 +532445947 1 this.bits 1 @@ -16842,7 +17064,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 577 this -1926788825 +532445947 1 this.bits 1 @@ -16855,7 +17077,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 577 this -1926788825 +532445947 1 this.bits 1 @@ -16871,7 +17093,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 578 this -1926788825 +532445947 1 this.bits 1 @@ -16884,7 +17106,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 578 this -1926788825 +532445947 1 this.bits 1 @@ -16900,7 +17122,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 579 this -1926788825 +532445947 1 this.bits 1 @@ -16913,7 +17135,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 579 this -1926788825 +532445947 1 this.bits 1 @@ -16929,7 +17151,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 580 this -1926788825 +532445947 1 this.bits 1 @@ -16942,7 +17164,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 580 this -1926788825 +532445947 1 this.bits 1 @@ -16958,7 +17180,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 581 this -1926788825 +532445947 1 this.bits 1 @@ -16971,7 +17193,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 581 this -1926788825 +532445947 1 this.bits 1 @@ -16987,7 +17209,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 582 this -1926788825 +532445947 1 this.bits 1 @@ -17000,7 +17222,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 582 this -1926788825 +532445947 1 this.bits 1 @@ -17016,7 +17238,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 583 this -1926788825 +532445947 1 this.bits 1 @@ -17029,7 +17251,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 583 this -1926788825 +532445947 1 this.bits 1 @@ -17045,7 +17267,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 584 this -1926788825 +532445947 1 this.bits 1 @@ -17058,7 +17280,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 584 this -1926788825 +532445947 1 this.bits 0 @@ -17071,7 +17293,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 585 this -1926788825 +532445947 1 this.bits 0 @@ -17084,7 +17306,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 585 this -1926788825 +532445947 1 this.bits 0 @@ -17100,7 +17322,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 586 this -1926788825 +532445947 1 this.bits 0 @@ -17113,7 +17335,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 586 this -1926788825 +532445947 1 this.bits 0 @@ -17129,7 +17351,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 587 this -1926788825 +532445947 1 this.bits 0 @@ -17142,7 +17364,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 587 this -1926788825 +532445947 1 this.bits 0 @@ -17158,7 +17380,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 588 this -1926788825 +532445947 1 this.bits 0 @@ -17171,7 +17393,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 588 this -1926788825 +532445947 1 this.bits 0 @@ -17187,7 +17409,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 589 this -1926788825 +532445947 1 this.bits 0 @@ -17200,7 +17422,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 589 this -1926788825 +532445947 1 this.bits 0 @@ -17216,7 +17438,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 590 this -1926788825 +532445947 1 this.bits 0 @@ -17229,7 +17451,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 590 this -1926788825 +532445947 1 this.bits 0 @@ -17245,7 +17467,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 591 this -1926788825 +532445947 1 this.bits 0 @@ -17258,7 +17480,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 591 this -1926788825 +532445947 1 this.bits 0 @@ -17274,7 +17496,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 592 this -1926788825 +532445947 1 this.bits 0 @@ -17287,7 +17509,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 592 this -1926788825 +532445947 1 this.bits 0 @@ -17303,7 +17525,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 593 this -1926788825 +532445947 1 this.bits 0 @@ -17316,7 +17538,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 593 this -1926788825 +532445947 1 this.bits 2 @@ -17329,7 +17551,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 594 this -1926788825 +532445947 1 this.bits 2 @@ -17342,7 +17564,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 594 this -1926788825 +532445947 1 this.bits 2 @@ -17358,7 +17580,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 595 this -1926788825 +532445947 1 this.bits 2 @@ -17371,7 +17593,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 595 this -1926788825 +532445947 1 this.bits 2 @@ -17387,7 +17609,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 596 this -1926788825 +532445947 1 this.bits 2 @@ -17400,7 +17622,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 596 this -1926788825 +532445947 1 this.bits 2 @@ -17416,7 +17638,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 597 this -1926788825 +532445947 1 this.bits 2 @@ -17429,7 +17651,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 597 this -1926788825 +532445947 1 this.bits 2 @@ -17445,7 +17667,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 598 this -1926788825 +532445947 1 this.bits 2 @@ -17458,7 +17680,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 598 this -1926788825 +532445947 1 this.bits 2 @@ -17474,7 +17696,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 599 this -1926788825 +532445947 1 this.bits 2 @@ -17487,7 +17709,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 599 this -1926788825 +532445947 1 this.bits 2 @@ -17503,7 +17725,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 600 this -1926788825 +532445947 1 this.bits 2 @@ -17516,7 +17738,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 600 this -1926788825 +532445947 1 this.bits 2 @@ -17532,7 +17754,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 601 this -1926788825 +532445947 1 this.bits 2 @@ -17545,7 +17767,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 601 this -1926788825 +532445947 1 this.bits 2 @@ -17561,7 +17783,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 602 this -1926788825 +532445947 1 this.bits 2 @@ -17574,7 +17796,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 602 this -1926788825 +532445947 1 this.bits 0 @@ -17587,7 +17809,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 603 this -1926788825 +532445947 1 this.bits 0 @@ -17600,7 +17822,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 603 this -1926788825 +532445947 1 this.bits 0 @@ -17616,7 +17838,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 604 this -1926788825 +532445947 1 this.bits 0 @@ -17629,7 +17851,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 604 this -1926788825 +532445947 1 this.bits 0 @@ -17645,7 +17867,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 605 this -1926788825 +532445947 1 this.bits 0 @@ -17658,7 +17880,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 605 this -1926788825 +532445947 1 this.bits 0 @@ -17674,7 +17896,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 606 this -1926788825 +532445947 1 this.bits 0 @@ -17687,7 +17909,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 606 this -1926788825 +532445947 1 this.bits 0 @@ -17703,7 +17925,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 607 this -1926788825 +532445947 1 this.bits 0 @@ -17716,7 +17938,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 607 this -1926788825 +532445947 1 this.bits 0 @@ -17732,7 +17954,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 608 this -1926788825 +532445947 1 this.bits 0 @@ -17745,7 +17967,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 608 this -1926788825 +532445947 1 this.bits 0 @@ -17761,7 +17983,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 609 this -1926788825 +532445947 1 this.bits 0 @@ -17774,7 +17996,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 609 this -1926788825 +532445947 1 this.bits 0 @@ -17790,7 +18012,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 610 this -1926788825 +532445947 1 this.bits 0 @@ -17803,7 +18025,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 610 this -1926788825 +532445947 1 this.bits 0 @@ -17819,7 +18041,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 611 this -1926788825 +532445947 1 this.bits 0 @@ -17832,7 +18054,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 611 this -1926788825 +532445947 1 this.bits 128 @@ -17845,7 +18067,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 612 this -1926788825 +532445947 1 this.bits 128 @@ -17858,7 +18080,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 612 this -1926788825 +532445947 1 this.bits 128 @@ -17874,7 +18096,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 613 this -1926788825 +532445947 1 this.bits 128 @@ -17887,7 +18109,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 613 this -1926788825 +532445947 1 this.bits 128 @@ -17903,7 +18125,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 614 this -1926788825 +532445947 1 this.bits 128 @@ -17916,7 +18138,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 614 this -1926788825 +532445947 1 this.bits 128 @@ -17932,7 +18154,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 615 this -1926788825 +532445947 1 this.bits 128 @@ -17945,7 +18167,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 615 this -1926788825 +532445947 1 this.bits 128 @@ -17961,7 +18183,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 616 this -1926788825 +532445947 1 this.bits 128 @@ -17974,7 +18196,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 616 this -1926788825 +532445947 1 this.bits 128 @@ -17990,7 +18212,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 617 this -1926788825 +532445947 1 this.bits 128 @@ -18003,7 +18225,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 617 this -1926788825 +532445947 1 this.bits 128 @@ -18019,7 +18241,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 618 this -1926788825 +532445947 1 this.bits 128 @@ -18032,7 +18254,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 618 this -1926788825 +532445947 1 this.bits 128 @@ -18048,7 +18270,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 619 this -1926788825 +532445947 1 this.bits 128 @@ -18061,7 +18283,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 619 this -1926788825 +532445947 1 this.bits 128 @@ -18077,7 +18299,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 620 this -1926788825 +532445947 1 this.bits 128 @@ -18090,7 +18312,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 620 this -1926788825 +532445947 1 this.bits 0 @@ -18103,7 +18325,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 621 this -1926788825 +532445947 1 this.bits 0 @@ -18116,7 +18338,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 621 this -1926788825 +532445947 1 this.bits 0 @@ -18132,7 +18354,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 622 this -1926788825 +532445947 1 this.bits 0 @@ -18145,7 +18367,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 622 this -1926788825 +532445947 1 this.bits 0 @@ -18161,7 +18383,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 623 this -1926788825 +532445947 1 this.bits 0 @@ -18174,7 +18396,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 623 this -1926788825 +532445947 1 this.bits 0 @@ -18190,7 +18412,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 624 this -1926788825 +532445947 1 this.bits 0 @@ -18203,7 +18425,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 624 this -1926788825 +532445947 1 this.bits 0 @@ -18219,7 +18441,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 625 this -1926788825 +532445947 1 this.bits 0 @@ -18232,7 +18454,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 625 this -1926788825 +532445947 1 this.bits 0 @@ -18248,7 +18470,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 626 this -1926788825 +532445947 1 this.bits 0 @@ -18261,7 +18483,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 626 this -1926788825 +532445947 1 this.bits 0 @@ -18277,7 +18499,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 627 this -1926788825 +532445947 1 this.bits 0 @@ -18290,7 +18512,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 627 this -1926788825 +532445947 1 this.bits 0 @@ -18306,7 +18528,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 628 this -1926788825 +532445947 1 this.bits 0 @@ -18319,7 +18541,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 628 this -1926788825 +532445947 1 this.bits 0 @@ -18335,7 +18557,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 629 this -1926788825 +532445947 1 this.bits 0 @@ -18348,7 +18570,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 629 this -1926788825 +532445947 1 this.bits 128 @@ -18361,7 +18583,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 630 this -1926788825 +532445947 1 this.bits 128 @@ -18374,7 +18596,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 630 this -1926788825 +532445947 1 this.bits 128 @@ -18390,7 +18612,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 631 this -1926788825 +532445947 1 this.bits 128 @@ -18403,7 +18625,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 631 this -1926788825 +532445947 1 this.bits 128 @@ -18419,7 +18641,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 632 this -1926788825 +532445947 1 this.bits 128 @@ -18432,7 +18654,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 632 this -1926788825 +532445947 1 this.bits 128 @@ -18448,7 +18670,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 633 this -1926788825 +532445947 1 this.bits 128 @@ -18461,7 +18683,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 633 this -1926788825 +532445947 1 this.bits 128 @@ -18477,7 +18699,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 634 this -1926788825 +532445947 1 this.bits 128 @@ -18490,7 +18712,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 634 this -1926788825 +532445947 1 this.bits 128 @@ -18506,7 +18728,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 635 this -1926788825 +532445947 1 this.bits 128 @@ -18519,7 +18741,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 635 this -1926788825 +532445947 1 this.bits 128 @@ -18535,7 +18757,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 636 this -1926788825 +532445947 1 this.bits 128 @@ -18548,7 +18770,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 636 this -1926788825 +532445947 1 this.bits 128 @@ -18564,7 +18786,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 637 this -1926788825 +532445947 1 this.bits 128 @@ -18577,7 +18799,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 637 this -1926788825 +532445947 1 this.bits 128 @@ -18593,7 +18815,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 638 this -1926788825 +532445947 1 this.bits 128 @@ -18606,7 +18828,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 638 this -1926788825 +532445947 1 this.bits 0 @@ -18619,7 +18841,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 639 this -1926788825 +532445947 1 this.bits 0 @@ -18632,7 +18854,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 639 this -1926788825 +532445947 1 this.bits 0 @@ -18648,7 +18870,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 640 this -1926788825 +532445947 1 this.bits 0 @@ -18661,7 +18883,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 640 this -1926788825 +532445947 1 this.bits 0 @@ -18677,7 +18899,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 641 this -1926788825 +532445947 1 this.bits 0 @@ -18690,7 +18912,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 641 this -1926788825 +532445947 1 this.bits 0 @@ -18706,7 +18928,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 642 this -1926788825 +532445947 1 this.bits 0 @@ -18719,7 +18941,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 642 this -1926788825 +532445947 1 this.bits 0 @@ -18735,7 +18957,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 643 this -1926788825 +532445947 1 this.bits 0 @@ -18748,7 +18970,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 643 this -1926788825 +532445947 1 this.bits 0 @@ -18764,7 +18986,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 644 this -1926788825 +532445947 1 this.bits 0 @@ -18777,7 +18999,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 644 this -1926788825 +532445947 1 this.bits 0 @@ -18793,7 +19015,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 645 this -1926788825 +532445947 1 this.bits 0 @@ -18806,7 +19028,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 645 this -1926788825 +532445947 1 this.bits 0 @@ -18822,7 +19044,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 646 this -1926788825 +532445947 1 this.bits 0 @@ -18835,7 +19057,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 646 this -1926788825 +532445947 1 this.bits 0 @@ -18851,7 +19073,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 647 this -1926788825 +532445947 1 this.bits 0 @@ -18864,7 +19086,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 647 this -1926788825 +532445947 1 this.bits 64 @@ -18877,7 +19099,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 648 this -1926788825 +532445947 1 this.bits 64 @@ -18890,7 +19112,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 648 this -1926788825 +532445947 1 this.bits 64 @@ -18906,7 +19128,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 649 this -1926788825 +532445947 1 this.bits 64 @@ -18919,7 +19141,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 649 this -1926788825 +532445947 1 this.bits 64 @@ -18935,7 +19157,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 650 this -1926788825 +532445947 1 this.bits 64 @@ -18948,7 +19170,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 650 this -1926788825 +532445947 1 this.bits 64 @@ -18964,7 +19186,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 651 this -1926788825 +532445947 1 this.bits 64 @@ -18977,7 +19199,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 651 this -1926788825 +532445947 1 this.bits 64 @@ -18993,7 +19215,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 652 this -1926788825 +532445947 1 this.bits 64 @@ -19006,7 +19228,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 652 this -1926788825 +532445947 1 this.bits 64 @@ -19022,7 +19244,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 653 this -1926788825 +532445947 1 this.bits 64 @@ -19035,7 +19257,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 653 this -1926788825 +532445947 1 this.bits 64 @@ -19051,7 +19273,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 654 this -1926788825 +532445947 1 this.bits 64 @@ -19064,7 +19286,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 654 this -1926788825 +532445947 1 this.bits 64 @@ -19080,7 +19302,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 655 this -1926788825 +532445947 1 this.bits 64 @@ -19093,7 +19315,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 655 this -1926788825 +532445947 1 this.bits 64 @@ -19109,7 +19331,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 656 this -1926788825 +532445947 1 this.bits 64 @@ -19122,7 +19344,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 656 this -1926788825 +532445947 1 this.bits 0 @@ -19135,7 +19357,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 657 this -1926788825 +532445947 1 this.bits 0 @@ -19148,7 +19370,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 657 this -1926788825 +532445947 1 this.bits 0 @@ -19164,7 +19386,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 658 this -1926788825 +532445947 1 this.bits 0 @@ -19177,7 +19399,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 658 this -1926788825 +532445947 1 this.bits 0 @@ -19193,7 +19415,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 659 this -1926788825 +532445947 1 this.bits 0 @@ -19206,7 +19428,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 659 this -1926788825 +532445947 1 this.bits 0 @@ -19222,7 +19444,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 660 this -1926788825 +532445947 1 this.bits 0 @@ -19235,7 +19457,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 660 this -1926788825 +532445947 1 this.bits 0 @@ -19251,7 +19473,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 661 this -1926788825 +532445947 1 this.bits 0 @@ -19264,7 +19486,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 661 this -1926788825 +532445947 1 this.bits 0 @@ -19280,7 +19502,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 662 this -1926788825 +532445947 1 this.bits 0 @@ -19293,7 +19515,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 662 this -1926788825 +532445947 1 this.bits 0 @@ -19309,7 +19531,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 663 this -1926788825 +532445947 1 this.bits 0 @@ -19322,7 +19544,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 663 this -1926788825 +532445947 1 this.bits 0 @@ -19338,7 +19560,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 664 this -1926788825 +532445947 1 this.bits 0 @@ -19351,7 +19573,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 664 this -1926788825 +532445947 1 this.bits 0 @@ -19367,7 +19589,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 665 this -1926788825 +532445947 1 this.bits 0 @@ -19380,7 +19602,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 665 this -1926788825 +532445947 1 this.bits 128 @@ -19393,7 +19615,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 666 this -1926788825 +532445947 1 this.bits 128 @@ -19406,7 +19628,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 666 this -1926788825 +532445947 1 this.bits 128 @@ -19422,7 +19644,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 667 this -1926788825 +532445947 1 this.bits 128 @@ -19435,7 +19657,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 667 this -1926788825 +532445947 1 this.bits 128 @@ -19451,7 +19673,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 668 this -1926788825 +532445947 1 this.bits 128 @@ -19464,7 +19686,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 668 this -1926788825 +532445947 1 this.bits 128 @@ -19480,7 +19702,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 669 this -1926788825 +532445947 1 this.bits 128 @@ -19493,7 +19715,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 669 this -1926788825 +532445947 1 this.bits 128 @@ -19509,7 +19731,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 670 this -1926788825 +532445947 1 this.bits 128 @@ -19522,7 +19744,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 670 this -1926788825 +532445947 1 this.bits 128 @@ -19538,7 +19760,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 671 this -1926788825 +532445947 1 this.bits 128 @@ -19551,7 +19773,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 671 this -1926788825 +532445947 1 this.bits 128 @@ -19567,7 +19789,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 672 this -1926788825 +532445947 1 this.bits 128 @@ -19580,7 +19802,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 672 this -1926788825 +532445947 1 this.bits 128 @@ -19596,7 +19818,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 673 this -1926788825 +532445947 1 this.bits 128 @@ -19609,7 +19831,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 673 this -1926788825 +532445947 1 this.bits 128 @@ -19625,7 +19847,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 674 this -1926788825 +532445947 1 this.bits 128 @@ -19638,7 +19860,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 674 this -1926788825 +532445947 1 this.bits 0 @@ -19651,7 +19873,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 675 this -1926788825 +532445947 1 this.bits 0 @@ -19664,7 +19886,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 675 this -1926788825 +532445947 1 this.bits 0 @@ -19680,7 +19902,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 676 this -1926788825 +532445947 1 this.bits 0 @@ -19693,7 +19915,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 676 this -1926788825 +532445947 1 this.bits 0 @@ -19709,7 +19931,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 677 this -1926788825 +532445947 1 this.bits 0 @@ -19722,7 +19944,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 677 this -1926788825 +532445947 1 this.bits 0 @@ -19738,7 +19960,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 678 this -1926788825 +532445947 1 this.bits 0 @@ -19751,7 +19973,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 678 this -1926788825 +532445947 1 this.bits 0 @@ -19767,7 +19989,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 679 this -1926788825 +532445947 1 this.bits 0 @@ -19780,7 +20002,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 679 this -1926788825 +532445947 1 this.bits 0 @@ -19796,7 +20018,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 680 this -1926788825 +532445947 1 this.bits 0 @@ -19809,7 +20031,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 680 this -1926788825 +532445947 1 this.bits 0 @@ -19825,7 +20047,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 681 this -1926788825 +532445947 1 this.bits 0 @@ -19838,7 +20060,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 681 this -1926788825 +532445947 1 this.bits 0 @@ -19854,7 +20076,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 682 this -1926788825 +532445947 1 this.bits 0 @@ -19867,7 +20089,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 682 this -1926788825 +532445947 1 this.bits 0 @@ -19883,7 +20105,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 683 this -1926788825 +532445947 1 this.bits 0 @@ -19896,7 +20118,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 683 this -1926788825 +532445947 1 this.bits 16 @@ -19909,7 +20131,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 684 this -1926788825 +532445947 1 this.bits 16 @@ -19922,7 +20144,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 684 this -1926788825 +532445947 1 this.bits 16 @@ -19938,7 +20160,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 685 this -1926788825 +532445947 1 this.bits 16 @@ -19951,7 +20173,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 685 this -1926788825 +532445947 1 this.bits 16 @@ -19967,7 +20189,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 686 this -1926788825 +532445947 1 this.bits 16 @@ -19980,7 +20202,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 686 this -1926788825 +532445947 1 this.bits 16 @@ -19996,7 +20218,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 687 this -1926788825 +532445947 1 this.bits 16 @@ -20009,7 +20231,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 687 this -1926788825 +532445947 1 this.bits 16 @@ -20025,7 +20247,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 688 this -1926788825 +532445947 1 this.bits 16 @@ -20038,7 +20260,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 688 this -1926788825 +532445947 1 this.bits 16 @@ -20054,7 +20276,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 689 this -1926788825 +532445947 1 this.bits 16 @@ -20067,7 +20289,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 689 this -1926788825 +532445947 1 this.bits 16 @@ -20083,7 +20305,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 690 this -1926788825 +532445947 1 this.bits 16 @@ -20096,7 +20318,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 690 this -1926788825 +532445947 1 this.bits 16 @@ -20112,7 +20334,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 691 this -1926788825 +532445947 1 this.bits 16 @@ -20125,7 +20347,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 691 this -1926788825 +532445947 1 this.bits 16 @@ -20141,7 +20363,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 692 this -1926788825 +532445947 1 this.bits 16 @@ -20154,7 +20376,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 692 this -1926788825 +532445947 1 this.bits 0 @@ -20167,7 +20389,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 693 this -1926788825 +532445947 1 this.bits 0 @@ -20180,7 +20402,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 693 this -1926788825 +532445947 1 this.bits 0 @@ -20196,7 +20418,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 694 this -1926788825 +532445947 1 this.bits 0 @@ -20209,7 +20431,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 694 this -1926788825 +532445947 1 this.bits 0 @@ -20225,7 +20447,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 695 this -1926788825 +532445947 1 this.bits 0 @@ -20238,7 +20460,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 695 this -1926788825 +532445947 1 this.bits 0 @@ -20254,7 +20476,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 696 this -1926788825 +532445947 1 this.bits 0 @@ -20267,7 +20489,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 696 this -1926788825 +532445947 1 this.bits 0 @@ -20283,7 +20505,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 697 this -1926788825 +532445947 1 this.bits 0 @@ -20296,7 +20518,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 697 this -1926788825 +532445947 1 this.bits 0 @@ -20312,7 +20534,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 698 this -1926788825 +532445947 1 this.bits 0 @@ -20325,7 +20547,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 698 this -1926788825 +532445947 1 this.bits 0 @@ -20341,7 +20563,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 699 this -1926788825 +532445947 1 this.bits 0 @@ -20354,7 +20576,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 699 this -1926788825 +532445947 1 this.bits 0 @@ -20370,7 +20592,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 700 this -1926788825 +532445947 1 this.bits 0 @@ -20383,7 +20605,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 700 this -1926788825 +532445947 1 this.bits 0 @@ -20399,7 +20621,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 701 this -1926788825 +532445947 1 this.bits 0 @@ -20412,7 +20634,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 701 this -1926788825 +532445947 1 this.bits 64 @@ -20425,7 +20647,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 702 this -1926788825 +532445947 1 this.bits 64 @@ -20438,7 +20660,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 702 this -1926788825 +532445947 1 this.bits 64 @@ -20454,7 +20676,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 703 this -1926788825 +532445947 1 this.bits 64 @@ -20467,7 +20689,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 703 this -1926788825 +532445947 1 this.bits 64 @@ -20483,7 +20705,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 704 this -1926788825 +532445947 1 this.bits 64 @@ -20496,7 +20718,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 704 this -1926788825 +532445947 1 this.bits 64 @@ -20512,7 +20734,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 705 this -1926788825 +532445947 1 this.bits 64 @@ -20525,7 +20747,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 705 this -1926788825 +532445947 1 this.bits 64 @@ -20541,7 +20763,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 706 this -1926788825 +532445947 1 this.bits 64 @@ -20554,7 +20776,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 706 this -1926788825 +532445947 1 this.bits 64 @@ -20570,7 +20792,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 707 this -1926788825 +532445947 1 this.bits 64 @@ -20583,7 +20805,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 707 this -1926788825 +532445947 1 this.bits 64 @@ -20599,7 +20821,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 708 this -1926788825 +532445947 1 this.bits 64 @@ -20612,7 +20834,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 708 this -1926788825 +532445947 1 this.bits 64 @@ -20628,7 +20850,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 709 this -1926788825 +532445947 1 this.bits 64 @@ -20641,7 +20863,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 709 this -1926788825 +532445947 1 this.bits 64 @@ -20657,7 +20879,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 710 this -1926788825 +532445947 1 this.bits 64 @@ -20670,7 +20892,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 710 this -1926788825 +532445947 1 this.bits 0 @@ -20683,7 +20905,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 711 this -1926788825 +532445947 1 this.bits 0 @@ -20696,7 +20918,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 711 this -1926788825 +532445947 1 this.bits 0 @@ -20712,7 +20934,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 712 this -1926788825 +532445947 1 this.bits 0 @@ -20725,7 +20947,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 712 this -1926788825 +532445947 1 this.bits 0 @@ -20741,7 +20963,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 713 this -1926788825 +532445947 1 this.bits 0 @@ -20754,7 +20976,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 713 this -1926788825 +532445947 1 this.bits 0 @@ -20770,7 +20992,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 714 this -1926788825 +532445947 1 this.bits 0 @@ -20783,7 +21005,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 714 this -1926788825 +532445947 1 this.bits 0 @@ -20799,7 +21021,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 715 this -1926788825 +532445947 1 this.bits 0 @@ -20812,7 +21034,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 715 this -1926788825 +532445947 1 this.bits 0 @@ -20828,7 +21050,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 716 this -1926788825 +532445947 1 this.bits 0 @@ -20841,7 +21063,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 716 this -1926788825 +532445947 1 this.bits 0 @@ -20857,7 +21079,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 717 this -1926788825 +532445947 1 this.bits 0 @@ -20870,7 +21092,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 717 this -1926788825 +532445947 1 this.bits 0 @@ -20886,7 +21108,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 718 this -1926788825 +532445947 1 this.bits 0 @@ -20899,7 +21121,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 718 this -1926788825 +532445947 1 this.bits 0 @@ -20915,7 +21137,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 719 this -1926788825 +532445947 1 this.bits 0 @@ -20928,7 +21150,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 719 this -1926788825 +532445947 1 this.bits 32 @@ -20941,7 +21163,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 720 this -1926788825 +532445947 1 this.bits 32 @@ -20954,7 +21176,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 720 this -1926788825 +532445947 1 this.bits 32 @@ -20970,7 +21192,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 721 this -1926788825 +532445947 1 this.bits 32 @@ -20983,7 +21205,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 721 this -1926788825 +532445947 1 this.bits 32 @@ -20999,7 +21221,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 722 this -1926788825 +532445947 1 this.bits 32 @@ -21012,7 +21234,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 722 this -1926788825 +532445947 1 this.bits 32 @@ -21028,7 +21250,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 723 this -1926788825 +532445947 1 this.bits 32 @@ -21041,7 +21263,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 723 this -1926788825 +532445947 1 this.bits 32 @@ -21057,7 +21279,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 724 this -1926788825 +532445947 1 this.bits 32 @@ -21070,7 +21292,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 724 this -1926788825 +532445947 1 this.bits 32 @@ -21086,7 +21308,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 725 this -1926788825 +532445947 1 this.bits 32 @@ -21099,7 +21321,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 725 this -1926788825 +532445947 1 this.bits 32 @@ -21115,7 +21337,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 726 this -1926788825 +532445947 1 this.bits 32 @@ -21128,7 +21350,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 726 this -1926788825 +532445947 1 this.bits 32 @@ -21144,7 +21366,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 727 this -1926788825 +532445947 1 this.bits 32 @@ -21157,7 +21379,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 727 this -1926788825 +532445947 1 this.bits 32 @@ -21173,7 +21395,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 728 this -1926788825 +532445947 1 this.bits 32 @@ -21186,7 +21408,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 728 this -1926788825 +532445947 1 this.bits 0 @@ -21199,7 +21421,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 729 this -1926788825 +532445947 1 this.bits 0 @@ -21212,7 +21434,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 729 this -1926788825 +532445947 1 this.bits 0 @@ -21228,7 +21450,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 730 this -1926788825 +532445947 1 this.bits 0 @@ -21241,7 +21463,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 730 this -1926788825 +532445947 1 this.bits 0 @@ -21257,7 +21479,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 731 this -1926788825 +532445947 1 this.bits 0 @@ -21270,7 +21492,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 731 this -1926788825 +532445947 1 this.bits 0 @@ -21286,7 +21508,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 732 this -1926788825 +532445947 1 this.bits 0 @@ -21299,7 +21521,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 732 this -1926788825 +532445947 1 this.bits 0 @@ -21315,7 +21537,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 733 this -1926788825 +532445947 1 this.bits 0 @@ -21328,7 +21550,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 733 this -1926788825 +532445947 1 this.bits 0 @@ -21344,7 +21566,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 734 this -1926788825 +532445947 1 this.bits 0 @@ -21357,7 +21579,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 734 this -1926788825 +532445947 1 this.bits 0 @@ -21373,7 +21595,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 735 this -1926788825 +532445947 1 this.bits 0 @@ -21386,7 +21608,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 735 this -1926788825 +532445947 1 this.bits 0 @@ -21402,7 +21624,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 736 this -1926788825 +532445947 1 this.bits 0 @@ -21415,7 +21637,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 736 this -1926788825 +532445947 1 this.bits 0 @@ -21431,7 +21653,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 737 this -1926788825 +532445947 1 this.bits 0 @@ -21444,7 +21666,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 737 this -1926788825 +532445947 1 this.bits 64 @@ -21457,7 +21679,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 738 this -1926788825 +532445947 1 this.bits 64 @@ -21470,7 +21692,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 738 this -1926788825 +532445947 1 this.bits 64 @@ -21486,7 +21708,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 739 this -1926788825 +532445947 1 this.bits 64 @@ -21499,7 +21721,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 739 this -1926788825 +532445947 1 this.bits 64 @@ -21515,7 +21737,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 740 this -1926788825 +532445947 1 this.bits 64 @@ -21528,7 +21750,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 740 this -1926788825 +532445947 1 this.bits 64 @@ -21544,7 +21766,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 741 this -1926788825 +532445947 1 this.bits 64 @@ -21557,7 +21779,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 741 this -1926788825 +532445947 1 this.bits 64 @@ -21573,7 +21795,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 742 this -1926788825 +532445947 1 this.bits 64 @@ -21586,7 +21808,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 742 this -1926788825 +532445947 1 this.bits 64 @@ -21602,7 +21824,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 743 this -1926788825 +532445947 1 this.bits 64 @@ -21615,7 +21837,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 743 this -1926788825 +532445947 1 this.bits 64 @@ -21631,7 +21853,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 744 this -1926788825 +532445947 1 this.bits 64 @@ -21644,7 +21866,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 744 this -1926788825 +532445947 1 this.bits 64 @@ -21660,7 +21882,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 745 this -1926788825 +532445947 1 this.bits 64 @@ -21673,7 +21895,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 745 this -1926788825 +532445947 1 this.bits 64 @@ -21689,7 +21911,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 746 this -1926788825 +532445947 1 this.bits 64 @@ -21702,7 +21924,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 746 this -1926788825 +532445947 1 this.bits 0 @@ -21715,7 +21937,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 747 this -1926788825 +532445947 1 this.bits 0 @@ -21728,7 +21950,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 747 this -1926788825 +532445947 1 this.bits 0 @@ -21744,7 +21966,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 748 this -1926788825 +532445947 1 this.bits 0 @@ -21757,7 +21979,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 748 this -1926788825 +532445947 1 this.bits 0 @@ -21773,7 +21995,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 749 this -1926788825 +532445947 1 this.bits 0 @@ -21786,7 +22008,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 749 this -1926788825 +532445947 1 this.bits 0 @@ -21802,7 +22024,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 750 this -1926788825 +532445947 1 this.bits 0 @@ -21815,7 +22037,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 750 this -1926788825 +532445947 1 this.bits 0 @@ -21831,7 +22053,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 751 this -1926788825 +532445947 1 this.bits 0 @@ -21844,7 +22066,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 751 this -1926788825 +532445947 1 this.bits 0 @@ -21860,7 +22082,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 752 this -1926788825 +532445947 1 this.bits 0 @@ -21873,7 +22095,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 752 this -1926788825 +532445947 1 this.bits 0 @@ -21889,7 +22111,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 753 this -1926788825 +532445947 1 this.bits 0 @@ -21902,7 +22124,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 753 this -1926788825 +532445947 1 this.bits 0 @@ -21918,7 +22140,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 754 this -1926788825 +532445947 1 this.bits 0 @@ -21931,7 +22153,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 754 this -1926788825 +532445947 1 this.bits 0 @@ -21947,7 +22169,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 755 this -1926788825 +532445947 1 this.bits 0 @@ -21960,7 +22182,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 755 this -1926788825 +532445947 1 this.bits 8 @@ -21973,7 +22195,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 756 this -1926788825 +532445947 1 this.bits 8 @@ -21986,7 +22208,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 756 this -1926788825 +532445947 1 this.bits 8 @@ -22002,7 +22224,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 757 this -1926788825 +532445947 1 this.bits 8 @@ -22015,7 +22237,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 757 this -1926788825 +532445947 1 this.bits 8 @@ -22031,7 +22253,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 758 this -1926788825 +532445947 1 this.bits 8 @@ -22044,7 +22266,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 758 this -1926788825 +532445947 1 this.bits 8 @@ -22060,7 +22282,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 759 this -1926788825 +532445947 1 this.bits 8 @@ -22073,7 +22295,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 759 this -1926788825 +532445947 1 this.bits 8 @@ -22089,7 +22311,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 760 this -1926788825 +532445947 1 this.bits 8 @@ -22102,7 +22324,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 760 this -1926788825 +532445947 1 this.bits 8 @@ -22118,7 +22340,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 761 this -1926788825 +532445947 1 this.bits 8 @@ -22131,7 +22353,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 761 this -1926788825 +532445947 1 this.bits 8 @@ -22147,7 +22369,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 762 this -1926788825 +532445947 1 this.bits 8 @@ -22160,7 +22382,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 762 this -1926788825 +532445947 1 this.bits 8 @@ -22176,7 +22398,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 763 this -1926788825 +532445947 1 this.bits 8 @@ -22189,7 +22411,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 763 this -1926788825 +532445947 1 this.bits 8 @@ -22205,7 +22427,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 764 this -1926788825 +532445947 1 this.bits 8 @@ -22218,7 +22440,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 764 this -1926788825 +532445947 1 this.bits 0 @@ -22231,7 +22453,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 765 this -1926788825 +532445947 1 this.bits 0 @@ -22244,7 +22466,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 765 this -1926788825 +532445947 1 this.bits 0 @@ -22260,7 +22482,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 766 this -1926788825 +532445947 1 this.bits 0 @@ -22273,7 +22495,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 766 this -1926788825 +532445947 1 this.bits 0 @@ -22289,7 +22511,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 767 this -1926788825 +532445947 1 this.bits 0 @@ -22302,7 +22524,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 767 this -1926788825 +532445947 1 this.bits 0 @@ -22318,7 +22540,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 768 this -1926788825 +532445947 1 this.bits 0 @@ -22331,7 +22553,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 768 this -1926788825 +532445947 1 this.bits 0 @@ -22347,7 +22569,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 769 this -1926788825 +532445947 1 this.bits 0 @@ -22360,7 +22582,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 769 this -1926788825 +532445947 1 this.bits 0 @@ -22376,7 +22598,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 770 this -1926788825 +532445947 1 this.bits 0 @@ -22389,7 +22611,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 770 this -1926788825 +532445947 1 this.bits 0 @@ -22405,7 +22627,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 771 this -1926788825 +532445947 1 this.bits 0 @@ -22418,7 +22640,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 771 this -1926788825 +532445947 1 this.bits 0 @@ -22434,7 +22656,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 772 this -1926788825 +532445947 1 this.bits 0 @@ -22447,7 +22669,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 772 this -1926788825 +532445947 1 this.bits 0 @@ -22463,7 +22685,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 773 this -1926788825 +532445947 1 this.bits 0 @@ -22476,7 +22698,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 773 this -1926788825 +532445947 1 this.bits 128 @@ -22489,7 +22711,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 774 this -1926788825 +532445947 1 this.bits 128 @@ -22502,7 +22724,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 774 this -1926788825 +532445947 1 this.bits 128 @@ -22518,7 +22740,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 775 this -1926788825 +532445947 1 this.bits 128 @@ -22531,7 +22753,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 775 this -1926788825 +532445947 1 this.bits 128 @@ -22547,7 +22769,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 776 this -1926788825 +532445947 1 this.bits 128 @@ -22560,7 +22782,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 776 this -1926788825 +532445947 1 this.bits 128 @@ -22576,7 +22798,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 777 this -1926788825 +532445947 1 this.bits 128 @@ -22589,7 +22811,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 777 this -1926788825 +532445947 1 this.bits 128 @@ -22605,7 +22827,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 778 this -1926788825 +532445947 1 this.bits 128 @@ -22618,7 +22840,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 778 this -1926788825 +532445947 1 this.bits 128 @@ -22634,7 +22856,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 779 this -1926788825 +532445947 1 this.bits 128 @@ -22647,7 +22869,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 779 this -1926788825 +532445947 1 this.bits 128 @@ -22663,7 +22885,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 780 this -1926788825 +532445947 1 this.bits 128 @@ -22676,7 +22898,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 780 this -1926788825 +532445947 1 this.bits 128 @@ -22692,7 +22914,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 781 this -1926788825 +532445947 1 this.bits 128 @@ -22705,7 +22927,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 781 this -1926788825 +532445947 1 this.bits 128 @@ -22721,7 +22943,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 782 this -1926788825 +532445947 1 this.bits 128 @@ -22734,7 +22956,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 782 this -1926788825 +532445947 1 this.bits 0 @@ -22747,7 +22969,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 783 this -1926788825 +532445947 1 this.bits 0 @@ -22760,7 +22982,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 783 this -1926788825 +532445947 1 this.bits 0 @@ -22776,7 +22998,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 784 this -1926788825 +532445947 1 this.bits 0 @@ -22789,7 +23011,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 784 this -1926788825 +532445947 1 this.bits 0 @@ -22805,7 +23027,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 785 this -1926788825 +532445947 1 this.bits 0 @@ -22818,7 +23040,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 785 this -1926788825 +532445947 1 this.bits 0 @@ -22834,7 +23056,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 786 this -1926788825 +532445947 1 this.bits 0 @@ -22847,7 +23069,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 786 this -1926788825 +532445947 1 this.bits 0 @@ -22863,7 +23085,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 787 this -1926788825 +532445947 1 this.bits 0 @@ -22876,7 +23098,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 787 this -1926788825 +532445947 1 this.bits 0 @@ -22892,7 +23114,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 788 this -1926788825 +532445947 1 this.bits 0 @@ -22905,7 +23127,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 788 this -1926788825 +532445947 1 this.bits 0 @@ -22921,7 +23143,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 789 this -1926788825 +532445947 1 this.bits 0 @@ -22934,7 +23156,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 789 this -1926788825 +532445947 1 this.bits 0 @@ -22950,7 +23172,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 790 this -1926788825 +532445947 1 this.bits 0 @@ -22963,7 +23185,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 790 this -1926788825 +532445947 1 this.bits 0 @@ -22979,7 +23201,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 791 this -1926788825 +532445947 1 this.bits 0 @@ -22992,7 +23214,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 791 this -1926788825 +532445947 1 this.bits 2 @@ -23005,7 +23227,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 792 this -1926788825 +532445947 1 this.bits 2 @@ -23018,7 +23240,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 792 this -1926788825 +532445947 1 this.bits 2 @@ -23034,7 +23256,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 793 this -1926788825 +532445947 1 this.bits 2 @@ -23047,7 +23269,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 793 this -1926788825 +532445947 1 this.bits 2 @@ -23063,7 +23285,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 794 this -1926788825 +532445947 1 this.bits 2 @@ -23076,7 +23298,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 794 this -1926788825 +532445947 1 this.bits 2 @@ -23092,7 +23314,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 795 this -1926788825 +532445947 1 this.bits 2 @@ -23105,7 +23327,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 795 this -1926788825 +532445947 1 this.bits 2 @@ -23121,7 +23343,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 796 this -1926788825 +532445947 1 this.bits 2 @@ -23134,7 +23356,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 796 this -1926788825 +532445947 1 this.bits 2 @@ -23150,7 +23372,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 797 this -1926788825 +532445947 1 this.bits 2 @@ -23163,7 +23385,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 797 this -1926788825 +532445947 1 this.bits 2 @@ -23179,7 +23401,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 798 this -1926788825 +532445947 1 this.bits 2 @@ -23192,7 +23414,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 798 this -1926788825 +532445947 1 this.bits 2 @@ -23208,7 +23430,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 799 this -1926788825 +532445947 1 this.bits 2 @@ -23221,7 +23443,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 799 this -1926788825 +532445947 1 this.bits 2 @@ -23237,7 +23459,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 800 this -1926788825 +532445947 1 this.bits 2 @@ -23250,7 +23472,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 800 this -1926788825 +532445947 1 this.bits 0 @@ -23263,7 +23485,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 801 this -1926788825 +532445947 1 this.bits 0 @@ -23276,7 +23498,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 801 this -1926788825 +532445947 1 this.bits 0 @@ -23292,7 +23514,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 802 this -1926788825 +532445947 1 this.bits 0 @@ -23305,7 +23527,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 802 this -1926788825 +532445947 1 this.bits 0 @@ -23321,7 +23543,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 803 this -1926788825 +532445947 1 this.bits 0 @@ -23334,7 +23556,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 803 this -1926788825 +532445947 1 this.bits 0 @@ -23350,7 +23572,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 804 this -1926788825 +532445947 1 this.bits 0 @@ -23363,7 +23585,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 804 this -1926788825 +532445947 1 this.bits 0 @@ -23379,7 +23601,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 805 this -1926788825 +532445947 1 this.bits 0 @@ -23392,7 +23614,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 805 this -1926788825 +532445947 1 this.bits 0 @@ -23408,7 +23630,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 806 this -1926788825 +532445947 1 this.bits 0 @@ -23421,7 +23643,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 806 this -1926788825 +532445947 1 this.bits 0 @@ -23437,7 +23659,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 807 this -1926788825 +532445947 1 this.bits 0 @@ -23450,7 +23672,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 807 this -1926788825 +532445947 1 this.bits 0 @@ -23466,7 +23688,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 808 this -1926788825 +532445947 1 this.bits 0 @@ -23479,7 +23701,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 808 this -1926788825 +532445947 1 this.bits 0 @@ -23495,7 +23717,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 809 this -1926788825 +532445947 1 this.bits 0 @@ -23508,7 +23730,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 809 this -1926788825 +532445947 1 this.bits 128 @@ -23521,7 +23743,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 810 this -1926788825 +532445947 1 this.bits 128 @@ -23534,7 +23756,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 810 this -1926788825 +532445947 1 this.bits 128 @@ -23550,7 +23772,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 811 this -1926788825 +532445947 1 this.bits 128 @@ -23563,7 +23785,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 811 this -1926788825 +532445947 1 this.bits 128 @@ -23579,7 +23801,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 812 this -1926788825 +532445947 1 this.bits 128 @@ -23592,7 +23814,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 812 this -1926788825 +532445947 1 this.bits 128 @@ -23608,7 +23830,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 813 this -1926788825 +532445947 1 this.bits 128 @@ -23621,7 +23843,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 813 this -1926788825 +532445947 1 this.bits 128 @@ -23637,7 +23859,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 814 this -1926788825 +532445947 1 this.bits 128 @@ -23650,7 +23872,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 814 this -1926788825 +532445947 1 this.bits 128 @@ -23666,7 +23888,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 815 this -1926788825 +532445947 1 this.bits 128 @@ -23679,7 +23901,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 815 this -1926788825 +532445947 1 this.bits 128 @@ -23695,7 +23917,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 816 this -1926788825 +532445947 1 this.bits 128 @@ -23708,7 +23930,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 816 this -1926788825 +532445947 1 this.bits 128 @@ -23724,7 +23946,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 817 this -1926788825 +532445947 1 this.bits 128 @@ -23737,7 +23959,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 817 this -1926788825 +532445947 1 this.bits 128 @@ -23753,7 +23975,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 818 this -1926788825 +532445947 1 this.bits 128 @@ -23766,7 +23988,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 818 this -1926788825 +532445947 1 this.bits 0 @@ -23779,7 +24001,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 819 this -1926788825 +532445947 1 this.bits 0 @@ -23792,7 +24014,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 819 this -1926788825 +532445947 1 this.bits 0 @@ -23808,7 +24030,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 820 this -1926788825 +532445947 1 this.bits 0 @@ -23821,7 +24043,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 820 this -1926788825 +532445947 1 this.bits 0 @@ -23837,7 +24059,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 821 this -1926788825 +532445947 1 this.bits 0 @@ -23850,7 +24072,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 821 this -1926788825 +532445947 1 this.bits 0 @@ -23866,7 +24088,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 822 this -1926788825 +532445947 1 this.bits 0 @@ -23879,7 +24101,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 822 this -1926788825 +532445947 1 this.bits 0 @@ -23895,7 +24117,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 823 this -1926788825 +532445947 1 this.bits 0 @@ -23908,7 +24130,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 823 this -1926788825 +532445947 1 this.bits 0 @@ -23924,7 +24146,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 824 this -1926788825 +532445947 1 this.bits 0 @@ -23937,7 +24159,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 824 this -1926788825 +532445947 1 this.bits 0 @@ -23953,7 +24175,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 825 this -1926788825 +532445947 1 this.bits 0 @@ -23966,7 +24188,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 825 this -1926788825 +532445947 1 this.bits 0 @@ -23982,7 +24204,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 826 this -1926788825 +532445947 1 this.bits 0 @@ -23995,7 +24217,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 826 this -1926788825 +532445947 1 this.bits 0 @@ -24011,7 +24233,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 827 this -1926788825 +532445947 1 this.bits 0 @@ -24024,7 +24246,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 827 this -1926788825 +532445947 1 this.bits 128 @@ -24037,7 +24259,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 828 this -1926788825 +532445947 1 this.bits 128 @@ -24050,7 +24272,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 828 this -1926788825 +532445947 1 this.bits 128 @@ -24066,7 +24288,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 829 this -1926788825 +532445947 1 this.bits 128 @@ -24079,7 +24301,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 829 this -1926788825 +532445947 1 this.bits 128 @@ -24095,7 +24317,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 830 this -1926788825 +532445947 1 this.bits 128 @@ -24108,7 +24330,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 830 this -1926788825 +532445947 1 this.bits 128 @@ -24124,7 +24346,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 831 this -1926788825 +532445947 1 this.bits 128 @@ -24137,7 +24359,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 831 this -1926788825 +532445947 1 this.bits 128 @@ -24153,7 +24375,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 832 this -1926788825 +532445947 1 this.bits 128 @@ -24166,7 +24388,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 832 this -1926788825 +532445947 1 this.bits 128 @@ -24182,7 +24404,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 833 this -1926788825 +532445947 1 this.bits 128 @@ -24195,7 +24417,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 833 this -1926788825 +532445947 1 this.bits 128 @@ -24211,7 +24433,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 834 this -1926788825 +532445947 1 this.bits 128 @@ -24224,7 +24446,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 834 this -1926788825 +532445947 1 this.bits 128 @@ -24240,7 +24462,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 835 this -1926788825 +532445947 1 this.bits 128 @@ -24253,7 +24475,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 835 this -1926788825 +532445947 1 this.bits 128 @@ -24269,7 +24491,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 836 this -1926788825 +532445947 1 this.bits 128 @@ -24282,7 +24504,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 836 this -1926788825 +532445947 1 this.bits 0 @@ -24295,7 +24517,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 837 this -1926788825 +532445947 1 this.bits 0 @@ -24308,7 +24530,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 837 this -1926788825 +532445947 1 this.bits 0 @@ -24324,7 +24546,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 838 this -1926788825 +532445947 1 this.bits 0 @@ -24337,7 +24559,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 838 this -1926788825 +532445947 1 this.bits 0 @@ -24353,7 +24575,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 839 this -1926788825 +532445947 1 this.bits 0 @@ -24366,7 +24588,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 839 this -1926788825 +532445947 1 this.bits 0 @@ -24382,7 +24604,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 840 this -1926788825 +532445947 1 this.bits 0 @@ -24395,7 +24617,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 840 this -1926788825 +532445947 1 this.bits 0 @@ -24411,7 +24633,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 841 this -1926788825 +532445947 1 this.bits 0 @@ -24424,7 +24646,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 841 this -1926788825 +532445947 1 this.bits 0 @@ -24440,7 +24662,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 842 this -1926788825 +532445947 1 this.bits 0 @@ -24453,7 +24675,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 842 this -1926788825 +532445947 1 this.bits 0 @@ -24469,7 +24691,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 843 this -1926788825 +532445947 1 this.bits 0 @@ -24482,7 +24704,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 843 this -1926788825 +532445947 1 this.bits 0 @@ -24498,7 +24720,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 844 this -1926788825 +532445947 1 this.bits 0 @@ -24511,7 +24733,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 844 this -1926788825 +532445947 1 this.bits 0 @@ -24527,7 +24749,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 845 this -1926788825 +532445947 1 this.bits 0 @@ -24540,7 +24762,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 845 this -1926788825 +532445947 1 this.bits 32 @@ -24553,7 +24775,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 846 this -1926788825 +532445947 1 this.bits 32 @@ -24566,7 +24788,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 846 this -1926788825 +532445947 1 this.bits 32 @@ -24582,7 +24804,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 847 this -1926788825 +532445947 1 this.bits 32 @@ -24595,7 +24817,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 847 this -1926788825 +532445947 1 this.bits 32 @@ -24611,7 +24833,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 848 this -1926788825 +532445947 1 this.bits 32 @@ -24624,7 +24846,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 848 this -1926788825 +532445947 1 this.bits 32 @@ -24640,7 +24862,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 849 this -1926788825 +532445947 1 this.bits 32 @@ -24653,7 +24875,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 849 this -1926788825 +532445947 1 this.bits 32 @@ -24669,7 +24891,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 850 this -1926788825 +532445947 1 this.bits 32 @@ -24682,7 +24904,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 850 this -1926788825 +532445947 1 this.bits 32 @@ -24698,7 +24920,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 851 this -1926788825 +532445947 1 this.bits 32 @@ -24711,7 +24933,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 851 this -1926788825 +532445947 1 this.bits 32 @@ -24727,7 +24949,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 852 this -1926788825 +532445947 1 this.bits 32 @@ -24740,7 +24962,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 852 this -1926788825 +532445947 1 this.bits 32 @@ -24756,7 +24978,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 853 this -1926788825 +532445947 1 this.bits 32 @@ -24769,7 +24991,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 853 this -1926788825 +532445947 1 this.bits 32 @@ -24785,7 +25007,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 854 this -1926788825 +532445947 1 this.bits 32 @@ -24798,7 +25020,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 854 this -1926788825 +532445947 1 this.bits 0 @@ -24811,7 +25033,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 855 this -1926788825 +532445947 1 this.bits 0 @@ -24824,7 +25046,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 855 this -1926788825 +532445947 1 this.bits 0 @@ -24840,7 +25062,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 856 this -1926788825 +532445947 1 this.bits 0 @@ -24853,7 +25075,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 856 this -1926788825 +532445947 1 this.bits 0 @@ -24869,7 +25091,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 857 this -1926788825 +532445947 1 this.bits 0 @@ -24882,7 +25104,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 857 this -1926788825 +532445947 1 this.bits 0 @@ -24898,7 +25120,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 858 this -1926788825 +532445947 1 this.bits 0 @@ -24911,7 +25133,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 858 this -1926788825 +532445947 1 this.bits 0 @@ -24927,7 +25149,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 859 this -1926788825 +532445947 1 this.bits 0 @@ -24940,7 +25162,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 859 this -1926788825 +532445947 1 this.bits 0 @@ -24956,7 +25178,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 860 this -1926788825 +532445947 1 this.bits 0 @@ -24969,7 +25191,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 860 this -1926788825 +532445947 1 this.bits 0 @@ -24985,7 +25207,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 861 this -1926788825 +532445947 1 this.bits 0 @@ -24998,7 +25220,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 861 this -1926788825 +532445947 1 this.bits 0 @@ -25014,7 +25236,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 862 this -1926788825 +532445947 1 this.bits 0 @@ -25027,7 +25249,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 862 this -1926788825 +532445947 1 this.bits 0 @@ -25043,7 +25265,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 863 this -1926788825 +532445947 1 this.bits 0 @@ -25056,7 +25278,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 863 this -1926788825 +532445947 1 this.bits 64 @@ -25069,7 +25291,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 864 this -1926788825 +532445947 1 this.bits 64 @@ -25082,7 +25304,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 864 this -1926788825 +532445947 1 this.bits 64 @@ -25098,7 +25320,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 865 this -1926788825 +532445947 1 this.bits 64 @@ -25111,7 +25333,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 865 this -1926788825 +532445947 1 this.bits 64 @@ -25127,7 +25349,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 866 this -1926788825 +532445947 1 this.bits 64 @@ -25140,7 +25362,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 866 this -1926788825 +532445947 1 this.bits 64 @@ -25156,7 +25378,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 867 this -1926788825 +532445947 1 this.bits 64 @@ -25169,7 +25391,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 867 this -1926788825 +532445947 1 this.bits 64 @@ -25185,7 +25407,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 868 this -1926788825 +532445947 1 this.bits 64 @@ -25198,7 +25420,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 868 this -1926788825 +532445947 1 this.bits 64 @@ -25214,7 +25436,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 869 this -1926788825 +532445947 1 this.bits 64 @@ -25227,7 +25449,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 869 this -1926788825 +532445947 1 this.bits 64 @@ -25243,7 +25465,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 870 this -1926788825 +532445947 1 this.bits 64 @@ -25256,7 +25478,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 870 this -1926788825 +532445947 1 this.bits 64 @@ -25272,7 +25494,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 871 this -1926788825 +532445947 1 this.bits 64 @@ -25285,7 +25507,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 871 this -1926788825 +532445947 1 this.bits 64 @@ -25301,7 +25523,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 872 this -1926788825 +532445947 1 this.bits 64 @@ -25314,7 +25536,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 872 this -1926788825 +532445947 1 this.bits 0 @@ -25327,7 +25549,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 873 this -1926788825 +532445947 1 this.bits 0 @@ -25340,7 +25562,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 873 this -1926788825 +532445947 1 this.bits 0 @@ -25356,7 +25578,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 874 this -1926788825 +532445947 1 this.bits 0 @@ -25369,7 +25591,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 874 this -1926788825 +532445947 1 this.bits 0 @@ -25385,7 +25607,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 875 this -1926788825 +532445947 1 this.bits 0 @@ -25398,7 +25620,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 875 this -1926788825 +532445947 1 this.bits 0 @@ -25414,7 +25636,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 876 this -1926788825 +532445947 1 this.bits 0 @@ -25427,7 +25649,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 876 this -1926788825 +532445947 1 this.bits 0 @@ -25443,7 +25665,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 877 this -1926788825 +532445947 1 this.bits 0 @@ -25456,7 +25678,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 877 this -1926788825 +532445947 1 this.bits 0 @@ -25472,7 +25694,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 878 this -1926788825 +532445947 1 this.bits 0 @@ -25485,7 +25707,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 878 this -1926788825 +532445947 1 this.bits 0 @@ -25501,7 +25723,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 879 this -1926788825 +532445947 1 this.bits 0 @@ -25514,7 +25736,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 879 this -1926788825 +532445947 1 this.bits 0 @@ -25530,7 +25752,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 880 this -1926788825 +532445947 1 this.bits 0 @@ -25543,7 +25765,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 880 this -1926788825 +532445947 1 this.bits 0 @@ -25559,7 +25781,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 881 this -1926788825 +532445947 1 this.bits 0 @@ -25572,7 +25794,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 881 this -1926788825 +532445947 1 this.bits 8 @@ -25585,7 +25807,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 882 this -1926788825 +532445947 1 this.bits 8 @@ -25598,7 +25820,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 882 this -1926788825 +532445947 1 this.bits 8 @@ -25614,7 +25836,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 883 this -1926788825 +532445947 1 this.bits 8 @@ -25627,7 +25849,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 883 this -1926788825 +532445947 1 this.bits 8 @@ -25643,7 +25865,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 884 this -1926788825 +532445947 1 this.bits 8 @@ -25656,7 +25878,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 884 this -1926788825 +532445947 1 this.bits 8 @@ -25672,7 +25894,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 885 this -1926788825 +532445947 1 this.bits 8 @@ -25685,7 +25907,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 885 this -1926788825 +532445947 1 this.bits 8 @@ -25701,7 +25923,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 886 this -1926788825 +532445947 1 this.bits 8 @@ -25714,7 +25936,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 886 this -1926788825 +532445947 1 this.bits 8 @@ -25730,7 +25952,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 887 this -1926788825 +532445947 1 this.bits 8 @@ -25743,7 +25965,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 887 this -1926788825 +532445947 1 this.bits 8 @@ -25759,7 +25981,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 888 this -1926788825 +532445947 1 this.bits 8 @@ -25772,7 +25994,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 888 this -1926788825 +532445947 1 this.bits 8 @@ -25788,7 +26010,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 889 this -1926788825 +532445947 1 this.bits 8 @@ -25801,7 +26023,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 889 this -1926788825 +532445947 1 this.bits 8 @@ -25817,7 +26039,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 890 this -1926788825 +532445947 1 this.bits 8 @@ -25830,7 +26052,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 890 this -1926788825 +532445947 1 this.bits 0 @@ -25843,7 +26065,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 891 this -1926788825 +532445947 1 this.bits 0 @@ -25856,7 +26078,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 891 this -1926788825 +532445947 1 this.bits 0 @@ -25872,7 +26094,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 892 this -1926788825 +532445947 1 this.bits 0 @@ -25885,7 +26107,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 892 this -1926788825 +532445947 1 this.bits 0 @@ -25901,7 +26123,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 893 this -1926788825 +532445947 1 this.bits 0 @@ -25914,7 +26136,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 893 this -1926788825 +532445947 1 this.bits 0 @@ -25930,7 +26152,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 894 this -1926788825 +532445947 1 this.bits 0 @@ -25943,7 +26165,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 894 this -1926788825 +532445947 1 this.bits 0 @@ -25959,7 +26181,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 895 this -1926788825 +532445947 1 this.bits 0 @@ -25972,7 +26194,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 895 this -1926788825 +532445947 1 this.bits 0 @@ -25988,7 +26210,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 896 this -1926788825 +532445947 1 this.bits 0 @@ -26001,7 +26223,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 896 this -1926788825 +532445947 1 this.bits 0 @@ -26017,7 +26239,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 897 this -1926788825 +532445947 1 this.bits 0 @@ -26030,7 +26252,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 897 this -1926788825 +532445947 1 this.bits 0 @@ -26046,7 +26268,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 898 this -1926788825 +532445947 1 this.bits 0 @@ -26059,7 +26281,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 898 this -1926788825 +532445947 1 this.bits 0 @@ -26075,7 +26297,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 899 this -1926788825 +532445947 1 this.bits 0 @@ -26088,7 +26310,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 899 this -1926788825 +532445947 1 this.bits 16 @@ -26101,7 +26323,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 900 this -1926788825 +532445947 1 this.bits 16 @@ -26114,7 +26336,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 900 this -1926788825 +532445947 1 this.bits 16 @@ -26130,7 +26352,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 901 this -1926788825 +532445947 1 this.bits 16 @@ -26143,7 +26365,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 901 this -1926788825 +532445947 1 this.bits 16 @@ -26159,7 +26381,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 902 this -1926788825 +532445947 1 this.bits 16 @@ -26172,7 +26394,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 902 this -1926788825 +532445947 1 this.bits 16 @@ -26188,7 +26410,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 903 this -1926788825 +532445947 1 this.bits 16 @@ -26201,7 +26423,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 903 this -1926788825 +532445947 1 this.bits 16 @@ -26217,7 +26439,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 904 this -1926788825 +532445947 1 this.bits 16 @@ -26230,7 +26452,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 904 this -1926788825 +532445947 1 this.bits 16 @@ -26246,7 +26468,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 905 this -1926788825 +532445947 1 this.bits 16 @@ -26259,7 +26481,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 905 this -1926788825 +532445947 1 this.bits 16 @@ -26275,7 +26497,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 906 this -1926788825 +532445947 1 this.bits 16 @@ -26288,7 +26510,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 906 this -1926788825 +532445947 1 this.bits 16 @@ -26304,7 +26526,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 907 this -1926788825 +532445947 1 this.bits 16 @@ -26317,7 +26539,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 907 this -1926788825 +532445947 1 this.bits 16 @@ -26333,7 +26555,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 908 this -1926788825 +532445947 1 this.bits 16 @@ -26346,7 +26568,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 908 this -1926788825 +532445947 1 this.bits 0 @@ -26359,7 +26581,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 909 this -1926788825 +532445947 1 this.bits 0 @@ -26372,7 +26594,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 909 this -1926788825 +532445947 1 this.bits 0 @@ -26388,7 +26610,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 910 this -1926788825 +532445947 1 this.bits 0 @@ -26401,7 +26623,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 910 this -1926788825 +532445947 1 this.bits 0 @@ -26417,7 +26639,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 911 this -1926788825 +532445947 1 this.bits 0 @@ -26430,7 +26652,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 911 this -1926788825 +532445947 1 this.bits 0 @@ -26446,7 +26668,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 912 this -1926788825 +532445947 1 this.bits 0 @@ -26459,7 +26681,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 912 this -1926788825 +532445947 1 this.bits 0 @@ -26475,7 +26697,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 913 this -1926788825 +532445947 1 this.bits 0 @@ -26488,7 +26710,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 913 this -1926788825 +532445947 1 this.bits 0 @@ -26504,7 +26726,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 914 this -1926788825 +532445947 1 this.bits 0 @@ -26517,7 +26739,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 914 this -1926788825 +532445947 1 this.bits 0 @@ -26533,7 +26755,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 915 this -1926788825 +532445947 1 this.bits 0 @@ -26546,7 +26768,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 915 this -1926788825 +532445947 1 this.bits 0 @@ -26562,7 +26784,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 916 this -1926788825 +532445947 1 this.bits 0 @@ -26575,7 +26797,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 916 this -1926788825 +532445947 1 this.bits 0 @@ -26591,7 +26813,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 917 this -1926788825 +532445947 1 this.bits 0 @@ -26604,7 +26826,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 917 this -1926788825 +532445947 1 this.bits 1 @@ -26617,7 +26839,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 918 this -1926788825 +532445947 1 this.bits 1 @@ -26630,7 +26852,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 918 this -1926788825 +532445947 1 this.bits 1 @@ -26646,7 +26868,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 919 this -1926788825 +532445947 1 this.bits 1 @@ -26659,7 +26881,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 919 this -1926788825 +532445947 1 this.bits 1 @@ -26675,7 +26897,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 920 this -1926788825 +532445947 1 this.bits 1 @@ -26688,7 +26910,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 920 this -1926788825 +532445947 1 this.bits 1 @@ -26704,7 +26926,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 921 this -1926788825 +532445947 1 this.bits 1 @@ -26717,7 +26939,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 921 this -1926788825 +532445947 1 this.bits 1 @@ -26733,7 +26955,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 922 this -1926788825 +532445947 1 this.bits 1 @@ -26746,7 +26968,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 922 this -1926788825 +532445947 1 this.bits 1 @@ -26762,7 +26984,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 923 this -1926788825 +532445947 1 this.bits 1 @@ -26775,7 +26997,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 923 this -1926788825 +532445947 1 this.bits 1 @@ -26791,7 +27013,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 924 this -1926788825 +532445947 1 this.bits 1 @@ -26804,7 +27026,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 924 this -1926788825 +532445947 1 this.bits 1 @@ -26820,7 +27042,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 925 this -1926788825 +532445947 1 this.bits 1 @@ -26833,7 +27055,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 925 this -1926788825 +532445947 1 this.bits 1 @@ -26849,7 +27071,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 926 this -1926788825 +532445947 1 this.bits 1 @@ -26862,7 +27084,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 926 this -1926788825 +532445947 1 this.bits 0 @@ -26875,7 +27097,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 927 this -1926788825 +532445947 1 this.bits 0 @@ -26888,7 +27110,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 927 this -1926788825 +532445947 1 this.bits 0 @@ -26904,7 +27126,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 928 this -1926788825 +532445947 1 this.bits 0 @@ -26917,7 +27139,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 928 this -1926788825 +532445947 1 this.bits 0 @@ -26933,7 +27155,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 929 this -1926788825 +532445947 1 this.bits 0 @@ -26946,7 +27168,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 929 this -1926788825 +532445947 1 this.bits 0 @@ -26962,7 +27184,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 930 this -1926788825 +532445947 1 this.bits 0 @@ -26975,7 +27197,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 930 this -1926788825 +532445947 1 this.bits 0 @@ -26991,7 +27213,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 931 this -1926788825 +532445947 1 this.bits 0 @@ -27004,7 +27226,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 931 this -1926788825 +532445947 1 this.bits 0 @@ -27020,7 +27242,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 932 this -1926788825 +532445947 1 this.bits 0 @@ -27033,7 +27255,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 932 this -1926788825 +532445947 1 this.bits 0 @@ -27049,7 +27271,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 933 this -1926788825 +532445947 1 this.bits 0 @@ -27062,7 +27284,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 933 this -1926788825 +532445947 1 this.bits 0 @@ -27078,7 +27300,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 934 this -1926788825 +532445947 1 this.bits 0 @@ -27091,7 +27313,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 934 this -1926788825 +532445947 1 this.bits 0 @@ -27107,7 +27329,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 935 this -1926788825 +532445947 1 this.bits 0 @@ -27120,7 +27342,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 935 this -1926788825 +532445947 1 this.bits 1 @@ -27133,7 +27355,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 936 this -1926788825 +532445947 1 this.bits 1 @@ -27146,7 +27368,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 936 this -1926788825 +532445947 1 this.bits 1 @@ -27162,7 +27384,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 937 this -1926788825 +532445947 1 this.bits 1 @@ -27175,7 +27397,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 937 this -1926788825 +532445947 1 this.bits 1 @@ -27191,7 +27413,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 938 this -1926788825 +532445947 1 this.bits 1 @@ -27204,7 +27426,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 938 this -1926788825 +532445947 1 this.bits 1 @@ -27220,7 +27442,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 939 this -1926788825 +532445947 1 this.bits 1 @@ -27233,7 +27455,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 939 this -1926788825 +532445947 1 this.bits 1 @@ -27249,7 +27471,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 940 this -1926788825 +532445947 1 this.bits 1 @@ -27262,7 +27484,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 940 this -1926788825 +532445947 1 this.bits 1 @@ -27278,7 +27500,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 941 this -1926788825 +532445947 1 this.bits 1 @@ -27291,7 +27513,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 941 this -1926788825 +532445947 1 this.bits 1 @@ -27307,7 +27529,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 942 this -1926788825 +532445947 1 this.bits 1 @@ -27320,7 +27542,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 942 this -1926788825 +532445947 1 this.bits 1 @@ -27336,7 +27558,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 943 this -1926788825 +532445947 1 this.bits 1 @@ -27349,7 +27571,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 943 this -1926788825 +532445947 1 this.bits 1 @@ -27365,7 +27587,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 944 this -1926788825 +532445947 1 this.bits 1 @@ -27378,7 +27600,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 944 this -1926788825 +532445947 1 this.bits 0 @@ -27391,7 +27613,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 945 this -1926788825 +532445947 1 this.bits 0 @@ -27404,7 +27626,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 945 this -1926788825 +532445947 1 this.bits 0 @@ -27420,7 +27642,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 946 this -1926788825 +532445947 1 this.bits 0 @@ -27433,7 +27655,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 946 this -1926788825 +532445947 1 this.bits 0 @@ -27449,7 +27671,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 947 this -1926788825 +532445947 1 this.bits 0 @@ -27462,7 +27684,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 947 this -1926788825 +532445947 1 this.bits 0 @@ -27478,7 +27700,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 948 this -1926788825 +532445947 1 this.bits 0 @@ -27491,7 +27713,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 948 this -1926788825 +532445947 1 this.bits 0 @@ -27507,7 +27729,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 949 this -1926788825 +532445947 1 this.bits 0 @@ -27520,7 +27742,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 949 this -1926788825 +532445947 1 this.bits 0 @@ -27536,7 +27758,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 950 this -1926788825 +532445947 1 this.bits 0 @@ -27549,7 +27771,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 950 this -1926788825 +532445947 1 this.bits 0 @@ -27565,7 +27787,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 951 this -1926788825 +532445947 1 this.bits 0 @@ -27578,7 +27800,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 951 this -1926788825 +532445947 1 this.bits 0 @@ -27594,7 +27816,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 952 this -1926788825 +532445947 1 this.bits 0 @@ -27607,7 +27829,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 952 this -1926788825 +532445947 1 this.bits 0 @@ -27623,7 +27845,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 953 this -1926788825 +532445947 1 this.bits 0 @@ -27636,7 +27858,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 953 this -1926788825 +532445947 1 this.bits 1 @@ -27649,7 +27871,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 954 this -1926788825 +532445947 1 this.bits 1 @@ -27662,7 +27884,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 954 this -1926788825 +532445947 1 this.bits 1 @@ -27678,7 +27900,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 955 this -1926788825 +532445947 1 this.bits 1 @@ -27691,7 +27913,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 955 this -1926788825 +532445947 1 this.bits 1 @@ -27707,7 +27929,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 956 this -1926788825 +532445947 1 this.bits 1 @@ -27720,7 +27942,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 956 this -1926788825 +532445947 1 this.bits 1 @@ -27736,7 +27958,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 957 this -1926788825 +532445947 1 this.bits 1 @@ -27749,7 +27971,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 957 this -1926788825 +532445947 1 this.bits 1 @@ -27765,7 +27987,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 958 this -1926788825 +532445947 1 this.bits 1 @@ -27778,7 +28000,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 958 this -1926788825 +532445947 1 this.bits 1 @@ -27794,7 +28016,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 959 this -1926788825 +532445947 1 this.bits 1 @@ -27807,7 +28029,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 959 this -1926788825 +532445947 1 this.bits 1 @@ -27823,7 +28045,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 960 this -1926788825 +532445947 1 this.bits 1 @@ -27836,7 +28058,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 960 this -1926788825 +532445947 1 this.bits 1 @@ -27852,7 +28074,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 961 this -1926788825 +532445947 1 this.bits 1 @@ -27865,7 +28087,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 961 this -1926788825 +532445947 1 this.bits 1 @@ -27881,7 +28103,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 962 this -1926788825 +532445947 1 this.bits 1 @@ -27894,7 +28116,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 962 this -1926788825 +532445947 1 this.bits 0 @@ -27907,7 +28129,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 963 this -1926788825 +532445947 1 this.bits 0 @@ -27920,7 +28142,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 963 this -1926788825 +532445947 1 this.bits 0 @@ -27936,7 +28158,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 964 this -1926788825 +532445947 1 this.bits 0 @@ -27949,7 +28171,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 964 this -1926788825 +532445947 1 this.bits 0 @@ -27965,7 +28187,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 965 this -1926788825 +532445947 1 this.bits 0 @@ -27978,7 +28200,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 965 this -1926788825 +532445947 1 this.bits 0 @@ -27994,7 +28216,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 966 this -1926788825 +532445947 1 this.bits 0 @@ -28007,7 +28229,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 966 this -1926788825 +532445947 1 this.bits 0 @@ -28023,7 +28245,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 967 this -1926788825 +532445947 1 this.bits 0 @@ -28036,7 +28258,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 967 this -1926788825 +532445947 1 this.bits 0 @@ -28052,7 +28274,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 968 this -1926788825 +532445947 1 this.bits 0 @@ -28065,7 +28287,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 968 this -1926788825 +532445947 1 this.bits 0 @@ -28081,7 +28303,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 969 this -1926788825 +532445947 1 this.bits 0 @@ -28094,7 +28316,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 969 this -1926788825 +532445947 1 this.bits 0 @@ -28110,7 +28332,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 970 this -1926788825 +532445947 1 this.bits 0 @@ -28123,7 +28345,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 970 this -1926788825 +532445947 1 this.bits 0 @@ -28139,7 +28361,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 971 this -1926788825 +532445947 1 this.bits 0 @@ -28152,7 +28374,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 971 this -1926788825 +532445947 1 this.bits 1 @@ -28165,7 +28387,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 972 this -1926788825 +532445947 1 this.bits 1 @@ -28178,7 +28400,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 972 this -1926788825 +532445947 1 this.bits 1 @@ -28194,7 +28416,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 973 this -1926788825 +532445947 1 this.bits 1 @@ -28207,7 +28429,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 973 this -1926788825 +532445947 1 this.bits 1 @@ -28223,7 +28445,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 974 this -1926788825 +532445947 1 this.bits 1 @@ -28236,7 +28458,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 974 this -1926788825 +532445947 1 this.bits 1 @@ -28252,7 +28474,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 975 this -1926788825 +532445947 1 this.bits 1 @@ -28265,7 +28487,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 975 this -1926788825 +532445947 1 this.bits 1 @@ -28281,7 +28503,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 976 this -1926788825 +532445947 1 this.bits 1 @@ -28294,7 +28516,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 976 this -1926788825 +532445947 1 this.bits 1 @@ -28310,7 +28532,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 977 this -1926788825 +532445947 1 this.bits 1 @@ -28323,7 +28545,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 977 this -1926788825 +532445947 1 this.bits 1 @@ -28339,7 +28561,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 978 this -1926788825 +532445947 1 this.bits 1 @@ -28352,7 +28574,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 978 this -1926788825 +532445947 1 this.bits 1 @@ -28368,7 +28590,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 979 this -1926788825 +532445947 1 this.bits 1 @@ -28381,7 +28603,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 979 this -1926788825 +532445947 1 this.bits 1 @@ -28397,7 +28619,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 980 this -1926788825 +532445947 1 this.bits 1 @@ -28410,7 +28632,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 980 this -1926788825 +532445947 1 this.bits 0 @@ -28423,7 +28645,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 981 this -1926788825 +532445947 1 this.bits 0 @@ -28436,7 +28658,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 981 this -1926788825 +532445947 1 this.bits 0 @@ -28452,7 +28674,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 982 this -1926788825 +532445947 1 this.bits 0 @@ -28465,7 +28687,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 982 this -1926788825 +532445947 1 this.bits 0 @@ -28481,7 +28703,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 983 this -1926788825 +532445947 1 this.bits 0 @@ -28494,7 +28716,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 983 this -1926788825 +532445947 1 this.bits 0 @@ -28510,7 +28732,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 984 this -1926788825 +532445947 1 this.bits 0 @@ -28523,7 +28745,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 984 this -1926788825 +532445947 1 this.bits 0 @@ -28539,7 +28761,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 985 this -1926788825 +532445947 1 this.bits 0 @@ -28552,7 +28774,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 985 this -1926788825 +532445947 1 this.bits 0 @@ -28568,7 +28790,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 986 this -1926788825 +532445947 1 this.bits 0 @@ -28581,7 +28803,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 986 this -1926788825 +532445947 1 this.bits 0 @@ -28597,7 +28819,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 987 this -1926788825 +532445947 1 this.bits 0 @@ -28610,7 +28832,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 987 this -1926788825 +532445947 1 this.bits 0 @@ -28626,7 +28848,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 988 this -1926788825 +532445947 1 this.bits 0 @@ -28639,7 +28861,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 988 this -1926788825 +532445947 1 this.bits 0 @@ -28655,7 +28877,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 989 this -1926788825 +532445947 1 this.bits 0 @@ -28668,7 +28890,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 989 this -1926788825 +532445947 1 this.bits 64 @@ -28681,7 +28903,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 990 this -1926788825 +532445947 1 this.bits 64 @@ -28694,7 +28916,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 990 this -1926788825 +532445947 1 this.bits 64 @@ -28710,7 +28932,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 991 this -1926788825 +532445947 1 this.bits 64 @@ -28723,7 +28945,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 991 this -1926788825 +532445947 1 this.bits 64 @@ -28739,7 +28961,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 992 this -1926788825 +532445947 1 this.bits 64 @@ -28752,7 +28974,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 992 this -1926788825 +532445947 1 this.bits 64 @@ -28768,7 +28990,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 993 this -1926788825 +532445947 1 this.bits 64 @@ -28781,7 +29003,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 993 this -1926788825 +532445947 1 this.bits 64 @@ -28797,7 +29019,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 994 this -1926788825 +532445947 1 this.bits 64 @@ -28810,7 +29032,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 994 this -1926788825 +532445947 1 this.bits 64 @@ -28826,7 +29048,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 995 this -1926788825 +532445947 1 this.bits 64 @@ -28839,7 +29061,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 995 this -1926788825 +532445947 1 this.bits 64 @@ -28855,7 +29077,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 996 this -1926788825 +532445947 1 this.bits 64 @@ -28868,7 +29090,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 996 this -1926788825 +532445947 1 this.bits 64 @@ -28884,7 +29106,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 997 this -1926788825 +532445947 1 this.bits 64 @@ -28897,7 +29119,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 997 this -1926788825 +532445947 1 this.bits 64 @@ -28913,7 +29135,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 998 this -1926788825 +532445947 1 this.bits 64 @@ -28926,7 +29148,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 998 this -1926788825 +532445947 1 this.bits 0 @@ -28939,7 +29161,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 999 this -1926788825 +532445947 1 this.bits 0 @@ -28952,7 +29174,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 999 this -1926788825 +532445947 1 this.bits 0 @@ -28968,7 +29190,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1000 this -1926788825 +532445947 1 this.bits 0 @@ -28981,7 +29203,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1000 this -1926788825 +532445947 1 this.bits 0 @@ -28997,7 +29219,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1001 this -1926788825 +532445947 1 this.bits 0 @@ -29010,7 +29232,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1001 this -1926788825 +532445947 1 this.bits 0 @@ -29026,7 +29248,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1002 this -1926788825 +532445947 1 this.bits 0 @@ -29039,7 +29261,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1002 this -1926788825 +532445947 1 this.bits 0 @@ -29055,7 +29277,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1003 this -1926788825 +532445947 1 this.bits 0 @@ -29068,7 +29290,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1003 this -1926788825 +532445947 1 this.bits 0 @@ -29084,7 +29306,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1004 this -1926788825 +532445947 1 this.bits 0 @@ -29097,7 +29319,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1004 this -1926788825 +532445947 1 this.bits 0 @@ -29113,7 +29335,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1005 this -1926788825 +532445947 1 this.bits 0 @@ -29126,7 +29348,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1005 this -1926788825 +532445947 1 this.bits 0 @@ -29142,7 +29364,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1006 this -1926788825 +532445947 1 this.bits 0 @@ -29155,7 +29377,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1006 this -1926788825 +532445947 1 this.bits 0 @@ -29171,7 +29393,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1007 this -1926788825 +532445947 1 this.bits 0 @@ -29184,7 +29406,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1007 this -1926788825 +532445947 1 this.bits 2 @@ -29197,7 +29419,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1008 this -1926788825 +532445947 1 this.bits 2 @@ -29210,7 +29432,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1008 this -1926788825 +532445947 1 this.bits 2 @@ -29226,7 +29448,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1009 this -1926788825 +532445947 1 this.bits 2 @@ -29239,7 +29461,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1009 this -1926788825 +532445947 1 this.bits 2 @@ -29255,7 +29477,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1010 this -1926788825 +532445947 1 this.bits 2 @@ -29268,7 +29490,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1010 this -1926788825 +532445947 1 this.bits 2 @@ -29284,7 +29506,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1011 this -1926788825 +532445947 1 this.bits 2 @@ -29297,7 +29519,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1011 this -1926788825 +532445947 1 this.bits 2 @@ -29313,7 +29535,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1012 this -1926788825 +532445947 1 this.bits 2 @@ -29326,7 +29548,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1012 this -1926788825 +532445947 1 this.bits 2 @@ -29342,7 +29564,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1013 this -1926788825 +532445947 1 this.bits 2 @@ -29355,7 +29577,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1013 this -1926788825 +532445947 1 this.bits 2 @@ -29371,7 +29593,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1014 this -1926788825 +532445947 1 this.bits 2 @@ -29384,7 +29606,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1014 this -1926788825 +532445947 1 this.bits 2 @@ -29400,7 +29622,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1015 this -1926788825 +532445947 1 this.bits 2 @@ -29413,7 +29635,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1015 this -1926788825 +532445947 1 this.bits 2 @@ -29429,7 +29651,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1016 this -1926788825 +532445947 1 this.bits 2 @@ -29442,7 +29664,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1016 this -1926788825 +532445947 1 this.bits 0 @@ -29455,7 +29677,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1017 this -1926788825 +532445947 1 this.bits 0 @@ -29468,7 +29690,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1017 this -1926788825 +532445947 1 this.bits 0 @@ -29484,7 +29706,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1018 this -1926788825 +532445947 1 this.bits 0 @@ -29497,7 +29719,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1018 this -1926788825 +532445947 1 this.bits 0 @@ -29513,7 +29735,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1019 this -1926788825 +532445947 1 this.bits 0 @@ -29526,7 +29748,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1019 this -1926788825 +532445947 1 this.bits 0 @@ -29542,7 +29764,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1020 this -1926788825 +532445947 1 this.bits 0 @@ -29555,7 +29777,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1020 this -1926788825 +532445947 1 this.bits 0 @@ -29571,7 +29793,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1021 this -1926788825 +532445947 1 this.bits 0 @@ -29584,7 +29806,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1021 this -1926788825 +532445947 1 this.bits 0 @@ -29600,7 +29822,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1022 this -1926788825 +532445947 1 this.bits 0 @@ -29613,7 +29835,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1022 this -1926788825 +532445947 1 this.bits 0 @@ -29629,7 +29851,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1023 this -1926788825 +532445947 1 this.bits 0 @@ -29642,7 +29864,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1023 this -1926788825 +532445947 1 this.bits 0 @@ -29658,7 +29880,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1024 this -1926788825 +532445947 1 this.bits 0 @@ -29671,7 +29893,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1024 this -1926788825 +532445947 1 this.bits 0 @@ -29687,7 +29909,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1025 this -1926788825 +532445947 1 this.bits 0 @@ -29700,7 +29922,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1025 this -1926788825 +532445947 1 this.bits 32 @@ -29713,7 +29935,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1026 this -1926788825 +532445947 1 this.bits 32 @@ -29726,7 +29948,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1026 this -1926788825 +532445947 1 this.bits 32 @@ -29742,7 +29964,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1027 this -1926788825 +532445947 1 this.bits 32 @@ -29755,7 +29977,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1027 this -1926788825 +532445947 1 this.bits 32 @@ -29771,7 +29993,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1028 this -1926788825 +532445947 1 this.bits 32 @@ -29784,7 +30006,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1028 this -1926788825 +532445947 1 this.bits 32 @@ -29800,7 +30022,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1029 this -1926788825 +532445947 1 this.bits 32 @@ -29813,7 +30035,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1029 this -1926788825 +532445947 1 this.bits 32 @@ -29829,7 +30051,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1030 this -1926788825 +532445947 1 this.bits 32 @@ -29842,7 +30064,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1030 this -1926788825 +532445947 1 this.bits 32 @@ -29858,7 +30080,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1031 this -1926788825 +532445947 1 this.bits 32 @@ -29871,7 +30093,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1031 this -1926788825 +532445947 1 this.bits 32 @@ -29887,7 +30109,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1032 this -1926788825 +532445947 1 this.bits 32 @@ -29900,7 +30122,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1032 this -1926788825 +532445947 1 this.bits 32 @@ -29916,7 +30138,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1033 this -1926788825 +532445947 1 this.bits 32 @@ -29929,7 +30151,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1033 this -1926788825 +532445947 1 this.bits 32 @@ -29945,7 +30167,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1034 this -1926788825 +532445947 1 this.bits 32 @@ -29958,7 +30180,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1034 this -1926788825 +532445947 1 this.bits 0 @@ -29971,7 +30193,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1035 this -1926788825 +532445947 1 this.bits 0 @@ -29984,7 +30206,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1035 this -1926788825 +532445947 1 this.bits 0 @@ -30000,7 +30222,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1036 this -1926788825 +532445947 1 this.bits 0 @@ -30013,7 +30235,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1036 this -1926788825 +532445947 1 this.bits 0 @@ -30029,7 +30251,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1037 this -1926788825 +532445947 1 this.bits 0 @@ -30042,7 +30264,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1037 this -1926788825 +532445947 1 this.bits 0 @@ -30058,7 +30280,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1038 this -1926788825 +532445947 1 this.bits 0 @@ -30071,7 +30293,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1038 this -1926788825 +532445947 1 this.bits 0 @@ -30087,7 +30309,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1039 this -1926788825 +532445947 1 this.bits 0 @@ -30100,7 +30322,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1039 this -1926788825 +532445947 1 this.bits 0 @@ -30116,7 +30338,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1040 this -1926788825 +532445947 1 this.bits 0 @@ -30129,7 +30351,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1040 this -1926788825 +532445947 1 this.bits 0 @@ -30145,7 +30367,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1041 this -1926788825 +532445947 1 this.bits 0 @@ -30158,7 +30380,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1041 this -1926788825 +532445947 1 this.bits 0 @@ -30174,7 +30396,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1042 this -1926788825 +532445947 1 this.bits 0 @@ -30187,7 +30409,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1042 this -1926788825 +532445947 1 this.bits 0 @@ -30203,7 +30425,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1043 this -1926788825 +532445947 1 this.bits 0 @@ -30216,7 +30438,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1043 this -1926788825 +532445947 1 this.bits 1 @@ -30229,7 +30451,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1044 this -1926788825 +532445947 1 this.bits 1 @@ -30242,7 +30464,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1044 this -1926788825 +532445947 1 this.bits 1 @@ -30258,7 +30480,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1045 this -1926788825 +532445947 1 this.bits 1 @@ -30271,7 +30493,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1045 this -1926788825 +532445947 1 this.bits 1 @@ -30287,7 +30509,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1046 this -1926788825 +532445947 1 this.bits 1 @@ -30300,7 +30522,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1046 this -1926788825 +532445947 1 this.bits 1 @@ -30316,7 +30538,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1047 this -1926788825 +532445947 1 this.bits 1 @@ -30329,7 +30551,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1047 this -1926788825 +532445947 1 this.bits 1 @@ -30345,7 +30567,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1048 this -1926788825 +532445947 1 this.bits 1 @@ -30358,7 +30580,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1048 this -1926788825 +532445947 1 this.bits 1 @@ -30374,7 +30596,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1049 this -1926788825 +532445947 1 this.bits 1 @@ -30387,7 +30609,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1049 this -1926788825 +532445947 1 this.bits 1 @@ -30403,7 +30625,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1050 this -1926788825 +532445947 1 this.bits 1 @@ -30416,7 +30638,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1050 this -1926788825 +532445947 1 this.bits 1 @@ -30432,7 +30654,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1051 this -1926788825 +532445947 1 this.bits 1 @@ -30445,7 +30667,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1051 this -1926788825 +532445947 1 this.bits 1 @@ -30461,7 +30683,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1052 this -1926788825 +532445947 1 this.bits 1 @@ -30474,7 +30696,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1052 this -1926788825 +532445947 1 this.bits 0 @@ -30487,7 +30709,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1053 this -1926788825 +532445947 1 this.bits 0 @@ -30500,7 +30722,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1053 this -1926788825 +532445947 1 this.bits 0 @@ -30516,7 +30738,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1054 this -1926788825 +532445947 1 this.bits 0 @@ -30529,7 +30751,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1054 this -1926788825 +532445947 1 this.bits 0 @@ -30545,7 +30767,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1055 this -1926788825 +532445947 1 this.bits 0 @@ -30558,7 +30780,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1055 this -1926788825 +532445947 1 this.bits 0 @@ -30574,7 +30796,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1056 this -1926788825 +532445947 1 this.bits 0 @@ -30587,7 +30809,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1056 this -1926788825 +532445947 1 this.bits 0 @@ -30603,7 +30825,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1057 this -1926788825 +532445947 1 this.bits 0 @@ -30616,7 +30838,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1057 this -1926788825 +532445947 1 this.bits 0 @@ -30632,7 +30854,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1058 this -1926788825 +532445947 1 this.bits 0 @@ -30645,7 +30867,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1058 this -1926788825 +532445947 1 this.bits 0 @@ -30661,7 +30883,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1059 this -1926788825 +532445947 1 this.bits 0 @@ -30674,7 +30896,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1059 this -1926788825 +532445947 1 this.bits 0 @@ -30690,7 +30912,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1060 this -1926788825 +532445947 1 this.bits 0 @@ -30703,7 +30925,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1060 this -1926788825 +532445947 1 this.bits 0 @@ -30719,7 +30941,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1061 this -1926788825 +532445947 1 this.bits 0 @@ -30732,7 +30954,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1061 this -1926788825 +532445947 1 this.bits 64 @@ -30745,7 +30967,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1062 this -1926788825 +532445947 1 this.bits 64 @@ -30758,7 +30980,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1062 this -1926788825 +532445947 1 this.bits 64 @@ -30774,7 +30996,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1063 this -1926788825 +532445947 1 this.bits 64 @@ -30787,7 +31009,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1063 this -1926788825 +532445947 1 this.bits 64 @@ -30803,7 +31025,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1064 this -1926788825 +532445947 1 this.bits 64 @@ -30816,7 +31038,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1064 this -1926788825 +532445947 1 this.bits 64 @@ -30832,7 +31054,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1065 this -1926788825 +532445947 1 this.bits 64 @@ -30845,7 +31067,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1065 this -1926788825 +532445947 1 this.bits 64 @@ -30861,7 +31083,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1066 this -1926788825 +532445947 1 this.bits 64 @@ -30874,7 +31096,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1066 this -1926788825 +532445947 1 this.bits 64 @@ -30890,7 +31112,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1067 this -1926788825 +532445947 1 this.bits 64 @@ -30903,7 +31125,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1067 this -1926788825 +532445947 1 this.bits 64 @@ -30919,7 +31141,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1068 this -1926788825 +532445947 1 this.bits 64 @@ -30932,7 +31154,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1068 this -1926788825 +532445947 1 this.bits 64 @@ -30948,7 +31170,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1069 this -1926788825 +532445947 1 this.bits 64 @@ -30961,7 +31183,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1069 this -1926788825 +532445947 1 this.bits 64 @@ -30977,7 +31199,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1070 this -1926788825 +532445947 1 this.bits 64 @@ -30990,7 +31212,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1070 this -1926788825 +532445947 1 this.bits 0 @@ -31003,7 +31225,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1071 this -1926788825 +532445947 1 this.bits 0 @@ -31016,7 +31238,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1071 this -1926788825 +532445947 1 this.bits 0 @@ -31032,7 +31254,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1072 this -1926788825 +532445947 1 this.bits 0 @@ -31045,7 +31267,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1072 this -1926788825 +532445947 1 this.bits 0 @@ -31061,7 +31283,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1073 this -1926788825 +532445947 1 this.bits 0 @@ -31074,7 +31296,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1073 this -1926788825 +532445947 1 this.bits 0 @@ -31090,7 +31312,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1074 this -1926788825 +532445947 1 this.bits 0 @@ -31103,7 +31325,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1074 this -1926788825 +532445947 1 this.bits 0 @@ -31119,7 +31341,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1075 this -1926788825 +532445947 1 this.bits 0 @@ -31132,7 +31354,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1075 this -1926788825 +532445947 1 this.bits 0 @@ -31148,7 +31370,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1076 this -1926788825 +532445947 1 this.bits 0 @@ -31161,7 +31383,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1076 this -1926788825 +532445947 1 this.bits 0 @@ -31177,7 +31399,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1077 this -1926788825 +532445947 1 this.bits 0 @@ -31190,7 +31412,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1077 this -1926788825 +532445947 1 this.bits 0 @@ -31206,7 +31428,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1078 this -1926788825 +532445947 1 this.bits 0 @@ -31219,7 +31441,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1078 this -1926788825 +532445947 1 this.bits 0 @@ -31235,7 +31457,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1079 this -1926788825 +532445947 1 this.bits 0 @@ -31248,7 +31470,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1079 this -1926788825 +532445947 1 this.bits 4 @@ -31261,7 +31483,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1080 this -1926788825 +532445947 1 this.bits 4 @@ -31274,7 +31496,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1080 this -1926788825 +532445947 1 this.bits 4 @@ -31290,7 +31512,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1081 this -1926788825 +532445947 1 this.bits 4 @@ -31303,7 +31525,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1081 this -1926788825 +532445947 1 this.bits 4 @@ -31319,7 +31541,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1082 this -1926788825 +532445947 1 this.bits 4 @@ -31332,7 +31554,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1082 this -1926788825 +532445947 1 this.bits 4 @@ -31348,7 +31570,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1083 this -1926788825 +532445947 1 this.bits 4 @@ -31361,7 +31583,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1083 this -1926788825 +532445947 1 this.bits 4 @@ -31377,7 +31599,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1084 this -1926788825 +532445947 1 this.bits 4 @@ -31390,7 +31612,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1084 this -1926788825 +532445947 1 this.bits 4 @@ -31406,7 +31628,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1085 this -1926788825 +532445947 1 this.bits 4 @@ -31419,7 +31641,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1085 this -1926788825 +532445947 1 this.bits 4 @@ -31435,7 +31657,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1086 this -1926788825 +532445947 1 this.bits 4 @@ -31448,7 +31670,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1086 this -1926788825 +532445947 1 this.bits 4 @@ -31464,7 +31686,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1087 this -1926788825 +532445947 1 this.bits 4 @@ -31477,7 +31699,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1087 this -1926788825 +532445947 1 this.bits 4 @@ -31493,7 +31715,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1088 this -1926788825 +532445947 1 this.bits 4 @@ -31506,7 +31728,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1088 this -1926788825 +532445947 1 this.bits 0 @@ -31519,7 +31741,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1089 this -1926788825 +532445947 1 this.bits 0 @@ -31532,7 +31754,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1089 this -1926788825 +532445947 1 this.bits 0 @@ -31548,7 +31770,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1090 this -1926788825 +532445947 1 this.bits 0 @@ -31561,7 +31783,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1090 this -1926788825 +532445947 1 this.bits 0 @@ -31577,7 +31799,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1091 this -1926788825 +532445947 1 this.bits 0 @@ -31590,7 +31812,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1091 this -1926788825 +532445947 1 this.bits 0 @@ -31606,7 +31828,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1092 this -1926788825 +532445947 1 this.bits 0 @@ -31619,7 +31841,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1092 this -1926788825 +532445947 1 this.bits 0 @@ -31635,7 +31857,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1093 this -1926788825 +532445947 1 this.bits 0 @@ -31648,7 +31870,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1093 this -1926788825 +532445947 1 this.bits 0 @@ -31664,7 +31886,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1094 this -1926788825 +532445947 1 this.bits 0 @@ -31677,7 +31899,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1094 this -1926788825 +532445947 1 this.bits 0 @@ -31693,7 +31915,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1095 this -1926788825 +532445947 1 this.bits 0 @@ -31706,7 +31928,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1095 this -1926788825 +532445947 1 this.bits 0 @@ -31722,7 +31944,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1096 this -1926788825 +532445947 1 this.bits 0 @@ -31735,7 +31957,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1096 this -1926788825 +532445947 1 this.bits 0 @@ -31751,7 +31973,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1097 this -1926788825 +532445947 1 this.bits 0 @@ -31764,7 +31986,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1097 this -1926788825 +532445947 1 this.bits 8 @@ -31777,7 +31999,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1098 this -1926788825 +532445947 1 this.bits 8 @@ -31790,7 +32012,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1098 this -1926788825 +532445947 1 this.bits 8 @@ -31806,7 +32028,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1099 this -1926788825 +532445947 1 this.bits 8 @@ -31819,7 +32041,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1099 this -1926788825 +532445947 1 this.bits 8 @@ -31835,7 +32057,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1100 this -1926788825 +532445947 1 this.bits 8 @@ -31848,7 +32070,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1100 this -1926788825 +532445947 1 this.bits 8 @@ -31864,7 +32086,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1101 this -1926788825 +532445947 1 this.bits 8 @@ -31877,7 +32099,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1101 this -1926788825 +532445947 1 this.bits 8 @@ -31893,7 +32115,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1102 this -1926788825 +532445947 1 this.bits 8 @@ -31906,7 +32128,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1102 this -1926788825 +532445947 1 this.bits 8 @@ -31922,7 +32144,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1103 this -1926788825 +532445947 1 this.bits 8 @@ -31935,7 +32157,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1103 this -1926788825 +532445947 1 this.bits 8 @@ -31951,7 +32173,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1104 this -1926788825 +532445947 1 this.bits 8 @@ -31964,7 +32186,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1104 this -1926788825 +532445947 1 this.bits 8 @@ -31980,7 +32202,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1105 this -1926788825 +532445947 1 this.bits 8 @@ -31993,7 +32215,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1105 this -1926788825 +532445947 1 this.bits 8 @@ -32009,7 +32231,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1106 this -1926788825 +532445947 1 this.bits 8 @@ -32022,7 +32244,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1106 this -1926788825 +532445947 1 this.bits 0 @@ -32035,7 +32257,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1107 this -1926788825 +532445947 1 this.bits 0 @@ -32048,7 +32270,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1107 this -1926788825 +532445947 1 this.bits 0 @@ -32064,7 +32286,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1108 this -1926788825 +532445947 1 this.bits 0 @@ -32077,7 +32299,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1108 this -1926788825 +532445947 1 this.bits 0 @@ -32093,7 +32315,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1109 this -1926788825 +532445947 1 this.bits 0 @@ -32106,7 +32328,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1109 this -1926788825 +532445947 1 this.bits 0 @@ -32122,7 +32344,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1110 this -1926788825 +532445947 1 this.bits 0 @@ -32135,7 +32357,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1110 this -1926788825 +532445947 1 this.bits 0 @@ -32151,7 +32373,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1111 this -1926788825 +532445947 1 this.bits 0 @@ -32164,7 +32386,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1111 this -1926788825 +532445947 1 this.bits 0 @@ -32180,7 +32402,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1112 this -1926788825 +532445947 1 this.bits 0 @@ -32193,7 +32415,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1112 this -1926788825 +532445947 1 this.bits 0 @@ -32209,7 +32431,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1113 this -1926788825 +532445947 1 this.bits 0 @@ -32222,7 +32444,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1113 this -1926788825 +532445947 1 this.bits 0 @@ -32238,7 +32460,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1114 this -1926788825 +532445947 1 this.bits 0 @@ -32251,7 +32473,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1114 this -1926788825 +532445947 1 this.bits 0 @@ -32267,7 +32489,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1115 this -1926788825 +532445947 1 this.bits 0 @@ -32280,7 +32502,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1115 this -1926788825 +532445947 1 this.bits 64 @@ -32293,7 +32515,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1116 this -1926788825 +532445947 1 this.bits 64 @@ -32306,7 +32528,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1116 this -1926788825 +532445947 1 this.bits 64 @@ -32322,7 +32544,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1117 this -1926788825 +532445947 1 this.bits 64 @@ -32335,7 +32557,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1117 this -1926788825 +532445947 1 this.bits 64 @@ -32351,7 +32573,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1118 this -1926788825 +532445947 1 this.bits 64 @@ -32364,7 +32586,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1118 this -1926788825 +532445947 1 this.bits 64 @@ -32380,7 +32602,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1119 this -1926788825 +532445947 1 this.bits 64 @@ -32393,7 +32615,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1119 this -1926788825 +532445947 1 this.bits 64 @@ -32409,7 +32631,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1120 this -1926788825 +532445947 1 this.bits 64 @@ -32422,7 +32644,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1120 this -1926788825 +532445947 1 this.bits 64 @@ -32438,7 +32660,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1121 this -1926788825 +532445947 1 this.bits 64 @@ -32451,7 +32673,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1121 this -1926788825 +532445947 1 this.bits 64 @@ -32467,7 +32689,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1122 this -1926788825 +532445947 1 this.bits 64 @@ -32480,7 +32702,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1122 this -1926788825 +532445947 1 this.bits 64 @@ -32496,7 +32718,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1123 this -1926788825 +532445947 1 this.bits 64 @@ -32509,7 +32731,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1123 this -1926788825 +532445947 1 this.bits 64 @@ -32525,7 +32747,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1124 this -1926788825 +532445947 1 this.bits 64 @@ -32538,7 +32760,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1124 this -1926788825 +532445947 1 this.bits 0 @@ -32551,7 +32773,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1125 this -1926788825 +532445947 1 this.bits 0 @@ -32564,7 +32786,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1125 this -1926788825 +532445947 1 this.bits 0 @@ -32580,7 +32802,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1126 this -1926788825 +532445947 1 this.bits 0 @@ -32593,7 +32815,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1126 this -1926788825 +532445947 1 this.bits 0 @@ -32609,7 +32831,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1127 this -1926788825 +532445947 1 this.bits 0 @@ -32622,7 +32844,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1127 this -1926788825 +532445947 1 this.bits 0 @@ -32638,7 +32860,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1128 this -1926788825 +532445947 1 this.bits 0 @@ -32651,7 +32873,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1128 this -1926788825 +532445947 1 this.bits 0 @@ -32667,7 +32889,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1129 this -1926788825 +532445947 1 this.bits 0 @@ -32680,7 +32902,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1129 this -1926788825 +532445947 1 this.bits 0 @@ -32696,7 +32918,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1130 this -1926788825 +532445947 1 this.bits 0 @@ -32709,7 +32931,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1130 this -1926788825 +532445947 1 this.bits 0 @@ -32725,7 +32947,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1131 this -1926788825 +532445947 1 this.bits 0 @@ -32738,7 +32960,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1131 this -1926788825 +532445947 1 this.bits 0 @@ -32754,7 +32976,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1132 this -1926788825 +532445947 1 this.bits 0 @@ -32767,7 +32989,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1132 this -1926788825 +532445947 1 this.bits 0 @@ -32783,7 +33005,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1133 this -1926788825 +532445947 1 this.bits 0 @@ -32796,7 +33018,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1133 this -1926788825 +532445947 1 this.bits 32 @@ -32809,7 +33031,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1134 this -1926788825 +532445947 1 this.bits 32 @@ -32822,7 +33044,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1134 this -1926788825 +532445947 1 this.bits 32 @@ -32838,7 +33060,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1135 this -1926788825 +532445947 1 this.bits 32 @@ -32851,7 +33073,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1135 this -1926788825 +532445947 1 this.bits 32 @@ -32867,7 +33089,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1136 this -1926788825 +532445947 1 this.bits 32 @@ -32880,7 +33102,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1136 this -1926788825 +532445947 1 this.bits 32 @@ -32896,7 +33118,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1137 this -1926788825 +532445947 1 this.bits 32 @@ -32909,7 +33131,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1137 this -1926788825 +532445947 1 this.bits 32 @@ -32925,7 +33147,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1138 this -1926788825 +532445947 1 this.bits 32 @@ -32938,7 +33160,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1138 this -1926788825 +532445947 1 this.bits 32 @@ -32954,7 +33176,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1139 this -1926788825 +532445947 1 this.bits 32 @@ -32967,7 +33189,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1139 this -1926788825 +532445947 1 this.bits 32 @@ -32983,7 +33205,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1140 this -1926788825 +532445947 1 this.bits 32 @@ -32996,7 +33218,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1140 this -1926788825 +532445947 1 this.bits 32 @@ -33012,7 +33234,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1141 this -1926788825 +532445947 1 this.bits 32 @@ -33025,7 +33247,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1141 this -1926788825 +532445947 1 this.bits 32 @@ -33041,7 +33263,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1142 this -1926788825 +532445947 1 this.bits 32 @@ -33054,7 +33276,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1142 this -1926788825 +532445947 1 this.bits 0 @@ -33067,7 +33289,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1143 this -1926788825 +532445947 1 this.bits 0 @@ -33080,7 +33302,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1143 this -1926788825 +532445947 1 this.bits 0 @@ -33096,7 +33318,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1144 this -1926788825 +532445947 1 this.bits 0 @@ -33109,7 +33331,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1144 this -1926788825 +532445947 1 this.bits 0 @@ -33125,7 +33347,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1145 this -1926788825 +532445947 1 this.bits 0 @@ -33138,7 +33360,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1145 this -1926788825 +532445947 1 this.bits 0 @@ -33154,7 +33376,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1146 this -1926788825 +532445947 1 this.bits 0 @@ -33167,7 +33389,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1146 this -1926788825 +532445947 1 this.bits 0 @@ -33183,7 +33405,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1147 this -1926788825 +532445947 1 this.bits 0 @@ -33196,7 +33418,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1147 this -1926788825 +532445947 1 this.bits 0 @@ -33212,7 +33434,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1148 this -1926788825 +532445947 1 this.bits 0 @@ -33225,7 +33447,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1148 this -1926788825 +532445947 1 this.bits 0 @@ -33241,7 +33463,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1149 this -1926788825 +532445947 1 this.bits 0 @@ -33254,7 +33476,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1149 this -1926788825 +532445947 1 this.bits 0 @@ -33270,7 +33492,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1150 this -1926788825 +532445947 1 this.bits 0 @@ -33283,7 +33505,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1150 this -1926788825 +532445947 1 this.bits 0 @@ -33299,7 +33521,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1151 this -1926788825 +532445947 1 this.bits 0 @@ -33312,7 +33534,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1151 this -1926788825 +532445947 1 this.bits 64 @@ -33325,7 +33547,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1152 this -1926788825 +532445947 1 this.bits 64 @@ -33338,7 +33560,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1152 this -1926788825 +532445947 1 this.bits 64 @@ -33354,7 +33576,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1153 this -1926788825 +532445947 1 this.bits 64 @@ -33367,7 +33589,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1153 this -1926788825 +532445947 1 this.bits 64 @@ -33383,7 +33605,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1154 this -1926788825 +532445947 1 this.bits 64 @@ -33396,7 +33618,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1154 this -1926788825 +532445947 1 this.bits 64 @@ -33412,7 +33634,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1155 this -1926788825 +532445947 1 this.bits 64 @@ -33425,7 +33647,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1155 this -1926788825 +532445947 1 this.bits 64 @@ -33441,7 +33663,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1156 this -1926788825 +532445947 1 this.bits 64 @@ -33454,7 +33676,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1156 this -1926788825 +532445947 1 this.bits 64 @@ -33470,7 +33692,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1157 this -1926788825 +532445947 1 this.bits 64 @@ -33483,7 +33705,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1157 this -1926788825 +532445947 1 this.bits 64 @@ -33499,7 +33721,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1158 this -1926788825 +532445947 1 this.bits 64 @@ -33512,7 +33734,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1158 this -1926788825 +532445947 1 this.bits 64 @@ -33528,7 +33750,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1159 this -1926788825 +532445947 1 this.bits 64 @@ -33541,7 +33763,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1159 this -1926788825 +532445947 1 this.bits 64 @@ -33557,7 +33779,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1160 this -1926788825 +532445947 1 this.bits 64 @@ -33570,7 +33792,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1160 this -1926788825 +532445947 1 this.bits 0 @@ -33583,7 +33805,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1161 this -1926788825 +532445947 1 this.bits 0 @@ -33596,7 +33818,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1161 this -1926788825 +532445947 1 this.bits 0 @@ -33612,7 +33834,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1162 this -1926788825 +532445947 1 this.bits 0 @@ -33625,7 +33847,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1162 this -1926788825 +532445947 1 this.bits 0 @@ -33641,7 +33863,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1163 this -1926788825 +532445947 1 this.bits 0 @@ -33654,7 +33876,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1163 this -1926788825 +532445947 1 this.bits 0 @@ -33670,7 +33892,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1164 this -1926788825 +532445947 1 this.bits 0 @@ -33683,7 +33905,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1164 this -1926788825 +532445947 1 this.bits 0 @@ -33699,7 +33921,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1165 this -1926788825 +532445947 1 this.bits 0 @@ -33712,7 +33934,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1165 this -1926788825 +532445947 1 this.bits 0 @@ -33728,7 +33950,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1166 this -1926788825 +532445947 1 this.bits 0 @@ -33741,7 +33963,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1166 this -1926788825 +532445947 1 this.bits 0 @@ -33757,7 +33979,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1167 this -1926788825 +532445947 1 this.bits 0 @@ -33770,7 +33992,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1167 this -1926788825 +532445947 1 this.bits 0 @@ -33786,7 +34008,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1168 this -1926788825 +532445947 1 this.bits 0 @@ -33799,7 +34021,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1168 this -1926788825 +532445947 1 this.bits 0 @@ -33815,7 +34037,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1169 this -1926788825 +532445947 1 this.bits 0 @@ -33828,7 +34050,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1169 this -1926788825 +532445947 1 this.bits 32 @@ -33841,7 +34063,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1170 this -1926788825 +532445947 1 this.bits 32 @@ -33854,7 +34076,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1170 this -1926788825 +532445947 1 this.bits 32 @@ -33870,7 +34092,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1171 this -1926788825 +532445947 1 this.bits 32 @@ -33883,7 +34105,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1171 this -1926788825 +532445947 1 this.bits 32 @@ -33899,7 +34121,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1172 this -1926788825 +532445947 1 this.bits 32 @@ -33912,7 +34134,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1172 this -1926788825 +532445947 1 this.bits 32 @@ -33928,7 +34150,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1173 this -1926788825 +532445947 1 this.bits 32 @@ -33941,7 +34163,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1173 this -1926788825 +532445947 1 this.bits 32 @@ -33957,7 +34179,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1174 this -1926788825 +532445947 1 this.bits 32 @@ -33970,7 +34192,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1174 this -1926788825 +532445947 1 this.bits 32 @@ -33986,7 +34208,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1175 this -1926788825 +532445947 1 this.bits 32 @@ -33999,7 +34221,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1175 this -1926788825 +532445947 1 this.bits 32 @@ -34015,7 +34237,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1176 this -1926788825 +532445947 1 this.bits 32 @@ -34028,7 +34250,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1176 this -1926788825 +532445947 1 this.bits 32 @@ -34044,7 +34266,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1177 this -1926788825 +532445947 1 this.bits 32 @@ -34057,7 +34279,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1177 this -1926788825 +532445947 1 this.bits 32 @@ -34073,7 +34295,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1178 this -1926788825 +532445947 1 this.bits 32 @@ -34086,7 +34308,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1178 this -1926788825 +532445947 1 this.bits 0 @@ -34099,7 +34321,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1179 this -1926788825 +532445947 1 this.bits 0 @@ -34112,7 +34334,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1179 this -1926788825 +532445947 1 this.bits 0 @@ -34128,7 +34350,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1180 this -1926788825 +532445947 1 this.bits 0 @@ -34141,7 +34363,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1180 this -1926788825 +532445947 1 this.bits 0 @@ -34157,7 +34379,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1181 this -1926788825 +532445947 1 this.bits 0 @@ -34170,7 +34392,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1181 this -1926788825 +532445947 1 this.bits 0 @@ -34186,7 +34408,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1182 this -1926788825 +532445947 1 this.bits 0 @@ -34199,7 +34421,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1182 this -1926788825 +532445947 1 this.bits 0 @@ -34215,7 +34437,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1183 this -1926788825 +532445947 1 this.bits 0 @@ -34228,7 +34450,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1183 this -1926788825 +532445947 1 this.bits 0 @@ -34244,7 +34466,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1184 this -1926788825 +532445947 1 this.bits 0 @@ -34257,7 +34479,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1184 this -1926788825 +532445947 1 this.bits 0 @@ -34273,7 +34495,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1185 this -1926788825 +532445947 1 this.bits 0 @@ -34286,7 +34508,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1185 this -1926788825 +532445947 1 this.bits 0 @@ -34302,7 +34524,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1186 this -1926788825 +532445947 1 this.bits 0 @@ -34315,7 +34537,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1186 this -1926788825 +532445947 1 this.bits 0 @@ -34331,7 +34553,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1187 this -1926788825 +532445947 1 this.bits 0 @@ -34344,7 +34566,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1187 this -1926788825 +532445947 1 this.bits 4 @@ -34357,7 +34579,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1188 this -1926788825 +532445947 1 this.bits 4 @@ -34370,7 +34592,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1188 this -1926788825 +532445947 1 this.bits 4 @@ -34386,7 +34608,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1189 this -1926788825 +532445947 1 this.bits 4 @@ -34399,7 +34621,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1189 this -1926788825 +532445947 1 this.bits 4 @@ -34415,7 +34637,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1190 this -1926788825 +532445947 1 this.bits 4 @@ -34428,7 +34650,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1190 this -1926788825 +532445947 1 this.bits 4 @@ -34444,7 +34666,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1191 this -1926788825 +532445947 1 this.bits 4 @@ -34457,7 +34679,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1191 this -1926788825 +532445947 1 this.bits 4 @@ -34473,7 +34695,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1192 this -1926788825 +532445947 1 this.bits 4 @@ -34486,7 +34708,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1192 this -1926788825 +532445947 1 this.bits 4 @@ -34502,7 +34724,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1193 this -1926788825 +532445947 1 this.bits 4 @@ -34515,7 +34737,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1193 this -1926788825 +532445947 1 this.bits 4 @@ -34531,7 +34753,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1194 this -1926788825 +532445947 1 this.bits 4 @@ -34544,7 +34766,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1194 this -1926788825 +532445947 1 this.bits 4 @@ -34560,7 +34782,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1195 this -1926788825 +532445947 1 this.bits 4 @@ -34573,7 +34795,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1195 this -1926788825 +532445947 1 this.bits 4 @@ -34589,7 +34811,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1196 this -1926788825 +532445947 1 this.bits 4 @@ -34602,7 +34824,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1196 this -1926788825 +532445947 1 this.bits 0 @@ -34615,7 +34837,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1197 this -1926788825 +532445947 1 this.bits 0 @@ -34628,7 +34850,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1197 this -1926788825 +532445947 1 this.bits 0 @@ -34644,7 +34866,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1198 this -1926788825 +532445947 1 this.bits 0 @@ -34657,7 +34879,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1198 this -1926788825 +532445947 1 this.bits 0 @@ -34673,7 +34895,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1199 this -1926788825 +532445947 1 this.bits 0 @@ -34686,7 +34908,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1199 this -1926788825 +532445947 1 this.bits 0 @@ -34702,7 +34924,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1200 this -1926788825 +532445947 1 this.bits 0 @@ -34715,7 +34937,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1200 this -1926788825 +532445947 1 this.bits 0 @@ -34731,7 +34953,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1201 this -1926788825 +532445947 1 this.bits 0 @@ -34744,7 +34966,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1201 this -1926788825 +532445947 1 this.bits 0 @@ -34760,7 +34982,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1202 this -1926788825 +532445947 1 this.bits 0 @@ -34773,7 +34995,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1202 this -1926788825 +532445947 1 this.bits 0 @@ -34789,7 +35011,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1203 this -1926788825 +532445947 1 this.bits 0 @@ -34802,7 +35024,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1203 this -1926788825 +532445947 1 this.bits 0 @@ -34818,7 +35040,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1204 this -1926788825 +532445947 1 this.bits 0 @@ -34831,7 +35053,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1204 this -1926788825 +532445947 1 this.bits 0 @@ -34847,7 +35069,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1205 this -1926788825 +532445947 1 this.bits 0 @@ -34860,7 +35082,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1205 this -1926788825 +532445947 1 this.bits 32 @@ -34873,7 +35095,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1206 this -1926788825 +532445947 1 this.bits 32 @@ -34886,7 +35108,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1206 this -1926788825 +532445947 1 this.bits 32 @@ -34902,7 +35124,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1207 this -1926788825 +532445947 1 this.bits 32 @@ -34915,7 +35137,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1207 this -1926788825 +532445947 1 this.bits 32 @@ -34931,7 +35153,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1208 this -1926788825 +532445947 1 this.bits 32 @@ -34944,7 +35166,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1208 this -1926788825 +532445947 1 this.bits 32 @@ -34960,7 +35182,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1209 this -1926788825 +532445947 1 this.bits 32 @@ -34973,7 +35195,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1209 this -1926788825 +532445947 1 this.bits 32 @@ -34989,7 +35211,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1210 this -1926788825 +532445947 1 this.bits 32 @@ -35002,7 +35224,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1210 this -1926788825 +532445947 1 this.bits 32 @@ -35018,7 +35240,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1211 this -1926788825 +532445947 1 this.bits 32 @@ -35031,7 +35253,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1211 this -1926788825 +532445947 1 this.bits 32 @@ -35047,7 +35269,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1212 this -1926788825 +532445947 1 this.bits 32 @@ -35060,7 +35282,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1212 this -1926788825 +532445947 1 this.bits 32 @@ -35076,7 +35298,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1213 this -1926788825 +532445947 1 this.bits 32 @@ -35089,7 +35311,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1213 this -1926788825 +532445947 1 this.bits 32 @@ -35105,7 +35327,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1214 this -1926788825 +532445947 1 this.bits 32 @@ -35118,7 +35340,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1214 this -1926788825 +532445947 1 this.bits 0 @@ -35131,7 +35353,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1215 this -1926788825 +532445947 1 this.bits 0 @@ -35144,7 +35366,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1215 this -1926788825 +532445947 1 this.bits 0 @@ -35160,7 +35382,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1216 this -1926788825 +532445947 1 this.bits 0 @@ -35173,7 +35395,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1216 this -1926788825 +532445947 1 this.bits 0 @@ -35189,7 +35411,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1217 this -1926788825 +532445947 1 this.bits 0 @@ -35202,7 +35424,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1217 this -1926788825 +532445947 1 this.bits 0 @@ -35218,7 +35440,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1218 this -1926788825 +532445947 1 this.bits 0 @@ -35231,7 +35453,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1218 this -1926788825 +532445947 1 this.bits 0 @@ -35247,7 +35469,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1219 this -1926788825 +532445947 1 this.bits 0 @@ -35260,7 +35482,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1219 this -1926788825 +532445947 1 this.bits 0 @@ -35276,7 +35498,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1220 this -1926788825 +532445947 1 this.bits 0 @@ -35289,7 +35511,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1220 this -1926788825 +532445947 1 this.bits 0 @@ -35305,7 +35527,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1221 this -1926788825 +532445947 1 this.bits 0 @@ -35318,7 +35540,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1221 this -1926788825 +532445947 1 this.bits 0 @@ -35334,7 +35556,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1222 this -1926788825 +532445947 1 this.bits 0 @@ -35347,7 +35569,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1222 this -1926788825 +532445947 1 this.bits 0 @@ -35363,7 +35585,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1223 this -1926788825 +532445947 1 this.bits 0 @@ -35376,7 +35598,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1223 this -1926788825 +532445947 1 this.bits 16 @@ -35389,7 +35611,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1224 this -1926788825 +532445947 1 this.bits 16 @@ -35402,7 +35624,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1224 this -1926788825 +532445947 1 this.bits 16 @@ -35418,7 +35640,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1225 this -1926788825 +532445947 1 this.bits 16 @@ -35431,7 +35653,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1225 this -1926788825 +532445947 1 this.bits 16 @@ -35447,7 +35669,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1226 this -1926788825 +532445947 1 this.bits 16 @@ -35460,7 +35682,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1226 this -1926788825 +532445947 1 this.bits 16 @@ -35476,7 +35698,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1227 this -1926788825 +532445947 1 this.bits 16 @@ -35489,7 +35711,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1227 this -1926788825 +532445947 1 this.bits 16 @@ -35505,7 +35727,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1228 this -1926788825 +532445947 1 this.bits 16 @@ -35518,7 +35740,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1228 this -1926788825 +532445947 1 this.bits 16 @@ -35534,7 +35756,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1229 this -1926788825 +532445947 1 this.bits 16 @@ -35547,7 +35769,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1229 this -1926788825 +532445947 1 this.bits 16 @@ -35563,7 +35785,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1230 this -1926788825 +532445947 1 this.bits 16 @@ -35576,7 +35798,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1230 this -1926788825 +532445947 1 this.bits 16 @@ -35592,7 +35814,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1231 this -1926788825 +532445947 1 this.bits 16 @@ -35605,7 +35827,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1231 this -1926788825 +532445947 1 this.bits 16 @@ -35621,7 +35843,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1232 this -1926788825 +532445947 1 this.bits 16 @@ -35634,7 +35856,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1232 this -1926788825 +532445947 1 this.bits 0 @@ -35647,7 +35869,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1233 this -1926788825 +532445947 1 this.bits 0 @@ -35660,7 +35882,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1233 this -1926788825 +532445947 1 this.bits 0 @@ -35676,7 +35898,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1234 this -1926788825 +532445947 1 this.bits 0 @@ -35689,7 +35911,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1234 this -1926788825 +532445947 1 this.bits 0 @@ -35705,7 +35927,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1235 this -1926788825 +532445947 1 this.bits 0 @@ -35718,7 +35940,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1235 this -1926788825 +532445947 1 this.bits 0 @@ -35734,7 +35956,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1236 this -1926788825 +532445947 1 this.bits 0 @@ -35747,7 +35969,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1236 this -1926788825 +532445947 1 this.bits 0 @@ -35763,7 +35985,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1237 this -1926788825 +532445947 1 this.bits 0 @@ -35776,7 +35998,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1237 this -1926788825 +532445947 1 this.bits 0 @@ -35792,7 +36014,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1238 this -1926788825 +532445947 1 this.bits 0 @@ -35805,7 +36027,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1238 this -1926788825 +532445947 1 this.bits 0 @@ -35821,7 +36043,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1239 this -1926788825 +532445947 1 this.bits 0 @@ -35834,7 +36056,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1239 this -1926788825 +532445947 1 this.bits 0 @@ -35850,7 +36072,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1240 this -1926788825 +532445947 1 this.bits 0 @@ -35863,7 +36085,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1240 this -1926788825 +532445947 1 this.bits 0 @@ -35879,7 +36101,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1241 this -1926788825 +532445947 1 this.bits 0 @@ -35892,7 +36114,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1241 this -1926788825 +532445947 1 this.bits 2 @@ -35905,7 +36127,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1242 this -1926788825 +532445947 1 this.bits 2 @@ -35918,7 +36140,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1242 this -1926788825 +532445947 1 this.bits 2 @@ -35934,7 +36156,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1243 this -1926788825 +532445947 1 this.bits 2 @@ -35947,7 +36169,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1243 this -1926788825 +532445947 1 this.bits 2 @@ -35963,7 +36185,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1244 this -1926788825 +532445947 1 this.bits 2 @@ -35976,7 +36198,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1244 this -1926788825 +532445947 1 this.bits 2 @@ -35992,7 +36214,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1245 this -1926788825 +532445947 1 this.bits 2 @@ -36005,7 +36227,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1245 this -1926788825 +532445947 1 this.bits 2 @@ -36021,7 +36243,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1246 this -1926788825 +532445947 1 this.bits 2 @@ -36034,7 +36256,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1246 this -1926788825 +532445947 1 this.bits 2 @@ -36050,7 +36272,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1247 this -1926788825 +532445947 1 this.bits 2 @@ -36063,7 +36285,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1247 this -1926788825 +532445947 1 this.bits 2 @@ -36079,7 +36301,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1248 this -1926788825 +532445947 1 this.bits 2 @@ -36092,7 +36314,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1248 this -1926788825 +532445947 1 this.bits 2 @@ -36108,7 +36330,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1249 this -1926788825 +532445947 1 this.bits 2 @@ -36121,7 +36343,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1249 this -1926788825 +532445947 1 this.bits 2 @@ -36137,7 +36359,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1250 this -1926788825 +532445947 1 this.bits 2 @@ -36150,7 +36372,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1250 this -1926788825 +532445947 1 this.bits 0 @@ -36163,7 +36385,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1251 this -1926788825 +532445947 1 this.bits 0 @@ -36176,7 +36398,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1251 this -1926788825 +532445947 1 this.bits 0 @@ -36192,7 +36414,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1252 this -1926788825 +532445947 1 this.bits 0 @@ -36205,7 +36427,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1252 this -1926788825 +532445947 1 this.bits 0 @@ -36221,7 +36443,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1253 this -1926788825 +532445947 1 this.bits 0 @@ -36234,7 +36456,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1253 this -1926788825 +532445947 1 this.bits 0 @@ -36250,7 +36472,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1254 this -1926788825 +532445947 1 this.bits 0 @@ -36263,7 +36485,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1254 this -1926788825 +532445947 1 this.bits 0 @@ -36279,7 +36501,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1255 this -1926788825 +532445947 1 this.bits 0 @@ -36292,7 +36514,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1255 this -1926788825 +532445947 1 this.bits 0 @@ -36308,7 +36530,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1256 this -1926788825 +532445947 1 this.bits 0 @@ -36321,7 +36543,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1256 this -1926788825 +532445947 1 this.bits 0 @@ -36337,7 +36559,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1257 this -1926788825 +532445947 1 this.bits 0 @@ -36350,7 +36572,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1257 this -1926788825 +532445947 1 this.bits 0 @@ -36366,7 +36588,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1258 this -1926788825 +532445947 1 this.bits 0 @@ -36379,7 +36601,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1258 this -1926788825 +532445947 1 this.bits 0 @@ -36395,7 +36617,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1259 this -1926788825 +532445947 1 this.bits 0 @@ -36408,7 +36630,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1259 this -1926788825 +532445947 1 this.bits 128 @@ -36421,7 +36643,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1260 this -1926788825 +532445947 1 this.bits 128 @@ -36434,7 +36656,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1260 this -1926788825 +532445947 1 this.bits 128 @@ -36450,7 +36672,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1261 this -1926788825 +532445947 1 this.bits 128 @@ -36463,7 +36685,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1261 this -1926788825 +532445947 1 this.bits 128 @@ -36479,7 +36701,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1262 this -1926788825 +532445947 1 this.bits 128 @@ -36492,7 +36714,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1262 this -1926788825 +532445947 1 this.bits 128 @@ -36508,7 +36730,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1263 this -1926788825 +532445947 1 this.bits 128 @@ -36521,7 +36743,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1263 this -1926788825 +532445947 1 this.bits 128 @@ -36537,7 +36759,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1264 this -1926788825 +532445947 1 this.bits 128 @@ -36550,7 +36772,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1264 this -1926788825 +532445947 1 this.bits 128 @@ -36566,7 +36788,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1265 this -1926788825 +532445947 1 this.bits 128 @@ -36579,7 +36801,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1265 this -1926788825 +532445947 1 this.bits 128 @@ -36595,7 +36817,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1266 this -1926788825 +532445947 1 this.bits 128 @@ -36608,7 +36830,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1266 this -1926788825 +532445947 1 this.bits 128 @@ -36624,7 +36846,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1267 this -1926788825 +532445947 1 this.bits 128 @@ -36637,7 +36859,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1267 this -1926788825 +532445947 1 this.bits 128 @@ -36653,7 +36875,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1268 this -1926788825 +532445947 1 this.bits 128 @@ -36666,7 +36888,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1268 this -1926788825 +532445947 1 this.bits 0 @@ -36679,7 +36901,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1269 this -1926788825 +532445947 1 this.bits 0 @@ -36692,7 +36914,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1269 this -1926788825 +532445947 1 this.bits 0 @@ -36708,7 +36930,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1270 this -1926788825 +532445947 1 this.bits 0 @@ -36721,7 +36943,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1270 this -1926788825 +532445947 1 this.bits 0 @@ -36737,7 +36959,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1271 this -1926788825 +532445947 1 this.bits 0 @@ -36750,7 +36972,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1271 this -1926788825 +532445947 1 this.bits 0 @@ -36766,7 +36988,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1272 this -1926788825 +532445947 1 this.bits 0 @@ -36779,7 +37001,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1272 this -1926788825 +532445947 1 this.bits 0 @@ -36795,7 +37017,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1273 this -1926788825 +532445947 1 this.bits 0 @@ -36808,7 +37030,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1273 this -1926788825 +532445947 1 this.bits 0 @@ -36824,7 +37046,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1274 this -1926788825 +532445947 1 this.bits 0 @@ -36837,7 +37059,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1274 this -1926788825 +532445947 1 this.bits 0 @@ -36853,7 +37075,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1275 this -1926788825 +532445947 1 this.bits 0 @@ -36866,7 +37088,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1275 this -1926788825 +532445947 1 this.bits 0 @@ -36882,7 +37104,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1276 this -1926788825 +532445947 1 this.bits 0 @@ -36895,7 +37117,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1276 this -1926788825 +532445947 1 this.bits 0 @@ -36911,7 +37133,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1277 this -1926788825 +532445947 1 this.bits 0 @@ -36924,7 +37146,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1277 this -1926788825 +532445947 1 this.bits 8 @@ -36937,7 +37159,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1278 this -1926788825 +532445947 1 this.bits 8 @@ -36950,7 +37172,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1278 this -1926788825 +532445947 1 this.bits 8 @@ -36966,7 +37188,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1279 this -1926788825 +532445947 1 this.bits 8 @@ -36979,7 +37201,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1279 this -1926788825 +532445947 1 this.bits 8 @@ -36995,7 +37217,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1280 this -1926788825 +532445947 1 this.bits 8 @@ -37008,7 +37230,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1280 this -1926788825 +532445947 1 this.bits 8 @@ -37024,7 +37246,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1281 this -1926788825 +532445947 1 this.bits 8 @@ -37037,7 +37259,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1281 this -1926788825 +532445947 1 this.bits 8 @@ -37053,7 +37275,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1282 this -1926788825 +532445947 1 this.bits 8 @@ -37066,7 +37288,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1282 this -1926788825 +532445947 1 this.bits 8 @@ -37082,7 +37304,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1283 this -1926788825 +532445947 1 this.bits 8 @@ -37095,7 +37317,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1283 this -1926788825 +532445947 1 this.bits 8 @@ -37111,7 +37333,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1284 this -1926788825 +532445947 1 this.bits 8 @@ -37124,7 +37346,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1284 this -1926788825 +532445947 1 this.bits 8 @@ -37140,7 +37362,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1285 this -1926788825 +532445947 1 this.bits 8 @@ -37153,7 +37375,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1285 this -1926788825 +532445947 1 this.bits 8 @@ -37169,7 +37391,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1286 this -1926788825 +532445947 1 this.bits 8 @@ -37182,7 +37404,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1286 this -1926788825 +532445947 1 this.bits 0 @@ -37195,7 +37417,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1287 this -1926788825 +532445947 1 this.bits 0 @@ -37208,7 +37430,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1287 this -1926788825 +532445947 1 this.bits 0 @@ -37224,7 +37446,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1288 this -1926788825 +532445947 1 this.bits 0 @@ -37237,7 +37459,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1288 this -1926788825 +532445947 1 this.bits 0 @@ -37253,7 +37475,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1289 this -1926788825 +532445947 1 this.bits 0 @@ -37266,7 +37488,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1289 this -1926788825 +532445947 1 this.bits 0 @@ -37282,7 +37504,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1290 this -1926788825 +532445947 1 this.bits 0 @@ -37295,7 +37517,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1290 this -1926788825 +532445947 1 this.bits 0 @@ -37311,7 +37533,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1291 this -1926788825 +532445947 1 this.bits 0 @@ -37324,7 +37546,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1291 this -1926788825 +532445947 1 this.bits 0 @@ -37340,7 +37562,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1292 this -1926788825 +532445947 1 this.bits 0 @@ -37353,7 +37575,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1292 this -1926788825 +532445947 1 this.bits 0 @@ -37369,7 +37591,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1293 this -1926788825 +532445947 1 this.bits 0 @@ -37382,7 +37604,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1293 this -1926788825 +532445947 1 this.bits 0 @@ -37398,7 +37620,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1294 this -1926788825 +532445947 1 this.bits 0 @@ -37411,7 +37633,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1294 this -1926788825 +532445947 1 this.bits 0 @@ -37427,7 +37649,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1295 this -1926788825 +532445947 1 this.bits 0 @@ -37440,7 +37662,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1295 this -1926788825 +532445947 1 this.bits 32 @@ -37453,7 +37675,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1296 this -1926788825 +532445947 1 this.bits 32 @@ -37466,7 +37688,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1296 this -1926788825 +532445947 1 this.bits 32 @@ -37482,7 +37704,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1297 this -1926788825 +532445947 1 this.bits 32 @@ -37495,7 +37717,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1297 this -1926788825 +532445947 1 this.bits 32 @@ -37511,7 +37733,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1298 this -1926788825 +532445947 1 this.bits 32 @@ -37524,7 +37746,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1298 this -1926788825 +532445947 1 this.bits 32 @@ -37540,7 +37762,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1299 this -1926788825 +532445947 1 this.bits 32 @@ -37553,7 +37775,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1299 this -1926788825 +532445947 1 this.bits 32 @@ -37569,7 +37791,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1300 this -1926788825 +532445947 1 this.bits 32 @@ -37582,7 +37804,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1300 this -1926788825 +532445947 1 this.bits 32 @@ -37598,7 +37820,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1301 this -1926788825 +532445947 1 this.bits 32 @@ -37611,7 +37833,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1301 this -1926788825 +532445947 1 this.bits 32 @@ -37627,7 +37849,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1302 this -1926788825 +532445947 1 this.bits 32 @@ -37640,7 +37862,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1302 this -1926788825 +532445947 1 this.bits 32 @@ -37656,7 +37878,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1303 this -1926788825 +532445947 1 this.bits 32 @@ -37669,7 +37891,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1303 this -1926788825 +532445947 1 this.bits 32 @@ -37685,7 +37907,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1304 this -1926788825 +532445947 1 this.bits 32 @@ -37698,7 +37920,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1304 this -1926788825 +532445947 1 this.bits 0 @@ -37711,7 +37933,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1305 this -1926788825 +532445947 1 this.bits 0 @@ -37724,7 +37946,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1305 this -1926788825 +532445947 1 this.bits 0 @@ -37740,7 +37962,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1306 this -1926788825 +532445947 1 this.bits 0 @@ -37753,7 +37975,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1306 this -1926788825 +532445947 1 this.bits 0 @@ -37769,7 +37991,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1307 this -1926788825 +532445947 1 this.bits 0 @@ -37782,7 +38004,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1307 this -1926788825 +532445947 1 this.bits 0 @@ -37798,7 +38020,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1308 this -1926788825 +532445947 1 this.bits 0 @@ -37811,7 +38033,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1308 this -1926788825 +532445947 1 this.bits 0 @@ -37827,7 +38049,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1309 this -1926788825 +532445947 1 this.bits 0 @@ -37840,7 +38062,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1309 this -1926788825 +532445947 1 this.bits 0 @@ -37856,7 +38078,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1310 this -1926788825 +532445947 1 this.bits 0 @@ -37869,7 +38091,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1310 this -1926788825 +532445947 1 this.bits 0 @@ -37885,7 +38107,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1311 this -1926788825 +532445947 1 this.bits 0 @@ -37898,7 +38120,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1311 this -1926788825 +532445947 1 this.bits 0 @@ -37914,7 +38136,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1312 this -1926788825 +532445947 1 this.bits 0 @@ -37927,7 +38149,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1312 this -1926788825 +532445947 1 this.bits 0 @@ -37943,7 +38165,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1313 this -1926788825 +532445947 1 this.bits 0 @@ -37956,7 +38178,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1313 this -1926788825 +532445947 1 this.bits 128 @@ -37969,7 +38191,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1314 this -1926788825 +532445947 1 this.bits 128 @@ -37982,7 +38204,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1314 this -1926788825 +532445947 1 this.bits 128 @@ -37998,7 +38220,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1315 this -1926788825 +532445947 1 this.bits 128 @@ -38011,7 +38233,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1315 this -1926788825 +532445947 1 this.bits 128 @@ -38027,7 +38249,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1316 this -1926788825 +532445947 1 this.bits 128 @@ -38040,7 +38262,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1316 this -1926788825 +532445947 1 this.bits 128 @@ -38056,7 +38278,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1317 this -1926788825 +532445947 1 this.bits 128 @@ -38069,7 +38291,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1317 this -1926788825 +532445947 1 this.bits 128 @@ -38085,7 +38307,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1318 this -1926788825 +532445947 1 this.bits 128 @@ -38098,7 +38320,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1318 this -1926788825 +532445947 1 this.bits 128 @@ -38114,7 +38336,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1319 this -1926788825 +532445947 1 this.bits 128 @@ -38127,7 +38349,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1319 this -1926788825 +532445947 1 this.bits 128 @@ -38143,7 +38365,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1320 this -1926788825 +532445947 1 this.bits 128 @@ -38156,7 +38378,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1320 this -1926788825 +532445947 1 this.bits 128 @@ -38172,7 +38394,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1321 this -1926788825 +532445947 1 this.bits 128 @@ -38185,7 +38407,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1321 this -1926788825 +532445947 1 this.bits 128 @@ -38201,7 +38423,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1322 this -1926788825 +532445947 1 this.bits 128 @@ -38214,7 +38436,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1322 this -1926788825 +532445947 1 this.bits 0 @@ -38227,7 +38449,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1323 this -1926788825 +532445947 1 this.bits 0 @@ -38240,7 +38462,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1323 this -1926788825 +532445947 1 this.bits 0 @@ -38256,7 +38478,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1324 this -1926788825 +532445947 1 this.bits 0 @@ -38269,7 +38491,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1324 this -1926788825 +532445947 1 this.bits 0 @@ -38285,7 +38507,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1325 this -1926788825 +532445947 1 this.bits 0 @@ -38298,7 +38520,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1325 this -1926788825 +532445947 1 this.bits 0 @@ -38314,7 +38536,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1326 this -1926788825 +532445947 1 this.bits 0 @@ -38327,7 +38549,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1326 this -1926788825 +532445947 1 this.bits 0 @@ -38343,7 +38565,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1327 this -1926788825 +532445947 1 this.bits 0 @@ -38356,7 +38578,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1327 this -1926788825 +532445947 1 this.bits 0 @@ -38372,7 +38594,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1328 this -1926788825 +532445947 1 this.bits 0 @@ -38385,7 +38607,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1328 this -1926788825 +532445947 1 this.bits 0 @@ -38401,7 +38623,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1329 this -1926788825 +532445947 1 this.bits 0 @@ -38414,7 +38636,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1329 this -1926788825 +532445947 1 this.bits 0 @@ -38430,7 +38652,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1330 this -1926788825 +532445947 1 this.bits 0 @@ -38443,7 +38665,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1330 this -1926788825 +532445947 1 this.bits 0 @@ -38459,7 +38681,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1331 this -1926788825 +532445947 1 this.bits 0 @@ -38472,7 +38694,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1331 this -1926788825 +532445947 1 this.bits 1 @@ -38485,7 +38707,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1332 this -1926788825 +532445947 1 this.bits 1 @@ -38498,7 +38720,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1332 this -1926788825 +532445947 1 this.bits 1 @@ -38514,7 +38736,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1333 this -1926788825 +532445947 1 this.bits 1 @@ -38527,7 +38749,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1333 this -1926788825 +532445947 1 this.bits 1 @@ -38543,7 +38765,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1334 this -1926788825 +532445947 1 this.bits 1 @@ -38556,7 +38778,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1334 this -1926788825 +532445947 1 this.bits 1 @@ -38572,7 +38794,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1335 this -1926788825 +532445947 1 this.bits 1 @@ -38585,7 +38807,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1335 this -1926788825 +532445947 1 this.bits 1 @@ -38601,7 +38823,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1336 this -1926788825 +532445947 1 this.bits 1 @@ -38614,7 +38836,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1336 this -1926788825 +532445947 1 this.bits 1 @@ -38630,7 +38852,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1337 this -1926788825 +532445947 1 this.bits 1 @@ -38643,7 +38865,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1337 this -1926788825 +532445947 1 this.bits 1 @@ -38659,7 +38881,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1338 this -1926788825 +532445947 1 this.bits 1 @@ -38672,7 +38894,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1338 this -1926788825 +532445947 1 this.bits 1 @@ -38688,7 +38910,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1339 this -1926788825 +532445947 1 this.bits 1 @@ -38701,7 +38923,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1339 this -1926788825 +532445947 1 this.bits 1 @@ -38717,7 +38939,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1340 this -1926788825 +532445947 1 this.bits 1 @@ -38730,7 +38952,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1340 this -1926788825 +532445947 1 this.bits 0 @@ -38743,7 +38965,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1341 this -1926788825 +532445947 1 this.bits 0 @@ -38756,7 +38978,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1341 this -1926788825 +532445947 1 this.bits 0 @@ -38772,7 +38994,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1342 this -1926788825 +532445947 1 this.bits 0 @@ -38785,7 +39007,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1342 this -1926788825 +532445947 1 this.bits 0 @@ -38801,7 +39023,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1343 this -1926788825 +532445947 1 this.bits 0 @@ -38814,7 +39036,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1343 this -1926788825 +532445947 1 this.bits 0 @@ -38830,7 +39052,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1344 this -1926788825 +532445947 1 this.bits 0 @@ -38843,7 +39065,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1344 this -1926788825 +532445947 1 this.bits 0 @@ -38859,7 +39081,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1345 this -1926788825 +532445947 1 this.bits 0 @@ -38872,7 +39094,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1345 this -1926788825 +532445947 1 this.bits 0 @@ -38888,7 +39110,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1346 this -1926788825 +532445947 1 this.bits 0 @@ -38901,7 +39123,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1346 this -1926788825 +532445947 1 this.bits 0 @@ -38917,7 +39139,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1347 this -1926788825 +532445947 1 this.bits 0 @@ -38930,7 +39152,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1347 this -1926788825 +532445947 1 this.bits 0 @@ -38946,7 +39168,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1348 this -1926788825 +532445947 1 this.bits 0 @@ -38959,7 +39181,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1348 this -1926788825 +532445947 1 this.bits 0 @@ -38975,7 +39197,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1349 this -1926788825 +532445947 1 this.bits 0 @@ -38988,7 +39210,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1349 this -1926788825 +532445947 1 this.bits 1 @@ -39001,7 +39223,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1350 this -1926788825 +532445947 1 this.bits 1 @@ -39014,7 +39236,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1350 this -1926788825 +532445947 1 this.bits 1 @@ -39030,7 +39252,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1351 this -1926788825 +532445947 1 this.bits 1 @@ -39043,7 +39265,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1351 this -1926788825 +532445947 1 this.bits 1 @@ -39059,7 +39281,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1352 this -1926788825 +532445947 1 this.bits 1 @@ -39072,7 +39294,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1352 this -1926788825 +532445947 1 this.bits 1 @@ -39088,7 +39310,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1353 this -1926788825 +532445947 1 this.bits 1 @@ -39101,7 +39323,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1353 this -1926788825 +532445947 1 this.bits 1 @@ -39117,7 +39339,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1354 this -1926788825 +532445947 1 this.bits 1 @@ -39130,7 +39352,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1354 this -1926788825 +532445947 1 this.bits 1 @@ -39146,7 +39368,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1355 this -1926788825 +532445947 1 this.bits 1 @@ -39159,7 +39381,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1355 this -1926788825 +532445947 1 this.bits 1 @@ -39175,7 +39397,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1356 this -1926788825 +532445947 1 this.bits 1 @@ -39188,7 +39410,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1356 this -1926788825 +532445947 1 this.bits 1 @@ -39204,7 +39426,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1357 this -1926788825 +532445947 1 this.bits 1 @@ -39217,7 +39439,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1357 this -1926788825 +532445947 1 this.bits 1 @@ -39233,7 +39455,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1358 this -1926788825 +532445947 1 this.bits 1 @@ -39246,7 +39468,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1358 this -1926788825 +532445947 1 this.bits 0 @@ -39259,7 +39481,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1359 this -1926788825 +532445947 1 this.bits 0 @@ -39272,7 +39494,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1359 this -1926788825 +532445947 1 this.bits 0 @@ -39288,7 +39510,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1360 this -1926788825 +532445947 1 this.bits 0 @@ -39301,7 +39523,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1360 this -1926788825 +532445947 1 this.bits 0 @@ -39317,7 +39539,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1361 this -1926788825 +532445947 1 this.bits 0 @@ -39330,7 +39552,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1361 this -1926788825 +532445947 1 this.bits 0 @@ -39346,7 +39568,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1362 this -1926788825 +532445947 1 this.bits 0 @@ -39359,7 +39581,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1362 this -1926788825 +532445947 1 this.bits 0 @@ -39375,7 +39597,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1363 this -1926788825 +532445947 1 this.bits 0 @@ -39388,7 +39610,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1363 this -1926788825 +532445947 1 this.bits 0 @@ -39404,7 +39626,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1364 this -1926788825 +532445947 1 this.bits 0 @@ -39417,7 +39639,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1364 this -1926788825 +532445947 1 this.bits 0 @@ -39433,7 +39655,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1365 this -1926788825 +532445947 1 this.bits 0 @@ -39446,7 +39668,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1365 this -1926788825 +532445947 1 this.bits 0 @@ -39462,7 +39684,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1366 this -1926788825 +532445947 1 this.bits 0 @@ -39475,7 +39697,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1366 this -1926788825 +532445947 1 this.bits 0 @@ -39491,7 +39713,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1367 this -1926788825 +532445947 1 this.bits 0 @@ -39504,7 +39726,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1367 this -1926788825 +532445947 1 this.bits 32 @@ -39517,7 +39739,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1368 this -1926788825 +532445947 1 this.bits 32 @@ -39530,7 +39752,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1368 this -1926788825 +532445947 1 this.bits 32 @@ -39546,7 +39768,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1369 this -1926788825 +532445947 1 this.bits 32 @@ -39559,7 +39781,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1369 this -1926788825 +532445947 1 this.bits 32 @@ -39575,7 +39797,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1370 this -1926788825 +532445947 1 this.bits 32 @@ -39588,7 +39810,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1370 this -1926788825 +532445947 1 this.bits 32 @@ -39604,7 +39826,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1371 this -1926788825 +532445947 1 this.bits 32 @@ -39617,7 +39839,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1371 this -1926788825 +532445947 1 this.bits 32 @@ -39633,7 +39855,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1372 this -1926788825 +532445947 1 this.bits 32 @@ -39646,7 +39868,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1372 this -1926788825 +532445947 1 this.bits 32 @@ -39662,7 +39884,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1373 this -1926788825 +532445947 1 this.bits 32 @@ -39675,7 +39897,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1373 this -1926788825 +532445947 1 this.bits 32 @@ -39691,7 +39913,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1374 this -1926788825 +532445947 1 this.bits 32 @@ -39704,7 +39926,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1374 this -1926788825 +532445947 1 this.bits 32 @@ -39720,7 +39942,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1375 this -1926788825 +532445947 1 this.bits 32 @@ -39733,7 +39955,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1375 this -1926788825 +532445947 1 this.bits 32 @@ -39749,7 +39971,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1376 this -1926788825 +532445947 1 this.bits 32 @@ -39762,7 +39984,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1376 this -1926788825 +532445947 1 this.bits 0 @@ -39775,7 +39997,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1377 this -1926788825 +532445947 1 this.bits 0 @@ -39788,7 +40010,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1377 this -1926788825 +532445947 1 this.bits 0 @@ -39804,7 +40026,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1378 this -1926788825 +532445947 1 this.bits 0 @@ -39817,7 +40039,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1378 this -1926788825 +532445947 1 this.bits 0 @@ -39833,7 +40055,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1379 this -1926788825 +532445947 1 this.bits 0 @@ -39846,7 +40068,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1379 this -1926788825 +532445947 1 this.bits 0 @@ -39862,7 +40084,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1380 this -1926788825 +532445947 1 this.bits 0 @@ -39875,7 +40097,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1380 this -1926788825 +532445947 1 this.bits 0 @@ -39891,7 +40113,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1381 this -1926788825 +532445947 1 this.bits 0 @@ -39904,7 +40126,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1381 this -1926788825 +532445947 1 this.bits 0 @@ -39920,7 +40142,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1382 this -1926788825 +532445947 1 this.bits 0 @@ -39933,7 +40155,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1382 this -1926788825 +532445947 1 this.bits 0 @@ -39949,7 +40171,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1383 this -1926788825 +532445947 1 this.bits 0 @@ -39962,7 +40184,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1383 this -1926788825 +532445947 1 this.bits 0 @@ -39978,7 +40200,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1384 this -1926788825 +532445947 1 this.bits 0 @@ -39991,7 +40213,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1384 this -1926788825 +532445947 1 this.bits 0 @@ -40007,7 +40229,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1385 this -1926788825 +532445947 1 this.bits 0 @@ -40020,7 +40242,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1385 this -1926788825 +532445947 1 this.bits 4 @@ -40033,7 +40255,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1386 this -1926788825 +532445947 1 this.bits 4 @@ -40046,7 +40268,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1386 this -1926788825 +532445947 1 this.bits 4 @@ -40062,7 +40284,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1387 this -1926788825 +532445947 1 this.bits 4 @@ -40075,7 +40297,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1387 this -1926788825 +532445947 1 this.bits 4 @@ -40091,7 +40313,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1388 this -1926788825 +532445947 1 this.bits 4 @@ -40104,7 +40326,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1388 this -1926788825 +532445947 1 this.bits 4 @@ -40120,7 +40342,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1389 this -1926788825 +532445947 1 this.bits 4 @@ -40133,7 +40355,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1389 this -1926788825 +532445947 1 this.bits 4 @@ -40149,7 +40371,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1390 this -1926788825 +532445947 1 this.bits 4 @@ -40162,7 +40384,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1390 this -1926788825 +532445947 1 this.bits 4 @@ -40178,7 +40400,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1391 this -1926788825 +532445947 1 this.bits 4 @@ -40191,7 +40413,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1391 this -1926788825 +532445947 1 this.bits 4 @@ -40207,7 +40429,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1392 this -1926788825 +532445947 1 this.bits 4 @@ -40220,7 +40442,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1392 this -1926788825 +532445947 1 this.bits 4 @@ -40236,7 +40458,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1393 this -1926788825 +532445947 1 this.bits 4 @@ -40249,7 +40471,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1393 this -1926788825 +532445947 1 this.bits 4 @@ -40265,7 +40487,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1394 this -1926788825 +532445947 1 this.bits 4 @@ -40278,7 +40500,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1394 this -1926788825 +532445947 1 this.bits 0 @@ -40291,7 +40513,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1395 this -1926788825 +532445947 1 this.bits 0 @@ -40304,7 +40526,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1395 this -1926788825 +532445947 1 this.bits 0 @@ -40320,7 +40542,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1396 this -1926788825 +532445947 1 this.bits 0 @@ -40333,7 +40555,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1396 this -1926788825 +532445947 1 this.bits 0 @@ -40349,7 +40571,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1397 this -1926788825 +532445947 1 this.bits 0 @@ -40362,7 +40584,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1397 this -1926788825 +532445947 1 this.bits 0 @@ -40378,7 +40600,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1398 this -1926788825 +532445947 1 this.bits 0 @@ -40391,7 +40613,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1398 this -1926788825 +532445947 1 this.bits 0 @@ -40407,7 +40629,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1399 this -1926788825 +532445947 1 this.bits 0 @@ -40420,7 +40642,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1399 this -1926788825 +532445947 1 this.bits 0 @@ -40436,7 +40658,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1400 this -1926788825 +532445947 1 this.bits 0 @@ -40449,7 +40671,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1400 this -1926788825 +532445947 1 this.bits 0 @@ -40465,7 +40687,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1401 this -1926788825 +532445947 1 this.bits 0 @@ -40478,7 +40700,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1401 this -1926788825 +532445947 1 this.bits 0 @@ -40494,7 +40716,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1402 this -1926788825 +532445947 1 this.bits 0 @@ -40507,7 +40729,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1402 this -1926788825 +532445947 1 this.bits 0 @@ -40523,7 +40745,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1403 this -1926788825 +532445947 1 this.bits 0 @@ -40536,7 +40758,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1403 this -1926788825 +532445947 1 this.bits 4 @@ -40549,7 +40771,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1404 this -1926788825 +532445947 1 this.bits 4 @@ -40562,7 +40784,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1404 this -1926788825 +532445947 1 this.bits 4 @@ -40578,7 +40800,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1405 this -1926788825 +532445947 1 this.bits 4 @@ -40591,7 +40813,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1405 this -1926788825 +532445947 1 this.bits 4 @@ -40607,7 +40829,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1406 this -1926788825 +532445947 1 this.bits 4 @@ -40620,7 +40842,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1406 this -1926788825 +532445947 1 this.bits 4 @@ -40636,7 +40858,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1407 this -1926788825 +532445947 1 this.bits 4 @@ -40649,7 +40871,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1407 this -1926788825 +532445947 1 this.bits 4 @@ -40665,7 +40887,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1408 this -1926788825 +532445947 1 this.bits 4 @@ -40678,7 +40900,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1408 this -1926788825 +532445947 1 this.bits 4 @@ -40694,7 +40916,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1409 this -1926788825 +532445947 1 this.bits 4 @@ -40707,7 +40929,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1409 this -1926788825 +532445947 1 this.bits 4 @@ -40723,7 +40945,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1410 this -1926788825 +532445947 1 this.bits 4 @@ -40736,7 +40958,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1410 this -1926788825 +532445947 1 this.bits 4 @@ -40752,7 +40974,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1411 this -1926788825 +532445947 1 this.bits 4 @@ -40765,7 +40987,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1411 this -1926788825 +532445947 1 this.bits 4 @@ -40781,7 +41003,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1412 this -1926788825 +532445947 1 this.bits 4 @@ -40794,7 +41016,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1412 this -1926788825 +532445947 1 this.bits 0 @@ -40807,7 +41029,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1413 this -1926788825 +532445947 1 this.bits 0 @@ -40820,7 +41042,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1413 this -1926788825 +532445947 1 this.bits 0 @@ -40836,7 +41058,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1414 this -1926788825 +532445947 1 this.bits 0 @@ -40849,7 +41071,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1414 this -1926788825 +532445947 1 this.bits 0 @@ -40865,7 +41087,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1415 this -1926788825 +532445947 1 this.bits 0 @@ -40878,7 +41100,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1415 this -1926788825 +532445947 1 this.bits 0 @@ -40894,7 +41116,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1416 this -1926788825 +532445947 1 this.bits 0 @@ -40907,7 +41129,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1416 this -1926788825 +532445947 1 this.bits 0 @@ -40923,7 +41145,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1417 this -1926788825 +532445947 1 this.bits 0 @@ -40936,7 +41158,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1417 this -1926788825 +532445947 1 this.bits 0 @@ -40952,7 +41174,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1418 this -1926788825 +532445947 1 this.bits 0 @@ -40965,7 +41187,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1418 this -1926788825 +532445947 1 this.bits 0 @@ -40981,7 +41203,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1419 this -1926788825 +532445947 1 this.bits 0 @@ -40994,7 +41216,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1419 this -1926788825 +532445947 1 this.bits 0 @@ -41010,7 +41232,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1420 this -1926788825 +532445947 1 this.bits 0 @@ -41023,7 +41245,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1420 this -1926788825 +532445947 1 this.bits 0 @@ -41039,7 +41261,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1421 this -1926788825 +532445947 1 this.bits 0 @@ -41052,7 +41274,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1421 this -1926788825 +532445947 1 this.bits 8 @@ -41065,7 +41287,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1422 this -1926788825 +532445947 1 this.bits 8 @@ -41078,7 +41300,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1422 this -1926788825 +532445947 1 this.bits 8 @@ -41094,7 +41316,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1423 this -1926788825 +532445947 1 this.bits 8 @@ -41107,7 +41329,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1423 this -1926788825 +532445947 1 this.bits 8 @@ -41123,7 +41345,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1424 this -1926788825 +532445947 1 this.bits 8 @@ -41136,7 +41358,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1424 this -1926788825 +532445947 1 this.bits 8 @@ -41152,7 +41374,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1425 this -1926788825 +532445947 1 this.bits 8 @@ -41165,7 +41387,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1425 this -1926788825 +532445947 1 this.bits 8 @@ -41181,7 +41403,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1426 this -1926788825 +532445947 1 this.bits 8 @@ -41194,7 +41416,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1426 this -1926788825 +532445947 1 this.bits 8 @@ -41210,7 +41432,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1427 this -1926788825 +532445947 1 this.bits 8 @@ -41223,7 +41445,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1427 this -1926788825 +532445947 1 this.bits 8 @@ -41239,7 +41461,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1428 this -1926788825 +532445947 1 this.bits 8 @@ -41252,7 +41474,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1428 this -1926788825 +532445947 1 this.bits 8 @@ -41268,7 +41490,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1429 this -1926788825 +532445947 1 this.bits 8 @@ -41281,7 +41503,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1429 this -1926788825 +532445947 1 this.bits 8 @@ -41297,7 +41519,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1430 this -1926788825 +532445947 1 this.bits 8 @@ -41310,7 +41532,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1430 this -1926788825 +532445947 1 this.bits 0 @@ -41323,7 +41545,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1431 this -1926788825 +532445947 1 this.bits 0 @@ -41336,7 +41558,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1431 this -1926788825 +532445947 1 this.bits 0 @@ -41352,7 +41574,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1432 this -1926788825 +532445947 1 this.bits 0 @@ -41365,7 +41587,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1432 this -1926788825 +532445947 1 this.bits 0 @@ -41381,7 +41603,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1433 this -1926788825 +532445947 1 this.bits 0 @@ -41394,7 +41616,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1433 this -1926788825 +532445947 1 this.bits 0 @@ -41410,7 +41632,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1434 this -1926788825 +532445947 1 this.bits 0 @@ -41423,7 +41645,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1434 this -1926788825 +532445947 1 this.bits 0 @@ -41439,7 +41661,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1435 this -1926788825 +532445947 1 this.bits 0 @@ -41452,7 +41674,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1435 this -1926788825 +532445947 1 this.bits 0 @@ -41468,7 +41690,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1436 this -1926788825 +532445947 1 this.bits 0 @@ -41481,7 +41703,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1436 this -1926788825 +532445947 1 this.bits 0 @@ -41497,7 +41719,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1437 this -1926788825 +532445947 1 this.bits 0 @@ -41510,7 +41732,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1437 this -1926788825 +532445947 1 this.bits 0 @@ -41526,7 +41748,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1438 this -1926788825 +532445947 1 this.bits 0 @@ -41539,7 +41761,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1438 this -1926788825 +532445947 1 this.bits 0 @@ -41555,7 +41777,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1439 this -1926788825 +532445947 1 this.bits 0 @@ -41568,7 +41790,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1439 this -1926788825 +532445947 1 this.bits 32 @@ -41581,7 +41803,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1440 this -1926788825 +532445947 1 this.bits 32 @@ -41594,7 +41816,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1440 this -1926788825 +532445947 1 this.bits 32 @@ -41610,7 +41832,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1441 this -1926788825 +532445947 1 this.bits 32 @@ -41623,7 +41845,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1441 this -1926788825 +532445947 1 this.bits 32 @@ -41639,7 +41861,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1442 this -1926788825 +532445947 1 this.bits 32 @@ -41652,7 +41874,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1442 this -1926788825 +532445947 1 this.bits 32 @@ -41668,7 +41890,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1443 this -1926788825 +532445947 1 this.bits 32 @@ -41681,7 +41903,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1443 this -1926788825 +532445947 1 this.bits 32 @@ -41697,7 +41919,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1444 this -1926788825 +532445947 1 this.bits 32 @@ -41710,7 +41932,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1444 this -1926788825 +532445947 1 this.bits 32 @@ -41726,7 +41948,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1445 this -1926788825 +532445947 1 this.bits 32 @@ -41739,7 +41961,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1445 this -1926788825 +532445947 1 this.bits 32 @@ -41755,7 +41977,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1446 this -1926788825 +532445947 1 this.bits 32 @@ -41768,7 +41990,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1446 this -1926788825 +532445947 1 this.bits 32 @@ -41784,7 +42006,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1447 this -1926788825 +532445947 1 this.bits 32 @@ -41797,7 +42019,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1447 this -1926788825 +532445947 1 this.bits 32 @@ -41813,7 +42035,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1448 this -1926788825 +532445947 1 this.bits 32 @@ -41826,7 +42048,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1448 this -1926788825 +532445947 1 this.bits 0 @@ -41839,7 +42061,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1449 this -1926788825 +532445947 1 this.bits 0 @@ -41852,7 +42074,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1449 this -1926788825 +532445947 1 this.bits 0 @@ -41868,7 +42090,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1450 this -1926788825 +532445947 1 this.bits 0 @@ -41881,7 +42103,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1450 this -1926788825 +532445947 1 this.bits 0 @@ -41897,7 +42119,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1451 this -1926788825 +532445947 1 this.bits 0 @@ -41910,7 +42132,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1451 this -1926788825 +532445947 1 this.bits 0 @@ -41926,7 +42148,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1452 this -1926788825 +532445947 1 this.bits 0 @@ -41939,7 +42161,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1452 this -1926788825 +532445947 1 this.bits 0 @@ -41955,7 +42177,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1453 this -1926788825 +532445947 1 this.bits 0 @@ -41968,7 +42190,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1453 this -1926788825 +532445947 1 this.bits 0 @@ -41984,7 +42206,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1454 this -1926788825 +532445947 1 this.bits 0 @@ -41997,7 +42219,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1454 this -1926788825 +532445947 1 this.bits 0 @@ -42013,7 +42235,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1455 this -1926788825 +532445947 1 this.bits 0 @@ -42026,7 +42248,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1455 this -1926788825 +532445947 1 this.bits 0 @@ -42042,7 +42264,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1456 this -1926788825 +532445947 1 this.bits 0 @@ -42055,7 +42277,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1456 this -1926788825 +532445947 1 this.bits 0 @@ -42071,7 +42293,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1457 this -1926788825 +532445947 1 this.bits 0 @@ -42084,7 +42306,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1457 this -1926788825 +532445947 1 this.bits 64 @@ -42097,7 +42319,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1458 this -1926788825 +532445947 1 this.bits 64 @@ -42110,7 +42332,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1458 this -1926788825 +532445947 1 this.bits 64 @@ -42126,7 +42348,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1459 this -1926788825 +532445947 1 this.bits 64 @@ -42139,7 +42361,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1459 this -1926788825 +532445947 1 this.bits 64 @@ -42155,7 +42377,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1460 this -1926788825 +532445947 1 this.bits 64 @@ -42168,7 +42390,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1460 this -1926788825 +532445947 1 this.bits 64 @@ -42184,7 +42406,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1461 this -1926788825 +532445947 1 this.bits 64 @@ -42197,7 +42419,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1461 this -1926788825 +532445947 1 this.bits 64 @@ -42213,7 +42435,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1462 this -1926788825 +532445947 1 this.bits 64 @@ -42226,7 +42448,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1462 this -1926788825 +532445947 1 this.bits 64 @@ -42242,7 +42464,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1463 this -1926788825 +532445947 1 this.bits 64 @@ -42255,7 +42477,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1463 this -1926788825 +532445947 1 this.bits 64 @@ -42271,7 +42493,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1464 this -1926788825 +532445947 1 this.bits 64 @@ -42284,7 +42506,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1464 this -1926788825 +532445947 1 this.bits 64 @@ -42300,7 +42522,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1465 this -1926788825 +532445947 1 this.bits 64 @@ -42313,7 +42535,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1465 this -1926788825 +532445947 1 this.bits 64 @@ -42329,7 +42551,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1466 this -1926788825 +532445947 1 this.bits 64 @@ -42342,7 +42564,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1466 this -1926788825 +532445947 1 this.bits 0 @@ -42355,7 +42577,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1467 this -1926788825 +532445947 1 this.bits 0 @@ -42368,7 +42590,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1467 this -1926788825 +532445947 1 this.bits 0 @@ -42384,7 +42606,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1468 this -1926788825 +532445947 1 this.bits 0 @@ -42397,7 +42619,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1468 this -1926788825 +532445947 1 this.bits 0 @@ -42413,7 +42635,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1469 this -1926788825 +532445947 1 this.bits 0 @@ -42426,7 +42648,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1469 this -1926788825 +532445947 1 this.bits 0 @@ -42442,7 +42664,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1470 this -1926788825 +532445947 1 this.bits 0 @@ -42455,7 +42677,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1470 this -1926788825 +532445947 1 this.bits 0 @@ -42471,7 +42693,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1471 this -1926788825 +532445947 1 this.bits 0 @@ -42484,7 +42706,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1471 this -1926788825 +532445947 1 this.bits 0 @@ -42500,7 +42722,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1472 this -1926788825 +532445947 1 this.bits 0 @@ -42513,7 +42735,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1472 this -1926788825 +532445947 1 this.bits 0 @@ -42529,7 +42751,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1473 this -1926788825 +532445947 1 this.bits 0 @@ -42542,7 +42764,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1473 this -1926788825 +532445947 1 this.bits 0 @@ -42558,7 +42780,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1474 this -1926788825 +532445947 1 this.bits 0 @@ -42571,7 +42793,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1474 this -1926788825 +532445947 1 this.bits 0 @@ -42587,7 +42809,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1475 this -1926788825 +532445947 1 this.bits 0 @@ -42600,7 +42822,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1475 this -1926788825 +532445947 1 this.bits 32 @@ -42613,7 +42835,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1476 this -1926788825 +532445947 1 this.bits 32 @@ -42626,7 +42848,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1476 this -1926788825 +532445947 1 this.bits 32 @@ -42642,7 +42864,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1477 this -1926788825 +532445947 1 this.bits 32 @@ -42655,7 +42877,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1477 this -1926788825 +532445947 1 this.bits 32 @@ -42671,7 +42893,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1478 this -1926788825 +532445947 1 this.bits 32 @@ -42684,7 +42906,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1478 this -1926788825 +532445947 1 this.bits 32 @@ -42700,7 +42922,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1479 this -1926788825 +532445947 1 this.bits 32 @@ -42713,7 +42935,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1479 this -1926788825 +532445947 1 this.bits 32 @@ -42729,7 +42951,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1480 this -1926788825 +532445947 1 this.bits 32 @@ -42742,7 +42964,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1480 this -1926788825 +532445947 1 this.bits 32 @@ -42758,7 +42980,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1481 this -1926788825 +532445947 1 this.bits 32 @@ -42771,7 +42993,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1481 this -1926788825 +532445947 1 this.bits 32 @@ -42787,7 +43009,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1482 this -1926788825 +532445947 1 this.bits 32 @@ -42800,7 +43022,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1482 this -1926788825 +532445947 1 this.bits 32 @@ -42816,7 +43038,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1483 this -1926788825 +532445947 1 this.bits 32 @@ -42829,7 +43051,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1483 this -1926788825 +532445947 1 this.bits 32 @@ -42845,7 +43067,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1484 this -1926788825 +532445947 1 this.bits 32 @@ -42858,7 +43080,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1484 this -1926788825 +532445947 1 this.bits 0 @@ -42871,7 +43093,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1485 this -1926788825 +532445947 1 this.bits 0 @@ -42884,7 +43106,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1485 this -1926788825 +532445947 1 this.bits 0 @@ -42900,7 +43122,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1486 this -1926788825 +532445947 1 this.bits 0 @@ -42913,7 +43135,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1486 this -1926788825 +532445947 1 this.bits 0 @@ -42929,7 +43151,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1487 this -1926788825 +532445947 1 this.bits 0 @@ -42942,7 +43164,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1487 this -1926788825 +532445947 1 this.bits 0 @@ -42958,7 +43180,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1488 this -1926788825 +532445947 1 this.bits 0 @@ -42971,7 +43193,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1488 this -1926788825 +532445947 1 this.bits 0 @@ -42987,7 +43209,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1489 this -1926788825 +532445947 1 this.bits 0 @@ -43000,7 +43222,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1489 this -1926788825 +532445947 1 this.bits 0 @@ -43016,7 +43238,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1490 this -1926788825 +532445947 1 this.bits 0 @@ -43029,7 +43251,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1490 this -1926788825 +532445947 1 this.bits 0 @@ -43045,7 +43267,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1491 this -1926788825 +532445947 1 this.bits 0 @@ -43058,7 +43280,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1491 this -1926788825 +532445947 1 this.bits 0 @@ -43074,7 +43296,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1492 this -1926788825 +532445947 1 this.bits 0 @@ -43087,7 +43309,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1492 this -1926788825 +532445947 1 this.bits 0 @@ -43103,7 +43325,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1493 this -1926788825 +532445947 1 this.bits 0 @@ -43116,7 +43338,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1493 this -1926788825 +532445947 1 this.bits 32 @@ -43129,7 +43351,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1494 this -1926788825 +532445947 1 this.bits 32 @@ -43142,7 +43364,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1494 this -1926788825 +532445947 1 this.bits 32 @@ -43158,7 +43380,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1495 this -1926788825 +532445947 1 this.bits 32 @@ -43171,7 +43393,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1495 this -1926788825 +532445947 1 this.bits 32 @@ -43187,7 +43409,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1496 this -1926788825 +532445947 1 this.bits 32 @@ -43200,7 +43422,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1496 this -1926788825 +532445947 1 this.bits 32 @@ -43216,7 +43438,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1497 this -1926788825 +532445947 1 this.bits 32 @@ -43229,7 +43451,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1497 this -1926788825 +532445947 1 this.bits 32 @@ -43245,7 +43467,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1498 this -1926788825 +532445947 1 this.bits 32 @@ -43258,7 +43480,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1498 this -1926788825 +532445947 1 this.bits 32 @@ -43274,7 +43496,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1499 this -1926788825 +532445947 1 this.bits 32 @@ -43287,7 +43509,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1499 this -1926788825 +532445947 1 this.bits 32 @@ -43303,7 +43525,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1500 this -1926788825 +532445947 1 this.bits 32 @@ -43316,7 +43538,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1500 this -1926788825 +532445947 1 this.bits 32 @@ -43332,7 +43554,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1501 this -1926788825 +532445947 1 this.bits 32 @@ -43345,7 +43567,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1501 this -1926788825 +532445947 1 this.bits 32 @@ -43361,7 +43583,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1502 this -1926788825 +532445947 1 this.bits 32 @@ -43374,7 +43596,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1502 this -1926788825 +532445947 1 this.bits 0 @@ -43387,7 +43609,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1503 this -1926788825 +532445947 1 this.bits 0 @@ -43400,7 +43622,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1503 this -1926788825 +532445947 1 this.bits 0 @@ -43416,7 +43638,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1504 this -1926788825 +532445947 1 this.bits 0 @@ -43429,7 +43651,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1504 this -1926788825 +532445947 1 this.bits 0 @@ -43445,7 +43667,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1505 this -1926788825 +532445947 1 this.bits 0 @@ -43458,7 +43680,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1505 this -1926788825 +532445947 1 this.bits 0 @@ -43474,7 +43696,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1506 this -1926788825 +532445947 1 this.bits 0 @@ -43487,7 +43709,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1506 this -1926788825 +532445947 1 this.bits 0 @@ -43503,7 +43725,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1507 this -1926788825 +532445947 1 this.bits 0 @@ -43516,7 +43738,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1507 this -1926788825 +532445947 1 this.bits 0 @@ -43532,7 +43754,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1508 this -1926788825 +532445947 1 this.bits 0 @@ -43545,7 +43767,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1508 this -1926788825 +532445947 1 this.bits 0 @@ -43561,7 +43783,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1509 this -1926788825 +532445947 1 this.bits 0 @@ -43574,7 +43796,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1509 this -1926788825 +532445947 1 this.bits 0 @@ -43590,7 +43812,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1510 this -1926788825 +532445947 1 this.bits 0 @@ -43603,7 +43825,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1510 this -1926788825 +532445947 1 this.bits 0 @@ -43619,7 +43841,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1511 this -1926788825 +532445947 1 this.bits 0 @@ -43632,7 +43854,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1511 this -1926788825 +532445947 1 this.bits 2 @@ -43645,7 +43867,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1512 this -1926788825 +532445947 1 this.bits 2 @@ -43658,7 +43880,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1512 this -1926788825 +532445947 1 this.bits 2 @@ -43674,7 +43896,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1513 this -1926788825 +532445947 1 this.bits 2 @@ -43687,7 +43909,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1513 this -1926788825 +532445947 1 this.bits 2 @@ -43703,7 +43925,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1514 this -1926788825 +532445947 1 this.bits 2 @@ -43716,7 +43938,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1514 this -1926788825 +532445947 1 this.bits 2 @@ -43732,7 +43954,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1515 this -1926788825 +532445947 1 this.bits 2 @@ -43745,7 +43967,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1515 this -1926788825 +532445947 1 this.bits 2 @@ -43761,7 +43983,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1516 this -1926788825 +532445947 1 this.bits 2 @@ -43774,7 +43996,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1516 this -1926788825 +532445947 1 this.bits 2 @@ -43790,7 +44012,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1517 this -1926788825 +532445947 1 this.bits 2 @@ -43803,7 +44025,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1517 this -1926788825 +532445947 1 this.bits 2 @@ -43819,7 +44041,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1518 this -1926788825 +532445947 1 this.bits 2 @@ -43832,7 +44054,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1518 this -1926788825 +532445947 1 this.bits 2 @@ -43848,7 +44070,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1519 this -1926788825 +532445947 1 this.bits 2 @@ -43861,7 +44083,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1519 this -1926788825 +532445947 1 this.bits 2 @@ -43877,7 +44099,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1520 this -1926788825 +532445947 1 this.bits 2 @@ -43890,7 +44112,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1520 this -1926788825 +532445947 1 this.bits 0 @@ -43903,7 +44125,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1521 this -1926788825 +532445947 1 this.bits 0 @@ -43916,7 +44138,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1521 this -1926788825 +532445947 1 this.bits 0 @@ -43932,7 +44154,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1522 this -1926788825 +532445947 1 this.bits 0 @@ -43945,7 +44167,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1522 this -1926788825 +532445947 1 this.bits 0 @@ -43961,7 +44183,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1523 this -1926788825 +532445947 1 this.bits 0 @@ -43974,7 +44196,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1523 this -1926788825 +532445947 1 this.bits 0 @@ -43990,7 +44212,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1524 this -1926788825 +532445947 1 this.bits 0 @@ -44003,7 +44225,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1524 this -1926788825 +532445947 1 this.bits 0 @@ -44019,7 +44241,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1525 this -1926788825 +532445947 1 this.bits 0 @@ -44032,7 +44254,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1525 this -1926788825 +532445947 1 this.bits 0 @@ -44048,7 +44270,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1526 this -1926788825 +532445947 1 this.bits 0 @@ -44061,7 +44283,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1526 this -1926788825 +532445947 1 this.bits 0 @@ -44077,7 +44299,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1527 this -1926788825 +532445947 1 this.bits 0 @@ -44090,7 +44312,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1527 this -1926788825 +532445947 1 this.bits 0 @@ -44106,7 +44328,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1528 this -1926788825 +532445947 1 this.bits 0 @@ -44119,7 +44341,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1528 this -1926788825 +532445947 1 this.bits 0 @@ -44135,7 +44357,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1529 this -1926788825 +532445947 1 this.bits 0 @@ -44148,7 +44370,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1529 this -1926788825 +532445947 1 this.bits 4 @@ -44161,7 +44383,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1530 this -1926788825 +532445947 1 this.bits 4 @@ -44174,7 +44396,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1530 this -1926788825 +532445947 1 this.bits 4 @@ -44190,7 +44412,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1531 this -1926788825 +532445947 1 this.bits 4 @@ -44203,7 +44425,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1531 this -1926788825 +532445947 1 this.bits 4 @@ -44219,7 +44441,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1532 this -1926788825 +532445947 1 this.bits 4 @@ -44232,7 +44454,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1532 this -1926788825 +532445947 1 this.bits 4 @@ -44248,7 +44470,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1533 this -1926788825 +532445947 1 this.bits 4 @@ -44261,7 +44483,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1533 this -1926788825 +532445947 1 this.bits 4 @@ -44277,7 +44499,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1534 this -1926788825 +532445947 1 this.bits 4 @@ -44290,7 +44512,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1534 this -1926788825 +532445947 1 this.bits 4 @@ -44306,7 +44528,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1535 this -1926788825 +532445947 1 this.bits 4 @@ -44319,7 +44541,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1535 this -1926788825 +532445947 1 this.bits 4 @@ -44335,7 +44557,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1536 this -1926788825 +532445947 1 this.bits 4 @@ -44348,7 +44570,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1536 this -1926788825 +532445947 1 this.bits 4 @@ -44364,7 +44586,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1537 this -1926788825 +532445947 1 this.bits 4 @@ -44377,7 +44599,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1537 this -1926788825 +532445947 1 this.bits 4 @@ -44393,7 +44615,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1538 this -1926788825 +532445947 1 this.bits 4 @@ -44406,7 +44628,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1538 this -1926788825 +532445947 1 this.bits 0 @@ -44419,7 +44641,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1539 this -1926788825 +532445947 1 this.bits 0 @@ -44432,7 +44654,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1539 this -1926788825 +532445947 1 this.bits 0 @@ -44448,7 +44670,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1540 this -1926788825 +532445947 1 this.bits 0 @@ -44461,7 +44683,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1540 this -1926788825 +532445947 1 this.bits 0 @@ -44477,7 +44699,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1541 this -1926788825 +532445947 1 this.bits 0 @@ -44490,7 +44712,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1541 this -1926788825 +532445947 1 this.bits 0 @@ -44506,7 +44728,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1542 this -1926788825 +532445947 1 this.bits 0 @@ -44519,7 +44741,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1542 this -1926788825 +532445947 1 this.bits 0 @@ -44535,7 +44757,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1543 this -1926788825 +532445947 1 this.bits 0 @@ -44548,7 +44770,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1543 this -1926788825 +532445947 1 this.bits 0 @@ -44564,7 +44786,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1544 this -1926788825 +532445947 1 this.bits 0 @@ -44577,7 +44799,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1544 this -1926788825 +532445947 1 this.bits 0 @@ -44593,7 +44815,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1545 this -1926788825 +532445947 1 this.bits 0 @@ -44606,7 +44828,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1545 this -1926788825 +532445947 1 this.bits 0 @@ -44622,7 +44844,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1546 this -1926788825 +532445947 1 this.bits 0 @@ -44635,7 +44857,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1546 this -1926788825 +532445947 1 this.bits 0 @@ -44651,7 +44873,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1547 this -1926788825 +532445947 1 this.bits 0 @@ -44664,7 +44886,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1547 this -1926788825 +532445947 1 this.bits 64 @@ -44677,7 +44899,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1548 this -1926788825 +532445947 1 this.bits 64 @@ -44690,7 +44912,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1548 this -1926788825 +532445947 1 this.bits 64 @@ -44706,7 +44928,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1549 this -1926788825 +532445947 1 this.bits 64 @@ -44719,7 +44941,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1549 this -1926788825 +532445947 1 this.bits 64 @@ -44735,7 +44957,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1550 this -1926788825 +532445947 1 this.bits 64 @@ -44748,7 +44970,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1550 this -1926788825 +532445947 1 this.bits 64 @@ -44764,7 +44986,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1551 this -1926788825 +532445947 1 this.bits 64 @@ -44777,7 +44999,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1551 this -1926788825 +532445947 1 this.bits 64 @@ -44793,7 +45015,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1552 this -1926788825 +532445947 1 this.bits 64 @@ -44806,7 +45028,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1552 this -1926788825 +532445947 1 this.bits 64 @@ -44822,7 +45044,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1553 this -1926788825 +532445947 1 this.bits 64 @@ -44835,7 +45057,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1553 this -1926788825 +532445947 1 this.bits 64 @@ -44851,7 +45073,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1554 this -1926788825 +532445947 1 this.bits 64 @@ -44864,7 +45086,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1554 this -1926788825 +532445947 1 this.bits 64 @@ -44880,7 +45102,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1555 this -1926788825 +532445947 1 this.bits 64 @@ -44893,7 +45115,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1555 this -1926788825 +532445947 1 this.bits 64 @@ -44909,7 +45131,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1556 this -1926788825 +532445947 1 this.bits 64 @@ -44922,7 +45144,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1556 this -1926788825 +532445947 1 this.bits 0 @@ -44935,7 +45157,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1557 this -1926788825 +532445947 1 this.bits 0 @@ -44948,7 +45170,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1557 this -1926788825 +532445947 1 this.bits 0 @@ -44964,7 +45186,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1558 this -1926788825 +532445947 1 this.bits 0 @@ -44977,7 +45199,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1558 this -1926788825 +532445947 1 this.bits 0 @@ -44993,7 +45215,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1559 this -1926788825 +532445947 1 this.bits 0 @@ -45006,7 +45228,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1559 this -1926788825 +532445947 1 this.bits 0 @@ -45022,7 +45244,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1560 this -1926788825 +532445947 1 this.bits 0 @@ -45035,7 +45257,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1560 this -1926788825 +532445947 1 this.bits 0 @@ -45051,7 +45273,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1561 this -1926788825 +532445947 1 this.bits 0 @@ -45064,7 +45286,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1561 this -1926788825 +532445947 1 this.bits 0 @@ -45080,7 +45302,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1562 this -1926788825 +532445947 1 this.bits 0 @@ -45093,7 +45315,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1562 this -1926788825 +532445947 1 this.bits 0 @@ -45109,7 +45331,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1563 this -1926788825 +532445947 1 this.bits 0 @@ -45122,7 +45344,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1563 this -1926788825 +532445947 1 this.bits 0 @@ -45138,7 +45360,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1564 this -1926788825 +532445947 1 this.bits 0 @@ -45151,7 +45373,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1564 this -1926788825 +532445947 1 this.bits 0 @@ -45167,7 +45389,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1565 this -1926788825 +532445947 1 this.bits 0 @@ -45180,7 +45402,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1565 this -1926788825 +532445947 1 this.bits 64 @@ -45193,7 +45415,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1566 this -1926788825 +532445947 1 this.bits 64 @@ -45206,7 +45428,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1566 this -1926788825 +532445947 1 this.bits 64 @@ -45222,7 +45444,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1567 this -1926788825 +532445947 1 this.bits 64 @@ -45235,7 +45457,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1567 this -1926788825 +532445947 1 this.bits 64 @@ -45251,7 +45473,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1568 this -1926788825 +532445947 1 this.bits 64 @@ -45264,7 +45486,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1568 this -1926788825 +532445947 1 this.bits 64 @@ -45280,7 +45502,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1569 this -1926788825 +532445947 1 this.bits 64 @@ -45293,7 +45515,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1569 this -1926788825 +532445947 1 this.bits 64 @@ -45309,7 +45531,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1570 this -1926788825 +532445947 1 this.bits 64 @@ -45322,7 +45544,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1570 this -1926788825 +532445947 1 this.bits 64 @@ -45338,7 +45560,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1571 this -1926788825 +532445947 1 this.bits 64 @@ -45351,7 +45573,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1571 this -1926788825 +532445947 1 this.bits 64 @@ -45367,7 +45589,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1572 this -1926788825 +532445947 1 this.bits 64 @@ -45380,7 +45602,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1572 this -1926788825 +532445947 1 this.bits 64 @@ -45396,7 +45618,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1573 this -1926788825 +532445947 1 this.bits 64 @@ -45409,7 +45631,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1573 this -1926788825 +532445947 1 this.bits 64 @@ -45425,7 +45647,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1574 this -1926788825 +532445947 1 this.bits 64 @@ -45438,7 +45660,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1574 this -1926788825 +532445947 1 this.bits 0 @@ -45451,7 +45673,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1575 this -1926788825 +532445947 1 this.bits 0 @@ -45464,7 +45686,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1575 this -1926788825 +532445947 1 this.bits 0 @@ -45480,7 +45702,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1576 this -1926788825 +532445947 1 this.bits 0 @@ -45493,7 +45715,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1576 this -1926788825 +532445947 1 this.bits 0 @@ -45509,7 +45731,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1577 this -1926788825 +532445947 1 this.bits 0 @@ -45522,7 +45744,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1577 this -1926788825 +532445947 1 this.bits 0 @@ -45538,7 +45760,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1578 this -1926788825 +532445947 1 this.bits 0 @@ -45551,7 +45773,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1578 this -1926788825 +532445947 1 this.bits 0 @@ -45567,7 +45789,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1579 this -1926788825 +532445947 1 this.bits 0 @@ -45580,7 +45802,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1579 this -1926788825 +532445947 1 this.bits 0 @@ -45596,7 +45818,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1580 this -1926788825 +532445947 1 this.bits 0 @@ -45609,7 +45831,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1580 this -1926788825 +532445947 1 this.bits 0 @@ -45625,7 +45847,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1581 this -1926788825 +532445947 1 this.bits 0 @@ -45638,7 +45860,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1581 this -1926788825 +532445947 1 this.bits 0 @@ -45654,7 +45876,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1582 this -1926788825 +532445947 1 this.bits 0 @@ -45667,7 +45889,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1582 this -1926788825 +532445947 1 this.bits 0 @@ -45683,7 +45905,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1583 this -1926788825 +532445947 1 this.bits 0 @@ -45696,7 +45918,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1583 this -1926788825 +532445947 1 this.bits 64 @@ -45709,7 +45931,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1584 this -1926788825 +532445947 1 this.bits 64 @@ -45722,7 +45944,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1584 this -1926788825 +532445947 1 this.bits 64 @@ -45738,7 +45960,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1585 this -1926788825 +532445947 1 this.bits 64 @@ -45751,7 +45973,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1585 this -1926788825 +532445947 1 this.bits 64 @@ -45767,7 +45989,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1586 this -1926788825 +532445947 1 this.bits 64 @@ -45780,7 +46002,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1586 this -1926788825 +532445947 1 this.bits 64 @@ -45796,7 +46018,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1587 this -1926788825 +532445947 1 this.bits 64 @@ -45809,7 +46031,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1587 this -1926788825 +532445947 1 this.bits 64 @@ -45825,7 +46047,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1588 this -1926788825 +532445947 1 this.bits 64 @@ -45838,7 +46060,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1588 this -1926788825 +532445947 1 this.bits 64 @@ -45854,7 +46076,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1589 this -1926788825 +532445947 1 this.bits 64 @@ -45867,7 +46089,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1589 this -1926788825 +532445947 1 this.bits 64 @@ -45883,7 +46105,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1590 this -1926788825 +532445947 1 this.bits 64 @@ -45896,7 +46118,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1590 this -1926788825 +532445947 1 this.bits 64 @@ -45912,7 +46134,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1591 this -1926788825 +532445947 1 this.bits 64 @@ -45925,7 +46147,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1591 this -1926788825 +532445947 1 this.bits 64 @@ -45941,7 +46163,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1592 this -1926788825 +532445947 1 this.bits 64 @@ -45954,7 +46176,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1592 this -1926788825 +532445947 1 this.bits 0 @@ -45967,7 +46189,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1593 this -1926788825 +532445947 1 this.bits 0 @@ -45980,7 +46202,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1593 this -1926788825 +532445947 1 this.bits 0 @@ -45996,7 +46218,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1594 this -1926788825 +532445947 1 this.bits 0 @@ -46009,7 +46231,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1594 this -1926788825 +532445947 1 this.bits 0 @@ -46025,7 +46247,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1595 this -1926788825 +532445947 1 this.bits 0 @@ -46038,7 +46260,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1595 this -1926788825 +532445947 1 this.bits 0 @@ -46054,7 +46276,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1596 this -1926788825 +532445947 1 this.bits 0 @@ -46067,7 +46289,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1596 this -1926788825 +532445947 1 this.bits 0 @@ -46083,7 +46305,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1597 this -1926788825 +532445947 1 this.bits 0 @@ -46096,7 +46318,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1597 this -1926788825 +532445947 1 this.bits 0 @@ -46112,7 +46334,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1598 this -1926788825 +532445947 1 this.bits 0 @@ -46125,7 +46347,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1598 this -1926788825 +532445947 1 this.bits 0 @@ -46141,7 +46363,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1599 this -1926788825 +532445947 1 this.bits 0 @@ -46154,7 +46376,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1599 this -1926788825 +532445947 1 this.bits 0 @@ -46170,7 +46392,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1600 this -1926788825 +532445947 1 this.bits 0 @@ -46183,7 +46405,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1600 this -1926788825 +532445947 1 this.bits 0 @@ -46199,7 +46421,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1601 this -1926788825 +532445947 1 this.bits 0 @@ -46212,7 +46434,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1601 this -1926788825 +532445947 1 this.bits 64 @@ -46225,7 +46447,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1602 this -1926788825 +532445947 1 this.bits 64 @@ -46238,7 +46460,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1602 this -1926788825 +532445947 1 this.bits 64 @@ -46254,7 +46476,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1603 this -1926788825 +532445947 1 this.bits 64 @@ -46267,7 +46489,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1603 this -1926788825 +532445947 1 this.bits 64 @@ -46283,7 +46505,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1604 this -1926788825 +532445947 1 this.bits 64 @@ -46296,7 +46518,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1604 this -1926788825 +532445947 1 this.bits 64 @@ -46312,7 +46534,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1605 this -1926788825 +532445947 1 this.bits 64 @@ -46325,7 +46547,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1605 this -1926788825 +532445947 1 this.bits 64 @@ -46341,7 +46563,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1606 this -1926788825 +532445947 1 this.bits 64 @@ -46354,7 +46576,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1606 this -1926788825 +532445947 1 this.bits 64 @@ -46370,7 +46592,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1607 this -1926788825 +532445947 1 this.bits 64 @@ -46383,7 +46605,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1607 this -1926788825 +532445947 1 this.bits 64 @@ -46399,7 +46621,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1608 this -1926788825 +532445947 1 this.bits 64 @@ -46412,7 +46634,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1608 this -1926788825 +532445947 1 this.bits 64 @@ -46428,7 +46650,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1609 this -1926788825 +532445947 1 this.bits 64 @@ -46441,7 +46663,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1609 this -1926788825 +532445947 1 this.bits 64 @@ -46457,7 +46679,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1610 this -1926788825 +532445947 1 this.bits 64 @@ -46470,7 +46692,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1610 this -1926788825 +532445947 1 this.bits 0 @@ -46483,7 +46705,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1611 this -1926788825 +532445947 1 this.bits 0 @@ -46496,7 +46718,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1611 this -1926788825 +532445947 1 this.bits 0 @@ -46512,7 +46734,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1612 this -1926788825 +532445947 1 this.bits 0 @@ -46525,7 +46747,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1612 this -1926788825 +532445947 1 this.bits 0 @@ -46541,7 +46763,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1613 this -1926788825 +532445947 1 this.bits 0 @@ -46554,7 +46776,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1613 this -1926788825 +532445947 1 this.bits 0 @@ -46570,7 +46792,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1614 this -1926788825 +532445947 1 this.bits 0 @@ -46583,7 +46805,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1614 this -1926788825 +532445947 1 this.bits 0 @@ -46599,7 +46821,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1615 this -1926788825 +532445947 1 this.bits 0 @@ -46612,7 +46834,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1615 this -1926788825 +532445947 1 this.bits 0 @@ -46628,7 +46850,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1616 this -1926788825 +532445947 1 this.bits 0 @@ -46641,7 +46863,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1616 this -1926788825 +532445947 1 this.bits 0 @@ -46657,7 +46879,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1617 this -1926788825 +532445947 1 this.bits 0 @@ -46670,7 +46892,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1617 this -1926788825 +532445947 1 this.bits 0 @@ -46686,7 +46908,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1618 this -1926788825 +532445947 1 this.bits 0 @@ -46699,7 +46921,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1618 this -1926788825 +532445947 1 this.bits 0 @@ -46715,7 +46937,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1619 this -1926788825 +532445947 1 this.bits 0 @@ -46728,7 +46950,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1619 this -1926788825 +532445947 1 this.bits 128 @@ -46741,7 +46963,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1620 this -1926788825 +532445947 1 this.bits 128 @@ -46754,7 +46976,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1620 this -1926788825 +532445947 1 this.bits 128 @@ -46770,7 +46992,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1621 this -1926788825 +532445947 1 this.bits 128 @@ -46783,7 +47005,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1621 this -1926788825 +532445947 1 this.bits 128 @@ -46799,7 +47021,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1622 this -1926788825 +532445947 1 this.bits 128 @@ -46812,7 +47034,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1622 this -1926788825 +532445947 1 this.bits 128 @@ -46828,7 +47050,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1623 this -1926788825 +532445947 1 this.bits 128 @@ -46841,7 +47063,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1623 this -1926788825 +532445947 1 this.bits 128 @@ -46857,7 +47079,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1624 this -1926788825 +532445947 1 this.bits 128 @@ -46870,7 +47092,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1624 this -1926788825 +532445947 1 this.bits 128 @@ -46886,7 +47108,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1625 this -1926788825 +532445947 1 this.bits 128 @@ -46899,7 +47121,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1625 this -1926788825 +532445947 1 this.bits 128 @@ -46915,7 +47137,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1626 this -1926788825 +532445947 1 this.bits 128 @@ -46928,7 +47150,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1626 this -1926788825 +532445947 1 this.bits 128 @@ -46944,7 +47166,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1627 this -1926788825 +532445947 1 this.bits 128 @@ -46957,7 +47179,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1627 this -1926788825 +532445947 1 this.bits 128 @@ -46973,7 +47195,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1628 this -1926788825 +532445947 1 this.bits 128 @@ -46986,7 +47208,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1628 this -1926788825 +532445947 1 this.bits 0 @@ -46999,7 +47221,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1629 this -1926788825 +532445947 1 this.bits 0 @@ -47012,7 +47234,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1629 this -1926788825 +532445947 1 this.bits 0 @@ -47028,7 +47250,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1630 this -1926788825 +532445947 1 this.bits 0 @@ -47041,7 +47263,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1630 this -1926788825 +532445947 1 this.bits 0 @@ -47057,7 +47279,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1631 this -1926788825 +532445947 1 this.bits 0 @@ -47070,7 +47292,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1631 this -1926788825 +532445947 1 this.bits 0 @@ -47086,7 +47308,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1632 this -1926788825 +532445947 1 this.bits 0 @@ -47099,7 +47321,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1632 this -1926788825 +532445947 1 this.bits 0 @@ -47115,7 +47337,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1633 this -1926788825 +532445947 1 this.bits 0 @@ -47128,7 +47350,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1633 this -1926788825 +532445947 1 this.bits 0 @@ -47144,7 +47366,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1634 this -1926788825 +532445947 1 this.bits 0 @@ -47157,7 +47379,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1634 this -1926788825 +532445947 1 this.bits 0 @@ -47173,7 +47395,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1635 this -1926788825 +532445947 1 this.bits 0 @@ -47186,7 +47408,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1635 this -1926788825 +532445947 1 this.bits 0 @@ -47202,7 +47424,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1636 this -1926788825 +532445947 1 this.bits 0 @@ -47215,7 +47437,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1636 this -1926788825 +532445947 1 this.bits 0 @@ -47231,7 +47453,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1637 this -1926788825 +532445947 1 this.bits 0 @@ -47244,7 +47466,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1637 this -1926788825 +532445947 1 this.bits 128 @@ -47257,7 +47479,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1638 this -1926788825 +532445947 1 this.bits 128 @@ -47270,7 +47492,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1638 this -1926788825 +532445947 1 this.bits 128 @@ -47286,7 +47508,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1639 this -1926788825 +532445947 1 this.bits 128 @@ -47299,7 +47521,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1639 this -1926788825 +532445947 1 this.bits 128 @@ -47315,7 +47537,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1640 this -1926788825 +532445947 1 this.bits 128 @@ -47328,7 +47550,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1640 this -1926788825 +532445947 1 this.bits 128 @@ -47344,7 +47566,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1641 this -1926788825 +532445947 1 this.bits 128 @@ -47357,7 +47579,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1641 this -1926788825 +532445947 1 this.bits 128 @@ -47373,7 +47595,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1642 this -1926788825 +532445947 1 this.bits 128 @@ -47386,7 +47608,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1642 this -1926788825 +532445947 1 this.bits 128 @@ -47402,7 +47624,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1643 this -1926788825 +532445947 1 this.bits 128 @@ -47415,7 +47637,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1643 this -1926788825 +532445947 1 this.bits 128 @@ -47431,7 +47653,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1644 this -1926788825 +532445947 1 this.bits 128 @@ -47444,7 +47666,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1644 this -1926788825 +532445947 1 this.bits 128 @@ -47460,7 +47682,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1645 this -1926788825 +532445947 1 this.bits 128 @@ -47473,7 +47695,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1645 this -1926788825 +532445947 1 this.bits 128 @@ -47489,7 +47711,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1646 this -1926788825 +532445947 1 this.bits 128 @@ -47502,7 +47724,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1646 this -1926788825 +532445947 1 this.bits 0 @@ -47515,7 +47737,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1647 this -1926788825 +532445947 1 this.bits 0 @@ -47528,7 +47750,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1647 this -1926788825 +532445947 1 this.bits 0 @@ -47544,7 +47766,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1648 this -1926788825 +532445947 1 this.bits 0 @@ -47557,7 +47779,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1648 this -1926788825 +532445947 1 this.bits 0 @@ -47573,7 +47795,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1649 this -1926788825 +532445947 1 this.bits 0 @@ -47586,7 +47808,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1649 this -1926788825 +532445947 1 this.bits 0 @@ -47602,7 +47824,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1650 this -1926788825 +532445947 1 this.bits 0 @@ -47615,7 +47837,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1650 this -1926788825 +532445947 1 this.bits 0 @@ -47631,7 +47853,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1651 this -1926788825 +532445947 1 this.bits 0 @@ -47644,7 +47866,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1651 this -1926788825 +532445947 1 this.bits 0 @@ -47660,7 +47882,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1652 this -1926788825 +532445947 1 this.bits 0 @@ -47673,7 +47895,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1652 this -1926788825 +532445947 1 this.bits 0 @@ -47689,7 +47911,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1653 this -1926788825 +532445947 1 this.bits 0 @@ -47702,7 +47924,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1653 this -1926788825 +532445947 1 this.bits 0 @@ -47718,7 +47940,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1654 this -1926788825 +532445947 1 this.bits 0 @@ -47731,7 +47953,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1654 this -1926788825 +532445947 1 this.bits 0 @@ -47747,7 +47969,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1655 this -1926788825 +532445947 1 this.bits 0 @@ -47760,7 +47982,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1655 this -1926788825 +532445947 1 this.bits 128 @@ -47773,7 +47995,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1656 this -1926788825 +532445947 1 this.bits 128 @@ -47786,7 +48008,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1656 this -1926788825 +532445947 1 this.bits 128 @@ -47802,7 +48024,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1657 this -1926788825 +532445947 1 this.bits 128 @@ -47815,7 +48037,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1657 this -1926788825 +532445947 1 this.bits 128 @@ -47831,7 +48053,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1658 this -1926788825 +532445947 1 this.bits 128 @@ -47844,7 +48066,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1658 this -1926788825 +532445947 1 this.bits 128 @@ -47860,7 +48082,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1659 this -1926788825 +532445947 1 this.bits 128 @@ -47873,7 +48095,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1659 this -1926788825 +532445947 1 this.bits 128 @@ -47889,7 +48111,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1660 this -1926788825 +532445947 1 this.bits 128 @@ -47902,7 +48124,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1660 this -1926788825 +532445947 1 this.bits 128 @@ -47918,7 +48140,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1661 this -1926788825 +532445947 1 this.bits 128 @@ -47931,7 +48153,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1661 this -1926788825 +532445947 1 this.bits 128 @@ -47947,7 +48169,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1662 this -1926788825 +532445947 1 this.bits 128 @@ -47960,7 +48182,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1662 this -1926788825 +532445947 1 this.bits 128 @@ -47976,7 +48198,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1663 this -1926788825 +532445947 1 this.bits 128 @@ -47989,7 +48211,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1663 this -1926788825 +532445947 1 this.bits 128 @@ -48005,7 +48227,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1664 this -1926788825 +532445947 1 this.bits 128 @@ -48018,7 +48240,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1664 this -1926788825 +532445947 1 this.bits 0 @@ -48031,7 +48253,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1665 this -1926788825 +532445947 1 this.bits 0 @@ -48044,7 +48266,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1665 this -1926788825 +532445947 1 this.bits 0 @@ -48060,7 +48282,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1666 this -1926788825 +532445947 1 this.bits 0 @@ -48073,7 +48295,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1666 this -1926788825 +532445947 1 this.bits 0 @@ -48089,7 +48311,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1667 this -1926788825 +532445947 1 this.bits 0 @@ -48102,7 +48324,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1667 this -1926788825 +532445947 1 this.bits 0 @@ -48118,7 +48340,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1668 this -1926788825 +532445947 1 this.bits 0 @@ -48131,7 +48353,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1668 this -1926788825 +532445947 1 this.bits 0 @@ -48147,7 +48369,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1669 this -1926788825 +532445947 1 this.bits 0 @@ -48160,7 +48382,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1669 this -1926788825 +532445947 1 this.bits 0 @@ -48176,7 +48398,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1670 this -1926788825 +532445947 1 this.bits 0 @@ -48189,7 +48411,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1670 this -1926788825 +532445947 1 this.bits 0 @@ -48205,7 +48427,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1671 this -1926788825 +532445947 1 this.bits 0 @@ -48218,7 +48440,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1671 this -1926788825 +532445947 1 this.bits 0 @@ -48234,7 +48456,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1672 this -1926788825 +532445947 1 this.bits 0 @@ -48247,7 +48469,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1672 this -1926788825 +532445947 1 this.bits 0 @@ -48263,7 +48485,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1673 this -1926788825 +532445947 1 this.bits 0 @@ -48276,7 +48498,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1673 this -1926788825 +532445947 1 this.bits 128 @@ -48289,7 +48511,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1674 this -1926788825 +532445947 1 this.bits 128 @@ -48302,7 +48524,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1674 this -1926788825 +532445947 1 this.bits 128 @@ -48318,7 +48540,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1675 this -1926788825 +532445947 1 this.bits 128 @@ -48331,7 +48553,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1675 this -1926788825 +532445947 1 this.bits 128 @@ -48347,7 +48569,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1676 this -1926788825 +532445947 1 this.bits 128 @@ -48360,7 +48582,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1676 this -1926788825 +532445947 1 this.bits 128 @@ -48376,7 +48598,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1677 this -1926788825 +532445947 1 this.bits 128 @@ -48389,7 +48611,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1677 this -1926788825 +532445947 1 this.bits 128 @@ -48405,7 +48627,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1678 this -1926788825 +532445947 1 this.bits 128 @@ -48418,7 +48640,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1678 this -1926788825 +532445947 1 this.bits 128 @@ -48434,7 +48656,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1679 this -1926788825 +532445947 1 this.bits 128 @@ -48447,7 +48669,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1679 this -1926788825 +532445947 1 this.bits 128 @@ -48463,7 +48685,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1680 this -1926788825 +532445947 1 this.bits 128 @@ -48476,7 +48698,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1680 this -1926788825 +532445947 1 this.bits 128 @@ -48492,7 +48714,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1681 this -1926788825 +532445947 1 this.bits 128 @@ -48505,7 +48727,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1681 this -1926788825 +532445947 1 this.bits 128 @@ -48521,7 +48743,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1682 this -1926788825 +532445947 1 this.bits 128 @@ -48534,7 +48756,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1682 this -1926788825 +532445947 1 this.bits 0 @@ -48547,7 +48769,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1683 this -1926788825 +532445947 1 this.bits 0 @@ -48560,7 +48782,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1683 this -1926788825 +532445947 1 this.bits 0 @@ -48576,7 +48798,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1684 this -1926788825 +532445947 1 this.bits 0 @@ -48589,7 +48811,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1684 this -1926788825 +532445947 1 this.bits 0 @@ -48605,7 +48827,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1685 this -1926788825 +532445947 1 this.bits 0 @@ -48618,7 +48840,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1685 this -1926788825 +532445947 1 this.bits 0 @@ -48634,7 +48856,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1686 this -1926788825 +532445947 1 this.bits 0 @@ -48647,7 +48869,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1686 this -1926788825 +532445947 1 this.bits 0 @@ -48663,7 +48885,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1687 this -1926788825 +532445947 1 this.bits 0 @@ -48676,7 +48898,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1687 this -1926788825 +532445947 1 this.bits 0 @@ -48692,7 +48914,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1688 this -1926788825 +532445947 1 this.bits 0 @@ -48705,7 +48927,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1688 this -1926788825 +532445947 1 this.bits 0 @@ -48721,7 +48943,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1689 this -1926788825 +532445947 1 this.bits 0 @@ -48734,7 +48956,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1689 this -1926788825 +532445947 1 this.bits 0 @@ -48750,7 +48972,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1690 this -1926788825 +532445947 1 this.bits 0 @@ -48763,7 +48985,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1690 this -1926788825 +532445947 1 this.bits 0 @@ -48779,7 +49001,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1691 this -1926788825 +532445947 1 this.bits 0 @@ -48792,7 +49014,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1691 this -1926788825 +532445947 1 this.bits 4 @@ -48805,7 +49027,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1692 this -1926788825 +532445947 1 this.bits 4 @@ -48818,7 +49040,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1692 this -1926788825 +532445947 1 this.bits 4 @@ -48834,7 +49056,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1693 this -1926788825 +532445947 1 this.bits 4 @@ -48847,7 +49069,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1693 this -1926788825 +532445947 1 this.bits 4 @@ -48863,7 +49085,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1694 this -1926788825 +532445947 1 this.bits 4 @@ -48876,7 +49098,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1694 this -1926788825 +532445947 1 this.bits 4 @@ -48892,7 +49114,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1695 this -1926788825 +532445947 1 this.bits 4 @@ -48905,7 +49127,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1695 this -1926788825 +532445947 1 this.bits 4 @@ -48921,7 +49143,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1696 this -1926788825 +532445947 1 this.bits 4 @@ -48934,7 +49156,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1696 this -1926788825 +532445947 1 this.bits 4 @@ -48950,7 +49172,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1697 this -1926788825 +532445947 1 this.bits 4 @@ -48963,7 +49185,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1697 this -1926788825 +532445947 1 this.bits 4 @@ -48979,7 +49201,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1698 this -1926788825 +532445947 1 this.bits 4 @@ -48992,7 +49214,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1698 this -1926788825 +532445947 1 this.bits 4 @@ -49008,7 +49230,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1699 this -1926788825 +532445947 1 this.bits 4 @@ -49021,7 +49243,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1699 this -1926788825 +532445947 1 this.bits 4 @@ -49037,7 +49259,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1700 this -1926788825 +532445947 1 this.bits 4 @@ -49050,7 +49272,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1700 this -1926788825 +532445947 1 this.bits 0 @@ -49063,7 +49285,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1701 this -1926788825 +532445947 1 this.bits 0 @@ -49076,7 +49298,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1701 this -1926788825 +532445947 1 this.bits 0 @@ -49092,7 +49314,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1702 this -1926788825 +532445947 1 this.bits 0 @@ -49105,7 +49327,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1702 this -1926788825 +532445947 1 this.bits 0 @@ -49121,7 +49343,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1703 this -1926788825 +532445947 1 this.bits 0 @@ -49134,7 +49356,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1703 this -1926788825 +532445947 1 this.bits 0 @@ -49150,7 +49372,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1704 this -1926788825 +532445947 1 this.bits 0 @@ -49163,7 +49385,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1704 this -1926788825 +532445947 1 this.bits 0 @@ -49179,7 +49401,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1705 this -1926788825 +532445947 1 this.bits 0 @@ -49192,7 +49414,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1705 this -1926788825 +532445947 1 this.bits 0 @@ -49208,7 +49430,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1706 this -1926788825 +532445947 1 this.bits 0 @@ -49221,7 +49443,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1706 this -1926788825 +532445947 1 this.bits 0 @@ -49237,7 +49459,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1707 this -1926788825 +532445947 1 this.bits 0 @@ -49250,7 +49472,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1707 this -1926788825 +532445947 1 this.bits 0 @@ -49266,7 +49488,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1708 this -1926788825 +532445947 1 this.bits 0 @@ -49279,7 +49501,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1708 this -1926788825 +532445947 1 this.bits 0 @@ -49295,7 +49517,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1709 this -1926788825 +532445947 1 this.bits 0 @@ -49308,7 +49530,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1709 this -1926788825 +532445947 1 this.bits 1 @@ -49321,7 +49543,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1710 this -1926788825 +532445947 1 this.bits 1 @@ -49334,7 +49556,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1710 this -1926788825 +532445947 1 this.bits 1 @@ -49350,7 +49572,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1711 this -1926788825 +532445947 1 this.bits 1 @@ -49363,7 +49585,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1711 this -1926788825 +532445947 1 this.bits 1 @@ -49379,7 +49601,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1712 this -1926788825 +532445947 1 this.bits 1 @@ -49392,7 +49614,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1712 this -1926788825 +532445947 1 this.bits 1 @@ -49408,7 +49630,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1713 this -1926788825 +532445947 1 this.bits 1 @@ -49421,7 +49643,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1713 this -1926788825 +532445947 1 this.bits 1 @@ -49437,7 +49659,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1714 this -1926788825 +532445947 1 this.bits 1 @@ -49450,7 +49672,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1714 this -1926788825 +532445947 1 this.bits 1 @@ -49466,7 +49688,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1715 this -1926788825 +532445947 1 this.bits 1 @@ -49479,7 +49701,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1715 this -1926788825 +532445947 1 this.bits 1 @@ -49495,7 +49717,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1716 this -1926788825 +532445947 1 this.bits 1 @@ -49508,7 +49730,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1716 this -1926788825 +532445947 1 this.bits 1 @@ -49524,7 +49746,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1717 this -1926788825 +532445947 1 this.bits 1 @@ -49537,7 +49759,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1717 this -1926788825 +532445947 1 this.bits 1 @@ -49553,7 +49775,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1718 this -1926788825 +532445947 1 this.bits 1 @@ -49566,7 +49788,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1718 this -1926788825 +532445947 1 this.bits 0 @@ -49579,7 +49801,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1719 this -1926788825 +532445947 1 this.bits 0 @@ -49592,7 +49814,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1719 this -1926788825 +532445947 1 this.bits 0 @@ -49608,7 +49830,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1720 this -1926788825 +532445947 1 this.bits 0 @@ -49621,7 +49843,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1720 this -1926788825 +532445947 1 this.bits 0 @@ -49637,7 +49859,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1721 this -1926788825 +532445947 1 this.bits 0 @@ -49650,7 +49872,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1721 this -1926788825 +532445947 1 this.bits 0 @@ -49666,7 +49888,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1722 this -1926788825 +532445947 1 this.bits 0 @@ -49679,7 +49901,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1722 this -1926788825 +532445947 1 this.bits 0 @@ -49695,7 +49917,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1723 this -1926788825 +532445947 1 this.bits 0 @@ -49708,7 +49930,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1723 this -1926788825 +532445947 1 this.bits 0 @@ -49724,7 +49946,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1724 this -1926788825 +532445947 1 this.bits 0 @@ -49737,7 +49959,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1724 this -1926788825 +532445947 1 this.bits 0 @@ -49753,7 +49975,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1725 this -1926788825 +532445947 1 this.bits 0 @@ -49766,7 +49988,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1725 this -1926788825 +532445947 1 this.bits 0 @@ -49782,7 +50004,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1726 this -1926788825 +532445947 1 this.bits 0 @@ -49795,7 +50017,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1726 this -1926788825 +532445947 1 this.bits 0 @@ -49811,7 +50033,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1727 this -1926788825 +532445947 1 this.bits 0 @@ -49824,7 +50046,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1727 this -1926788825 +532445947 1 this.bits 1 @@ -49837,7 +50059,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1728 this -1926788825 +532445947 1 this.bits 1 @@ -49850,7 +50072,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1728 this -1926788825 +532445947 1 this.bits 1 @@ -49866,7 +50088,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1729 this -1926788825 +532445947 1 this.bits 1 @@ -49879,7 +50101,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1729 this -1926788825 +532445947 1 this.bits 1 @@ -49895,7 +50117,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1730 this -1926788825 +532445947 1 this.bits 1 @@ -49908,7 +50130,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1730 this -1926788825 +532445947 1 this.bits 1 @@ -49924,7 +50146,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1731 this -1926788825 +532445947 1 this.bits 1 @@ -49937,7 +50159,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1731 this -1926788825 +532445947 1 this.bits 1 @@ -49953,7 +50175,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1732 this -1926788825 +532445947 1 this.bits 1 @@ -49966,7 +50188,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1732 this -1926788825 +532445947 1 this.bits 1 @@ -49982,7 +50204,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1733 this -1926788825 +532445947 1 this.bits 1 @@ -49995,7 +50217,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1733 this -1926788825 +532445947 1 this.bits 1 @@ -50011,7 +50233,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1734 this -1926788825 +532445947 1 this.bits 1 @@ -50024,7 +50246,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1734 this -1926788825 +532445947 1 this.bits 1 @@ -50040,7 +50262,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1735 this -1926788825 +532445947 1 this.bits 1 @@ -50053,7 +50275,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1735 this -1926788825 +532445947 1 this.bits 1 @@ -50069,7 +50291,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1736 this -1926788825 +532445947 1 this.bits 1 @@ -50082,7 +50304,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1736 this -1926788825 +532445947 1 this.bits 0 @@ -50095,7 +50317,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1737 this -1926788825 +532445947 1 this.bits 0 @@ -50108,7 +50330,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1737 this -1926788825 +532445947 1 this.bits 0 @@ -50124,7 +50346,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1738 this -1926788825 +532445947 1 this.bits 0 @@ -50137,7 +50359,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1738 this -1926788825 +532445947 1 this.bits 0 @@ -50153,7 +50375,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1739 this -1926788825 +532445947 1 this.bits 0 @@ -50166,7 +50388,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1739 this -1926788825 +532445947 1 this.bits 0 @@ -50182,7 +50404,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1740 this -1926788825 +532445947 1 this.bits 0 @@ -50195,7 +50417,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1740 this -1926788825 +532445947 1 this.bits 0 @@ -50211,7 +50433,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1741 this -1926788825 +532445947 1 this.bits 0 @@ -50224,7 +50446,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1741 this -1926788825 +532445947 1 this.bits 0 @@ -50240,7 +50462,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1742 this -1926788825 +532445947 1 this.bits 0 @@ -50253,7 +50475,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1742 this -1926788825 +532445947 1 this.bits 0 @@ -50269,7 +50491,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1743 this -1926788825 +532445947 1 this.bits 0 @@ -50282,7 +50504,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1743 this -1926788825 +532445947 1 this.bits 0 @@ -50298,7 +50520,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1744 this -1926788825 +532445947 1 this.bits 0 @@ -50311,7 +50533,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1744 this -1926788825 +532445947 1 this.bits 0 @@ -50327,7 +50549,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1745 this -1926788825 +532445947 1 this.bits 0 @@ -50340,7 +50562,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1745 this -1926788825 +532445947 1 this.bits 2 @@ -50353,7 +50575,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1746 this -1926788825 +532445947 1 this.bits 2 @@ -50366,7 +50588,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1746 this -1926788825 +532445947 1 this.bits 2 @@ -50382,7 +50604,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1747 this -1926788825 +532445947 1 this.bits 2 @@ -50395,7 +50617,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1747 this -1926788825 +532445947 1 this.bits 2 @@ -50411,7 +50633,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1748 this -1926788825 +532445947 1 this.bits 2 @@ -50424,7 +50646,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1748 this -1926788825 +532445947 1 this.bits 2 @@ -50440,7 +50662,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1749 this -1926788825 +532445947 1 this.bits 2 @@ -50453,7 +50675,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1749 this -1926788825 +532445947 1 this.bits 2 @@ -50469,7 +50691,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1750 this -1926788825 +532445947 1 this.bits 2 @@ -50482,7 +50704,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1750 this -1926788825 +532445947 1 this.bits 2 @@ -50498,7 +50720,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1751 this -1926788825 +532445947 1 this.bits 2 @@ -50511,7 +50733,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1751 this -1926788825 +532445947 1 this.bits 2 @@ -50527,7 +50749,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1752 this -1926788825 +532445947 1 this.bits 2 @@ -50540,7 +50762,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1752 this -1926788825 +532445947 1 this.bits 2 @@ -50556,7 +50778,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1753 this -1926788825 +532445947 1 this.bits 2 @@ -50569,7 +50791,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1753 this -1926788825 +532445947 1 this.bits 2 @@ -50585,7 +50807,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1754 this -1926788825 +532445947 1 this.bits 2 @@ -50598,7 +50820,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1754 this -1926788825 +532445947 1 this.bits 0 @@ -50611,7 +50833,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1755 this -1926788825 +532445947 1 this.bits 0 @@ -50624,7 +50846,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1755 this -1926788825 +532445947 1 this.bits 0 @@ -50640,7 +50862,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1756 this -1926788825 +532445947 1 this.bits 0 @@ -50653,7 +50875,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1756 this -1926788825 +532445947 1 this.bits 0 @@ -50669,7 +50891,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1757 this -1926788825 +532445947 1 this.bits 0 @@ -50682,7 +50904,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1757 this -1926788825 +532445947 1 this.bits 0 @@ -50698,7 +50920,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1758 this -1926788825 +532445947 1 this.bits 0 @@ -50711,7 +50933,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1758 this -1926788825 +532445947 1 this.bits 0 @@ -50727,7 +50949,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1759 this -1926788825 +532445947 1 this.bits 0 @@ -50740,7 +50962,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1759 this -1926788825 +532445947 1 this.bits 0 @@ -50756,7 +50978,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1760 this -1926788825 +532445947 1 this.bits 0 @@ -50769,7 +50991,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1760 this -1926788825 +532445947 1 this.bits 0 @@ -50785,7 +51007,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1761 this -1926788825 +532445947 1 this.bits 0 @@ -50798,7 +51020,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1761 this -1926788825 +532445947 1 this.bits 0 @@ -50814,7 +51036,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1762 this -1926788825 +532445947 1 this.bits 0 @@ -50827,7 +51049,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1762 this -1926788825 +532445947 1 this.bits 0 @@ -50843,7 +51065,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1763 this -1926788825 +532445947 1 this.bits 0 @@ -50856,7 +51078,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1763 this -1926788825 +532445947 1 this.bits 4 @@ -50869,7 +51091,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1764 this -1926788825 +532445947 1 this.bits 4 @@ -50882,7 +51104,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1764 this -1926788825 +532445947 1 this.bits 4 @@ -50898,7 +51120,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1765 this -1926788825 +532445947 1 this.bits 4 @@ -50911,7 +51133,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1765 this -1926788825 +532445947 1 this.bits 4 @@ -50927,7 +51149,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1766 this -1926788825 +532445947 1 this.bits 4 @@ -50940,7 +51162,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1766 this -1926788825 +532445947 1 this.bits 4 @@ -50956,7 +51178,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1767 this -1926788825 +532445947 1 this.bits 4 @@ -50969,7 +51191,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1767 this -1926788825 +532445947 1 this.bits 4 @@ -50985,7 +51207,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1768 this -1926788825 +532445947 1 this.bits 4 @@ -50998,7 +51220,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1768 this -1926788825 +532445947 1 this.bits 4 @@ -51014,7 +51236,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1769 this -1926788825 +532445947 1 this.bits 4 @@ -51027,7 +51249,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1769 this -1926788825 +532445947 1 this.bits 4 @@ -51043,7 +51265,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1770 this -1926788825 +532445947 1 this.bits 4 @@ -51056,7 +51278,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1770 this -1926788825 +532445947 1 this.bits 4 @@ -51072,7 +51294,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1771 this -1926788825 +532445947 1 this.bits 4 @@ -51085,7 +51307,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1771 this -1926788825 +532445947 1 this.bits 4 @@ -51101,7 +51323,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1772 this -1926788825 +532445947 1 this.bits 4 @@ -51114,7 +51336,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1772 this -1926788825 +532445947 1 this.bits 0 @@ -51127,7 +51349,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1773 this -1926788825 +532445947 1 this.bits 0 @@ -51140,7 +51362,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1773 this -1926788825 +532445947 1 this.bits 0 @@ -51156,7 +51378,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1774 this -1926788825 +532445947 1 this.bits 0 @@ -51169,7 +51391,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1774 this -1926788825 +532445947 1 this.bits 0 @@ -51185,7 +51407,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1775 this -1926788825 +532445947 1 this.bits 0 @@ -51198,7 +51420,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1775 this -1926788825 +532445947 1 this.bits 0 @@ -51214,7 +51436,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1776 this -1926788825 +532445947 1 this.bits 0 @@ -51227,7 +51449,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1776 this -1926788825 +532445947 1 this.bits 0 @@ -51243,7 +51465,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1777 this -1926788825 +532445947 1 this.bits 0 @@ -51256,7 +51478,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1777 this -1926788825 +532445947 1 this.bits 0 @@ -51272,7 +51494,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1778 this -1926788825 +532445947 1 this.bits 0 @@ -51285,7 +51507,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1778 this -1926788825 +532445947 1 this.bits 0 @@ -51301,7 +51523,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1779 this -1926788825 +532445947 1 this.bits 0 @@ -51314,7 +51536,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1779 this -1926788825 +532445947 1 this.bits 0 @@ -51330,7 +51552,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1780 this -1926788825 +532445947 1 this.bits 0 @@ -51343,7 +51565,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1780 this -1926788825 +532445947 1 this.bits 0 @@ -51359,7 +51581,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1781 this -1926788825 +532445947 1 this.bits 0 @@ -51372,7 +51594,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1781 this -1926788825 +532445947 1 this.bits 8 @@ -51385,7 +51607,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1782 this -1926788825 +532445947 1 this.bits 8 @@ -51398,7 +51620,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1782 this -1926788825 +532445947 1 this.bits 8 @@ -51414,7 +51636,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1783 this -1926788825 +532445947 1 this.bits 8 @@ -51427,7 +51649,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1783 this -1926788825 +532445947 1 this.bits 8 @@ -51443,7 +51665,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1784 this -1926788825 +532445947 1 this.bits 8 @@ -51456,7 +51678,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1784 this -1926788825 +532445947 1 this.bits 8 @@ -51472,7 +51694,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1785 this -1926788825 +532445947 1 this.bits 8 @@ -51485,7 +51707,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1785 this -1926788825 +532445947 1 this.bits 8 @@ -51501,7 +51723,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1786 this -1926788825 +532445947 1 this.bits 8 @@ -51514,7 +51736,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1786 this -1926788825 +532445947 1 this.bits 8 @@ -51530,7 +51752,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1787 this -1926788825 +532445947 1 this.bits 8 @@ -51543,7 +51765,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1787 this -1926788825 +532445947 1 this.bits 8 @@ -51559,7 +51781,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1788 this -1926788825 +532445947 1 this.bits 8 @@ -51572,7 +51794,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1788 this -1926788825 +532445947 1 this.bits 8 @@ -51588,7 +51810,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1789 this -1926788825 +532445947 1 this.bits 8 @@ -51601,7 +51823,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1789 this -1926788825 +532445947 1 this.bits 8 @@ -51617,7 +51839,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1790 this -1926788825 +532445947 1 this.bits 8 @@ -51630,7 +51852,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1790 this -1926788825 +532445947 1 this.bits 0 @@ -51643,7 +51865,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1791 this -1926788825 +532445947 1 this.bits 0 @@ -51656,7 +51878,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1791 this -1926788825 +532445947 1 this.bits 0 @@ -51672,7 +51894,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1792 this -1926788825 +532445947 1 this.bits 0 @@ -51685,7 +51907,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1792 this -1926788825 +532445947 1 this.bits 0 @@ -51701,7 +51923,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1793 this -1926788825 +532445947 1 this.bits 0 @@ -51714,7 +51936,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1793 this -1926788825 +532445947 1 this.bits 0 @@ -51730,7 +51952,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1794 this -1926788825 +532445947 1 this.bits 0 @@ -51743,7 +51965,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1794 this -1926788825 +532445947 1 this.bits 0 @@ -51759,7 +51981,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1795 this -1926788825 +532445947 1 this.bits 0 @@ -51772,7 +51994,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1795 this -1926788825 +532445947 1 this.bits 0 @@ -51788,7 +52010,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1796 this -1926788825 +532445947 1 this.bits 0 @@ -51801,7 +52023,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1796 this -1926788825 +532445947 1 this.bits 0 @@ -51817,7 +52039,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1797 this -1926788825 +532445947 1 this.bits 0 @@ -51830,7 +52052,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1797 this -1926788825 +532445947 1 this.bits 0 @@ -51846,7 +52068,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1798 this -1926788825 +532445947 1 this.bits 0 @@ -51859,7 +52081,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1798 this -1926788825 +532445947 1 this.bits 0 @@ -51875,7 +52097,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1799 this -1926788825 +532445947 1 this.bits 0 @@ -51888,7 +52110,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1799 this -1926788825 +532445947 1 this.bits 8 @@ -51901,7 +52123,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1800 this -1926788825 +532445947 1 this.bits 8 @@ -51914,7 +52136,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1800 this -1926788825 +532445947 1 this.bits 8 @@ -51930,7 +52152,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1801 this -1926788825 +532445947 1 this.bits 8 @@ -51943,7 +52165,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1801 this -1926788825 +532445947 1 this.bits 8 @@ -51959,7 +52181,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1802 this -1926788825 +532445947 1 this.bits 8 @@ -51972,7 +52194,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1802 this -1926788825 +532445947 1 this.bits 8 @@ -51988,7 +52210,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1803 this -1926788825 +532445947 1 this.bits 8 @@ -52001,7 +52223,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1803 this -1926788825 +532445947 1 this.bits 8 @@ -52017,7 +52239,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1804 this -1926788825 +532445947 1 this.bits 8 @@ -52030,7 +52252,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1804 this -1926788825 +532445947 1 this.bits 8 @@ -52046,7 +52268,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1805 this -1926788825 +532445947 1 this.bits 8 @@ -52059,7 +52281,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1805 this -1926788825 +532445947 1 this.bits 8 @@ -52075,7 +52297,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1806 this -1926788825 +532445947 1 this.bits 8 @@ -52088,7 +52310,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1806 this -1926788825 +532445947 1 this.bits 8 @@ -52104,7 +52326,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1807 this -1926788825 +532445947 1 this.bits 8 @@ -52117,7 +52339,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1807 this -1926788825 +532445947 1 this.bits 8 @@ -52133,7 +52355,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1808 this -1926788825 +532445947 1 this.bits 8 @@ -52146,7 +52368,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1808 this -1926788825 +532445947 1 this.bits 0 @@ -52159,7 +52381,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1809 this -1926788825 +532445947 1 this.bits 0 @@ -52172,7 +52394,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1809 this -1926788825 +532445947 1 this.bits 0 @@ -52188,7 +52410,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1810 this -1926788825 +532445947 1 this.bits 0 @@ -52201,7 +52423,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1810 this -1926788825 +532445947 1 this.bits 0 @@ -52217,7 +52439,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1811 this -1926788825 +532445947 1 this.bits 0 @@ -52230,7 +52452,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1811 this -1926788825 +532445947 1 this.bits 0 @@ -52246,7 +52468,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1812 this -1926788825 +532445947 1 this.bits 0 @@ -52259,7 +52481,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1812 this -1926788825 +532445947 1 this.bits 0 @@ -52275,7 +52497,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1813 this -1926788825 +532445947 1 this.bits 0 @@ -52288,7 +52510,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1813 this -1926788825 +532445947 1 this.bits 0 @@ -52304,7 +52526,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1814 this -1926788825 +532445947 1 this.bits 0 @@ -52317,7 +52539,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1814 this -1926788825 +532445947 1 this.bits 0 @@ -52333,7 +52555,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1815 this -1926788825 +532445947 1 this.bits 0 @@ -52346,7 +52568,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1815 this -1926788825 +532445947 1 this.bits 0 @@ -52362,7 +52584,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1816 this -1926788825 +532445947 1 this.bits 0 @@ -52375,7 +52597,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1816 this -1926788825 +532445947 1 this.bits 0 @@ -52391,7 +52613,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1817 this -1926788825 +532445947 1 this.bits 0 @@ -52404,7 +52626,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1817 this -1926788825 +532445947 1 this.bits 32 @@ -52417,7 +52639,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1818 this -1926788825 +532445947 1 this.bits 32 @@ -52430,7 +52652,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1818 this -1926788825 +532445947 1 this.bits 32 @@ -52446,7 +52668,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1819 this -1926788825 +532445947 1 this.bits 32 @@ -52459,7 +52681,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1819 this -1926788825 +532445947 1 this.bits 32 @@ -52475,7 +52697,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1820 this -1926788825 +532445947 1 this.bits 32 @@ -52488,7 +52710,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1820 this -1926788825 +532445947 1 this.bits 32 @@ -52504,7 +52726,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1821 this -1926788825 +532445947 1 this.bits 32 @@ -52517,7 +52739,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1821 this -1926788825 +532445947 1 this.bits 32 @@ -52533,7 +52755,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1822 this -1926788825 +532445947 1 this.bits 32 @@ -52546,7 +52768,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1822 this -1926788825 +532445947 1 this.bits 32 @@ -52562,7 +52784,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1823 this -1926788825 +532445947 1 this.bits 32 @@ -52575,7 +52797,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1823 this -1926788825 +532445947 1 this.bits 32 @@ -52591,7 +52813,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1824 this -1926788825 +532445947 1 this.bits 32 @@ -52604,7 +52826,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1824 this -1926788825 +532445947 1 this.bits 32 @@ -52620,7 +52842,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1825 this -1926788825 +532445947 1 this.bits 32 @@ -52633,7 +52855,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1825 this -1926788825 +532445947 1 this.bits 32 @@ -52649,7 +52871,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1826 this -1926788825 +532445947 1 this.bits 32 @@ -52662,7 +52884,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1826 this -1926788825 +532445947 1 this.bits 32 @@ -52675,7 +52897,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1827 this -1926788825 +532445947 1 this.bits 32 @@ -52688,7 +52910,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1827 this -1926788825 +532445947 1 this.bits 32 @@ -52704,7 +52926,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1828 this -1926788825 +532445947 1 this.bits 32 @@ -52717,7 +52939,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1828 this -1926788825 +532445947 1 this.bits 32 @@ -52733,7 +52955,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1829 this -1926788825 +532445947 1 this.bits 32 @@ -52746,7 +52968,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1829 this -1926788825 +532445947 1 this.bits 32 @@ -52762,7 +52984,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1830 this -1926788825 +532445947 1 this.bits 32 @@ -52775,7 +52997,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1830 this -1926788825 +532445947 1 this.bits 32 @@ -52791,7 +53013,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1831 this -1926788825 +532445947 1 this.bits 32 @@ -52804,7 +53026,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1831 this -1926788825 +532445947 1 this.bits 32 @@ -52820,7 +53042,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1832 this -1926788825 +532445947 1 this.bits 32 @@ -52833,7 +53055,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1832 this -1926788825 +532445947 1 this.bits 32 @@ -52849,7 +53071,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1833 this -1926788825 +532445947 1 this.bits 32 @@ -52862,7 +53084,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1833 this -1926788825 +532445947 1 this.bits 32 @@ -52878,7 +53100,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1834 this -1926788825 +532445947 1 this.bits 32 @@ -52891,7 +53113,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1834 this -1926788825 +532445947 1 this.bits 32 @@ -52907,7 +53129,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1835 this -1926788825 +532445947 1 this.bits 32 @@ -52920,7 +53142,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1835 this -1926788825 +532445947 1 this.bits 33 @@ -52933,7 +53155,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1836 this -1926788825 +532445947 1 this.bits 33 @@ -52946,7 +53168,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1836 this -1926788825 +532445947 1 this.bits 33 @@ -52962,7 +53184,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1837 this -1926788825 +532445947 1 this.bits 33 @@ -52975,7 +53197,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1837 this -1926788825 +532445947 1 this.bits 33 @@ -52991,7 +53213,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1838 this -1926788825 +532445947 1 this.bits 33 @@ -53004,7 +53226,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1838 this -1926788825 +532445947 1 this.bits 33 @@ -53020,7 +53242,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1839 this -1926788825 +532445947 1 this.bits 33 @@ -53033,7 +53255,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1839 this -1926788825 +532445947 1 this.bits 33 @@ -53049,7 +53271,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1840 this -1926788825 +532445947 1 this.bits 33 @@ -53062,7 +53284,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1840 this -1926788825 +532445947 1 this.bits 33 @@ -53078,7 +53300,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1841 this -1926788825 +532445947 1 this.bits 33 @@ -53091,7 +53313,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1841 this -1926788825 +532445947 1 this.bits 33 @@ -53107,7 +53329,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1842 this -1926788825 +532445947 1 this.bits 33 @@ -53120,7 +53342,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1842 this -1926788825 +532445947 1 this.bits 33 @@ -53136,7 +53358,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1843 this -1926788825 +532445947 1 this.bits 33 @@ -53149,7 +53371,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1843 this -1926788825 +532445947 1 this.bits 33 @@ -53165,7 +53387,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1844 this -1926788825 +532445947 1 this.bits 33 @@ -53178,7 +53400,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1844 this -1926788825 +532445947 1 this.bits 33 @@ -53191,7 +53413,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1845 this -1926788825 +532445947 1 this.bits 33 @@ -53204,7 +53426,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1845 this -1926788825 +532445947 1 this.bits 33 @@ -53220,7 +53442,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1846 this -1926788825 +532445947 1 this.bits 33 @@ -53233,7 +53455,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1846 this -1926788825 +532445947 1 this.bits 33 @@ -53249,7 +53471,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1847 this -1926788825 +532445947 1 this.bits 33 @@ -53262,7 +53484,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1847 this -1926788825 +532445947 1 this.bits 33 @@ -53278,7 +53500,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1848 this -1926788825 +532445947 1 this.bits 33 @@ -53291,7 +53513,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1848 this -1926788825 +532445947 1 this.bits 33 @@ -53307,7 +53529,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1849 this -1926788825 +532445947 1 this.bits 33 @@ -53320,7 +53542,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1849 this -1926788825 +532445947 1 this.bits 33 @@ -53336,7 +53558,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1850 this -1926788825 +532445947 1 this.bits 33 @@ -53349,7 +53571,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1850 this -1926788825 +532445947 1 this.bits 33 @@ -53365,7 +53587,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1851 this -1926788825 +532445947 1 this.bits 33 @@ -53378,7 +53600,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1851 this -1926788825 +532445947 1 this.bits 33 @@ -53394,7 +53616,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1852 this -1926788825 +532445947 1 this.bits 33 @@ -53407,7 +53629,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1852 this -1926788825 +532445947 1 this.bits 33 @@ -53423,7 +53645,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1853 this -1926788825 +532445947 1 this.bits 33 @@ -53436,7 +53658,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1853 this -1926788825 +532445947 1 this.bits 41 @@ -53449,7 +53671,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1854 this -1926788825 +532445947 1 this.bits 41 @@ -53462,7 +53684,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1854 this -1926788825 +532445947 1 this.bits 41 @@ -53478,7 +53700,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1855 this -1926788825 +532445947 1 this.bits 41 @@ -53491,7 +53713,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1855 this -1926788825 +532445947 1 this.bits 41 @@ -53507,7 +53729,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1856 this -1926788825 +532445947 1 this.bits 41 @@ -53520,7 +53742,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1856 this -1926788825 +532445947 1 this.bits 41 @@ -53536,7 +53758,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1857 this -1926788825 +532445947 1 this.bits 41 @@ -53549,7 +53771,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1857 this -1926788825 +532445947 1 this.bits 41 @@ -53565,7 +53787,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1858 this -1926788825 +532445947 1 this.bits 41 @@ -53578,7 +53800,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1858 this -1926788825 +532445947 1 this.bits 41 @@ -53594,7 +53816,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1859 this -1926788825 +532445947 1 this.bits 41 @@ -53607,7 +53829,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1859 this -1926788825 +532445947 1 this.bits 41 @@ -53623,7 +53845,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1860 this -1926788825 +532445947 1 this.bits 41 @@ -53636,7 +53858,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1860 this -1926788825 +532445947 1 this.bits 41 @@ -53652,7 +53874,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1861 this -1926788825 +532445947 1 this.bits 41 @@ -53665,7 +53887,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1861 this -1926788825 +532445947 1 this.bits 41 @@ -53681,7 +53903,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1862 this -1926788825 +532445947 1 this.bits 41 @@ -53694,7 +53916,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1862 this -1926788825 +532445947 1 this.bits 33 @@ -53707,7 +53929,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1863 this -1926788825 +532445947 1 this.bits 33 @@ -53720,7 +53942,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1863 this -1926788825 +532445947 1 this.bits 33 @@ -53736,7 +53958,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1864 this -1926788825 +532445947 1 this.bits 33 @@ -53749,7 +53971,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1864 this -1926788825 +532445947 1 this.bits 33 @@ -53765,7 +53987,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1865 this -1926788825 +532445947 1 this.bits 33 @@ -53778,7 +54000,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1865 this -1926788825 +532445947 1 this.bits 33 @@ -53794,7 +54016,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1866 this -1926788825 +532445947 1 this.bits 33 @@ -53807,7 +54029,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1866 this -1926788825 +532445947 1 this.bits 33 @@ -53823,7 +54045,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1867 this -1926788825 +532445947 1 this.bits 33 @@ -53836,7 +54058,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1867 this -1926788825 +532445947 1 this.bits 33 @@ -53852,7 +54074,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1868 this -1926788825 +532445947 1 this.bits 33 @@ -53865,7 +54087,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1868 this -1926788825 +532445947 1 this.bits 33 @@ -53881,7 +54103,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1869 this -1926788825 +532445947 1 this.bits 33 @@ -53894,7 +54116,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1869 this -1926788825 +532445947 1 this.bits 33 @@ -53910,7 +54132,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1870 this -1926788825 +532445947 1 this.bits 33 @@ -53923,7 +54145,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1870 this -1926788825 +532445947 1 this.bits 33 @@ -53939,7 +54161,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1871 this -1926788825 +532445947 1 this.bits 33 @@ -53952,7 +54174,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1871 this -1926788825 +532445947 1 this.bits 41 @@ -53965,7 +54187,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1872 this -1926788825 +532445947 1 this.bits 41 @@ -53978,7 +54200,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1872 this -1926788825 +532445947 1 this.bits 41 @@ -53994,7 +54216,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1873 this -1926788825 +532445947 1 this.bits 41 @@ -54007,7 +54229,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1873 this -1926788825 +532445947 1 this.bits 41 @@ -54023,7 +54245,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1874 this -1926788825 +532445947 1 this.bits 41 @@ -54036,7 +54258,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1874 this -1926788825 +532445947 1 this.bits 41 @@ -54052,7 +54274,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1875 this -1926788825 +532445947 1 this.bits 41 @@ -54065,7 +54287,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1875 this -1926788825 +532445947 1 this.bits 41 @@ -54081,7 +54303,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1876 this -1926788825 +532445947 1 this.bits 41 @@ -54094,7 +54316,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1876 this -1926788825 +532445947 1 this.bits 41 @@ -54110,7 +54332,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1877 this -1926788825 +532445947 1 this.bits 41 @@ -54123,7 +54345,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1877 this -1926788825 +532445947 1 this.bits 41 @@ -54139,7 +54361,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1878 this -1926788825 +532445947 1 this.bits 41 @@ -54152,7 +54374,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1878 this -1926788825 +532445947 1 this.bits 41 @@ -54168,7 +54390,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1879 this -1926788825 +532445947 1 this.bits 41 @@ -54181,7 +54403,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1879 this -1926788825 +532445947 1 this.bits 41 @@ -54197,7 +54419,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1880 this -1926788825 +532445947 1 this.bits 41 @@ -54210,7 +54432,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1880 this -1926788825 +532445947 1 this.bits 41 @@ -54223,7 +54445,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1881 this -1926788825 +532445947 1 this.bits 41 @@ -54236,7 +54458,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1881 this -1926788825 +532445947 1 this.bits 41 @@ -54252,7 +54474,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1882 this -1926788825 +532445947 1 this.bits 41 @@ -54265,7 +54487,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1882 this -1926788825 +532445947 1 this.bits 41 @@ -54281,7 +54503,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1883 this -1926788825 +532445947 1 this.bits 41 @@ -54294,7 +54516,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1883 this -1926788825 +532445947 1 this.bits 41 @@ -54310,7 +54532,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1884 this -1926788825 +532445947 1 this.bits 41 @@ -54323,7 +54545,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1884 this -1926788825 +532445947 1 this.bits 41 @@ -54339,7 +54561,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1885 this -1926788825 +532445947 1 this.bits 41 @@ -54352,7 +54574,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1885 this -1926788825 +532445947 1 this.bits 41 @@ -54368,7 +54590,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1886 this -1926788825 +532445947 1 this.bits 41 @@ -54381,7 +54603,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1886 this -1926788825 +532445947 1 this.bits 41 @@ -54397,7 +54619,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1887 this -1926788825 +532445947 1 this.bits 41 @@ -54410,7 +54632,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1887 this -1926788825 +532445947 1 this.bits 41 @@ -54426,7 +54648,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1888 this -1926788825 +532445947 1 this.bits 41 @@ -54439,7 +54661,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1888 this -1926788825 +532445947 1 this.bits 41 @@ -54455,7 +54677,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1889 this -1926788825 +532445947 1 this.bits 41 @@ -54468,7 +54690,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1889 this -1926788825 +532445947 1 this.bits 45 @@ -54481,7 +54703,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1890 this -1926788825 +532445947 1 this.bits 45 @@ -54494,7 +54716,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1890 this -1926788825 +532445947 1 this.bits 45 @@ -54510,7 +54732,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1891 this -1926788825 +532445947 1 this.bits 45 @@ -54523,7 +54745,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1891 this -1926788825 +532445947 1 this.bits 45 @@ -54539,7 +54761,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1892 this -1926788825 +532445947 1 this.bits 45 @@ -54552,7 +54774,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1892 this -1926788825 +532445947 1 this.bits 45 @@ -54568,7 +54790,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1893 this -1926788825 +532445947 1 this.bits 45 @@ -54581,7 +54803,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1893 this -1926788825 +532445947 1 this.bits 45 @@ -54597,7 +54819,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1894 this -1926788825 +532445947 1 this.bits 45 @@ -54610,7 +54832,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1894 this -1926788825 +532445947 1 this.bits 45 @@ -54626,7 +54848,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1895 this -1926788825 +532445947 1 this.bits 45 @@ -54639,7 +54861,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1895 this -1926788825 +532445947 1 this.bits 45 @@ -54655,7 +54877,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1896 this -1926788825 +532445947 1 this.bits 45 @@ -54668,7 +54890,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1896 this -1926788825 +532445947 1 this.bits 45 @@ -54684,7 +54906,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1897 this -1926788825 +532445947 1 this.bits 45 @@ -54697,7 +54919,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1897 this -1926788825 +532445947 1 this.bits 45 @@ -54713,7 +54935,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1898 this -1926788825 +532445947 1 this.bits 45 @@ -54726,7 +54948,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1898 this -1926788825 +532445947 1 this.bits 45 @@ -54739,7 +54961,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1899 this -1926788825 +532445947 1 this.bits 45 @@ -54752,7 +54974,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1899 this -1926788825 +532445947 1 this.bits 45 @@ -54768,7 +54990,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1900 this -1926788825 +532445947 1 this.bits 45 @@ -54781,7 +55003,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1900 this -1926788825 +532445947 1 this.bits 45 @@ -54797,7 +55019,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1901 this -1926788825 +532445947 1 this.bits 45 @@ -54810,7 +55032,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1901 this -1926788825 +532445947 1 this.bits 45 @@ -54826,7 +55048,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1902 this -1926788825 +532445947 1 this.bits 45 @@ -54839,7 +55061,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1902 this -1926788825 +532445947 1 this.bits 45 @@ -54855,7 +55077,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1903 this -1926788825 +532445947 1 this.bits 45 @@ -54868,7 +55090,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1903 this -1926788825 +532445947 1 this.bits 45 @@ -54884,7 +55106,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1904 this -1926788825 +532445947 1 this.bits 45 @@ -54897,7 +55119,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1904 this -1926788825 +532445947 1 this.bits 45 @@ -54913,7 +55135,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1905 this -1926788825 +532445947 1 this.bits 45 @@ -54926,7 +55148,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1905 this -1926788825 +532445947 1 this.bits 45 @@ -54942,7 +55164,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1906 this -1926788825 +532445947 1 this.bits 45 @@ -54955,7 +55177,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1906 this -1926788825 +532445947 1 this.bits 45 @@ -54971,7 +55193,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1907 this -1926788825 +532445947 1 this.bits 45 @@ -54984,7 +55206,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1907 this -1926788825 +532445947 1 this.bits 61 @@ -54997,7 +55219,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1908 this -1926788825 +532445947 1 this.bits 61 @@ -55010,7 +55232,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1908 this -1926788825 +532445947 1 this.bits 61 @@ -55026,7 +55248,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1909 this -1926788825 +532445947 1 this.bits 61 @@ -55039,7 +55261,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1909 this -1926788825 +532445947 1 this.bits 61 @@ -55055,7 +55277,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1910 this -1926788825 +532445947 1 this.bits 61 @@ -55068,7 +55290,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1910 this -1926788825 +532445947 1 this.bits 61 @@ -55084,7 +55306,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1911 this -1926788825 +532445947 1 this.bits 61 @@ -55097,7 +55319,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1911 this -1926788825 +532445947 1 this.bits 61 @@ -55113,7 +55335,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1912 this -1926788825 +532445947 1 this.bits 61 @@ -55126,7 +55348,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1912 this -1926788825 +532445947 1 this.bits 61 @@ -55142,7 +55364,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1913 this -1926788825 +532445947 1 this.bits 61 @@ -55155,7 +55377,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1913 this -1926788825 +532445947 1 this.bits 61 @@ -55171,7 +55393,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1914 this -1926788825 +532445947 1 this.bits 61 @@ -55184,7 +55406,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1914 this -1926788825 +532445947 1 this.bits 61 @@ -55200,7 +55422,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1915 this -1926788825 +532445947 1 this.bits 61 @@ -55213,7 +55435,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1915 this -1926788825 +532445947 1 this.bits 61 @@ -55229,7 +55451,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1916 this -1926788825 +532445947 1 this.bits 61 @@ -55242,7 +55464,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1916 this -1926788825 +532445947 1 this.bits 45 @@ -55255,7 +55477,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1917 this -1926788825 +532445947 1 this.bits 45 @@ -55268,7 +55490,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1917 this -1926788825 +532445947 1 this.bits 45 @@ -55284,7 +55506,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1918 this -1926788825 +532445947 1 this.bits 45 @@ -55297,7 +55519,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1918 this -1926788825 +532445947 1 this.bits 45 @@ -55313,7 +55535,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1919 this -1926788825 +532445947 1 this.bits 45 @@ -55326,7 +55548,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1919 this -1926788825 +532445947 1 this.bits 45 @@ -55342,7 +55564,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1920 this -1926788825 +532445947 1 this.bits 45 @@ -55355,7 +55577,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1920 this -1926788825 +532445947 1 this.bits 45 @@ -55371,7 +55593,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1921 this -1926788825 +532445947 1 this.bits 45 @@ -55384,7 +55606,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1921 this -1926788825 +532445947 1 this.bits 45 @@ -55400,7 +55622,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1922 this -1926788825 +532445947 1 this.bits 45 @@ -55413,7 +55635,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1922 this -1926788825 +532445947 1 this.bits 45 @@ -55429,7 +55651,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1923 this -1926788825 +532445947 1 this.bits 45 @@ -55442,7 +55664,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1923 this -1926788825 +532445947 1 this.bits 45 @@ -55458,7 +55680,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1924 this -1926788825 +532445947 1 this.bits 45 @@ -55471,7 +55693,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1924 this -1926788825 +532445947 1 this.bits 45 @@ -55487,7 +55709,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1925 this -1926788825 +532445947 1 this.bits 45 @@ -55500,7 +55722,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1925 this -1926788825 +532445947 1 this.bits 109 @@ -55513,7 +55735,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1926 this -1926788825 +532445947 1 this.bits 109 @@ -55526,7 +55748,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1926 this -1926788825 +532445947 1 this.bits 109 @@ -55542,7 +55764,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1927 this -1926788825 +532445947 1 this.bits 109 @@ -55555,7 +55777,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1927 this -1926788825 +532445947 1 this.bits 109 @@ -55571,7 +55793,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1928 this -1926788825 +532445947 1 this.bits 109 @@ -55584,7 +55806,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1928 this -1926788825 +532445947 1 this.bits 109 @@ -55600,7 +55822,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1929 this -1926788825 +532445947 1 this.bits 109 @@ -55613,7 +55835,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1929 this -1926788825 +532445947 1 this.bits 109 @@ -55629,7 +55851,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1930 this -1926788825 +532445947 1 this.bits 109 @@ -55642,7 +55864,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1930 this -1926788825 +532445947 1 this.bits 109 @@ -55658,7 +55880,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1931 this -1926788825 +532445947 1 this.bits 109 @@ -55671,7 +55893,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1931 this -1926788825 +532445947 1 this.bits 109 @@ -55687,7 +55909,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1932 this -1926788825 +532445947 1 this.bits 109 @@ -55700,7 +55922,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1932 this -1926788825 +532445947 1 this.bits 109 @@ -55716,7 +55938,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1933 this -1926788825 +532445947 1 this.bits 109 @@ -55729,7 +55951,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1933 this -1926788825 +532445947 1 this.bits 109 @@ -55745,7 +55967,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1934 this -1926788825 +532445947 1 this.bits 109 @@ -55758,7 +55980,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1934 this -1926788825 +532445947 1 this.bits 77 @@ -55771,7 +55993,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1935 this -1926788825 +532445947 1 this.bits 77 @@ -55784,7 +56006,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1935 this -1926788825 +532445947 1 this.bits 77 @@ -55800,7 +56022,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1936 this -1926788825 +532445947 1 this.bits 77 @@ -55813,7 +56035,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1936 this -1926788825 +532445947 1 this.bits 77 @@ -55829,7 +56051,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1937 this -1926788825 +532445947 1 this.bits 77 @@ -55842,7 +56064,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1937 this -1926788825 +532445947 1 this.bits 77 @@ -55858,7 +56080,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1938 this -1926788825 +532445947 1 this.bits 77 @@ -55871,7 +56093,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1938 this -1926788825 +532445947 1 this.bits 77 @@ -55887,7 +56109,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1939 this -1926788825 +532445947 1 this.bits 77 @@ -55900,7 +56122,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1939 this -1926788825 +532445947 1 this.bits 77 @@ -55916,7 +56138,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1940 this -1926788825 +532445947 1 this.bits 77 @@ -55929,7 +56151,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1940 this -1926788825 +532445947 1 this.bits 77 @@ -55945,7 +56167,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1941 this -1926788825 +532445947 1 this.bits 77 @@ -55958,7 +56180,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1941 this -1926788825 +532445947 1 this.bits 77 @@ -55974,7 +56196,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1942 this -1926788825 +532445947 1 this.bits 77 @@ -55987,7 +56209,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1942 this -1926788825 +532445947 1 this.bits 77 @@ -56003,7 +56225,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1943 this -1926788825 +532445947 1 this.bits 77 @@ -56016,7 +56238,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1943 this -1926788825 +532445947 1 this.bits 77 @@ -56029,7 +56251,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1944 this -1926788825 +532445947 1 this.bits 77 @@ -56042,7 +56264,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1944 this -1926788825 +532445947 1 this.bits 77 @@ -56058,7 +56280,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1945 this -1926788825 +532445947 1 this.bits 77 @@ -56071,7 +56293,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1945 this -1926788825 +532445947 1 this.bits 77 @@ -56087,7 +56309,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1946 this -1926788825 +532445947 1 this.bits 77 @@ -56100,7 +56322,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1946 this -1926788825 +532445947 1 this.bits 77 @@ -56116,7 +56338,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1947 this -1926788825 +532445947 1 this.bits 77 @@ -56129,7 +56351,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1947 this -1926788825 +532445947 1 this.bits 77 @@ -56145,7 +56367,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1948 this -1926788825 +532445947 1 this.bits 77 @@ -56158,7 +56380,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1948 this -1926788825 +532445947 1 this.bits 77 @@ -56174,7 +56396,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1949 this -1926788825 +532445947 1 this.bits 77 @@ -56187,7 +56409,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1949 this -1926788825 +532445947 1 this.bits 77 @@ -56203,7 +56425,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1950 this -1926788825 +532445947 1 this.bits 77 @@ -56216,7 +56438,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1950 this -1926788825 +532445947 1 this.bits 77 @@ -56232,7 +56454,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1951 this -1926788825 +532445947 1 this.bits 77 @@ -56245,7 +56467,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1951 this -1926788825 +532445947 1 this.bits 77 @@ -56261,7 +56483,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1952 this -1926788825 +532445947 1 this.bits 77 @@ -56274,7 +56496,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1952 this -1926788825 +532445947 1 this.bits 77 @@ -56287,7 +56509,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1953 this -1926788825 +532445947 1 this.bits 77 @@ -56300,7 +56522,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1953 this -1926788825 +532445947 1 this.bits 77 @@ -56316,7 +56538,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1954 this -1926788825 +532445947 1 this.bits 77 @@ -56329,7 +56551,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1954 this -1926788825 +532445947 1 this.bits 77 @@ -56345,7 +56567,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1955 this -1926788825 +532445947 1 this.bits 77 @@ -56358,7 +56580,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1955 this -1926788825 +532445947 1 this.bits 77 @@ -56374,7 +56596,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1956 this -1926788825 +532445947 1 this.bits 77 @@ -56387,7 +56609,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1956 this -1926788825 +532445947 1 this.bits 77 @@ -56403,7 +56625,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1957 this -1926788825 +532445947 1 this.bits 77 @@ -56416,7 +56638,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1957 this -1926788825 +532445947 1 this.bits 77 @@ -56432,7 +56654,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1958 this -1926788825 +532445947 1 this.bits 77 @@ -56445,7 +56667,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1958 this -1926788825 +532445947 1 this.bits 77 @@ -56461,7 +56683,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1959 this -1926788825 +532445947 1 this.bits 77 @@ -56474,7 +56696,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1959 this -1926788825 +532445947 1 this.bits 77 @@ -56490,7 +56712,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1960 this -1926788825 +532445947 1 this.bits 77 @@ -56503,7 +56725,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1960 this -1926788825 +532445947 1 this.bits 77 @@ -56519,7 +56741,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1961 this -1926788825 +532445947 1 this.bits 77 @@ -56532,7 +56754,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1961 this -1926788825 +532445947 1 this.bits 77 @@ -56545,7 +56767,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1962 this -1926788825 +532445947 1 this.bits 77 @@ -56558,7 +56780,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1962 this -1926788825 +532445947 1 this.bits 77 @@ -56574,7 +56796,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1963 this -1926788825 +532445947 1 this.bits 77 @@ -56587,7 +56809,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1963 this -1926788825 +532445947 1 this.bits 77 @@ -56603,7 +56825,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1964 this -1926788825 +532445947 1 this.bits 77 @@ -56616,7 +56838,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1964 this -1926788825 +532445947 1 this.bits 77 @@ -56632,7 +56854,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1965 this -1926788825 +532445947 1 this.bits 77 @@ -56645,7 +56867,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1965 this -1926788825 +532445947 1 this.bits 77 @@ -56661,7 +56883,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1966 this -1926788825 +532445947 1 this.bits 77 @@ -56674,7 +56896,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1966 this -1926788825 +532445947 1 this.bits 77 @@ -56690,7 +56912,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1967 this -1926788825 +532445947 1 this.bits 77 @@ -56703,7 +56925,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1967 this -1926788825 +532445947 1 this.bits 77 @@ -56719,7 +56941,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1968 this -1926788825 +532445947 1 this.bits 77 @@ -56732,7 +56954,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1968 this -1926788825 +532445947 1 this.bits 77 @@ -56748,7 +56970,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1969 this -1926788825 +532445947 1 this.bits 77 @@ -56761,7 +56983,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1969 this -1926788825 +532445947 1 this.bits 77 @@ -56777,7 +56999,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1970 this -1926788825 +532445947 1 this.bits 77 @@ -56790,7 +57012,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1970 this -1926788825 +532445947 1 this.bits 77 @@ -56803,7 +57025,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1971 this -1926788825 +532445947 1 this.bits 77 @@ -56816,7 +57038,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1971 this -1926788825 +532445947 1 this.bits 77 @@ -56832,7 +57054,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1972 this -1926788825 +532445947 1 this.bits 77 @@ -56845,7 +57067,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1972 this -1926788825 +532445947 1 this.bits 77 @@ -56861,7 +57083,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1973 this -1926788825 +532445947 1 this.bits 77 @@ -56874,7 +57096,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1973 this -1926788825 +532445947 1 this.bits 77 @@ -56890,7 +57112,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1974 this -1926788825 +532445947 1 this.bits 77 @@ -56903,7 +57125,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1974 this -1926788825 +532445947 1 this.bits 77 @@ -56919,7 +57141,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1975 this -1926788825 +532445947 1 this.bits 77 @@ -56932,7 +57154,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1975 this -1926788825 +532445947 1 this.bits 77 @@ -56948,7 +57170,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1976 this -1926788825 +532445947 1 this.bits 77 @@ -56961,7 +57183,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1976 this -1926788825 +532445947 1 this.bits 77 @@ -56977,7 +57199,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1977 this -1926788825 +532445947 1 this.bits 77 @@ -56990,7 +57212,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1977 this -1926788825 +532445947 1 this.bits 77 @@ -57006,7 +57228,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1978 this -1926788825 +532445947 1 this.bits 77 @@ -57019,7 +57241,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1978 this -1926788825 +532445947 1 this.bits 77 @@ -57035,7 +57257,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1979 this -1926788825 +532445947 1 this.bits 77 @@ -57048,7 +57270,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1979 this -1926788825 +532445947 1 this.bits 77 @@ -57061,7 +57283,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1980 this -1926788825 +532445947 1 this.bits 77 @@ -57074,7 +57296,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1980 this -1926788825 +532445947 1 this.bits 77 @@ -57090,7 +57312,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1981 this -1926788825 +532445947 1 this.bits 77 @@ -57103,7 +57325,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1981 this -1926788825 +532445947 1 this.bits 77 @@ -57119,7 +57341,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1982 this -1926788825 +532445947 1 this.bits 77 @@ -57132,7 +57354,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1982 this -1926788825 +532445947 1 this.bits 77 @@ -57148,7 +57370,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1983 this -1926788825 +532445947 1 this.bits 77 @@ -57161,7 +57383,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1983 this -1926788825 +532445947 1 this.bits 77 @@ -57177,7 +57399,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1984 this -1926788825 +532445947 1 this.bits 77 @@ -57190,7 +57412,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1984 this -1926788825 +532445947 1 this.bits 77 @@ -57206,7 +57428,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1985 this -1926788825 +532445947 1 this.bits 77 @@ -57219,7 +57441,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1985 this -1926788825 +532445947 1 this.bits 77 @@ -57235,7 +57457,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1986 this -1926788825 +532445947 1 this.bits 77 @@ -57248,7 +57470,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1986 this -1926788825 +532445947 1 this.bits 77 @@ -57264,7 +57486,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1987 this -1926788825 +532445947 1 this.bits 77 @@ -57277,7 +57499,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1987 this -1926788825 +532445947 1 this.bits 77 @@ -57293,7 +57515,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 1988 this -1926788825 +532445947 1 this.bits 77 @@ -57306,7 +57528,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 1988 this -1926788825 +532445947 1 this.bits 77 @@ -57319,7 +57541,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1989 this -1926788825 +532445947 1 this.bits 77 @@ -57332,7 +57554,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1989 this -1926788825 +532445947 1 this.bits 77 @@ -57348,7 +57570,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1990 this -1926788825 +532445947 1 this.bits 77 @@ -57361,7 +57583,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1990 this -1926788825 +532445947 1 this.bits 77 @@ -57377,7 +57599,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1991 this -1926788825 +532445947 1 this.bits 77 @@ -57390,7 +57612,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1991 this -1926788825 +532445947 1 this.bits 77 @@ -57406,7 +57628,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1992 this -1926788825 +532445947 1 this.bits 77 @@ -57419,7 +57641,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1992 this -1926788825 +532445947 1 this.bits 77 @@ -57435,7 +57657,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1993 this -1926788825 +532445947 1 this.bits 77 @@ -57448,7 +57670,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1993 this -1926788825 +532445947 1 this.bits 77 @@ -57464,7 +57686,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1994 this -1926788825 +532445947 1 this.bits 77 @@ -57477,7 +57699,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1994 this -1926788825 +532445947 1 this.bits 77 @@ -57493,7 +57715,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1995 this -1926788825 +532445947 1 this.bits 77 @@ -57506,7 +57728,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1995 this -1926788825 +532445947 1 this.bits 77 @@ -57522,7 +57744,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1996 this -1926788825 +532445947 1 this.bits 77 @@ -57535,7 +57757,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1996 this -1926788825 +532445947 1 this.bits 77 @@ -57551,7 +57773,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 1997 this -1926788825 +532445947 1 this.bits 77 @@ -57564,7 +57786,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 1997 this -1926788825 +532445947 1 this.bits 205 @@ -57577,7 +57799,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1998 this -1926788825 +532445947 1 this.bits 205 @@ -57590,7 +57812,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1998 this -1926788825 +532445947 1 this.bits 205 @@ -57606,7 +57828,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 1999 this -1926788825 +532445947 1 this.bits 205 @@ -57619,7 +57841,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 1999 this -1926788825 +532445947 1 this.bits 205 @@ -57635,7 +57857,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2000 this -1926788825 +532445947 1 this.bits 205 @@ -57648,7 +57870,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2000 this -1926788825 +532445947 1 this.bits 205 @@ -57664,7 +57886,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2001 this -1926788825 +532445947 1 this.bits 205 @@ -57677,7 +57899,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2001 this -1926788825 +532445947 1 this.bits 205 @@ -57693,7 +57915,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2002 this -1926788825 +532445947 1 this.bits 205 @@ -57706,7 +57928,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2002 this -1926788825 +532445947 1 this.bits 205 @@ -57722,7 +57944,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2003 this -1926788825 +532445947 1 this.bits 205 @@ -57735,7 +57957,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2003 this -1926788825 +532445947 1 this.bits 205 @@ -57751,7 +57973,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2004 this -1926788825 +532445947 1 this.bits 205 @@ -57764,7 +57986,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2004 this -1926788825 +532445947 1 this.bits 205 @@ -57780,7 +58002,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2005 this -1926788825 +532445947 1 this.bits 205 @@ -57793,7 +58015,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2005 this -1926788825 +532445947 1 this.bits 205 @@ -57809,7 +58031,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2006 this -1926788825 +532445947 1 this.bits 205 @@ -57822,7 +58044,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2006 this -1926788825 +532445947 1 this.bits 204 @@ -57835,7 +58057,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2007 this -1926788825 +532445947 1 this.bits 204 @@ -57848,7 +58070,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2007 this -1926788825 +532445947 1 this.bits 204 @@ -57864,7 +58086,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2008 this -1926788825 +532445947 1 this.bits 204 @@ -57877,7 +58099,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2008 this -1926788825 +532445947 1 this.bits 204 @@ -57893,7 +58115,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2009 this -1926788825 +532445947 1 this.bits 204 @@ -57906,7 +58128,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2009 this -1926788825 +532445947 1 this.bits 204 @@ -57922,7 +58144,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2010 this -1926788825 +532445947 1 this.bits 204 @@ -57935,7 +58157,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2010 this -1926788825 +532445947 1 this.bits 204 @@ -57951,7 +58173,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2011 this -1926788825 +532445947 1 this.bits 204 @@ -57964,7 +58186,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2011 this -1926788825 +532445947 1 this.bits 204 @@ -57980,7 +58202,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2012 this -1926788825 +532445947 1 this.bits 204 @@ -57993,7 +58215,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2012 this -1926788825 +532445947 1 this.bits 204 @@ -58009,7 +58231,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2013 this -1926788825 +532445947 1 this.bits 204 @@ -58022,7 +58244,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2013 this -1926788825 +532445947 1 this.bits 204 @@ -58038,7 +58260,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2014 this -1926788825 +532445947 1 this.bits 204 @@ -58051,7 +58273,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2014 this -1926788825 +532445947 1 this.bits 204 @@ -58067,7 +58289,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2015 this -1926788825 +532445947 1 this.bits 204 @@ -58080,7 +58302,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2015 this -1926788825 +532445947 1 this.bits 204 @@ -58093,7 +58315,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2016 this -1926788825 +532445947 1 this.bits 204 @@ -58106,7 +58328,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2016 this -1926788825 +532445947 1 this.bits 204 @@ -58122,7 +58344,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2017 this -1926788825 +532445947 1 this.bits 204 @@ -58135,7 +58357,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2017 this -1926788825 +532445947 1 this.bits 204 @@ -58151,7 +58373,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2018 this -1926788825 +532445947 1 this.bits 204 @@ -58164,7 +58386,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2018 this -1926788825 +532445947 1 this.bits 204 @@ -58180,7 +58402,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2019 this -1926788825 +532445947 1 this.bits 204 @@ -58193,7 +58415,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2019 this -1926788825 +532445947 1 this.bits 204 @@ -58209,7 +58431,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2020 this -1926788825 +532445947 1 this.bits 204 @@ -58222,7 +58444,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2020 this -1926788825 +532445947 1 this.bits 204 @@ -58238,7 +58460,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2021 this -1926788825 +532445947 1 this.bits 204 @@ -58251,7 +58473,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2021 this -1926788825 +532445947 1 this.bits 204 @@ -58267,7 +58489,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2022 this -1926788825 +532445947 1 this.bits 204 @@ -58280,7 +58502,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2022 this -1926788825 +532445947 1 this.bits 204 @@ -58296,7 +58518,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2023 this -1926788825 +532445947 1 this.bits 204 @@ -58309,7 +58531,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2023 this -1926788825 +532445947 1 this.bits 204 @@ -58325,7 +58547,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2024 this -1926788825 +532445947 1 this.bits 204 @@ -58338,7 +58560,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2024 this -1926788825 +532445947 1 this.bits 200 @@ -58351,7 +58573,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2025 this -1926788825 +532445947 1 this.bits 200 @@ -58364,7 +58586,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2025 this -1926788825 +532445947 1 this.bits 200 @@ -58380,7 +58602,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2026 this -1926788825 +532445947 1 this.bits 200 @@ -58393,7 +58615,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2026 this -1926788825 +532445947 1 this.bits 200 @@ -58409,7 +58631,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2027 this -1926788825 +532445947 1 this.bits 200 @@ -58422,7 +58644,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2027 this -1926788825 +532445947 1 this.bits 200 @@ -58438,7 +58660,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2028 this -1926788825 +532445947 1 this.bits 200 @@ -58451,7 +58673,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2028 this -1926788825 +532445947 1 this.bits 200 @@ -58467,7 +58689,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2029 this -1926788825 +532445947 1 this.bits 200 @@ -58480,7 +58702,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2029 this -1926788825 +532445947 1 this.bits 200 @@ -58496,7 +58718,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2030 this -1926788825 +532445947 1 this.bits 200 @@ -58509,7 +58731,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2030 this -1926788825 +532445947 1 this.bits 200 @@ -58525,7 +58747,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2031 this -1926788825 +532445947 1 this.bits 200 @@ -58538,7 +58760,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2031 this -1926788825 +532445947 1 this.bits 200 @@ -58554,7 +58776,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2032 this -1926788825 +532445947 1 this.bits 200 @@ -58567,7 +58789,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2032 this -1926788825 +532445947 1 this.bits 200 @@ -58583,7 +58805,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2033 this -1926788825 +532445947 1 this.bits 200 @@ -58596,7 +58818,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2033 this -1926788825 +532445947 1 this.bits 216 @@ -58609,7 +58831,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2034 this -1926788825 +532445947 1 this.bits 216 @@ -58622,7 +58844,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2034 this -1926788825 +532445947 1 this.bits 216 @@ -58638,7 +58860,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2035 this -1926788825 +532445947 1 this.bits 216 @@ -58651,7 +58873,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2035 this -1926788825 +532445947 1 this.bits 216 @@ -58667,7 +58889,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2036 this -1926788825 +532445947 1 this.bits 216 @@ -58680,7 +58902,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2036 this -1926788825 +532445947 1 this.bits 216 @@ -58696,7 +58918,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2037 this -1926788825 +532445947 1 this.bits 216 @@ -58709,7 +58931,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2037 this -1926788825 +532445947 1 this.bits 216 @@ -58725,7 +58947,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2038 this -1926788825 +532445947 1 this.bits 216 @@ -58738,7 +58960,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2038 this -1926788825 +532445947 1 this.bits 216 @@ -58754,7 +58976,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2039 this -1926788825 +532445947 1 this.bits 216 @@ -58767,7 +58989,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2039 this -1926788825 +532445947 1 this.bits 216 @@ -58783,7 +59005,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2040 this -1926788825 +532445947 1 this.bits 216 @@ -58796,7 +59018,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2040 this -1926788825 +532445947 1 this.bits 216 @@ -58812,7 +59034,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2041 this -1926788825 +532445947 1 this.bits 216 @@ -58825,7 +59047,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2041 this -1926788825 +532445947 1 this.bits 216 @@ -58841,7 +59063,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2042 this -1926788825 +532445947 1 this.bits 216 @@ -58854,7 +59076,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2042 this -1926788825 +532445947 1 this.bits 200 @@ -58867,7 +59089,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2043 this -1926788825 +532445947 1 this.bits 200 @@ -58880,7 +59102,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2043 this -1926788825 +532445947 1 this.bits 200 @@ -58896,7 +59118,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2044 this -1926788825 +532445947 1 this.bits 200 @@ -58909,7 +59131,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2044 this -1926788825 +532445947 1 this.bits 200 @@ -58925,7 +59147,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2045 this -1926788825 +532445947 1 this.bits 200 @@ -58938,7 +59160,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2045 this -1926788825 +532445947 1 this.bits 200 @@ -58954,7 +59176,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2046 this -1926788825 +532445947 1 this.bits 200 @@ -58967,7 +59189,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2046 this -1926788825 +532445947 1 this.bits 200 @@ -58983,7 +59205,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2047 this -1926788825 +532445947 1 this.bits 200 @@ -58996,7 +59218,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2047 this -1926788825 +532445947 1 this.bits 200 @@ -59012,7 +59234,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2048 this -1926788825 +532445947 1 this.bits 200 @@ -59025,7 +59247,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2048 this -1926788825 +532445947 1 this.bits 200 @@ -59041,7 +59263,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2049 this -1926788825 +532445947 1 this.bits 200 @@ -59054,7 +59276,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2049 this -1926788825 +532445947 1 this.bits 200 @@ -59070,7 +59292,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2050 this -1926788825 +532445947 1 this.bits 200 @@ -59083,7 +59305,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2050 this -1926788825 +532445947 1 this.bits 200 @@ -59099,7 +59321,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2051 this -1926788825 +532445947 1 this.bits 200 @@ -59112,7 +59334,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2051 this -1926788825 +532445947 1 this.bits 202 @@ -59125,7 +59347,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2052 this -1926788825 +532445947 1 this.bits 202 @@ -59138,7 +59360,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2052 this -1926788825 +532445947 1 this.bits 202 @@ -59154,7 +59376,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2053 this -1926788825 +532445947 1 this.bits 202 @@ -59167,7 +59389,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2053 this -1926788825 +532445947 1 this.bits 202 @@ -59183,7 +59405,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2054 this -1926788825 +532445947 1 this.bits 202 @@ -59196,7 +59418,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2054 this -1926788825 +532445947 1 this.bits 202 @@ -59212,7 +59434,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2055 this -1926788825 +532445947 1 this.bits 202 @@ -59225,7 +59447,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2055 this -1926788825 +532445947 1 this.bits 202 @@ -59241,7 +59463,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2056 this -1926788825 +532445947 1 this.bits 202 @@ -59254,7 +59476,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2056 this -1926788825 +532445947 1 this.bits 202 @@ -59270,7 +59492,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2057 this -1926788825 +532445947 1 this.bits 202 @@ -59283,7 +59505,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2057 this -1926788825 +532445947 1 this.bits 202 @@ -59299,7 +59521,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2058 this -1926788825 +532445947 1 this.bits 202 @@ -59312,7 +59534,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2058 this -1926788825 +532445947 1 this.bits 202 @@ -59328,7 +59550,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2059 this -1926788825 +532445947 1 this.bits 202 @@ -59341,7 +59563,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2059 this -1926788825 +532445947 1 this.bits 202 @@ -59357,7 +59579,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2060 this -1926788825 +532445947 1 this.bits 202 @@ -59370,7 +59592,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2060 this -1926788825 +532445947 1 this.bits 202 @@ -59383,7 +59605,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2061 this -1926788825 +532445947 1 this.bits 202 @@ -59396,7 +59618,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2061 this -1926788825 +532445947 1 this.bits 202 @@ -59412,7 +59634,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2062 this -1926788825 +532445947 1 this.bits 202 @@ -59425,7 +59647,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2062 this -1926788825 +532445947 1 this.bits 202 @@ -59441,7 +59663,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2063 this -1926788825 +532445947 1 this.bits 202 @@ -59454,7 +59676,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2063 this -1926788825 +532445947 1 this.bits 202 @@ -59470,7 +59692,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2064 this -1926788825 +532445947 1 this.bits 202 @@ -59483,7 +59705,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2064 this -1926788825 +532445947 1 this.bits 202 @@ -59499,7 +59721,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2065 this -1926788825 +532445947 1 this.bits 202 @@ -59512,7 +59734,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2065 this -1926788825 +532445947 1 this.bits 202 @@ -59528,7 +59750,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2066 this -1926788825 +532445947 1 this.bits 202 @@ -59541,7 +59763,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2066 this -1926788825 +532445947 1 this.bits 202 @@ -59557,7 +59779,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2067 this -1926788825 +532445947 1 this.bits 202 @@ -59570,7 +59792,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2067 this -1926788825 +532445947 1 this.bits 202 @@ -59586,7 +59808,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2068 this -1926788825 +532445947 1 this.bits 202 @@ -59599,7 +59821,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2068 this -1926788825 +532445947 1 this.bits 202 @@ -59615,7 +59837,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2069 this -1926788825 +532445947 1 this.bits 202 @@ -59628,7 +59850,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2069 this -1926788825 +532445947 1 this.bits 202 @@ -59641,7 +59863,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2070 this -1926788825 +532445947 1 this.bits 202 @@ -59654,7 +59876,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2070 this -1926788825 +532445947 1 this.bits 202 @@ -59670,7 +59892,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2071 this -1926788825 +532445947 1 this.bits 202 @@ -59683,7 +59905,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2071 this -1926788825 +532445947 1 this.bits 202 @@ -59699,7 +59921,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2072 this -1926788825 +532445947 1 this.bits 202 @@ -59712,7 +59934,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2072 this -1926788825 +532445947 1 this.bits 202 @@ -59728,7 +59950,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2073 this -1926788825 +532445947 1 this.bits 202 @@ -59741,7 +59963,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2073 this -1926788825 +532445947 1 this.bits 202 @@ -59757,7 +59979,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2074 this -1926788825 +532445947 1 this.bits 202 @@ -59770,7 +59992,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2074 this -1926788825 +532445947 1 this.bits 202 @@ -59786,7 +60008,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2075 this -1926788825 +532445947 1 this.bits 202 @@ -59799,7 +60021,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2075 this -1926788825 +532445947 1 this.bits 202 @@ -59815,7 +60037,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2076 this -1926788825 +532445947 1 this.bits 202 @@ -59828,7 +60050,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2076 this -1926788825 +532445947 1 this.bits 202 @@ -59844,7 +60066,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2077 this -1926788825 +532445947 1 this.bits 202 @@ -59857,7 +60079,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2077 this -1926788825 +532445947 1 this.bits 202 @@ -59873,7 +60095,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2078 this -1926788825 +532445947 1 this.bits 202 @@ -59886,7 +60108,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2078 this -1926788825 +532445947 1 this.bits 202 @@ -59899,7 +60121,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2079 this -1926788825 +532445947 1 this.bits 202 @@ -59912,7 +60134,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2079 this -1926788825 +532445947 1 this.bits 202 @@ -59928,7 +60150,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2080 this -1926788825 +532445947 1 this.bits 202 @@ -59941,7 +60163,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2080 this -1926788825 +532445947 1 this.bits 202 @@ -59957,7 +60179,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2081 this -1926788825 +532445947 1 this.bits 202 @@ -59970,7 +60192,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2081 this -1926788825 +532445947 1 this.bits 202 @@ -59986,7 +60208,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2082 this -1926788825 +532445947 1 this.bits 202 @@ -59999,7 +60221,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2082 this -1926788825 +532445947 1 this.bits 202 @@ -60015,7 +60237,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2083 this -1926788825 +532445947 1 this.bits 202 @@ -60028,7 +60250,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2083 this -1926788825 +532445947 1 this.bits 202 @@ -60044,7 +60266,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2084 this -1926788825 +532445947 1 this.bits 202 @@ -60057,7 +60279,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2084 this -1926788825 +532445947 1 this.bits 202 @@ -60073,7 +60295,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2085 this -1926788825 +532445947 1 this.bits 202 @@ -60086,7 +60308,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2085 this -1926788825 +532445947 1 this.bits 202 @@ -60102,7 +60324,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2086 this -1926788825 +532445947 1 this.bits 202 @@ -60115,7 +60337,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2086 this -1926788825 +532445947 1 this.bits 202 @@ -60131,7 +60353,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2087 this -1926788825 +532445947 1 this.bits 202 @@ -60144,7 +60366,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2087 this -1926788825 +532445947 1 this.bits 203 @@ -60157,7 +60379,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2088 this -1926788825 +532445947 1 this.bits 203 @@ -60170,7 +60392,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2088 this -1926788825 +532445947 1 this.bits 203 @@ -60186,7 +60408,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2089 this -1926788825 +532445947 1 this.bits 203 @@ -60199,7 +60421,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2089 this -1926788825 +532445947 1 this.bits 203 @@ -60215,7 +60437,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2090 this -1926788825 +532445947 1 this.bits 203 @@ -60228,7 +60450,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2090 this -1926788825 +532445947 1 this.bits 203 @@ -60244,7 +60466,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2091 this -1926788825 +532445947 1 this.bits 203 @@ -60257,7 +60479,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2091 this -1926788825 +532445947 1 this.bits 203 @@ -60273,7 +60495,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2092 this -1926788825 +532445947 1 this.bits 203 @@ -60286,7 +60508,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2092 this -1926788825 +532445947 1 this.bits 203 @@ -60302,7 +60524,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2093 this -1926788825 +532445947 1 this.bits 203 @@ -60315,7 +60537,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2093 this -1926788825 +532445947 1 this.bits 203 @@ -60331,7 +60553,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2094 this -1926788825 +532445947 1 this.bits 203 @@ -60344,7 +60566,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2094 this -1926788825 +532445947 1 this.bits 203 @@ -60360,7 +60582,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2095 this -1926788825 +532445947 1 this.bits 203 @@ -60373,7 +60595,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2095 this -1926788825 +532445947 1 this.bits 203 @@ -60389,7 +60611,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2096 this -1926788825 +532445947 1 this.bits 203 @@ -60402,7 +60624,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2096 this -1926788825 +532445947 1 this.bits 203 @@ -60415,7 +60637,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2097 this -1926788825 +532445947 1 this.bits 203 @@ -60428,7 +60650,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2097 this -1926788825 +532445947 1 this.bits 203 @@ -60444,7 +60666,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2098 this -1926788825 +532445947 1 this.bits 203 @@ -60457,7 +60679,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2098 this -1926788825 +532445947 1 this.bits 203 @@ -60473,7 +60695,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2099 this -1926788825 +532445947 1 this.bits 203 @@ -60486,7 +60708,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2099 this -1926788825 +532445947 1 this.bits 203 @@ -60502,7 +60724,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2100 this -1926788825 +532445947 1 this.bits 203 @@ -60515,7 +60737,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2100 this -1926788825 +532445947 1 this.bits 203 @@ -60531,7 +60753,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2101 this -1926788825 +532445947 1 this.bits 203 @@ -60544,7 +60766,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2101 this -1926788825 +532445947 1 this.bits 203 @@ -60560,7 +60782,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2102 this -1926788825 +532445947 1 this.bits 203 @@ -60573,7 +60795,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2102 this -1926788825 +532445947 1 this.bits 203 @@ -60589,7 +60811,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2103 this -1926788825 +532445947 1 this.bits 203 @@ -60602,7 +60824,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2103 this -1926788825 +532445947 1 this.bits 203 @@ -60618,7 +60840,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2104 this -1926788825 +532445947 1 this.bits 203 @@ -60631,7 +60853,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2104 this -1926788825 +532445947 1 this.bits 203 @@ -60647,7 +60869,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2105 this -1926788825 +532445947 1 this.bits 203 @@ -60660,7 +60882,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2105 this -1926788825 +532445947 1 this.bits 203 @@ -60673,7 +60895,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2106 this -1926788825 +532445947 1 this.bits 203 @@ -60686,7 +60908,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2106 this -1926788825 +532445947 1 this.bits 203 @@ -60702,7 +60924,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2107 this -1926788825 +532445947 1 this.bits 203 @@ -60715,7 +60937,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2107 this -1926788825 +532445947 1 this.bits 203 @@ -60731,7 +60953,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2108 this -1926788825 +532445947 1 this.bits 203 @@ -60744,7 +60966,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2108 this -1926788825 +532445947 1 this.bits 203 @@ -60760,7 +60982,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2109 this -1926788825 +532445947 1 this.bits 203 @@ -60773,7 +60995,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2109 this -1926788825 +532445947 1 this.bits 203 @@ -60789,7 +61011,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2110 this -1926788825 +532445947 1 this.bits 203 @@ -60802,7 +61024,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2110 this -1926788825 +532445947 1 this.bits 203 @@ -60818,7 +61040,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2111 this -1926788825 +532445947 1 this.bits 203 @@ -60831,7 +61053,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2111 this -1926788825 +532445947 1 this.bits 203 @@ -60847,7 +61069,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2112 this -1926788825 +532445947 1 this.bits 203 @@ -60860,7 +61082,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2112 this -1926788825 +532445947 1 this.bits 203 @@ -60876,7 +61098,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2113 this -1926788825 +532445947 1 this.bits 203 @@ -60889,7 +61111,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2113 this -1926788825 +532445947 1 this.bits 203 @@ -60905,7 +61127,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2114 this -1926788825 +532445947 1 this.bits 203 @@ -60918,7 +61140,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2114 this -1926788825 +532445947 1 this.bits 75 @@ -60931,7 +61153,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2115 this -1926788825 +532445947 1 this.bits 75 @@ -60944,7 +61166,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2115 this -1926788825 +532445947 1 this.bits 75 @@ -60960,7 +61182,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2116 this -1926788825 +532445947 1 this.bits 75 @@ -60973,7 +61195,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2116 this -1926788825 +532445947 1 this.bits 75 @@ -60989,7 +61211,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2117 this -1926788825 +532445947 1 this.bits 75 @@ -61002,7 +61224,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2117 this -1926788825 +532445947 1 this.bits 75 @@ -61018,7 +61240,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2118 this -1926788825 +532445947 1 this.bits 75 @@ -61031,7 +61253,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2118 this -1926788825 +532445947 1 this.bits 75 @@ -61047,7 +61269,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2119 this -1926788825 +532445947 1 this.bits 75 @@ -61060,7 +61282,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2119 this -1926788825 +532445947 1 this.bits 75 @@ -61076,7 +61298,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2120 this -1926788825 +532445947 1 this.bits 75 @@ -61089,7 +61311,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2120 this -1926788825 +532445947 1 this.bits 75 @@ -61105,7 +61327,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2121 this -1926788825 +532445947 1 this.bits 75 @@ -61118,7 +61340,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2121 this -1926788825 +532445947 1 this.bits 75 @@ -61134,7 +61356,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2122 this -1926788825 +532445947 1 this.bits 75 @@ -61147,7 +61369,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2122 this -1926788825 +532445947 1 this.bits 75 @@ -61163,7 +61385,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2123 this -1926788825 +532445947 1 this.bits 75 @@ -61176,7 +61398,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2123 this -1926788825 +532445947 1 this.bits 75 @@ -61189,7 +61411,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2124 this -1926788825 +532445947 1 this.bits 75 @@ -61202,7 +61424,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2124 this -1926788825 +532445947 1 this.bits 75 @@ -61218,7 +61440,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2125 this -1926788825 +532445947 1 this.bits 75 @@ -61231,7 +61453,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2125 this -1926788825 +532445947 1 this.bits 75 @@ -61247,7 +61469,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2126 this -1926788825 +532445947 1 this.bits 75 @@ -61260,7 +61482,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2126 this -1926788825 +532445947 1 this.bits 75 @@ -61276,7 +61498,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2127 this -1926788825 +532445947 1 this.bits 75 @@ -61289,7 +61511,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2127 this -1926788825 +532445947 1 this.bits 75 @@ -61305,7 +61527,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2128 this -1926788825 +532445947 1 this.bits 75 @@ -61318,7 +61540,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2128 this -1926788825 +532445947 1 this.bits 75 @@ -61334,7 +61556,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2129 this -1926788825 +532445947 1 this.bits 75 @@ -61347,7 +61569,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2129 this -1926788825 +532445947 1 this.bits 75 @@ -61363,7 +61585,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2130 this -1926788825 +532445947 1 this.bits 75 @@ -61376,7 +61598,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2130 this -1926788825 +532445947 1 this.bits 75 @@ -61392,7 +61614,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2131 this -1926788825 +532445947 1 this.bits 75 @@ -61405,7 +61627,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2131 this -1926788825 +532445947 1 this.bits 75 @@ -61421,7 +61643,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2132 this -1926788825 +532445947 1 this.bits 75 @@ -61434,7 +61656,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2132 this -1926788825 +532445947 1 this.bits 75 @@ -61447,7 +61669,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2133 this -1926788825 +532445947 1 this.bits 75 @@ -61460,7 +61682,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2133 this -1926788825 +532445947 1 this.bits 75 @@ -61476,7 +61698,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2134 this -1926788825 +532445947 1 this.bits 75 @@ -61489,7 +61711,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2134 this -1926788825 +532445947 1 this.bits 75 @@ -61505,7 +61727,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2135 this -1926788825 +532445947 1 this.bits 75 @@ -61518,7 +61740,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2135 this -1926788825 +532445947 1 this.bits 75 @@ -61534,7 +61756,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2136 this -1926788825 +532445947 1 this.bits 75 @@ -61547,7 +61769,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2136 this -1926788825 +532445947 1 this.bits 75 @@ -61563,7 +61785,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2137 this -1926788825 +532445947 1 this.bits 75 @@ -61576,7 +61798,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2137 this -1926788825 +532445947 1 this.bits 75 @@ -61592,7 +61814,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2138 this -1926788825 +532445947 1 this.bits 75 @@ -61605,7 +61827,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2138 this -1926788825 +532445947 1 this.bits 75 @@ -61621,7 +61843,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2139 this -1926788825 +532445947 1 this.bits 75 @@ -61634,7 +61856,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2139 this -1926788825 +532445947 1 this.bits 75 @@ -61650,7 +61872,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2140 this -1926788825 +532445947 1 this.bits 75 @@ -61663,7 +61885,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2140 this -1926788825 +532445947 1 this.bits 75 @@ -61679,7 +61901,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2141 this -1926788825 +532445947 1 this.bits 75 @@ -61692,7 +61914,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2141 this -1926788825 +532445947 1 this.bits 79 @@ -61705,7 +61927,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2142 this -1926788825 +532445947 1 this.bits 79 @@ -61718,7 +61940,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2142 this -1926788825 +532445947 1 this.bits 79 @@ -61734,7 +61956,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2143 this -1926788825 +532445947 1 this.bits 79 @@ -61747,7 +61969,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2143 this -1926788825 +532445947 1 this.bits 79 @@ -61763,7 +61985,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2144 this -1926788825 +532445947 1 this.bits 79 @@ -61776,7 +61998,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2144 this -1926788825 +532445947 1 this.bits 79 @@ -61792,7 +62014,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2145 this -1926788825 +532445947 1 this.bits 79 @@ -61805,7 +62027,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2145 this -1926788825 +532445947 1 this.bits 79 @@ -61821,7 +62043,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2146 this -1926788825 +532445947 1 this.bits 79 @@ -61834,7 +62056,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2146 this -1926788825 +532445947 1 this.bits 79 @@ -61850,7 +62072,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2147 this -1926788825 +532445947 1 this.bits 79 @@ -61863,7 +62085,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2147 this -1926788825 +532445947 1 this.bits 79 @@ -61879,7 +62101,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2148 this -1926788825 +532445947 1 this.bits 79 @@ -61892,7 +62114,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2148 this -1926788825 +532445947 1 this.bits 79 @@ -61908,7 +62130,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2149 this -1926788825 +532445947 1 this.bits 79 @@ -61921,7 +62143,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2149 this -1926788825 +532445947 1 this.bits 79 @@ -61937,7 +62159,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2150 this -1926788825 +532445947 1 this.bits 79 @@ -61950,7 +62172,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2150 this -1926788825 +532445947 1 this.bits 71 @@ -61963,7 +62185,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2151 this -1926788825 +532445947 1 this.bits 71 @@ -61976,7 +62198,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2151 this -1926788825 +532445947 1 this.bits 71 @@ -61992,7 +62214,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2152 this -1926788825 +532445947 1 this.bits 71 @@ -62005,7 +62227,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2152 this -1926788825 +532445947 1 this.bits 71 @@ -62021,7 +62243,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2153 this -1926788825 +532445947 1 this.bits 71 @@ -62034,7 +62256,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2153 this -1926788825 +532445947 1 this.bits 71 @@ -62050,7 +62272,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2154 this -1926788825 +532445947 1 this.bits 71 @@ -62063,7 +62285,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2154 this -1926788825 +532445947 1 this.bits 71 @@ -62079,7 +62301,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2155 this -1926788825 +532445947 1 this.bits 71 @@ -62092,7 +62314,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2155 this -1926788825 +532445947 1 this.bits 71 @@ -62108,7 +62330,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2156 this -1926788825 +532445947 1 this.bits 71 @@ -62121,7 +62343,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2156 this -1926788825 +532445947 1 this.bits 71 @@ -62137,7 +62359,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2157 this -1926788825 +532445947 1 this.bits 71 @@ -62150,7 +62372,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2157 this -1926788825 +532445947 1 this.bits 71 @@ -62166,7 +62388,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2158 this -1926788825 +532445947 1 this.bits 71 @@ -62179,7 +62401,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2158 this -1926788825 +532445947 1 this.bits 71 @@ -62195,7 +62417,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2159 this -1926788825 +532445947 1 this.bits 71 @@ -62208,7 +62430,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2159 this -1926788825 +532445947 1 this.bits 71 @@ -62221,7 +62443,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2160 this -1926788825 +532445947 1 this.bits 71 @@ -62234,7 +62456,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2160 this -1926788825 +532445947 1 this.bits 71 @@ -62250,7 +62472,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2161 this -1926788825 +532445947 1 this.bits 71 @@ -62263,7 +62485,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2161 this -1926788825 +532445947 1 this.bits 71 @@ -62279,7 +62501,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2162 this -1926788825 +532445947 1 this.bits 71 @@ -62292,7 +62514,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2162 this -1926788825 +532445947 1 this.bits 71 @@ -62308,7 +62530,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2163 this -1926788825 +532445947 1 this.bits 71 @@ -62321,7 +62543,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2163 this -1926788825 +532445947 1 this.bits 71 @@ -62337,7 +62559,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2164 this -1926788825 +532445947 1 this.bits 71 @@ -62350,7 +62572,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2164 this -1926788825 +532445947 1 this.bits 71 @@ -62366,7 +62588,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2165 this -1926788825 +532445947 1 this.bits 71 @@ -62379,7 +62601,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2165 this -1926788825 +532445947 1 this.bits 71 @@ -62395,7 +62617,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2166 this -1926788825 +532445947 1 this.bits 71 @@ -62408,7 +62630,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2166 this -1926788825 +532445947 1 this.bits 71 @@ -62424,7 +62646,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2167 this -1926788825 +532445947 1 this.bits 71 @@ -62437,7 +62659,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2167 this -1926788825 +532445947 1 this.bits 71 @@ -62453,7 +62675,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2168 this -1926788825 +532445947 1 this.bits 71 @@ -62466,7 +62688,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2168 this -1926788825 +532445947 1 this.bits 71 @@ -62479,7 +62701,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2169 this -1926788825 +532445947 1 this.bits 71 @@ -62492,7 +62714,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2169 this -1926788825 +532445947 1 this.bits 71 @@ -62508,7 +62730,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2170 this -1926788825 +532445947 1 this.bits 71 @@ -62521,7 +62743,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2170 this -1926788825 +532445947 1 this.bits 71 @@ -62537,7 +62759,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2171 this -1926788825 +532445947 1 this.bits 71 @@ -62550,7 +62772,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2171 this -1926788825 +532445947 1 this.bits 71 @@ -62566,7 +62788,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2172 this -1926788825 +532445947 1 this.bits 71 @@ -62579,7 +62801,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2172 this -1926788825 +532445947 1 this.bits 71 @@ -62595,7 +62817,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2173 this -1926788825 +532445947 1 this.bits 71 @@ -62608,7 +62830,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2173 this -1926788825 +532445947 1 this.bits 71 @@ -62624,7 +62846,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2174 this -1926788825 +532445947 1 this.bits 71 @@ -62637,7 +62859,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2174 this -1926788825 +532445947 1 this.bits 71 @@ -62653,7 +62875,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2175 this -1926788825 +532445947 1 this.bits 71 @@ -62666,7 +62888,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2175 this -1926788825 +532445947 1 this.bits 71 @@ -62682,7 +62904,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2176 this -1926788825 +532445947 1 this.bits 71 @@ -62695,7 +62917,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2176 this -1926788825 +532445947 1 this.bits 71 @@ -62711,7 +62933,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2177 this -1926788825 +532445947 1 this.bits 71 @@ -62724,7 +62946,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2177 this -1926788825 +532445947 1 this.bits 71 @@ -62737,7 +62959,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2178 this -1926788825 +532445947 1 this.bits 71 @@ -62750,7 +62972,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2178 this -1926788825 +532445947 1 this.bits 71 @@ -62766,7 +62988,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2179 this -1926788825 +532445947 1 this.bits 71 @@ -62779,7 +63001,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2179 this -1926788825 +532445947 1 this.bits 71 @@ -62795,7 +63017,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2180 this -1926788825 +532445947 1 this.bits 71 @@ -62808,7 +63030,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2180 this -1926788825 +532445947 1 this.bits 71 @@ -62824,7 +63046,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2181 this -1926788825 +532445947 1 this.bits 71 @@ -62837,7 +63059,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2181 this -1926788825 +532445947 1 this.bits 71 @@ -62853,7 +63075,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2182 this -1926788825 +532445947 1 this.bits 71 @@ -62866,7 +63088,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2182 this -1926788825 +532445947 1 this.bits 71 @@ -62882,7 +63104,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2183 this -1926788825 +532445947 1 this.bits 71 @@ -62895,7 +63117,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2183 this -1926788825 +532445947 1 this.bits 71 @@ -62911,7 +63133,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2184 this -1926788825 +532445947 1 this.bits 71 @@ -62924,7 +63146,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2184 this -1926788825 +532445947 1 this.bits 71 @@ -62940,7 +63162,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2185 this -1926788825 +532445947 1 this.bits 71 @@ -62953,7 +63175,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2185 this -1926788825 +532445947 1 this.bits 71 @@ -62969,7 +63191,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2186 this -1926788825 +532445947 1 this.bits 71 @@ -62982,7 +63204,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2186 this -1926788825 +532445947 1 this.bits 67 @@ -62995,7 +63217,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2187 this -1926788825 +532445947 1 this.bits 67 @@ -63008,7 +63230,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2187 this -1926788825 +532445947 1 this.bits 67 @@ -63024,7 +63246,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2188 this -1926788825 +532445947 1 this.bits 67 @@ -63037,7 +63259,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2188 this -1926788825 +532445947 1 this.bits 67 @@ -63053,7 +63275,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2189 this -1926788825 +532445947 1 this.bits 67 @@ -63066,7 +63288,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2189 this -1926788825 +532445947 1 this.bits 67 @@ -63082,7 +63304,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2190 this -1926788825 +532445947 1 this.bits 67 @@ -63095,7 +63317,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2190 this -1926788825 +532445947 1 this.bits 67 @@ -63111,7 +63333,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2191 this -1926788825 +532445947 1 this.bits 67 @@ -63124,7 +63346,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2191 this -1926788825 +532445947 1 this.bits 67 @@ -63140,7 +63362,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2192 this -1926788825 +532445947 1 this.bits 67 @@ -63153,7 +63375,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2192 this -1926788825 +532445947 1 this.bits 67 @@ -63169,7 +63391,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2193 this -1926788825 +532445947 1 this.bits 67 @@ -63182,7 +63404,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2193 this -1926788825 +532445947 1 this.bits 67 @@ -63198,7 +63420,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2194 this -1926788825 +532445947 1 this.bits 67 @@ -63211,7 +63433,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2194 this -1926788825 +532445947 1 this.bits 67 @@ -63227,7 +63449,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2195 this -1926788825 +532445947 1 this.bits 67 @@ -63240,7 +63462,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2195 this -1926788825 +532445947 1 this.bits 195 @@ -63253,7 +63475,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2196 this -1926788825 +532445947 1 this.bits 195 @@ -63266,7 +63488,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2196 this -1926788825 +532445947 1 this.bits 195 @@ -63282,7 +63504,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2197 this -1926788825 +532445947 1 this.bits 195 @@ -63295,7 +63517,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2197 this -1926788825 +532445947 1 this.bits 195 @@ -63311,7 +63533,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2198 this -1926788825 +532445947 1 this.bits 195 @@ -63324,7 +63546,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2198 this -1926788825 +532445947 1 this.bits 195 @@ -63340,7 +63562,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2199 this -1926788825 +532445947 1 this.bits 195 @@ -63353,7 +63575,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2199 this -1926788825 +532445947 1 this.bits 195 @@ -63369,7 +63591,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2200 this -1926788825 +532445947 1 this.bits 195 @@ -63382,7 +63604,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2200 this -1926788825 +532445947 1 this.bits 195 @@ -63398,7 +63620,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2201 this -1926788825 +532445947 1 this.bits 195 @@ -63411,7 +63633,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2201 this -1926788825 +532445947 1 this.bits 195 @@ -63427,7 +63649,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2202 this -1926788825 +532445947 1 this.bits 195 @@ -63440,7 +63662,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2202 this -1926788825 +532445947 1 this.bits 195 @@ -63456,7 +63678,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2203 this -1926788825 +532445947 1 this.bits 195 @@ -63469,7 +63691,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2203 this -1926788825 +532445947 1 this.bits 195 @@ -63485,7 +63707,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2204 this -1926788825 +532445947 1 this.bits 195 @@ -63498,7 +63720,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2204 this -1926788825 +532445947 1 this.bits 195 @@ -63511,7 +63733,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2205 this -1926788825 +532445947 1 this.bits 195 @@ -63524,7 +63746,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2205 this -1926788825 +532445947 1 this.bits 195 @@ -63540,7 +63762,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2206 this -1926788825 +532445947 1 this.bits 195 @@ -63553,7 +63775,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2206 this -1926788825 +532445947 1 this.bits 195 @@ -63569,7 +63791,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2207 this -1926788825 +532445947 1 this.bits 195 @@ -63582,7 +63804,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2207 this -1926788825 +532445947 1 this.bits 195 @@ -63598,7 +63820,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2208 this -1926788825 +532445947 1 this.bits 195 @@ -63611,7 +63833,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2208 this -1926788825 +532445947 1 this.bits 195 @@ -63627,7 +63849,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2209 this -1926788825 +532445947 1 this.bits 195 @@ -63640,7 +63862,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2209 this -1926788825 +532445947 1 this.bits 195 @@ -63656,7 +63878,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2210 this -1926788825 +532445947 1 this.bits 195 @@ -63669,7 +63891,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2210 this -1926788825 +532445947 1 this.bits 195 @@ -63685,7 +63907,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2211 this -1926788825 +532445947 1 this.bits 195 @@ -63698,7 +63920,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2211 this -1926788825 +532445947 1 this.bits 195 @@ -63714,7 +63936,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2212 this -1926788825 +532445947 1 this.bits 195 @@ -63727,7 +63949,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2212 this -1926788825 +532445947 1 this.bits 195 @@ -63743,7 +63965,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2213 this -1926788825 +532445947 1 this.bits 195 @@ -63756,7 +63978,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2213 this -1926788825 +532445947 1 this.bits 203 @@ -63769,7 +63991,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2214 this -1926788825 +532445947 1 this.bits 203 @@ -63782,7 +64004,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2214 this -1926788825 +532445947 1 this.bits 203 @@ -63798,7 +64020,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2215 this -1926788825 +532445947 1 this.bits 203 @@ -63811,7 +64033,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2215 this -1926788825 +532445947 1 this.bits 203 @@ -63827,7 +64049,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2216 this -1926788825 +532445947 1 this.bits 203 @@ -63840,7 +64062,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2216 this -1926788825 +532445947 1 this.bits 203 @@ -63856,7 +64078,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2217 this -1926788825 +532445947 1 this.bits 203 @@ -63869,7 +64091,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2217 this -1926788825 +532445947 1 this.bits 203 @@ -63885,7 +64107,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2218 this -1926788825 +532445947 1 this.bits 203 @@ -63898,7 +64120,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2218 this -1926788825 +532445947 1 this.bits 203 @@ -63914,7 +64136,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2219 this -1926788825 +532445947 1 this.bits 203 @@ -63927,7 +64149,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2219 this -1926788825 +532445947 1 this.bits 203 @@ -63943,7 +64165,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2220 this -1926788825 +532445947 1 this.bits 203 @@ -63956,7 +64178,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2220 this -1926788825 +532445947 1 this.bits 203 @@ -63972,7 +64194,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2221 this -1926788825 +532445947 1 this.bits 203 @@ -63985,7 +64207,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2221 this -1926788825 +532445947 1 this.bits 203 @@ -64001,7 +64223,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2222 this -1926788825 +532445947 1 this.bits 203 @@ -64014,7 +64236,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2222 this -1926788825 +532445947 1 this.bits 203 @@ -64027,7 +64249,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2223 this -1926788825 +532445947 1 this.bits 203 @@ -64040,7 +64262,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2223 this -1926788825 +532445947 1 this.bits 203 @@ -64056,7 +64278,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2224 this -1926788825 +532445947 1 this.bits 203 @@ -64069,7 +64291,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2224 this -1926788825 +532445947 1 this.bits 203 @@ -64085,7 +64307,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2225 this -1926788825 +532445947 1 this.bits 203 @@ -64098,7 +64320,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2225 this -1926788825 +532445947 1 this.bits 203 @@ -64114,7 +64336,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2226 this -1926788825 +532445947 1 this.bits 203 @@ -64127,7 +64349,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2226 this -1926788825 +532445947 1 this.bits 203 @@ -64143,7 +64365,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2227 this -1926788825 +532445947 1 this.bits 203 @@ -64156,7 +64378,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2227 this -1926788825 +532445947 1 this.bits 203 @@ -64172,7 +64394,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2228 this -1926788825 +532445947 1 this.bits 203 @@ -64185,7 +64407,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2228 this -1926788825 +532445947 1 this.bits 203 @@ -64201,7 +64423,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2229 this -1926788825 +532445947 1 this.bits 203 @@ -64214,7 +64436,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2229 this -1926788825 +532445947 1 this.bits 203 @@ -64230,7 +64452,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2230 this -1926788825 +532445947 1 this.bits 203 @@ -64243,7 +64465,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2230 this -1926788825 +532445947 1 this.bits 203 @@ -64259,7 +64481,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2231 this -1926788825 +532445947 1 this.bits 203 @@ -64272,7 +64494,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2231 this -1926788825 +532445947 1 this.bits 207 @@ -64285,7 +64507,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2232 this -1926788825 +532445947 1 this.bits 207 @@ -64298,7 +64520,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2232 this -1926788825 +532445947 1 this.bits 207 @@ -64314,7 +64536,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2233 this -1926788825 +532445947 1 this.bits 207 @@ -64327,7 +64549,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2233 this -1926788825 +532445947 1 this.bits 207 @@ -64343,7 +64565,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2234 this -1926788825 +532445947 1 this.bits 207 @@ -64356,7 +64578,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2234 this -1926788825 +532445947 1 this.bits 207 @@ -64372,7 +64594,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2235 this -1926788825 +532445947 1 this.bits 207 @@ -64385,7 +64607,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2235 this -1926788825 +532445947 1 this.bits 207 @@ -64401,7 +64623,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2236 this -1926788825 +532445947 1 this.bits 207 @@ -64414,7 +64636,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2236 this -1926788825 +532445947 1 this.bits 207 @@ -64430,7 +64652,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2237 this -1926788825 +532445947 1 this.bits 207 @@ -64443,7 +64665,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2237 this -1926788825 +532445947 1 this.bits 207 @@ -64459,7 +64681,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2238 this -1926788825 +532445947 1 this.bits 207 @@ -64472,7 +64694,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2238 this -1926788825 +532445947 1 this.bits 207 @@ -64488,7 +64710,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2239 this -1926788825 +532445947 1 this.bits 207 @@ -64501,7 +64723,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2239 this -1926788825 +532445947 1 this.bits 207 @@ -64517,7 +64739,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2240 this -1926788825 +532445947 1 this.bits 207 @@ -64530,7 +64752,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2240 this -1926788825 +532445947 1 this.bits 205 @@ -64543,7 +64765,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2241 this -1926788825 +532445947 1 this.bits 205 @@ -64556,7 +64778,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2241 this -1926788825 +532445947 1 this.bits 205 @@ -64572,7 +64794,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2242 this -1926788825 +532445947 1 this.bits 205 @@ -64585,7 +64807,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2242 this -1926788825 +532445947 1 this.bits 205 @@ -64601,7 +64823,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2243 this -1926788825 +532445947 1 this.bits 205 @@ -64614,7 +64836,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2243 this -1926788825 +532445947 1 this.bits 205 @@ -64630,7 +64852,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2244 this -1926788825 +532445947 1 this.bits 205 @@ -64643,7 +64865,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2244 this -1926788825 +532445947 1 this.bits 205 @@ -64659,7 +64881,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2245 this -1926788825 +532445947 1 this.bits 205 @@ -64672,7 +64894,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2245 this -1926788825 +532445947 1 this.bits 205 @@ -64688,7 +64910,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2246 this -1926788825 +532445947 1 this.bits 205 @@ -64701,7 +64923,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2246 this -1926788825 +532445947 1 this.bits 205 @@ -64717,7 +64939,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2247 this -1926788825 +532445947 1 this.bits 205 @@ -64730,7 +64952,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2247 this -1926788825 +532445947 1 this.bits 205 @@ -64746,7 +64968,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2248 this -1926788825 +532445947 1 this.bits 205 @@ -64759,7 +64981,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2248 this -1926788825 +532445947 1 this.bits 205 @@ -64775,7 +64997,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2249 this -1926788825 +532445947 1 this.bits 205 @@ -64788,7 +65010,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2249 this -1926788825 +532445947 1 this.bits 205 @@ -64801,7 +65023,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2250 this -1926788825 +532445947 1 this.bits 205 @@ -64814,7 +65036,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2250 this -1926788825 +532445947 1 this.bits 205 @@ -64830,7 +65052,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2251 this -1926788825 +532445947 1 this.bits 205 @@ -64843,7 +65065,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2251 this -1926788825 +532445947 1 this.bits 205 @@ -64859,7 +65081,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2252 this -1926788825 +532445947 1 this.bits 205 @@ -64872,7 +65094,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2252 this -1926788825 +532445947 1 this.bits 205 @@ -64888,7 +65110,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2253 this -1926788825 +532445947 1 this.bits 205 @@ -64901,7 +65123,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2253 this -1926788825 +532445947 1 this.bits 205 @@ -64917,7 +65139,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2254 this -1926788825 +532445947 1 this.bits 205 @@ -64930,7 +65152,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2254 this -1926788825 +532445947 1 this.bits 205 @@ -64946,7 +65168,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2255 this -1926788825 +532445947 1 this.bits 205 @@ -64959,7 +65181,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2255 this -1926788825 +532445947 1 this.bits 205 @@ -64975,7 +65197,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2256 this -1926788825 +532445947 1 this.bits 205 @@ -64988,7 +65210,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2256 this -1926788825 +532445947 1 this.bits 205 @@ -65004,7 +65226,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2257 this -1926788825 +532445947 1 this.bits 205 @@ -65017,7 +65239,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2257 this -1926788825 +532445947 1 this.bits 205 @@ -65033,7 +65255,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2258 this -1926788825 +532445947 1 this.bits 205 @@ -65046,7 +65268,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2258 this -1926788825 +532445947 1 this.bits 205 @@ -65059,7 +65281,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2259 this -1926788825 +532445947 1 this.bits 205 @@ -65072,7 +65294,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2259 this -1926788825 +532445947 1 this.bits 205 @@ -65088,7 +65310,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2260 this -1926788825 +532445947 1 this.bits 205 @@ -65101,7 +65323,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2260 this -1926788825 +532445947 1 this.bits 205 @@ -65117,7 +65339,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2261 this -1926788825 +532445947 1 this.bits 205 @@ -65130,7 +65352,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2261 this -1926788825 +532445947 1 this.bits 205 @@ -65146,7 +65368,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2262 this -1926788825 +532445947 1 this.bits 205 @@ -65159,7 +65381,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2262 this -1926788825 +532445947 1 this.bits 205 @@ -65175,7 +65397,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2263 this -1926788825 +532445947 1 this.bits 205 @@ -65188,7 +65410,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2263 this -1926788825 +532445947 1 this.bits 205 @@ -65204,7 +65426,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2264 this -1926788825 +532445947 1 this.bits 205 @@ -65217,7 +65439,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2264 this -1926788825 +532445947 1 this.bits 205 @@ -65233,7 +65455,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2265 this -1926788825 +532445947 1 this.bits 205 @@ -65246,7 +65468,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2265 this -1926788825 +532445947 1 this.bits 205 @@ -65262,7 +65484,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2266 this -1926788825 +532445947 1 this.bits 205 @@ -65275,7 +65497,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2266 this -1926788825 +532445947 1 this.bits 205 @@ -65291,7 +65513,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2267 this -1926788825 +532445947 1 this.bits 205 @@ -65304,7 +65526,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2267 this -1926788825 +532445947 1 this.bits 221 @@ -65317,7 +65539,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2268 this -1926788825 +532445947 1 this.bits 221 @@ -65330,7 +65552,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2268 this -1926788825 +532445947 1 this.bits 221 @@ -65346,7 +65568,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2269 this -1926788825 +532445947 1 this.bits 221 @@ -65359,7 +65581,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2269 this -1926788825 +532445947 1 this.bits 221 @@ -65375,7 +65597,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2270 this -1926788825 +532445947 1 this.bits 221 @@ -65388,7 +65610,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2270 this -1926788825 +532445947 1 this.bits 221 @@ -65404,7 +65626,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2271 this -1926788825 +532445947 1 this.bits 221 @@ -65417,7 +65639,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2271 this -1926788825 +532445947 1 this.bits 221 @@ -65433,7 +65655,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2272 this -1926788825 +532445947 1 this.bits 221 @@ -65446,7 +65668,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2272 this -1926788825 +532445947 1 this.bits 221 @@ -65462,7 +65684,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2273 this -1926788825 +532445947 1 this.bits 221 @@ -65475,7 +65697,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2273 this -1926788825 +532445947 1 this.bits 221 @@ -65491,7 +65713,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2274 this -1926788825 +532445947 1 this.bits 221 @@ -65504,7 +65726,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2274 this -1926788825 +532445947 1 this.bits 221 @@ -65520,7 +65742,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2275 this -1926788825 +532445947 1 this.bits 221 @@ -65533,7 +65755,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2275 this -1926788825 +532445947 1 this.bits 221 @@ -65549,7 +65771,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2276 this -1926788825 +532445947 1 this.bits 221 @@ -65562,7 +65784,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2276 this -1926788825 +532445947 1 this.bits 221 @@ -65575,7 +65797,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2277 this -1926788825 +532445947 1 this.bits 221 @@ -65588,7 +65810,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2277 this -1926788825 +532445947 1 this.bits 221 @@ -65604,7 +65826,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2278 this -1926788825 +532445947 1 this.bits 221 @@ -65617,7 +65839,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2278 this -1926788825 +532445947 1 this.bits 221 @@ -65633,7 +65855,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2279 this -1926788825 +532445947 1 this.bits 221 @@ -65646,7 +65868,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2279 this -1926788825 +532445947 1 this.bits 221 @@ -65662,7 +65884,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2280 this -1926788825 +532445947 1 this.bits 221 @@ -65675,7 +65897,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2280 this -1926788825 +532445947 1 this.bits 221 @@ -65691,7 +65913,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2281 this -1926788825 +532445947 1 this.bits 221 @@ -65704,7 +65926,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2281 this -1926788825 +532445947 1 this.bits 221 @@ -65720,7 +65942,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2282 this -1926788825 +532445947 1 this.bits 221 @@ -65733,7 +65955,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2282 this -1926788825 +532445947 1 this.bits 221 @@ -65749,7 +65971,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2283 this -1926788825 +532445947 1 this.bits 221 @@ -65762,7 +65984,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2283 this -1926788825 +532445947 1 this.bits 221 @@ -65778,7 +66000,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2284 this -1926788825 +532445947 1 this.bits 221 @@ -65791,7 +66013,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2284 this -1926788825 +532445947 1 this.bits 221 @@ -65807,7 +66029,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2285 this -1926788825 +532445947 1 this.bits 221 @@ -65820,7 +66042,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2285 this -1926788825 +532445947 1 this.bits 221 @@ -65833,7 +66055,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2286 this -1926788825 +532445947 1 this.bits 221 @@ -65846,7 +66068,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2286 this -1926788825 +532445947 1 this.bits 221 @@ -65862,7 +66084,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2287 this -1926788825 +532445947 1 this.bits 221 @@ -65875,7 +66097,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2287 this -1926788825 +532445947 1 this.bits 221 @@ -65891,7 +66113,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2288 this -1926788825 +532445947 1 this.bits 221 @@ -65904,7 +66126,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2288 this -1926788825 +532445947 1 this.bits 221 @@ -65920,7 +66142,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2289 this -1926788825 +532445947 1 this.bits 221 @@ -65933,7 +66155,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2289 this -1926788825 +532445947 1 this.bits 221 @@ -65949,7 +66171,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2290 this -1926788825 +532445947 1 this.bits 221 @@ -65962,7 +66184,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2290 this -1926788825 +532445947 1 this.bits 221 @@ -65978,7 +66200,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2291 this -1926788825 +532445947 1 this.bits 221 @@ -65991,7 +66213,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2291 this -1926788825 +532445947 1 this.bits 221 @@ -66007,7 +66229,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2292 this -1926788825 +532445947 1 this.bits 221 @@ -66020,7 +66242,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2292 this -1926788825 +532445947 1 this.bits 221 @@ -66036,7 +66258,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2293 this -1926788825 +532445947 1 this.bits 221 @@ -66049,7 +66271,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2293 this -1926788825 +532445947 1 this.bits 221 @@ -66065,7 +66287,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2294 this -1926788825 +532445947 1 this.bits 221 @@ -66078,7 +66300,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2294 this -1926788825 +532445947 1 this.bits 217 @@ -66091,7 +66313,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2295 this -1926788825 +532445947 1 this.bits 217 @@ -66104,7 +66326,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2295 this -1926788825 +532445947 1 this.bits 217 @@ -66120,7 +66342,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2296 this -1926788825 +532445947 1 this.bits 217 @@ -66133,7 +66355,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2296 this -1926788825 +532445947 1 this.bits 217 @@ -66149,7 +66371,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2297 this -1926788825 +532445947 1 this.bits 217 @@ -66162,7 +66384,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2297 this -1926788825 +532445947 1 this.bits 217 @@ -66178,7 +66400,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2298 this -1926788825 +532445947 1 this.bits 217 @@ -66191,7 +66413,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2298 this -1926788825 +532445947 1 this.bits 217 @@ -66207,7 +66429,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2299 this -1926788825 +532445947 1 this.bits 217 @@ -66220,7 +66442,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2299 this -1926788825 +532445947 1 this.bits 217 @@ -66236,7 +66458,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2300 this -1926788825 +532445947 1 this.bits 217 @@ -66249,7 +66471,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2300 this -1926788825 +532445947 1 this.bits 217 @@ -66265,7 +66487,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2301 this -1926788825 +532445947 1 this.bits 217 @@ -66278,7 +66500,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2301 this -1926788825 +532445947 1 this.bits 217 @@ -66294,7 +66516,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2302 this -1926788825 +532445947 1 this.bits 217 @@ -66307,7 +66529,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2302 this -1926788825 +532445947 1 this.bits 217 @@ -66323,7 +66545,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2303 this -1926788825 +532445947 1 this.bits 217 @@ -66336,7 +66558,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2303 this -1926788825 +532445947 1 this.bits 221 @@ -66349,7 +66571,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2304 this -1926788825 +532445947 1 this.bits 221 @@ -66362,7 +66584,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2304 this -1926788825 +532445947 1 this.bits 221 @@ -66378,7 +66600,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2305 this -1926788825 +532445947 1 this.bits 221 @@ -66391,7 +66613,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2305 this -1926788825 +532445947 1 this.bits 221 @@ -66407,7 +66629,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2306 this -1926788825 +532445947 1 this.bits 221 @@ -66420,7 +66642,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2306 this -1926788825 +532445947 1 this.bits 221 @@ -66436,7 +66658,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2307 this -1926788825 +532445947 1 this.bits 221 @@ -66449,7 +66671,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2307 this -1926788825 +532445947 1 this.bits 221 @@ -66465,7 +66687,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2308 this -1926788825 +532445947 1 this.bits 221 @@ -66478,7 +66700,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2308 this -1926788825 +532445947 1 this.bits 221 @@ -66494,7 +66716,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2309 this -1926788825 +532445947 1 this.bits 221 @@ -66507,7 +66729,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2309 this -1926788825 +532445947 1 this.bits 221 @@ -66523,7 +66745,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2310 this -1926788825 +532445947 1 this.bits 221 @@ -66536,7 +66758,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2310 this -1926788825 +532445947 1 this.bits 221 @@ -66552,7 +66774,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2311 this -1926788825 +532445947 1 this.bits 221 @@ -66565,7 +66787,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2311 this -1926788825 +532445947 1 this.bits 221 @@ -66581,7 +66803,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2312 this -1926788825 +532445947 1 this.bits 221 @@ -66594,7 +66816,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2312 this -1926788825 +532445947 1 this.bits 213 @@ -66607,7 +66829,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2313 this -1926788825 +532445947 1 this.bits 213 @@ -66620,7 +66842,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2313 this -1926788825 +532445947 1 this.bits 213 @@ -66636,7 +66858,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2314 this -1926788825 +532445947 1 this.bits 213 @@ -66649,7 +66871,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2314 this -1926788825 +532445947 1 this.bits 213 @@ -66665,7 +66887,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2315 this -1926788825 +532445947 1 this.bits 213 @@ -66678,7 +66900,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2315 this -1926788825 +532445947 1 this.bits 213 @@ -66694,7 +66916,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2316 this -1926788825 +532445947 1 this.bits 213 @@ -66707,7 +66929,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2316 this -1926788825 +532445947 1 this.bits 213 @@ -66723,7 +66945,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2317 this -1926788825 +532445947 1 this.bits 213 @@ -66736,7 +66958,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2317 this -1926788825 +532445947 1 this.bits 213 @@ -66752,7 +66974,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2318 this -1926788825 +532445947 1 this.bits 213 @@ -66765,7 +66987,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2318 this -1926788825 +532445947 1 this.bits 213 @@ -66781,7 +67003,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2319 this -1926788825 +532445947 1 this.bits 213 @@ -66794,7 +67016,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2319 this -1926788825 +532445947 1 this.bits 213 @@ -66810,7 +67032,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2320 this -1926788825 +532445947 1 this.bits 213 @@ -66823,7 +67045,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2320 this -1926788825 +532445947 1 this.bits 213 @@ -66839,7 +67061,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2321 this -1926788825 +532445947 1 this.bits 213 @@ -66852,7 +67074,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2321 this -1926788825 +532445947 1 this.bits 213 @@ -66865,7 +67087,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2322 this -1926788825 +532445947 1 this.bits 213 @@ -66878,7 +67100,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2322 this -1926788825 +532445947 1 this.bits 213 @@ -66894,7 +67116,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2323 this -1926788825 +532445947 1 this.bits 213 @@ -66907,7 +67129,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2323 this -1926788825 +532445947 1 this.bits 213 @@ -66923,7 +67145,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2324 this -1926788825 +532445947 1 this.bits 213 @@ -66936,7 +67158,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2324 this -1926788825 +532445947 1 this.bits 213 @@ -66952,7 +67174,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2325 this -1926788825 +532445947 1 this.bits 213 @@ -66965,7 +67187,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2325 this -1926788825 +532445947 1 this.bits 213 @@ -66981,7 +67203,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2326 this -1926788825 +532445947 1 this.bits 213 @@ -66994,7 +67216,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2326 this -1926788825 +532445947 1 this.bits 213 @@ -67010,7 +67232,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2327 this -1926788825 +532445947 1 this.bits 213 @@ -67023,7 +67245,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2327 this -1926788825 +532445947 1 this.bits 213 @@ -67039,7 +67261,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2328 this -1926788825 +532445947 1 this.bits 213 @@ -67052,7 +67274,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2328 this -1926788825 +532445947 1 this.bits 213 @@ -67068,7 +67290,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2329 this -1926788825 +532445947 1 this.bits 213 @@ -67081,7 +67303,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2329 this -1926788825 +532445947 1 this.bits 213 @@ -67097,7 +67319,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2330 this -1926788825 +532445947 1 this.bits 213 @@ -67110,7 +67332,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2330 this -1926788825 +532445947 1 this.bits 149 @@ -67123,7 +67345,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2331 this -1926788825 +532445947 1 this.bits 149 @@ -67136,7 +67358,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2331 this -1926788825 +532445947 1 this.bits 149 @@ -67152,7 +67374,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2332 this -1926788825 +532445947 1 this.bits 149 @@ -67165,7 +67387,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2332 this -1926788825 +532445947 1 this.bits 149 @@ -67181,7 +67403,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2333 this -1926788825 +532445947 1 this.bits 149 @@ -67194,7 +67416,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2333 this -1926788825 +532445947 1 this.bits 149 @@ -67210,7 +67432,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2334 this -1926788825 +532445947 1 this.bits 149 @@ -67223,7 +67445,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2334 this -1926788825 +532445947 1 this.bits 149 @@ -67239,7 +67461,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2335 this -1926788825 +532445947 1 this.bits 149 @@ -67252,7 +67474,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2335 this -1926788825 +532445947 1 this.bits 149 @@ -67268,7 +67490,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2336 this -1926788825 +532445947 1 this.bits 149 @@ -67281,7 +67503,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2336 this -1926788825 +532445947 1 this.bits 149 @@ -67297,7 +67519,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2337 this -1926788825 +532445947 1 this.bits 149 @@ -67310,7 +67532,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2337 this -1926788825 +532445947 1 this.bits 149 @@ -67326,7 +67548,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2338 this -1926788825 +532445947 1 this.bits 149 @@ -67339,7 +67561,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2338 this -1926788825 +532445947 1 this.bits 149 @@ -67355,7 +67577,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2339 this -1926788825 +532445947 1 this.bits 149 @@ -67368,7 +67590,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2339 this -1926788825 +532445947 1 this.bits 149 @@ -67381,7 +67603,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2340 this -1926788825 +532445947 1 this.bits 149 @@ -67394,7 +67616,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2340 this -1926788825 +532445947 1 this.bits 149 @@ -67410,7 +67632,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2341 this -1926788825 +532445947 1 this.bits 149 @@ -67423,7 +67645,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2341 this -1926788825 +532445947 1 this.bits 149 @@ -67439,7 +67661,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2342 this -1926788825 +532445947 1 this.bits 149 @@ -67452,7 +67674,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2342 this -1926788825 +532445947 1 this.bits 149 @@ -67468,7 +67690,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2343 this -1926788825 +532445947 1 this.bits 149 @@ -67481,7 +67703,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2343 this -1926788825 +532445947 1 this.bits 149 @@ -67497,7 +67719,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2344 this -1926788825 +532445947 1 this.bits 149 @@ -67510,7 +67732,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2344 this -1926788825 +532445947 1 this.bits 149 @@ -67526,7 +67748,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2345 this -1926788825 +532445947 1 this.bits 149 @@ -67539,7 +67761,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2345 this -1926788825 +532445947 1 this.bits 149 @@ -67555,7 +67777,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2346 this -1926788825 +532445947 1 this.bits 149 @@ -67568,7 +67790,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2346 this -1926788825 +532445947 1 this.bits 149 @@ -67584,7 +67806,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2347 this -1926788825 +532445947 1 this.bits 149 @@ -67597,7 +67819,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2347 this -1926788825 +532445947 1 this.bits 149 @@ -67613,7 +67835,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2348 this -1926788825 +532445947 1 this.bits 149 @@ -67626,7 +67848,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2348 this -1926788825 +532445947 1 this.bits 149 @@ -67639,7 +67861,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2349 this -1926788825 +532445947 1 this.bits 149 @@ -67652,7 +67874,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2349 this -1926788825 +532445947 1 this.bits 149 @@ -67668,7 +67890,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2350 this -1926788825 +532445947 1 this.bits 149 @@ -67681,7 +67903,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2350 this -1926788825 +532445947 1 this.bits 149 @@ -67697,7 +67919,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2351 this -1926788825 +532445947 1 this.bits 149 @@ -67710,7 +67932,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2351 this -1926788825 +532445947 1 this.bits 149 @@ -67726,7 +67948,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2352 this -1926788825 +532445947 1 this.bits 149 @@ -67739,7 +67961,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2352 this -1926788825 +532445947 1 this.bits 149 @@ -67755,7 +67977,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2353 this -1926788825 +532445947 1 this.bits 149 @@ -67768,7 +67990,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2353 this -1926788825 +532445947 1 this.bits 149 @@ -67784,7 +68006,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2354 this -1926788825 +532445947 1 this.bits 149 @@ -67797,7 +68019,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2354 this -1926788825 +532445947 1 this.bits 149 @@ -67813,7 +68035,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2355 this -1926788825 +532445947 1 this.bits 149 @@ -67826,7 +68048,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2355 this -1926788825 +532445947 1 this.bits 149 @@ -67842,7 +68064,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2356 this -1926788825 +532445947 1 this.bits 149 @@ -67855,7 +68077,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2356 this -1926788825 +532445947 1 this.bits 149 @@ -67871,7 +68093,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2357 this -1926788825 +532445947 1 this.bits 149 @@ -67884,7 +68106,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2357 this -1926788825 +532445947 1 this.bits 181 @@ -67897,7 +68119,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2358 this -1926788825 +532445947 1 this.bits 181 @@ -67910,7 +68132,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2358 this -1926788825 +532445947 1 this.bits 181 @@ -67926,7 +68148,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2359 this -1926788825 +532445947 1 this.bits 181 @@ -67939,7 +68161,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2359 this -1926788825 +532445947 1 this.bits 181 @@ -67955,7 +68177,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2360 this -1926788825 +532445947 1 this.bits 181 @@ -67968,7 +68190,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2360 this -1926788825 +532445947 1 this.bits 181 @@ -67984,7 +68206,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2361 this -1926788825 +532445947 1 this.bits 181 @@ -67997,7 +68219,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2361 this -1926788825 +532445947 1 this.bits 181 @@ -68013,7 +68235,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2362 this -1926788825 +532445947 1 this.bits 181 @@ -68026,7 +68248,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2362 this -1926788825 +532445947 1 this.bits 181 @@ -68042,7 +68264,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2363 this -1926788825 +532445947 1 this.bits 181 @@ -68055,7 +68277,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2363 this -1926788825 +532445947 1 this.bits 181 @@ -68071,7 +68293,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2364 this -1926788825 +532445947 1 this.bits 181 @@ -68084,7 +68306,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2364 this -1926788825 +532445947 1 this.bits 181 @@ -68100,7 +68322,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2365 this -1926788825 +532445947 1 this.bits 181 @@ -68113,7 +68335,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2365 this -1926788825 +532445947 1 this.bits 181 @@ -68129,7 +68351,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2366 this -1926788825 +532445947 1 this.bits 181 @@ -68142,7 +68364,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2366 this -1926788825 +532445947 1 this.bits 165 @@ -68155,7 +68377,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2367 this -1926788825 +532445947 1 this.bits 165 @@ -68168,7 +68390,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2367 this -1926788825 +532445947 1 this.bits 165 @@ -68184,7 +68406,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2368 this -1926788825 +532445947 1 this.bits 165 @@ -68197,7 +68419,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2368 this -1926788825 +532445947 1 this.bits 165 @@ -68213,7 +68435,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2369 this -1926788825 +532445947 1 this.bits 165 @@ -68226,7 +68448,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2369 this -1926788825 +532445947 1 this.bits 165 @@ -68242,7 +68464,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2370 this -1926788825 +532445947 1 this.bits 165 @@ -68255,7 +68477,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2370 this -1926788825 +532445947 1 this.bits 165 @@ -68271,7 +68493,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2371 this -1926788825 +532445947 1 this.bits 165 @@ -68284,7 +68506,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2371 this -1926788825 +532445947 1 this.bits 165 @@ -68300,7 +68522,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2372 this -1926788825 +532445947 1 this.bits 165 @@ -68313,7 +68535,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2372 this -1926788825 +532445947 1 this.bits 165 @@ -68329,7 +68551,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2373 this -1926788825 +532445947 1 this.bits 165 @@ -68342,7 +68564,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2373 this -1926788825 +532445947 1 this.bits 165 @@ -68358,7 +68580,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2374 this -1926788825 +532445947 1 this.bits 165 @@ -68371,7 +68593,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2374 this -1926788825 +532445947 1 this.bits 165 @@ -68387,7 +68609,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2375 this -1926788825 +532445947 1 this.bits 165 @@ -68400,7 +68622,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2375 this -1926788825 +532445947 1 this.bits 165 @@ -68413,7 +68635,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2376 this -1926788825 +532445947 1 this.bits 165 @@ -68426,7 +68648,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2376 this -1926788825 +532445947 1 this.bits 165 @@ -68442,7 +68664,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2377 this -1926788825 +532445947 1 this.bits 165 @@ -68455,7 +68677,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2377 this -1926788825 +532445947 1 this.bits 165 @@ -68471,7 +68693,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2378 this -1926788825 +532445947 1 this.bits 165 @@ -68484,7 +68706,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2378 this -1926788825 +532445947 1 this.bits 165 @@ -68500,7 +68722,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2379 this -1926788825 +532445947 1 this.bits 165 @@ -68513,7 +68735,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2379 this -1926788825 +532445947 1 this.bits 165 @@ -68529,7 +68751,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2380 this -1926788825 +532445947 1 this.bits 165 @@ -68542,7 +68764,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2380 this -1926788825 +532445947 1 this.bits 165 @@ -68558,7 +68780,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2381 this -1926788825 +532445947 1 this.bits 165 @@ -68571,7 +68793,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2381 this -1926788825 +532445947 1 this.bits 165 @@ -68587,7 +68809,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2382 this -1926788825 +532445947 1 this.bits 165 @@ -68600,7 +68822,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2382 this -1926788825 +532445947 1 this.bits 165 @@ -68616,7 +68838,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2383 this -1926788825 +532445947 1 this.bits 165 @@ -68629,7 +68851,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2383 this -1926788825 +532445947 1 this.bits 165 @@ -68645,7 +68867,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2384 this -1926788825 +532445947 1 this.bits 165 @@ -68658,7 +68880,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2384 this -1926788825 +532445947 1 this.bits 165 @@ -68671,7 +68893,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2385 this -1926788825 +532445947 1 this.bits 165 @@ -68684,7 +68906,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2385 this -1926788825 +532445947 1 this.bits 165 @@ -68700,7 +68922,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2386 this -1926788825 +532445947 1 this.bits 165 @@ -68713,7 +68935,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2386 this -1926788825 +532445947 1 this.bits 165 @@ -68729,7 +68951,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2387 this -1926788825 +532445947 1 this.bits 165 @@ -68742,7 +68964,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2387 this -1926788825 +532445947 1 this.bits 165 @@ -68758,7 +68980,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2388 this -1926788825 +532445947 1 this.bits 165 @@ -68771,7 +68993,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2388 this -1926788825 +532445947 1 this.bits 165 @@ -68787,7 +69009,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2389 this -1926788825 +532445947 1 this.bits 165 @@ -68800,7 +69022,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2389 this -1926788825 +532445947 1 this.bits 165 @@ -68816,7 +69038,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2390 this -1926788825 +532445947 1 this.bits 165 @@ -68829,7 +69051,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2390 this -1926788825 +532445947 1 this.bits 165 @@ -68845,7 +69067,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2391 this -1926788825 +532445947 1 this.bits 165 @@ -68858,7 +69080,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2391 this -1926788825 +532445947 1 this.bits 165 @@ -68874,7 +69096,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2392 this -1926788825 +532445947 1 this.bits 165 @@ -68887,7 +69109,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2392 this -1926788825 +532445947 1 this.bits 165 @@ -68903,7 +69125,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2393 this -1926788825 +532445947 1 this.bits 165 @@ -68916,7 +69138,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2393 this -1926788825 +532445947 1 this.bits 165 @@ -68929,7 +69151,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2394 this -1926788825 +532445947 1 this.bits 165 @@ -68942,7 +69164,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2394 this -1926788825 +532445947 1 this.bits 165 @@ -68958,7 +69180,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2395 this -1926788825 +532445947 1 this.bits 165 @@ -68971,7 +69193,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2395 this -1926788825 +532445947 1 this.bits 165 @@ -68987,7 +69209,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2396 this -1926788825 +532445947 1 this.bits 165 @@ -69000,7 +69222,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2396 this -1926788825 +532445947 1 this.bits 165 @@ -69016,7 +69238,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2397 this -1926788825 +532445947 1 this.bits 165 @@ -69029,7 +69251,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2397 this -1926788825 +532445947 1 this.bits 165 @@ -69045,7 +69267,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2398 this -1926788825 +532445947 1 this.bits 165 @@ -69058,7 +69280,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2398 this -1926788825 +532445947 1 this.bits 165 @@ -69074,7 +69296,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2399 this -1926788825 +532445947 1 this.bits 165 @@ -69087,7 +69309,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2399 this -1926788825 +532445947 1 this.bits 165 @@ -69103,7 +69325,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2400 this -1926788825 +532445947 1 this.bits 165 @@ -69116,7 +69338,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2400 this -1926788825 +532445947 1 this.bits 165 @@ -69132,7 +69354,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2401 this -1926788825 +532445947 1 this.bits 165 @@ -69145,7 +69367,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2401 this -1926788825 +532445947 1 this.bits 165 @@ -69161,7 +69383,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2402 this -1926788825 +532445947 1 this.bits 165 @@ -69174,7 +69396,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2402 this -1926788825 +532445947 1 this.bits 165 @@ -69187,7 +69409,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2403 this -1926788825 +532445947 1 this.bits 165 @@ -69200,7 +69422,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2403 this -1926788825 +532445947 1 this.bits 165 @@ -69216,7 +69438,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2404 this -1926788825 +532445947 1 this.bits 165 @@ -69229,7 +69451,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2404 this -1926788825 +532445947 1 this.bits 165 @@ -69245,7 +69467,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2405 this -1926788825 +532445947 1 this.bits 165 @@ -69258,7 +69480,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2405 this -1926788825 +532445947 1 this.bits 165 @@ -69274,7 +69496,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2406 this -1926788825 +532445947 1 this.bits 165 @@ -69287,7 +69509,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2406 this -1926788825 +532445947 1 this.bits 165 @@ -69303,7 +69525,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2407 this -1926788825 +532445947 1 this.bits 165 @@ -69316,7 +69538,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2407 this -1926788825 +532445947 1 this.bits 165 @@ -69332,7 +69554,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2408 this -1926788825 +532445947 1 this.bits 165 @@ -69345,7 +69567,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2408 this -1926788825 +532445947 1 this.bits 165 @@ -69361,7 +69583,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2409 this -1926788825 +532445947 1 this.bits 165 @@ -69374,7 +69596,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2409 this -1926788825 +532445947 1 this.bits 165 @@ -69390,7 +69612,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2410 this -1926788825 +532445947 1 this.bits 165 @@ -69403,7 +69625,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2410 this -1926788825 +532445947 1 this.bits 165 @@ -69419,7 +69641,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2411 this -1926788825 +532445947 1 this.bits 165 @@ -69432,7 +69654,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2411 this -1926788825 +532445947 1 this.bits 165 @@ -69445,7 +69667,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2412 this -1926788825 +532445947 1 this.bits 165 @@ -69458,7 +69680,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2412 this -1926788825 +532445947 1 this.bits 165 @@ -69474,7 +69696,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2413 this -1926788825 +532445947 1 this.bits 165 @@ -69487,7 +69709,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2413 this -1926788825 +532445947 1 this.bits 165 @@ -69503,7 +69725,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2414 this -1926788825 +532445947 1 this.bits 165 @@ -69516,7 +69738,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2414 this -1926788825 +532445947 1 this.bits 165 @@ -69532,7 +69754,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2415 this -1926788825 +532445947 1 this.bits 165 @@ -69545,7 +69767,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2415 this -1926788825 +532445947 1 this.bits 165 @@ -69561,7 +69783,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2416 this -1926788825 +532445947 1 this.bits 165 @@ -69574,7 +69796,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2416 this -1926788825 +532445947 1 this.bits 165 @@ -69590,7 +69812,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2417 this -1926788825 +532445947 1 this.bits 165 @@ -69603,7 +69825,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2417 this -1926788825 +532445947 1 this.bits 165 @@ -69619,7 +69841,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2418 this -1926788825 +532445947 1 this.bits 165 @@ -69632,7 +69854,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2418 this -1926788825 +532445947 1 this.bits 165 @@ -69648,7 +69870,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2419 this -1926788825 +532445947 1 this.bits 165 @@ -69661,7 +69883,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2419 this -1926788825 +532445947 1 this.bits 165 @@ -69677,7 +69899,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2420 this -1926788825 +532445947 1 this.bits 165 @@ -69690,7 +69912,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2420 this -1926788825 +532445947 1 this.bits 165 @@ -69703,7 +69925,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2421 this -1926788825 +532445947 1 this.bits 165 @@ -69716,7 +69938,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2421 this -1926788825 +532445947 1 this.bits 165 @@ -69732,7 +69954,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2422 this -1926788825 +532445947 1 this.bits 165 @@ -69745,7 +69967,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2422 this -1926788825 +532445947 1 this.bits 165 @@ -69761,7 +69983,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2423 this -1926788825 +532445947 1 this.bits 165 @@ -69774,7 +69996,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2423 this -1926788825 +532445947 1 this.bits 165 @@ -69790,7 +70012,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2424 this -1926788825 +532445947 1 this.bits 165 @@ -69803,7 +70025,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2424 this -1926788825 +532445947 1 this.bits 165 @@ -69819,7 +70041,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2425 this -1926788825 +532445947 1 this.bits 165 @@ -69832,7 +70054,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2425 this -1926788825 +532445947 1 this.bits 165 @@ -69848,7 +70070,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2426 this -1926788825 +532445947 1 this.bits 165 @@ -69861,7 +70083,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2426 this -1926788825 +532445947 1 this.bits 165 @@ -69877,7 +70099,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2427 this -1926788825 +532445947 1 this.bits 165 @@ -69890,7 +70112,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2427 this -1926788825 +532445947 1 this.bits 165 @@ -69906,7 +70128,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2428 this -1926788825 +532445947 1 this.bits 165 @@ -69919,7 +70141,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2428 this -1926788825 +532445947 1 this.bits 165 @@ -69935,7 +70157,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2429 this -1926788825 +532445947 1 this.bits 165 @@ -69948,7 +70170,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2429 this -1926788825 +532445947 1 this.bits 165 @@ -69961,7 +70183,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2430 this -1926788825 +532445947 1 this.bits 165 @@ -69974,7 +70196,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2430 this -1926788825 +532445947 1 this.bits 165 @@ -69990,7 +70212,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2431 this -1926788825 +532445947 1 this.bits 165 @@ -70003,7 +70225,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2431 this -1926788825 +532445947 1 this.bits 165 @@ -70019,7 +70241,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2432 this -1926788825 +532445947 1 this.bits 165 @@ -70032,7 +70254,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2432 this -1926788825 +532445947 1 this.bits 165 @@ -70048,7 +70270,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2433 this -1926788825 +532445947 1 this.bits 165 @@ -70061,7 +70283,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2433 this -1926788825 +532445947 1 this.bits 165 @@ -70077,7 +70299,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2434 this -1926788825 +532445947 1 this.bits 165 @@ -70090,7 +70312,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2434 this -1926788825 +532445947 1 this.bits 165 @@ -70106,7 +70328,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2435 this -1926788825 +532445947 1 this.bits 165 @@ -70119,7 +70341,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2435 this -1926788825 +532445947 1 this.bits 165 @@ -70135,7 +70357,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2436 this -1926788825 +532445947 1 this.bits 165 @@ -70148,7 +70370,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2436 this -1926788825 +532445947 1 this.bits 165 @@ -70164,7 +70386,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2437 this -1926788825 +532445947 1 this.bits 165 @@ -70177,7 +70399,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2437 this -1926788825 +532445947 1 this.bits 165 @@ -70193,7 +70415,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2438 this -1926788825 +532445947 1 this.bits 165 @@ -70206,7 +70428,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2438 this -1926788825 +532445947 1 this.bits 165 @@ -70219,7 +70441,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2439 this -1926788825 +532445947 1 this.bits 165 @@ -70232,7 +70454,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2439 this -1926788825 +532445947 1 this.bits 165 @@ -70248,7 +70470,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2440 this -1926788825 +532445947 1 this.bits 165 @@ -70261,7 +70483,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2440 this -1926788825 +532445947 1 this.bits 165 @@ -70277,7 +70499,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2441 this -1926788825 +532445947 1 this.bits 165 @@ -70290,7 +70512,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2441 this -1926788825 +532445947 1 this.bits 165 @@ -70306,7 +70528,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2442 this -1926788825 +532445947 1 this.bits 165 @@ -70319,7 +70541,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2442 this -1926788825 +532445947 1 this.bits 165 @@ -70335,7 +70557,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2443 this -1926788825 +532445947 1 this.bits 165 @@ -70348,7 +70570,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2443 this -1926788825 +532445947 1 this.bits 165 @@ -70364,7 +70586,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2444 this -1926788825 +532445947 1 this.bits 165 @@ -70377,7 +70599,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2444 this -1926788825 +532445947 1 this.bits 165 @@ -70393,7 +70615,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2445 this -1926788825 +532445947 1 this.bits 165 @@ -70406,7 +70628,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2445 this -1926788825 +532445947 1 this.bits 165 @@ -70422,7 +70644,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2446 this -1926788825 +532445947 1 this.bits 165 @@ -70435,7 +70657,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2446 this -1926788825 +532445947 1 this.bits 165 @@ -70451,7 +70673,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2447 this -1926788825 +532445947 1 this.bits 165 @@ -70464,7 +70686,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2447 this -1926788825 +532445947 1 this.bits 229 @@ -70477,7 +70699,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2448 this -1926788825 +532445947 1 this.bits 229 @@ -70490,7 +70712,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2448 this -1926788825 +532445947 1 this.bits 229 @@ -70506,7 +70728,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2449 this -1926788825 +532445947 1 this.bits 229 @@ -70519,7 +70741,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2449 this -1926788825 +532445947 1 this.bits 229 @@ -70535,7 +70757,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2450 this -1926788825 +532445947 1 this.bits 229 @@ -70548,7 +70770,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2450 this -1926788825 +532445947 1 this.bits 229 @@ -70564,7 +70786,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2451 this -1926788825 +532445947 1 this.bits 229 @@ -70577,7 +70799,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2451 this -1926788825 +532445947 1 this.bits 229 @@ -70593,7 +70815,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2452 this -1926788825 +532445947 1 this.bits 229 @@ -70606,7 +70828,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2452 this -1926788825 +532445947 1 this.bits 229 @@ -70622,7 +70844,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2453 this -1926788825 +532445947 1 this.bits 229 @@ -70635,7 +70857,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2453 this -1926788825 +532445947 1 this.bits 229 @@ -70651,7 +70873,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2454 this -1926788825 +532445947 1 this.bits 229 @@ -70664,7 +70886,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2454 this -1926788825 +532445947 1 this.bits 229 @@ -70680,7 +70902,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2455 this -1926788825 +532445947 1 this.bits 229 @@ -70693,7 +70915,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2455 this -1926788825 +532445947 1 this.bits 229 @@ -70709,7 +70931,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2456 this -1926788825 +532445947 1 this.bits 229 @@ -70722,7 +70944,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2456 this -1926788825 +532445947 1 this.bits 229 @@ -70735,7 +70957,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2457 this -1926788825 +532445947 1 this.bits 229 @@ -70748,7 +70970,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2457 this -1926788825 +532445947 1 this.bits 229 @@ -70764,7 +70986,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2458 this -1926788825 +532445947 1 this.bits 229 @@ -70777,7 +70999,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2458 this -1926788825 +532445947 1 this.bits 229 @@ -70793,7 +71015,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2459 this -1926788825 +532445947 1 this.bits 229 @@ -70806,7 +71028,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2459 this -1926788825 +532445947 1 this.bits 229 @@ -70822,7 +71044,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2460 this -1926788825 +532445947 1 this.bits 229 @@ -70835,7 +71057,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2460 this -1926788825 +532445947 1 this.bits 229 @@ -70851,7 +71073,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2461 this -1926788825 +532445947 1 this.bits 229 @@ -70864,7 +71086,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2461 this -1926788825 +532445947 1 this.bits 229 @@ -70880,7 +71102,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2462 this -1926788825 +532445947 1 this.bits 229 @@ -70893,7 +71115,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2462 this -1926788825 +532445947 1 this.bits 229 @@ -70909,7 +71131,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2463 this -1926788825 +532445947 1 this.bits 229 @@ -70922,7 +71144,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2463 this -1926788825 +532445947 1 this.bits 229 @@ -70938,7 +71160,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2464 this -1926788825 +532445947 1 this.bits 229 @@ -70951,7 +71173,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2464 this -1926788825 +532445947 1 this.bits 229 @@ -70967,7 +71189,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2465 this -1926788825 +532445947 1 this.bits 229 @@ -70980,7 +71202,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2465 this -1926788825 +532445947 1 this.bits 229 @@ -70993,7 +71215,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2466 this -1926788825 +532445947 1 this.bits 229 @@ -71006,7 +71228,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2466 this -1926788825 +532445947 1 this.bits 229 @@ -71022,7 +71244,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2467 this -1926788825 +532445947 1 this.bits 229 @@ -71035,7 +71257,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2467 this -1926788825 +532445947 1 this.bits 229 @@ -71051,7 +71273,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2468 this -1926788825 +532445947 1 this.bits 229 @@ -71064,7 +71286,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2468 this -1926788825 +532445947 1 this.bits 229 @@ -71080,7 +71302,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2469 this -1926788825 +532445947 1 this.bits 229 @@ -71093,7 +71315,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2469 this -1926788825 +532445947 1 this.bits 229 @@ -71109,7 +71331,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2470 this -1926788825 +532445947 1 this.bits 229 @@ -71122,7 +71344,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2470 this -1926788825 +532445947 1 this.bits 229 @@ -71138,7 +71360,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2471 this -1926788825 +532445947 1 this.bits 229 @@ -71151,7 +71373,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2471 this -1926788825 +532445947 1 this.bits 229 @@ -71167,7 +71389,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2472 this -1926788825 +532445947 1 this.bits 229 @@ -71180,7 +71402,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2472 this -1926788825 +532445947 1 this.bits 229 @@ -71196,7 +71418,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2473 this -1926788825 +532445947 1 this.bits 229 @@ -71209,7 +71431,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2473 this -1926788825 +532445947 1 this.bits 229 @@ -71225,7 +71447,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2474 this -1926788825 +532445947 1 this.bits 229 @@ -71238,7 +71460,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2474 this -1926788825 +532445947 1 this.bits 197 @@ -71251,7 +71473,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2475 this -1926788825 +532445947 1 this.bits 197 @@ -71264,7 +71486,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2475 this -1926788825 +532445947 1 this.bits 197 @@ -71280,7 +71502,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2476 this -1926788825 +532445947 1 this.bits 197 @@ -71293,7 +71515,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2476 this -1926788825 +532445947 1 this.bits 197 @@ -71309,7 +71531,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2477 this -1926788825 +532445947 1 this.bits 197 @@ -71322,7 +71544,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2477 this -1926788825 +532445947 1 this.bits 197 @@ -71338,7 +71560,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2478 this -1926788825 +532445947 1 this.bits 197 @@ -71351,7 +71573,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2478 this -1926788825 +532445947 1 this.bits 197 @@ -71367,7 +71589,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2479 this -1926788825 +532445947 1 this.bits 197 @@ -71380,7 +71602,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2479 this -1926788825 +532445947 1 this.bits 197 @@ -71396,7 +71618,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2480 this -1926788825 +532445947 1 this.bits 197 @@ -71409,7 +71631,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2480 this -1926788825 +532445947 1 this.bits 197 @@ -71425,7 +71647,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2481 this -1926788825 +532445947 1 this.bits 197 @@ -71438,7 +71660,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2481 this -1926788825 +532445947 1 this.bits 197 @@ -71454,7 +71676,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2482 this -1926788825 +532445947 1 this.bits 197 @@ -71467,7 +71689,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2482 this -1926788825 +532445947 1 this.bits 197 @@ -71483,7 +71705,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2483 this -1926788825 +532445947 1 this.bits 197 @@ -71496,7 +71718,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2483 this -1926788825 +532445947 1 this.bits 229 @@ -71509,7 +71731,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2484 this -1926788825 +532445947 1 this.bits 229 @@ -71522,7 +71744,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2484 this -1926788825 +532445947 1 this.bits 229 @@ -71538,7 +71760,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2485 this -1926788825 +532445947 1 this.bits 229 @@ -71551,7 +71773,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2485 this -1926788825 +532445947 1 this.bits 229 @@ -71567,7 +71789,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2486 this -1926788825 +532445947 1 this.bits 229 @@ -71580,7 +71802,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2486 this -1926788825 +532445947 1 this.bits 229 @@ -71596,7 +71818,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2487 this -1926788825 +532445947 1 this.bits 229 @@ -71609,7 +71831,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2487 this -1926788825 +532445947 1 this.bits 229 @@ -71625,7 +71847,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2488 this -1926788825 +532445947 1 this.bits 229 @@ -71638,7 +71860,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2488 this -1926788825 +532445947 1 this.bits 229 @@ -71654,7 +71876,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2489 this -1926788825 +532445947 1 this.bits 229 @@ -71667,7 +71889,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2489 this -1926788825 +532445947 1 this.bits 229 @@ -71683,7 +71905,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2490 this -1926788825 +532445947 1 this.bits 229 @@ -71696,7 +71918,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2490 this -1926788825 +532445947 1 this.bits 229 @@ -71712,7 +71934,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2491 this -1926788825 +532445947 1 this.bits 229 @@ -71725,7 +71947,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2491 this -1926788825 +532445947 1 this.bits 229 @@ -71741,7 +71963,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2492 this -1926788825 +532445947 1 this.bits 229 @@ -71754,7 +71976,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2492 this -1926788825 +532445947 1 this.bits 101 @@ -71767,7 +71989,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2493 this -1926788825 +532445947 1 this.bits 101 @@ -71780,7 +72002,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2493 this -1926788825 +532445947 1 this.bits 101 @@ -71796,7 +72018,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2494 this -1926788825 +532445947 1 this.bits 101 @@ -71809,7 +72031,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2494 this -1926788825 +532445947 1 this.bits 101 @@ -71825,7 +72047,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2495 this -1926788825 +532445947 1 this.bits 101 @@ -71838,7 +72060,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2495 this -1926788825 +532445947 1 this.bits 101 @@ -71854,7 +72076,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2496 this -1926788825 +532445947 1 this.bits 101 @@ -71867,7 +72089,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2496 this -1926788825 +532445947 1 this.bits 101 @@ -71883,7 +72105,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2497 this -1926788825 +532445947 1 this.bits 101 @@ -71896,7 +72118,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2497 this -1926788825 +532445947 1 this.bits 101 @@ -71912,7 +72134,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2498 this -1926788825 +532445947 1 this.bits 101 @@ -71925,7 +72147,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2498 this -1926788825 +532445947 1 this.bits 101 @@ -71941,7 +72163,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2499 this -1926788825 +532445947 1 this.bits 101 @@ -71954,7 +72176,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2499 this -1926788825 +532445947 1 this.bits 101 @@ -71970,7 +72192,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2500 this -1926788825 +532445947 1 this.bits 101 @@ -71983,7 +72205,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2500 this -1926788825 +532445947 1 this.bits 101 @@ -71999,7 +72221,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2501 this -1926788825 +532445947 1 this.bits 101 @@ -72012,7 +72234,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2501 this -1926788825 +532445947 1 this.bits 101 @@ -72025,7 +72247,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2502 this -1926788825 +532445947 1 this.bits 101 @@ -72038,7 +72260,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2502 this -1926788825 +532445947 1 this.bits 101 @@ -72054,7 +72276,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2503 this -1926788825 +532445947 1 this.bits 101 @@ -72067,7 +72289,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2503 this -1926788825 +532445947 1 this.bits 101 @@ -72083,7 +72305,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2504 this -1926788825 +532445947 1 this.bits 101 @@ -72096,7 +72318,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2504 this -1926788825 +532445947 1 this.bits 101 @@ -72112,7 +72334,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2505 this -1926788825 +532445947 1 this.bits 101 @@ -72125,7 +72347,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2505 this -1926788825 +532445947 1 this.bits 101 @@ -72141,7 +72363,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2506 this -1926788825 +532445947 1 this.bits 101 @@ -72154,7 +72376,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2506 this -1926788825 +532445947 1 this.bits 101 @@ -72170,7 +72392,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2507 this -1926788825 +532445947 1 this.bits 101 @@ -72183,7 +72405,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2507 this -1926788825 +532445947 1 this.bits 101 @@ -72199,7 +72421,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2508 this -1926788825 +532445947 1 this.bits 101 @@ -72212,7 +72434,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2508 this -1926788825 +532445947 1 this.bits 101 @@ -72228,7 +72450,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2509 this -1926788825 +532445947 1 this.bits 101 @@ -72241,7 +72463,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2509 this -1926788825 +532445947 1 this.bits 101 @@ -72257,7 +72479,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2510 this -1926788825 +532445947 1 this.bits 101 @@ -72270,7 +72492,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2510 this -1926788825 +532445947 1 this.bits 69 @@ -72283,7 +72505,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2511 this -1926788825 +532445947 1 this.bits 69 @@ -72296,7 +72518,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2511 this -1926788825 +532445947 1 this.bits 69 @@ -72312,7 +72534,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2512 this -1926788825 +532445947 1 this.bits 69 @@ -72325,7 +72547,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2512 this -1926788825 +532445947 1 this.bits 69 @@ -72341,7 +72563,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2513 this -1926788825 +532445947 1 this.bits 69 @@ -72354,7 +72576,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2513 this -1926788825 +532445947 1 this.bits 69 @@ -72370,7 +72592,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2514 this -1926788825 +532445947 1 this.bits 69 @@ -72383,7 +72605,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2514 this -1926788825 +532445947 1 this.bits 69 @@ -72399,7 +72621,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2515 this -1926788825 +532445947 1 this.bits 69 @@ -72412,7 +72634,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2515 this -1926788825 +532445947 1 this.bits 69 @@ -72428,7 +72650,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2516 this -1926788825 +532445947 1 this.bits 69 @@ -72441,7 +72663,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2516 this -1926788825 +532445947 1 this.bits 69 @@ -72457,7 +72679,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2517 this -1926788825 +532445947 1 this.bits 69 @@ -72470,7 +72692,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2517 this -1926788825 +532445947 1 this.bits 69 @@ -72486,7 +72708,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2518 this -1926788825 +532445947 1 this.bits 69 @@ -72499,7 +72721,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2518 this -1926788825 +532445947 1 this.bits 69 @@ -72515,7 +72737,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2519 this -1926788825 +532445947 1 this.bits 69 @@ -72528,7 +72750,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2519 this -1926788825 +532445947 1 this.bits 69 @@ -72541,7 +72763,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2520 this -1926788825 +532445947 1 this.bits 69 @@ -72554,7 +72776,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2520 this -1926788825 +532445947 1 this.bits 69 @@ -72570,7 +72792,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2521 this -1926788825 +532445947 1 this.bits 69 @@ -72583,7 +72805,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2521 this -1926788825 +532445947 1 this.bits 69 @@ -72599,7 +72821,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2522 this -1926788825 +532445947 1 this.bits 69 @@ -72612,7 +72834,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2522 this -1926788825 +532445947 1 this.bits 69 @@ -72628,7 +72850,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2523 this -1926788825 +532445947 1 this.bits 69 @@ -72641,7 +72863,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2523 this -1926788825 +532445947 1 this.bits 69 @@ -72657,7 +72879,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2524 this -1926788825 +532445947 1 this.bits 69 @@ -72670,7 +72892,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2524 this -1926788825 +532445947 1 this.bits 69 @@ -72686,7 +72908,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2525 this -1926788825 +532445947 1 this.bits 69 @@ -72699,7 +72921,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2525 this -1926788825 +532445947 1 this.bits 69 @@ -72715,7 +72937,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2526 this -1926788825 +532445947 1 this.bits 69 @@ -72728,7 +72950,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2526 this -1926788825 +532445947 1 this.bits 69 @@ -72744,7 +72966,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2527 this -1926788825 +532445947 1 this.bits 69 @@ -72757,7 +72979,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2527 this -1926788825 +532445947 1 this.bits 69 @@ -72773,7 +72995,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2528 this -1926788825 +532445947 1 this.bits 69 @@ -72786,7 +73008,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2528 this -1926788825 +532445947 1 this.bits 69 @@ -72799,7 +73021,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2529 this -1926788825 +532445947 1 this.bits 69 @@ -72812,7 +73034,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2529 this -1926788825 +532445947 1 this.bits 69 @@ -72828,7 +73050,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2530 this -1926788825 +532445947 1 this.bits 69 @@ -72841,7 +73063,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2530 this -1926788825 +532445947 1 this.bits 69 @@ -72857,7 +73079,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2531 this -1926788825 +532445947 1 this.bits 69 @@ -72870,7 +73092,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2531 this -1926788825 +532445947 1 this.bits 69 @@ -72886,7 +73108,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2532 this -1926788825 +532445947 1 this.bits 69 @@ -72899,7 +73121,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2532 this -1926788825 +532445947 1 this.bits 69 @@ -72915,7 +73137,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2533 this -1926788825 +532445947 1 this.bits 69 @@ -72928,7 +73150,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2533 this -1926788825 +532445947 1 this.bits 69 @@ -72944,7 +73166,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2534 this -1926788825 +532445947 1 this.bits 69 @@ -72957,7 +73179,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2534 this -1926788825 +532445947 1 this.bits 69 @@ -72973,7 +73195,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2535 this -1926788825 +532445947 1 this.bits 69 @@ -72986,7 +73208,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2535 this -1926788825 +532445947 1 this.bits 69 @@ -73002,7 +73224,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2536 this -1926788825 +532445947 1 this.bits 69 @@ -73015,7 +73237,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2536 this -1926788825 +532445947 1 this.bits 69 @@ -73031,7 +73253,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2537 this -1926788825 +532445947 1 this.bits 69 @@ -73044,7 +73266,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2537 this -1926788825 +532445947 1 this.bits 85 @@ -73057,7 +73279,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2538 this -1926788825 +532445947 1 this.bits 85 @@ -73070,7 +73292,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2538 this -1926788825 +532445947 1 this.bits 85 @@ -73086,7 +73308,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2539 this -1926788825 +532445947 1 this.bits 85 @@ -73099,7 +73321,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2539 this -1926788825 +532445947 1 this.bits 85 @@ -73115,7 +73337,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2540 this -1926788825 +532445947 1 this.bits 85 @@ -73128,7 +73350,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2540 this -1926788825 +532445947 1 this.bits 85 @@ -73144,7 +73366,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2541 this -1926788825 +532445947 1 this.bits 85 @@ -73157,7 +73379,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2541 this -1926788825 +532445947 1 this.bits 85 @@ -73173,7 +73395,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2542 this -1926788825 +532445947 1 this.bits 85 @@ -73186,7 +73408,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2542 this -1926788825 +532445947 1 this.bits 85 @@ -73202,7 +73424,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2543 this -1926788825 +532445947 1 this.bits 85 @@ -73215,7 +73437,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2543 this -1926788825 +532445947 1 this.bits 85 @@ -73231,7 +73453,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2544 this -1926788825 +532445947 1 this.bits 85 @@ -73244,7 +73466,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2544 this -1926788825 +532445947 1 this.bits 85 @@ -73260,7 +73482,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2545 this -1926788825 +532445947 1 this.bits 85 @@ -73273,7 +73495,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2545 this -1926788825 +532445947 1 this.bits 85 @@ -73289,7 +73511,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2546 this -1926788825 +532445947 1 this.bits 85 @@ -73302,7 +73524,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2546 this -1926788825 +532445947 1 this.bits 21 @@ -73315,7 +73537,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2547 this -1926788825 +532445947 1 this.bits 21 @@ -73328,7 +73550,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2547 this -1926788825 +532445947 1 this.bits 21 @@ -73344,7 +73566,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2548 this -1926788825 +532445947 1 this.bits 21 @@ -73357,7 +73579,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2548 this -1926788825 +532445947 1 this.bits 21 @@ -73373,7 +73595,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2549 this -1926788825 +532445947 1 this.bits 21 @@ -73386,7 +73608,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2549 this -1926788825 +532445947 1 this.bits 21 @@ -73402,7 +73624,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2550 this -1926788825 +532445947 1 this.bits 21 @@ -73415,7 +73637,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2550 this -1926788825 +532445947 1 this.bits 21 @@ -73431,7 +73653,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2551 this -1926788825 +532445947 1 this.bits 21 @@ -73444,7 +73666,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2551 this -1926788825 +532445947 1 this.bits 21 @@ -73460,7 +73682,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2552 this -1926788825 +532445947 1 this.bits 21 @@ -73473,7 +73695,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2552 this -1926788825 +532445947 1 this.bits 21 @@ -73489,7 +73711,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2553 this -1926788825 +532445947 1 this.bits 21 @@ -73502,7 +73724,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2553 this -1926788825 +532445947 1 this.bits 21 @@ -73518,7 +73740,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2554 this -1926788825 +532445947 1 this.bits 21 @@ -73531,7 +73753,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2554 this -1926788825 +532445947 1 this.bits 21 @@ -73547,7 +73769,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2555 this -1926788825 +532445947 1 this.bits 21 @@ -73560,7 +73782,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2555 this -1926788825 +532445947 1 this.bits 21 @@ -73573,7 +73795,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2556 this -1926788825 +532445947 1 this.bits 21 @@ -73586,7 +73808,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2556 this -1926788825 +532445947 1 this.bits 21 @@ -73602,7 +73824,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2557 this -1926788825 +532445947 1 this.bits 21 @@ -73615,7 +73837,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2557 this -1926788825 +532445947 1 this.bits 21 @@ -73631,7 +73853,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2558 this -1926788825 +532445947 1 this.bits 21 @@ -73644,7 +73866,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2558 this -1926788825 +532445947 1 this.bits 21 @@ -73660,7 +73882,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2559 this -1926788825 +532445947 1 this.bits 21 @@ -73673,7 +73895,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2559 this -1926788825 +532445947 1 this.bits 21 @@ -73689,7 +73911,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2560 this -1926788825 +532445947 1 this.bits 21 @@ -73702,7 +73924,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2560 this -1926788825 +532445947 1 this.bits 21 @@ -73718,7 +73940,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2561 this -1926788825 +532445947 1 this.bits 21 @@ -73731,7 +73953,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2561 this -1926788825 +532445947 1 this.bits 21 @@ -73747,7 +73969,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2562 this -1926788825 +532445947 1 this.bits 21 @@ -73760,7 +73982,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2562 this -1926788825 +532445947 1 this.bits 21 @@ -73776,7 +73998,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2563 this -1926788825 +532445947 1 this.bits 21 @@ -73789,7 +74011,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2563 this -1926788825 +532445947 1 this.bits 21 @@ -73805,7 +74027,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2564 this -1926788825 +532445947 1 this.bits 21 @@ -73818,7 +74040,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2564 this -1926788825 +532445947 1 this.bits 21 @@ -73831,7 +74053,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2565 this -1926788825 +532445947 1 this.bits 21 @@ -73844,7 +74066,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2565 this -1926788825 +532445947 1 this.bits 21 @@ -73860,7 +74082,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2566 this -1926788825 +532445947 1 this.bits 21 @@ -73873,7 +74095,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2566 this -1926788825 +532445947 1 this.bits 21 @@ -73889,7 +74111,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2567 this -1926788825 +532445947 1 this.bits 21 @@ -73902,7 +74124,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2567 this -1926788825 +532445947 1 this.bits 21 @@ -73918,7 +74140,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2568 this -1926788825 +532445947 1 this.bits 21 @@ -73931,7 +74153,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2568 this -1926788825 +532445947 1 this.bits 21 @@ -73947,7 +74169,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2569 this -1926788825 +532445947 1 this.bits 21 @@ -73960,7 +74182,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2569 this -1926788825 +532445947 1 this.bits 21 @@ -73976,7 +74198,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2570 this -1926788825 +532445947 1 this.bits 21 @@ -73989,7 +74211,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2570 this -1926788825 +532445947 1 this.bits 21 @@ -74005,7 +74227,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2571 this -1926788825 +532445947 1 this.bits 21 @@ -74018,7 +74240,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2571 this -1926788825 +532445947 1 this.bits 21 @@ -74034,7 +74256,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2572 this -1926788825 +532445947 1 this.bits 21 @@ -74047,7 +74269,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2572 this -1926788825 +532445947 1 this.bits 21 @@ -74063,7 +74285,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2573 this -1926788825 +532445947 1 this.bits 21 @@ -74076,7 +74298,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2573 this -1926788825 +532445947 1 this.bits 53 @@ -74089,7 +74311,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2574 this -1926788825 +532445947 1 this.bits 53 @@ -74102,7 +74324,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2574 this -1926788825 +532445947 1 this.bits 53 @@ -74118,7 +74340,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2575 this -1926788825 +532445947 1 this.bits 53 @@ -74131,7 +74353,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2575 this -1926788825 +532445947 1 this.bits 53 @@ -74147,7 +74369,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2576 this -1926788825 +532445947 1 this.bits 53 @@ -74160,7 +74382,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2576 this -1926788825 +532445947 1 this.bits 53 @@ -74176,7 +74398,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2577 this -1926788825 +532445947 1 this.bits 53 @@ -74189,7 +74411,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2577 this -1926788825 +532445947 1 this.bits 53 @@ -74205,7 +74427,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2578 this -1926788825 +532445947 1 this.bits 53 @@ -74218,7 +74440,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2578 this -1926788825 +532445947 1 this.bits 53 @@ -74234,7 +74456,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2579 this -1926788825 +532445947 1 this.bits 53 @@ -74247,7 +74469,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2579 this -1926788825 +532445947 1 this.bits 53 @@ -74263,7 +74485,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2580 this -1926788825 +532445947 1 this.bits 53 @@ -74276,7 +74498,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2580 this -1926788825 +532445947 1 this.bits 53 @@ -74292,7 +74514,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2581 this -1926788825 +532445947 1 this.bits 53 @@ -74305,7 +74527,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2581 this -1926788825 +532445947 1 this.bits 53 @@ -74321,7 +74543,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2582 this -1926788825 +532445947 1 this.bits 53 @@ -74334,7 +74556,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2582 this -1926788825 +532445947 1 this.bits 53 @@ -74347,7 +74569,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2583 this -1926788825 +532445947 1 this.bits 53 @@ -74360,7 +74582,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2583 this -1926788825 +532445947 1 this.bits 53 @@ -74376,7 +74598,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2584 this -1926788825 +532445947 1 this.bits 53 @@ -74389,7 +74611,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2584 this -1926788825 +532445947 1 this.bits 53 @@ -74405,7 +74627,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2585 this -1926788825 +532445947 1 this.bits 53 @@ -74418,7 +74640,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2585 this -1926788825 +532445947 1 this.bits 53 @@ -74434,7 +74656,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2586 this -1926788825 +532445947 1 this.bits 53 @@ -74447,7 +74669,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2586 this -1926788825 +532445947 1 this.bits 53 @@ -74463,7 +74685,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2587 this -1926788825 +532445947 1 this.bits 53 @@ -74476,7 +74698,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2587 this -1926788825 +532445947 1 this.bits 53 @@ -74492,7 +74714,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2588 this -1926788825 +532445947 1 this.bits 53 @@ -74505,7 +74727,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2588 this -1926788825 +532445947 1 this.bits 53 @@ -74521,7 +74743,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2589 this -1926788825 +532445947 1 this.bits 53 @@ -74534,7 +74756,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2589 this -1926788825 +532445947 1 this.bits 53 @@ -74550,7 +74772,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2590 this -1926788825 +532445947 1 this.bits 53 @@ -74563,7 +74785,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2590 this -1926788825 +532445947 1 this.bits 53 @@ -74579,7 +74801,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2591 this -1926788825 +532445947 1 this.bits 53 @@ -74592,7 +74814,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2591 this -1926788825 +532445947 1 this.bits 53 @@ -74605,7 +74827,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2592 this -1926788825 +532445947 1 this.bits 53 @@ -74618,7 +74840,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2592 this -1926788825 +532445947 1 this.bits 53 @@ -74634,7 +74856,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2593 this -1926788825 +532445947 1 this.bits 53 @@ -74647,7 +74869,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2593 this -1926788825 +532445947 1 this.bits 53 @@ -74663,7 +74885,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2594 this -1926788825 +532445947 1 this.bits 53 @@ -74676,7 +74898,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2594 this -1926788825 +532445947 1 this.bits 53 @@ -74692,7 +74914,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2595 this -1926788825 +532445947 1 this.bits 53 @@ -74705,7 +74927,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2595 this -1926788825 +532445947 1 this.bits 53 @@ -74721,7 +74943,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2596 this -1926788825 +532445947 1 this.bits 53 @@ -74734,7 +74956,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2596 this -1926788825 +532445947 1 this.bits 53 @@ -74750,7 +74972,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2597 this -1926788825 +532445947 1 this.bits 53 @@ -74763,7 +74985,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2597 this -1926788825 +532445947 1 this.bits 53 @@ -74779,7 +75001,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2598 this -1926788825 +532445947 1 this.bits 53 @@ -74792,7 +75014,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2598 this -1926788825 +532445947 1 this.bits 53 @@ -74808,7 +75030,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2599 this -1926788825 +532445947 1 this.bits 53 @@ -74821,7 +75043,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2599 this -1926788825 +532445947 1 this.bits 53 @@ -74837,7 +75059,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2600 this -1926788825 +532445947 1 this.bits 53 @@ -74850,7 +75072,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2600 this -1926788825 +532445947 1 this.bits 53 @@ -74863,7 +75085,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2601 this -1926788825 +532445947 1 this.bits 53 @@ -74876,7 +75098,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2601 this -1926788825 +532445947 1 this.bits 53 @@ -74892,7 +75114,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2602 this -1926788825 +532445947 1 this.bits 53 @@ -74905,7 +75127,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2602 this -1926788825 +532445947 1 this.bits 53 @@ -74921,7 +75143,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2603 this -1926788825 +532445947 1 this.bits 53 @@ -74934,7 +75156,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2603 this -1926788825 +532445947 1 this.bits 53 @@ -74950,7 +75172,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2604 this -1926788825 +532445947 1 this.bits 53 @@ -74963,7 +75185,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2604 this -1926788825 +532445947 1 this.bits 53 @@ -74979,7 +75201,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2605 this -1926788825 +532445947 1 this.bits 53 @@ -74992,7 +75214,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2605 this -1926788825 +532445947 1 this.bits 53 @@ -75008,7 +75230,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2606 this -1926788825 +532445947 1 this.bits 53 @@ -75021,7 +75243,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2606 this -1926788825 +532445947 1 this.bits 53 @@ -75037,7 +75259,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2607 this -1926788825 +532445947 1 this.bits 53 @@ -75050,7 +75272,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2607 this -1926788825 +532445947 1 this.bits 53 @@ -75066,7 +75288,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2608 this -1926788825 +532445947 1 this.bits 53 @@ -75079,7 +75301,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2608 this -1926788825 +532445947 1 this.bits 53 @@ -75095,7 +75317,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2609 this -1926788825 +532445947 1 this.bits 53 @@ -75108,7 +75330,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2609 this -1926788825 +532445947 1 this.bits 53 @@ -75121,7 +75343,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2610 this -1926788825 +532445947 1 this.bits 53 @@ -75134,7 +75356,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2610 this -1926788825 +532445947 1 this.bits 53 @@ -75150,7 +75372,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2611 this -1926788825 +532445947 1 this.bits 53 @@ -75163,7 +75385,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2611 this -1926788825 +532445947 1 this.bits 53 @@ -75179,7 +75401,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2612 this -1926788825 +532445947 1 this.bits 53 @@ -75192,7 +75414,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2612 this -1926788825 +532445947 1 this.bits 53 @@ -75208,7 +75430,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2613 this -1926788825 +532445947 1 this.bits 53 @@ -75221,7 +75443,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2613 this -1926788825 +532445947 1 this.bits 53 @@ -75237,7 +75459,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2614 this -1926788825 +532445947 1 this.bits 53 @@ -75250,7 +75472,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2614 this -1926788825 +532445947 1 this.bits 53 @@ -75266,7 +75488,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2615 this -1926788825 +532445947 1 this.bits 53 @@ -75279,7 +75501,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2615 this -1926788825 +532445947 1 this.bits 53 @@ -75295,7 +75517,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2616 this -1926788825 +532445947 1 this.bits 53 @@ -75308,7 +75530,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2616 this -1926788825 +532445947 1 this.bits 53 @@ -75324,7 +75546,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2617 this -1926788825 +532445947 1 this.bits 53 @@ -75337,7 +75559,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2617 this -1926788825 +532445947 1 this.bits 53 @@ -75353,7 +75575,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2618 this -1926788825 +532445947 1 this.bits 53 @@ -75366,7 +75588,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2618 this -1926788825 +532445947 1 this.bits 53 @@ -75379,7 +75601,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2619 this -1926788825 +532445947 1 this.bits 53 @@ -75392,7 +75614,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2619 this -1926788825 +532445947 1 this.bits 53 @@ -75408,7 +75630,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2620 this -1926788825 +532445947 1 this.bits 53 @@ -75421,7 +75643,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2620 this -1926788825 +532445947 1 this.bits 53 @@ -75437,7 +75659,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2621 this -1926788825 +532445947 1 this.bits 53 @@ -75450,7 +75672,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2621 this -1926788825 +532445947 1 this.bits 53 @@ -75466,7 +75688,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2622 this -1926788825 +532445947 1 this.bits 53 @@ -75479,7 +75701,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2622 this -1926788825 +532445947 1 this.bits 53 @@ -75495,7 +75717,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2623 this -1926788825 +532445947 1 this.bits 53 @@ -75508,7 +75730,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2623 this -1926788825 +532445947 1 this.bits 53 @@ -75524,7 +75746,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2624 this -1926788825 +532445947 1 this.bits 53 @@ -75537,7 +75759,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2624 this -1926788825 +532445947 1 this.bits 53 @@ -75553,7 +75775,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2625 this -1926788825 +532445947 1 this.bits 53 @@ -75566,7 +75788,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2625 this -1926788825 +532445947 1 this.bits 53 @@ -75582,7 +75804,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2626 this -1926788825 +532445947 1 this.bits 53 @@ -75595,7 +75817,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2626 this -1926788825 +532445947 1 this.bits 53 @@ -75611,7 +75833,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2627 this -1926788825 +532445947 1 this.bits 53 @@ -75624,7 +75846,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2627 this -1926788825 +532445947 1 this.bits 181 @@ -75637,7 +75859,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2628 this -1926788825 +532445947 1 this.bits 181 @@ -75650,7 +75872,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2628 this -1926788825 +532445947 1 this.bits 181 @@ -75666,7 +75888,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2629 this -1926788825 +532445947 1 this.bits 181 @@ -75679,7 +75901,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2629 this -1926788825 +532445947 1 this.bits 181 @@ -75695,7 +75917,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2630 this -1926788825 +532445947 1 this.bits 181 @@ -75708,7 +75930,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2630 this -1926788825 +532445947 1 this.bits 181 @@ -75724,7 +75946,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2631 this -1926788825 +532445947 1 this.bits 181 @@ -75737,7 +75959,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2631 this -1926788825 +532445947 1 this.bits 181 @@ -75753,7 +75975,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2632 this -1926788825 +532445947 1 this.bits 181 @@ -75766,7 +75988,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2632 this -1926788825 +532445947 1 this.bits 181 @@ -75782,7 +76004,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2633 this -1926788825 +532445947 1 this.bits 181 @@ -75795,7 +76017,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2633 this -1926788825 +532445947 1 this.bits 181 @@ -75811,7 +76033,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2634 this -1926788825 +532445947 1 this.bits 181 @@ -75824,7 +76046,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2634 this -1926788825 +532445947 1 this.bits 181 @@ -75840,7 +76062,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2635 this -1926788825 +532445947 1 this.bits 181 @@ -75853,7 +76075,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2635 this -1926788825 +532445947 1 this.bits 181 @@ -75869,7 +76091,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2636 this -1926788825 +532445947 1 this.bits 181 @@ -75882,7 +76104,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2636 this -1926788825 +532445947 1 this.bits 177 @@ -75895,7 +76117,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2637 this -1926788825 +532445947 1 this.bits 177 @@ -75908,7 +76130,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2637 this -1926788825 +532445947 1 this.bits 177 @@ -75924,7 +76146,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2638 this -1926788825 +532445947 1 this.bits 177 @@ -75937,7 +76159,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2638 this -1926788825 +532445947 1 this.bits 177 @@ -75953,7 +76175,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2639 this -1926788825 +532445947 1 this.bits 177 @@ -75966,7 +76188,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2639 this -1926788825 +532445947 1 this.bits 177 @@ -75982,7 +76204,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2640 this -1926788825 +532445947 1 this.bits 177 @@ -75995,7 +76217,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2640 this -1926788825 +532445947 1 this.bits 177 @@ -76011,7 +76233,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2641 this -1926788825 +532445947 1 this.bits 177 @@ -76024,7 +76246,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2641 this -1926788825 +532445947 1 this.bits 177 @@ -76040,7 +76262,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2642 this -1926788825 +532445947 1 this.bits 177 @@ -76053,7 +76275,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2642 this -1926788825 +532445947 1 this.bits 177 @@ -76069,7 +76291,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2643 this -1926788825 +532445947 1 this.bits 177 @@ -76082,7 +76304,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2643 this -1926788825 +532445947 1 this.bits 177 @@ -76098,7 +76320,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2644 this -1926788825 +532445947 1 this.bits 177 @@ -76111,7 +76333,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2644 this -1926788825 +532445947 1 this.bits 177 @@ -76127,7 +76349,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2645 this -1926788825 +532445947 1 this.bits 177 @@ -76140,7 +76362,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2645 this -1926788825 +532445947 1 this.bits 177 @@ -76153,7 +76375,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2646 this -1926788825 +532445947 1 this.bits 177 @@ -76166,7 +76388,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2646 this -1926788825 +532445947 1 this.bits 177 @@ -76182,7 +76404,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2647 this -1926788825 +532445947 1 this.bits 177 @@ -76195,7 +76417,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2647 this -1926788825 +532445947 1 this.bits 177 @@ -76211,7 +76433,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2648 this -1926788825 +532445947 1 this.bits 177 @@ -76224,7 +76446,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2648 this -1926788825 +532445947 1 this.bits 177 @@ -76240,7 +76462,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2649 this -1926788825 +532445947 1 this.bits 177 @@ -76253,7 +76475,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2649 this -1926788825 +532445947 1 this.bits 177 @@ -76269,7 +76491,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2650 this -1926788825 +532445947 1 this.bits 177 @@ -76282,7 +76504,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2650 this -1926788825 +532445947 1 this.bits 177 @@ -76298,7 +76520,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2651 this -1926788825 +532445947 1 this.bits 177 @@ -76311,7 +76533,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2651 this -1926788825 +532445947 1 this.bits 177 @@ -76327,7 +76549,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2652 this -1926788825 +532445947 1 this.bits 177 @@ -76340,7 +76562,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2652 this -1926788825 +532445947 1 this.bits 177 @@ -76356,7 +76578,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2653 this -1926788825 +532445947 1 this.bits 177 @@ -76369,7 +76591,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2653 this -1926788825 +532445947 1 this.bits 177 @@ -76385,7 +76607,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2654 this -1926788825 +532445947 1 this.bits 177 @@ -76398,7 +76620,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2654 this -1926788825 +532445947 1 this.bits 49 @@ -76411,7 +76633,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2655 this -1926788825 +532445947 1 this.bits 49 @@ -76424,7 +76646,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2655 this -1926788825 +532445947 1 this.bits 49 @@ -76440,7 +76662,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2656 this -1926788825 +532445947 1 this.bits 49 @@ -76453,7 +76675,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2656 this -1926788825 +532445947 1 this.bits 49 @@ -76469,7 +76691,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2657 this -1926788825 +532445947 1 this.bits 49 @@ -76482,7 +76704,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2657 this -1926788825 +532445947 1 this.bits 49 @@ -76498,7 +76720,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2658 this -1926788825 +532445947 1 this.bits 49 @@ -76511,7 +76733,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2658 this -1926788825 +532445947 1 this.bits 49 @@ -76527,7 +76749,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2659 this -1926788825 +532445947 1 this.bits 49 @@ -76540,7 +76762,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2659 this -1926788825 +532445947 1 this.bits 49 @@ -76556,7 +76778,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2660 this -1926788825 +532445947 1 this.bits 49 @@ -76569,7 +76791,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2660 this -1926788825 +532445947 1 this.bits 49 @@ -76585,7 +76807,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2661 this -1926788825 +532445947 1 this.bits 49 @@ -76598,7 +76820,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2661 this -1926788825 +532445947 1 this.bits 49 @@ -76614,7 +76836,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2662 this -1926788825 +532445947 1 this.bits 49 @@ -76627,7 +76849,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2662 this -1926788825 +532445947 1 this.bits 49 @@ -76643,7 +76865,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2663 this -1926788825 +532445947 1 this.bits 49 @@ -76656,7 +76878,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2663 this -1926788825 +532445947 1 this.bits 53 @@ -76669,7 +76891,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2664 this -1926788825 +532445947 1 this.bits 53 @@ -76682,7 +76904,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2664 this -1926788825 +532445947 1 this.bits 53 @@ -76698,7 +76920,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2665 this -1926788825 +532445947 1 this.bits 53 @@ -76711,7 +76933,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2665 this -1926788825 +532445947 1 this.bits 53 @@ -76727,7 +76949,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2666 this -1926788825 +532445947 1 this.bits 53 @@ -76740,7 +76962,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2666 this -1926788825 +532445947 1 this.bits 53 @@ -76756,7 +76978,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2667 this -1926788825 +532445947 1 this.bits 53 @@ -76769,7 +76991,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2667 this -1926788825 +532445947 1 this.bits 53 @@ -76785,7 +77007,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2668 this -1926788825 +532445947 1 this.bits 53 @@ -76798,7 +77020,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2668 this -1926788825 +532445947 1 this.bits 53 @@ -76814,7 +77036,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2669 this -1926788825 +532445947 1 this.bits 53 @@ -76827,7 +77049,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2669 this -1926788825 +532445947 1 this.bits 53 @@ -76843,7 +77065,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2670 this -1926788825 +532445947 1 this.bits 53 @@ -76856,7 +77078,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2670 this -1926788825 +532445947 1 this.bits 53 @@ -76872,7 +77094,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2671 this -1926788825 +532445947 1 this.bits 53 @@ -76885,7 +77107,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2671 this -1926788825 +532445947 1 this.bits 53 @@ -76901,7 +77123,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2672 this -1926788825 +532445947 1 this.bits 53 @@ -76914,7 +77136,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2672 this -1926788825 +532445947 1 this.bits 53 @@ -76927,7 +77149,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2673 this -1926788825 +532445947 1 this.bits 53 @@ -76940,7 +77162,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2673 this -1926788825 +532445947 1 this.bits 53 @@ -76956,7 +77178,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2674 this -1926788825 +532445947 1 this.bits 53 @@ -76969,7 +77191,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2674 this -1926788825 +532445947 1 this.bits 53 @@ -76985,7 +77207,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2675 this -1926788825 +532445947 1 this.bits 53 @@ -76998,7 +77220,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2675 this -1926788825 +532445947 1 this.bits 53 @@ -77014,7 +77236,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2676 this -1926788825 +532445947 1 this.bits 53 @@ -77027,7 +77249,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2676 this -1926788825 +532445947 1 this.bits 53 @@ -77043,7 +77265,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2677 this -1926788825 +532445947 1 this.bits 53 @@ -77056,7 +77278,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2677 this -1926788825 +532445947 1 this.bits 53 @@ -77072,7 +77294,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2678 this -1926788825 +532445947 1 this.bits 53 @@ -77085,7 +77307,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2678 this -1926788825 +532445947 1 this.bits 53 @@ -77101,7 +77323,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2679 this -1926788825 +532445947 1 this.bits 53 @@ -77114,7 +77336,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2679 this -1926788825 +532445947 1 this.bits 53 @@ -77130,7 +77352,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2680 this -1926788825 +532445947 1 this.bits 53 @@ -77143,7 +77365,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2680 this -1926788825 +532445947 1 this.bits 53 @@ -77159,7 +77381,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2681 this -1926788825 +532445947 1 this.bits 53 @@ -77172,7 +77394,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2681 this -1926788825 +532445947 1 this.bits 53 @@ -77185,7 +77407,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2682 this -1926788825 +532445947 1 this.bits 53 @@ -77198,7 +77420,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2682 this -1926788825 +532445947 1 this.bits 53 @@ -77214,7 +77436,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2683 this -1926788825 +532445947 1 this.bits 53 @@ -77227,7 +77449,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2683 this -1926788825 +532445947 1 this.bits 53 @@ -77243,7 +77465,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2684 this -1926788825 +532445947 1 this.bits 53 @@ -77256,7 +77478,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2684 this -1926788825 +532445947 1 this.bits 53 @@ -77272,7 +77494,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2685 this -1926788825 +532445947 1 this.bits 53 @@ -77285,7 +77507,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2685 this -1926788825 +532445947 1 this.bits 53 @@ -77301,7 +77523,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2686 this -1926788825 +532445947 1 this.bits 53 @@ -77314,7 +77536,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2686 this -1926788825 +532445947 1 this.bits 53 @@ -77330,7 +77552,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2687 this -1926788825 +532445947 1 this.bits 53 @@ -77343,7 +77565,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2687 this -1926788825 +532445947 1 this.bits 53 @@ -77359,7 +77581,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2688 this -1926788825 +532445947 1 this.bits 53 @@ -77372,7 +77594,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2688 this -1926788825 +532445947 1 this.bits 53 @@ -77388,7 +77610,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2689 this -1926788825 +532445947 1 this.bits 53 @@ -77401,7 +77623,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2689 this -1926788825 +532445947 1 this.bits 53 @@ -77417,7 +77639,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2690 this -1926788825 +532445947 1 this.bits 53 @@ -77430,7 +77652,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2690 this -1926788825 +532445947 1 this.bits 49 @@ -77443,7 +77665,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2691 this -1926788825 +532445947 1 this.bits 49 @@ -77456,7 +77678,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2691 this -1926788825 +532445947 1 this.bits 49 @@ -77472,7 +77694,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2692 this -1926788825 +532445947 1 this.bits 49 @@ -77485,7 +77707,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2692 this -1926788825 +532445947 1 this.bits 49 @@ -77501,7 +77723,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2693 this -1926788825 +532445947 1 this.bits 49 @@ -77514,7 +77736,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2693 this -1926788825 +532445947 1 this.bits 49 @@ -77530,7 +77752,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2694 this -1926788825 +532445947 1 this.bits 49 @@ -77543,7 +77765,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2694 this -1926788825 +532445947 1 this.bits 49 @@ -77559,7 +77781,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2695 this -1926788825 +532445947 1 this.bits 49 @@ -77572,7 +77794,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2695 this -1926788825 +532445947 1 this.bits 49 @@ -77588,7 +77810,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2696 this -1926788825 +532445947 1 this.bits 49 @@ -77601,7 +77823,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2696 this -1926788825 +532445947 1 this.bits 49 @@ -77617,7 +77839,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2697 this -1926788825 +532445947 1 this.bits 49 @@ -77630,7 +77852,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2697 this -1926788825 +532445947 1 this.bits 49 @@ -77646,7 +77868,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2698 this -1926788825 +532445947 1 this.bits 49 @@ -77659,7 +77881,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2698 this -1926788825 +532445947 1 this.bits 49 @@ -77675,7 +77897,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2699 this -1926788825 +532445947 1 this.bits 49 @@ -77688,7 +77910,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2699 this -1926788825 +532445947 1 this.bits 49 @@ -77701,7 +77923,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2700 this -1926788825 +532445947 1 this.bits 49 @@ -77714,7 +77936,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2700 this -1926788825 +532445947 1 this.bits 49 @@ -77730,7 +77952,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2701 this -1926788825 +532445947 1 this.bits 49 @@ -77743,7 +77965,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2701 this -1926788825 +532445947 1 this.bits 49 @@ -77759,7 +77981,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2702 this -1926788825 +532445947 1 this.bits 49 @@ -77772,7 +77994,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2702 this -1926788825 +532445947 1 this.bits 49 @@ -77788,7 +78010,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2703 this -1926788825 +532445947 1 this.bits 49 @@ -77801,7 +78023,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2703 this -1926788825 +532445947 1 this.bits 49 @@ -77817,7 +78039,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2704 this -1926788825 +532445947 1 this.bits 49 @@ -77830,7 +78052,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2704 this -1926788825 +532445947 1 this.bits 49 @@ -77846,7 +78068,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2705 this -1926788825 +532445947 1 this.bits 49 @@ -77859,7 +78081,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2705 this -1926788825 +532445947 1 this.bits 49 @@ -77875,7 +78097,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2706 this -1926788825 +532445947 1 this.bits 49 @@ -77888,7 +78110,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2706 this -1926788825 +532445947 1 this.bits 49 @@ -77904,7 +78126,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2707 this -1926788825 +532445947 1 this.bits 49 @@ -77917,7 +78139,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2707 this -1926788825 +532445947 1 this.bits 49 @@ -77933,7 +78155,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2708 this -1926788825 +532445947 1 this.bits 49 @@ -77946,7 +78168,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2708 this -1926788825 +532445947 1 this.bits 48 @@ -77959,7 +78181,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2709 this -1926788825 +532445947 1 this.bits 48 @@ -77972,7 +78194,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2709 this -1926788825 +532445947 1 this.bits 48 @@ -77988,7 +78210,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2710 this -1926788825 +532445947 1 this.bits 48 @@ -78001,7 +78223,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2710 this -1926788825 +532445947 1 this.bits 48 @@ -78017,7 +78239,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2711 this -1926788825 +532445947 1 this.bits 48 @@ -78030,7 +78252,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2711 this -1926788825 +532445947 1 this.bits 48 @@ -78046,7 +78268,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2712 this -1926788825 +532445947 1 this.bits 48 @@ -78059,7 +78281,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2712 this -1926788825 +532445947 1 this.bits 48 @@ -78075,7 +78297,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2713 this -1926788825 +532445947 1 this.bits 48 @@ -78088,7 +78310,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2713 this -1926788825 +532445947 1 this.bits 48 @@ -78104,7 +78326,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2714 this -1926788825 +532445947 1 this.bits 48 @@ -78117,7 +78339,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2714 this -1926788825 +532445947 1 this.bits 48 @@ -78133,7 +78355,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2715 this -1926788825 +532445947 1 this.bits 48 @@ -78146,7 +78368,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2715 this -1926788825 +532445947 1 this.bits 48 @@ -78162,7 +78384,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2716 this -1926788825 +532445947 1 this.bits 48 @@ -78175,7 +78397,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2716 this -1926788825 +532445947 1 this.bits 48 @@ -78191,7 +78413,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2717 this -1926788825 +532445947 1 this.bits 48 @@ -78204,7 +78426,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2717 this -1926788825 +532445947 1 this.bits 52 @@ -78217,7 +78439,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2718 this -1926788825 +532445947 1 this.bits 52 @@ -78230,7 +78452,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2718 this -1926788825 +532445947 1 this.bits 52 @@ -78246,7 +78468,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2719 this -1926788825 +532445947 1 this.bits 52 @@ -78259,7 +78481,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2719 this -1926788825 +532445947 1 this.bits 52 @@ -78275,7 +78497,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2720 this -1926788825 +532445947 1 this.bits 52 @@ -78288,7 +78510,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2720 this -1926788825 +532445947 1 this.bits 52 @@ -78304,7 +78526,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2721 this -1926788825 +532445947 1 this.bits 52 @@ -78317,7 +78539,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2721 this -1926788825 +532445947 1 this.bits 52 @@ -78333,7 +78555,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2722 this -1926788825 +532445947 1 this.bits 52 @@ -78346,7 +78568,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2722 this -1926788825 +532445947 1 this.bits 52 @@ -78362,7 +78584,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2723 this -1926788825 +532445947 1 this.bits 52 @@ -78375,7 +78597,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2723 this -1926788825 +532445947 1 this.bits 52 @@ -78391,7 +78613,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2724 this -1926788825 +532445947 1 this.bits 52 @@ -78404,7 +78626,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2724 this -1926788825 +532445947 1 this.bits 52 @@ -78420,7 +78642,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2725 this -1926788825 +532445947 1 this.bits 52 @@ -78433,7 +78655,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2725 this -1926788825 +532445947 1 this.bits 52 @@ -78449,7 +78671,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2726 this -1926788825 +532445947 1 this.bits 52 @@ -78462,7 +78684,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2726 this -1926788825 +532445947 1 this.bits 52 @@ -78475,7 +78697,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2727 this -1926788825 +532445947 1 this.bits 52 @@ -78488,7 +78710,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2727 this -1926788825 +532445947 1 this.bits 52 @@ -78504,7 +78726,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2728 this -1926788825 +532445947 1 this.bits 52 @@ -78517,7 +78739,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2728 this -1926788825 +532445947 1 this.bits 52 @@ -78533,7 +78755,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2729 this -1926788825 +532445947 1 this.bits 52 @@ -78546,7 +78768,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2729 this -1926788825 +532445947 1 this.bits 52 @@ -78562,7 +78784,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2730 this -1926788825 +532445947 1 this.bits 52 @@ -78575,7 +78797,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2730 this -1926788825 +532445947 1 this.bits 52 @@ -78591,7 +78813,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2731 this -1926788825 +532445947 1 this.bits 52 @@ -78604,7 +78826,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2731 this -1926788825 +532445947 1 this.bits 52 @@ -78620,7 +78842,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2732 this -1926788825 +532445947 1 this.bits 52 @@ -78633,7 +78855,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2732 this -1926788825 +532445947 1 this.bits 52 @@ -78649,7 +78871,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2733 this -1926788825 +532445947 1 this.bits 52 @@ -78662,7 +78884,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2733 this -1926788825 +532445947 1 this.bits 52 @@ -78678,7 +78900,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2734 this -1926788825 +532445947 1 this.bits 52 @@ -78691,7 +78913,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2734 this -1926788825 +532445947 1 this.bits 52 @@ -78707,7 +78929,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2735 this -1926788825 +532445947 1 this.bits 52 @@ -78720,7 +78942,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2735 this -1926788825 +532445947 1 this.bits 116 @@ -78733,7 +78955,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2736 this -1926788825 +532445947 1 this.bits 116 @@ -78746,7 +78968,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2736 this -1926788825 +532445947 1 this.bits 116 @@ -78762,7 +78984,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2737 this -1926788825 +532445947 1 this.bits 116 @@ -78775,7 +78997,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2737 this -1926788825 +532445947 1 this.bits 116 @@ -78791,7 +79013,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2738 this -1926788825 +532445947 1 this.bits 116 @@ -78804,7 +79026,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2738 this -1926788825 +532445947 1 this.bits 116 @@ -78820,7 +79042,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2739 this -1926788825 +532445947 1 this.bits 116 @@ -78833,7 +79055,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2739 this -1926788825 +532445947 1 this.bits 116 @@ -78849,7 +79071,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2740 this -1926788825 +532445947 1 this.bits 116 @@ -78862,7 +79084,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2740 this -1926788825 +532445947 1 this.bits 116 @@ -78878,7 +79100,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2741 this -1926788825 +532445947 1 this.bits 116 @@ -78891,7 +79113,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2741 this -1926788825 +532445947 1 this.bits 116 @@ -78907,7 +79129,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2742 this -1926788825 +532445947 1 this.bits 116 @@ -78920,7 +79142,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2742 this -1926788825 +532445947 1 this.bits 116 @@ -78936,7 +79158,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2743 this -1926788825 +532445947 1 this.bits 116 @@ -78949,7 +79171,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2743 this -1926788825 +532445947 1 this.bits 116 @@ -78965,7 +79187,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2744 this -1926788825 +532445947 1 this.bits 116 @@ -78978,7 +79200,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2744 this -1926788825 +532445947 1 this.bits 116 @@ -78991,7 +79213,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2745 this -1926788825 +532445947 1 this.bits 116 @@ -79004,7 +79226,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2745 this -1926788825 +532445947 1 this.bits 116 @@ -79020,7 +79242,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2746 this -1926788825 +532445947 1 this.bits 116 @@ -79033,7 +79255,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2746 this -1926788825 +532445947 1 this.bits 116 @@ -79049,7 +79271,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2747 this -1926788825 +532445947 1 this.bits 116 @@ -79062,7 +79284,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2747 this -1926788825 +532445947 1 this.bits 116 @@ -79078,7 +79300,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2748 this -1926788825 +532445947 1 this.bits 116 @@ -79091,7 +79313,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2748 this -1926788825 +532445947 1 this.bits 116 @@ -79107,7 +79329,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2749 this -1926788825 +532445947 1 this.bits 116 @@ -79120,7 +79342,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2749 this -1926788825 +532445947 1 this.bits 116 @@ -79136,7 +79358,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2750 this -1926788825 +532445947 1 this.bits 116 @@ -79149,7 +79371,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2750 this -1926788825 +532445947 1 this.bits 116 @@ -79165,7 +79387,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2751 this -1926788825 +532445947 1 this.bits 116 @@ -79178,7 +79400,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2751 this -1926788825 +532445947 1 this.bits 116 @@ -79194,7 +79416,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2752 this -1926788825 +532445947 1 this.bits 116 @@ -79207,7 +79429,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2752 this -1926788825 +532445947 1 this.bits 116 @@ -79223,7 +79445,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2753 this -1926788825 +532445947 1 this.bits 116 @@ -79236,7 +79458,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2753 this -1926788825 +532445947 1 this.bits 118 @@ -79249,7 +79471,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2754 this -1926788825 +532445947 1 this.bits 118 @@ -79262,7 +79484,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2754 this -1926788825 +532445947 1 this.bits 118 @@ -79278,7 +79500,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2755 this -1926788825 +532445947 1 this.bits 118 @@ -79291,7 +79513,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2755 this -1926788825 +532445947 1 this.bits 118 @@ -79307,7 +79529,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2756 this -1926788825 +532445947 1 this.bits 118 @@ -79320,7 +79542,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2756 this -1926788825 +532445947 1 this.bits 118 @@ -79336,7 +79558,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2757 this -1926788825 +532445947 1 this.bits 118 @@ -79349,7 +79571,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2757 this -1926788825 +532445947 1 this.bits 118 @@ -79365,7 +79587,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2758 this -1926788825 +532445947 1 this.bits 118 @@ -79378,7 +79600,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2758 this -1926788825 +532445947 1 this.bits 118 @@ -79394,7 +79616,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2759 this -1926788825 +532445947 1 this.bits 118 @@ -79407,7 +79629,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2759 this -1926788825 +532445947 1 this.bits 118 @@ -79423,7 +79645,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2760 this -1926788825 +532445947 1 this.bits 118 @@ -79436,7 +79658,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2760 this -1926788825 +532445947 1 this.bits 118 @@ -79452,7 +79674,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2761 this -1926788825 +532445947 1 this.bits 118 @@ -79465,7 +79687,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2761 this -1926788825 +532445947 1 this.bits 118 @@ -79481,7 +79703,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2762 this -1926788825 +532445947 1 this.bits 118 @@ -79494,7 +79716,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2762 this -1926788825 +532445947 1 this.bits 102 @@ -79507,7 +79729,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2763 this -1926788825 +532445947 1 this.bits 102 @@ -79520,7 +79742,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2763 this -1926788825 +532445947 1 this.bits 102 @@ -79536,7 +79758,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2764 this -1926788825 +532445947 1 this.bits 102 @@ -79549,7 +79771,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2764 this -1926788825 +532445947 1 this.bits 102 @@ -79565,7 +79787,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2765 this -1926788825 +532445947 1 this.bits 102 @@ -79578,7 +79800,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2765 this -1926788825 +532445947 1 this.bits 102 @@ -79594,7 +79816,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2766 this -1926788825 +532445947 1 this.bits 102 @@ -79607,7 +79829,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2766 this -1926788825 +532445947 1 this.bits 102 @@ -79623,7 +79845,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2767 this -1926788825 +532445947 1 this.bits 102 @@ -79636,7 +79858,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2767 this -1926788825 +532445947 1 this.bits 102 @@ -79652,7 +79874,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2768 this -1926788825 +532445947 1 this.bits 102 @@ -79665,7 +79887,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2768 this -1926788825 +532445947 1 this.bits 102 @@ -79681,7 +79903,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2769 this -1926788825 +532445947 1 this.bits 102 @@ -79694,7 +79916,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2769 this -1926788825 +532445947 1 this.bits 102 @@ -79710,7 +79932,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2770 this -1926788825 +532445947 1 this.bits 102 @@ -79723,7 +79945,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2770 this -1926788825 +532445947 1 this.bits 102 @@ -79739,7 +79961,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2771 this -1926788825 +532445947 1 this.bits 102 @@ -79752,7 +79974,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2771 this -1926788825 +532445947 1 this.bits 102 @@ -79765,7 +79987,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2772 this -1926788825 +532445947 1 this.bits 102 @@ -79778,7 +80000,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2772 this -1926788825 +532445947 1 this.bits 102 @@ -79794,7 +80016,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2773 this -1926788825 +532445947 1 this.bits 102 @@ -79807,7 +80029,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2773 this -1926788825 +532445947 1 this.bits 102 @@ -79823,7 +80045,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2774 this -1926788825 +532445947 1 this.bits 102 @@ -79836,7 +80058,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2774 this -1926788825 +532445947 1 this.bits 102 @@ -79852,7 +80074,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2775 this -1926788825 +532445947 1 this.bits 102 @@ -79865,7 +80087,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2775 this -1926788825 +532445947 1 this.bits 102 @@ -79881,7 +80103,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2776 this -1926788825 +532445947 1 this.bits 102 @@ -79894,7 +80116,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2776 this -1926788825 +532445947 1 this.bits 102 @@ -79910,7 +80132,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2777 this -1926788825 +532445947 1 this.bits 102 @@ -79923,7 +80145,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2777 this -1926788825 +532445947 1 this.bits 102 @@ -79939,7 +80161,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2778 this -1926788825 +532445947 1 this.bits 102 @@ -79952,7 +80174,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2778 this -1926788825 +532445947 1 this.bits 102 @@ -79968,7 +80190,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2779 this -1926788825 +532445947 1 this.bits 102 @@ -79981,7 +80203,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2779 this -1926788825 +532445947 1 this.bits 102 @@ -79997,7 +80219,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2780 this -1926788825 +532445947 1 this.bits 102 @@ -80010,7 +80232,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2780 this -1926788825 +532445947 1 this.bits 102 @@ -80023,7 +80245,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2781 this -1926788825 +532445947 1 this.bits 102 @@ -80036,7 +80258,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2781 this -1926788825 +532445947 1 this.bits 102 @@ -80052,7 +80274,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2782 this -1926788825 +532445947 1 this.bits 102 @@ -80065,7 +80287,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2782 this -1926788825 +532445947 1 this.bits 102 @@ -80081,7 +80303,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2783 this -1926788825 +532445947 1 this.bits 102 @@ -80094,7 +80316,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2783 this -1926788825 +532445947 1 this.bits 102 @@ -80110,7 +80332,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2784 this -1926788825 +532445947 1 this.bits 102 @@ -80123,7 +80345,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2784 this -1926788825 +532445947 1 this.bits 102 @@ -80139,7 +80361,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2785 this -1926788825 +532445947 1 this.bits 102 @@ -80152,7 +80374,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2785 this -1926788825 +532445947 1 this.bits 102 @@ -80168,7 +80390,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2786 this -1926788825 +532445947 1 this.bits 102 @@ -80181,7 +80403,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2786 this -1926788825 +532445947 1 this.bits 102 @@ -80197,7 +80419,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2787 this -1926788825 +532445947 1 this.bits 102 @@ -80210,7 +80432,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2787 this -1926788825 +532445947 1 this.bits 102 @@ -80226,7 +80448,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2788 this -1926788825 +532445947 1 this.bits 102 @@ -80239,7 +80461,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2788 this -1926788825 +532445947 1 this.bits 102 @@ -80255,7 +80477,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2789 this -1926788825 +532445947 1 this.bits 102 @@ -80268,7 +80490,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2789 this -1926788825 +532445947 1 this.bits 102 @@ -80281,7 +80503,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2790 this -1926788825 +532445947 1 this.bits 102 @@ -80294,7 +80516,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2790 this -1926788825 +532445947 1 this.bits 102 @@ -80310,7 +80532,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2791 this -1926788825 +532445947 1 this.bits 102 @@ -80323,7 +80545,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2791 this -1926788825 +532445947 1 this.bits 102 @@ -80339,7 +80561,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2792 this -1926788825 +532445947 1 this.bits 102 @@ -80352,7 +80574,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2792 this -1926788825 +532445947 1 this.bits 102 @@ -80368,7 +80590,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2793 this -1926788825 +532445947 1 this.bits 102 @@ -80381,7 +80603,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2793 this -1926788825 +532445947 1 this.bits 102 @@ -80397,7 +80619,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2794 this -1926788825 +532445947 1 this.bits 102 @@ -80410,7 +80632,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2794 this -1926788825 +532445947 1 this.bits 102 @@ -80426,7 +80648,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2795 this -1926788825 +532445947 1 this.bits 102 @@ -80439,7 +80661,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2795 this -1926788825 +532445947 1 this.bits 102 @@ -80455,7 +80677,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2796 this -1926788825 +532445947 1 this.bits 102 @@ -80468,7 +80690,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2796 this -1926788825 +532445947 1 this.bits 102 @@ -80484,7 +80706,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2797 this -1926788825 +532445947 1 this.bits 102 @@ -80497,7 +80719,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2797 this -1926788825 +532445947 1 this.bits 102 @@ -80513,7 +80735,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2798 this -1926788825 +532445947 1 this.bits 102 @@ -80526,7 +80748,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2798 this -1926788825 +532445947 1 this.bits 70 @@ -80539,7 +80761,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2799 this -1926788825 +532445947 1 this.bits 70 @@ -80552,7 +80774,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2799 this -1926788825 +532445947 1 this.bits 70 @@ -80568,7 +80790,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2800 this -1926788825 +532445947 1 this.bits 70 @@ -80581,7 +80803,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2800 this -1926788825 +532445947 1 this.bits 70 @@ -80597,7 +80819,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2801 this -1926788825 +532445947 1 this.bits 70 @@ -80610,7 +80832,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2801 this -1926788825 +532445947 1 this.bits 70 @@ -80626,7 +80848,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2802 this -1926788825 +532445947 1 this.bits 70 @@ -80639,7 +80861,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2802 this -1926788825 +532445947 1 this.bits 70 @@ -80655,7 +80877,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2803 this -1926788825 +532445947 1 this.bits 70 @@ -80668,7 +80890,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2803 this -1926788825 +532445947 1 this.bits 70 @@ -80684,7 +80906,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2804 this -1926788825 +532445947 1 this.bits 70 @@ -80697,7 +80919,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2804 this -1926788825 +532445947 1 this.bits 70 @@ -80713,7 +80935,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2805 this -1926788825 +532445947 1 this.bits 70 @@ -80726,7 +80948,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2805 this -1926788825 +532445947 1 this.bits 70 @@ -80742,7 +80964,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2806 this -1926788825 +532445947 1 this.bits 70 @@ -80755,7 +80977,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2806 this -1926788825 +532445947 1 this.bits 70 @@ -80771,7 +80993,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2807 this -1926788825 +532445947 1 this.bits 70 @@ -80784,7 +81006,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2807 this -1926788825 +532445947 1 this.bits 102 @@ -80797,7 +81019,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2808 this -1926788825 +532445947 1 this.bits 102 @@ -80810,7 +81032,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2808 this -1926788825 +532445947 1 this.bits 102 @@ -80826,7 +81048,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2809 this -1926788825 +532445947 1 this.bits 102 @@ -80839,7 +81061,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2809 this -1926788825 +532445947 1 this.bits 102 @@ -80855,7 +81077,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2810 this -1926788825 +532445947 1 this.bits 102 @@ -80868,7 +81090,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2810 this -1926788825 +532445947 1 this.bits 102 @@ -80884,7 +81106,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2811 this -1926788825 +532445947 1 this.bits 102 @@ -80897,7 +81119,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2811 this -1926788825 +532445947 1 this.bits 102 @@ -80913,7 +81135,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2812 this -1926788825 +532445947 1 this.bits 102 @@ -80926,7 +81148,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2812 this -1926788825 +532445947 1 this.bits 102 @@ -80942,7 +81164,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2813 this -1926788825 +532445947 1 this.bits 102 @@ -80955,7 +81177,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2813 this -1926788825 +532445947 1 this.bits 102 @@ -80971,7 +81193,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2814 this -1926788825 +532445947 1 this.bits 102 @@ -80984,7 +81206,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2814 this -1926788825 +532445947 1 this.bits 102 @@ -81000,7 +81222,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2815 this -1926788825 +532445947 1 this.bits 102 @@ -81013,7 +81235,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2815 this -1926788825 +532445947 1 this.bits 102 @@ -81029,7 +81251,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2816 this -1926788825 +532445947 1 this.bits 102 @@ -81042,7 +81264,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2816 this -1926788825 +532445947 1 this.bits 98 @@ -81055,7 +81277,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2817 this -1926788825 +532445947 1 this.bits 98 @@ -81068,7 +81290,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2817 this -1926788825 +532445947 1 this.bits 98 @@ -81084,7 +81306,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2818 this -1926788825 +532445947 1 this.bits 98 @@ -81097,7 +81319,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2818 this -1926788825 +532445947 1 this.bits 98 @@ -81113,7 +81335,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2819 this -1926788825 +532445947 1 this.bits 98 @@ -81126,7 +81348,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2819 this -1926788825 +532445947 1 this.bits 98 @@ -81142,7 +81364,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2820 this -1926788825 +532445947 1 this.bits 98 @@ -81155,7 +81377,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2820 this -1926788825 +532445947 1 this.bits 98 @@ -81171,7 +81393,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2821 this -1926788825 +532445947 1 this.bits 98 @@ -81184,7 +81406,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2821 this -1926788825 +532445947 1 this.bits 98 @@ -81200,7 +81422,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2822 this -1926788825 +532445947 1 this.bits 98 @@ -81213,7 +81435,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2822 this -1926788825 +532445947 1 this.bits 98 @@ -81229,7 +81451,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2823 this -1926788825 +532445947 1 this.bits 98 @@ -81242,7 +81464,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2823 this -1926788825 +532445947 1 this.bits 98 @@ -81258,7 +81480,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2824 this -1926788825 +532445947 1 this.bits 98 @@ -81271,7 +81493,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2824 this -1926788825 +532445947 1 this.bits 98 @@ -81287,7 +81509,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2825 this -1926788825 +532445947 1 this.bits 98 @@ -81300,7 +81522,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2825 this -1926788825 +532445947 1 this.bits 98 @@ -81313,7 +81535,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2826 this -1926788825 +532445947 1 this.bits 98 @@ -81326,7 +81548,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2826 this -1926788825 +532445947 1 this.bits 98 @@ -81342,7 +81564,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2827 this -1926788825 +532445947 1 this.bits 98 @@ -81355,7 +81577,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2827 this -1926788825 +532445947 1 this.bits 98 @@ -81371,7 +81593,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2828 this -1926788825 +532445947 1 this.bits 98 @@ -81384,7 +81606,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2828 this -1926788825 +532445947 1 this.bits 98 @@ -81400,7 +81622,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2829 this -1926788825 +532445947 1 this.bits 98 @@ -81413,7 +81635,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2829 this -1926788825 +532445947 1 this.bits 98 @@ -81429,7 +81651,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2830 this -1926788825 +532445947 1 this.bits 98 @@ -81442,7 +81664,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2830 this -1926788825 +532445947 1 this.bits 98 @@ -81458,7 +81680,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2831 this -1926788825 +532445947 1 this.bits 98 @@ -81471,7 +81693,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2831 this -1926788825 +532445947 1 this.bits 98 @@ -81487,7 +81709,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2832 this -1926788825 +532445947 1 this.bits 98 @@ -81500,7 +81722,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2832 this -1926788825 +532445947 1 this.bits 98 @@ -81516,7 +81738,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2833 this -1926788825 +532445947 1 this.bits 98 @@ -81529,7 +81751,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2833 this -1926788825 +532445947 1 this.bits 98 @@ -81545,7 +81767,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2834 this -1926788825 +532445947 1 this.bits 98 @@ -81558,7 +81780,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2834 this -1926788825 +532445947 1 this.bits 98 @@ -81571,7 +81793,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2835 this -1926788825 +532445947 1 this.bits 98 @@ -81584,7 +81806,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2835 this -1926788825 +532445947 1 this.bits 98 @@ -81600,7 +81822,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2836 this -1926788825 +532445947 1 this.bits 98 @@ -81613,7 +81835,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2836 this -1926788825 +532445947 1 this.bits 98 @@ -81629,7 +81851,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2837 this -1926788825 +532445947 1 this.bits 98 @@ -81642,7 +81864,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2837 this -1926788825 +532445947 1 this.bits 98 @@ -81658,7 +81880,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2838 this -1926788825 +532445947 1 this.bits 98 @@ -81671,7 +81893,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2838 this -1926788825 +532445947 1 this.bits 98 @@ -81687,7 +81909,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2839 this -1926788825 +532445947 1 this.bits 98 @@ -81700,7 +81922,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2839 this -1926788825 +532445947 1 this.bits 98 @@ -81716,7 +81938,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2840 this -1926788825 +532445947 1 this.bits 98 @@ -81729,7 +81951,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2840 this -1926788825 +532445947 1 this.bits 98 @@ -81745,7 +81967,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2841 this -1926788825 +532445947 1 this.bits 98 @@ -81758,7 +81980,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2841 this -1926788825 +532445947 1 this.bits 98 @@ -81774,7 +81996,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2842 this -1926788825 +532445947 1 this.bits 98 @@ -81787,7 +82009,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2842 this -1926788825 +532445947 1 this.bits 98 @@ -81803,7 +82025,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2843 this -1926788825 +532445947 1 this.bits 98 @@ -81816,7 +82038,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2843 this -1926788825 +532445947 1 this.bits 114 @@ -81829,7 +82051,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2844 this -1926788825 +532445947 1 this.bits 114 @@ -81842,7 +82064,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2844 this -1926788825 +532445947 1 this.bits 114 @@ -81858,7 +82080,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2845 this -1926788825 +532445947 1 this.bits 114 @@ -81871,7 +82093,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2845 this -1926788825 +532445947 1 this.bits 114 @@ -81887,7 +82109,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2846 this -1926788825 +532445947 1 this.bits 114 @@ -81900,7 +82122,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2846 this -1926788825 +532445947 1 this.bits 114 @@ -81916,7 +82138,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2847 this -1926788825 +532445947 1 this.bits 114 @@ -81929,7 +82151,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2847 this -1926788825 +532445947 1 this.bits 114 @@ -81945,7 +82167,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2848 this -1926788825 +532445947 1 this.bits 114 @@ -81958,7 +82180,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2848 this -1926788825 +532445947 1 this.bits 114 @@ -81974,7 +82196,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2849 this -1926788825 +532445947 1 this.bits 114 @@ -81987,7 +82209,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2849 this -1926788825 +532445947 1 this.bits 114 @@ -82003,7 +82225,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2850 this -1926788825 +532445947 1 this.bits 114 @@ -82016,7 +82238,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2850 this -1926788825 +532445947 1 this.bits 114 @@ -82032,7 +82254,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2851 this -1926788825 +532445947 1 this.bits 114 @@ -82045,7 +82267,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2851 this -1926788825 +532445947 1 this.bits 114 @@ -82061,7 +82283,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2852 this -1926788825 +532445947 1 this.bits 114 @@ -82074,7 +82296,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2852 this -1926788825 +532445947 1 this.bits 114 @@ -82087,7 +82309,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2853 this -1926788825 +532445947 1 this.bits 114 @@ -82100,7 +82322,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2853 this -1926788825 +532445947 1 this.bits 114 @@ -82116,7 +82338,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2854 this -1926788825 +532445947 1 this.bits 114 @@ -82129,7 +82351,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2854 this -1926788825 +532445947 1 this.bits 114 @@ -82145,7 +82367,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2855 this -1926788825 +532445947 1 this.bits 114 @@ -82158,7 +82380,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2855 this -1926788825 +532445947 1 this.bits 114 @@ -82174,7 +82396,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2856 this -1926788825 +532445947 1 this.bits 114 @@ -82187,7 +82409,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2856 this -1926788825 +532445947 1 this.bits 114 @@ -82203,7 +82425,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2857 this -1926788825 +532445947 1 this.bits 114 @@ -82216,7 +82438,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2857 this -1926788825 +532445947 1 this.bits 114 @@ -82232,7 +82454,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2858 this -1926788825 +532445947 1 this.bits 114 @@ -82245,7 +82467,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2858 this -1926788825 +532445947 1 this.bits 114 @@ -82261,7 +82483,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2859 this -1926788825 +532445947 1 this.bits 114 @@ -82274,7 +82496,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2859 this -1926788825 +532445947 1 this.bits 114 @@ -82290,7 +82512,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2860 this -1926788825 +532445947 1 this.bits 114 @@ -82303,7 +82525,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2860 this -1926788825 +532445947 1 this.bits 114 @@ -82319,7 +82541,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2861 this -1926788825 +532445947 1 this.bits 114 @@ -82332,7 +82554,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2861 this -1926788825 +532445947 1 this.bits 122 @@ -82345,7 +82567,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2862 this -1926788825 +532445947 1 this.bits 122 @@ -82358,7 +82580,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2862 this -1926788825 +532445947 1 this.bits 122 @@ -82374,7 +82596,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2863 this -1926788825 +532445947 1 this.bits 122 @@ -82387,7 +82609,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2863 this -1926788825 +532445947 1 this.bits 122 @@ -82403,7 +82625,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2864 this -1926788825 +532445947 1 this.bits 122 @@ -82416,7 +82638,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2864 this -1926788825 +532445947 1 this.bits 122 @@ -82432,7 +82654,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2865 this -1926788825 +532445947 1 this.bits 122 @@ -82445,7 +82667,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2865 this -1926788825 +532445947 1 this.bits 122 @@ -82461,7 +82683,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2866 this -1926788825 +532445947 1 this.bits 122 @@ -82474,7 +82696,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2866 this -1926788825 +532445947 1 this.bits 122 @@ -82490,7 +82712,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2867 this -1926788825 +532445947 1 this.bits 122 @@ -82503,7 +82725,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2867 this -1926788825 +532445947 1 this.bits 122 @@ -82519,7 +82741,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2868 this -1926788825 +532445947 1 this.bits 122 @@ -82532,7 +82754,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2868 this -1926788825 +532445947 1 this.bits 122 @@ -82548,7 +82770,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2869 this -1926788825 +532445947 1 this.bits 122 @@ -82561,7 +82783,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2869 this -1926788825 +532445947 1 this.bits 122 @@ -82577,7 +82799,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2870 this -1926788825 +532445947 1 this.bits 122 @@ -82590,7 +82812,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2870 this -1926788825 +532445947 1 this.bits 106 @@ -82603,7 +82825,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2871 this -1926788825 +532445947 1 this.bits 106 @@ -82616,7 +82838,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2871 this -1926788825 +532445947 1 this.bits 106 @@ -82632,7 +82854,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2872 this -1926788825 +532445947 1 this.bits 106 @@ -82645,7 +82867,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2872 this -1926788825 +532445947 1 this.bits 106 @@ -82661,7 +82883,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2873 this -1926788825 +532445947 1 this.bits 106 @@ -82674,7 +82896,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2873 this -1926788825 +532445947 1 this.bits 106 @@ -82690,7 +82912,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2874 this -1926788825 +532445947 1 this.bits 106 @@ -82703,7 +82925,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2874 this -1926788825 +532445947 1 this.bits 106 @@ -82719,7 +82941,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2875 this -1926788825 +532445947 1 this.bits 106 @@ -82732,7 +82954,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2875 this -1926788825 +532445947 1 this.bits 106 @@ -82748,7 +82970,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2876 this -1926788825 +532445947 1 this.bits 106 @@ -82761,7 +82983,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2876 this -1926788825 +532445947 1 this.bits 106 @@ -82777,7 +82999,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2877 this -1926788825 +532445947 1 this.bits 106 @@ -82790,7 +83012,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2877 this -1926788825 +532445947 1 this.bits 106 @@ -82806,7 +83028,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2878 this -1926788825 +532445947 1 this.bits 106 @@ -82819,7 +83041,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2878 this -1926788825 +532445947 1 this.bits 106 @@ -82835,7 +83057,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2879 this -1926788825 +532445947 1 this.bits 106 @@ -82848,7 +83070,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2879 this -1926788825 +532445947 1 this.bits 106 @@ -82861,7 +83083,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2880 this -1926788825 +532445947 1 this.bits 106 @@ -82874,7 +83096,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2880 this -1926788825 +532445947 1 this.bits 106 @@ -82890,7 +83112,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2881 this -1926788825 +532445947 1 this.bits 106 @@ -82903,7 +83125,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2881 this -1926788825 +532445947 1 this.bits 106 @@ -82919,7 +83141,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2882 this -1926788825 +532445947 1 this.bits 106 @@ -82932,7 +83154,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2882 this -1926788825 +532445947 1 this.bits 106 @@ -82948,7 +83170,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2883 this -1926788825 +532445947 1 this.bits 106 @@ -82961,7 +83183,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2883 this -1926788825 +532445947 1 this.bits 106 @@ -82977,7 +83199,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2884 this -1926788825 +532445947 1 this.bits 106 @@ -82990,7 +83212,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2884 this -1926788825 +532445947 1 this.bits 106 @@ -83006,7 +83228,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2885 this -1926788825 +532445947 1 this.bits 106 @@ -83019,7 +83241,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2885 this -1926788825 +532445947 1 this.bits 106 @@ -83035,7 +83257,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2886 this -1926788825 +532445947 1 this.bits 106 @@ -83048,7 +83270,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2886 this -1926788825 +532445947 1 this.bits 106 @@ -83064,7 +83286,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2887 this -1926788825 +532445947 1 this.bits 106 @@ -83077,7 +83299,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2887 this -1926788825 +532445947 1 this.bits 106 @@ -83093,7 +83315,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2888 this -1926788825 +532445947 1 this.bits 106 @@ -83106,7 +83328,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2888 this -1926788825 +532445947 1 this.bits 104 @@ -83119,7 +83341,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2889 this -1926788825 +532445947 1 this.bits 104 @@ -83132,7 +83354,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2889 this -1926788825 +532445947 1 this.bits 104 @@ -83148,7 +83370,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2890 this -1926788825 +532445947 1 this.bits 104 @@ -83161,7 +83383,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2890 this -1926788825 +532445947 1 this.bits 104 @@ -83177,7 +83399,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2891 this -1926788825 +532445947 1 this.bits 104 @@ -83190,7 +83412,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2891 this -1926788825 +532445947 1 this.bits 104 @@ -83206,7 +83428,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2892 this -1926788825 +532445947 1 this.bits 104 @@ -83219,7 +83441,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2892 this -1926788825 +532445947 1 this.bits 104 @@ -83235,7 +83457,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2893 this -1926788825 +532445947 1 this.bits 104 @@ -83248,7 +83470,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2893 this -1926788825 +532445947 1 this.bits 104 @@ -83264,7 +83486,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2894 this -1926788825 +532445947 1 this.bits 104 @@ -83277,7 +83499,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2894 this -1926788825 +532445947 1 this.bits 104 @@ -83293,7 +83515,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2895 this -1926788825 +532445947 1 this.bits 104 @@ -83306,7 +83528,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2895 this -1926788825 +532445947 1 this.bits 104 @@ -83322,7 +83544,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2896 this -1926788825 +532445947 1 this.bits 104 @@ -83335,7 +83557,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2896 this -1926788825 +532445947 1 this.bits 104 @@ -83351,7 +83573,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2897 this -1926788825 +532445947 1 this.bits 104 @@ -83364,7 +83586,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2897 this -1926788825 +532445947 1 this.bits 108 @@ -83377,7 +83599,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2898 this -1926788825 +532445947 1 this.bits 108 @@ -83390,7 +83612,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2898 this -1926788825 +532445947 1 this.bits 108 @@ -83406,7 +83628,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2899 this -1926788825 +532445947 1 this.bits 108 @@ -83419,7 +83641,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2899 this -1926788825 +532445947 1 this.bits 108 @@ -83435,7 +83657,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2900 this -1926788825 +532445947 1 this.bits 108 @@ -83448,7 +83670,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2900 this -1926788825 +532445947 1 this.bits 108 @@ -83464,7 +83686,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2901 this -1926788825 +532445947 1 this.bits 108 @@ -83477,7 +83699,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2901 this -1926788825 +532445947 1 this.bits 108 @@ -83493,7 +83715,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2902 this -1926788825 +532445947 1 this.bits 108 @@ -83506,7 +83728,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2902 this -1926788825 +532445947 1 this.bits 108 @@ -83522,7 +83744,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2903 this -1926788825 +532445947 1 this.bits 108 @@ -83535,7 +83757,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2903 this -1926788825 +532445947 1 this.bits 108 @@ -83551,7 +83773,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2904 this -1926788825 +532445947 1 this.bits 108 @@ -83564,7 +83786,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2904 this -1926788825 +532445947 1 this.bits 108 @@ -83580,7 +83802,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2905 this -1926788825 +532445947 1 this.bits 108 @@ -83593,7 +83815,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2905 this -1926788825 +532445947 1 this.bits 108 @@ -83609,7 +83831,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2906 this -1926788825 +532445947 1 this.bits 108 @@ -83622,7 +83844,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2906 this -1926788825 +532445947 1 this.bits 76 @@ -83635,7 +83857,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2907 this -1926788825 +532445947 1 this.bits 76 @@ -83648,7 +83870,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2907 this -1926788825 +532445947 1 this.bits 76 @@ -83664,7 +83886,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2908 this -1926788825 +532445947 1 this.bits 76 @@ -83677,7 +83899,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2908 this -1926788825 +532445947 1 this.bits 76 @@ -83693,7 +83915,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2909 this -1926788825 +532445947 1 this.bits 76 @@ -83706,7 +83928,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2909 this -1926788825 +532445947 1 this.bits 76 @@ -83722,7 +83944,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2910 this -1926788825 +532445947 1 this.bits 76 @@ -83735,7 +83957,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2910 this -1926788825 +532445947 1 this.bits 76 @@ -83751,7 +83973,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2911 this -1926788825 +532445947 1 this.bits 76 @@ -83764,7 +83986,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2911 this -1926788825 +532445947 1 this.bits 76 @@ -83780,7 +84002,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2912 this -1926788825 +532445947 1 this.bits 76 @@ -83793,7 +84015,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2912 this -1926788825 +532445947 1 this.bits 76 @@ -83809,7 +84031,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2913 this -1926788825 +532445947 1 this.bits 76 @@ -83822,7 +84044,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2913 this -1926788825 +532445947 1 this.bits 76 @@ -83838,7 +84060,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2914 this -1926788825 +532445947 1 this.bits 76 @@ -83851,7 +84073,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2914 this -1926788825 +532445947 1 this.bits 76 @@ -83867,7 +84089,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2915 this -1926788825 +532445947 1 this.bits 76 @@ -83880,7 +84102,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2915 this -1926788825 +532445947 1 this.bits 76 @@ -83893,7 +84115,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2916 this -1926788825 +532445947 1 this.bits 76 @@ -83906,7 +84128,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2916 this -1926788825 +532445947 1 this.bits 76 @@ -83922,7 +84144,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2917 this -1926788825 +532445947 1 this.bits 76 @@ -83935,7 +84157,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2917 this -1926788825 +532445947 1 this.bits 76 @@ -83951,7 +84173,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2918 this -1926788825 +532445947 1 this.bits 76 @@ -83964,7 +84186,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2918 this -1926788825 +532445947 1 this.bits 76 @@ -83980,7 +84202,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2919 this -1926788825 +532445947 1 this.bits 76 @@ -83993,7 +84215,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2919 this -1926788825 +532445947 1 this.bits 76 @@ -84009,7 +84231,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2920 this -1926788825 +532445947 1 this.bits 76 @@ -84022,7 +84244,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2920 this -1926788825 +532445947 1 this.bits 76 @@ -84038,7 +84260,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2921 this -1926788825 +532445947 1 this.bits 76 @@ -84051,7 +84273,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2921 this -1926788825 +532445947 1 this.bits 76 @@ -84067,7 +84289,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2922 this -1926788825 +532445947 1 this.bits 76 @@ -84080,7 +84302,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2922 this -1926788825 +532445947 1 this.bits 76 @@ -84096,7 +84318,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2923 this -1926788825 +532445947 1 this.bits 76 @@ -84109,7 +84331,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2923 this -1926788825 +532445947 1 this.bits 76 @@ -84125,7 +84347,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2924 this -1926788825 +532445947 1 this.bits 76 @@ -84138,7 +84360,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2924 this -1926788825 +532445947 1 this.bits 76 @@ -84151,7 +84373,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2925 this -1926788825 +532445947 1 this.bits 76 @@ -84164,7 +84386,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2925 this -1926788825 +532445947 1 this.bits 76 @@ -84180,7 +84402,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2926 this -1926788825 +532445947 1 this.bits 76 @@ -84193,7 +84415,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2926 this -1926788825 +532445947 1 this.bits 76 @@ -84209,7 +84431,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2927 this -1926788825 +532445947 1 this.bits 76 @@ -84222,7 +84444,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2927 this -1926788825 +532445947 1 this.bits 76 @@ -84238,7 +84460,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2928 this -1926788825 +532445947 1 this.bits 76 @@ -84251,7 +84473,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2928 this -1926788825 +532445947 1 this.bits 76 @@ -84267,7 +84489,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2929 this -1926788825 +532445947 1 this.bits 76 @@ -84280,7 +84502,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2929 this -1926788825 +532445947 1 this.bits 76 @@ -84296,7 +84518,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2930 this -1926788825 +532445947 1 this.bits 76 @@ -84309,7 +84531,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2930 this -1926788825 +532445947 1 this.bits 76 @@ -84325,7 +84547,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2931 this -1926788825 +532445947 1 this.bits 76 @@ -84338,7 +84560,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2931 this -1926788825 +532445947 1 this.bits 76 @@ -84354,7 +84576,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2932 this -1926788825 +532445947 1 this.bits 76 @@ -84367,7 +84589,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2932 this -1926788825 +532445947 1 this.bits 76 @@ -84383,7 +84605,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2933 this -1926788825 +532445947 1 this.bits 76 @@ -84396,7 +84618,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2933 this -1926788825 +532445947 1 this.bits 76 @@ -84409,7 +84631,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2934 this -1926788825 +532445947 1 this.bits 76 @@ -84422,7 +84644,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2934 this -1926788825 +532445947 1 this.bits 76 @@ -84438,7 +84660,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2935 this -1926788825 +532445947 1 this.bits 76 @@ -84451,7 +84673,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2935 this -1926788825 +532445947 1 this.bits 76 @@ -84467,7 +84689,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2936 this -1926788825 +532445947 1 this.bits 76 @@ -84480,7 +84702,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2936 this -1926788825 +532445947 1 this.bits 76 @@ -84496,7 +84718,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2937 this -1926788825 +532445947 1 this.bits 76 @@ -84509,7 +84731,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2937 this -1926788825 +532445947 1 this.bits 76 @@ -84525,7 +84747,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2938 this -1926788825 +532445947 1 this.bits 76 @@ -84538,7 +84760,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2938 this -1926788825 +532445947 1 this.bits 76 @@ -84554,7 +84776,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2939 this -1926788825 +532445947 1 this.bits 76 @@ -84567,7 +84789,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2939 this -1926788825 +532445947 1 this.bits 76 @@ -84583,7 +84805,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2940 this -1926788825 +532445947 1 this.bits 76 @@ -84596,7 +84818,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2940 this -1926788825 +532445947 1 this.bits 76 @@ -84612,7 +84834,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2941 this -1926788825 +532445947 1 this.bits 76 @@ -84625,7 +84847,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2941 this -1926788825 +532445947 1 this.bits 76 @@ -84641,7 +84863,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2942 this -1926788825 +532445947 1 this.bits 76 @@ -84654,7 +84876,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2942 this -1926788825 +532445947 1 this.bits 76 @@ -84667,7 +84889,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2943 this -1926788825 +532445947 1 this.bits 76 @@ -84680,7 +84902,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2943 this -1926788825 +532445947 1 this.bits 76 @@ -84696,7 +84918,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2944 this -1926788825 +532445947 1 this.bits 76 @@ -84709,7 +84931,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2944 this -1926788825 +532445947 1 this.bits 76 @@ -84725,7 +84947,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2945 this -1926788825 +532445947 1 this.bits 76 @@ -84738,7 +84960,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2945 this -1926788825 +532445947 1 this.bits 76 @@ -84754,7 +84976,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2946 this -1926788825 +532445947 1 this.bits 76 @@ -84767,7 +84989,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2946 this -1926788825 +532445947 1 this.bits 76 @@ -84783,7 +85005,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2947 this -1926788825 +532445947 1 this.bits 76 @@ -84796,7 +85018,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2947 this -1926788825 +532445947 1 this.bits 76 @@ -84812,7 +85034,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2948 this -1926788825 +532445947 1 this.bits 76 @@ -84825,7 +85047,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2948 this -1926788825 +532445947 1 this.bits 76 @@ -84841,7 +85063,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2949 this -1926788825 +532445947 1 this.bits 76 @@ -84854,7 +85076,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2949 this -1926788825 +532445947 1 this.bits 76 @@ -84870,7 +85092,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2950 this -1926788825 +532445947 1 this.bits 76 @@ -84883,7 +85105,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2950 this -1926788825 +532445947 1 this.bits 76 @@ -84899,7 +85121,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2951 this -1926788825 +532445947 1 this.bits 76 @@ -84912,7 +85134,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2951 this -1926788825 +532445947 1 this.bits 76 @@ -84925,7 +85147,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2952 this -1926788825 +532445947 1 this.bits 76 @@ -84938,7 +85160,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2952 this -1926788825 +532445947 1 this.bits 76 @@ -84954,7 +85176,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2953 this -1926788825 +532445947 1 this.bits 76 @@ -84967,7 +85189,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2953 this -1926788825 +532445947 1 this.bits 76 @@ -84983,7 +85205,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2954 this -1926788825 +532445947 1 this.bits 76 @@ -84996,7 +85218,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2954 this -1926788825 +532445947 1 this.bits 76 @@ -85012,7 +85234,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2955 this -1926788825 +532445947 1 this.bits 76 @@ -85025,7 +85247,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2955 this -1926788825 +532445947 1 this.bits 76 @@ -85041,7 +85263,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2956 this -1926788825 +532445947 1 this.bits 76 @@ -85054,7 +85276,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2956 this -1926788825 +532445947 1 this.bits 76 @@ -85070,7 +85292,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2957 this -1926788825 +532445947 1 this.bits 76 @@ -85083,7 +85305,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2957 this -1926788825 +532445947 1 this.bits 76 @@ -85099,7 +85321,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2958 this -1926788825 +532445947 1 this.bits 76 @@ -85112,7 +85334,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2958 this -1926788825 +532445947 1 this.bits 76 @@ -85128,7 +85350,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2959 this -1926788825 +532445947 1 this.bits 76 @@ -85141,7 +85363,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2959 this -1926788825 +532445947 1 this.bits 76 @@ -85157,7 +85379,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2960 this -1926788825 +532445947 1 this.bits 76 @@ -85170,7 +85392,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2960 this -1926788825 +532445947 1 this.bits 76 @@ -85183,7 +85405,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2961 this -1926788825 +532445947 1 this.bits 76 @@ -85196,7 +85418,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2961 this -1926788825 +532445947 1 this.bits 76 @@ -85212,7 +85434,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2962 this -1926788825 +532445947 1 this.bits 76 @@ -85225,7 +85447,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2962 this -1926788825 +532445947 1 this.bits 76 @@ -85241,7 +85463,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2963 this -1926788825 +532445947 1 this.bits 76 @@ -85254,7 +85476,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2963 this -1926788825 +532445947 1 this.bits 76 @@ -85270,7 +85492,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2964 this -1926788825 +532445947 1 this.bits 76 @@ -85283,7 +85505,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2964 this -1926788825 +532445947 1 this.bits 76 @@ -85299,7 +85521,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2965 this -1926788825 +532445947 1 this.bits 76 @@ -85312,7 +85534,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2965 this -1926788825 +532445947 1 this.bits 76 @@ -85328,7 +85550,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2966 this -1926788825 +532445947 1 this.bits 76 @@ -85341,7 +85563,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2966 this -1926788825 +532445947 1 this.bits 76 @@ -85357,7 +85579,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2967 this -1926788825 +532445947 1 this.bits 76 @@ -85370,7 +85592,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2967 this -1926788825 +532445947 1 this.bits 76 @@ -85386,7 +85608,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2968 this -1926788825 +532445947 1 this.bits 76 @@ -85399,7 +85621,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2968 this -1926788825 +532445947 1 this.bits 76 @@ -85415,7 +85637,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2969 this -1926788825 +532445947 1 this.bits 76 @@ -85428,7 +85650,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2969 this -1926788825 +532445947 1 this.bits 77 @@ -85441,7 +85663,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2970 this -1926788825 +532445947 1 this.bits 77 @@ -85454,7 +85676,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2970 this -1926788825 +532445947 1 this.bits 77 @@ -85470,7 +85692,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2971 this -1926788825 +532445947 1 this.bits 77 @@ -85483,7 +85705,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2971 this -1926788825 +532445947 1 this.bits 77 @@ -85499,7 +85721,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2972 this -1926788825 +532445947 1 this.bits 77 @@ -85512,7 +85734,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2972 this -1926788825 +532445947 1 this.bits 77 @@ -85528,7 +85750,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2973 this -1926788825 +532445947 1 this.bits 77 @@ -85541,7 +85763,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2973 this -1926788825 +532445947 1 this.bits 77 @@ -85557,7 +85779,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2974 this -1926788825 +532445947 1 this.bits 77 @@ -85570,7 +85792,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2974 this -1926788825 +532445947 1 this.bits 77 @@ -85586,7 +85808,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2975 this -1926788825 +532445947 1 this.bits 77 @@ -85599,7 +85821,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2975 this -1926788825 +532445947 1 this.bits 77 @@ -85615,7 +85837,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2976 this -1926788825 +532445947 1 this.bits 77 @@ -85628,7 +85850,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2976 this -1926788825 +532445947 1 this.bits 77 @@ -85644,7 +85866,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2977 this -1926788825 +532445947 1 this.bits 77 @@ -85657,7 +85879,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2977 this -1926788825 +532445947 1 this.bits 77 @@ -85673,7 +85895,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2978 this -1926788825 +532445947 1 this.bits 77 @@ -85686,7 +85908,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2978 this -1926788825 +532445947 1 this.bits 77 @@ -85699,7 +85921,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2979 this -1926788825 +532445947 1 this.bits 77 @@ -85712,7 +85934,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2979 this -1926788825 +532445947 1 this.bits 77 @@ -85728,7 +85950,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2980 this -1926788825 +532445947 1 this.bits 77 @@ -85741,7 +85963,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2980 this -1926788825 +532445947 1 this.bits 77 @@ -85757,7 +85979,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2981 this -1926788825 +532445947 1 this.bits 77 @@ -85770,7 +85992,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2981 this -1926788825 +532445947 1 this.bits 77 @@ -85786,7 +86008,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2982 this -1926788825 +532445947 1 this.bits 77 @@ -85799,7 +86021,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2982 this -1926788825 +532445947 1 this.bits 77 @@ -85815,7 +86037,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2983 this -1926788825 +532445947 1 this.bits 77 @@ -85828,7 +86050,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2983 this -1926788825 +532445947 1 this.bits 77 @@ -85844,7 +86066,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2984 this -1926788825 +532445947 1 this.bits 77 @@ -85857,7 +86079,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2984 this -1926788825 +532445947 1 this.bits 77 @@ -85873,7 +86095,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2985 this -1926788825 +532445947 1 this.bits 77 @@ -85886,7 +86108,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2985 this -1926788825 +532445947 1 this.bits 77 @@ -85902,7 +86124,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2986 this -1926788825 +532445947 1 this.bits 77 @@ -85915,7 +86137,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2986 this -1926788825 +532445947 1 this.bits 77 @@ -85931,7 +86153,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 2987 this -1926788825 +532445947 1 this.bits 77 @@ -85944,7 +86166,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 2987 this -1926788825 +532445947 1 this.bits 77 @@ -85957,7 +86179,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2988 this -1926788825 +532445947 1 this.bits 77 @@ -85970,7 +86192,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2988 this -1926788825 +532445947 1 this.bits 77 @@ -85986,7 +86208,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2989 this -1926788825 +532445947 1 this.bits 77 @@ -85999,7 +86221,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2989 this -1926788825 +532445947 1 this.bits 77 @@ -86015,7 +86237,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2990 this -1926788825 +532445947 1 this.bits 77 @@ -86028,7 +86250,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2990 this -1926788825 +532445947 1 this.bits 77 @@ -86044,7 +86266,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2991 this -1926788825 +532445947 1 this.bits 77 @@ -86057,7 +86279,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2991 this -1926788825 +532445947 1 this.bits 77 @@ -86073,7 +86295,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2992 this -1926788825 +532445947 1 this.bits 77 @@ -86086,7 +86308,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2992 this -1926788825 +532445947 1 this.bits 77 @@ -86102,7 +86324,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2993 this -1926788825 +532445947 1 this.bits 77 @@ -86115,7 +86337,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2993 this -1926788825 +532445947 1 this.bits 77 @@ -86131,7 +86353,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2994 this -1926788825 +532445947 1 this.bits 77 @@ -86144,7 +86366,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2994 this -1926788825 +532445947 1 this.bits 77 @@ -86160,7 +86382,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2995 this -1926788825 +532445947 1 this.bits 77 @@ -86173,7 +86395,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2995 this -1926788825 +532445947 1 this.bits 77 @@ -86189,7 +86411,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 2996 this -1926788825 +532445947 1 this.bits 77 @@ -86202,7 +86424,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 2996 this -1926788825 +532445947 1 this.bits 69 @@ -86215,7 +86437,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2997 this -1926788825 +532445947 1 this.bits 69 @@ -86228,7 +86450,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2997 this -1926788825 +532445947 1 this.bits 69 @@ -86244,7 +86466,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2998 this -1926788825 +532445947 1 this.bits 69 @@ -86257,7 +86479,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2998 this -1926788825 +532445947 1 this.bits 69 @@ -86273,7 +86495,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 2999 this -1926788825 +532445947 1 this.bits 69 @@ -86286,7 +86508,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 2999 this -1926788825 +532445947 1 this.bits 69 @@ -86302,7 +86524,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3000 this -1926788825 +532445947 1 this.bits 69 @@ -86315,7 +86537,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3000 this -1926788825 +532445947 1 this.bits 69 @@ -86331,7 +86553,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3001 this -1926788825 +532445947 1 this.bits 69 @@ -86344,7 +86566,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3001 this -1926788825 +532445947 1 this.bits 69 @@ -86360,7 +86582,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3002 this -1926788825 +532445947 1 this.bits 69 @@ -86373,7 +86595,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3002 this -1926788825 +532445947 1 this.bits 69 @@ -86389,7 +86611,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3003 this -1926788825 +532445947 1 this.bits 69 @@ -86402,7 +86624,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3003 this -1926788825 +532445947 1 this.bits 69 @@ -86418,7 +86640,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3004 this -1926788825 +532445947 1 this.bits 69 @@ -86431,7 +86653,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3004 this -1926788825 +532445947 1 this.bits 69 @@ -86447,7 +86669,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3005 this -1926788825 +532445947 1 this.bits 69 @@ -86460,7 +86682,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3005 this -1926788825 +532445947 1 this.bits 69 @@ -86473,7 +86695,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3006 this -1926788825 +532445947 1 this.bits 69 @@ -86486,7 +86708,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3006 this -1926788825 +532445947 1 this.bits 69 @@ -86502,7 +86724,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3007 this -1926788825 +532445947 1 this.bits 69 @@ -86515,7 +86737,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3007 this -1926788825 +532445947 1 this.bits 69 @@ -86531,7 +86753,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3008 this -1926788825 +532445947 1 this.bits 69 @@ -86544,7 +86766,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3008 this -1926788825 +532445947 1 this.bits 69 @@ -86560,7 +86782,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3009 this -1926788825 +532445947 1 this.bits 69 @@ -86573,7 +86795,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3009 this -1926788825 +532445947 1 this.bits 69 @@ -86589,7 +86811,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3010 this -1926788825 +532445947 1 this.bits 69 @@ -86602,7 +86824,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3010 this -1926788825 +532445947 1 this.bits 69 @@ -86618,7 +86840,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3011 this -1926788825 +532445947 1 this.bits 69 @@ -86631,7 +86853,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3011 this -1926788825 +532445947 1 this.bits 69 @@ -86647,7 +86869,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3012 this -1926788825 +532445947 1 this.bits 69 @@ -86660,7 +86882,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3012 this -1926788825 +532445947 1 this.bits 69 @@ -86676,7 +86898,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3013 this -1926788825 +532445947 1 this.bits 69 @@ -86689,7 +86911,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3013 this -1926788825 +532445947 1 this.bits 69 @@ -86705,7 +86927,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3014 this -1926788825 +532445947 1 this.bits 69 @@ -86718,7 +86940,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3014 this -1926788825 +532445947 1 this.bits 69 @@ -86731,7 +86953,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3015 this -1926788825 +532445947 1 this.bits 69 @@ -86744,7 +86966,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3015 this -1926788825 +532445947 1 this.bits 69 @@ -86760,7 +86982,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3016 this -1926788825 +532445947 1 this.bits 69 @@ -86773,7 +86995,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3016 this -1926788825 +532445947 1 this.bits 69 @@ -86789,7 +87011,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3017 this -1926788825 +532445947 1 this.bits 69 @@ -86802,7 +87024,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3017 this -1926788825 +532445947 1 this.bits 69 @@ -86818,7 +87040,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3018 this -1926788825 +532445947 1 this.bits 69 @@ -86831,7 +87053,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3018 this -1926788825 +532445947 1 this.bits 69 @@ -86847,7 +87069,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3019 this -1926788825 +532445947 1 this.bits 69 @@ -86860,7 +87082,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3019 this -1926788825 +532445947 1 this.bits 69 @@ -86876,7 +87098,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3020 this -1926788825 +532445947 1 this.bits 69 @@ -86889,7 +87111,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3020 this -1926788825 +532445947 1 this.bits 69 @@ -86905,7 +87127,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3021 this -1926788825 +532445947 1 this.bits 69 @@ -86918,7 +87140,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3021 this -1926788825 +532445947 1 this.bits 69 @@ -86934,7 +87156,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3022 this -1926788825 +532445947 1 this.bits 69 @@ -86947,7 +87169,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3022 this -1926788825 +532445947 1 this.bits 69 @@ -86963,7 +87185,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3023 this -1926788825 +532445947 1 this.bits 69 @@ -86976,7 +87198,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3023 this -1926788825 +532445947 1 this.bits 197 @@ -86989,7 +87211,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3024 this -1926788825 +532445947 1 this.bits 197 @@ -87002,7 +87224,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3024 this -1926788825 +532445947 1 this.bits 197 @@ -87018,7 +87240,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3025 this -1926788825 +532445947 1 this.bits 197 @@ -87031,7 +87253,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3025 this -1926788825 +532445947 1 this.bits 197 @@ -87047,7 +87269,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3026 this -1926788825 +532445947 1 this.bits 197 @@ -87060,7 +87282,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3026 this -1926788825 +532445947 1 this.bits 197 @@ -87076,7 +87298,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3027 this -1926788825 +532445947 1 this.bits 197 @@ -87089,7 +87311,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3027 this -1926788825 +532445947 1 this.bits 197 @@ -87105,7 +87327,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3028 this -1926788825 +532445947 1 this.bits 197 @@ -87118,7 +87340,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3028 this -1926788825 +532445947 1 this.bits 197 @@ -87134,7 +87356,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3029 this -1926788825 +532445947 1 this.bits 197 @@ -87147,7 +87369,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3029 this -1926788825 +532445947 1 this.bits 197 @@ -87163,7 +87385,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3030 this -1926788825 +532445947 1 this.bits 197 @@ -87176,7 +87398,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3030 this -1926788825 +532445947 1 this.bits 197 @@ -87192,7 +87414,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3031 this -1926788825 +532445947 1 this.bits 197 @@ -87205,7 +87427,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3031 this -1926788825 +532445947 1 this.bits 197 @@ -87221,7 +87443,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3032 this -1926788825 +532445947 1 this.bits 197 @@ -87234,7 +87456,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3032 this -1926788825 +532445947 1 this.bits 69 @@ -87247,7 +87469,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3033 this -1926788825 +532445947 1 this.bits 69 @@ -87260,7 +87482,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3033 this -1926788825 +532445947 1 this.bits 69 @@ -87276,7 +87498,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3034 this -1926788825 +532445947 1 this.bits 69 @@ -87289,7 +87511,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3034 this -1926788825 +532445947 1 this.bits 69 @@ -87305,7 +87527,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3035 this -1926788825 +532445947 1 this.bits 69 @@ -87318,7 +87540,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3035 this -1926788825 +532445947 1 this.bits 69 @@ -87334,7 +87556,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3036 this -1926788825 +532445947 1 this.bits 69 @@ -87347,7 +87569,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3036 this -1926788825 +532445947 1 this.bits 69 @@ -87363,7 +87585,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3037 this -1926788825 +532445947 1 this.bits 69 @@ -87376,7 +87598,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3037 this -1926788825 +532445947 1 this.bits 69 @@ -87392,7 +87614,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3038 this -1926788825 +532445947 1 this.bits 69 @@ -87405,7 +87627,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3038 this -1926788825 +532445947 1 this.bits 69 @@ -87421,7 +87643,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3039 this -1926788825 +532445947 1 this.bits 69 @@ -87434,7 +87656,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3039 this -1926788825 +532445947 1 this.bits 69 @@ -87450,7 +87672,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3040 this -1926788825 +532445947 1 this.bits 69 @@ -87463,7 +87685,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3040 this -1926788825 +532445947 1 this.bits 69 @@ -87479,7 +87701,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3041 this -1926788825 +532445947 1 this.bits 69 @@ -87492,7 +87714,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3041 this -1926788825 +532445947 1 this.bits 71 @@ -87505,7 +87727,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3042 this -1926788825 +532445947 1 this.bits 71 @@ -87518,7 +87740,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3042 this -1926788825 +532445947 1 this.bits 71 @@ -87534,7 +87756,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3043 this -1926788825 +532445947 1 this.bits 71 @@ -87547,7 +87769,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3043 this -1926788825 +532445947 1 this.bits 71 @@ -87563,7 +87785,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3044 this -1926788825 +532445947 1 this.bits 71 @@ -87576,7 +87798,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3044 this -1926788825 +532445947 1 this.bits 71 @@ -87592,7 +87814,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3045 this -1926788825 +532445947 1 this.bits 71 @@ -87605,7 +87827,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3045 this -1926788825 +532445947 1 this.bits 71 @@ -87621,7 +87843,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3046 this -1926788825 +532445947 1 this.bits 71 @@ -87634,7 +87856,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3046 this -1926788825 +532445947 1 this.bits 71 @@ -87650,7 +87872,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3047 this -1926788825 +532445947 1 this.bits 71 @@ -87663,7 +87885,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3047 this -1926788825 +532445947 1 this.bits 71 @@ -87679,7 +87901,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3048 this -1926788825 +532445947 1 this.bits 71 @@ -87692,7 +87914,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3048 this -1926788825 +532445947 1 this.bits 71 @@ -87708,7 +87930,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3049 this -1926788825 +532445947 1 this.bits 71 @@ -87721,7 +87943,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3049 this -1926788825 +532445947 1 this.bits 71 @@ -87737,7 +87959,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3050 this -1926788825 +532445947 1 this.bits 71 @@ -87750,7 +87972,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3050 this -1926788825 +532445947 1 this.bits 71 @@ -87763,7 +87985,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3051 this -1926788825 +532445947 1 this.bits 71 @@ -87776,7 +87998,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3051 this -1926788825 +532445947 1 this.bits 71 @@ -87792,7 +88014,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3052 this -1926788825 +532445947 1 this.bits 71 @@ -87805,7 +88027,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3052 this -1926788825 +532445947 1 this.bits 71 @@ -87821,7 +88043,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3053 this -1926788825 +532445947 1 this.bits 71 @@ -87834,7 +88056,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3053 this -1926788825 +532445947 1 this.bits 71 @@ -87850,7 +88072,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3054 this -1926788825 +532445947 1 this.bits 71 @@ -87863,7 +88085,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3054 this -1926788825 +532445947 1 this.bits 71 @@ -87879,7 +88101,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3055 this -1926788825 +532445947 1 this.bits 71 @@ -87892,7 +88114,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3055 this -1926788825 +532445947 1 this.bits 71 @@ -87908,7 +88130,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3056 this -1926788825 +532445947 1 this.bits 71 @@ -87921,7 +88143,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3056 this -1926788825 +532445947 1 this.bits 71 @@ -87937,7 +88159,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3057 this -1926788825 +532445947 1 this.bits 71 @@ -87950,7 +88172,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3057 this -1926788825 +532445947 1 this.bits 71 @@ -87966,7 +88188,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3058 this -1926788825 +532445947 1 this.bits 71 @@ -87979,7 +88201,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3058 this -1926788825 +532445947 1 this.bits 71 @@ -87995,7 +88217,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3059 this -1926788825 +532445947 1 this.bits 71 @@ -88008,7 +88230,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3059 this -1926788825 +532445947 1 this.bits 71 @@ -88021,7 +88243,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3060 this -1926788825 +532445947 1 this.bits 71 @@ -88034,7 +88256,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3060 this -1926788825 +532445947 1 this.bits 71 @@ -88050,7 +88272,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3061 this -1926788825 +532445947 1 this.bits 71 @@ -88063,7 +88285,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3061 this -1926788825 +532445947 1 this.bits 71 @@ -88079,7 +88301,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3062 this -1926788825 +532445947 1 this.bits 71 @@ -88092,7 +88314,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3062 this -1926788825 +532445947 1 this.bits 71 @@ -88108,7 +88330,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3063 this -1926788825 +532445947 1 this.bits 71 @@ -88121,7 +88343,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3063 this -1926788825 +532445947 1 this.bits 71 @@ -88137,7 +88359,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3064 this -1926788825 +532445947 1 this.bits 71 @@ -88150,7 +88372,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3064 this -1926788825 +532445947 1 this.bits 71 @@ -88166,7 +88388,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3065 this -1926788825 +532445947 1 this.bits 71 @@ -88179,7 +88401,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3065 this -1926788825 +532445947 1 this.bits 71 @@ -88195,7 +88417,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3066 this -1926788825 +532445947 1 this.bits 71 @@ -88208,7 +88430,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3066 this -1926788825 +532445947 1 this.bits 71 @@ -88224,7 +88446,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3067 this -1926788825 +532445947 1 this.bits 71 @@ -88237,7 +88459,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3067 this -1926788825 +532445947 1 this.bits 71 @@ -88253,7 +88475,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3068 this -1926788825 +532445947 1 this.bits 71 @@ -88266,7 +88488,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3068 this -1926788825 +532445947 1 this.bits 71 @@ -88279,7 +88501,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3069 this -1926788825 +532445947 1 this.bits 71 @@ -88292,7 +88514,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3069 this -1926788825 +532445947 1 this.bits 71 @@ -88308,7 +88530,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3070 this -1926788825 +532445947 1 this.bits 71 @@ -88321,7 +88543,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3070 this -1926788825 +532445947 1 this.bits 71 @@ -88337,7 +88559,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3071 this -1926788825 +532445947 1 this.bits 71 @@ -88350,7 +88572,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3071 this -1926788825 +532445947 1 this.bits 71 @@ -88366,7 +88588,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3072 this -1926788825 +532445947 1 this.bits 71 @@ -88379,7 +88601,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3072 this -1926788825 +532445947 1 this.bits 71 @@ -88395,7 +88617,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3073 this -1926788825 +532445947 1 this.bits 71 @@ -88408,7 +88630,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3073 this -1926788825 +532445947 1 this.bits 71 @@ -88424,7 +88646,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3074 this -1926788825 +532445947 1 this.bits 71 @@ -88437,7 +88659,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3074 this -1926788825 +532445947 1 this.bits 71 @@ -88453,7 +88675,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3075 this -1926788825 +532445947 1 this.bits 71 @@ -88466,7 +88688,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3075 this -1926788825 +532445947 1 this.bits 71 @@ -88482,7 +88704,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3076 this -1926788825 +532445947 1 this.bits 71 @@ -88495,7 +88717,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3076 this -1926788825 +532445947 1 this.bits 71 @@ -88511,7 +88733,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3077 this -1926788825 +532445947 1 this.bits 71 @@ -88524,7 +88746,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3077 this -1926788825 +532445947 1 this.bits 71 @@ -88537,7 +88759,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3078 this -1926788825 +532445947 1 this.bits 71 @@ -88550,7 +88772,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3078 this -1926788825 +532445947 1 this.bits 71 @@ -88566,7 +88788,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3079 this -1926788825 +532445947 1 this.bits 71 @@ -88579,7 +88801,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3079 this -1926788825 +532445947 1 this.bits 71 @@ -88595,7 +88817,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3080 this -1926788825 +532445947 1 this.bits 71 @@ -88608,7 +88830,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3080 this -1926788825 +532445947 1 this.bits 71 @@ -88624,7 +88846,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3081 this -1926788825 +532445947 1 this.bits 71 @@ -88637,7 +88859,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3081 this -1926788825 +532445947 1 this.bits 71 @@ -88653,7 +88875,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3082 this -1926788825 +532445947 1 this.bits 71 @@ -88666,7 +88888,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3082 this -1926788825 +532445947 1 this.bits 71 @@ -88682,7 +88904,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3083 this -1926788825 +532445947 1 this.bits 71 @@ -88695,7 +88917,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3083 this -1926788825 +532445947 1 this.bits 71 @@ -88711,7 +88933,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3084 this -1926788825 +532445947 1 this.bits 71 @@ -88724,7 +88946,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3084 this -1926788825 +532445947 1 this.bits 71 @@ -88740,7 +88962,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3085 this -1926788825 +532445947 1 this.bits 71 @@ -88753,7 +88975,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3085 this -1926788825 +532445947 1 this.bits 71 @@ -88769,7 +88991,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3086 this -1926788825 +532445947 1 this.bits 71 @@ -88782,7 +89004,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3086 this -1926788825 +532445947 1 this.bits 71 @@ -88795,7 +89017,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3087 this -1926788825 +532445947 1 this.bits 71 @@ -88808,7 +89030,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3087 this -1926788825 +532445947 1 this.bits 71 @@ -88824,7 +89046,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3088 this -1926788825 +532445947 1 this.bits 71 @@ -88837,7 +89059,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3088 this -1926788825 +532445947 1 this.bits 71 @@ -88853,7 +89075,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3089 this -1926788825 +532445947 1 this.bits 71 @@ -88866,7 +89088,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3089 this -1926788825 +532445947 1 this.bits 71 @@ -88882,7 +89104,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3090 this -1926788825 +532445947 1 this.bits 71 @@ -88895,7 +89117,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3090 this -1926788825 +532445947 1 this.bits 71 @@ -88911,7 +89133,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3091 this -1926788825 +532445947 1 this.bits 71 @@ -88924,7 +89146,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3091 this -1926788825 +532445947 1 this.bits 71 @@ -88940,7 +89162,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3092 this -1926788825 +532445947 1 this.bits 71 @@ -88953,7 +89175,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3092 this -1926788825 +532445947 1 this.bits 71 @@ -88969,7 +89191,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3093 this -1926788825 +532445947 1 this.bits 71 @@ -88982,7 +89204,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3093 this -1926788825 +532445947 1 this.bits 71 @@ -88998,7 +89220,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3094 this -1926788825 +532445947 1 this.bits 71 @@ -89011,7 +89233,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3094 this -1926788825 +532445947 1 this.bits 71 @@ -89027,7 +89249,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3095 this -1926788825 +532445947 1 this.bits 71 @@ -89040,7 +89262,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3095 this -1926788825 +532445947 1 this.bits 87 @@ -89053,7 +89275,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3096 this -1926788825 +532445947 1 this.bits 87 @@ -89066,7 +89288,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3096 this -1926788825 +532445947 1 this.bits 87 @@ -89082,7 +89304,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3097 this -1926788825 +532445947 1 this.bits 87 @@ -89095,7 +89317,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3097 this -1926788825 +532445947 1 this.bits 87 @@ -89111,7 +89333,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3098 this -1926788825 +532445947 1 this.bits 87 @@ -89124,7 +89346,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3098 this -1926788825 +532445947 1 this.bits 87 @@ -89140,7 +89362,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3099 this -1926788825 +532445947 1 this.bits 87 @@ -89153,7 +89375,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3099 this -1926788825 +532445947 1 this.bits 87 @@ -89169,7 +89391,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3100 this -1926788825 +532445947 1 this.bits 87 @@ -89182,7 +89404,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3100 this -1926788825 +532445947 1 this.bits 87 @@ -89198,7 +89420,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3101 this -1926788825 +532445947 1 this.bits 87 @@ -89211,7 +89433,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3101 this -1926788825 +532445947 1 this.bits 87 @@ -89227,7 +89449,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3102 this -1926788825 +532445947 1 this.bits 87 @@ -89240,7 +89462,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3102 this -1926788825 +532445947 1 this.bits 87 @@ -89256,7 +89478,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3103 this -1926788825 +532445947 1 this.bits 87 @@ -89269,7 +89491,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3103 this -1926788825 +532445947 1 this.bits 87 @@ -89285,7 +89507,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3104 this -1926788825 +532445947 1 this.bits 87 @@ -89298,7 +89520,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3104 this -1926788825 +532445947 1 this.bits 85 @@ -89311,7 +89533,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3105 this -1926788825 +532445947 1 this.bits 85 @@ -89324,7 +89546,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3105 this -1926788825 +532445947 1 this.bits 85 @@ -89340,7 +89562,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3106 this -1926788825 +532445947 1 this.bits 85 @@ -89353,7 +89575,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3106 this -1926788825 +532445947 1 this.bits 85 @@ -89369,7 +89591,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3107 this -1926788825 +532445947 1 this.bits 85 @@ -89382,7 +89604,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3107 this -1926788825 +532445947 1 this.bits 85 @@ -89398,7 +89620,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3108 this -1926788825 +532445947 1 this.bits 85 @@ -89411,7 +89633,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3108 this -1926788825 +532445947 1 this.bits 85 @@ -89427,7 +89649,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3109 this -1926788825 +532445947 1 this.bits 85 @@ -89440,7 +89662,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3109 this -1926788825 +532445947 1 this.bits 85 @@ -89456,7 +89678,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3110 this -1926788825 +532445947 1 this.bits 85 @@ -89469,7 +89691,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3110 this -1926788825 +532445947 1 this.bits 85 @@ -89485,7 +89707,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3111 this -1926788825 +532445947 1 this.bits 85 @@ -89498,7 +89720,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3111 this -1926788825 +532445947 1 this.bits 85 @@ -89514,7 +89736,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3112 this -1926788825 +532445947 1 this.bits 85 @@ -89527,7 +89749,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3112 this -1926788825 +532445947 1 this.bits 85 @@ -89543,7 +89765,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3113 this -1926788825 +532445947 1 this.bits 85 @@ -89556,7 +89778,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3113 this -1926788825 +532445947 1 this.bits 85 @@ -89569,7 +89791,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3114 this -1926788825 +532445947 1 this.bits 85 @@ -89582,7 +89804,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3114 this -1926788825 +532445947 1 this.bits 85 @@ -89598,7 +89820,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3115 this -1926788825 +532445947 1 this.bits 85 @@ -89611,7 +89833,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3115 this -1926788825 +532445947 1 this.bits 85 @@ -89627,7 +89849,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3116 this -1926788825 +532445947 1 this.bits 85 @@ -89640,7 +89862,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3116 this -1926788825 +532445947 1 this.bits 85 @@ -89656,7 +89878,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3117 this -1926788825 +532445947 1 this.bits 85 @@ -89669,7 +89891,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3117 this -1926788825 +532445947 1 this.bits 85 @@ -89685,7 +89907,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3118 this -1926788825 +532445947 1 this.bits 85 @@ -89698,7 +89920,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3118 this -1926788825 +532445947 1 this.bits 85 @@ -89714,7 +89936,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3119 this -1926788825 +532445947 1 this.bits 85 @@ -89727,7 +89949,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3119 this -1926788825 +532445947 1 this.bits 85 @@ -89743,7 +89965,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3120 this -1926788825 +532445947 1 this.bits 85 @@ -89756,7 +89978,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3120 this -1926788825 +532445947 1 this.bits 85 @@ -89772,7 +89994,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3121 this -1926788825 +532445947 1 this.bits 85 @@ -89785,7 +90007,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3121 this -1926788825 +532445947 1 this.bits 85 @@ -89801,7 +90023,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3122 this -1926788825 +532445947 1 this.bits 85 @@ -89814,7 +90036,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3122 this -1926788825 +532445947 1 this.bits 21 @@ -89827,7 +90049,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3123 this -1926788825 +532445947 1 this.bits 21 @@ -89840,7 +90062,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3123 this -1926788825 +532445947 1 this.bits 21 @@ -89856,7 +90078,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3124 this -1926788825 +532445947 1 this.bits 21 @@ -89869,7 +90091,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3124 this -1926788825 +532445947 1 this.bits 21 @@ -89885,7 +90107,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3125 this -1926788825 +532445947 1 this.bits 21 @@ -89898,7 +90120,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3125 this -1926788825 +532445947 1 this.bits 21 @@ -89914,7 +90136,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3126 this -1926788825 +532445947 1 this.bits 21 @@ -89927,7 +90149,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3126 this -1926788825 +532445947 1 this.bits 21 @@ -89943,7 +90165,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3127 this -1926788825 +532445947 1 this.bits 21 @@ -89956,7 +90178,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3127 this -1926788825 +532445947 1 this.bits 21 @@ -89972,7 +90194,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3128 this -1926788825 +532445947 1 this.bits 21 @@ -89985,7 +90207,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3128 this -1926788825 +532445947 1 this.bits 21 @@ -90001,7 +90223,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3129 this -1926788825 +532445947 1 this.bits 21 @@ -90014,7 +90236,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3129 this -1926788825 +532445947 1 this.bits 21 @@ -90030,7 +90252,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3130 this -1926788825 +532445947 1 this.bits 21 @@ -90043,7 +90265,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3130 this -1926788825 +532445947 1 this.bits 21 @@ -90059,7 +90281,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3131 this -1926788825 +532445947 1 this.bits 21 @@ -90072,7 +90294,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3131 this -1926788825 +532445947 1 this.bits 29 @@ -90085,7 +90307,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3132 this -1926788825 +532445947 1 this.bits 29 @@ -90098,7 +90320,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3132 this -1926788825 +532445947 1 this.bits 29 @@ -90114,7 +90336,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3133 this -1926788825 +532445947 1 this.bits 29 @@ -90127,7 +90349,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3133 this -1926788825 +532445947 1 this.bits 29 @@ -90143,7 +90365,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3134 this -1926788825 +532445947 1 this.bits 29 @@ -90156,7 +90378,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3134 this -1926788825 +532445947 1 this.bits 29 @@ -90172,7 +90394,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3135 this -1926788825 +532445947 1 this.bits 29 @@ -90185,7 +90407,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3135 this -1926788825 +532445947 1 this.bits 29 @@ -90201,7 +90423,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3136 this -1926788825 +532445947 1 this.bits 29 @@ -90214,7 +90436,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3136 this -1926788825 +532445947 1 this.bits 29 @@ -90230,7 +90452,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3137 this -1926788825 +532445947 1 this.bits 29 @@ -90243,7 +90465,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3137 this -1926788825 +532445947 1 this.bits 29 @@ -90259,7 +90481,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3138 this -1926788825 +532445947 1 this.bits 29 @@ -90272,7 +90494,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3138 this -1926788825 +532445947 1 this.bits 29 @@ -90288,7 +90510,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3139 this -1926788825 +532445947 1 this.bits 29 @@ -90301,7 +90523,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3139 this -1926788825 +532445947 1 this.bits 29 @@ -90317,7 +90539,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3140 this -1926788825 +532445947 1 this.bits 29 @@ -90330,7 +90552,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3140 this -1926788825 +532445947 1 this.bits 13 @@ -90343,7 +90565,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3141 this -1926788825 +532445947 1 this.bits 13 @@ -90356,7 +90578,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3141 this -1926788825 +532445947 1 this.bits 13 @@ -90372,7 +90594,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3142 this -1926788825 +532445947 1 this.bits 13 @@ -90385,7 +90607,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3142 this -1926788825 +532445947 1 this.bits 13 @@ -90401,7 +90623,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3143 this -1926788825 +532445947 1 this.bits 13 @@ -90414,7 +90636,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3143 this -1926788825 +532445947 1 this.bits 13 @@ -90430,7 +90652,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3144 this -1926788825 +532445947 1 this.bits 13 @@ -90443,7 +90665,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3144 this -1926788825 +532445947 1 this.bits 13 @@ -90459,7 +90681,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3145 this -1926788825 +532445947 1 this.bits 13 @@ -90472,7 +90694,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3145 this -1926788825 +532445947 1 this.bits 13 @@ -90488,7 +90710,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3146 this -1926788825 +532445947 1 this.bits 13 @@ -90501,7 +90723,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3146 this -1926788825 +532445947 1 this.bits 13 @@ -90517,7 +90739,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3147 this -1926788825 +532445947 1 this.bits 13 @@ -90530,7 +90752,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3147 this -1926788825 +532445947 1 this.bits 13 @@ -90546,7 +90768,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3148 this -1926788825 +532445947 1 this.bits 13 @@ -90559,7 +90781,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3148 this -1926788825 +532445947 1 this.bits 13 @@ -90575,7 +90797,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3149 this -1926788825 +532445947 1 this.bits 13 @@ -90588,7 +90810,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3149 this -1926788825 +532445947 1 this.bits 13 @@ -90601,7 +90823,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3150 this -1926788825 +532445947 1 this.bits 13 @@ -90614,7 +90836,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3150 this -1926788825 +532445947 1 this.bits 13 @@ -90630,7 +90852,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3151 this -1926788825 +532445947 1 this.bits 13 @@ -90643,7 +90865,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3151 this -1926788825 +532445947 1 this.bits 13 @@ -90659,7 +90881,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3152 this -1926788825 +532445947 1 this.bits 13 @@ -90672,7 +90894,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3152 this -1926788825 +532445947 1 this.bits 13 @@ -90688,7 +90910,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3153 this -1926788825 +532445947 1 this.bits 13 @@ -90701,7 +90923,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3153 this -1926788825 +532445947 1 this.bits 13 @@ -90717,7 +90939,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3154 this -1926788825 +532445947 1 this.bits 13 @@ -90730,7 +90952,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3154 this -1926788825 +532445947 1 this.bits 13 @@ -90746,7 +90968,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3155 this -1926788825 +532445947 1 this.bits 13 @@ -90759,7 +90981,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3155 this -1926788825 +532445947 1 this.bits 13 @@ -90775,7 +90997,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3156 this -1926788825 +532445947 1 this.bits 13 @@ -90788,7 +91010,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3156 this -1926788825 +532445947 1 this.bits 13 @@ -90804,7 +91026,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3157 this -1926788825 +532445947 1 this.bits 13 @@ -90817,7 +91039,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3157 this -1926788825 +532445947 1 this.bits 13 @@ -90833,7 +91055,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3158 this -1926788825 +532445947 1 this.bits 13 @@ -90846,7 +91068,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3158 this -1926788825 +532445947 1 this.bits 13 @@ -90859,7 +91081,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3159 this -1926788825 +532445947 1 this.bits 13 @@ -90872,7 +91094,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3159 this -1926788825 +532445947 1 this.bits 13 @@ -90888,7 +91110,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3160 this -1926788825 +532445947 1 this.bits 13 @@ -90901,7 +91123,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3160 this -1926788825 +532445947 1 this.bits 13 @@ -90917,7 +91139,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3161 this -1926788825 +532445947 1 this.bits 13 @@ -90930,7 +91152,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3161 this -1926788825 +532445947 1 this.bits 13 @@ -90946,7 +91168,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3162 this -1926788825 +532445947 1 this.bits 13 @@ -90959,7 +91181,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3162 this -1926788825 +532445947 1 this.bits 13 @@ -90975,7 +91197,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3163 this -1926788825 +532445947 1 this.bits 13 @@ -90988,7 +91210,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3163 this -1926788825 +532445947 1 this.bits 13 @@ -91004,7 +91226,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3164 this -1926788825 +532445947 1 this.bits 13 @@ -91017,7 +91239,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3164 this -1926788825 +532445947 1 this.bits 13 @@ -91033,7 +91255,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3165 this -1926788825 +532445947 1 this.bits 13 @@ -91046,7 +91268,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3165 this -1926788825 +532445947 1 this.bits 13 @@ -91062,7 +91284,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3166 this -1926788825 +532445947 1 this.bits 13 @@ -91075,7 +91297,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3166 this -1926788825 +532445947 1 this.bits 13 @@ -91091,7 +91313,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3167 this -1926788825 +532445947 1 this.bits 13 @@ -91104,7 +91326,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3167 this -1926788825 +532445947 1 this.bits 13 @@ -91117,7 +91339,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3168 this -1926788825 +532445947 1 this.bits 13 @@ -91130,7 +91352,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3168 this -1926788825 +532445947 1 this.bits 13 @@ -91146,7 +91368,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3169 this -1926788825 +532445947 1 this.bits 13 @@ -91159,7 +91381,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3169 this -1926788825 +532445947 1 this.bits 13 @@ -91175,7 +91397,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3170 this -1926788825 +532445947 1 this.bits 13 @@ -91188,7 +91410,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3170 this -1926788825 +532445947 1 this.bits 13 @@ -91204,7 +91426,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3171 this -1926788825 +532445947 1 this.bits 13 @@ -91217,7 +91439,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3171 this -1926788825 +532445947 1 this.bits 13 @@ -91233,7 +91455,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3172 this -1926788825 +532445947 1 this.bits 13 @@ -91246,7 +91468,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3172 this -1926788825 +532445947 1 this.bits 13 @@ -91262,7 +91484,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3173 this -1926788825 +532445947 1 this.bits 13 @@ -91275,7 +91497,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3173 this -1926788825 +532445947 1 this.bits 13 @@ -91291,7 +91513,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3174 this -1926788825 +532445947 1 this.bits 13 @@ -91304,7 +91526,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3174 this -1926788825 +532445947 1 this.bits 13 @@ -91320,7 +91542,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3175 this -1926788825 +532445947 1 this.bits 13 @@ -91333,7 +91555,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3175 this -1926788825 +532445947 1 this.bits 13 @@ -91349,7 +91571,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3176 this -1926788825 +532445947 1 this.bits 13 @@ -91362,7 +91584,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3176 this -1926788825 +532445947 1 this.bits 13 @@ -91375,7 +91597,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3177 this -1926788825 +532445947 1 this.bits 13 @@ -91388,7 +91610,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3177 this -1926788825 +532445947 1 this.bits 13 @@ -91404,7 +91626,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3178 this -1926788825 +532445947 1 this.bits 13 @@ -91417,7 +91639,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3178 this -1926788825 +532445947 1 this.bits 13 @@ -91433,7 +91655,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3179 this -1926788825 +532445947 1 this.bits 13 @@ -91446,7 +91668,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3179 this -1926788825 +532445947 1 this.bits 13 @@ -91462,7 +91684,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3180 this -1926788825 +532445947 1 this.bits 13 @@ -91475,7 +91697,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3180 this -1926788825 +532445947 1 this.bits 13 @@ -91491,7 +91713,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3181 this -1926788825 +532445947 1 this.bits 13 @@ -91504,7 +91726,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3181 this -1926788825 +532445947 1 this.bits 13 @@ -91520,7 +91742,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3182 this -1926788825 +532445947 1 this.bits 13 @@ -91533,7 +91755,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3182 this -1926788825 +532445947 1 this.bits 13 @@ -91549,7 +91771,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3183 this -1926788825 +532445947 1 this.bits 13 @@ -91562,7 +91784,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3183 this -1926788825 +532445947 1 this.bits 13 @@ -91578,7 +91800,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3184 this -1926788825 +532445947 1 this.bits 13 @@ -91591,7 +91813,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3184 this -1926788825 +532445947 1 this.bits 13 @@ -91607,7 +91829,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3185 this -1926788825 +532445947 1 this.bits 13 @@ -91620,7 +91842,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3185 this -1926788825 +532445947 1 this.bits 77 @@ -91633,7 +91855,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3186 this -1926788825 +532445947 1 this.bits 77 @@ -91646,7 +91868,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3186 this -1926788825 +532445947 1 this.bits 77 @@ -91662,7 +91884,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3187 this -1926788825 +532445947 1 this.bits 77 @@ -91675,7 +91897,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3187 this -1926788825 +532445947 1 this.bits 77 @@ -91691,7 +91913,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3188 this -1926788825 +532445947 1 this.bits 77 @@ -91704,7 +91926,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3188 this -1926788825 +532445947 1 this.bits 77 @@ -91720,7 +91942,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3189 this -1926788825 +532445947 1 this.bits 77 @@ -91733,7 +91955,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3189 this -1926788825 +532445947 1 this.bits 77 @@ -91749,7 +91971,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3190 this -1926788825 +532445947 1 this.bits 77 @@ -91762,7 +91984,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3190 this -1926788825 +532445947 1 this.bits 77 @@ -91778,7 +92000,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3191 this -1926788825 +532445947 1 this.bits 77 @@ -91791,7 +92013,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3191 this -1926788825 +532445947 1 this.bits 77 @@ -91807,7 +92029,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3192 this -1926788825 +532445947 1 this.bits 77 @@ -91820,7 +92042,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3192 this -1926788825 +532445947 1 this.bits 77 @@ -91836,7 +92058,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3193 this -1926788825 +532445947 1 this.bits 77 @@ -91849,7 +92071,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3193 this -1926788825 +532445947 1 this.bits 77 @@ -91865,7 +92087,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3194 this -1926788825 +532445947 1 this.bits 77 @@ -91878,7 +92100,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3194 this -1926788825 +532445947 1 this.bits 69 @@ -91891,7 +92113,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3195 this -1926788825 +532445947 1 this.bits 69 @@ -91904,7 +92126,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3195 this -1926788825 +532445947 1 this.bits 69 @@ -91920,7 +92142,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3196 this -1926788825 +532445947 1 this.bits 69 @@ -91933,7 +92155,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3196 this -1926788825 +532445947 1 this.bits 69 @@ -91949,7 +92171,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3197 this -1926788825 +532445947 1 this.bits 69 @@ -91962,7 +92184,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3197 this -1926788825 +532445947 1 this.bits 69 @@ -91978,7 +92200,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3198 this -1926788825 +532445947 1 this.bits 69 @@ -91991,7 +92213,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3198 this -1926788825 +532445947 1 this.bits 69 @@ -92007,7 +92229,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3199 this -1926788825 +532445947 1 this.bits 69 @@ -92020,7 +92242,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3199 this -1926788825 +532445947 1 this.bits 69 @@ -92036,7 +92258,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3200 this -1926788825 +532445947 1 this.bits 69 @@ -92049,7 +92271,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3200 this -1926788825 +532445947 1 this.bits 69 @@ -92065,7 +92287,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3201 this -1926788825 +532445947 1 this.bits 69 @@ -92078,7 +92300,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3201 this -1926788825 +532445947 1 this.bits 69 @@ -92094,7 +92316,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3202 this -1926788825 +532445947 1 this.bits 69 @@ -92107,7 +92329,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3202 this -1926788825 +532445947 1 this.bits 69 @@ -92123,7 +92345,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3203 this -1926788825 +532445947 1 this.bits 69 @@ -92136,7 +92358,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3203 this -1926788825 +532445947 1 this.bits 197 @@ -92149,7 +92371,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3204 this -1926788825 +532445947 1 this.bits 197 @@ -92162,7 +92384,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3204 this -1926788825 +532445947 1 this.bits 197 @@ -92178,7 +92400,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3205 this -1926788825 +532445947 1 this.bits 197 @@ -92191,7 +92413,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3205 this -1926788825 +532445947 1 this.bits 197 @@ -92207,7 +92429,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3206 this -1926788825 +532445947 1 this.bits 197 @@ -92220,7 +92442,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3206 this -1926788825 +532445947 1 this.bits 197 @@ -92236,7 +92458,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3207 this -1926788825 +532445947 1 this.bits 197 @@ -92249,7 +92471,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3207 this -1926788825 +532445947 1 this.bits 197 @@ -92265,7 +92487,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3208 this -1926788825 +532445947 1 this.bits 197 @@ -92278,7 +92500,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3208 this -1926788825 +532445947 1 this.bits 197 @@ -92294,7 +92516,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3209 this -1926788825 +532445947 1 this.bits 197 @@ -92307,7 +92529,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3209 this -1926788825 +532445947 1 this.bits 197 @@ -92323,7 +92545,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3210 this -1926788825 +532445947 1 this.bits 197 @@ -92336,7 +92558,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3210 this -1926788825 +532445947 1 this.bits 197 @@ -92352,7 +92574,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3211 this -1926788825 +532445947 1 this.bits 197 @@ -92365,7 +92587,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3211 this -1926788825 +532445947 1 this.bits 197 @@ -92381,7 +92603,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3212 this -1926788825 +532445947 1 this.bits 197 @@ -92394,7 +92616,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3212 this -1926788825 +532445947 1 this.bits 197 @@ -92407,7 +92629,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3213 this -1926788825 +532445947 1 this.bits 197 @@ -92420,7 +92642,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3213 this -1926788825 +532445947 1 this.bits 197 @@ -92436,7 +92658,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3214 this -1926788825 +532445947 1 this.bits 197 @@ -92449,7 +92671,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3214 this -1926788825 +532445947 1 this.bits 197 @@ -92465,7 +92687,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3215 this -1926788825 +532445947 1 this.bits 197 @@ -92478,7 +92700,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3215 this -1926788825 +532445947 1 this.bits 197 @@ -92494,7 +92716,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3216 this -1926788825 +532445947 1 this.bits 197 @@ -92507,7 +92729,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3216 this -1926788825 +532445947 1 this.bits 197 @@ -92523,7 +92745,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3217 this -1926788825 +532445947 1 this.bits 197 @@ -92536,7 +92758,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3217 this -1926788825 +532445947 1 this.bits 197 @@ -92552,7 +92774,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3218 this -1926788825 +532445947 1 this.bits 197 @@ -92565,7 +92787,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3218 this -1926788825 +532445947 1 this.bits 197 @@ -92581,7 +92803,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3219 this -1926788825 +532445947 1 this.bits 197 @@ -92594,7 +92816,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3219 this -1926788825 +532445947 1 this.bits 197 @@ -92610,7 +92832,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3220 this -1926788825 +532445947 1 this.bits 197 @@ -92623,7 +92845,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3220 this -1926788825 +532445947 1 this.bits 197 @@ -92639,7 +92861,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3221 this -1926788825 +532445947 1 this.bits 197 @@ -92652,7 +92874,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3221 this -1926788825 +532445947 1 this.bits 197 @@ -92665,7 +92887,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3222 this -1926788825 +532445947 1 this.bits 197 @@ -92678,7 +92900,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3222 this -1926788825 +532445947 1 this.bits 197 @@ -92694,7 +92916,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3223 this -1926788825 +532445947 1 this.bits 197 @@ -92707,7 +92929,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3223 this -1926788825 +532445947 1 this.bits 197 @@ -92723,7 +92945,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3224 this -1926788825 +532445947 1 this.bits 197 @@ -92736,7 +92958,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3224 this -1926788825 +532445947 1 this.bits 197 @@ -92752,7 +92974,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3225 this -1926788825 +532445947 1 this.bits 197 @@ -92765,7 +92987,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3225 this -1926788825 +532445947 1 this.bits 197 @@ -92781,7 +93003,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3226 this -1926788825 +532445947 1 this.bits 197 @@ -92794,7 +93016,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3226 this -1926788825 +532445947 1 this.bits 197 @@ -92810,7 +93032,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3227 this -1926788825 +532445947 1 this.bits 197 @@ -92823,7 +93045,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3227 this -1926788825 +532445947 1 this.bits 197 @@ -92839,7 +93061,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3228 this -1926788825 +532445947 1 this.bits 197 @@ -92852,7 +93074,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3228 this -1926788825 +532445947 1 this.bits 197 @@ -92868,7 +93090,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3229 this -1926788825 +532445947 1 this.bits 197 @@ -92881,7 +93103,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3229 this -1926788825 +532445947 1 this.bits 197 @@ -92897,7 +93119,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3230 this -1926788825 +532445947 1 this.bits 197 @@ -92910,7 +93132,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3230 this -1926788825 +532445947 1 this.bits 196 @@ -92923,7 +93145,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3231 this -1926788825 +532445947 1 this.bits 196 @@ -92936,7 +93158,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3231 this -1926788825 +532445947 1 this.bits 196 @@ -92952,7 +93174,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3232 this -1926788825 +532445947 1 this.bits 196 @@ -92965,7 +93187,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3232 this -1926788825 +532445947 1 this.bits 196 @@ -92981,7 +93203,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3233 this -1926788825 +532445947 1 this.bits 196 @@ -92994,7 +93216,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3233 this -1926788825 +532445947 1 this.bits 196 @@ -93010,7 +93232,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3234 this -1926788825 +532445947 1 this.bits 196 @@ -93023,7 +93245,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3234 this -1926788825 +532445947 1 this.bits 196 @@ -93039,7 +93261,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3235 this -1926788825 +532445947 1 this.bits 196 @@ -93052,7 +93274,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3235 this -1926788825 +532445947 1 this.bits 196 @@ -93068,7 +93290,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3236 this -1926788825 +532445947 1 this.bits 196 @@ -93081,7 +93303,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3236 this -1926788825 +532445947 1 this.bits 196 @@ -93097,7 +93319,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3237 this -1926788825 +532445947 1 this.bits 196 @@ -93110,7 +93332,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3237 this -1926788825 +532445947 1 this.bits 196 @@ -93126,7 +93348,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3238 this -1926788825 +532445947 1 this.bits 196 @@ -93139,7 +93361,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3238 this -1926788825 +532445947 1 this.bits 196 @@ -93155,7 +93377,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3239 this -1926788825 +532445947 1 this.bits 196 @@ -93168,7 +93390,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3239 this -1926788825 +532445947 1 this.bits 196 @@ -93181,7 +93403,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3240 this -1926788825 +532445947 1 this.bits 196 @@ -93194,7 +93416,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3240 this -1926788825 +532445947 1 this.bits 196 @@ -93210,7 +93432,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3241 this -1926788825 +532445947 1 this.bits 196 @@ -93223,7 +93445,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3241 this -1926788825 +532445947 1 this.bits 196 @@ -93239,7 +93461,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3242 this -1926788825 +532445947 1 this.bits 196 @@ -93252,7 +93474,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3242 this -1926788825 +532445947 1 this.bits 196 @@ -93268,7 +93490,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3243 this -1926788825 +532445947 1 this.bits 196 @@ -93281,7 +93503,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3243 this -1926788825 +532445947 1 this.bits 196 @@ -93297,7 +93519,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3244 this -1926788825 +532445947 1 this.bits 196 @@ -93310,7 +93532,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3244 this -1926788825 +532445947 1 this.bits 196 @@ -93326,7 +93548,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3245 this -1926788825 +532445947 1 this.bits 196 @@ -93339,7 +93561,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3245 this -1926788825 +532445947 1 this.bits 196 @@ -93355,7 +93577,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3246 this -1926788825 +532445947 1 this.bits 196 @@ -93368,7 +93590,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3246 this -1926788825 +532445947 1 this.bits 196 @@ -93384,7 +93606,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3247 this -1926788825 +532445947 1 this.bits 196 @@ -93397,7 +93619,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3247 this -1926788825 +532445947 1 this.bits 196 @@ -93413,7 +93635,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3248 this -1926788825 +532445947 1 this.bits 196 @@ -93426,7 +93648,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3248 this -1926788825 +532445947 1 this.bits 196 @@ -93439,7 +93661,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3249 this -1926788825 +532445947 1 this.bits 196 @@ -93452,7 +93674,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3249 this -1926788825 +532445947 1 this.bits 196 @@ -93468,7 +93690,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3250 this -1926788825 +532445947 1 this.bits 196 @@ -93481,7 +93703,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3250 this -1926788825 +532445947 1 this.bits 196 @@ -93497,7 +93719,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3251 this -1926788825 +532445947 1 this.bits 196 @@ -93510,7 +93732,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3251 this -1926788825 +532445947 1 this.bits 196 @@ -93526,7 +93748,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3252 this -1926788825 +532445947 1 this.bits 196 @@ -93539,7 +93761,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3252 this -1926788825 +532445947 1 this.bits 196 @@ -93555,7 +93777,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3253 this -1926788825 +532445947 1 this.bits 196 @@ -93568,7 +93790,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3253 this -1926788825 +532445947 1 this.bits 196 @@ -93584,7 +93806,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3254 this -1926788825 +532445947 1 this.bits 196 @@ -93597,7 +93819,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3254 this -1926788825 +532445947 1 this.bits 196 @@ -93613,7 +93835,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3255 this -1926788825 +532445947 1 this.bits 196 @@ -93626,7 +93848,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3255 this -1926788825 +532445947 1 this.bits 196 @@ -93642,7 +93864,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3256 this -1926788825 +532445947 1 this.bits 196 @@ -93655,7 +93877,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3256 this -1926788825 +532445947 1 this.bits 196 @@ -93671,7 +93893,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3257 this -1926788825 +532445947 1 this.bits 196 @@ -93684,7 +93906,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3257 this -1926788825 +532445947 1 this.bits 196 @@ -93697,7 +93919,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3258 this -1926788825 +532445947 1 this.bits 196 @@ -93710,7 +93932,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3258 this -1926788825 +532445947 1 this.bits 196 @@ -93726,7 +93948,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3259 this -1926788825 +532445947 1 this.bits 196 @@ -93739,7 +93961,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3259 this -1926788825 +532445947 1 this.bits 196 @@ -93755,7 +93977,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3260 this -1926788825 +532445947 1 this.bits 196 @@ -93768,7 +93990,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3260 this -1926788825 +532445947 1 this.bits 196 @@ -93784,7 +94006,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3261 this -1926788825 +532445947 1 this.bits 196 @@ -93797,7 +94019,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3261 this -1926788825 +532445947 1 this.bits 196 @@ -93813,7 +94035,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3262 this -1926788825 +532445947 1 this.bits 196 @@ -93826,7 +94048,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3262 this -1926788825 +532445947 1 this.bits 196 @@ -93842,7 +94064,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3263 this -1926788825 +532445947 1 this.bits 196 @@ -93855,7 +94077,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3263 this -1926788825 +532445947 1 this.bits 196 @@ -93871,7 +94093,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3264 this -1926788825 +532445947 1 this.bits 196 @@ -93884,7 +94106,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3264 this -1926788825 +532445947 1 this.bits 196 @@ -93900,7 +94122,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3265 this -1926788825 +532445947 1 this.bits 196 @@ -93913,7 +94135,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3265 this -1926788825 +532445947 1 this.bits 196 @@ -93929,7 +94151,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3266 this -1926788825 +532445947 1 this.bits 196 @@ -93942,7 +94164,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3266 this -1926788825 +532445947 1 this.bits 196 @@ -93955,7 +94177,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3267 this -1926788825 +532445947 1 this.bits 196 @@ -93968,7 +94190,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3267 this -1926788825 +532445947 1 this.bits 196 @@ -93984,7 +94206,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3268 this -1926788825 +532445947 1 this.bits 196 @@ -93997,7 +94219,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3268 this -1926788825 +532445947 1 this.bits 196 @@ -94013,7 +94235,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3269 this -1926788825 +532445947 1 this.bits 196 @@ -94026,7 +94248,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3269 this -1926788825 +532445947 1 this.bits 196 @@ -94042,7 +94264,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3270 this -1926788825 +532445947 1 this.bits 196 @@ -94055,7 +94277,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3270 this -1926788825 +532445947 1 this.bits 196 @@ -94071,7 +94293,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3271 this -1926788825 +532445947 1 this.bits 196 @@ -94084,7 +94306,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3271 this -1926788825 +532445947 1 this.bits 196 @@ -94100,7 +94322,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3272 this -1926788825 +532445947 1 this.bits 196 @@ -94113,7 +94335,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3272 this -1926788825 +532445947 1 this.bits 196 @@ -94129,7 +94351,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3273 this -1926788825 +532445947 1 this.bits 196 @@ -94142,7 +94364,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3273 this -1926788825 +532445947 1 this.bits 196 @@ -94158,7 +94380,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3274 this -1926788825 +532445947 1 this.bits 196 @@ -94171,7 +94393,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3274 this -1926788825 +532445947 1 this.bits 196 @@ -94187,7 +94409,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3275 this -1926788825 +532445947 1 this.bits 196 @@ -94200,7 +94422,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3275 this -1926788825 +532445947 1 this.bits 212 @@ -94213,7 +94435,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3276 this -1926788825 +532445947 1 this.bits 212 @@ -94226,7 +94448,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3276 this -1926788825 +532445947 1 this.bits 212 @@ -94242,7 +94464,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3277 this -1926788825 +532445947 1 this.bits 212 @@ -94255,7 +94477,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3277 this -1926788825 +532445947 1 this.bits 212 @@ -94271,7 +94493,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3278 this -1926788825 +532445947 1 this.bits 212 @@ -94284,7 +94506,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3278 this -1926788825 +532445947 1 this.bits 212 @@ -94300,7 +94522,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3279 this -1926788825 +532445947 1 this.bits 212 @@ -94313,7 +94535,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3279 this -1926788825 +532445947 1 this.bits 212 @@ -94329,7 +94551,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3280 this -1926788825 +532445947 1 this.bits 212 @@ -94342,7 +94564,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3280 this -1926788825 +532445947 1 this.bits 212 @@ -94358,7 +94580,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3281 this -1926788825 +532445947 1 this.bits 212 @@ -94371,7 +94593,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3281 this -1926788825 +532445947 1 this.bits 212 @@ -94387,7 +94609,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3282 this -1926788825 +532445947 1 this.bits 212 @@ -94400,7 +94622,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3282 this -1926788825 +532445947 1 this.bits 212 @@ -94416,7 +94638,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3283 this -1926788825 +532445947 1 this.bits 212 @@ -94429,7 +94651,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3283 this -1926788825 +532445947 1 this.bits 212 @@ -94445,7 +94667,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3284 this -1926788825 +532445947 1 this.bits 212 @@ -94458,7 +94680,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3284 this -1926788825 +532445947 1 this.bits 208 @@ -94471,7 +94693,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3285 this -1926788825 +532445947 1 this.bits 208 @@ -94484,7 +94706,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3285 this -1926788825 +532445947 1 this.bits 208 @@ -94500,7 +94722,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3286 this -1926788825 +532445947 1 this.bits 208 @@ -94513,7 +94735,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3286 this -1926788825 +532445947 1 this.bits 208 @@ -94529,7 +94751,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3287 this -1926788825 +532445947 1 this.bits 208 @@ -94542,7 +94764,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3287 this -1926788825 +532445947 1 this.bits 208 @@ -94558,7 +94780,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3288 this -1926788825 +532445947 1 this.bits 208 @@ -94571,7 +94793,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3288 this -1926788825 +532445947 1 this.bits 208 @@ -94587,7 +94809,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3289 this -1926788825 +532445947 1 this.bits 208 @@ -94600,7 +94822,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3289 this -1926788825 +532445947 1 this.bits 208 @@ -94616,7 +94838,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3290 this -1926788825 +532445947 1 this.bits 208 @@ -94629,7 +94851,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3290 this -1926788825 +532445947 1 this.bits 208 @@ -94645,7 +94867,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3291 this -1926788825 +532445947 1 this.bits 208 @@ -94658,7 +94880,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3291 this -1926788825 +532445947 1 this.bits 208 @@ -94674,7 +94896,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3292 this -1926788825 +532445947 1 this.bits 208 @@ -94687,7 +94909,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3292 this -1926788825 +532445947 1 this.bits 208 @@ -94703,7 +94925,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3293 this -1926788825 +532445947 1 this.bits 208 @@ -94716,7 +94938,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3293 this -1926788825 +532445947 1 this.bits 240 @@ -94729,7 +94951,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3294 this -1926788825 +532445947 1 this.bits 240 @@ -94742,7 +94964,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3294 this -1926788825 +532445947 1 this.bits 240 @@ -94758,7 +94980,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3295 this -1926788825 +532445947 1 this.bits 240 @@ -94771,7 +94993,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3295 this -1926788825 +532445947 1 this.bits 240 @@ -94787,7 +95009,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3296 this -1926788825 +532445947 1 this.bits 240 @@ -94800,7 +95022,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3296 this -1926788825 +532445947 1 this.bits 240 @@ -94816,7 +95038,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3297 this -1926788825 +532445947 1 this.bits 240 @@ -94829,7 +95051,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3297 this -1926788825 +532445947 1 this.bits 240 @@ -94845,7 +95067,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3298 this -1926788825 +532445947 1 this.bits 240 @@ -94858,7 +95080,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3298 this -1926788825 +532445947 1 this.bits 240 @@ -94874,7 +95096,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3299 this -1926788825 +532445947 1 this.bits 240 @@ -94887,7 +95109,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3299 this -1926788825 +532445947 1 this.bits 240 @@ -94903,7 +95125,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3300 this -1926788825 +532445947 1 this.bits 240 @@ -94916,7 +95138,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3300 this -1926788825 +532445947 1 this.bits 240 @@ -94932,7 +95154,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3301 this -1926788825 +532445947 1 this.bits 240 @@ -94945,7 +95167,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3301 this -1926788825 +532445947 1 this.bits 240 @@ -94961,7 +95183,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3302 this -1926788825 +532445947 1 this.bits 240 @@ -94974,7 +95196,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3302 this -1926788825 +532445947 1 this.bits 112 @@ -94987,7 +95209,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3303 this -1926788825 +532445947 1 this.bits 112 @@ -95000,7 +95222,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3303 this -1926788825 +532445947 1 this.bits 112 @@ -95016,7 +95238,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3304 this -1926788825 +532445947 1 this.bits 112 @@ -95029,7 +95251,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3304 this -1926788825 +532445947 1 this.bits 112 @@ -95045,7 +95267,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3305 this -1926788825 +532445947 1 this.bits 112 @@ -95058,7 +95280,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3305 this -1926788825 +532445947 1 this.bits 112 @@ -95074,7 +95296,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3306 this -1926788825 +532445947 1 this.bits 112 @@ -95087,7 +95309,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3306 this -1926788825 +532445947 1 this.bits 112 @@ -95103,7 +95325,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3307 this -1926788825 +532445947 1 this.bits 112 @@ -95116,7 +95338,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3307 this -1926788825 +532445947 1 this.bits 112 @@ -95132,7 +95354,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3308 this -1926788825 +532445947 1 this.bits 112 @@ -95145,7 +95367,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3308 this -1926788825 +532445947 1 this.bits 112 @@ -95161,7 +95383,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3309 this -1926788825 +532445947 1 this.bits 112 @@ -95174,7 +95396,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3309 this -1926788825 +532445947 1 this.bits 112 @@ -95190,7 +95412,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3310 this -1926788825 +532445947 1 this.bits 112 @@ -95203,7 +95425,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3310 this -1926788825 +532445947 1 this.bits 112 @@ -95219,7 +95441,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3311 this -1926788825 +532445947 1 this.bits 112 @@ -95232,7 +95454,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3311 this -1926788825 +532445947 1 this.bits 116 @@ -95245,7 +95467,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3312 this -1926788825 +532445947 1 this.bits 116 @@ -95258,7 +95480,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3312 this -1926788825 +532445947 1 this.bits 116 @@ -95274,7 +95496,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3313 this -1926788825 +532445947 1 this.bits 116 @@ -95287,7 +95509,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3313 this -1926788825 +532445947 1 this.bits 116 @@ -95303,7 +95525,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3314 this -1926788825 +532445947 1 this.bits 116 @@ -95316,7 +95538,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3314 this -1926788825 +532445947 1 this.bits 116 @@ -95332,7 +95554,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3315 this -1926788825 +532445947 1 this.bits 116 @@ -95345,7 +95567,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3315 this -1926788825 +532445947 1 this.bits 116 @@ -95361,7 +95583,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3316 this -1926788825 +532445947 1 this.bits 116 @@ -95374,7 +95596,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3316 this -1926788825 +532445947 1 this.bits 116 @@ -95390,7 +95612,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3317 this -1926788825 +532445947 1 this.bits 116 @@ -95403,7 +95625,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3317 this -1926788825 +532445947 1 this.bits 116 @@ -95419,7 +95641,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3318 this -1926788825 +532445947 1 this.bits 116 @@ -95432,7 +95654,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3318 this -1926788825 +532445947 1 this.bits 116 @@ -95448,7 +95670,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3319 this -1926788825 +532445947 1 this.bits 116 @@ -95461,7 +95683,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3319 this -1926788825 +532445947 1 this.bits 116 @@ -95477,7 +95699,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3320 this -1926788825 +532445947 1 this.bits 116 @@ -95490,7 +95712,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3320 this -1926788825 +532445947 1 this.bits 112 @@ -95503,7 +95725,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3321 this -1926788825 +532445947 1 this.bits 112 @@ -95516,7 +95738,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3321 this -1926788825 +532445947 1 this.bits 112 @@ -95532,7 +95754,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3322 this -1926788825 +532445947 1 this.bits 112 @@ -95545,7 +95767,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3322 this -1926788825 +532445947 1 this.bits 112 @@ -95561,7 +95783,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3323 this -1926788825 +532445947 1 this.bits 112 @@ -95574,7 +95796,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3323 this -1926788825 +532445947 1 this.bits 112 @@ -95590,7 +95812,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3324 this -1926788825 +532445947 1 this.bits 112 @@ -95603,7 +95825,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3324 this -1926788825 +532445947 1 this.bits 112 @@ -95619,7 +95841,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3325 this -1926788825 +532445947 1 this.bits 112 @@ -95632,7 +95854,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3325 this -1926788825 +532445947 1 this.bits 112 @@ -95648,7 +95870,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3326 this -1926788825 +532445947 1 this.bits 112 @@ -95661,7 +95883,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3326 this -1926788825 +532445947 1 this.bits 112 @@ -95677,7 +95899,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3327 this -1926788825 +532445947 1 this.bits 112 @@ -95690,7 +95912,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3327 this -1926788825 +532445947 1 this.bits 112 @@ -95706,7 +95928,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3328 this -1926788825 +532445947 1 this.bits 112 @@ -95719,7 +95941,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3328 this -1926788825 +532445947 1 this.bits 112 @@ -95735,7 +95957,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3329 this -1926788825 +532445947 1 this.bits 112 @@ -95748,7 +95970,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3329 this -1926788825 +532445947 1 this.bits 112 @@ -95761,7 +95983,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3330 this -1926788825 +532445947 1 this.bits 112 @@ -95774,7 +95996,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3330 this -1926788825 +532445947 1 this.bits 112 @@ -95790,7 +96012,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3331 this -1926788825 +532445947 1 this.bits 112 @@ -95803,7 +96025,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3331 this -1926788825 +532445947 1 this.bits 112 @@ -95819,7 +96041,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3332 this -1926788825 +532445947 1 this.bits 112 @@ -95832,7 +96054,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3332 this -1926788825 +532445947 1 this.bits 112 @@ -95848,7 +96070,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3333 this -1926788825 +532445947 1 this.bits 112 @@ -95861,7 +96083,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3333 this -1926788825 +532445947 1 this.bits 112 @@ -95877,7 +96099,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3334 this -1926788825 +532445947 1 this.bits 112 @@ -95890,7 +96112,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3334 this -1926788825 +532445947 1 this.bits 112 @@ -95906,7 +96128,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3335 this -1926788825 +532445947 1 this.bits 112 @@ -95919,7 +96141,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3335 this -1926788825 +532445947 1 this.bits 112 @@ -95935,7 +96157,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3336 this -1926788825 +532445947 1 this.bits 112 @@ -95948,7 +96170,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3336 this -1926788825 +532445947 1 this.bits 112 @@ -95964,7 +96186,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3337 this -1926788825 +532445947 1 this.bits 112 @@ -95977,7 +96199,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3337 this -1926788825 +532445947 1 this.bits 112 @@ -95993,7 +96215,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3338 this -1926788825 +532445947 1 this.bits 112 @@ -96006,7 +96228,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3338 this -1926788825 +532445947 1 this.bits 112 @@ -96019,7 +96241,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3339 this -1926788825 +532445947 1 this.bits 112 @@ -96032,7 +96254,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3339 this -1926788825 +532445947 1 this.bits 112 @@ -96048,7 +96270,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3340 this -1926788825 +532445947 1 this.bits 112 @@ -96061,7 +96283,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3340 this -1926788825 +532445947 1 this.bits 112 @@ -96077,7 +96299,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3341 this -1926788825 +532445947 1 this.bits 112 @@ -96090,7 +96312,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3341 this -1926788825 +532445947 1 this.bits 112 @@ -96106,7 +96328,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3342 this -1926788825 +532445947 1 this.bits 112 @@ -96119,7 +96341,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3342 this -1926788825 +532445947 1 this.bits 112 @@ -96135,7 +96357,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3343 this -1926788825 +532445947 1 this.bits 112 @@ -96148,7 +96370,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3343 this -1926788825 +532445947 1 this.bits 112 @@ -96164,7 +96386,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3344 this -1926788825 +532445947 1 this.bits 112 @@ -96177,7 +96399,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3344 this -1926788825 +532445947 1 this.bits 112 @@ -96193,7 +96415,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3345 this -1926788825 +532445947 1 this.bits 112 @@ -96206,7 +96428,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3345 this -1926788825 +532445947 1 this.bits 112 @@ -96222,7 +96444,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3346 this -1926788825 +532445947 1 this.bits 112 @@ -96235,7 +96457,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3346 this -1926788825 +532445947 1 this.bits 112 @@ -96251,7 +96473,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3347 this -1926788825 +532445947 1 this.bits 112 @@ -96264,7 +96486,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3347 this -1926788825 +532445947 1 this.bits 112 @@ -96277,7 +96499,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3348 this -1926788825 +532445947 1 this.bits 112 @@ -96290,7 +96512,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3348 this -1926788825 +532445947 1 this.bits 112 @@ -96306,7 +96528,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3349 this -1926788825 +532445947 1 this.bits 112 @@ -96319,7 +96541,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3349 this -1926788825 +532445947 1 this.bits 112 @@ -96335,7 +96557,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3350 this -1926788825 +532445947 1 this.bits 112 @@ -96348,7 +96570,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3350 this -1926788825 +532445947 1 this.bits 112 @@ -96364,7 +96586,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3351 this -1926788825 +532445947 1 this.bits 112 @@ -96377,7 +96599,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3351 this -1926788825 +532445947 1 this.bits 112 @@ -96393,7 +96615,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3352 this -1926788825 +532445947 1 this.bits 112 @@ -96406,7 +96628,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3352 this -1926788825 +532445947 1 this.bits 112 @@ -96422,7 +96644,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3353 this -1926788825 +532445947 1 this.bits 112 @@ -96435,7 +96657,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3353 this -1926788825 +532445947 1 this.bits 112 @@ -96451,7 +96673,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3354 this -1926788825 +532445947 1 this.bits 112 @@ -96464,7 +96686,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3354 this -1926788825 +532445947 1 this.bits 112 @@ -96480,7 +96702,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3355 this -1926788825 +532445947 1 this.bits 112 @@ -96493,7 +96715,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3355 this -1926788825 +532445947 1 this.bits 112 @@ -96509,7 +96731,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3356 this -1926788825 +532445947 1 this.bits 112 @@ -96522,7 +96744,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3356 this -1926788825 +532445947 1 this.bits 112 @@ -96535,7 +96757,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3357 this -1926788825 +532445947 1 this.bits 112 @@ -96548,7 +96770,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3357 this -1926788825 +532445947 1 this.bits 112 @@ -96564,7 +96786,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3358 this -1926788825 +532445947 1 this.bits 112 @@ -96577,7 +96799,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3358 this -1926788825 +532445947 1 this.bits 112 @@ -96593,7 +96815,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3359 this -1926788825 +532445947 1 this.bits 112 @@ -96606,7 +96828,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3359 this -1926788825 +532445947 1 this.bits 112 @@ -96622,7 +96844,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3360 this -1926788825 +532445947 1 this.bits 112 @@ -96635,7 +96857,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3360 this -1926788825 +532445947 1 this.bits 112 @@ -96651,7 +96873,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3361 this -1926788825 +532445947 1 this.bits 112 @@ -96664,7 +96886,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3361 this -1926788825 +532445947 1 this.bits 112 @@ -96680,7 +96902,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3362 this -1926788825 +532445947 1 this.bits 112 @@ -96693,7 +96915,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3362 this -1926788825 +532445947 1 this.bits 112 @@ -96709,7 +96931,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3363 this -1926788825 +532445947 1 this.bits 112 @@ -96722,7 +96944,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3363 this -1926788825 +532445947 1 this.bits 112 @@ -96738,7 +96960,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3364 this -1926788825 +532445947 1 this.bits 112 @@ -96751,7 +96973,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3364 this -1926788825 +532445947 1 this.bits 112 @@ -96767,7 +96989,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3365 this -1926788825 +532445947 1 this.bits 112 @@ -96780,7 +97002,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3365 this -1926788825 +532445947 1 this.bits 116 @@ -96793,7 +97015,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3366 this -1926788825 +532445947 1 this.bits 116 @@ -96806,7 +97028,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3366 this -1926788825 +532445947 1 this.bits 116 @@ -96822,7 +97044,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3367 this -1926788825 +532445947 1 this.bits 116 @@ -96835,7 +97057,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3367 this -1926788825 +532445947 1 this.bits 116 @@ -96851,7 +97073,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3368 this -1926788825 +532445947 1 this.bits 116 @@ -96864,7 +97086,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3368 this -1926788825 +532445947 1 this.bits 116 @@ -96880,7 +97102,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3369 this -1926788825 +532445947 1 this.bits 116 @@ -96893,7 +97115,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3369 this -1926788825 +532445947 1 this.bits 116 @@ -96909,7 +97131,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3370 this -1926788825 +532445947 1 this.bits 116 @@ -96922,7 +97144,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3370 this -1926788825 +532445947 1 this.bits 116 @@ -96938,7 +97160,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3371 this -1926788825 +532445947 1 this.bits 116 @@ -96951,7 +97173,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3371 this -1926788825 +532445947 1 this.bits 116 @@ -96967,7 +97189,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3372 this -1926788825 +532445947 1 this.bits 116 @@ -96980,7 +97202,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3372 this -1926788825 +532445947 1 this.bits 116 @@ -96996,7 +97218,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3373 this -1926788825 +532445947 1 this.bits 116 @@ -97009,7 +97231,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3373 this -1926788825 +532445947 1 this.bits 116 @@ -97025,7 +97247,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3374 this -1926788825 +532445947 1 this.bits 116 @@ -97038,7 +97260,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3374 this -1926788825 +532445947 1 this.bits 100 @@ -97051,7 +97273,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3375 this -1926788825 +532445947 1 this.bits 100 @@ -97064,7 +97286,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3375 this -1926788825 +532445947 1 this.bits 100 @@ -97080,7 +97302,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3376 this -1926788825 +532445947 1 this.bits 100 @@ -97093,7 +97315,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3376 this -1926788825 +532445947 1 this.bits 100 @@ -97109,7 +97331,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3377 this -1926788825 +532445947 1 this.bits 100 @@ -97122,7 +97344,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3377 this -1926788825 +532445947 1 this.bits 100 @@ -97138,7 +97360,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3378 this -1926788825 +532445947 1 this.bits 100 @@ -97151,7 +97373,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3378 this -1926788825 +532445947 1 this.bits 100 @@ -97167,7 +97389,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3379 this -1926788825 +532445947 1 this.bits 100 @@ -97180,7 +97402,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3379 this -1926788825 +532445947 1 this.bits 100 @@ -97196,7 +97418,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3380 this -1926788825 +532445947 1 this.bits 100 @@ -97209,7 +97431,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3380 this -1926788825 +532445947 1 this.bits 100 @@ -97225,7 +97447,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3381 this -1926788825 +532445947 1 this.bits 100 @@ -97238,7 +97460,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3381 this -1926788825 +532445947 1 this.bits 100 @@ -97254,7 +97476,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3382 this -1926788825 +532445947 1 this.bits 100 @@ -97267,7 +97489,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3382 this -1926788825 +532445947 1 this.bits 100 @@ -97283,7 +97505,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3383 this -1926788825 +532445947 1 this.bits 100 @@ -97296,7 +97518,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3383 this -1926788825 +532445947 1 this.bits 228 @@ -97309,7 +97531,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3384 this -1926788825 +532445947 1 this.bits 228 @@ -97322,7 +97544,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3384 this -1926788825 +532445947 1 this.bits 228 @@ -97338,7 +97560,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3385 this -1926788825 +532445947 1 this.bits 228 @@ -97351,7 +97573,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3385 this -1926788825 +532445947 1 this.bits 228 @@ -97367,7 +97589,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3386 this -1926788825 +532445947 1 this.bits 228 @@ -97380,7 +97602,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3386 this -1926788825 +532445947 1 this.bits 228 @@ -97396,7 +97618,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3387 this -1926788825 +532445947 1 this.bits 228 @@ -97409,7 +97631,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3387 this -1926788825 +532445947 1 this.bits 228 @@ -97425,7 +97647,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3388 this -1926788825 +532445947 1 this.bits 228 @@ -97438,7 +97660,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3388 this -1926788825 +532445947 1 this.bits 228 @@ -97454,7 +97676,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3389 this -1926788825 +532445947 1 this.bits 228 @@ -97467,7 +97689,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3389 this -1926788825 +532445947 1 this.bits 228 @@ -97483,7 +97705,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3390 this -1926788825 +532445947 1 this.bits 228 @@ -97496,7 +97718,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3390 this -1926788825 +532445947 1 this.bits 228 @@ -97512,7 +97734,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3391 this -1926788825 +532445947 1 this.bits 228 @@ -97525,7 +97747,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3391 this -1926788825 +532445947 1 this.bits 228 @@ -97541,7 +97763,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3392 this -1926788825 +532445947 1 this.bits 228 @@ -97554,7 +97776,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3392 this -1926788825 +532445947 1 this.bits 228 @@ -97567,7 +97789,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3393 this -1926788825 +532445947 1 this.bits 228 @@ -97580,7 +97802,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3393 this -1926788825 +532445947 1 this.bits 228 @@ -97596,7 +97818,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3394 this -1926788825 +532445947 1 this.bits 228 @@ -97609,7 +97831,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3394 this -1926788825 +532445947 1 this.bits 228 @@ -97625,7 +97847,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3395 this -1926788825 +532445947 1 this.bits 228 @@ -97638,7 +97860,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3395 this -1926788825 +532445947 1 this.bits 228 @@ -97654,7 +97876,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3396 this -1926788825 +532445947 1 this.bits 228 @@ -97667,7 +97889,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3396 this -1926788825 +532445947 1 this.bits 228 @@ -97683,7 +97905,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3397 this -1926788825 +532445947 1 this.bits 228 @@ -97696,7 +97918,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3397 this -1926788825 +532445947 1 this.bits 228 @@ -97712,7 +97934,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3398 this -1926788825 +532445947 1 this.bits 228 @@ -97725,7 +97947,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3398 this -1926788825 +532445947 1 this.bits 228 @@ -97741,7 +97963,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3399 this -1926788825 +532445947 1 this.bits 228 @@ -97754,7 +97976,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3399 this -1926788825 +532445947 1 this.bits 228 @@ -97770,7 +97992,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3400 this -1926788825 +532445947 1 this.bits 228 @@ -97783,7 +98005,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3400 this -1926788825 +532445947 1 this.bits 228 @@ -97799,7 +98021,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3401 this -1926788825 +532445947 1 this.bits 228 @@ -97812,7 +98034,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3401 this -1926788825 +532445947 1 this.bits 244 @@ -97825,7 +98047,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3402 this -1926788825 +532445947 1 this.bits 244 @@ -97838,7 +98060,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3402 this -1926788825 +532445947 1 this.bits 244 @@ -97854,7 +98076,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3403 this -1926788825 +532445947 1 this.bits 244 @@ -97867,7 +98089,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3403 this -1926788825 +532445947 1 this.bits 244 @@ -97883,7 +98105,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3404 this -1926788825 +532445947 1 this.bits 244 @@ -97896,7 +98118,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3404 this -1926788825 +532445947 1 this.bits 244 @@ -97912,7 +98134,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3405 this -1926788825 +532445947 1 this.bits 244 @@ -97925,7 +98147,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3405 this -1926788825 +532445947 1 this.bits 244 @@ -97941,7 +98163,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3406 this -1926788825 +532445947 1 this.bits 244 @@ -97954,7 +98176,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3406 this -1926788825 +532445947 1 this.bits 244 @@ -97970,7 +98192,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3407 this -1926788825 +532445947 1 this.bits 244 @@ -97983,7 +98205,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3407 this -1926788825 +532445947 1 this.bits 244 @@ -97999,7 +98221,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3408 this -1926788825 +532445947 1 this.bits 244 @@ -98012,7 +98234,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3408 this -1926788825 +532445947 1 this.bits 244 @@ -98028,7 +98250,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3409 this -1926788825 +532445947 1 this.bits 244 @@ -98041,7 +98263,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3409 this -1926788825 +532445947 1 this.bits 244 @@ -98057,7 +98279,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3410 this -1926788825 +532445947 1 this.bits 244 @@ -98070,7 +98292,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3410 this -1926788825 +532445947 1 this.bits 244 @@ -98083,7 +98305,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3411 this -1926788825 +532445947 1 this.bits 244 @@ -98096,7 +98318,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3411 this -1926788825 +532445947 1 this.bits 244 @@ -98112,7 +98334,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3412 this -1926788825 +532445947 1 this.bits 244 @@ -98125,7 +98347,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3412 this -1926788825 +532445947 1 this.bits 244 @@ -98141,7 +98363,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3413 this -1926788825 +532445947 1 this.bits 244 @@ -98154,7 +98376,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3413 this -1926788825 +532445947 1 this.bits 244 @@ -98170,7 +98392,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3414 this -1926788825 +532445947 1 this.bits 244 @@ -98183,7 +98405,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3414 this -1926788825 +532445947 1 this.bits 244 @@ -98199,7 +98421,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3415 this -1926788825 +532445947 1 this.bits 244 @@ -98212,7 +98434,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3415 this -1926788825 +532445947 1 this.bits 244 @@ -98228,7 +98450,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3416 this -1926788825 +532445947 1 this.bits 244 @@ -98241,7 +98463,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3416 this -1926788825 +532445947 1 this.bits 244 @@ -98257,7 +98479,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3417 this -1926788825 +532445947 1 this.bits 244 @@ -98270,7 +98492,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3417 this -1926788825 +532445947 1 this.bits 244 @@ -98286,7 +98508,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3418 this -1926788825 +532445947 1 this.bits 244 @@ -98299,7 +98521,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3418 this -1926788825 +532445947 1 this.bits 244 @@ -98315,7 +98537,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3419 this -1926788825 +532445947 1 this.bits 244 @@ -98328,7 +98550,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3419 this -1926788825 +532445947 1 this.bits 244 @@ -98341,7 +98563,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3420 this -1926788825 +532445947 1 this.bits 244 @@ -98354,7 +98576,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3420 this -1926788825 +532445947 1 this.bits 244 @@ -98370,7 +98592,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3421 this -1926788825 +532445947 1 this.bits 244 @@ -98383,7 +98605,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3421 this -1926788825 +532445947 1 this.bits 244 @@ -98399,7 +98621,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3422 this -1926788825 +532445947 1 this.bits 244 @@ -98412,7 +98634,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3422 this -1926788825 +532445947 1 this.bits 244 @@ -98428,7 +98650,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3423 this -1926788825 +532445947 1 this.bits 244 @@ -98441,7 +98663,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3423 this -1926788825 +532445947 1 this.bits 244 @@ -98457,7 +98679,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3424 this -1926788825 +532445947 1 this.bits 244 @@ -98470,7 +98692,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3424 this -1926788825 +532445947 1 this.bits 244 @@ -98486,7 +98708,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3425 this -1926788825 +532445947 1 this.bits 244 @@ -98499,7 +98721,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3425 this -1926788825 +532445947 1 this.bits 244 @@ -98515,7 +98737,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3426 this -1926788825 +532445947 1 this.bits 244 @@ -98528,7 +98750,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3426 this -1926788825 +532445947 1 this.bits 244 @@ -98544,7 +98766,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3427 this -1926788825 +532445947 1 this.bits 244 @@ -98557,7 +98779,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3427 this -1926788825 +532445947 1 this.bits 244 @@ -98573,7 +98795,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3428 this -1926788825 +532445947 1 this.bits 244 @@ -98586,7 +98808,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3428 this -1926788825 +532445947 1 this.bits 244 @@ -98599,7 +98821,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3429 this -1926788825 +532445947 1 this.bits 244 @@ -98612,7 +98834,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3429 this -1926788825 +532445947 1 this.bits 244 @@ -98628,7 +98850,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3430 this -1926788825 +532445947 1 this.bits 244 @@ -98641,7 +98863,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3430 this -1926788825 +532445947 1 this.bits 244 @@ -98657,7 +98879,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3431 this -1926788825 +532445947 1 this.bits 244 @@ -98670,7 +98892,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3431 this -1926788825 +532445947 1 this.bits 244 @@ -98686,7 +98908,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3432 this -1926788825 +532445947 1 this.bits 244 @@ -98699,7 +98921,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3432 this -1926788825 +532445947 1 this.bits 244 @@ -98715,7 +98937,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3433 this -1926788825 +532445947 1 this.bits 244 @@ -98728,7 +98950,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3433 this -1926788825 +532445947 1 this.bits 244 @@ -98744,7 +98966,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3434 this -1926788825 +532445947 1 this.bits 244 @@ -98757,7 +98979,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3434 this -1926788825 +532445947 1 this.bits 244 @@ -98773,7 +98995,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3435 this -1926788825 +532445947 1 this.bits 244 @@ -98786,7 +99008,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3435 this -1926788825 +532445947 1 this.bits 244 @@ -98802,7 +99024,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3436 this -1926788825 +532445947 1 this.bits 244 @@ -98815,7 +99037,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3436 this -1926788825 +532445947 1 this.bits 244 @@ -98831,7 +99053,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3437 this -1926788825 +532445947 1 this.bits 244 @@ -98844,7 +99066,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3437 this -1926788825 +532445947 1 this.bits 244 @@ -98857,7 +99079,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3438 this -1926788825 +532445947 1 this.bits 244 @@ -98870,7 +99092,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3438 this -1926788825 +532445947 1 this.bits 244 @@ -98886,7 +99108,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3439 this -1926788825 +532445947 1 this.bits 244 @@ -98899,7 +99121,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3439 this -1926788825 +532445947 1 this.bits 244 @@ -98915,7 +99137,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3440 this -1926788825 +532445947 1 this.bits 244 @@ -98928,7 +99150,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3440 this -1926788825 +532445947 1 this.bits 244 @@ -98944,7 +99166,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3441 this -1926788825 +532445947 1 this.bits 244 @@ -98957,7 +99179,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3441 this -1926788825 +532445947 1 this.bits 244 @@ -98973,7 +99195,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3442 this -1926788825 +532445947 1 this.bits 244 @@ -98986,7 +99208,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3442 this -1926788825 +532445947 1 this.bits 244 @@ -99002,7 +99224,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3443 this -1926788825 +532445947 1 this.bits 244 @@ -99015,7 +99237,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3443 this -1926788825 +532445947 1 this.bits 244 @@ -99031,7 +99253,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3444 this -1926788825 +532445947 1 this.bits 244 @@ -99044,7 +99266,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3444 this -1926788825 +532445947 1 this.bits 244 @@ -99060,7 +99282,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3445 this -1926788825 +532445947 1 this.bits 244 @@ -99073,7 +99295,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3445 this -1926788825 +532445947 1 this.bits 244 @@ -99089,7 +99311,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3446 this -1926788825 +532445947 1 this.bits 244 @@ -99102,7 +99324,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3446 this -1926788825 +532445947 1 this.bits 180 @@ -99115,7 +99337,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3447 this -1926788825 +532445947 1 this.bits 180 @@ -99128,7 +99350,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3447 this -1926788825 +532445947 1 this.bits 180 @@ -99144,7 +99366,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3448 this -1926788825 +532445947 1 this.bits 180 @@ -99157,7 +99379,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3448 this -1926788825 +532445947 1 this.bits 180 @@ -99173,7 +99395,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3449 this -1926788825 +532445947 1 this.bits 180 @@ -99186,7 +99408,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3449 this -1926788825 +532445947 1 this.bits 180 @@ -99202,7 +99424,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3450 this -1926788825 +532445947 1 this.bits 180 @@ -99215,7 +99437,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3450 this -1926788825 +532445947 1 this.bits 180 @@ -99231,7 +99453,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3451 this -1926788825 +532445947 1 this.bits 180 @@ -99244,7 +99466,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3451 this -1926788825 +532445947 1 this.bits 180 @@ -99260,7 +99482,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3452 this -1926788825 +532445947 1 this.bits 180 @@ -99273,7 +99495,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3452 this -1926788825 +532445947 1 this.bits 180 @@ -99289,7 +99511,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3453 this -1926788825 +532445947 1 this.bits 180 @@ -99302,7 +99524,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3453 this -1926788825 +532445947 1 this.bits 180 @@ -99318,7 +99540,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3454 this -1926788825 +532445947 1 this.bits 180 @@ -99331,7 +99553,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3454 this -1926788825 +532445947 1 this.bits 180 @@ -99347,7 +99569,7 @@ six170.TinySet.add(int):::ENTER this_invocation_nonce 3455 this -1926788825 +532445947 1 this.bits 180 @@ -99360,7 +99582,7 @@ six170.TinySet.add(int):::EXIT33 this_invocation_nonce 3455 this -1926788825 +532445947 1 this.bits 188 @@ -99373,7 +99595,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3456 this -1926788825 +532445947 1 this.bits 188 @@ -99386,7 +99608,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3456 this -1926788825 +532445947 1 this.bits 188 @@ -99402,7 +99624,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3457 this -1926788825 +532445947 1 this.bits 188 @@ -99415,7 +99637,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3457 this -1926788825 +532445947 1 this.bits 188 @@ -99431,7 +99653,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3458 this -1926788825 +532445947 1 this.bits 188 @@ -99444,7 +99666,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3458 this -1926788825 +532445947 1 this.bits 188 @@ -99460,7 +99682,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3459 this -1926788825 +532445947 1 this.bits 188 @@ -99473,7 +99695,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3459 this -1926788825 +532445947 1 this.bits 188 @@ -99489,7 +99711,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3460 this -1926788825 +532445947 1 this.bits 188 @@ -99502,7 +99724,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3460 this -1926788825 +532445947 1 this.bits 188 @@ -99518,7 +99740,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3461 this -1926788825 +532445947 1 this.bits 188 @@ -99531,7 +99753,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3461 this -1926788825 +532445947 1 this.bits 188 @@ -99547,7 +99769,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3462 this -1926788825 +532445947 1 this.bits 188 @@ -99560,7 +99782,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3462 this -1926788825 +532445947 1 this.bits 188 @@ -99576,7 +99798,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3463 this -1926788825 +532445947 1 this.bits 188 @@ -99589,7 +99811,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3463 this -1926788825 +532445947 1 this.bits 188 @@ -99605,7 +99827,7 @@ six170.TinySet.remove(int):::ENTER this_invocation_nonce 3464 this -1926788825 +532445947 1 this.bits 188 @@ -99618,7 +99840,7 @@ six170.TinySet.remove(int):::EXIT41 this_invocation_nonce 3464 this -1926788825 +532445947 1 this.bits 188 @@ -99631,7 +99853,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3465 this -1926788825 +532445947 1 this.bits 188 @@ -99644,7 +99866,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3465 this -1926788825 +532445947 1 this.bits 188 @@ -99660,7 +99882,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3466 this -1926788825 +532445947 1 this.bits 188 @@ -99673,7 +99895,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3466 this -1926788825 +532445947 1 this.bits 188 @@ -99689,7 +99911,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3467 this -1926788825 +532445947 1 this.bits 188 @@ -99702,7 +99924,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3467 this -1926788825 +532445947 1 this.bits 188 @@ -99718,7 +99940,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3468 this -1926788825 +532445947 1 this.bits 188 @@ -99731,7 +99953,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3468 this -1926788825 +532445947 1 this.bits 188 @@ -99747,7 +99969,7 @@ six170.TinySet.contains(int):::ENTER this_invocation_nonce 3469 this -1926788825 +532445947 1 this.bits 188 @@ -99760,7 +99982,7 @@ six170.TinySet.contains(int):::EXIT48 this_invocation_nonce 3469 this -1926788825 +532445947 1 this.bits 188 @@ -99772,216 +99994,3 @@ return true 1 -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3470 -this -1926788825 -1 -this.bits -188 -1 -n -5 -1 - -six170.TinySet.contains(int):::EXIT48 -this_invocation_nonce -3470 -this -1926788825 -1 -this.bits -188 -1 -n -5 -1 -return -true -1 - -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3471 -this -1926788825 -1 -this.bits -188 -1 -n -6 -1 - -six170.TinySet.contains(int):::EXIT48 -this_invocation_nonce -3471 -this -1926788825 -1 -this.bits -188 -1 -n -6 -1 -return -false -1 - -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3472 -this -1926788825 -1 -this.bits -188 -1 -n -7 -1 - -six170.TinySet.contains(int):::EXIT48 -this_invocation_nonce -3472 -this -1926788825 -1 -this.bits -188 -1 -n -7 -1 -return -true -1 - -six170.TinySet.add(int):::ENTER -this_invocation_nonce -3473 -this -1926788825 -1 -this.bits -188 -1 -n -3 -1 - -six170.TinySet.add(int):::EXIT33 -this_invocation_nonce -3473 -this -1926788825 -1 -this.bits -188 -1 -n -3 -1 - -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3474 -this -1926788825 -1 -this.bits -188 -1 -n -0 -1 - -six170.TinySet.contains(int):::EXIT48 -this_invocation_nonce -3474 -this -1926788825 -1 -this.bits -188 -1 -n -0 -1 -return -false -1 - -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3475 -this -1926788825 -1 -this.bits -188 -1 -n -1 -1 - -six170.TinySet.contains(int):::EXIT48 -this_invocation_nonce -3475 -this -1926788825 -1 -this.bits -188 -1 -n -1 -1 -return -false -1 - -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3476 -this -1926788825 -1 -this.bits -188 -1 -n -2 -1 - -six170.TinySet.contains(int):::EXIT48 -this_invocation_nonce -3476 -this -1926788825 -1 -this.bits -188 -1 -n -2 -1 -return -true -1 - -six170.TinySet.contains(int):::ENTER -this_invocation_nonce -3477 -this -1926788825 -1 -this.bits -188 -1 -n -3 -1 - diff --git a/tests/daikon-tests/Vector/Vector.txt-chicory.goal b/tests/daikon-tests/Vector/Vector.txt-chicory.goal index ff3a729914..18ad0ad7aa 100644 --- a/tests/daikon-tests/Vector/Vector.txt-chicory.goal +++ b/tests/daikon-tests/Vector/Vector.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for javautil.Vector13 -// Declarations written Thu Jun 04 13:21:15 PDT 2015 +// Declarations written Mon Jul 31 13:11:03 PDT 2017 decl-version 2.0 var-comparability none @@ -7,13 +7,13 @@ var-comparability none ppt javautil.Vector13.Vector13(int,\_int):::ENTER ppt-type enter variable initialCapacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable capacityIncrement - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -23,10 +23,10 @@ ppt javautil.Vector13.Vector13(int,\_int):::EXIT85 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -42,11 +42,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags synthetic classname + flags synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -60,7 +60,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -78,7 +78,7 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 @@ -86,35 +86,26 @@ variable javautil.Vector13.serialVersionUID comparability 22 parent javautil.Vector13:::OBJECT 1 variable initialCapacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 variable capacityIncrement - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 - -ppt javautil.Vector13.Vector13(int):::ENTER -ppt-type enter -variable initialCapacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 -ppt javautil.Vector13.Vector13(int):::EXIT95 +ppt javautil.Vector13.Vector13(int,\_int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -131,11 +122,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -150,7 +141,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -170,7 +161,7 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 @@ -178,94 +169,48 @@ variable javautil.Vector13.serialVersionUID comparability 22 parent javautil.Vector13:::OBJECT 1 variable initialCapacity - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 - -ppt javautil.Vector13.Vector13():::ENTER -ppt-type enter - -ppt javautil.Vector13.Vector13():::EXIT104 -ppt-type subexit -parent parent javautil.Vector13:::OBJECT 1 -variable this - var-kind variable - dec-type javautil.Vector13 - rep-type hashcode +variable capacityIncrement + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData - var-kind field elementData - enclosing-var this - dec-type java.lang.Object[] +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var this.elementData + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData[..] - var-kind array - enclosing-var this.elementData - array 1 - dec-type java.lang.Object[] - rep-type hashcode[] - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData[..].getClass().getName() - var-kind function getClass().getName() - enclosing-var this.elementData[..] - array 1 - dec-type java.lang.Class[] - rep-type java.lang.String[] - function-args this.elementData[] - flags nomod synthetic classname - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementCount - var-kind field elementCount - enclosing-var this - dec-type int - rep-type int - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.capacityIncrement - var-kind field capacityIncrement - enclosing-var this + +ppt javautil.Vector13.Vector13(int):::ENTER +ppt-type enter +variable initialCapacity + var-kind variable dec-type int rep-type int - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable javautil.Vector13.serialVersionUID - var-kind variable - dec-type long - rep-type int - constant -2767605614048989439 - flags nomod + flags is_param nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -ppt javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -ppt-type enter +ppt javautil.Vector13.Vector13(int):::EXIT95 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -282,11 +227,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -301,7 +246,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -321,44 +266,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable anArray - var-kind variable - dec-type java.lang.Object[] - rep-type hashcode +variable initialCapacity + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 -variable anArray.getClass().getName() - var-kind function getClass().getName() - enclosing-var anArray - dec-type java.lang.Class - rep-type java.lang.String - function-args anArray - flags nomod synthetic classname - comparability 22 -variable anArray[..] - var-kind array - enclosing-var anArray - array 1 - dec-type java.lang.Object[] - rep-type hashcode[] - flags nomod - comparability 22 -ppt javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +ppt javautil.Vector13.Vector13(int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -375,11 +304,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -394,7 +323,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -414,44 +343,44 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable anArray - var-kind variable - dec-type java.lang.Object[] - rep-type hashcode +variable initialCapacity + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 -variable anArray.getClass().getName() +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var anArray + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args anArray - flags nomod synthetic classname - comparability 22 -variable anArray[..] - var-kind array - enclosing-var anArray - array 1 - dec-type java.lang.Object[] - rep-type hashcode[] - flags nomod + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.trimToSize():::ENTER +ppt javautil.Vector13.Vector13():::ENTER ppt-type enter + +ppt javautil.Vector13.Vector13():::EXIT104 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -468,11 +397,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -487,7 +416,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -507,7 +436,7 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 @@ -515,14 +444,14 @@ variable javautil.Vector13.serialVersionUID comparability 22 parent javautil.Vector13:::OBJECT 1 -ppt javautil.Vector13.trimToSize():::EXIT134 +ppt javautil.Vector13.Vector13():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -539,11 +468,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -558,7 +487,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -578,22 +507,35 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.ensureCapacity(int):::ENTER +ppt javautil.Vector13.copyInto(java.lang.Object[]):::ENTER ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -610,11 +552,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -629,7 +571,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -649,28 +591,44 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable minCapacity - var-kind variable - dec-type int - rep-type int +variable anArray + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode flags is_param nomod comparability 22 +variable anArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var anArray + dec-type java.lang.Class + rep-type java.lang.String + function-args anArray + flags nomod synthetic classname non_null + comparability 22 +variable anArray[..] + var-kind array + enclosing-var anArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 -ppt javautil.Vector13.ensureCapacity(int):::EXIT148 +ppt javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -687,11 +645,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -706,7 +664,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -726,28 +684,44 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable minCapacity - var-kind variable - dec-type int - rep-type int +variable anArray + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode flags is_param nomod comparability 22 +variable anArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var anArray + dec-type java.lang.Class + rep-type java.lang.String + function-args anArray + flags nomod synthetic classname non_null + comparability 22 +variable anArray[..] + var-kind array + enclosing-var anArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 -ppt javautil.Vector13.ensureCapacityHelper(int):::ENTER -ppt-type enter +ppt javautil.Vector13.copyInto(java.lang.Object[]):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -764,11 +738,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -783,7 +757,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -803,28 +777,57 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable minCapacity - var-kind variable - dec-type int - rep-type int +variable anArray + var-kind variable + dec-type java.lang.Object[] + rep-type hashcode flags is_param nomod comparability 22 +variable anArray.getClass().getName() + var-kind function getClass().getName() + enclosing-var anArray + dec-type java.lang.Class + rep-type java.lang.String + function-args anArray + flags nomod synthetic classname non_null + comparability 22 +variable anArray[..] + var-kind array + enclosing-var anArray + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -ppt-type subexit +ppt javautil.Vector13.trimToSize():::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -841,11 +844,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -860,7 +863,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -880,28 +883,22 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable minCapacity - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -ppt javautil.Vector13.setSize(int):::ENTER -ppt-type enter +ppt javautil.Vector13.trimToSize():::EXIT134 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -918,11 +915,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -937,7 +934,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -957,28 +954,22 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable newSize - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -ppt javautil.Vector13.setSize(int):::EXIT188 +ppt javautil.Vector13.trimToSize():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -995,11 +986,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1014,7 +1005,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1034,28 +1025,35 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable newSize - var-kind variable - dec-type int - rep-type int - flags is_param nomod +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.capacity():::ENTER +ppt javautil.Vector13.ensureCapacity(int):::ENTER ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1072,11 +1070,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1091,7 +1089,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1111,22 +1109,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable minCapacity + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -ppt javautil.Vector13.capacity():::EXIT197 +ppt javautil.Vector13.ensureCapacity(int):::EXIT148 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1143,11 +1147,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1162,7 +1166,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1182,28 +1186,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable return - var-kind return +variable minCapacity + var-kind variable dec-type int rep-type int - flags nomod + flags is_param nomod comparability 22 -ppt javautil.Vector13.size():::ENTER -ppt-type enter +ppt javautil.Vector13.ensureCapacity(int):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1220,11 +1224,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1239,7 +1243,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1259,22 +1263,41 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable minCapacity + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.size():::EXIT207 -ppt-type subexit +ppt javautil.Vector13.ensureCapacityHelper(int):::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1291,11 +1314,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1310,7 +1333,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1330,28 +1353,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable return - var-kind return +variable minCapacity + var-kind variable dec-type int rep-type int - flags nomod + flags is_param nomod comparability 22 -ppt javautil.Vector13.isEmpty():::ENTER -ppt-type enter +ppt javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1368,11 +1391,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1387,7 +1410,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1407,22 +1430,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable minCapacity + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -ppt javautil.Vector13.isEmpty():::EXIT218 +ppt javautil.Vector13.ensureCapacityHelper(int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1439,11 +1468,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1458,7 +1487,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1478,99 +1507,41 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable return - var-kind return - dec-type boolean - rep-type boolean - flags nomod - comparability 22 - -ppt javautil.Vector13.elements():::ENTER -ppt-type enter -parent parent javautil.Vector13:::OBJECT 1 -variable this - var-kind variable - dec-type javautil.Vector13 - rep-type hashcode +variable minCapacity + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData - var-kind field elementData - enclosing-var this - dec-type java.lang.Object[] +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var this.elementData + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData[..] - var-kind array - enclosing-var this.elementData - array 1 - dec-type java.lang.Object[] - rep-type hashcode[] - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData[..].getClass().getName() - var-kind function getClass().getName() - enclosing-var this.elementData[..] - array 1 - dec-type java.lang.Class[] - rep-type java.lang.String[] - function-args this.elementData[] - flags nomod synthetic classname - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementCount - var-kind field elementCount - enclosing-var this - dec-type int - rep-type int - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.capacityIncrement - var-kind field capacityIncrement - enclosing-var this - dec-type int - rep-type int - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable javautil.Vector13.serialVersionUID - var-kind variable - dec-type long - rep-type int - constant -2767605614048989439 - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -ppt javautil.Vector13.elements():::EXIT229 -ppt-type subexit +ppt javautil.Vector13.setSize(int):::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1587,11 +1558,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1606,7 +1577,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1626,36 +1597,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable return - var-kind return - dec-type java.util.Enumeration - rep-type hashcode - flags nomod - comparability 22 -variable return.getClass().getName() - var-kind function getClass().getName() - enclosing-var return - dec-type java.lang.Class - rep-type java.lang.String - function-args return - flags nomod synthetic classname +variable newSize + var-kind variable + dec-type int + rep-type int + flags is_param nomod comparability 22 -ppt javautil.Vector13.contains(java.lang.Object):::ENTER -ppt-type enter +ppt javautil.Vector13.setSize(int):::EXIT188 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1672,11 +1635,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1691,7 +1654,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1711,36 +1674,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode +variable newSize + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 -variable elem.getClass().getName() - var-kind function getClass().getName() - enclosing-var elem - dec-type java.lang.Class - rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -ppt javautil.Vector13.contains(java.lang.Object):::EXIT241 +ppt javautil.Vector13.setSize(int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1757,11 +1712,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1776,7 +1731,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1796,42 +1751,41 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode +variable newSize + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 -variable elem.getClass().getName() +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var elem + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean - flags nomod + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.indexOf(java.lang.Object):::ENTER +ppt javautil.Vector13.capacity():::ENTER ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1848,11 +1802,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1867,7 +1821,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1887,36 +1841,22 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param nomod - comparability 22 -variable elem.getClass().getName() - var-kind function getClass().getName() - enclosing-var elem - dec-type java.lang.Class - rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -ppt javautil.Vector13.indexOf(java.lang.Object):::EXIT255 +ppt javautil.Vector13.capacity():::EXIT197 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -1933,11 +1873,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -1952,7 +1892,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -1972,42 +1912,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param nomod - comparability 22 -variable elem.getClass().getName() - var-kind function getClass().getName() - enclosing-var elem - dec-type java.lang.Class - rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int flags nomod comparability 22 -ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::ENTER -ppt-type enter +ppt javautil.Vector13.capacity():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2024,11 +1950,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2043,7 +1969,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2063,42 +1989,35 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable elem.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var elem + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::EXIT274 -ppt-type subexit +ppt javautil.Vector13.size():::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2115,11 +2034,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2134,7 +2053,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2154,48 +2073,22 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param nomod - comparability 22 -variable elem.getClass().getName() - var-kind function getClass().getName() - enclosing-var elem - dec-type java.lang.Class - rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -variable return - var-kind return - dec-type int - rep-type int - flags nomod - comparability 22 -ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::EXIT277 +ppt javautil.Vector13.size():::EXIT207 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2212,11 +2105,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2231,7 +2124,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2251,48 +2144,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param nomod - comparability 22 -variable elem.getClass().getName() - var-kind function getClass().getName() - enclosing-var elem - dec-type java.lang.Class - rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 variable return - var-kind return + var-kind return dec-type int rep-type int flags nomod comparability 22 -ppt javautil.Vector13.lastIndexOf(java.lang.Object):::ENTER -ppt-type enter +ppt javautil.Vector13.size():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2309,11 +2182,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2328,7 +2201,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2348,36 +2221,35 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable elem.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var elem + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args elem - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.lastIndexOf(java.lang.Object):::EXIT290 -ppt-type subexit +ppt javautil.Vector13.isEmpty():::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2394,11 +2266,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2413,7 +2285,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2433,42 +2305,99 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object + +ppt javautil.Vector13.isEmpty():::EXIT218 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 -variable elem.getClass().getName() + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() var-kind function getClass().getName() - enclosing-var elem + enclosing-var this.elementData dec-type java.lang.Class rep-type java.lang.String - function-args elem - flags nomod synthetic classname + function-args this.elementData + flags nomod synthetic classname non_null comparability 22 -variable return - var-kind return + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this dec-type int rep-type int flags nomod comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 -ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::ENTER -ppt-type enter +ppt javautil.Vector13.isEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2485,11 +2414,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2504,7 +2433,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2524,42 +2453,35 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable elem.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var elem + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::EXIT307 -ppt-type subexit +ppt javautil.Vector13.elements():::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2576,11 +2498,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2595,7 +2517,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2615,48 +2537,22 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object - rep-type hashcode - flags is_param nomod - comparability 22 -variable elem.getClass().getName() - var-kind function getClass().getName() - enclosing-var elem - dec-type java.lang.Class - rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -variable return - var-kind return - dec-type int - rep-type int - flags nomod - comparability 22 -ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::EXIT310 +ppt javautil.Vector13.elements():::EXIT229 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2673,11 +2569,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2692,7 +2588,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2712,48 +2608,36 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable elem - var-kind variable - dec-type java.lang.Object +variable return + var-kind return + dec-type java.util.Enumeration rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable elem.getClass().getName() +variable return.getClass().getName() var-kind function getClass().getName() - enclosing-var elem + enclosing-var return dec-type java.lang.Class rep-type java.lang.String - function-args elem - flags nomod synthetic classname - comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -variable return - var-kind return - dec-type int - rep-type int - flags nomod + function-args return + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.elementAt(int):::ENTER -ppt-type enter +ppt javautil.Vector13.elements():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2770,11 +2654,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2789,7 +2673,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2809,28 +2693,35 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.elementAt(int):::EXIT332 -ppt-type subexit +ppt javautil.Vector13.contains(java.lang.Object):::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2847,11 +2738,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2866,7 +2757,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2886,42 +2777,36 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -variable return - var-kind return +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode - flags nomod + flags is_param nomod comparability 22 -variable return.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args return - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.firstElement():::ENTER -ppt-type enter +ppt javautil.Vector13.contains(java.lang.Object):::EXIT241 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -2938,11 +2823,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -2957,7 +2842,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -2977,22 +2862,42 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable elem + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable elem.getClass().getName() + var-kind function getClass().getName() + enclosing-var elem + dec-type java.lang.Class + rep-type java.lang.String + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 -ppt javautil.Vector13.firstElement():::EXIT349 +ppt javautil.Vector13.contains(java.lang.Object):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3009,11 +2914,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3028,7 +2933,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3048,36 +2953,49 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable return - var-kind return +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode + flags is_param nomod + comparability 22 +variable elem.getClass().getName() + var-kind function getClass().getName() + enclosing-var elem + dec-type java.lang.Class + rep-type java.lang.String + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode flags nomod comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.lastElement():::ENTER +ppt javautil.Vector13.indexOf(java.lang.Object):::ENTER ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3094,11 +3012,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3113,7 +3031,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3133,22 +3051,36 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable elem + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable elem.getClass().getName() + var-kind function getClass().getName() + enclosing-var elem + dec-type java.lang.Class + rep-type java.lang.String + function-args elem + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.lastElement():::EXIT364 +ppt javautil.Vector13.indexOf(java.lang.Object):::EXIT255 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3165,11 +3097,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3184,7 +3116,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3204,36 +3136,42 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable return - var-kind return +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode - flags nomod + flags is_param nomod comparability 22 -variable return.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args return - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + flags nomod comparability 22 -ppt javautil.Vector13.setElementAt(java.lang.Object,\_int):::ENTER -ppt-type enter +ppt javautil.Vector13.indexOf(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3250,11 +3188,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3269,7 +3207,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3289,42 +3227,49 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.setElementAt(java.lang.Object,\_int):::EXIT387 -ppt-type subexit +ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3341,11 +3286,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3360,7 +3305,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3380,42 +3325,42 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 -ppt javautil.Vector13.removeElementAt(int):::ENTER -ppt-type enter +ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::EXIT274 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3432,11 +3377,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3451,7 +3396,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3471,105 +3416,48 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 - -ppt javautil.Vector13.removeElementAt(int):::EXIT417 -ppt-type subexit -parent parent javautil.Vector13:::OBJECT 1 -variable this - var-kind variable - dec-type javautil.Vector13 +variable elem + var-kind variable + dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData - var-kind field elementData - enclosing-var this - dec-type java.lang.Object[] - rep-type hashcode - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var this.elementData + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args this.elementData - flags nomod synthetic classname - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData[..] - var-kind array - enclosing-var this.elementData - array 1 - dec-type java.lang.Object[] - rep-type hashcode[] - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementData[..].getClass().getName() - var-kind function getClass().getName() - enclosing-var this.elementData[..] - array 1 - dec-type java.lang.Class[] - rep-type java.lang.String[] - function-args this.elementData[] - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.elementCount - var-kind field elementCount - enclosing-var this +variable index + var-kind variable dec-type int rep-type int - flags nomod + flags is_param nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable this.capacityIncrement - var-kind field capacityIncrement - enclosing-var this +variable return + var-kind return dec-type int rep-type int flags nomod comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable javautil.Vector13.serialVersionUID - var-kind variable - dec-type long - rep-type int - constant -2767605614048989439 - flags nomod - comparability 22 - parent javautil.Vector13:::OBJECT 1 -variable index - var-kind variable - dec-type int - rep-type int - flags is_param nomod - comparability 22 -ppt javautil.Vector13.insertElementAt(java.lang.Object,\_int):::ENTER -ppt-type enter +ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::EXIT277 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3586,11 +3474,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3605,7 +3493,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3625,42 +3513,48 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 +variable return + var-kind return + dec-type int + rep-type int + flags nomod + comparability 22 -ppt javautil.Vector13.insertElementAt(java.lang.Object,\_int):::EXIT447 +ppt javautil.Vector13.indexOf(java.lang.Object,\_int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3677,11 +3571,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3696,7 +3590,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3716,42 +3610,55 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 variable index - var-kind variable + var-kind variable dec-type int rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.addElement(java.lang.Object):::ENTER +ppt javautil.Vector13.lastIndexOf(java.lang.Object):::ENTER ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3768,11 +3675,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3787,7 +3694,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3807,36 +3714,36 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.addElement(java.lang.Object):::EXIT463 +ppt javautil.Vector13.lastIndexOf(java.lang.Object):::EXIT290 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3853,11 +3760,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3872,7 +3779,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3892,36 +3799,42 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + flags nomod comparability 22 -ppt javautil.Vector13.removeElement(java.lang.Object):::ENTER -ppt-type enter +ppt javautil.Vector13.lastIndexOf(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -3938,11 +3851,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -3957,7 +3870,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -3977,36 +3890,49 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.removeElement(java.lang.Object):::EXIT480 -ppt-type subexit +ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::ENTER +ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -4023,11 +3949,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4042,7 +3968,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4062,42 +3988,42 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null comparability 22 -variable return - var-kind return - dec-type boolean - rep-type boolean - flags nomod +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod comparability 22 -ppt javautil.Vector13.removeElement(java.lang.Object):::EXIT482 +ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::EXIT307 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -4114,11 +4040,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4133,7 +4059,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4153,42 +4079,48 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 -variable obj - var-kind variable +variable elem + var-kind variable dec-type java.lang.Object rep-type hashcode flags is_param nomod comparability 22 -variable obj.getClass().getName() +variable elem.getClass().getName() var-kind function getClass().getName() - enclosing-var obj + enclosing-var elem dec-type java.lang.Class rep-type java.lang.String - function-args obj - flags nomod synthetic classname + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod comparability 22 variable return - var-kind return - dec-type boolean - rep-type boolean + var-kind return + dec-type int + rep-type int flags nomod comparability 22 -ppt javautil.Vector13.removeAllElements():::ENTER -ppt-type enter +ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::EXIT310 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -4205,11 +4137,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4224,7 +4156,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4244,22 +4176,48 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable elem + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable elem.getClass().getName() + var-kind function getClass().getName() + enclosing-var elem + dec-type java.lang.Class + rep-type java.lang.String + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + flags nomod + comparability 22 -ppt javautil.Vector13.removeAllElements():::EXIT495 +ppt javautil.Vector13.lastIndexOf(java.lang.Object,\_int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -4276,11 +4234,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4295,7 +4253,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4315,22 +4273,55 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable elem + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable elem.getClass().getName() + var-kind function getClass().getName() + enclosing-var elem + dec-type java.lang.Class + rep-type java.lang.String + function-args elem + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.clone():::ENTER +ppt javautil.Vector13.elementAt(int):::ENTER ppt-type enter parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -4347,11 +4338,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4366,7 +4357,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4386,22 +4377,28 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -ppt javautil.Vector13.clone():::EXIT508 +ppt javautil.Vector13.elementAt(int):::EXIT332 ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData @@ -4418,11 +4415,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4437,7 +4434,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4457,15 +4454,21 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 variable return - var-kind return + var-kind return dec-type java.lang.Object rep-type hashcode flags nomod @@ -4476,18 +4479,108 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13.toString():::ENTER -ppt-type enter +ppt javautil.Vector13.elementAt(int):::EXCEPTION324 +ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt javautil.Vector13.elementAt(int):::EXCEPTION334 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData var-kind field elementData @@ -4503,11 +4596,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4522,7 +4615,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4542,23 +4635,203 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13.toString():::EXIT534 +ppt javautil.Vector13.elementAt(int):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int flags is_param nomod comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt javautil.Vector13.firstElement():::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 + +ppt javautil.Vector13.firstElement():::EXIT349 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData var-kind field elementData @@ -4574,11 +4847,11 @@ variable this.elementData.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] @@ -4593,7 +4866,7 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent javautil.Vector13:::OBJECT 1 variable this.elementCount @@ -4613,7 +4886,7 @@ variable this.capacityIncrement comparability 22 parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 @@ -4621,39 +4894,114 @@ variable javautil.Vector13.serialVersionUID comparability 22 parent javautil.Vector13:::OBJECT 1 variable return - var-kind return - dec-type java.lang.String + var-kind return + dec-type java.lang.Object rep-type hashcode flags nomod comparability 22 -variable return.toString - var-kind function toString() +variable return.getClass().getName() + var-kind function getClass().getName() enclosing-var return - dec-type java.lang.String + dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic to_string + flags nomod synthetic classname non_null comparability 22 -ppt javautil.Vector13:::CLASS -ppt-type class +ppt javautil.Vector13.firstElement():::EXCEPTION347 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt javautil.Vector13:::OBJECT -ppt-type object -parent parent javautil.Vector13:::CLASS 1 +ppt javautil.Vector13.firstElement():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type javautil.Vector13 rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 + parent javautil.Vector13:::OBJECT 1 variable this.elementData var-kind field elementData enclosing-var this @@ -4661,22 +5009,25 @@ variable this.elementData rep-type hashcode flags nomod comparability 22 + parent javautil.Vector13:::OBJECT 1 variable this.elementData.getClass().getName() var-kind function getClass().getName() enclosing-var this.elementData dec-type java.lang.Class rep-type java.lang.String function-args this.elementData - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent javautil.Vector13:::OBJECT 1 variable this.elementData[..] - var-kind array + var-kind array enclosing-var this.elementData array 1 dec-type java.lang.Object[] rep-type hashcode[] flags nomod comparability 22 + parent javautil.Vector13:::OBJECT 1 variable this.elementData[..].getClass().getName() var-kind function getClass().getName() enclosing-var this.elementData[..] @@ -4684,8 +5035,9 @@ variable this.elementData[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.elementData[] - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent javautil.Vector13:::OBJECT 1 variable this.elementCount var-kind field elementCount enclosing-var this @@ -4693,6 +5045,7 @@ variable this.elementCount rep-type int flags nomod comparability 22 + parent javautil.Vector13:::OBJECT 1 variable this.capacityIncrement var-kind field capacityIncrement enclosing-var this @@ -4700,3300 +5053,3066 @@ variable this.capacityIncrement rep-type int flags nomod comparability 22 + parent javautil.Vector13:::OBJECT 1 variable javautil.Vector13.serialVersionUID - var-kind variable + var-kind variable dec-type long rep-type int constant -2767605614048989439 flags nomod comparability 22 - parent javautil.Vector13:::CLASS 1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -0 -initialCapacity -5 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1 -this -673979950 -1 -this.elementData -585709811 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -0 -this -673979950 -1 -this.elementData -585709811 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -2 -initialCapacity -5 -1 +ppt javautil.Vector13.lastElement():::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -3 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -3 -this -911703046 -1 -this.elementData -697272777 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -2 -this -911703046 -1 -this.elementData -697272777 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -4 -this -911703046 -1 -this.elementData -697272777 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -4 -this -911703046 -1 -this.elementData -697272777 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -5 -initialCapacity -5 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -6 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -6 -this -1758838927 -1 -this.elementData -693445134 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -5 -this -1758838927 -1 -this.elementData -693445134 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -7 -this -1758838927 -1 -this.elementData -693445134 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -7 -this -1758838927 -1 -this.elementData -693445134 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -8 -this -1758838927 -1 -this.elementData -693445134 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -8 -this -1758838927 -1 -this.elementData -693445134 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -9 -initialCapacity -5 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -10 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -10 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -9 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -11 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -11 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -12 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -12 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -13 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -13 -this -338614869 -1 -this.elementData -268438733 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -0 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -14 -initialCapacity -5 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -15 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -15 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -14 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -5 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -16 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -16 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -17 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -17 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -18 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -18 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -0 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -19 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -0 -1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -19 -this -1934126831 -1 -this.elementData -409683978 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null 726045964 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] -1 -this.elementCount -4 -1 -this.capacityIncrement -0 -1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" -1 - -javautil.Vector13.Vector13():::ENTER -this_invocation_nonce -20 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -21 -initialCapacity -10 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -22 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -22 -this -652434694 -1 -this.elementData -418400476 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -21 -this -652434694 -1 -this.elementData -418400476 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 - -javautil.Vector13.Vector13():::EXIT104 -this_invocation_nonce -20 -this -652434694 -1 -this.elementData -418400476 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 - -javautil.Vector13.Vector13():::ENTER -this_invocation_nonce -23 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -24 -initialCapacity -10 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -25 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -25 -this -1195339854 -1 -this.elementData -367408493 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -24 -this -1195339854 -1 -this.elementData -367408493 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 - -javautil.Vector13.Vector13():::EXIT104 -this_invocation_nonce -23 -this -1195339854 -1 -this.elementData -367408493 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 - -javautil.Vector13.Vector13():::ENTER -this_invocation_nonce -26 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -27 -initialCapacity -10 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -28 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -28 -this -1019056726 -1 -this.elementData -1104309057 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -27 -this -1019056726 -1 -this.elementData -1104309057 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 - -javautil.Vector13.Vector13():::EXIT104 -this_invocation_nonce -26 -this -1019056726 -1 -this.elementData -1104309057 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 - -javautil.Vector13.Vector13():::ENTER -this_invocation_nonce -29 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -30 -initialCapacity -10 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -31 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -31 -this -1568643625 -1 -this.elementData -1684154803 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -30 -this -1568643625 -1 -this.elementData -1684154803 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 - -javautil.Vector13.Vector13():::EXIT104 -this_invocation_nonce -29 -this -1568643625 -1 -this.elementData -1684154803 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 - -javautil.Vector13.Vector13():::ENTER -this_invocation_nonce -32 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -33 -initialCapacity -10 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -34 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -34 -this -1755306561 -1 -this.elementData -1454511888 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -33 -this -1755306561 -1 -this.elementData -1454511888 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -10 -1 - -javautil.Vector13.Vector13():::EXIT104 -this_invocation_nonce -32 -this -1755306561 -1 -this.elementData -1454511888 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null null null null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null null null null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -35 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -36 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -36 -this -1174947815 -1 -this.elementData -1235792540 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -35 -this -1174947815 -1 -this.elementData -1235792540 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -37 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -38 -initialCapacity -1 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -38 -this -1650869643 -1 -this.elementData -677370661 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -37 -this -1650869643 -1 -this.elementData -677370661 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -39 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -40 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -40 -this -757886680 -1 -this.elementData -1075920403 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -39 -this -757886680 -1 -this.elementData -1075920403 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -41 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -42 -initialCapacity -3 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -42 -this -1181905481 -1 -this.elementData -61684417 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -41 -this -1181905481 -1 -this.elementData -61684417 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -43 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -44 -initialCapacity -4 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -44 -this -1642878665 -1 -this.elementData -1664473176 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -43 -this -1642878665 -1 -this.elementData -1664473176 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -45 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -46 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -46 -this -1678683210 -1 -this.elementData -2136039831 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -45 -this -1678683210 -1 -this.elementData -2136039831 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -47 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -48 -initialCapacity -1 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -48 -this -937312718 -1 -this.elementData -1622300681 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -47 -this -937312718 -1 -this.elementData -1622300681 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -49 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -50 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -50 -this -1555163255 -1 -this.elementData -605359148 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -49 -this -1555163255 -1 -this.elementData -605359148 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -51 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -52 -initialCapacity -3 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -52 -this -1641164597 -1 -this.elementData -773419711 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -51 -this -1641164597 -1 -this.elementData -773419711 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -53 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -54 -initialCapacity -4 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -54 -this -146567486 -1 -this.elementData -195994093 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -53 -this -146567486 -1 -this.elementData -195994093 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -55 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -56 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -56 -this -1980290200 -1 -this.elementData -1035830194 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -55 -this -1980290200 -1 -this.elementData -1035830194 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -57 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -58 -initialCapacity -1 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -58 -this -1695627976 -1 -this.elementData -1311396942 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -57 -this -1695627976 -1 -this.elementData -1311396942 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -59 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -60 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -60 -this -1023735033 -1 -this.elementData -275719867 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -59 -this -1023735033 -1 -this.elementData -275719867 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -61 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -62 -initialCapacity -3 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -62 -this -1901578090 -1 -this.elementData -971323976 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -61 -this -1901578090 -1 -this.elementData -971323976 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -63 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -64 -initialCapacity -4 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -64 -this -2018863785 -1 -this.elementData -802011895 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.lastElement():::EXIT364 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -63 -this -2018863785 -1 -this.elementData -802011895 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 +ppt javautil.Vector13.lastElement():::EXCEPTION362 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -65 -initialCapacity -0 -1 +ppt javautil.Vector13.lastElement():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -66 -initialCapacity -0 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.setElementAt(java.lang.Object,\_int):::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -66 -this -1806550693 -1 -this.elementData -1573695965 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.setElementAt(java.lang.Object,\_int):::EXIT387 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -65 -this -1806550693 -1 -this.elementData -1573695965 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 +ppt javautil.Vector13.setElementAt(java.lang.Object,\_int):::EXCEPTION383 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -67 -initialCapacity -1 -1 +ppt javautil.Vector13.setElementAt(java.lang.Object,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -68 -initialCapacity -1 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeElementAt(int):::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -68 -this -699487303 -1 -this.elementData -957617843 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeElementAt(int):::EXIT417 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -67 -this -699487303 -1 -this.elementData -957617843 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 +ppt javautil.Vector13.removeElementAt(int):::EXCEPTION405 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -69 -initialCapacity -2 -1 +ppt javautil.Vector13.removeElementAt(int):::EXCEPTION409 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -70 -initialCapacity -2 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeElementAt(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -70 -this -1440636683 -1 -this.elementData -2050094903 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.insertElementAt(java.lang.Object,\_int):::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -69 -this -1440636683 -1 -this.elementData -2050094903 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 +ppt javautil.Vector13.insertElementAt(java.lang.Object,\_int):::EXIT447 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -71 -initialCapacity -3 -1 +ppt javautil.Vector13.insertElementAt(java.lang.Object,\_int):::EXCEPTION438 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -72 -initialCapacity -3 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.insertElementAt(java.lang.Object,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable index + var-kind variable + dec-type int + rep-type int + flags is_param nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -72 -this -1717402253 -1 -this.elementData -51966844 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.addElement(java.lang.Object):::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -71 -this -1717402253 -1 -this.elementData -51966844 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -3 -1 +ppt javautil.Vector13.addElement(java.lang.Object):::EXIT463 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -73 -initialCapacity -4 -1 +ppt javautil.Vector13.addElement(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -74 -initialCapacity -4 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeElement(java.lang.Object):::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -74 -this -1528386426 -1 -this.elementData -1538760015 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeElement(java.lang.Object):::EXIT480 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -73 -this -1528386426 -1 -this.elementData -1538760015 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 +ppt javautil.Vector13.removeElement(java.lang.Object):::EXIT482 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type boolean + rep-type boolean + flags nomod + comparability 22 + +ppt javautil.Vector13.removeElement(java.lang.Object):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable obj + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param nomod + comparability 22 +variable obj.getClass().getName() + var-kind function getClass().getName() + enclosing-var obj + dec-type java.lang.Class + rep-type java.lang.String + function-args obj + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -75 -initialCapacity -0 -1 +ppt javautil.Vector13.removeAllElements():::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -76 -initialCapacity -0 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeAllElements():::EXIT495 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -76 -this -1941494931 -1 -this.elementData -1838772799 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.removeAllElements():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -75 -this -1941494931 -1 -this.elementData -1838772799 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 +ppt javautil.Vector13.clone():::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -77 -initialCapacity -1 -1 +ppt javautil.Vector13.clone():::EXIT508 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Object + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -78 -initialCapacity -1 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.clone():::EXCEPTION511 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -78 -this -1964752463 -1 -this.elementData -1886089369 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.clone():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -77 -this -1964752463 -1 -this.elementData -1886089369 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null] -1 -this.elementData[..].getClass().getName() -[null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -1 -1 +ppt javautil.Vector13.toString():::ENTER +ppt-type enter +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -79 -initialCapacity -2 -1 +ppt javautil.Vector13.toString():::EXIT534 +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.String + rep-type hashcode + flags nomod + comparability 22 +variable return.toString + var-kind function toString() + enclosing-var return + dec-type java.lang.String + rep-type java.lang.String + function-args return + flags nomod synthetic to_string + comparability 22 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -80 -initialCapacity -2 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13.toString():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent javautil.Vector13:::OBJECT 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -80 -this -497911416 -1 -this.elementData -1800880000 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 -capacityIncrement -0 -1 +ppt javautil.Vector13:::CLASS +ppt-type class +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 -javautil.Vector13.Vector13(int):::EXIT95 -this_invocation_nonce -79 -this -497911416 -1 -this.elementData -1800880000 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 +ppt javautil.Vector13:::OBJECT +ppt-type object +parent parent javautil.Vector13:::CLASS 1 +variable this + var-kind variable + dec-type javautil.Vector13 + rep-type hashcode + flags is_param nomod non_null + comparability 22 +variable this.elementData + var-kind field elementData + enclosing-var this + dec-type java.lang.Object[] + rep-type hashcode + flags nomod + comparability 22 +variable this.elementData.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData + dec-type java.lang.Class + rep-type java.lang.String + function-args this.elementData + flags nomod synthetic classname non_null + comparability 22 +variable this.elementData[..] + var-kind array + enclosing-var this.elementData + array 1 + dec-type java.lang.Object[] + rep-type hashcode[] + flags nomod + comparability 22 +variable this.elementData[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.elementData[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.elementData[] + flags nomod synthetic classname non_null + comparability 22 +variable this.elementCount + var-kind field elementCount + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.capacityIncrement + var-kind field capacityIncrement + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 +variable javautil.Vector13.serialVersionUID + var-kind variable + dec-type long + rep-type int + constant -2767605614048989439 + flags nomod + comparability 22 + parent javautil.Vector13:::CLASS 1 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -81 +0 initialCapacity -3 +5 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -82 +1 initialCapacity -3 +5 1 capacityIncrement 0 @@ -8001,21 +8120,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -82 +1 this -755639182 +1340328248 1 this.elementData -1956927163 +1401132667 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null] 1 this.elementCount 0 @@ -8024,7 +8143,7 @@ this.capacityIncrement 0 1 initialCapacity -3 +5 1 capacityIncrement 0 @@ -8032,21 +8151,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -81 +0 this -755639182 +1340328248 1 this.elementData -1956927163 +1401132667 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null] 1 this.elementCount 0 @@ -8055,21 +8174,21 @@ this.capacityIncrement 0 1 initialCapacity -3 +5 1 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -83 +2 initialCapacity -4 +5 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -84 +3 initialCapacity -4 +5 1 capacityIncrement 0 @@ -8077,21 +8196,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -84 +3 this -1362774736 +717386707 1 this.elementData -1241892697 +1900164709 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null] 1 this.elementCount 0 @@ -8100,7 +8219,7 @@ this.capacityIncrement 0 1 initialCapacity -4 +5 1 capacityIncrement 0 @@ -8108,21 +8227,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -83 +2 this -1362774736 +717386707 1 this.elementData -1241892697 +1900164709 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null] 1 this.elementCount 0 @@ -8131,43 +8250,26 @@ this.capacityIncrement 0 1 initialCapacity -4 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -85 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -86 -initialCapacity -0 -1 -capacityIncrement -0 +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -86 +4 this -1096993286 +717386707 1 this.elementData -1019048307 +1900164709 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null null] 1 this.elementCount 0 @@ -8175,53 +8277,56 @@ this.elementCount this.capacityIncrement 0 1 -initialCapacity -0 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -85 +4 this -1096993286 +717386707 1 this.elementData -1019048307 +1900164709 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement 0 1 -initialCapacity -0 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -87 +5 initialCapacity -1 +5 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -88 +6 initialCapacity -1 +5 1 capacityIncrement 0 @@ -8229,21 +8334,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -88 +6 this -962810924 +1875308878 1 this.elementData -673919523 +1445157774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null] +[null null null null null] 1 this.elementCount 0 @@ -8252,7 +8357,7 @@ this.capacityIncrement 0 1 initialCapacity -1 +5 1 capacityIncrement 0 @@ -8260,21 +8365,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -87 +5 this -962810924 +1875308878 1 this.elementData -673919523 +1445157774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null] +[null null null null null] 1 this.elementCount 0 @@ -8283,43 +8388,26 @@ this.capacityIncrement 0 1 initialCapacity -1 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -89 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -90 -initialCapacity -2 -1 -capacityIncrement -0 +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -90 +7 this -736668783 +1875308878 1 this.elementData -949010926 +1445157774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null null null null null] 1 this.elementCount 0 @@ -8327,129 +8415,118 @@ this.elementCount this.capacityIncrement 0 1 -initialCapacity -2 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -89 +7 this -736668783 +1875308878 1 this.elementData -949010926 +1445157774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" null null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement 0 1 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -91 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -92 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -92 +8 this -665587013 +1875308878 1 this.elementData -278610268 +1445157774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement 0 1 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -91 +8 this -665587013 +1875308878 1 this.elementData -278610268 +1445157774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement 0 1 -initialCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -93 +9 initialCapacity -4 +5 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -94 +10 initialCapacity -4 +5 1 capacityIncrement 0 @@ -8457,21 +8534,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -94 +10 this -1088423816 +909295153 1 this.elementData -873370366 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null] 1 this.elementCount 0 @@ -8480,7 +8557,7 @@ this.capacityIncrement 0 1 initialCapacity -4 +5 1 capacityIncrement 0 @@ -8488,21 +8565,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -93 +9 this -1088423816 +909295153 1 this.elementData -873370366 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null] 1 this.elementCount 0 @@ -8511,43 +8588,26 @@ this.capacityIncrement 0 1 initialCapacity -4 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -95 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -96 -initialCapacity -0 -1 -capacityIncrement -0 +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -96 +11 this -685014117 +909295153 1 this.elementData -372432852 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null null] 1 this.elementCount 0 @@ -8555,205 +8615,180 @@ this.elementCount this.capacityIncrement 0 1 -initialCapacity -0 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -95 +11 this -685014117 +909295153 1 this.elementData -372432852 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null null] 1 this.elementCount -0 1 -this.capacityIncrement -0 1 -initialCapacity +this.capacityIncrement 0 1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -97 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -98 -initialCapacity -1 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -98 +12 this -1711596206 +909295153 1 this.elementData -1253982677 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement 0 1 -initialCapacity -1 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -97 +12 this -1711596206 +909295153 1 this.elementData -1253982677 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement 0 1 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -99 -initialCapacity -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -100 -initialCapacity -2 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -100 +13 this -282340681 +909295153 1 this.elementData -1508449344 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement 0 1 -initialCapacity -2 -1 -capacityIncrement -0 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -99 +13 this -282340681 +909295153 1 this.elementData -1508449344 +1522311648 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement 0 1 -initialCapacity -2 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -101 +14 initialCapacity -3 +5 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -102 +15 initialCapacity -3 +5 1 capacityIncrement 0 @@ -8761,21 +8796,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -102 +15 this -1463671773 +36202360 1 this.elementData -506312426 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null] 1 this.elementCount 0 @@ -8784,7 +8819,7 @@ this.capacityIncrement 0 1 initialCapacity -3 +5 1 capacityIncrement 0 @@ -8792,21 +8827,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -101 +14 this -1463671773 +36202360 1 this.elementData -506312426 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null] 1 this.elementCount 0 @@ -8815,43 +8850,26 @@ this.capacityIncrement 0 1 initialCapacity -3 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -103 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -104 -initialCapacity -4 -1 -capacityIncrement -0 +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -104 +16 this -1262734368 +36202360 1 this.elementData -1343123322 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null] 1 this.elementCount 0 @@ -8859,281 +8877,246 @@ this.elementCount this.capacityIncrement 0 1 -initialCapacity -4 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -103 +16 this -1262734368 +36202360 1 this.elementData -1343123322 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null null] 1 this.elementCount -0 -1 -this.capacityIncrement -0 1 -initialCapacity -4 1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -105 -initialCapacity +this.capacityIncrement 0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -106 -initialCapacity -0 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -106 +17 this -1673059237 +36202360 1 this.elementData -2103206088 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement 0 1 -initialCapacity -0 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -105 +17 this -1673059237 +36202360 1 this.elementData -2103206088 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement 0 1 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -107 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -108 -initialCapacity -1 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -108 +18 this -1003891396 +36202360 1 this.elementData -1771161740 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement 0 1 -initialCapacity -1 -1 -capacityIncrement -0 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -107 +18 this -1003891396 +36202360 1 this.elementData -1771161740 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement 0 1 -initialCapacity -1 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -109 -initialCapacity -2 +obj +null 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -110 -initialCapacity +obj.getClass().getName() +nonsensical 2 -1 -capacityIncrement -0 -1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -110 +19 this -1644533113 +36202360 1 this.elementData -1553493301 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement 0 1 -initialCapacity -2 +obj +1836797772 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -109 +19 this -1644533113 +36202360 1 this.elementData -1553493301 +1318822808 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -0 +4 1 this.capacityIncrement 0 1 -initialCapacity -2 +obj +1836797772 1 +obj.getClass().getName() +"java.lang.Integer" +1 + +javautil.Vector13.Vector13():::ENTER +this_invocation_nonce +20 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -111 +21 initialCapacity -3 +10 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -112 +22 initialCapacity -3 +10 1 capacityIncrement 0 @@ -9141,21 +9124,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -112 +22 this -455729681 +1383547042 1 this.elementData -1522063365 +329645619 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9164,7 +9147,7 @@ this.capacityIncrement 0 1 initialCapacity -3 +10 1 capacityIncrement 0 @@ -9172,21 +9155,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -111 +21 this -455729681 +1383547042 1 this.elementData -1522063365 +329645619 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9195,43 +9178,26 @@ this.capacityIncrement 0 1 initialCapacity -3 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -113 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -114 -initialCapacity -4 -1 -capacityIncrement -0 +10 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13():::EXIT104 this_invocation_nonce -114 +20 this -493772491 +1383547042 1 this.elementData -957444229 +329645619 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9239,30 +9205,45 @@ this.elementCount this.capacityIncrement 0 1 + +javautil.Vector13.Vector13():::ENTER +this_invocation_nonce +23 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +24 initialCapacity -4 +10 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +25 +initialCapacity +10 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -113 +25 this -493772491 +3213500 1 this.elementData -957444229 +923219673 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9271,43 +9252,29 @@ this.capacityIncrement 0 1 initialCapacity -4 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -115 -initialCapacity -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -116 -initialCapacity -0 +10 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -116 +24 this -670189832 +3213500 1 this.elementData -328777909 +923219673 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9316,29 +9283,26 @@ this.capacityIncrement 0 1 initialCapacity -0 -1 -capacityIncrement -0 +10 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.Vector13():::EXIT104 this_invocation_nonce -115 +23 this -670189832 +3213500 1 this.elementData -328777909 +923219673 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9346,22 +9310,23 @@ this.elementCount this.capacityIncrement 0 1 -initialCapacity -0 -1 + +javautil.Vector13.Vector13():::ENTER +this_invocation_nonce +26 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -117 +27 initialCapacity -1 +10 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -118 +28 initialCapacity -1 +10 1 capacityIncrement 0 @@ -9369,21 +9334,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -118 +28 this -294892832 +1604125387 1 this.elementData -2019053795 +1668627309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9392,7 +9357,7 @@ this.capacityIncrement 0 1 initialCapacity -1 +10 1 capacityIncrement 0 @@ -9400,21 +9365,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -117 +27 this -294892832 +1604125387 1 this.elementData -2019053795 +1668627309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9423,21 +9388,50 @@ this.capacityIncrement 0 1 initialCapacity +10 +1 + +javautil.Vector13.Vector13():::EXIT104 +this_invocation_nonce +26 +this +1604125387 +1 +this.elementData +1668627309 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[null null null null null null null null null null] +1 +this.elementData[..].getClass().getName() +[null null null null null null null null null null] +1 +this.elementCount +0 1 +this.capacityIncrement +0 1 +javautil.Vector13.Vector13():::ENTER +this_invocation_nonce +29 + javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -119 +30 initialCapacity -2 +10 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -120 +31 initialCapacity -2 +10 1 capacityIncrement 0 @@ -9445,21 +9439,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -120 +31 this -1848026318 +1795799895 1 this.elementData -722340065 +1698097425 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9468,7 +9462,7 @@ this.capacityIncrement 0 1 initialCapacity -2 +10 1 capacityIncrement 0 @@ -9476,21 +9470,21 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -119 +30 this -1848026318 +1795799895 1 this.elementData -722340065 +1698097425 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9499,43 +9493,26 @@ this.capacityIncrement 0 1 initialCapacity -2 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -121 -initialCapacity -3 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -122 -initialCapacity -3 -1 -capacityIncrement -0 +10 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13():::EXIT104 this_invocation_nonce -122 +29 this -644415964 +1795799895 1 this.elementData -939075127 +1698097425 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9543,30 +9520,45 @@ this.elementCount this.capacityIncrement 0 1 + +javautil.Vector13.Vector13():::ENTER +this_invocation_nonce +32 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +33 initialCapacity -3 +10 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +34 +initialCapacity +10 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -121 +34 this -644415964 +1376400422 1 this.elementData -939075127 +418304857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9575,43 +9567,29 @@ this.capacityIncrement 0 1 initialCapacity -3 -1 - -javautil.Vector13.Vector13(int):::ENTER -this_invocation_nonce -123 -initialCapacity -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -124 -initialCapacity -4 +10 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -124 +33 this -1178337686 +1376400422 1 this.elementData -227295968 +418304857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9620,29 +9598,26 @@ this.capacityIncrement 0 1 initialCapacity -4 -1 -capacityIncrement -0 +10 1 -javautil.Vector13.Vector13(int):::EXIT95 +javautil.Vector13.Vector13():::EXIT104 this_invocation_nonce -123 +32 this -1178337686 +1376400422 1 this.elementData -227295968 +418304857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null null null null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null null null null null null null null] 1 this.elementCount 0 @@ -9650,20 +9625,17 @@ this.elementCount this.capacityIncrement 0 1 -initialCapacity -4 -1 javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -125 +35 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -126 +36 initialCapacity 0 1 @@ -9673,12 +9645,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -126 +36 this -1937409810 +1050349584 1 this.elementData -1899620856 +1815546035 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9704,12 +9676,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -125 +35 this -1937409810 +1050349584 1 this.elementData -1899620856 +1815546035 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9732,14 +9704,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -127 +37 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -128 +38 initialCapacity 1 1 @@ -9749,12 +9721,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -128 +38 this -288346843 +1864350231 1 this.elementData -1522282669 +25548982 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9780,12 +9752,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -127 +37 this -288346843 +1864350231 1 this.elementData -1522282669 +25548982 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9808,14 +9780,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -129 +39 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -130 +40 initialCapacity 2 1 @@ -9825,12 +9797,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -130 +40 this -2032131172 +1735934726 1 this.elementData -448685916 +861842890 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9856,12 +9828,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -129 +39 this -2032131172 +1735934726 1 this.elementData -448685916 +861842890 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9884,14 +9856,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -131 +41 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -132 +42 initialCapacity 3 1 @@ -9901,12 +9873,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -132 +42 this -1249105595 +553871028 1 this.elementData -2065085740 +250370634 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9932,12 +9904,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -131 +41 this -1249105595 +553871028 1 this.elementData -2065085740 +250370634 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -9960,14 +9932,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -133 +43 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -134 +44 initialCapacity 4 1 @@ -9977,12 +9949,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -134 +44 this -265329366 +724125922 1 this.elementData -1214603190 +1843368112 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10008,12 +9980,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -133 +43 this -265329366 +724125922 1 this.elementData -1214603190 +1843368112 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10036,14 +10008,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -135 +45 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -136 +46 initialCapacity 0 1 @@ -10053,12 +10025,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -136 +46 this -2003749595 +1465085305 1 this.elementData -180890911 +989938643 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10084,12 +10056,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -135 +45 this -2003749595 +1465085305 1 this.elementData -180890911 +989938643 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10112,14 +10084,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -137 +47 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -138 +48 initialCapacity 1 1 @@ -10129,12 +10101,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -138 +48 this -1544180672 +1519280649 1 this.elementData -704680309 +1262822392 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10160,12 +10132,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -137 +47 this -1544180672 +1519280649 1 this.elementData -704680309 +1262822392 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10188,14 +10160,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -139 +49 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -140 +50 initialCapacity 2 1 @@ -10205,12 +10177,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -140 +50 this -189640158 +120694604 1 this.elementData -416403358 +916419490 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10236,12 +10208,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -139 +49 this -189640158 +120694604 1 this.elementData -416403358 +916419490 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10264,14 +10236,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -141 +51 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -142 +52 initialCapacity 3 1 @@ -10281,12 +10253,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -142 +52 this -1989515980 +522764626 1 this.elementData -1474692070 +2106620844 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10312,12 +10284,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -141 +51 this -1989515980 +522764626 1 this.elementData -1474692070 +2106620844 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10340,14 +10312,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -143 +53 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -144 +54 initialCapacity 4 1 @@ -10357,12 +10329,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -144 +54 this -1040850463 +2006034581 1 this.elementData -171943179 +979294118 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10388,12 +10360,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -143 +53 this -1040850463 +2006034581 1 this.elementData -171943179 +979294118 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10416,14 +10388,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -145 +55 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -146 +56 initialCapacity 0 1 @@ -10433,12 +10405,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -146 +56 this -1483504238 +1663411182 1 this.elementData -970586396 +488044861 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10464,12 +10436,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -145 +55 this -1483504238 +1663411182 1 this.elementData -970586396 +488044861 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10492,14 +10464,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -147 +57 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -148 +58 initialCapacity 1 1 @@ -10509,12 +10481,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -148 +58 this -359774960 +1740189450 1 this.elementData -1571286415 +731260860 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10540,12 +10512,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -147 +57 this -359774960 +1740189450 1 this.elementData -1571286415 +731260860 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10568,14 +10540,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -149 +59 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -150 +60 initialCapacity 2 1 @@ -10585,12 +10557,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -150 +60 this -1004369746 +1709366259 1 this.elementData -1220855602 +1335298403 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10616,12 +10588,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -149 +59 this -1004369746 +1709366259 1 this.elementData -1220855602 +1335298403 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10644,14 +10616,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -151 +61 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -152 +62 initialCapacity 3 1 @@ -10661,12 +10633,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -152 +62 this -1861339376 +1643691748 1 this.elementData -1136606583 +2068434592 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10692,12 +10664,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -151 +61 this -1861339376 +1643691748 1 this.elementData -1136606583 +2068434592 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10720,14 +10692,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -153 +63 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -154 +64 initialCapacity 4 1 @@ -10737,12 +10709,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -154 +64 this -1079800416 +143110009 1 this.elementData -1968774562 +2142003995 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10768,12 +10740,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -153 +63 this -1079800416 +143110009 1 this.elementData -1968774562 +2142003995 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10796,14 +10768,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -155 +65 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -156 +66 initialCapacity 0 1 @@ -10813,12 +10785,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -156 +66 this -766030558 +1535634836 1 this.elementData -511124541 +1846412426 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10844,12 +10816,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -155 +65 this -766030558 +1535634836 1 this.elementData -511124541 +1846412426 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10872,14 +10844,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -157 +67 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -158 +68 initialCapacity 1 1 @@ -10889,12 +10861,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -158 +68 this -535572587 +1539805781 1 this.elementData -1264505132 +1206883981 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10920,12 +10892,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -157 +67 this -535572587 +1539805781 1 this.elementData -1264505132 +1206883981 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10948,14 +10920,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -159 +69 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -160 +70 initialCapacity 2 1 @@ -10965,12 +10937,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -160 +70 this -1039582812 +601893033 1 this.elementData -341369292 +1037324811 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -10996,12 +10968,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -159 +69 this -1039582812 +601893033 1 this.elementData -341369292 +1037324811 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11024,14 +10996,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -161 +71 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -162 +72 initialCapacity 3 1 @@ -11041,12 +11013,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -162 +72 this -1464869507 +1525037790 1 this.elementData -1309274941 +1627821297 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11072,12 +11044,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -161 +71 this -1464869507 +1525037790 1 this.elementData -1309274941 +1627821297 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11100,14 +11072,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -163 +73 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -164 +74 initialCapacity 4 1 @@ -11117,12 +11089,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -164 +74 this -1866486225 +1132547352 1 this.elementData -1740351846 +1549409129 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11148,12 +11120,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -163 +73 this -1866486225 +1132547352 1 this.elementData -1740351846 +1549409129 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11176,14 +11148,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -165 +75 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -166 +76 initialCapacity 0 1 @@ -11193,12 +11165,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -166 +76 this -1366203582 +922872566 1 this.elementData -888448950 +1651855867 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11224,12 +11196,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -165 +75 this -1366203582 +922872566 1 this.elementData -888448950 +1651855867 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11252,14 +11224,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -167 +77 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -168 +78 initialCapacity 1 1 @@ -11269,12 +11241,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -168 +78 this -707705059 +727001376 1 this.elementData -1634489527 +660143728 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11300,12 +11272,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -167 +77 this -707705059 +727001376 1 this.elementData -1634489527 +660143728 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11328,14 +11300,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -169 +79 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -170 +80 initialCapacity 2 1 @@ -11345,12 +11317,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -170 +80 this -254667865 +523691575 1 this.elementData -267898584 +1468303011 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11376,12 +11348,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -169 +79 this -254667865 +523691575 1 this.elementData -267898584 +1468303011 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11404,14 +11376,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -171 +81 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -172 +82 initialCapacity 3 1 @@ -11421,12 +11393,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -172 +82 this -1445777176 +1427810650 1 this.elementData -399531227 +902919927 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11452,12 +11424,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -171 +81 this -1445777176 +1427810650 1 this.elementData -399531227 +902919927 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11480,14 +11452,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -173 +83 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -174 +84 initialCapacity 4 1 @@ -11497,12 +11469,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -174 +84 this -1887451667 +503195940 1 this.elementData -1919217432 +1857815974 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11528,12 +11500,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -173 +83 this -1887451667 +503195940 1 this.elementData -1919217432 +1857815974 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11556,14 +11528,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -175 +85 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -176 +86 initialCapacity 0 1 @@ -11573,12 +11545,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -176 +86 this -1083001684 +1852584274 1 this.elementData -2085394663 +1354011814 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11604,12 +11576,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -175 +85 this -1083001684 +1852584274 1 this.elementData -2085394663 +1354011814 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11632,14 +11604,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -177 +87 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -178 +88 initialCapacity 1 1 @@ -11649,12 +11621,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -178 +88 this -147498354 +1022308509 1 this.elementData -808707040 +846238611 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11680,12 +11652,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -177 +87 this -147498354 +1022308509 1 this.elementData -808707040 +846238611 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11708,14 +11680,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -179 +89 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -180 +90 initialCapacity 2 1 @@ -11725,12 +11697,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -180 +90 this -515219417 +1033490990 1 this.elementData -638676815 +1241276575 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11756,12 +11728,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -179 +89 this -515219417 +1033490990 1 this.elementData -638676815 +1241276575 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11784,14 +11756,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -181 +91 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -182 +92 initialCapacity 3 1 @@ -11801,12 +11773,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -182 +92 this -1117961999 +215145189 1 this.elementData -1252889590 +982007015 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11832,12 +11804,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -181 +91 this -1117961999 +215145189 1 this.elementData -1252889590 +982007015 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11860,14 +11832,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -183 +93 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -184 +94 initialCapacity 4 1 @@ -11877,12 +11849,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -184 +94 this -1238180295 +1232306490 1 this.elementData -979678635 +1663166483 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11908,12 +11880,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -183 +93 this -1238180295 +1232306490 1 this.elementData -979678635 +1663166483 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11936,14 +11908,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -185 +95 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -186 +96 initialCapacity 0 1 @@ -11953,12 +11925,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -186 +96 this -701696896 +2042495840 1 this.elementData -1587025395 +36333492 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -11984,12 +11956,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -185 +95 this -701696896 +2042495840 1 this.elementData -1587025395 +36333492 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12012,14 +11984,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -187 +97 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -188 +98 initialCapacity 1 1 @@ -12029,12 +12001,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -188 +98 this -1388918025 +1468357786 1 this.elementData -398003285 +990398217 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12060,12 +12032,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -187 +97 this -1388918025 +1468357786 1 this.elementData -398003285 +990398217 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12088,14 +12060,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -189 +99 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -190 +100 initialCapacity 2 1 @@ -12105,12 +12077,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -190 +100 this -1977134237 +841283083 1 this.elementData -1680651228 +1675763772 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12136,12 +12108,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -189 +99 this -1977134237 +841283083 1 this.elementData -1680651228 +1675763772 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12164,14 +12136,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -191 +101 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -192 +102 initialCapacity 3 1 @@ -12181,12 +12153,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -192 +102 this -852780005 +520016214 1 this.elementData -367683957 +1731722639 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12212,12 +12184,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -191 +101 this -852780005 +520016214 1 this.elementData -367683957 +1731722639 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12240,14 +12212,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -193 +103 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -194 +104 initialCapacity 4 1 @@ -12257,12 +12229,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -194 +104 this -1353812880 +1924582348 1 this.elementData -943834195 +11003494 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12288,12 +12260,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -193 +103 this -1353812880 +1924582348 1 this.elementData -943834195 +11003494 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12316,14 +12288,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -195 +105 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -196 +106 initialCapacity 0 1 @@ -12333,12 +12305,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -196 +106 this -1707098623 +1757143877 1 this.elementData -825032841 +817406040 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12364,12 +12336,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -195 +105 this -1707098623 +1757143877 1 this.elementData -825032841 +817406040 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12392,14 +12364,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -197 +107 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -198 +108 initialCapacity 1 1 @@ -12409,12 +12381,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -198 +108 this -25050008 +1955915048 1 this.elementData -108689644 +1270855946 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12440,12 +12412,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -197 +107 this -25050008 +1955915048 1 this.elementData -108689644 +1270855946 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12468,14 +12440,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -199 +109 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -200 +110 initialCapacity 2 1 @@ -12485,12 +12457,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -200 +110 this -1385746758 +2083117811 1 this.elementData -785609991 +157683534 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12516,12 +12488,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -199 +109 this -1385746758 +2083117811 1 this.elementData -785609991 +157683534 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12544,14 +12516,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -201 +111 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -202 +112 initialCapacity 3 1 @@ -12561,12 +12533,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -202 +112 this -1017656981 +1518864111 1 this.elementData -1201114959 +1816757085 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12592,12 +12564,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -201 +111 this -1017656981 +1518864111 1 this.elementData -1201114959 +1816757085 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12620,14 +12592,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -203 +113 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -204 +114 initialCapacity 4 1 @@ -12637,12 +12609,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -204 +114 this -792834113 +1585787493 1 this.elementData -26907556 +1730173572 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12668,12 +12640,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -203 +113 this -792834113 +1585787493 1 this.elementData -26907556 +1730173572 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12696,14 +12668,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -205 +115 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -206 +116 initialCapacity 0 1 @@ -12713,12 +12685,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -206 +116 this -1263727822 +2097514481 1 this.elementData -860235524 +1568059495 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12744,12 +12716,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -205 +115 this -1263727822 +2097514481 1 this.elementData -860235524 +1568059495 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12772,14 +12744,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -207 +117 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -208 +118 initialCapacity 1 1 @@ -12789,12 +12761,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -208 +118 this -1118540264 +706197430 1 this.elementData -234371210 +1325808650 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12820,12 +12792,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -207 +117 this -1118540264 +706197430 1 this.elementData -234371210 +1325808650 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12848,14 +12820,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -209 +119 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -210 +120 initialCapacity 2 1 @@ -12865,12 +12837,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -210 +120 this -591917872 +510464020 1 this.elementData -1219421800 +1987083830 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12896,12 +12868,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -209 +119 this -591917872 +510464020 1 this.elementData -1219421800 +1987083830 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12924,14 +12896,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -211 +121 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -212 +122 initialCapacity 3 1 @@ -12941,12 +12913,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -212 +122 this -1385749279 +1632492873 1 this.elementData -827980438 +525683462 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -12972,12 +12944,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -211 +121 this -1385749279 +1632492873 1 this.elementData -827980438 +525683462 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13000,14 +12972,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -213 +123 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -214 +124 initialCapacity 4 1 @@ -13017,12 +12989,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -214 +124 this -173188906 +1766724936 1 this.elementData -945601457 +473581465 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13048,12 +13020,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -213 +123 this -173188906 +1766724936 1 this.elementData -945601457 +473581465 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13076,14 +13048,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -215 +125 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -216 +126 initialCapacity 0 1 @@ -13093,12 +13065,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -216 +126 this -1344699999 +319977154 1 this.elementData -254982165 +648680157 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13124,12 +13096,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -215 +125 this -1344699999 +319977154 1 this.elementData -254982165 +648680157 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13152,14 +13124,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -217 +127 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -218 +128 initialCapacity 1 1 @@ -13169,12 +13141,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -218 +128 this -1255371390 +1071097621 1 this.elementData -119955 +1897871865 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13200,12 +13172,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -217 +127 this -1255371390 +1071097621 1 this.elementData -119955 +1897871865 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13228,14 +13200,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -219 +129 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -220 +130 initialCapacity 2 1 @@ -13245,12 +13217,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -220 +130 this -2016083685 +1908143486 1 this.elementData -1321511429 +133250414 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13276,12 +13248,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -219 +129 this -2016083685 +1908143486 1 this.elementData -1321511429 +133250414 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13304,14 +13276,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -221 +131 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -222 +132 initialCapacity 3 1 @@ -13321,12 +13293,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -222 +132 this -1366709929 +85777802 1 this.elementData -808688391 +222624801 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13352,12 +13324,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -221 +131 this -1366709929 +85777802 1 this.elementData -808688391 +222624801 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13380,14 +13352,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -223 +133 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -224 +134 initialCapacity 4 1 @@ -13397,12 +13369,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -224 +134 this -201785674 +603650290 1 this.elementData -535144305 +762227630 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13428,12 +13400,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -223 +133 this -201785674 +603650290 1 this.elementData -535144305 +762227630 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13456,14 +13428,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -225 +135 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -226 +136 initialCapacity 0 1 @@ -13473,12 +13445,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -226 +136 this -508820499 +1316864772 1 this.elementData -466244339 +1685232414 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13504,12 +13476,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -225 +135 this -508820499 +1316864772 1 this.elementData -466244339 +1685232414 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13532,14 +13504,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -227 +137 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -228 +138 initialCapacity 1 1 @@ -13549,12 +13521,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -228 +138 this -777670 +280744458 1 this.elementData -185397808 +1213216872 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13580,12 +13552,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -227 +137 this -777670 +280744458 1 this.elementData -185397808 +1213216872 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13608,14 +13580,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -229 +139 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -230 +140 initialCapacity 2 1 @@ -13625,12 +13597,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -230 +140 this -2129670906 +1754638213 1 this.elementData -1268972593 +407858146 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13656,12 +13628,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -229 +139 this -2129670906 +1754638213 1 this.elementData -1268972593 +407858146 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13684,14 +13656,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -231 +141 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -232 +142 initialCapacity 3 1 @@ -13701,12 +13673,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -232 +142 this -962272194 +1454031203 1 this.elementData -209419001 +527446182 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13732,12 +13704,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -231 +141 this -962272194 +1454031203 1 this.elementData -209419001 +527446182 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13760,14 +13732,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -233 +143 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -234 +144 initialCapacity 4 1 @@ -13777,12 +13749,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -234 +144 this -2126936021 +1511785794 1 this.elementData -400916985 +963601816 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13808,12 +13780,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -233 +143 this -2126936021 +1511785794 1 this.elementData -400916985 +963601816 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13836,14 +13808,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -235 +145 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -236 +146 initialCapacity 0 1 @@ -13853,12 +13825,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -236 +146 this -1555566256 +961419791 1 this.elementData -936146014 +665188480 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13884,12 +13856,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -235 +145 this -1555566256 +961419791 1 this.elementData -936146014 +665188480 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13912,14 +13884,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -237 +147 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -238 +148 initialCapacity 1 1 @@ -13929,12 +13901,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -238 +148 this -1340859376 +489279267 1 this.elementData -130140814 +1596467899 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13960,12 +13932,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -237 +147 this -1340859376 +489279267 1 this.elementData -130140814 +1596467899 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -13988,14 +13960,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -239 +149 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -240 +150 initialCapacity 2 1 @@ -14005,12 +13977,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -240 +150 this -1138308252 +377478451 1 this.elementData -1762463888 +513169028 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14036,12 +14008,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -239 +149 this -1138308252 +377478451 1 this.elementData -1762463888 +513169028 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14064,14 +14036,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -241 +151 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -242 +152 initialCapacity 3 1 @@ -14081,12 +14053,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -242 +152 this -1488622545 +1301664418 1 this.elementData -1094626265 +1408652377 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14112,12 +14084,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -241 +151 this -1488622545 +1301664418 1 this.elementData -1094626265 +1408652377 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14140,14 +14112,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -243 +153 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -244 +154 initialCapacity 4 1 @@ -14157,12 +14129,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -244 +154 this -2038715653 +990416209 1 this.elementData -1592392086 +394714818 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14188,12 +14160,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -243 +153 this -2038715653 +990416209 1 this.elementData -1592392086 +394714818 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14216,14 +14188,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -245 +155 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -246 +156 initialCapacity 0 1 @@ -14233,12 +14205,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -246 +156 this -1392580488 +1952779858 1 this.elementData -1823476810 +366004251 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14264,12 +14236,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -245 +155 this -1392580488 +1952779858 1 this.elementData -1823476810 +366004251 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14292,14 +14264,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -247 +157 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -248 +158 initialCapacity 1 1 @@ -14309,12 +14281,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -248 +158 this -435619333 +1791868405 1 this.elementData -682377108 +1260134048 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14340,12 +14312,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -247 +157 this -435619333 +1791868405 1 this.elementData -682377108 +1260134048 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14368,14 +14340,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -249 +159 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -250 +160 initialCapacity 2 1 @@ -14385,12 +14357,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -250 +160 this -1149379176 +391618063 1 this.elementData -1000406267 +81009902 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14416,12 +14388,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -249 +159 this -1149379176 +391618063 1 this.elementData -1000406267 +81009902 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14444,14 +14416,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -251 +161 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -252 +162 initialCapacity 3 1 @@ -14461,12 +14433,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -252 +162 this -1178657106 +57748372 1 this.elementData -1300820614 +674483268 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14492,12 +14464,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -251 +161 this -1178657106 +57748372 1 this.elementData -1300820614 +674483268 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14520,14 +14492,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -253 +163 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -254 +164 initialCapacity 4 1 @@ -14537,12 +14509,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -254 +164 this -1508533038 +54495403 1 this.elementData -722833184 +665372494 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14568,12 +14540,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -253 +163 this -1508533038 +54495403 1 this.elementData -722833184 +665372494 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14596,14 +14568,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -255 +165 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -256 +166 initialCapacity 0 1 @@ -14613,12 +14585,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -256 +166 this -342332409 +764372388 1 this.elementData -472107750 +459857341 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14644,12 +14616,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -255 +165 this -342332409 +764372388 1 this.elementData -472107750 +459857341 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14672,14 +14644,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -257 +167 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -258 +168 initialCapacity 1 1 @@ -14689,12 +14661,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -258 +168 this -1910362232 +1684890795 1 this.elementData -430026927 +94264799 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14720,12 +14692,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -257 +167 this -1910362232 +1684890795 1 this.elementData -430026927 +94264799 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14748,14 +14720,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -259 +169 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -260 +170 initialCapacity 2 1 @@ -14765,12 +14737,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -260 +170 this -1180089934 +1399499405 1 this.elementData -1760040693 +238157928 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14796,12 +14768,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -259 +169 this -1180089934 +1399499405 1 this.elementData -1760040693 +238157928 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14824,14 +14796,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -261 +171 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -262 +172 initialCapacity 3 1 @@ -14841,12 +14813,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -262 +172 this -1564173473 +32863545 1 this.elementData -1716237784 +1995616381 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14872,12 +14844,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -261 +171 this -1564173473 +32863545 1 this.elementData -1716237784 +1995616381 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14900,14 +14872,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -263 +173 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -264 +174 initialCapacity 4 1 @@ -14917,12 +14889,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -264 +174 this -1955572831 +1883919084 1 this.elementData -75353282 +1860513229 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14948,12 +14920,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -263 +173 this -1955572831 +1883919084 1 this.elementData -75353282 +1860513229 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -14976,14 +14948,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -265 +175 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -266 +176 initialCapacity 0 1 @@ -14993,12 +14965,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -266 +176 this -1594742491 +1150538133 1 this.elementData -93648030 +662822946 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15024,12 +14996,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -265 +175 this -1594742491 +1150538133 1 this.elementData -93648030 +662822946 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15052,14 +15024,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -267 +177 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -268 +178 initialCapacity 1 1 @@ -15069,12 +15041,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -268 +178 this -1984410606 +92150540 1 this.elementData -1568017132 +1110623531 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15100,12 +15072,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -267 +177 this -1984410606 +92150540 1 this.elementData -1568017132 +1110623531 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15128,14 +15100,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -269 +179 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -270 +180 initialCapacity 2 1 @@ -15145,12 +15117,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -270 +180 this -1892105187 +410495873 1 this.elementData -674033133 +811587677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15176,12 +15148,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -269 +179 this -1892105187 +410495873 1 this.elementData -674033133 +811587677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15204,14 +15176,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -271 +181 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -272 +182 initialCapacity 3 1 @@ -15221,12 +15193,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -272 +182 this -498628406 +1166807841 1 this.elementData -966429048 +289639718 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15252,12 +15224,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -271 +181 this -498628406 +1166807841 1 this.elementData -966429048 +289639718 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15280,14 +15252,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -273 +183 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -274 +184 initialCapacity 4 1 @@ -15297,12 +15269,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -274 +184 this -1354187475 +885851948 1 this.elementData -797201419 +2048834776 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15328,12 +15300,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -273 +183 this -1354187475 +885851948 1 this.elementData -797201419 +2048834776 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15356,14 +15328,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -275 +185 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -276 +186 initialCapacity 0 1 @@ -15373,12 +15345,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -276 +186 this -413775500 +1605283233 1 this.elementData -772779514 +1384722895 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15404,12 +15376,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -275 +185 this -413775500 +1605283233 1 this.elementData -772779514 +1384722895 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15432,14 +15404,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -277 +187 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -278 +188 initialCapacity 1 1 @@ -15449,12 +15421,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -278 +188 this -124194742 +245475541 1 this.elementData -2134407557 +22429093 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15480,12 +15452,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -277 +187 this -124194742 +245475541 1 this.elementData -2134407557 +22429093 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15508,14 +15480,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -279 +189 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -280 +190 initialCapacity 2 1 @@ -15525,12 +15497,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -280 +190 this -1420971011 +733957003 1 this.elementData -94143590 +815992954 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15556,12 +15528,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -279 +189 this -1420971011 +733957003 1 this.elementData -94143590 +815992954 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15584,14 +15556,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -281 +191 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -282 +192 initialCapacity 3 1 @@ -15601,12 +15573,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -282 +192 this -1723352938 +868737467 1 this.elementData -1280881877 +55331187 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15632,12 +15604,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -281 +191 this -1723352938 +868737467 1 this.elementData -1280881877 +55331187 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15660,14 +15632,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -283 +193 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -284 +194 initialCapacity 4 1 @@ -15677,12 +15649,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -284 +194 this -1405629211 +1392425346 1 this.elementData -2090032277 +2054574951 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15708,12 +15680,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -283 +193 this -1405629211 +1392425346 1 this.elementData -2090032277 +2054574951 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15736,14 +15708,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -285 +195 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -286 +196 initialCapacity 0 1 @@ -15753,12 +15725,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -286 +196 this -782465560 +1991294891 1 this.elementData -1856296339 +399931359 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15784,12 +15756,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -285 +195 this -782465560 +1991294891 1 this.elementData -1856296339 +399931359 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15812,14 +15784,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -287 +197 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -288 +198 initialCapacity 1 1 @@ -15829,12 +15801,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -288 +198 this -130145957 +809762318 1 this.elementData -1224746653 +2028371466 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15860,12 +15832,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -287 +197 this -130145957 +809762318 1 this.elementData -1224746653 +2028371466 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15888,14 +15860,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -289 +199 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -290 +200 initialCapacity 2 1 @@ -15905,12 +15877,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -290 +200 this -686240476 +198761306 1 this.elementData -1656495742 +798244209 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15936,12 +15908,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -289 +199 this -686240476 +198761306 1 this.elementData -1656495742 +798244209 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -15964,14 +15936,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -291 +201 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -292 +202 initialCapacity 3 1 @@ -15981,12 +15953,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -292 +202 this -745936086 +525571 1 this.elementData -2085749863 +1263877414 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16012,12 +15984,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -291 +201 this -745936086 +525571 1 this.elementData -2085749863 +1263877414 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16040,14 +16012,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -293 +203 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -294 +204 initialCapacity 4 1 @@ -16057,12 +16029,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -294 +204 this -1822377460 +110771485 1 this.elementData -1286196706 +141289226 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16088,12 +16060,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -293 +203 this -1822377460 +110771485 1 this.elementData -1286196706 +141289226 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16116,14 +16088,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -295 +205 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -296 +206 initialCapacity 0 1 @@ -16133,12 +16105,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -296 +206 this -537647040 +1208736537 1 this.elementData -1770098351 +710239027 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16164,12 +16136,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -295 +205 this -537647040 +1208736537 1 this.elementData -1770098351 +710239027 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16192,14 +16164,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -297 +207 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -298 +208 initialCapacity 1 1 @@ -16209,12 +16181,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -298 +208 this -952023366 +2104545713 1 this.elementData -1903542212 +712256162 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16240,12 +16212,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -297 +207 this -952023366 +2104545713 1 this.elementData -1903542212 +712256162 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16268,14 +16240,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -299 +209 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -300 +210 initialCapacity 2 1 @@ -16285,12 +16257,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -300 +210 this -1770067725 +1018298342 1 this.elementData -437292184 +1039949752 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16316,12 +16288,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -299 +209 this -1770067725 +1018298342 1 this.elementData -437292184 +1039949752 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16344,14 +16316,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -301 +211 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -302 +212 initialCapacity 3 1 @@ -16361,12 +16333,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -302 +212 this -880696454 +1182461167 1 this.elementData -1408007254 +1297149880 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16392,12 +16364,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -301 +211 this -880696454 +1182461167 1 this.elementData -1408007254 +1297149880 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16420,14 +16392,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -303 +213 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -304 +214 initialCapacity 4 1 @@ -16437,12 +16409,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -304 +214 this -1255611685 +2116908859 1 this.elementData -1891274373 +561247961 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16468,12 +16440,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -303 +213 this -1255611685 +2116908859 1 this.elementData -1891274373 +561247961 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16496,14 +16468,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -305 +215 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -306 +216 initialCapacity 0 1 @@ -16513,12 +16485,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -306 +216 this -1742927764 +813656972 1 this.elementData -1709984468 +2048425748 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16544,12 +16516,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -305 +215 this -1742927764 +813656972 1 this.elementData -1709984468 +2048425748 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16572,14 +16544,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -307 +217 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -308 +218 initialCapacity 1 1 @@ -16589,12 +16561,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -308 +218 this -2082789522 +1863932867 1 this.elementData -1460050154 +1373810119 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16620,12 +16592,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -307 +217 this -2082789522 +1863932867 1 this.elementData -1460050154 +1373810119 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16648,14 +16620,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -309 +219 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -310 +220 initialCapacity 2 1 @@ -16665,12 +16637,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -310 +220 this -1914787656 +445288316 1 this.elementData -1793684097 +592688102 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16696,12 +16668,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -309 +219 this -1914787656 +445288316 1 this.elementData -1793684097 +592688102 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16724,14 +16696,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -311 +221 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -312 +222 initialCapacity 3 1 @@ -16741,12 +16713,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -312 +222 this -73181693 +103887628 1 this.elementData -1604068167 +1123629720 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16772,12 +16744,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -311 +221 this -73181693 +103887628 1 this.elementData -1604068167 +1123629720 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16800,14 +16772,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -313 +223 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -314 +224 initialCapacity 4 1 @@ -16817,12 +16789,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -314 +224 this -63978331 +205962452 1 this.elementData -1541985617 +842326585 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16848,12 +16820,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -313 +223 this -63978331 +205962452 1 this.elementData -1541985617 +842326585 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16876,14 +16848,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -315 +225 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -316 +226 initialCapacity 0 1 @@ -16893,12 +16865,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -316 +226 this -319612923 +1032986144 1 this.elementData -877795714 +917819120 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16924,12 +16896,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -315 +225 this -319612923 +1032986144 1 this.elementData -877795714 +917819120 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -16952,14 +16924,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -317 +227 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -318 +228 initialCapacity 1 1 @@ -16969,12 +16941,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -318 +228 this -2047393955 +263025902 1 this.elementData -1419725804 +438135304 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17000,12 +16972,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -317 +227 this -2047393955 +263025902 1 this.elementData -1419725804 +438135304 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17028,14 +17000,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -319 +229 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -320 +230 initialCapacity 2 1 @@ -17045,12 +17017,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -320 +230 this -640786011 +936580213 1 this.elementData -59997172 +662736689 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17076,12 +17048,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -319 +229 this -640786011 +936580213 1 this.elementData -59997172 +662736689 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17104,14 +17076,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -321 +231 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -322 +232 initialCapacity 3 1 @@ -17121,12 +17093,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -322 +232 this -1202639361 +1131316523 1 this.elementData -643654763 +852687460 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17152,12 +17124,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -321 +231 this -1202639361 +1131316523 1 this.elementData -643654763 +852687460 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17180,14 +17152,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -323 +233 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -324 +234 initialCapacity 4 1 @@ -17197,12 +17169,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -324 +234 this -1030471802 +495792375 1 this.elementData -1831446806 +1045941616 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17228,12 +17200,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -323 +233 this -1030471802 +495792375 1 this.elementData -1831446806 +1045941616 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17256,14 +17228,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -325 +235 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -326 +236 initialCapacity 0 1 @@ -17273,12 +17245,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -326 +236 this -1243355991 +161960012 1 this.elementData -2068255427 +738433734 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17304,12 +17276,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -325 +235 this -1243355991 +161960012 1 this.elementData -2068255427 +738433734 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17332,14 +17304,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -327 +237 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -328 +238 initialCapacity 1 1 @@ -17349,12 +17321,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -328 +238 this -1998651247 +1484594489 1 this.elementData -392301955 +1489069835 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17380,12 +17352,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -327 +237 this -1998651247 +1484594489 1 this.elementData -392301955 +1489069835 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17408,14 +17380,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -329 +239 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -330 +240 initialCapacity 2 1 @@ -17425,12 +17397,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -330 +240 this -644161395 +1800890735 1 this.elementData -955501238 +1538399081 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17456,12 +17428,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -329 +239 this -644161395 +1800890735 1 this.elementData -955501238 +1538399081 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17484,14 +17456,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -331 +241 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -332 +242 initialCapacity 3 1 @@ -17501,12 +17473,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -332 +242 this -226594800 +1805013491 1 this.elementData -890297469 +951880373 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17532,12 +17504,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -331 +241 this -226594800 +1805013491 1 this.elementData -890297469 +951880373 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17560,14 +17532,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -333 +243 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -334 +244 initialCapacity 4 1 @@ -17577,12 +17549,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -334 +244 this -1710992834 +1752203484 1 this.elementData -1850527708 +601008104 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17608,12 +17580,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -333 +243 this -1710992834 +1752203484 1 this.elementData -1850527708 +601008104 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17636,14 +17608,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -335 +245 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -336 +246 initialCapacity 0 1 @@ -17653,12 +17625,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -336 +246 this -1961012502 +2056418216 1 this.elementData -1305590605 +648525677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17684,12 +17656,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -335 +245 this -1961012502 +2056418216 1 this.elementData -1305590605 +648525677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17712,14 +17684,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -337 +247 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -338 +248 initialCapacity 1 1 @@ -17729,12 +17701,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -338 +248 this -73393189 +1253946629 1 this.elementData -863714145 +2095490653 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17760,12 +17732,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -337 +247 this -73393189 +1253946629 1 this.elementData -863714145 +2095490653 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17788,14 +17760,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -339 +249 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -340 +250 initialCapacity 2 1 @@ -17805,12 +17777,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -340 +250 this -1601664942 +352359770 1 this.elementData -475165049 +243745864 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17836,12 +17808,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -339 +249 this -1601664942 +352359770 1 this.elementData -475165049 +243745864 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17864,14 +17836,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -341 +251 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -342 +252 initialCapacity 3 1 @@ -17881,12 +17853,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -342 +252 this -1754778997 +699780352 1 this.elementData -1177678328 +1613255205 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17912,12 +17884,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -341 +251 this -1754778997 +699780352 1 this.elementData -1177678328 +1613255205 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17940,14 +17912,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -343 +253 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -344 +254 initialCapacity 4 1 @@ -17957,12 +17929,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -344 +254 this -2030367944 +1897115967 1 this.elementData -878883978 +1166151249 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -17988,12 +17960,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -343 +253 this -2030367944 +1897115967 1 this.elementData -878883978 +1166151249 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18016,14 +17988,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -345 +255 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -346 +256 initialCapacity 0 1 @@ -18033,12 +18005,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -346 +256 this -1010494180 +1121453612 1 this.elementData -1075002784 +1615056168 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18064,12 +18036,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -345 +255 this -1010494180 +1121453612 1 this.elementData -1075002784 +1615056168 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18092,14 +18064,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -347 +257 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -348 +258 initialCapacity 1 1 @@ -18109,12 +18081,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -348 +258 this -791868477 +213193302 1 this.elementData -977332480 +1502635287 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18140,12 +18112,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -347 +257 this -791868477 +213193302 1 this.elementData -977332480 +1502635287 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18168,14 +18140,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -349 +259 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -350 +260 initialCapacity 2 1 @@ -18185,12 +18157,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -350 +260 this -2072059104 +1543237999 1 this.elementData -1502541176 +632249781 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18216,12 +18188,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -349 +259 this -2072059104 +1543237999 1 this.elementData -1502541176 +632249781 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18244,14 +18216,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -351 +261 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -352 +262 initialCapacity 3 1 @@ -18261,12 +18233,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -352 +262 this -949339959 +19717364 1 this.elementData -1900677350 +1540270363 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18292,12 +18264,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -351 +261 this -949339959 +19717364 1 this.elementData -1900677350 +1540270363 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18320,14 +18292,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -353 +263 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -354 +264 initialCapacity 4 1 @@ -18337,12 +18309,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -354 +264 this -864972325 +1597655940 1 this.elementData -1273059732 +2619171 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18368,12 +18340,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -353 +263 this -864972325 +1597655940 1 this.elementData -1273059732 +2619171 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18396,14 +18368,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -355 +265 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -356 +266 initialCapacity 0 1 @@ -18413,12 +18385,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -356 +266 this -935340663 +1728790703 1 this.elementData -690227001 +1227074340 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18444,12 +18416,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -355 +265 this -935340663 +1728790703 1 this.elementData -690227001 +1227074340 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18472,14 +18444,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -357 +267 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -358 +268 initialCapacity 1 1 @@ -18489,12 +18461,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -358 +268 this -2086028360 +1154002927 1 this.elementData -60625598 +2070529722 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18520,12 +18492,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -357 +267 this -2086028360 +1154002927 1 this.elementData -60625598 +2070529722 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18548,14 +18520,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -359 +269 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -360 +270 initialCapacity 2 1 @@ -18565,12 +18537,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -360 +270 this -1027176908 +1188753216 1 this.elementData -141254523 +317986356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18596,12 +18568,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -359 +269 this -1027176908 +1188753216 1 this.elementData -141254523 +317986356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18624,14 +18596,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -361 +271 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -362 +272 initialCapacity 3 1 @@ -18641,12 +18613,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -362 +272 this -1095338126 +331510866 1 this.elementData -1118061598 +640363654 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18672,12 +18644,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -361 +271 this -1095338126 +331510866 1 this.elementData -1118061598 +640363654 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18700,14 +18672,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -363 +273 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -364 +274 initialCapacity 4 1 @@ -18717,12 +18689,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -364 +274 this -779366336 +924477420 1 this.elementData -1307246099 +99451533 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18748,12 +18720,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -363 +273 this -779366336 +924477420 1 this.elementData -1307246099 +99451533 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18776,14 +18748,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -365 +275 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -366 +276 initialCapacity 0 1 @@ -18793,12 +18765,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -366 +276 this -2127477083 +84739718 1 this.elementData -904611431 +2050835901 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18824,12 +18796,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -365 +275 this -2127477083 +84739718 1 this.elementData -904611431 +2050835901 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18852,14 +18824,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -367 +277 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -368 +278 initialCapacity 1 1 @@ -18869,12 +18841,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -368 +278 this -1767583704 +511473681 1 this.elementData -1638024177 +2011986105 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18900,12 +18872,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -367 +277 this -1767583704 +511473681 1 this.elementData -1638024177 +2011986105 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18928,14 +18900,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -369 +279 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -370 +280 initialCapacity 2 1 @@ -18945,12 +18917,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -370 +280 this -1679471946 +439904756 1 this.elementData -359940254 +171497379 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -18976,12 +18948,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -369 +279 this -1679471946 +439904756 1 this.elementData -359940254 +171497379 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19004,14 +18976,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -371 +281 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -372 +282 initialCapacity 3 1 @@ -19021,12 +18993,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -372 +282 this -54415379 +2012846597 1 this.elementData -1878724878 +1665404403 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19052,12 +19024,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -371 +281 this -54415379 +2012846597 1 this.elementData -1878724878 +1665404403 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19080,14 +19052,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -373 +283 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -374 +284 initialCapacity 4 1 @@ -19097,12 +19069,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -374 +284 this -1276962705 +988458918 1 this.elementData -2108098464 +1990451863 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19128,12 +19100,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -373 +283 this -1276962705 +988458918 1 this.elementData -2108098464 +1990451863 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19156,14 +19128,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -375 +285 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -376 +286 initialCapacity 0 1 @@ -19173,12 +19145,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -376 +286 this -1625676242 +1295083508 1 this.elementData -306158513 +249155636 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19204,12 +19176,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -375 +285 this -1625676242 +1295083508 1 this.elementData -306158513 +249155636 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19232,14 +19204,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -377 +287 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -378 +288 initialCapacity 1 1 @@ -19249,12 +19221,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -378 +288 this -235309779 +1629604310 1 this.elementData -1334061526 +142555199 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19280,12 +19252,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -377 +287 this -235309779 +1629604310 1 this.elementData -1334061526 +142555199 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19308,14 +19280,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -379 +289 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -380 +290 initialCapacity 2 1 @@ -19325,12 +19297,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -380 +290 this -1842792802 +1320677379 1 this.elementData -809466180 +246399377 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19356,12 +19328,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -379 +289 this -1842792802 +1320677379 1 this.elementData -809466180 +246399377 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19384,14 +19356,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -381 +291 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -382 +292 initialCapacity 3 1 @@ -19401,12 +19373,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -382 +292 this -389183515 +1630521067 1 this.elementData -1919631490 +274773041 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19432,12 +19404,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -381 +291 this -389183515 +1630521067 1 this.elementData -1919631490 +274773041 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19460,14 +19432,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -383 +293 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -384 +294 initialCapacity 4 1 @@ -19477,12 +19449,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -384 +294 this -1599623549 +1629911510 1 this.elementData -525211250 +292917034 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19508,12 +19480,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -383 +293 this -1599623549 +1629911510 1 this.elementData -525211250 +292917034 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19536,14 +19508,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -385 +295 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -386 +296 initialCapacity 0 1 @@ -19553,12 +19525,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -386 +296 this -1067689580 +242355057 1 this.elementData -285416728 +455538610 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19584,12 +19556,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -385 +295 this -1067689580 +242355057 1 this.elementData -285416728 +455538610 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19612,14 +19584,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -387 +297 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -388 +298 initialCapacity 1 1 @@ -19629,12 +19601,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -388 +298 this -1667963745 +1226622409 1 this.elementData -215134277 +1957502751 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19660,12 +19632,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -387 +297 this -1667963745 +1226622409 1 this.elementData -215134277 +1957502751 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19688,14 +19660,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -389 +299 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -390 +300 initialCapacity 2 1 @@ -19705,12 +19677,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -390 +300 this -1546815638 +1780132728 1 this.elementData -2040880931 +1177377518 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19736,12 +19708,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -389 +299 this -1546815638 +1780132728 1 this.elementData -2040880931 +1177377518 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19764,14 +19736,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -391 +301 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -392 +302 initialCapacity 3 1 @@ -19781,12 +19753,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -392 +302 this -1476997433 +1773206895 1 this.elementData -1132380758 +1970881185 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19812,12 +19784,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -391 +301 this -1476997433 +1773206895 1 this.elementData -1132380758 +1970881185 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19840,14 +19812,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -393 +303 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -394 +304 initialCapacity 4 1 @@ -19857,12 +19829,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -394 +304 this -923319992 +1250391581 1 this.elementData -522272322 +1725017993 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19888,12 +19860,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -393 +303 this -923319992 +1250391581 1 this.elementData -522272322 +1725017993 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19916,14 +19888,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -395 +305 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -396 +306 initialCapacity 0 1 @@ -19933,12 +19905,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -396 +306 this -1065250565 +140799417 1 this.elementData -95080916 +926370398 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19964,12 +19936,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -395 +305 this -1065250565 +140799417 1 this.elementData -95080916 +926370398 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -19992,14 +19964,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -397 +307 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -398 +308 initialCapacity 1 1 @@ -20009,12 +19981,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -398 +308 this -297121844 +1181869371 1 this.elementData -827352833 +767010715 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20040,12 +20012,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -397 +307 this -297121844 +1181869371 1 this.elementData -827352833 +767010715 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20068,14 +20040,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -399 +309 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -400 +310 initialCapacity 2 1 @@ -20085,12 +20057,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -400 +310 this -362449906 +110431793 1 this.elementData -1431947250 +192794887 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20116,12 +20088,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -399 +309 this -362449906 +110431793 1 this.elementData -1431947250 +192794887 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20144,14 +20116,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -401 +311 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -402 +312 initialCapacity 3 1 @@ -20161,12 +20133,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -402 +312 this -2035682468 +1122805102 1 this.elementData -5775672 +1391942103 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20192,12 +20164,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -401 +311 this -2035682468 +1122805102 1 this.elementData -5775672 +1391942103 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20220,14 +20192,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -403 +313 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -404 +314 initialCapacity 4 1 @@ -20237,12 +20209,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -404 +314 this -434955189 +2092769598 1 this.elementData -257527135 +422392391 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20268,12 +20240,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -403 +313 this -434955189 +2092769598 1 this.elementData -257527135 +422392391 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20296,14 +20268,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -405 +315 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -406 +316 initialCapacity 0 1 @@ -20313,12 +20285,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -406 +316 this -1079009240 +1053631449 1 this.elementData -1556381412 +1453128758 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20344,12 +20316,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -405 +315 this -1079009240 +1053631449 1 this.elementData -1556381412 +1453128758 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20372,14 +20344,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -407 +317 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -408 +318 initialCapacity 1 1 @@ -20389,12 +20361,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -408 +318 this -1751571024 +1136497418 1 this.elementData -948367292 +863125040 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20420,12 +20392,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -407 +317 this -1751571024 +1136497418 1 this.elementData -948367292 +863125040 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20448,14 +20420,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -409 +319 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -410 +320 initialCapacity 2 1 @@ -20465,12 +20437,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -410 +320 this -585448610 +1693847660 1 this.elementData -2012201363 +1429880200 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20496,12 +20468,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -409 +319 this -585448610 +1693847660 1 this.elementData -2012201363 +1429880200 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20524,14 +20496,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -411 +321 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -412 +322 initialCapacity 3 1 @@ -20541,12 +20513,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -412 +322 this -495834985 +2050019814 1 this.elementData -1262042535 +1485955886 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20572,12 +20544,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -411 +321 this -495834985 +2050019814 1 this.elementData -1262042535 +1485955886 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20600,14 +20572,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -413 +323 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -414 +324 initialCapacity 4 1 @@ -20617,12 +20589,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -414 +324 this -452904326 +212921632 1 this.elementData -1280962114 +149047107 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20648,12 +20620,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -413 +323 this -452904326 +212921632 1 this.elementData -1280962114 +149047107 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20676,14 +20648,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -415 +325 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -416 +326 initialCapacity 0 1 @@ -20693,12 +20665,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -416 +326 this -606688823 +1956710488 1 this.elementData -366692205 +603856241 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20724,12 +20696,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -415 +325 this -606688823 +1956710488 1 this.elementData -366692205 +603856241 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20752,14 +20724,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -417 +327 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -418 +328 initialCapacity 1 1 @@ -20769,12 +20741,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -418 +328 this -1865306192 +682376643 1 this.elementData -1234890038 +854507466 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20800,12 +20772,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -417 +327 this -1865306192 +682376643 1 this.elementData -1234890038 +854507466 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20828,14 +20800,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -419 +329 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -420 +330 initialCapacity 2 1 @@ -20845,12 +20817,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -420 +330 this -1514904058 +1316061703 1 this.elementData -426383974 +490150701 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20876,12 +20848,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -419 +329 this -1514904058 +1316061703 1 this.elementData -426383974 +490150701 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20904,14 +20876,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -421 +331 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -422 +332 initialCapacity 3 1 @@ -20921,12 +20893,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -422 +332 this -82520979 +1413246829 1 this.elementData -1803141738 +334203599 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20952,12 +20924,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -421 +331 this -82520979 +1413246829 1 this.elementData -1803141738 +334203599 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -20980,14 +20952,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -423 +333 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -424 +334 initialCapacity 4 1 @@ -20997,12 +20969,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -424 +334 this -113964102 +1372082959 1 this.elementData -1986732837 +1946403944 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21028,12 +21000,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -423 +333 this -113964102 +1372082959 1 this.elementData -1986732837 +1946403944 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21056,14 +21028,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -425 +335 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -426 +336 initialCapacity 0 1 @@ -21073,12 +21045,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -426 +336 this -1943047903 +1131645570 1 this.elementData -22285792 +209833425 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21104,12 +21076,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -425 +335 this -1943047903 +1131645570 1 this.elementData -22285792 +209833425 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21132,14 +21104,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -427 +337 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -428 +338 initialCapacity 1 1 @@ -21149,12 +21121,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -428 +338 this -895151566 +532854629 1 this.elementData -1689422527 +1971851377 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21180,12 +21152,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -427 +337 this -895151566 +532854629 1 this.elementData -1689422527 +1971851377 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21208,14 +21180,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -429 +339 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -430 +340 initialCapacity 2 1 @@ -21225,12 +21197,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -430 +340 this -95630655 +712025048 1 this.elementData -946650629 +681384962 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21256,12 +21228,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -429 +339 this -95630655 +712025048 1 this.elementData -946650629 +681384962 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21284,14 +21256,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -431 +341 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -432 +342 initialCapacity 3 1 @@ -21301,12 +21273,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -432 +342 this -1798264627 +586084331 1 this.elementData -1896221758 +399534175 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21332,12 +21304,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -431 +341 this -1798264627 +586084331 1 this.elementData -1896221758 +399534175 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21360,14 +21332,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -433 +343 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -434 +344 initialCapacity 4 1 @@ -21377,12 +21349,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -434 +344 this -1141765226 +949057310 1 this.elementData -1881767437 +2024542466 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21408,12 +21380,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -433 +343 this -1141765226 +949057310 1 this.elementData -1881767437 +2024542466 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21436,14 +21408,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -435 +345 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -436 +346 initialCapacity 0 1 @@ -21453,12 +21425,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -436 +346 this -873644290 +770189387 1 this.elementData -993887491 +963522361 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21484,12 +21456,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -435 +345 this -873644290 +770189387 1 this.elementData -993887491 +963522361 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21512,14 +21484,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -437 +347 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -438 +348 initialCapacity 1 1 @@ -21529,12 +21501,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -438 +348 this -1139254871 +175408781 1 this.elementData -492420245 +315138752 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21560,12 +21532,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -437 +347 this -1139254871 +175408781 1 this.elementData -492420245 +315138752 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21588,14 +21560,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -439 +349 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -440 +350 initialCapacity 2 1 @@ -21605,12 +21577,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -440 +350 this -1852565824 +2114874018 1 this.elementData -1855889762 +911312317 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21636,12 +21608,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -439 +349 this -1852565824 +2114874018 1 this.elementData -1855889762 +911312317 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21664,14 +21636,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -441 +351 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -442 +352 initialCapacity 3 1 @@ -21681,12 +21653,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -442 +352 this -1886740906 +415186196 1 this.elementData -710875540 +1337344609 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21712,12 +21684,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -441 +351 this -1886740906 +415186196 1 this.elementData -710875540 +1337344609 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21740,14 +21712,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -443 +353 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -444 +354 initialCapacity 4 1 @@ -21757,12 +21729,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -444 +354 this -1233672519 +1113619023 1 this.elementData -379415048 +2015781843 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21788,12 +21760,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -443 +353 this -1233672519 +1113619023 1 this.elementData -379415048 +2015781843 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21816,14 +21788,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -445 +355 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -446 +356 initialCapacity 0 1 @@ -21833,12 +21805,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -446 +356 this -949763793 +428910174 1 this.elementData -434120800 +1682463303 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21864,12 +21836,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -445 +355 this -949763793 +428910174 1 this.elementData -434120800 +1682463303 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21892,14 +21864,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -447 +357 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -448 +358 initialCapacity 1 1 @@ -21909,12 +21881,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -448 +358 this -1266336741 +633075331 1 this.elementData -1758664217 +1858609436 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21940,12 +21912,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -447 +357 this -1266336741 +633075331 1 this.elementData -1758664217 +1858609436 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -21968,14 +21940,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -449 +359 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -450 +360 initialCapacity 2 1 @@ -21985,12 +21957,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -450 +360 this -2052061458 +1920387277 1 this.elementData -409553786 +1414147750 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22016,12 +21988,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -449 +359 this -2052061458 +1920387277 1 this.elementData -409553786 +1414147750 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22044,14 +22016,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -451 +361 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -452 +362 initialCapacity 3 1 @@ -22061,12 +22033,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -452 +362 this -685392667 +775931202 1 this.elementData -292271761 +22069592 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22092,12 +22064,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -451 +361 this -685392667 +775931202 1 this.elementData -292271761 +22069592 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22120,14 +22092,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -453 +363 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -454 +364 initialCapacity 4 1 @@ -22137,12 +22109,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -454 +364 this -916386438 +1160003871 1 this.elementData -2101630829 +1075738627 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22168,12 +22140,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -453 +363 this -916386438 +1160003871 1 this.elementData -2101630829 +1075738627 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22196,14 +22168,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -455 +365 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -456 +366 initialCapacity 0 1 @@ -22213,12 +22185,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -456 +366 this -298317147 +282828951 1 this.elementData -1589457531 +394721749 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22244,12 +22216,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -455 +365 this -298317147 +282828951 1 this.elementData -1589457531 +394721749 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22272,14 +22244,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -457 +367 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -458 +368 initialCapacity 1 1 @@ -22289,12 +22261,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -458 +368 this -1463638484 +1884122755 1 this.elementData -2094307850 +1134612201 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22320,12 +22292,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -457 +367 this -1463638484 +1884122755 1 this.elementData -2094307850 +1134612201 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22348,14 +22320,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -459 +369 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -460 +370 initialCapacity 2 1 @@ -22365,12 +22337,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -460 +370 this -1775060620 +246550802 1 this.elementData -601016216 +786041152 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22396,12 +22368,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -459 +369 this -1775060620 +246550802 1 this.elementData -601016216 +786041152 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22424,14 +22396,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -461 +371 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -462 +372 initialCapacity 3 1 @@ -22441,12 +22413,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -462 +372 this -1663950471 +897074030 1 this.elementData -1483514863 +1885996206 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22472,12 +22444,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -461 +371 this -1663950471 +897074030 1 this.elementData -1483514863 +1885996206 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22500,14 +22472,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -463 +373 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -464 +374 initialCapacity 4 1 @@ -22517,12 +22489,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -464 +374 this -1149160771 +1859039536 1 this.elementData -1624640726 +278934944 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22548,12 +22520,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -463 +373 this -1149160771 +1859039536 1 this.elementData -1624640726 +278934944 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22576,14 +22548,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -465 +375 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -466 +376 initialCapacity 0 1 @@ -22593,12 +22565,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -466 +376 this -82110277 +1739876329 1 this.elementData -1342924165 +1205555397 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22624,12 +22596,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -465 +375 this -82110277 +1739876329 1 this.elementData -1342924165 +1205555397 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22652,14 +22624,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -467 +377 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -468 +378 initialCapacity 1 1 @@ -22669,12 +22641,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -468 +378 this -473311185 +1543974463 1 this.elementData -661657807 +1293618474 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22700,12 +22672,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -467 +377 this -473311185 +1543974463 1 this.elementData -661657807 +1293618474 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22728,14 +22700,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -469 +379 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -470 +380 initialCapacity 2 1 @@ -22745,12 +22717,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -470 +380 this -812438083 +156545103 1 this.elementData -945833355 +345281752 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22776,12 +22748,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -469 +379 this -812438083 +156545103 1 this.elementData -945833355 +345281752 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22804,14 +22776,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -471 +381 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -472 +382 initialCapacity 3 1 @@ -22821,12 +22793,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -472 +382 this -947242391 +1896294051 1 this.elementData -1006590326 +1684015092 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22852,12 +22824,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -471 +381 this -947242391 +1896294051 1 this.elementData -1006590326 +1684015092 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22880,14 +22852,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -473 +383 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -474 +384 initialCapacity 4 1 @@ -22897,12 +22869,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -474 +384 this -2034921663 +1209669119 1 this.elementData -103827919 +2014866032 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22928,12 +22900,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -473 +383 this -2034921663 +1209669119 1 this.elementData -103827919 +2014866032 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -22956,14 +22928,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -475 +385 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -476 +386 initialCapacity 0 1 @@ -22973,12 +22945,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -476 +386 this -1279113269 +811760110 1 this.elementData -1745405613 +1415157681 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23004,12 +22976,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -475 +385 this -1279113269 +811760110 1 this.elementData -1745405613 +1415157681 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23032,14 +23004,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -477 +387 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -478 +388 initialCapacity 1 1 @@ -23049,12 +23021,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -478 +388 this -405519671 +1291113768 1 this.elementData -1603498566 +2005167404 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23080,12 +23052,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -477 +387 this -405519671 +1291113768 1 this.elementData -1603498566 +2005167404 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23108,14 +23080,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -479 +389 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -480 +390 initialCapacity 2 1 @@ -23125,12 +23097,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -480 +390 this -1228112559 +1418385211 1 this.elementData -1422447796 +1282811396 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23156,12 +23128,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -479 +389 this -1228112559 +1418385211 1 this.elementData -1422447796 +1282811396 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23184,14 +23156,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -481 +391 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -482 +392 initialCapacity 3 1 @@ -23201,12 +23173,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -482 +392 this -1292148968 +641853239 1 this.elementData -1793066712 +1920467934 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23232,12 +23204,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -481 +391 this -1292148968 +641853239 1 this.elementData -1793066712 +1920467934 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23260,14 +23232,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -483 +393 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -484 +394 initialCapacity 4 1 @@ -23277,12 +23249,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -484 +394 this -434210233 +1883840933 1 this.elementData -621953525 +233996206 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23308,12 +23280,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -483 +393 this -434210233 +1883840933 1 this.elementData -621953525 +233996206 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23336,14 +23308,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -485 +395 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -486 +396 initialCapacity 0 1 @@ -23353,12 +23325,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -486 +396 this -1369984726 +614685048 1 this.elementData -13626748 +385337537 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23384,12 +23356,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -485 +395 this -1369984726 +614685048 1 this.elementData -13626748 +385337537 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23412,14 +23384,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -487 +397 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -488 +398 initialCapacity 1 1 @@ -23429,12 +23401,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -488 +398 this -1391487054 +789219251 1 this.elementData -626000748 +832279283 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23460,12 +23432,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -487 +397 this -1391487054 +789219251 1 this.elementData -626000748 +832279283 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23488,14 +23460,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -489 +399 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -490 +400 initialCapacity 2 1 @@ -23505,12 +23477,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -490 +400 this -672184983 +265119009 1 this.elementData -1649026061 +668210649 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23536,12 +23508,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -489 +399 this -672184983 +265119009 1 this.elementData -1649026061 +668210649 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23564,14 +23536,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -491 +401 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -492 +402 initialCapacity 3 1 @@ -23581,12 +23553,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -492 +402 this -1904542692 +1545087375 1 this.elementData -1405265909 +838411509 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23612,12 +23584,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -491 +401 this -1904542692 +1545087375 1 this.elementData -1405265909 +838411509 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23640,14 +23612,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -493 +403 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -494 +404 initialCapacity 4 1 @@ -23657,12 +23629,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -494 +404 this -278982857 +1434041222 1 this.elementData -908076198 +1375995437 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23688,12 +23660,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -493 +403 this -278982857 +1434041222 1 this.elementData -908076198 +1375995437 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23716,14 +23688,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -495 +405 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -496 +406 initialCapacity 0 1 @@ -23733,12 +23705,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -496 +406 this -2017864204 +1338841523 1 this.elementData -1181923204 +929776179 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23764,12 +23736,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -495 +405 this -2017864204 +1338841523 1 this.elementData -1181923204 +929776179 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23792,14 +23764,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -497 +407 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -498 +408 initialCapacity 1 1 @@ -23809,12 +23781,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -498 +408 this -359554878 +802581203 1 this.elementData -19851888 +1561408618 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23840,12 +23812,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -497 +407 this -359554878 +802581203 1 this.elementData -19851888 +1561408618 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23868,14 +23840,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -499 +409 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -500 +410 initialCapacity 2 1 @@ -23885,12 +23857,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -500 +410 this -790716331 +2050404090 1 this.elementData -940567481 +388043093 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23916,12 +23888,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -499 +409 this -790716331 +2050404090 1 this.elementData -940567481 +388043093 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23944,14 +23916,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -501 +411 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -502 +412 initialCapacity 3 1 @@ -23961,12 +23933,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -502 +412 this -490527600 +188576144 1 this.elementData -107652367 +1608230649 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -23992,12 +23964,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -501 +411 this -490527600 +188576144 1 this.elementData -107652367 +1608230649 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24020,14 +23992,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -503 +413 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -504 +414 initialCapacity 4 1 @@ -24037,12 +24009,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -504 +414 this -1132101395 +282432134 1 this.elementData -523033345 +266437232 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24068,12 +24040,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -503 +413 this -1132101395 +282432134 1 this.elementData -523033345 +266437232 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24096,14 +24068,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -505 +415 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -506 +416 initialCapacity 0 1 @@ -24113,12 +24085,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -506 +416 this -970862244 +1873859565 1 this.elementData -700985002 +1843289228 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24144,12 +24116,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -505 +415 this -970862244 +1873859565 1 this.elementData -700985002 +1843289228 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24172,14 +24144,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -507 +417 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -508 +418 initialCapacity 1 1 @@ -24189,12 +24161,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -508 +418 this -359641172 +1361289747 1 this.elementData -1470195146 +1381128261 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24220,12 +24192,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -507 +417 this -359641172 +1361289747 1 this.elementData -1470195146 +1381128261 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24248,14 +24220,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -509 +419 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -510 +420 initialCapacity 2 1 @@ -24265,12 +24237,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -510 +420 this -622976440 +999609945 1 this.elementData -1382247955 +615634843 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24296,12 +24268,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -509 +419 this -622976440 +999609945 1 this.elementData -1382247955 +615634843 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24324,14 +24296,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -511 +421 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -512 +422 initialCapacity 3 1 @@ -24341,12 +24313,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -512 +422 this -2110770086 +1758386724 1 this.elementData -1430470609 +673068808 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24372,12 +24344,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -511 +421 this -2110770086 +1758386724 1 this.elementData -1430470609 +673068808 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24400,14 +24372,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -513 +423 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -514 +424 initialCapacity 4 1 @@ -24417,12 +24389,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -514 +424 this -840097298 +900008524 1 this.elementData -1957792108 +520232556 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24448,12 +24420,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -513 +423 this -840097298 +900008524 1 this.elementData -1957792108 +520232556 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24476,14 +24448,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -515 +425 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -516 +426 initialCapacity 0 1 @@ -24493,12 +24465,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -516 +426 this -867519822 +17037394 1 this.elementData -1139168871 +1484531981 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24524,12 +24496,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -515 +425 this -867519822 +17037394 1 this.elementData -1139168871 +1484531981 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24552,14 +24524,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -517 +427 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -518 +428 initialCapacity 1 1 @@ -24569,12 +24541,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -518 +428 this -1194501892 +1159114532 1 this.elementData -1316166688 +1256728724 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24600,12 +24572,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -517 +427 this -1194501892 +1159114532 1 this.elementData -1316166688 +1256728724 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24628,14 +24600,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -519 +429 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -520 +430 initialCapacity 2 1 @@ -24645,12 +24617,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -520 +430 this -1731961116 +1412925683 1 this.elementData -2077125174 +1832580921 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24676,12 +24648,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -519 +429 this -1731961116 +1412925683 1 this.elementData -2077125174 +1832580921 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24704,14 +24676,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -521 +431 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -522 +432 initialCapacity 3 1 @@ -24721,12 +24693,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -522 +432 this -748633786 +497359413 1 this.elementData -181353529 +369241501 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24752,12 +24724,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -521 +431 this -748633786 +497359413 1 this.elementData -181353529 +369241501 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24780,14 +24752,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -523 +433 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -524 +434 initialCapacity 4 1 @@ -24797,12 +24769,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -524 +434 this -729466810 +2124046270 1 this.elementData -164534947 +1151593579 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24828,12 +24800,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -523 +433 this -729466810 +2124046270 1 this.elementData -164534947 +1151593579 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24856,14 +24828,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -525 +435 initialCapacity 0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -526 +436 initialCapacity 0 1 @@ -24873,12 +24845,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -526 +436 this -1527400540 +1902260856 1 this.elementData -1359542 +1988859660 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24904,12 +24876,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -525 +435 this -1527400540 +1902260856 1 this.elementData -1359542 +1988859660 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24932,14 +24904,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -527 +437 initialCapacity 1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -528 +438 initialCapacity 1 1 @@ -24949,12 +24921,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -528 +438 this -1374985924 +1514160588 1 this.elementData -316899301 +22756955 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -24980,12 +24952,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -527 +437 this -1374985924 +1514160588 1 this.elementData -316899301 +22756955 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25008,14 +24980,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -529 +439 initialCapacity 2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -530 +440 initialCapacity 2 1 @@ -25025,12 +24997,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -530 +440 this -367107347 +1640639994 1 this.elementData -252663198 +1263793464 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25056,12 +25028,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -529 +439 this -367107347 +1640639994 1 this.elementData -252663198 +1263793464 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25084,14 +25056,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -531 +441 initialCapacity 3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -532 +442 initialCapacity 3 1 @@ -25101,12 +25073,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -532 +442 this -935198667 +323326911 1 this.elementData -451183876 +1270144618 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25132,12 +25104,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -531 +441 this -935198667 +323326911 1 this.elementData -451183876 +1270144618 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25160,14 +25132,14 @@ initialCapacity javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -533 +443 initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -534 +444 initialCapacity 4 1 @@ -25177,12 +25149,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -534 +444 this -282646375 +2074185499 1 this.elementData -203797461 +797925218 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25208,12 +25180,12 @@ capacityIncrement javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -533 +443 this -282646375 +2074185499 1 this.elementData -203797461 +797925218 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25234,106 +25206,31 @@ initialCapacity 4 1 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -535 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -535 -this -2134993709 -1 -this.elementData -535009440 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -0 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -536 -initialCapacity -0 -1 -capacityIncrement -1 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -536 -this -389628091 -1 -this.elementData -801685734 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[] -1 -this.elementData[..].getClass().getName() -[] -1 -this.elementCount -0 -1 -this.capacityIncrement -1 -1 +445 initialCapacity 0 1 -capacityIncrement -1 -1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -537 +446 initialCapacity 0 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -537 +446 this -619730060 +275310919 1 this.elementData -507430470 +2109874862 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25348,33 +25245,23 @@ this.elementCount 0 1 this.capacityIncrement -2 -1 -initialCapacity 0 1 -capacityIncrement -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -538 initialCapacity 0 1 capacityIncrement -3 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -538 +445 this -726347053 +275310919 1 this.elementData -1417870223 +2109874862 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25389,59 +25276,53 @@ this.elementCount 0 1 this.capacityIncrement -3 +0 1 initialCapacity 0 1 -capacityIncrement -3 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +447 +initialCapacity +1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -539 +448 initialCapacity -0 +1 1 capacityIncrement -4 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -539 +448 this -1666290849 +183284570 1 this.elementData -16058616 +1607305514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null] 1 this.elementData[..].getClass().getName() -[] +[null] 1 this.elementCount 0 1 this.capacityIncrement -4 -1 -initialCapacity 0 1 -capacityIncrement -4 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -540 initialCapacity 1 1 @@ -25449,14 +25330,14 @@ capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -540 +447 this -1461703237 +183284570 1 this.elementData -1780866226 +1607305514 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -25476,179 +25357,171 @@ this.capacityIncrement initialCapacity 1 1 -capacityIncrement -0 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +449 +initialCapacity +2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -541 +450 initialCapacity -1 +2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -541 +450 this -1539072143 +146305349 1 this.elementData -744979286 +1686369710 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null] 1 this.elementData[..].getClass().getName() -[null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement +0 1 -1 -initialCapacity -1 -1 -capacityIncrement -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -542 initialCapacity -1 +2 1 capacityIncrement -2 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -542 +449 this -1037197792 +146305349 1 this.elementData -1058527445 +1686369710 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null] 1 this.elementData[..].getClass().getName() -[null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -2 +0 1 initialCapacity -1 -1 -capacityIncrement 2 1 -javautil.Vector13.Vector13(int, int):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -543 +451 initialCapacity +3 1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +452 +initialCapacity +3 1 capacityIncrement -3 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -543 +452 this -916236367 +194706439 1 this.elementData -1726871179 +942518407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null null] 1 this.elementData[..].getClass().getName() -[null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -3 +0 1 initialCapacity -1 -1 -capacityIncrement 3 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -544 -initialCapacity -1 -1 capacityIncrement -4 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -544 +451 this -282416248 +194706439 1 this.elementData -631020266 +942518407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null null] 1 this.elementData[..].getClass().getName() -[null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -4 +0 1 initialCapacity +3 1 -1 -capacityIncrement + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +453 +initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -545 +454 initialCapacity -2 +4 1 capacityIncrement 0 @@ -25656,21 +25529,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -545 +454 this -1283361776 +1943325854 1 this.elementData -135618764 +134310351 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null null null null] 1 this.elementCount 0 @@ -25679,203 +25552,181 @@ this.capacityIncrement 0 1 initialCapacity -2 +4 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -546 -initialCapacity -2 -1 -capacityIncrement -1 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -546 +453 this -864417081 +1943325854 1 this.elementData -531008412 +134310351 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity -2 -1 -capacityIncrement +4 1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +455 +initialCapacity +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -547 +456 initialCapacity -2 +0 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -547 +456 this -1863827199 +1411892748 1 this.elementData -2147258451 +22805895 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[] 1 this.elementData[..].getClass().getName() -[null null] +[] 1 this.elementCount 0 1 this.capacityIncrement -2 -1 -initialCapacity -2 -1 -capacityIncrement -2 +0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -548 initialCapacity -2 +0 1 capacityIncrement -3 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -548 +455 this -510098122 +1411892748 1 this.elementData -464417630 +22805895 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[] 1 this.elementData[..].getClass().getName() -[null null] +[] 1 this.elementCount 0 1 this.capacityIncrement -3 +0 1 initialCapacity -2 +0 +1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +457 +initialCapacity 1 -capacityIncrement -3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -549 +458 initialCapacity -2 +1 1 capacityIncrement -4 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -549 +458 this -1511534212 +1413378318 1 this.elementData -1771440721 +1475491159 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -4 +0 1 initialCapacity -2 -1 -capacityIncrement -4 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -550 -initialCapacity -3 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -550 +457 this -2038399486 +1413378318 1 this.elementData -573540611 +1475491159 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null] 1 this.elementData[..].getClass().getName() -[null null null] +[null] 1 this.elementCount 0 @@ -25884,112 +25735,110 @@ this.capacityIncrement 0 1 initialCapacity -3 1 -capacityIncrement -0 +1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +459 +initialCapacity +2 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -551 +460 initialCapacity -3 +2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -551 +460 this -1590441341 +1024429571 1 this.elementData -818663978 +1667689440 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement +0 1 -1 -initialCapacity -3 -1 -capacityIncrement -1 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -552 initialCapacity -3 +2 1 capacityIncrement -2 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -552 +459 this -357751917 +1024429571 1 this.elementData -1929741066 +1667689440 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement +0 +1 +initialCapacity 2 1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +461 initialCapacity 3 1 -capacityIncrement -2 -1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -553 +462 initialCapacity 3 1 capacityIncrement -3 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -553 +462 this -1860059268 +1157058691 1 this.elementData -1096667897 +40472007 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26004,33 +25853,23 @@ this.elementCount 0 1 this.capacityIncrement -3 -1 -initialCapacity -3 -1 -capacityIncrement -3 +0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -554 initialCapacity 3 1 capacityIncrement -4 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -554 +461 this -1992686325 +1157058691 1 this.elementData -1071589310 +40472007 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26045,18 +25884,22 @@ this.elementCount 0 1 this.capacityIncrement -4 +0 1 initialCapacity 3 1 -capacityIncrement + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +463 +initialCapacity 4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -555 +464 initialCapacity 4 1 @@ -26066,12 +25909,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -555 +464 this -1403669428 +1138193439 1 this.elementData -1364214101 +398110318 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26095,24 +25938,14 @@ capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -556 -initialCapacity -4 -1 -capacityIncrement -1 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -556 +463 this -1810980135 +1138193439 1 this.elementData -857400014 +398110318 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26127,165 +25960,153 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 4 1 -capacityIncrement -1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +465 +initialCapacity +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -557 +466 initialCapacity -4 +0 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -557 +466 this -706763928 +1765250898 1 this.elementData -849286339 +670971910 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[] 1 this.elementData[..].getClass().getName() -[null null null null] +[] 1 this.elementCount 0 1 this.capacityIncrement -2 -1 -initialCapacity -4 -1 -capacityIncrement -2 +0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -558 initialCapacity -4 +0 1 capacityIncrement -3 +0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -558 +465 this -1779181611 +1765250898 1 this.elementData -1143035249 +670971910 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[] 1 this.elementData[..].getClass().getName() -[null null null null] +[] 1 this.elementCount 0 1 this.capacityIncrement -3 +0 1 initialCapacity -4 +0 +1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +467 +initialCapacity 1 -capacityIncrement -3 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -559 +468 initialCapacity -4 +1 1 capacityIncrement -4 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -559 +468 this -1752207528 +1601292138 1 this.elementData -908671785 +494586676 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -4 +0 1 initialCapacity -4 -1 -capacityIncrement -4 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -560 -initialCapacity -0 1 capacityIncrement 0 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -560 +467 this -652660901 +1601292138 1 this.elementData -2072777878 +494586676 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null] 1 this.elementData[..].getClass().getName() -[] +[null] 1 this.elementCount 0 @@ -26294,29 +26115,43 @@ this.capacityIncrement 0 1 initialCapacity -0 +1 +1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +469 +initialCapacity +2 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +470 +initialCapacity +2 1 capacityIncrement 0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -561 +470 this -652660901 +1218593486 1 this.elementData -2072777878 +508198356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null] 1 this.elementData[..].getClass().getName() -[] +[null null] 1 this.elementCount 0 @@ -26324,33 +26159,30 @@ this.elementCount this.capacityIncrement 0 1 -anArray -698073912 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +2 1 -anArray[..] -[] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -561 +469 this -652660901 +1218593486 1 this.elementData -2072777878 +508198356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null] 1 this.elementData[..].getClass().getName() -[] +[null null] 1 this.elementCount 0 @@ -26358,33 +26190,44 @@ this.elementCount this.capacityIncrement 0 1 -anArray -698073912 +initialCapacity +2 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +471 +initialCapacity +3 1 -anArray[..] -[] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +472 +initialCapacity +3 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -562 +472 this -652660901 +1330754528 1 this.elementData -2072777878 +79290965 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null] 1 this.elementCount 0 @@ -26392,33 +26235,30 @@ this.elementCount this.capacityIncrement 0 1 -anArray -825075423 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -562 +471 this -652660901 +1330754528 1 this.elementData -2072777878 +79290965 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null] 1 this.elementCount 0 @@ -26426,33 +26266,44 @@ this.elementCount this.capacityIncrement 0 1 -anArray -825075423 +initialCapacity +3 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +473 +initialCapacity +4 1 -anArray[..] -[] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +474 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -563 +474 this -652660901 +1582785598 1 this.elementData -2072777878 +322836221 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 @@ -26460,33 +26311,30 @@ this.elementCount this.capacityIncrement 0 1 -anArray -740725682 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[413835715] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -563 +473 this -652660901 +1582785598 1 this.elementData -2072777878 +322836221 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 @@ -26494,19 +26342,20 @@ this.elementCount this.capacityIncrement 0 1 -anArray -740725682 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[413835715] + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +475 +initialCapacity +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -564 +476 initialCapacity 0 1 @@ -26516,12 +26365,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -564 +476 this -1784813019 +1370651081 1 this.elementData -1300829037 +450003680 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26545,14 +26394,14 @@ capacityIncrement 0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -565 +475 this -1784813019 +1370651081 1 this.elementData -1300829037 +450003680 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26569,49 +26418,35 @@ this.elementCount this.capacityIncrement 0 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +initialCapacity +0 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -566 -this -1784813019 -1 -this.elementData -1300829037 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" +477 +initialCapacity 1 -this.elementData[..] -[] 1 -this.elementData[..].getClass().getName() -[] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +478 +initialCapacity 1 -this.elementCount -0 1 -this.capacityIncrement +capacityIncrement 0 1 -minCapacity -1 -1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -566 +478 this -1784813019 +2134991632 1 this.elementData -1650098399 +480971771 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26628,248 +26463,279 @@ this.elementCount this.capacityIncrement 0 1 -minCapacity +initialCapacity 1 1 +capacityIncrement +0 +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -565 +477 this -1784813019 +2134991632 1 this.elementData -1650098399 +480971771 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -567 +479 +initialCapacity +2 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +480 +initialCapacity +2 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +480 this -1784813019 +1586845078 1 this.elementData -1650098399 +1356728614 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -anArray -599974635 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +2 1 -anArray[..] -[null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -567 +479 this -1784813019 +1586845078 1 this.elementData -1650098399 +1356728614 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -anArray -599974635 +initialCapacity +2 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +481 +initialCapacity +3 1 -anArray[..] -[245301360] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +482 +initialCapacity +3 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -568 +482 this -1784813019 +611563982 1 this.elementData -1650098399 +1615039080 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -anArray -1337967780 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -568 +481 this -1784813019 +611563982 1 this.elementData -1650098399 +1615039080 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -anArray -1337967780 +initialCapacity +3 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +483 +initialCapacity +4 1 -anArray[..] -[245301360 null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +484 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -569 +484 this -1784813019 +336484883 1 this.elementData -1650098399 +876213901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -anArray -923210723 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[413835715 null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -569 +483 this -1784813019 +336484883 1 this.elementData -1650098399 +876213901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -anArray -923210723 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[245301360 null] + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +485 +initialCapacity +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -570 +486 initialCapacity 0 1 @@ -26879,12 +26745,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -570 +486 this -833271886 +230528013 1 this.elementData -1059725915 +1909546776 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26908,14 +26774,14 @@ capacityIncrement 0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -571 +485 this -833271886 +230528013 1 this.elementData -1059725915 +1909546776 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26932,49 +26798,35 @@ this.elementCount this.capacityIncrement 0 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +initialCapacity +0 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -572 -this -833271886 -1 -this.elementData -1059725915 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" +487 +initialCapacity 1 -this.elementData[..] -[] 1 -this.elementData[..].getClass().getName() -[] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +488 +initialCapacity 1 -this.elementCount -0 1 -this.capacityIncrement +capacityIncrement 0 1 -minCapacity -1 -1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -572 +488 this -833271886 +392781299 1 this.elementData -1731568834 +1822383117 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -26991,368 +26843,357 @@ this.elementCount this.capacityIncrement 0 1 -minCapacity +initialCapacity 1 1 +capacityIncrement +0 +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -571 +487 this -833271886 +392781299 1 this.elementData -1731568834 +1822383117 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -573 -this -833271886 -1 -this.elementData -1731568834 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object"] -1 -this.elementCount +489 +initialCapacity +2 1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +490 +initialCapacity +2 1 -this.capacityIncrement +capacityIncrement 0 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -574 +490 this -833271886 +233021551 1 this.elementData -1731568834 +1991313236 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -minCapacity +initialCapacity 2 1 +capacityIncrement +0 +1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -574 +489 this -833271886 +233021551 1 this.elementData -1926492541 +1991313236 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -minCapacity +initialCapacity 2 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -573 -this -833271886 -1 -this.elementData -1926492541 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +491 +initialCapacity +3 1 -this.elementCount -2 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +492 +initialCapacity +3 1 -this.capacityIncrement +capacityIncrement 0 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -575 +492 this -833271886 +736778932 1 this.elementData -1926492541 +1032000752 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -anArray -949190768 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -575 +491 this -833271886 +736778932 1 this.elementData -1926492541 +1032000752 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -anArray -949190768 +initialCapacity +3 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +493 +initialCapacity +4 1 -anArray[..] -[245301360 245301360] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +494 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -576 +494 this -833271886 +770911223 1 this.elementData -1926492541 +1392906938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -anArray -1540707860 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[null null null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -576 +493 this -833271886 +770911223 1 this.elementData -1926492541 +1392906938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -anArray -1540707860 +initialCapacity +4 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +495 +initialCapacity +0 1 -anArray[..] -[245301360 245301360 null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +496 +initialCapacity +0 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -577 +496 this -833271886 +708890004 1 this.elementData -1926492541 +255944888 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -anArray -319187494 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +0 1 -anArray[..] -[413835715 null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -577 +495 this -833271886 +708890004 1 this.elementData -1926492541 +255944888 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -anArray -319187494 +initialCapacity +0 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +497 +initialCapacity 1 -anArray[..] -[245301360 245301360 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -578 +498 initialCapacity -0 +1 1 capacityIncrement 0 @@ -27360,21 +27201,21 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -578 +498 this -170061452 +1004095028 1 this.elementData -2069573254 +1487470647 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null] 1 this.elementData[..].getClass().getName() -[] +[null] 1 this.elementCount 0 @@ -27383,29 +27224,29 @@ this.capacityIncrement 0 1 initialCapacity -0 +1 1 capacityIncrement 0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -579 +497 this -170061452 +1004095028 1 this.elementData -2069573254 +1487470647 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null] 1 this.elementData[..].getClass().getName() -[] +[null] 1 this.elementCount 0 @@ -27413,30 +27254,44 @@ this.elementCount this.capacityIncrement 0 1 -obj -245301360 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -580 +499 +initialCapacity +2 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +500 +initialCapacity +2 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +500 this -170061452 +1948863195 1 this.elementData -2069573254 +1890187342 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null] 1 this.elementData[..].getClass().getName() -[] +[null null] 1 this.elementCount 0 @@ -27444,27 +27299,30 @@ this.elementCount this.capacityIncrement 0 1 -minCapacity +initialCapacity +2 1 +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -580 +499 this -170061452 +1948863195 1 this.elementData -525049519 +1890187342 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[null null] 1 this.elementData[..].getClass().getName() -[null] +[null null] 1 this.elementCount 0 @@ -27472,484 +27330,552 @@ this.elementCount this.capacityIncrement 0 1 -minCapacity +initialCapacity +2 1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +501 +initialCapacity +3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -579 +502 +initialCapacity +3 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +502 this -170061452 +19986569 1 this.elementData -525049519 +294184992 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -581 +501 this -170061452 +19986569 1 this.elementData -525049519 +294184992 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +503 +initialCapacity +4 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -582 +504 +initialCapacity +4 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +504 this -170061452 +793315160 1 this.elementData -525049519 +270397815 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -minCapacity -2 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -582 +503 this -170061452 +793315160 1 this.elementData -496960310 +270397815 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -minCapacity -2 +initialCapacity +4 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -581 +505 +initialCapacity +0 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +506 +initialCapacity +0 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +506 this -170061452 +376416077 1 this.elementData -496960310 +1089504328 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +0 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -583 +505 this -170061452 +376416077 1 this.elementData -496960310 +1089504328 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -obj -null +initialCapacity +0 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -584 -this -170061452 -1 -this.elementData -496960310 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" +507 +initialCapacity 1 -this.elementData[..] -[245301360 245301360] 1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +508 +initialCapacity 1 -this.elementCount -2 1 -this.capacityIncrement +capacityIncrement 0 1 -minCapacity -3 -1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -584 +508 this -170061452 +660879561 1 this.elementData -848026987 +1485697819 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -minCapacity -3 +initialCapacity +1 +1 +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -583 +507 this -170061452 +660879561 1 this.elementData -848026987 +1485697819 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -obj -null +initialCapacity 1 -obj.getClass().getName() -nonsensical +1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +509 +initialCapacity 2 +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -585 +510 +initialCapacity +2 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +510 this -170061452 +867398280 1 this.elementData -848026987 +2007331442 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -anArray -2088089017 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +2 1 -anArray[..] -[null null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -585 +509 this -170061452 +867398280 1 this.elementData -848026987 +2007331442 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -anArray -2088089017 +initialCapacity +2 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +511 +initialCapacity +3 1 -anArray[..] -[245301360 245301360 null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +512 +initialCapacity +3 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -586 +512 this -170061452 +1904324159 1 this.elementData -848026987 +1176735295 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -anArray -334349445 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[null null null null null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -586 +511 this -170061452 +1904324159 1 this.elementData -848026987 +1176735295 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -anArray -334349445 +initialCapacity +3 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +513 +initialCapacity +4 1 -anArray[..] -[245301360 245301360 null null null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +514 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -587 +514 this -170061452 +1848415041 1 this.elementData -848026987 +843467284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -anArray -1593901563 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[413835715 null null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -587 +513 this -170061452 +1848415041 1 this.elementData -848026987 +843467284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -anArray -1593901563 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[245301360 245301360 null null] + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +515 +initialCapacity +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -588 +516 initialCapacity 0 1 @@ -27959,12 +27885,12 @@ capacityIncrement javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -588 +516 this -992556663 +1313532469 1 this.elementData -246865145 +339924917 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -27988,14 +27914,14 @@ capacityIncrement 0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -589 +515 this -992556663 +1313532469 1 this.elementData -246865145 +339924917 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -28012,30 +27938,44 @@ this.elementCount this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +0 +1 + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +517 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -590 +518 +initialCapacity +1 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +518 this -992556663 +520022247 1 this.elementData -246865145 +518522822 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null] 1 this.elementData[..].getClass().getName() -[] +[null] 1 this.elementCount 0 @@ -28043,18 +27983,21 @@ this.elementCount this.capacityIncrement 0 1 -minCapacity +initialCapacity 1 1 +capacityIncrement +0 +1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -590 +517 this -992556663 +520022247 1 this.elementData -124086011 +518522822 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -28071,561 +28014,677 @@ this.elementCount this.capacityIncrement 0 1 -minCapacity +initialCapacity 1 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -589 +519 +initialCapacity +2 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +520 +initialCapacity +2 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +520 this -992556663 +124407148 1 this.elementData -124086011 +85445963 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +2 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -591 +519 this -992556663 +124407148 1 this.elementData -124086011 +85445963 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +2 1 -obj.getClass().getName() -"java.lang.Object" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +521 +initialCapacity +3 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -592 +522 +initialCapacity +3 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +522 this -992556663 +1825027294 1 this.elementData -124086011 +852445367 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -minCapacity -2 +initialCapacity +3 +1 +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -592 +521 this -992556663 +1825027294 1 this.elementData -306965640 +852445367 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -minCapacity -2 +initialCapacity +3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -591 +523 +initialCapacity +4 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +524 +initialCapacity +4 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +524 this -992556663 +1738236591 1 this.elementData -306965640 +1558021762 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -593 +523 this -992556663 +1738236591 1 this.elementData -306965640 +1558021762 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -obj -null +initialCapacity +4 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -594 +525 +initialCapacity +0 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +526 +initialCapacity +0 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +526 this -992556663 +225290371 1 this.elementData -306965640 +1169146729 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -minCapacity -3 +initialCapacity +0 +1 +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -594 +525 this -992556663 +225290371 1 this.elementData -915791386 +1169146729 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -minCapacity -3 +initialCapacity +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -593 +527 +initialCapacity +1 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +528 +initialCapacity +1 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +528 this -992556663 +2040352617 1 this.elementData -915791386 +1237598030 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -obj -null +initialCapacity +1 +1 +capacityIncrement +0 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -595 +527 this -992556663 +2040352617 1 this.elementData -915791386 +1237598030 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -3 +0 1 this.capacityIncrement 0 1 -obj -726045964 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int):::ENTER this_invocation_nonce -595 +529 +initialCapacity +2 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +530 +initialCapacity +2 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +530 this -992556663 +688766789 1 this.elementData -915791386 +302155142 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -obj -726045964 +initialCapacity +2 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -596 +529 this -992556663 +688766789 1 this.elementData -915791386 +302155142 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -anArray -690526453 +initialCapacity +2 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +531 +initialCapacity +3 1 -anArray[..] -[null null null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +532 +initialCapacity +3 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -596 +532 this -992556663 +24606376 1 this.elementData -915791386 +1772160903 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -anArray -690526453 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[245301360 245301360 null 726045964] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -597 +531 this -992556663 +24606376 1 this.elementData -915791386 +1772160903 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -anArray -676467183 +initialCapacity +3 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int):::ENTER +this_invocation_nonce +533 +initialCapacity +4 1 -anArray[..] -[null null null null null null null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +534 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -597 +534 this -992556663 +756185697 1 this.elementData -915791386 +733672688 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -anArray -676467183 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[245301360 245301360 null 726045964 null null null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int):::EXIT95 this_invocation_nonce -598 +533 this -992556663 +756185697 1 this.elementData -915791386 +733672688 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -anArray -605517463 +initialCapacity +4 1 -anArray.getClass().getName() -"java.lang.Object[]" + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +535 +initialCapacity +0 1 -anArray[..] -[413835715 null null null null] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -598 +535 this -992556663 +297927961 1 this.elementData -915791386 +1891546521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -anArray -605517463 -1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +0 1 -anArray[..] -[245301360 245301360 null 726045964 null] +capacityIncrement +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -599 +536 initialCapacity 0 1 capacityIncrement -0 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -599 +536 this -6997508 +1312884893 1 this.elementData -1643000018 +849373393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -28640,23 +28699,33 @@ this.elementCount 0 1 this.capacityIncrement -0 +1 1 initialCapacity 0 1 capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +537 +initialCapacity 0 1 +capacityIncrement +2 +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -600 +537 this -6997508 +868964689 1 this.elementData -1643000018 +912011468 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -28671,23 +28740,33 @@ this.elementCount 0 1 this.capacityIncrement +2 +1 +initialCapacity 0 1 -obj -245301360 +capacityIncrement +2 1 -obj.getClass().getName() -"java.lang.Object" + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +538 +initialCapacity +0 +1 +capacityIncrement +3 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -601 +538 this -6997508 +1881129850 1 this.elementData -1643000018 +1095293768 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -28702,709 +28781,894 @@ this.elementCount 0 1 this.capacityIncrement +3 +1 +initialCapacity 0 1 -minCapacity +capacityIncrement +3 1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +539 +initialCapacity +0 +1 +capacityIncrement +4 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -601 +539 this -6997508 +673186785 1 this.elementData -1556569400 +2142080121 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement +4 +1 +initialCapacity 0 1 -minCapacity +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +540 +initialCapacity +1 1 +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -600 +540 this -6997508 +1906808037 1 this.elementData -1556569400 +1983025922 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement 0 1 -obj -245301360 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Object" +1 +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -602 +541 +initialCapacity +1 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +541 this -6997508 +1579526446 1 this.elementData -1556569400 +1308109015 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null] 1 this.elementCount -1 -1 -this.capacityIncrement 0 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -603 -this -6997508 +this.capacityIncrement 1 -this.elementData -1556569400 1 -this.elementData.getClass().getName() -"java.lang.Object[]" +initialCapacity 1 -this.elementData[..] -[245301360] 1 -this.elementData[..].getClass().getName() -["java.lang.Object"] +capacityIncrement 1 -this.elementCount 1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +542 +initialCapacity 1 -this.capacityIncrement -0 1 -minCapacity +capacityIncrement 2 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -603 +542 this -6997508 +11902257 1 this.elementData -616118046 +1660794022 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +2 1 -minCapacity +initialCapacity +1 +1 +capacityIncrement 2 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -602 +543 +initialCapacity +1 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +543 this -6997508 +300031246 1 this.elementData -616118046 +500179317 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +3 1 -obj -245301360 +initialCapacity 1 -obj.getClass().getName() -"java.lang.Object" +1 +capacityIncrement +3 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -604 +544 +initialCapacity +1 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +544 this -6997508 +824208363 1 this.elementData -616118046 +1048027629 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -obj -null +initialCapacity 1 -obj.getClass().getName() -nonsensical +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +545 +initialCapacity 2 +1 +capacityIncrement +0 +1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -605 +545 this -6997508 +1073533248 1 this.elementData -616118046 +599491651 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement 0 1 -minCapacity -3 +initialCapacity +2 +1 +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -605 +546 +initialCapacity +2 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +546 this -6997508 +293002476 1 this.elementData -2077336935 +302870502 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 1 -minCapacity -3 +1 +initialCapacity +2 +1 +capacityIncrement +1 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -604 +547 +initialCapacity +2 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +547 this -6997508 +1268959798 1 this.elementData -2077336935 +876926621 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -0 +2 1 -obj -null +initialCapacity +2 1 -obj.getClass().getName() -nonsensical +capacityIncrement 2 +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -606 +548 +initialCapacity +2 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +548 this -6997508 +326298949 1 this.elementData -2077336935 +1786364562 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -0 +3 1 -obj -726045964 +initialCapacity +2 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -606 +549 +initialCapacity +2 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +549 this -6997508 +928466577 1 this.elementData -2077336935 +624271064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 -obj -726045964 +initialCapacity +2 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -607 +550 +initialCapacity +3 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +550 this -6997508 +564742142 1 this.elementData -2077336935 +90205195 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement 0 1 -obj -12733619 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -608 +551 +initialCapacity +3 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +551 this -6997508 +135184888 1 this.elementData -2077336935 +21257599 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 1 -minCapacity -5 +1 +initialCapacity +3 +1 +capacityIncrement +1 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -608 +552 +initialCapacity +3 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +552 this -6997508 +1782148126 1 this.elementData -1413053480 +1816089958 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +2 1 -minCapacity -5 +initialCapacity +3 +1 +capacityIncrement +2 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -607 +553 +initialCapacity +3 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +553 this -6997508 +306206744 1 this.elementData -1413053480 +827084938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 +3 1 -obj -12733619 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -609 +554 +initialCapacity +3 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +554 this -6997508 +280265505 1 this.elementData -1413053480 +112619572 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 +4 1 -anArray -168186187 +initialCapacity +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +capacityIncrement +4 1 -anArray[..] -[null null null null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +555 +initialCapacity +4 +1 +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -609 +555 this -6997508 +371619938 1 this.elementData -1413053480 +1161667116 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement 0 1 -anArray -168186187 +initialCapacity +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +556 +initialCapacity +4 +1 +capacityIncrement 1 -anArray[..] -[245301360 245301360 null 726045964 12733619] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -610 +556 this -6997508 +1898220577 1 this.elementData -1413053480 +1143371233 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 1 -anArray -616765457 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +557 +initialCapacity +4 1 -anArray[..] -[null null null null null null null null null null] +capacityIncrement +2 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -610 +557 this -6997508 +1634132079 1 this.elementData -1413053480 +1239548589 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 +2 1 -anArray -616765457 +initialCapacity +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +capacityIncrement +2 1 -anArray[..] -[245301360 245301360 null 726045964 12733619 null null null null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +558 +initialCapacity +4 +1 +capacityIncrement +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -611 +558 this -6997508 +477289012 1 this.elementData -1413053480 +1795960102 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 +3 1 -anArray -73471730 +initialCapacity +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +capacityIncrement +3 1 -anArray[..] -[413835715 null null null null null] + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +559 +initialCapacity +4 +1 +capacityIncrement +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -611 +559 this -6997508 +1027591600 1 this.elementData -1413053480 +1678854096 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null null] 1 this.elementCount -5 -1 -this.capacityIncrement 0 1 -anArray -73471730 +this.capacityIncrement +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[245301360 245301360 null 726045964 12733619 null] +capacityIncrement +4 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -612 +560 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -612 +560 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29419,23 +29683,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -613 +561 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29450,10 +29714,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -470033680 +1195067075 1 anArray.getClass().getName() "java.lang.Object[]" @@ -29464,12 +29728,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -613 +561 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29484,10 +29748,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -470033680 +1195067075 1 anArray.getClass().getName() "java.lang.Object[]" @@ -29498,12 +29762,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -614 +562 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29518,10 +29782,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1411206094 +1366025231 1 anArray.getClass().getName() "java.lang.Object[]" @@ -29532,12 +29796,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -614 +562 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29552,10 +29816,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1411206094 +1366025231 1 anArray.getClass().getName() "java.lang.Object[]" @@ -29566,12 +29830,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -615 +563 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29586,26 +29850,26 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1331424390 +1007309018 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -615 +563 this -36269085 +513700442 1 this.elementData -1836639494 +366590980 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29620,36 +29884,36 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1331424390 +1007309018 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -616 +564 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -616 +564 this -470120990 +2038148563 1 this.elementData -731141617 +2008966511 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29664,23 +29928,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -617 +565 this -470120990 +2038148563 1 this.elementData -731141617 +2008966511 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29695,10 +29959,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -29706,12 +29970,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -618 +566 this -470120990 +2038148563 1 this.elementData -731141617 +2008966511 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29726,7 +29990,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -29734,12 +29998,12 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -618 +566 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -29754,7 +30018,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -29762,18 +30026,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -617 +565 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29782,10 +30046,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -29793,18 +30057,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -619 +567 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29813,10 +30077,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -256834736 +572191680 1 anArray.getClass().getName() "java.lang.Object[]" @@ -29827,18 +30091,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -619 +567 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29847,32 +30111,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -256834736 +572191680 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -620 +568 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29881,10 +30145,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -179277482 +103536485 1 anArray.getClass().getName() "java.lang.Object[]" @@ -29895,18 +30159,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -620 +568 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29915,32 +30179,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -179277482 +103536485 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -621 +569 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29949,32 +30213,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -197083233 +37380050 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -621 +569 this -470120990 +2038148563 1 this.elementData -395728785 +433874882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -29983,36 +30247,36 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -197083233 +37380050 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -622 +570 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -622 +570 this -958113357 +2023938592 1 this.elementData -1178805893 +231977479 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30027,23 +30291,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -623 +571 this -958113357 +2023938592 1 this.elementData -1178805893 +231977479 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30058,10 +30322,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30069,12 +30333,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -624 +572 this -958113357 +2023938592 1 this.elementData -1178805893 +231977479 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30089,7 +30353,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -30097,12 +30361,12 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -624 +572 this -958113357 +2023938592 1 this.elementData -1654000076 +1427889191 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30117,7 +30381,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -30125,18 +30389,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -623 +571 this -958113357 +2023938592 1 this.elementData -1654000076 +1427889191 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -30145,10 +30409,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30156,18 +30420,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -625 +573 this -958113357 +2023938592 1 this.elementData -1654000076 +1427889191 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -30176,10 +30440,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30187,18 +30451,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -626 +574 this -958113357 +2023938592 1 this.elementData -1654000076 +1427889191 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -30207,7 +30471,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -30215,18 +30479,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -626 +574 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -30235,7 +30499,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -30243,18 +30507,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -625 +573 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30263,10 +30527,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30274,18 +30538,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -627 +575 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30294,10 +30558,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1257714307 +1796371666 1 anArray.getClass().getName() "java.lang.Object[]" @@ -30308,18 +30572,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -627 +575 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30328,32 +30592,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1257714307 +1796371666 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -628 +576 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30362,10 +30626,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -722820328 +2076287037 1 anArray.getClass().getName() "java.lang.Object[]" @@ -30376,18 +30640,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -628 +576 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30396,32 +30660,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -722820328 +2076287037 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -629 +577 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30430,32 +30694,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -126261617 +1890627974 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -629 +577 this -958113357 +2023938592 1 this.elementData -1750950564 +93314457 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30464,36 +30728,36 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -126261617 +1890627974 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -630 +578 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -630 +578 this -365153683 +195615004 1 this.elementData -1777170702 +1935972447 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30508,23 +30772,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -631 +579 this -365153683 +195615004 1 this.elementData -1777170702 +1935972447 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30539,10 +30803,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30550,12 +30814,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -632 +580 this -365153683 +195615004 1 this.elementData -1777170702 +1935972447 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30570,7 +30834,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -30578,12 +30842,12 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -632 +580 this -365153683 +195615004 1 this.elementData -1705426038 +97652294 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -30598,7 +30862,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -30606,18 +30870,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -631 +579 this -365153683 +195615004 1 this.elementData -1705426038 +97652294 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -30626,10 +30890,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30637,18 +30901,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -633 +581 this -365153683 +195615004 1 this.elementData -1705426038 +97652294 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -30657,10 +30921,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30668,18 +30932,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -634 +582 this -365153683 +195615004 1 this.elementData -1705426038 +97652294 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -30688,7 +30952,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -30696,18 +30960,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -634 +582 this -365153683 +195615004 1 this.elementData -631184157 +1889248251 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -30716,7 +30980,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -30724,18 +30988,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -633 +581 this -365153683 +195615004 1 this.elementData -631184157 +1889248251 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30744,10 +31008,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -30755,18 +31019,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -635 +583 this -365153683 +195615004 1 this.elementData -631184157 +1889248251 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30775,7 +31039,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj null @@ -30786,18 +31050,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -636 +584 this -365153683 +195615004 1 this.elementData -631184157 +1889248251 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -30806,7 +31070,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -30814,27 +31078,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -636 +584 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -30842,27 +31106,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -635 +583 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj null @@ -30873,30 +31137,30 @@ nonsensical javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -637 +585 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1981674244 +1783047508 1 anArray.getClass().getName() "java.lang.Object[]" @@ -30907,64 +31171,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -637 +585 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1981674244 +1783047508 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -638 +586 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -675137585 +2146608740 1 anArray.getClass().getName() "java.lang.Object[]" @@ -30975,124 +31239,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -638 +586 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -675137585 +2146608740 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null null null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -639 +587 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1881283994 +1381713434 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -639 +587 this -365153683 +195615004 1 this.elementData -1890394166 +1027007693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1881283994 +1381713434 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -640 +588 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -640 +588 this -1338352377 +1489092624 1 this.elementData -944681561 +192881625 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31107,23 +31371,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -641 +589 this -1338352377 +1489092624 1 this.elementData -944681561 +192881625 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31138,10 +31402,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31149,12 +31413,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -642 +590 this -1338352377 +1489092624 1 this.elementData -944681561 +192881625 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31169,7 +31433,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -31177,12 +31441,12 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -642 +590 this -1338352377 +1489092624 1 this.elementData -916393456 +1641313620 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31197,7 +31461,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -31205,18 +31469,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -641 +589 this -1338352377 +1489092624 1 this.elementData -916393456 +1641313620 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -31225,10 +31489,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31236,18 +31500,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -643 +591 this -1338352377 +1489092624 1 this.elementData -916393456 +1641313620 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -31256,10 +31520,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31267,18 +31531,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -644 +592 this -1338352377 +1489092624 1 this.elementData -916393456 +1641313620 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -31287,7 +31551,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -31295,18 +31559,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -644 +592 this -1338352377 +1489092624 1 this.elementData -72098708 +1773638882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -31315,7 +31579,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -31323,18 +31587,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -643 +591 this -1338352377 +1489092624 1 this.elementData -72098708 +1773638882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -31343,10 +31607,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31354,18 +31618,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -645 +593 this -1338352377 +1489092624 1 this.elementData -72098708 +1773638882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -31374,7 +31638,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj null @@ -31385,18 +31649,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -646 +594 this -1338352377 +1489092624 1 this.elementData -72098708 +1773638882 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -31405,7 +31669,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -31413,27 +31677,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -646 +594 this -1338352377 +1489092624 1 this.elementData -582208448 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -31441,27 +31705,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -645 +593 this -1338352377 +1489092624 1 this.elementData -582208448 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj null @@ -31472,105 +31736,49 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -647 +595 this -1338352377 +1489092624 1 this.elementData -582208448 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -648 -this -1338352377 -1 -this.elementData -582208448 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -648 -this -1338352377 -1 -this.elementData -1241889804 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -647 +595 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31579,10 +31787,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -31590,18 +31798,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -649 +596 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31610,10 +31818,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1048370635 +1295226194 1 anArray.getClass().getName() "java.lang.Object[]" @@ -31624,18 +31832,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -649 +596 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31644,32 +31852,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1048370635 +1295226194 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -650 +597 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31678,10 +31886,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -2009422457 +252651381 1 anArray.getClass().getName() "java.lang.Object[]" @@ -31692,18 +31900,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -650 +597 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31712,32 +31920,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -2009422457 +252651381 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[540642172 540642172 null 1836797772 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -651 +598 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31746,32 +31954,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1035402077 +1514840818 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -651 +598 this -1338352377 +1489092624 1 this.elementData -1241889804 +1059063940 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -31780,36 +31988,36 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1035402077 +1514840818 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[540642172 540642172 null 1836797772 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -652 +599 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -652 +599 this -942716498 +1704064279 1 this.elementData -101834320 +878274034 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31824,23 +32032,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -653 +600 this -942716498 +1704064279 1 this.elementData -101834320 +878274034 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31855,10 +32063,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31866,12 +32074,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -654 +601 this -942716498 +1704064279 1 this.elementData -101834320 +878274034 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31886,7 +32094,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -31894,12 +32102,12 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -654 +601 this -942716498 +1704064279 1 this.elementData -2132433228 +1117509763 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -31914,7 +32122,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -31922,18 +32130,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -653 +600 this -942716498 +1704064279 1 this.elementData -2132433228 +1117509763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -31942,10 +32150,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31953,18 +32161,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -655 +602 this -942716498 +1704064279 1 this.elementData -2132433228 +1117509763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -31973,10 +32181,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -31984,18 +32192,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -656 +603 this -942716498 +1704064279 1 this.elementData -2132433228 +1117509763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -32004,7 +32212,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -32012,18 +32220,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -656 +603 this -942716498 +1704064279 1 this.elementData -450678213 +1296674576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -32032,7 +32240,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -32040,18 +32248,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -655 +602 this -942716498 +1704064279 1 this.elementData -450678213 +1296674576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -32060,10 +32268,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -32071,18 +32279,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -657 +604 this -942716498 +1704064279 1 this.elementData -450678213 +1296674576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -32091,7 +32299,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj null @@ -32102,18 +32310,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -658 +605 this -942716498 +1704064279 1 this.elementData -450678213 +1296674576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -32122,7 +32330,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -32130,27 +32338,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -658 +605 this -942716498 +1704064279 1 this.elementData -373902922 +664457955 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -32158,27 +32366,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -657 +604 this -942716498 +1704064279 1 this.elementData -373902922 +664457955 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj null @@ -32189,105 +32397,49 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -659 +606 this -942716498 +1704064279 1 this.elementData -373902922 +664457955 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -660 -this -942716498 -1 -this.elementData -373902922 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -660 -this -942716498 -1 -this.elementData -649258932 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -659 +606 this -942716498 +1704064279 1 this.elementData -649258932 +664457955 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -32296,10 +32448,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -32307,18 +32459,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -661 +607 this -942716498 +1704064279 1 this.elementData -649258932 +664457955 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -32327,10 +32479,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -32338,18 +32490,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -662 +608 this -942716498 +1704064279 1 this.elementData -649258932 +664457955 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -32358,7 +32510,7 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 minCapacity 5 @@ -32366,27 +32518,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -662 +608 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null] +[540642172 540642172 null 1836797772 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null null] 1 this.elementCount 4 1 this.capacityIncrement -1 +0 1 minCapacity 5 @@ -32394,30 +32546,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -661 +607 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -32425,30 +32577,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -663 +609 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -1819937367 +1147258851 1 anArray.getClass().getName() "java.lang.Object[]" @@ -32459,64 +32611,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -663 +609 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -1819937367 +1147258851 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -664 +610 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -1077742948 +891095110 1 anArray.getClass().getName() "java.lang.Object[]" @@ -32527,124 +32679,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -664 +610 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -1077742948 +891095110 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null null null null null] +[540642172 540642172 null 1836797772 1477657879 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -665 +611 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -1748648238 +2011482127 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -665 +611 this -942716498 +1704064279 1 this.elementData -730459717 +1146147158 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -1748648238 +2011482127 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -666 +612 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -666 +612 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32659,23 +32811,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -667 +613 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32690,10 +32842,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -600795369 +577405636 1 anArray.getClass().getName() "java.lang.Object[]" @@ -32704,12 +32856,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -667 +613 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32724,10 +32876,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -600795369 +577405636 1 anArray.getClass().getName() "java.lang.Object[]" @@ -32738,12 +32890,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -668 +614 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32758,10 +32910,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -99658589 +1931444790 1 anArray.getClass().getName() "java.lang.Object[]" @@ -32772,12 +32924,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -668 +614 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32792,10 +32944,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -99658589 +1931444790 1 anArray.getClass().getName() "java.lang.Object[]" @@ -32806,12 +32958,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -669 +615 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32826,26 +32978,26 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -2072144310 +626742236 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -669 +615 this -1217226871 +905735620 1 this.elementData -1002799575 +2145970759 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32860,36 +33012,36 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -2072144310 +626742236 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -670 +616 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -670 +616 this -787114771 +500772834 1 this.elementData -538690677 +1800659519 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32904,23 +33056,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -671 +617 this -787114771 +500772834 1 this.elementData -538690677 +1800659519 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32935,10 +33087,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -32946,12 +33098,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -672 +618 this -787114771 +500772834 1 this.elementData -538690677 +1800659519 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -32966,7 +33118,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -32974,27 +33126,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -672 +618 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -33002,30 +33154,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -671 +617 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33033,30 +33185,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -673 +619 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -313371113 +459848100 1 anArray.getClass().getName() "java.lang.Object[]" @@ -33067,64 +33219,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -673 +619 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -313371113 +459848100 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -674 +620 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -1198393747 +1335505684 1 anArray.getClass().getName() "java.lang.Object[]" @@ -33135,124 +33287,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -674 +620 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -1198393747 +1335505684 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -675 +621 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -154580616 +992768706 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -675 +621 this -787114771 +500772834 1 this.elementData -2130636234 +1691538257 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -154580616 +992768706 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -676 +622 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -676 +622 this -1728683889 +1226204845 1 this.elementData -683862160 +393040818 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -33267,23 +33419,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -677 +623 this -1728683889 +1226204845 1 this.elementData -683862160 +393040818 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -33298,10 +33450,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33309,12 +33461,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -678 +624 this -1728683889 +1226204845 1 this.elementData -683862160 +393040818 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -33329,7 +33481,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -33337,27 +33489,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -678 +624 this -1728683889 +1226204845 1 this.elementData -338844376 +158453976 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -33365,30 +33517,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -677 +623 this -1728683889 +1226204845 1 this.elementData -338844376 +158453976 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33396,49 +33548,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -679 +625 this -1728683889 +1226204845 1 this.elementData -338844376 +158453976 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +626 +this +1226204845 +1 +this.elementData +158453976 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Object"] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +626 +this +1226204845 +1 +this.elementData +1368594774 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -679 +625 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33447,10 +33655,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33458,18 +33666,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -680 +627 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33478,10 +33686,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1978279235 +726281927 1 anArray.getClass().getName() "java.lang.Object[]" @@ -33492,18 +33700,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -680 +627 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33512,32 +33720,32 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1978279235 +726281927 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -681 +628 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33546,10 +33754,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1597279791 +1447499999 1 anArray.getClass().getName() "java.lang.Object[]" @@ -33560,18 +33768,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -681 +628 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33580,32 +33788,32 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1597279791 +1447499999 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -682 +629 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33614,32 +33822,32 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1935859837 +1371006431 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -682 +629 this -1728683889 +1226204845 1 this.elementData -338844376 +1368594774 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33648,36 +33856,36 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1935859837 +1371006431 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -683 +630 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -683 +630 this -1619028409 +413601558 1 this.elementData -245178926 +1658926803 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -33692,23 +33900,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -684 +631 this -1619028409 +413601558 1 this.elementData -245178926 +1658926803 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -33723,10 +33931,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33734,12 +33942,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -685 +632 this -1619028409 +413601558 1 this.elementData -245178926 +1658926803 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -33754,7 +33962,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -33762,27 +33970,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -685 +632 this -1619028409 +413601558 1 this.elementData -1848574336 +210652080 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -33790,30 +33998,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -684 +631 this -1619028409 +413601558 1 this.elementData -1848574336 +210652080 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33821,49 +34029,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -686 +633 this -1619028409 +413601558 1 this.elementData -1848574336 +210652080 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +634 +this +413601558 +1 +this.elementData +210652080 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Object"] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +634 +this +413601558 +1 +this.elementData +1652149987 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -686 +633 this -1619028409 +413601558 1 this.elementData -1848574336 +1652149987 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33872,10 +34136,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -33883,18 +34147,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -687 +635 this -1619028409 +413601558 1 this.elementData -1848574336 +1652149987 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33903,7 +34167,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj null @@ -33914,18 +34178,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -688 +636 this -1619028409 +413601558 1 this.elementData -1848574336 +1652149987 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -33934,7 +34198,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -33942,27 +34206,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -688 +636 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -33970,27 +34234,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -687 +635 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj null @@ -34001,30 +34265,30 @@ nonsensical javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -689 +637 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -806728451 +700072760 1 anArray.getClass().getName() "java.lang.Object[]" @@ -34035,64 +34299,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -689 +637 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -806728451 +700072760 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -690 +638 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -1620812446 +1461149300 1 anArray.getClass().getName() "java.lang.Object[]" @@ -34103,124 +34367,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -690 +638 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -1620812446 +1461149300 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null null null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -691 +639 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -164717727 +2075495587 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -691 +639 this -1619028409 +413601558 1 this.elementData -1342944003 +1107730949 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -164717727 +2075495587 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -692 +640 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -692 +640 this -304416706 +206835546 1 this.elementData -1025530588 +1997287019 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -34235,23 +34499,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -693 +641 this -304416706 +206835546 1 this.elementData -1025530588 +1997287019 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -34266,10 +34530,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -34277,12 +34541,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -694 +642 this -304416706 +206835546 1 this.elementData -1025530588 +1997287019 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -34297,7 +34561,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -34305,27 +34569,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -694 +642 this -304416706 +206835546 1 this.elementData -388841694 +436546048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -34333,30 +34597,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -693 +641 this -304416706 +206835546 1 this.elementData -388841694 +436546048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -34364,49 +34628,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -695 +643 this -304416706 +206835546 1 this.elementData -388841694 +436546048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +644 +this +206835546 +1 +this.elementData +436546048 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Object"] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +644 +this +206835546 +1 +this.elementData +1300393335 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -695 +643 this -304416706 +206835546 1 this.elementData -388841694 +1300393335 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -34415,10 +34735,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -34426,18 +34746,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -696 +645 this -304416706 +206835546 1 this.elementData -388841694 +1300393335 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -34446,7 +34766,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj null @@ -34457,18 +34777,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -697 +646 this -304416706 +206835546 1 this.elementData -388841694 +1300393335 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -34477,7 +34797,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -34485,27 +34805,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -697 +646 this -304416706 +206835546 1 this.elementData -469613237 +1627428162 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -34513,27 +34833,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -696 +645 this -304416706 +206835546 1 this.elementData -469613237 +1627428162 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj null @@ -34544,49 +34864,105 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -698 +647 this -304416706 +206835546 1 this.elementData -469613237 +1627428162 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +648 +this +206835546 +1 +this.elementData +1627428162 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null] +1 +this.elementCount +3 +1 +this.capacityIncrement +1 +1 +minCapacity +4 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +648 +this +206835546 +1 +this.elementData +2011791487 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +1 +1 +minCapacity +4 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -698 +647 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34595,10 +34971,10 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -34606,18 +34982,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -699 +649 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34626,10 +35002,10 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -787271534 +1150284200 1 anArray.getClass().getName() "java.lang.Object[]" @@ -34640,18 +35016,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -699 +649 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34660,32 +35036,32 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -787271534 +1150284200 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -700 +650 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34694,10 +35070,10 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -1025922771 +439928219 1 anArray.getClass().getName() "java.lang.Object[]" @@ -34708,18 +35084,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -700 +650 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34728,32 +35104,32 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -1025922771 +439928219 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[540642172 540642172 null 1836797772 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -701 +651 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34762,32 +35138,32 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -537810434 +2138564891 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -701 +651 this -304416706 +206835546 1 this.elementData -469613237 +2011791487 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -34796,36 +35172,36 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -537810434 +2138564891 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[540642172 540642172 null 1836797772 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -702 +652 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -702 +652 this -221294015 +1151755506 1 this.elementData -1994317148 +2141179775 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -34840,23 +35216,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -703 +653 this -221294015 +1151755506 1 this.elementData -1994317148 +2141179775 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -34871,10 +35247,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -34882,12 +35258,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -704 +654 this -221294015 +1151755506 1 this.elementData -1994317148 +2141179775 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -34902,7 +35278,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -34910,27 +35286,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -704 +654 this -221294015 +1151755506 1 this.elementData -563544060 +592959754 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -34938,30 +35314,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -703 +653 this -221294015 +1151755506 1 this.elementData -563544060 +592959754 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -34969,49 +35345,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -705 +655 this -221294015 +1151755506 1 this.elementData -563544060 +592959754 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +656 +this +1151755506 +1 +this.elementData +592959754 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Object"] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +656 +this +1151755506 +1 +this.elementData +1663619914 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +minCapacity +2 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -705 +655 this -221294015 +1151755506 1 this.elementData -563544060 +1663619914 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -35020,10 +35452,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -35031,18 +35463,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -706 +657 this -221294015 +1151755506 1 this.elementData -563544060 +1663619914 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -35051,7 +35483,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj null @@ -35062,18 +35494,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -707 +658 this -221294015 +1151755506 1 this.elementData -563544060 +1663619914 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -35082,7 +35514,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -35090,27 +35522,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -707 +658 this -221294015 +1151755506 1 this.elementData -1082133150 +341748265 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -35118,27 +35550,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -706 +657 this -221294015 +1151755506 1 this.elementData -1082133150 +341748265 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj null @@ -35149,49 +35581,105 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -708 +659 this -221294015 +1151755506 1 this.elementData -1082133150 +341748265 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +660 +this +1151755506 +1 +this.elementData +341748265 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null] +1 +this.elementCount +3 +1 +this.capacityIncrement +1 +1 +minCapacity +4 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +660 +this +1151755506 +1 +this.elementData +364604394 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +1 +1 +minCapacity +4 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -708 +659 this -221294015 +1151755506 1 this.elementData -1082133150 +364604394 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -35200,10 +35688,10 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -35211,18 +35699,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -709 +661 this -221294015 +1151755506 1 this.elementData -1082133150 +364604394 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -35231,10 +35719,10 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -35242,18 +35730,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -710 +662 this -221294015 +1151755506 1 this.elementData -1082133150 +364604394 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] @@ -35262,7 +35750,7 @@ this.elementCount 4 1 this.capacityIncrement -2 +1 1 minCapacity 5 @@ -35270,27 +35758,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -710 +662 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 minCapacity 5 @@ -35298,30 +35786,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -709 +661 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -35329,30 +35817,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -711 +663 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -58834903 +758013696 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35363,64 +35851,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -711 +663 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -58834903 +758013696 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -712 +664 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -995737101 +1279309678 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35431,124 +35919,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -712 +664 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -995737101 +1279309678 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null null null null null] +[540642172 540642172 null 1836797772 1477657879 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -713 +665 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -13395436 +48914743 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -713 +665 this -221294015 +1151755506 1 this.elementData -372845607 +146370526 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -13395436 +48914743 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -714 +666 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -714 +666 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35563,23 +36051,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -715 +667 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35594,10 +36082,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1577805514 +1473611564 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35608,12 +36096,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -715 +667 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35628,10 +36116,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1577805514 +1473611564 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35642,12 +36130,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -716 +668 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35662,10 +36150,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1049200642 +107456312 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35676,12 +36164,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -716 +668 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35696,10 +36184,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1049200642 +107456312 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35710,12 +36198,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -717 +669 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35730,26 +36218,26 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -926964577 +921760190 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -717 +669 this -1798793564 +1106131243 1 this.elementData -48647682 +510109769 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35764,36 +36252,36 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -926964577 +921760190 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -718 +670 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -718 +670 this -1647270301 +360067785 1 this.elementData -312771783 +1860250540 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35808,23 +36296,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -719 +671 this -1647270301 +360067785 1 this.elementData -312771783 +1860250540 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35839,10 +36327,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -35850,12 +36338,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -720 +672 this -1647270301 +360067785 1 this.elementData -312771783 +1860250540 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -35870,7 +36358,7 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -35878,27 +36366,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -720 +672 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -35906,30 +36394,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -719 +671 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -35937,30 +36425,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -721 +673 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1136908691 +1690859824 1 anArray.getClass().getName() "java.lang.Object[]" @@ -35971,64 +36459,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -721 +673 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1136908691 +1690859824 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -722 +674 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1862362278 +1074593562 1 anArray.getClass().getName() "java.lang.Object[]" @@ -36039,124 +36527,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -722 +674 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1862362278 +1074593562 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -723 +675 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1148651321 +660017404 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -723 +675 this -1647270301 +360067785 1 this.elementData -1862872672 +1426329391 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1148651321 +660017404 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -724 +676 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -724 +676 this -1652249164 +1381965390 1 this.elementData -240659991 +1979313356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -36171,23 +36659,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -725 +677 this -1652249164 +1381965390 1 this.elementData -240659991 +1979313356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -36202,10 +36690,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36213,12 +36701,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -726 +678 this -1652249164 +1381965390 1 this.elementData -240659991 +1979313356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -36233,7 +36721,7 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -36241,27 +36729,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -726 +678 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -36269,30 +36757,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -725 +677 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36300,30 +36788,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -727 +679 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36331,30 +36819,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -727 +679 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36362,30 +36850,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -728 +680 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -1955701105 +1306854175 1 anArray.getClass().getName() "java.lang.Object[]" @@ -36396,64 +36884,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -728 +680 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -1955701105 +1306854175 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -729 +681 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -83770753 +1742920067 1 anArray.getClass().getName() "java.lang.Object[]" @@ -36464,124 +36952,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -729 +681 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -83770753 +1742920067 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -730 +682 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -1333256886 +1564984895 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -730 +682 this -1652249164 +1381965390 1 this.elementData -1060761436 +1386883398 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -1333256886 +1564984895 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -731 +683 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -731 +683 this -1204110204 +1587819720 1 this.elementData -1741792947 +1002191352 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -36596,23 +37084,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -732 +684 this -1204110204 +1587819720 1 this.elementData -1741792947 +1002191352 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -36627,10 +37115,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36638,12 +37126,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -733 +685 this -1204110204 +1587819720 1 this.elementData -1741792947 +1002191352 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -36658,7 +37146,7 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -36666,27 +37154,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -733 +685 this -1204110204 +1587819720 1 this.elementData -1964467972 +1256440269 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -36694,30 +37182,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -732 +684 this -1204110204 +1587819720 1 this.elementData -1964467972 +1256440269 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36725,30 +37213,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -734 +686 this -1204110204 +1587819720 1 this.elementData -1964467972 +1256440269 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36756,30 +37244,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -734 +686 this -1204110204 +1587819720 1 this.elementData -1964467972 +1256440269 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -36787,27 +37275,27 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -735 +687 this -1204110204 +1587819720 1 this.elementData -1964467972 +1256440269 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj null @@ -36816,30 +37304,86 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -735 +688 this -1204110204 +1587819720 1 this.elementData -1964467972 +1256440269 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount +2 +1 +this.capacityIncrement +2 +1 +minCapacity 3 1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +688 +this +1587819720 +1 +this.elementData +704024720 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +2 +1 this.capacityIncrement +2 +1 +minCapacity +3 +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +687 +this +1587819720 +1 +this.elementData +704024720 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount 3 1 +this.capacityIncrement +2 +1 obj null 1 @@ -36849,30 +37393,30 @@ nonsensical javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -736 +689 this -1204110204 +1587819720 1 this.elementData -1964467972 +704024720 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1399616426 +1452012306 1 anArray.getClass().getName() "java.lang.Object[]" @@ -36883,64 +37427,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -736 +689 this -1204110204 +1587819720 1 this.elementData -1964467972 +704024720 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1399616426 +1452012306 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -737 +690 this -1204110204 +1587819720 1 this.elementData -1964467972 +704024720 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1964886191 +211968962 1 anArray.getClass().getName() "java.lang.Object[]" @@ -36951,124 +37495,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -737 +690 this -1204110204 +1587819720 1 this.elementData -1964467972 +704024720 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1964886191 +211968962 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null null null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -738 +691 this -1204110204 +1587819720 1 this.elementData -1964467972 +704024720 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1986172218 +1486566962 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -738 +691 this -1204110204 +1587819720 1 this.elementData -1964467972 +704024720 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1986172218 +1486566962 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -739 +692 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -739 +692 this -1110658958 +1173643169 1 this.elementData -917247382 +1282287470 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -37083,23 +37627,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -740 +693 this -1110658958 +1173643169 1 this.elementData -917247382 +1282287470 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -37114,10 +37658,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37125,12 +37669,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -741 +694 this -1110658958 +1173643169 1 this.elementData -917247382 +1282287470 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -37145,7 +37689,7 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -37153,27 +37697,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -741 +694 this -1110658958 +1173643169 1 this.elementData -1539131108 +1397616978 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -37181,30 +37725,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -740 +693 this -1110658958 +1173643169 1 this.elementData -1539131108 +1397616978 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37212,30 +37756,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -742 +695 this -1110658958 +1173643169 1 this.elementData -1539131108 +1397616978 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37243,30 +37787,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -742 +695 this -1110658958 +1173643169 1 this.elementData -1539131108 +1397616978 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37274,27 +37818,27 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -743 +696 this -1110658958 +1173643169 1 this.elementData -1539131108 +1397616978 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj null @@ -37303,150 +37847,150 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -743 +697 this -1110658958 +1173643169 1 this.elementData -1539131108 +1397616978 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -3 +2 1 -obj -null +minCapacity +3 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -744 +697 this -1110658958 +1173643169 1 this.elementData -1539131108 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -3 -1 -obj -726045964 +2 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +3 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -745 +696 this -1110658958 +1173643169 1 this.elementData -1539131108 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 -minCapacity -4 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -745 +698 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 -minCapacity -4 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -744 +698 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -37454,30 +37998,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -746 +699 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1307088945 +889729797 1 anArray.getClass().getName() "java.lang.Object[]" @@ -37488,64 +38032,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -746 +699 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1307088945 +889729797 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -747 +700 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1633673452 +148912029 1 anArray.getClass().getName() "java.lang.Object[]" @@ -37556,124 +38100,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -747 +700 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1633673452 +148912029 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[540642172 540642172 null 1836797772 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -748 +701 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1571280869 +874217650 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -748 +701 this -1110658958 +1173643169 1 this.elementData -1736004041 +1390835631 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1571280869 +874217650 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[540642172 540642172 null 1836797772 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -749 +702 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -749 +702 this -911158124 +1436664465 1 this.elementData -128703311 +558187323 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -37688,23 +38232,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 0 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -750 +703 this -911158124 +1436664465 1 this.elementData -128703311 +558187323 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -37719,10 +38263,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37730,12 +38274,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -751 +704 this -911158124 +1436664465 1 this.elementData -128703311 +558187323 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -37750,7 +38294,7 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -37758,27 +38302,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -751 +704 this -911158124 +1436664465 1 this.elementData -600515448 +680576081 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -3 +2 1 minCapacity 1 @@ -37786,30 +38330,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -750 +703 this -911158124 +1436664465 1 this.elementData -600515448 +680576081 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37817,30 +38361,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -752 +705 this -911158124 +1436664465 1 this.elementData -600515448 +680576081 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37848,30 +38392,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -752 +705 this -911158124 +1436664465 1 this.elementData -600515448 +680576081 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -37879,27 +38423,27 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -753 +706 this -911158124 +1436664465 1 this.elementData -600515448 +680576081 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj null @@ -37908,30 +38452,86 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -753 +707 this -911158124 +1436664465 1 this.elementData -600515448 +680576081 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount +2 +1 +this.capacityIncrement +2 +1 +minCapacity 3 1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +707 +this +1436664465 +1 +this.elementData +1088872417 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +2 +1 this.capacityIncrement +2 +1 +minCapacity +3 +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +706 +this +1436664465 +1 +this.elementData +1088872417 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount 3 1 +this.capacityIncrement +2 +1 obj null 1 @@ -37941,136 +38541,139 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -754 +708 this -911158124 +1436664465 1 this.elementData -600515448 +1088872417 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -755 +708 this -911158124 +1436664465 1 this.elementData -600515448 +1088872417 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 +2 +1 +obj +1836797772 1 -minCapacity -4 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -755 +709 this -911158124 +1436664465 1 this.elementData -1837477283 +1088872417 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 +2 1 -minCapacity -4 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -754 +710 this -911158124 +1436664465 1 this.elementData -1837477283 +1088872417 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -3 -1 -obj -726045964 +2 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -756 +710 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] @@ -38079,29 +38682,26 @@ this.elementCount 4 1 this.capacityIncrement -3 -1 -obj -12733619 +2 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +5 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -756 +709 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38110,10 +38710,10 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -38121,18 +38721,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -757 +711 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38141,10 +38741,10 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -1665851521 +274722023 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38155,18 +38755,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -757 +711 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38175,32 +38775,32 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -1665851521 +274722023 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -758 +712 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38209,10 +38809,10 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -1222207508 +1052967153 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38223,18 +38823,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -758 +712 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38243,32 +38843,32 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -1222207508 +1052967153 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null null null null null] +[540642172 540642172 null 1836797772 1477657879 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -759 +713 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38277,32 +38877,32 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -960503401 +1210898719 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -759 +713 this -911158124 +1436664465 1 this.elementData -1837477283 +453523494 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] @@ -38311,36 +38911,36 @@ this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -960503401 +1210898719 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -760 +714 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -760 +714 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38355,23 +38955,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -761 +715 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38386,10 +38986,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1679397066 +1527430292 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38400,12 +39000,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -761 +715 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38420,10 +39020,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1679397066 +1527430292 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38434,12 +39034,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -762 +716 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38454,10 +39054,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1248915741 +1975546571 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38468,12 +39068,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -762 +716 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38488,10 +39088,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1248915741 +1975546571 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38502,12 +39102,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -763 +717 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38522,26 +39122,26 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1021693209 +521960438 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -763 +717 this -546086108 +306123060 1 this.elementData -1871593525 +2104028992 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38556,36 +39156,36 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1021693209 +521960438 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -764 +718 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -764 +718 this -318522251 +632587706 1 this.elementData -1874224233 +726950788 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38600,23 +39200,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -765 +719 this -318522251 +632587706 1 this.elementData -1874224233 +726950788 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38631,10 +39231,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -38642,12 +39242,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -766 +720 this -318522251 +632587706 1 this.elementData -1874224233 +726950788 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38662,7 +39262,7 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -38670,27 +39270,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -766 +720 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -38698,30 +39298,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -765 +719 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -38729,30 +39329,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -767 +721 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -200021447 +558569884 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38763,64 +39363,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -767 +721 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -200021447 +558569884 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -768 +722 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -948552174 +550752602 1 anArray.getClass().getName() "java.lang.Object[]" @@ -38831,124 +39431,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -768 +722 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -948552174 +550752602 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -769 +723 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -1545276737 +680779399 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -769 +723 this -318522251 +632587706 1 this.elementData -796549835 +1567885839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -1545276737 +680779399 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -770 +724 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -770 +724 this -1946375588 +1439337960 1 this.elementData -116112765 +741669172 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38963,23 +39563,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -771 +725 this -1946375588 +1439337960 1 this.elementData -116112765 +741669172 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -38994,10 +39594,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39005,12 +39605,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -772 +726 this -1946375588 +1439337960 1 this.elementData -116112765 +741669172 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39025,7 +39625,7 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -39033,27 +39633,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -772 +726 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -39061,30 +39661,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -771 +725 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39092,30 +39692,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -773 +727 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39123,30 +39723,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -773 +727 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39154,30 +39754,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -774 +728 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -608354733 +604125138 1 anArray.getClass().getName() "java.lang.Object[]" @@ -39188,64 +39788,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -774 +728 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -608354733 +604125138 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -775 +729 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -448354164 +631659383 1 anArray.getClass().getName() "java.lang.Object[]" @@ -39256,124 +39856,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -775 +729 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -448354164 +631659383 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -776 +730 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -2115800672 +785447854 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -776 +730 this -1946375588 +1439337960 1 this.elementData -1592089879 +315860201 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -2115800672 +785447854 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -777 +731 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -777 +731 this -80183631 +556529265 1 this.elementData -1174039548 +346224929 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39388,23 +39988,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -778 +732 this -80183631 +556529265 1 this.elementData -1174039548 +346224929 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39419,10 +40019,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39430,12 +40030,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -779 +733 this -80183631 +556529265 1 this.elementData -1174039548 +346224929 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39450,7 +40050,7 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -39458,27 +40058,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -779 +733 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -39486,30 +40086,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -778 +732 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39517,30 +40117,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -780 +734 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39548,30 +40148,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -780 +734 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39579,27 +40179,27 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -781 +735 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj null @@ -39610,27 +40210,27 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -781 +735 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj null @@ -39641,30 +40241,30 @@ nonsensical javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -782 +736 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -722676897 +720167805 1 anArray.getClass().getName() "java.lang.Object[]" @@ -39675,64 +40275,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -782 +736 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -722676897 +720167805 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -783 +737 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -2010584094 +1418334255 1 anArray.getClass().getName() "java.lang.Object[]" @@ -39743,124 +40343,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -783 +737 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -2010584094 +1418334255 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null null null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -784 +738 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -1231682313 +1466073198 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -784 +738 this -80183631 +556529265 1 this.elementData -1002934600 +63468833 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -1231682313 +1466073198 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -785 +739 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -785 +739 this -1289761158 +398690014 1 this.elementData -315849688 +1526298704 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39875,23 +40475,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -786 +740 this -1289761158 +398690014 1 this.elementData -315849688 +1526298704 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39906,10 +40506,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -39917,12 +40517,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -787 +741 this -1289761158 +398690014 1 this.elementData -315849688 +1526298704 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -39937,7 +40537,7 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -39945,27 +40545,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -787 +741 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -39973,30 +40573,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -786 +740 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40004,30 +40604,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -788 +742 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40035,30 +40635,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -788 +742 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40066,27 +40666,27 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -789 +743 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj null @@ -40097,27 +40697,27 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -789 +743 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj null @@ -40128,61 +40728,117 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -790 +744 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -790 +745 this -1289761158 +398690014 1 this.elementData -2053614479 +1593180232 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount +3 +1 +this.capacityIncrement +3 +1 +minCapacity 4 1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +745 +this +398690014 +1 +this.elementData +492079624 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null null null] +1 +this.elementCount +3 +1 this.capacityIncrement +3 +1 +minCapacity +4 +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +744 +this +398690014 +1 +this.elementData +492079624 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null 1836797772 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +1 +this.elementCount 4 1 +this.capacityIncrement +3 +1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -40190,30 +40846,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -791 +746 this -1289761158 +398690014 1 this.elementData -2053614479 +492079624 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -741373969 +380242442 1 anArray.getClass().getName() "java.lang.Object[]" @@ -40224,64 +40880,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -791 +746 this -1289761158 +398690014 1 this.elementData -2053614479 +492079624 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -741373969 +380242442 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -792 +747 this -1289761158 +398690014 1 this.elementData -2053614479 +492079624 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -572177089 +125881207 1 anArray.getClass().getName() "java.lang.Object[]" @@ -40292,124 +40948,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -792 +747 this -1289761158 +398690014 1 this.elementData -2053614479 +492079624 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -572177089 +125881207 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[540642172 540642172 null 1836797772 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -793 +748 this -1289761158 +398690014 1 this.elementData -2053614479 +492079624 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -148563557 +1763344271 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -793 +748 this -1289761158 +398690014 1 this.elementData -2053614479 +492079624 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -148563557 +1763344271 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[540642172 540642172 null 1836797772 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -794 +749 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -794 +749 this -1531704685 +1353170030 1 this.elementData -1474164206 +370869802 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -40424,23 +41080,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 0 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -795 +750 this -1531704685 +1353170030 1 this.elementData -1474164206 +370869802 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -40455,10 +41111,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40466,12 +41122,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -796 +751 this -1531704685 +1353170030 1 this.elementData -1474164206 +370869802 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -40486,7 +41142,7 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -40494,27 +41150,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -796 +751 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -4 +3 1 minCapacity 1 @@ -40522,30 +41178,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -795 +750 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40553,30 +41209,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -797 +752 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40584,30 +41240,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -797 +752 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -40615,27 +41271,27 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -798 +753 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj null @@ -40646,27 +41302,27 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -798 +753 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj null @@ -40677,179 +41333,179 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -799 +754 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -799 +755 this -1531704685 +1353170030 1 this.elementData -758974803 +398572781 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -4 +3 1 this.capacityIncrement -4 -1 -obj -726045964 +3 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -800 +755 this -1531704685 +1353170030 1 this.elementData -758974803 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -4 +3 1 this.capacityIncrement -4 -1 -obj -12733619 +3 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +4 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -801 +754 this -1531704685 +1353170030 1 this.elementData -758974803 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 -minCapacity -5 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -801 +756 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null null null] +[540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 -minCapacity -5 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -800 +756 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -40857,30 +41513,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -802 +757 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -1810361645 +1077199500 1 anArray.getClass().getName() "java.lang.Object[]" @@ -40891,64 +41547,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -802 +757 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -1810361645 +1077199500 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772 1477657879] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -803 +758 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -1199856819 +240166646 1 anArray.getClass().getName() "java.lang.Object[]" @@ -40959,173 +41615,173 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -803 +758 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -1199856819 +240166646 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null null null null null] +[540642172 540642172 null 1836797772 1477657879 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -804 +759 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -1122111603 +351028485 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -804 +759 this -1531704685 +1353170030 1 this.elementData -36650841 +765284253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -1122111603 +351028485 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -805 +760 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -805 +760 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -806 +761 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -694926166 +1054932644 1 anArray.getClass().getName() "java.lang.Object[]" @@ -41136,30 +41792,30 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -806 +761 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -694926166 +1054932644 1 anArray.getClass().getName() "java.lang.Object[]" @@ -41170,30 +41826,30 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -807 +762 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -1607999576 +1213349904 1 anArray.getClass().getName() "java.lang.Object[]" @@ -41204,30 +41860,30 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -807 +762 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -1607999576 +1213349904 1 anArray.getClass().getName() "java.lang.Object[]" @@ -41238,508 +41894,502 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -808 +763 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -1714659984 +1259769769 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -808 +763 this -128323667 +1405747618 1 this.elementData -662289681 +898406901 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -1714659984 +1259769769 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -809 +764 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -809 +764 this -1207291995 +444920847 1 this.elementData -1531063109 +589835301 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -810 +765 this -1207291995 +444920847 1 this.elementData -1531063109 +589835301 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -810 +766 this -1207291995 +444920847 1 this.elementData -1531063109 +589835301 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +minCapacity 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -811 +766 this -1207291995 +444920847 1 this.elementData -1531063109 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 -1 -this.capacityIncrement 0 1 -anArray -1428614609 +this.capacityIncrement +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +minCapacity 1 -anArray[..] -[null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -811 +765 this -1207291995 +444920847 1 this.elementData -1531063109 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 -1 -anArray -1428614609 +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -812 +767 this -1207291995 +444920847 1 this.elementData -1531063109 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -1858560003 +112466394 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -812 +767 this -1207291995 +444920847 1 this.elementData -1531063109 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -1858560003 +112466394 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -813 +768 this -1207291995 +444920847 1 this.elementData -1531063109 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -1668324806 +992846223 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -813 +768 this -1207291995 +444920847 1 this.elementData -1531063109 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -1668324806 +992846223 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -814 -initialCapacity -1 -1 -capacityIncrement -0 +[540642172 null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -814 +769 this -1988519210 +444920847 1 this.elementData -1901847856 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 -initialCapacity +anArray +1493625803 1 +anArray.getClass().getName() +"java.lang.Object[]" 1 -capacityIncrement -0 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -815 +769 this -1988519210 +444920847 1 this.elementData -1901847856 +2032188048 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1493625803 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -815 +770 +initialCapacity +0 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +770 this -1988519210 +630074945 1 this.elementData -1901847856 +64133603 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +initialCapacity +0 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -816 +771 this -1988519210 +630074945 1 this.elementData -1901847856 +64133603 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -41747,660 +42397,666 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -817 +772 this -1988519210 +630074945 1 this.elementData -1901847856 +64133603 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -817 +772 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -816 +771 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -818 +773 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount -2 1 -this.capacityIncrement -0 1 -anArray -779671724 +this.capacityIncrement +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -818 +773 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 -1 -anArray -779671724 +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -819 +774 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -2144934921 +999522307 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -819 +774 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -2144934921 +999522307 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -820 +775 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -113235058 +1866161430 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -820 +775 this -1988519210 +630074945 1 this.elementData -1210313844 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -113235058 +1866161430 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -821 -initialCapacity -1 -1 -capacityIncrement -0 +[540642172 540642172 null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -821 +776 this -471108564 +630074945 1 this.elementData -149428659 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +4 1 -initialCapacity +anArray +2024918163 1 +anArray.getClass().getName() +"java.lang.Object[]" 1 -capacityIncrement -0 +anArray[..] +[1684792003 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -822 +776 this -471108564 +630074945 1 this.elementData -149428659 +1436901839 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +2024918163 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -822 +777 +initialCapacity +0 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +777 this -471108564 +107241811 1 this.elementData -149428659 +558922244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +initialCapacity +0 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -823 +778 this -471108564 +107241811 1 this.elementData -149428659 +558922244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -824 +779 this -471108564 +107241811 1 this.elementData -149428659 +558922244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -824 +779 this -471108564 +107241811 1 this.elementData -1039088470 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -823 +778 this -471108564 +107241811 1 this.elementData -1039088470 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -825 +780 this -471108564 +107241811 1 this.elementData -1039088470 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -826 +780 this -471108564 +107241811 1 this.elementData -1039088470 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -826 +781 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -825 +781 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -827 +782 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -61990877 +1653986196 1 anArray.getClass().getName() "java.lang.Object[]" @@ -42411,64 +43067,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -827 +782 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -61990877 +1653986196 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -828 +783 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -351100944 +1197365356 1 anArray.getClass().getName() "java.lang.Object[]" @@ -42479,533 +43135,477 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -828 +783 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -351100944 +1197365356 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null null null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -829 +784 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -1815987499 +1702660825 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -829 +784 this -471108564 +107241811 1 this.elementData -622897886 +339099861 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -1815987499 +1702660825 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -830 +785 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -830 +785 this -1264304529 +1131040331 1 this.elementData -1963015485 +254749889 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -831 +786 this -1264304529 +1131040331 1 this.elementData -1963015485 +254749889 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -831 -this -1264304529 -1 -this.elementData -1963015485 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object"] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -832 -this -1264304529 -1 -this.elementData -1963015485 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object"] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -833 +787 this -1264304529 +1131040331 1 this.elementData -1963015485 +254749889 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -833 +787 this -1264304529 +1131040331 1 this.elementData -609987534 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -832 +786 this -1264304529 +1131040331 1 this.elementData -609987534 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -834 +788 this -1264304529 +1131040331 1 this.elementData -609987534 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -835 +788 this -1264304529 +1131040331 1 this.elementData -609987534 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -835 +789 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -834 +789 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -836 +790 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -836 +790 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -837 +791 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -37075049 +992802731 1 anArray.getClass().getName() "java.lang.Object[]" @@ -43016,64 +43616,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -837 +791 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -37075049 +992802731 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -838 +792 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -350090913 +715521683 1 anArray.getClass().getName() "java.lang.Object[]" @@ -43084,471 +43684,415 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -838 +792 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -350090913 +715521683 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null null null null] +[540642172 540642172 null 1836797772 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -839 +793 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -2020265658 +1545242146 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -839 +793 this -1264304529 +1131040331 1 this.elementData -2121036807 +973576304 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -2020265658 +1545242146 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null] +[540642172 540642172 null 1836797772 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -840 +794 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -840 +794 this -740971289 +1524126153 1 this.elementData -246785270 +102065302 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -1 +0 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -841 +795 this -740971289 +1524126153 1 this.elementData -246785270 +102065302 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[] 1 this.elementData[..].getClass().getName() -[null] +[] 1 this.elementCount 0 1 this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -841 -this -740971289 -1 -this.elementData -246785270 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object"] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -842 -this -740971289 -1 -this.elementData -246785270 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object"] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -843 +796 this -740971289 +1524126153 1 this.elementData -246785270 +102065302 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -843 +796 this -740971289 +1524126153 1 this.elementData -929110533 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 minCapacity -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -842 +795 this -740971289 +1524126153 1 this.elementData -929110533 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -844 +797 this -740971289 +1524126153 1 this.elementData -929110533 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -845 +797 this -740971289 +1524126153 1 this.elementData -929110533 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -845 +798 this -740971289 +1524126153 1 this.elementData -1207130794 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -844 +798 this -740971289 +1524126153 1 this.elementData -1207130794 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -846 +799 this -740971289 +1524126153 1 this.elementData -1207130794 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -12733619 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -43556,30 +44100,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -846 +799 this -740971289 +1524126153 1 this.elementData -1207130794 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 obj -12733619 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -43587,58 +44131,58 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -847 +800 this -740971289 +1524126153 1 this.elementData -1207130794 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -848 +801 this -740971289 +1524126153 1 this.elementData -1207130794 +63001505 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 minCapacity 5 @@ -43646,27 +44190,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -848 +801 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null null null null] +[540642172 540642172 null 1836797772 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 minCapacity 5 @@ -43674,61 +44218,61 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -847 +800 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -849 +802 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1379251548 +330084561 1 anArray.getClass().getName() "java.lang.Object[]" @@ -43739,64 +44283,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -849 +802 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1379251548 +330084561 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360] +[540642172 540642172 null 1836797772 1477657879] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -850 +803 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1142281518 +1043351526 1 anArray.getClass().getName() "java.lang.Object[]" @@ -43807,124 +44351,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -850 +803 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1142281518 +1043351526 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null null null null null] +[540642172 540642172 null 1836797772 1477657879 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -851 +804 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1969152493 +937773018 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -851 +804 this -740971289 +1524126153 1 this.elementData -969241549 +191037037 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1969152493 +937773018 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null] +[540642172 540642172 null 1836797772 1477657879 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -852 +805 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -852 +805 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -43939,23 +44483,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -853 +806 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -43970,10 +44514,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1985172348 +1627857534 1 anArray.getClass().getName() "java.lang.Object[]" @@ -43984,12 +44528,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -853 +806 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44004,10 +44548,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1985172348 +1627857534 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44018,12 +44562,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -854 +807 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44038,10 +44582,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1485713044 +2084663827 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44052,12 +44596,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -854 +807 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44072,10 +44616,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1485713044 +2084663827 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44086,12 +44630,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -855 +808 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44106,26 +44650,26 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1586766839 +360062456 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -855 +808 this -675465934 +728258269 1 this.elementData -957394696 +1572098393 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44140,36 +44684,36 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1586766839 +360062456 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -856 +809 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -856 +809 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44184,23 +44728,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -857 +810 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44215,10 +44759,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44226,18 +44770,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -857 +810 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44246,10 +44790,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44257,18 +44801,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -858 +811 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44277,10 +44821,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -1355039451 +1172131546 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44291,18 +44835,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -858 +811 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44311,32 +44855,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -1355039451 +1172131546 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -859 +812 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44345,10 +44889,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -83976522 +1616974404 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44359,18 +44903,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -859 +812 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44379,32 +44923,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -83976522 +1616974404 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -860 +813 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44413,32 +44957,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -496649175 +927327686 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -860 +813 this -1338334627 +1790421142 1 this.elementData -646357311 +846947180 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44447,36 +44991,36 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -496649175 +927327686 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -861 +814 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -861 +814 this -2061231983 +1582071873 1 this.elementData -2067228524 +1908981452 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44491,23 +45035,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -862 +815 this -2061231983 +1582071873 1 this.elementData -2067228524 +1908981452 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44522,10 +45066,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44533,18 +45077,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -862 +815 this -2061231983 +1582071873 1 this.elementData -2067228524 +1908981452 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44553,10 +45097,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44564,18 +45108,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -863 +816 this -2061231983 +1582071873 1 this.elementData -2067228524 +1908981452 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44584,10 +45128,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44595,18 +45139,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -864 +817 this -2061231983 +1582071873 1 this.elementData -2067228524 +1908981452 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44615,7 +45159,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -44623,18 +45167,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -864 +817 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -44643,7 +45187,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -44651,18 +45195,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -863 +816 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44671,10 +45215,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44682,18 +45226,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -865 +818 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44702,10 +45246,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1360263927 +27319466 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44716,18 +45260,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -865 +818 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44736,32 +45280,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1360263927 +27319466 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -866 +819 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44770,10 +45314,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1992398774 +1003752023 1 anArray.getClass().getName() "java.lang.Object[]" @@ -44784,18 +45328,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -866 +819 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44804,32 +45348,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1992398774 +1003752023 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -867 +820 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44838,32 +45382,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -533686947 +266272063 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -867 +820 this -2061231983 +1582071873 1 this.elementData -1919361702 +433287555 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -44872,36 +45416,36 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -533686947 +266272063 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -868 +821 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -868 +821 this -1784808357 +226744878 1 this.elementData -1222474803 +172032696 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44916,23 +45460,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -869 +822 this -1784808357 +226744878 1 this.elementData -1222474803 +172032696 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -44947,10 +45491,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44958,18 +45502,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -869 +822 this -1784808357 +226744878 1 this.elementData -1222474803 +172032696 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -44978,10 +45522,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -44989,18 +45533,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -870 +823 this -1784808357 +226744878 1 this.elementData -1222474803 +172032696 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -45009,7 +45553,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj null @@ -45020,18 +45564,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -871 +824 this -1784808357 +226744878 1 this.elementData -1222474803 +172032696 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -45040,7 +45584,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -45048,18 +45592,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -871 +824 this -1784808357 +226744878 1 this.elementData -1157963172 +299644693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45068,7 +45612,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -45076,18 +45620,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -870 +823 this -1784808357 +226744878 1 this.elementData -1157963172 +299644693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45096,7 +45640,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj null @@ -45107,18 +45651,18 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -872 +825 this -1784808357 +226744878 1 this.elementData -1157963172 +299644693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45127,10 +45671,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -45138,18 +45682,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -873 +826 this -1784808357 +226744878 1 this.elementData -1157963172 +299644693 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45158,7 +45702,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -45166,27 +45710,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -873 +826 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -45194,30 +45738,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -872 +825 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -45225,30 +45769,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -874 +827 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -850671470 +2052256418 1 anArray.getClass().getName() "java.lang.Object[]" @@ -45259,64 +45803,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -874 +827 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -850671470 +2052256418 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -875 +828 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1436758211 +2013559698 1 anArray.getClass().getName() "java.lang.Object[]" @@ -45327,124 +45871,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -875 +828 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1436758211 +2013559698 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null null null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -876 +829 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1289125409 +143695640 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -876 +829 this -1784808357 +226744878 1 this.elementData -1390222690 +1771243284 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -1289125409 +143695640 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -877 +830 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -877 +830 this -368234480 +2043318969 1 this.elementData -2016518353 +341878976 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -45459,23 +46003,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -878 +831 this -368234480 +2043318969 1 this.elementData -2016518353 +341878976 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -45490,10 +46034,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -45501,18 +46045,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -878 +831 this -368234480 +2043318969 1 this.elementData -2016518353 +341878976 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -45521,10 +46065,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -45532,18 +46076,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -879 +832 this -368234480 +2043318969 1 this.elementData -2016518353 +341878976 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -45552,7 +46096,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj null @@ -45563,18 +46107,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -880 +833 this -368234480 +2043318969 1 this.elementData -2016518353 +341878976 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -45583,7 +46127,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -45591,18 +46135,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -880 +833 this -368234480 +2043318969 1 this.elementData -37041917 +1331923253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45611,7 +46155,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -45619,18 +46163,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -879 +832 this -368234480 +2043318969 1 this.elementData -37041917 +1331923253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45639,7 +46183,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj null @@ -45650,18 +46194,18 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -881 +834 this -368234480 +2043318969 1 this.elementData -37041917 +1331923253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45670,10 +46214,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -45681,18 +46225,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -882 +835 this -368234480 +2043318969 1 this.elementData -37041917 +1331923253 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -45701,7 +46245,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -45709,27 +46253,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -882 +835 this -368234480 +2043318969 1 this.elementData -1940725036 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -45737,30 +46281,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -881 +834 this -368234480 +2043318969 1 this.elementData -1940725036 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -45768,105 +46312,49 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -883 +836 this -368234480 +2043318969 1 this.elementData -1940725036 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -884 -this -368234480 -1 -this.elementData -1940725036 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null 726045964] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer"] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -884 -this -368234480 -1 -this.elementData -1784049416 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null 726045964 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -883 +836 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -45875,10 +46363,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -45886,18 +46374,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -885 +837 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -45906,10 +46394,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1351855298 +1853205005 1 anArray.getClass().getName() "java.lang.Object[]" @@ -45920,18 +46408,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -885 +837 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -45940,32 +46428,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1351855298 +1853205005 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -886 +838 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -45974,10 +46462,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -255008226 +2143431083 1 anArray.getClass().getName() "java.lang.Object[]" @@ -45988,18 +46476,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -886 +838 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -46008,32 +46496,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -255008226 +2143431083 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null null null null] +[540642172 null 1836797772 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -887 +839 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -46042,32 +46530,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1693378617 +750468423 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -887 +839 this -368234480 +2043318969 1 this.elementData -1784049416 +1132967838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] @@ -46076,36 +46564,36 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1693378617 +750468423 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -888 +840 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -888 +840 this -13642228 +1384010761 1 this.elementData -1651659414 +295221641 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -46120,23 +46608,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 1 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -889 +841 this -13642228 +1384010761 1 this.elementData -1651659414 +295221641 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -46151,10 +46639,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -46162,18 +46650,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -889 +841 this -13642228 +1384010761 1 this.elementData -1651659414 +295221641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -46182,10 +46670,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -46193,18 +46681,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -890 +842 this -13642228 +1384010761 1 this.elementData -1651659414 +295221641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -46213,7 +46701,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj null @@ -46224,18 +46712,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -891 +843 this -13642228 +1384010761 1 this.elementData -1651659414 +295221641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -46244,7 +46732,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -46252,18 +46740,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -891 +843 this -13642228 +1384010761 1 this.elementData -1066149976 +2147046752 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -46272,7 +46760,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -46280,18 +46768,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -890 +842 this -13642228 +1384010761 1 this.elementData -1066149976 +2147046752 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -46300,7 +46788,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj null @@ -46311,18 +46799,18 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -892 +844 this -13642228 +1384010761 1 this.elementData -1066149976 +2147046752 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -46331,10 +46819,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -46342,18 +46830,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -893 +845 this -13642228 +1384010761 1 this.elementData -1066149976 +2147046752 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -46362,7 +46850,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -46370,27 +46858,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -893 +845 this -13642228 +1384010761 1 this.elementData -179096064 +182259421 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -46398,30 +46886,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -892 +844 this -13642228 +1384010761 1 this.elementData -179096064 +182259421 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -46429,105 +46917,49 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -894 +846 this -13642228 +1384010761 1 this.elementData -179096064 +182259421 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -895 -this -13642228 -1 -this.elementData -179096064 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null 726045964] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer"] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -895 -this -13642228 -1 -this.elementData -1442958201 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null 726045964 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -894 +846 this -13642228 +1384010761 1 this.elementData -1442958201 +182259421 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] @@ -46536,10 +46968,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -46547,18 +46979,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -896 +847 this -13642228 +1384010761 1 this.elementData -1442958201 +182259421 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] @@ -46567,10 +46999,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -46578,18 +47010,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -897 +848 this -13642228 +1384010761 1 this.elementData -1442958201 +182259421 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] @@ -46598,7 +47030,7 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 minCapacity 5 @@ -46606,27 +47038,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -897 +848 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null] +[540642172 null 1836797772 1477657879 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null null] 1 this.elementCount 4 1 this.capacityIncrement -1 +0 1 minCapacity 5 @@ -46634,30 +47066,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -896 +847 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -46665,30 +47097,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -898 +849 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -306193139 +2124643775 1 anArray.getClass().getName() "java.lang.Object[]" @@ -46699,64 +47131,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -898 +849 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -306193139 +2124643775 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -899 +850 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -817268961 +1262773598 1 anArray.getClass().getName() "java.lang.Object[]" @@ -46767,124 +47199,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -899 +850 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -817268961 +1262773598 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null null null null null] +[540642172 null 1836797772 1477657879 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -900 +851 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -534021315 +688726285 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -900 +851 this -13642228 +1384010761 1 this.elementData -265658636 +715378067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -534021315 +688726285 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null] +[540642172 null 1836797772 1477657879 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -901 +852 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -901 +852 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -46899,23 +47331,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -902 +853 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -46930,10 +47362,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -1674157486 +282821294 1 anArray.getClass().getName() "java.lang.Object[]" @@ -46944,12 +47376,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -902 +853 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -46964,10 +47396,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -1674157486 +282821294 1 anArray.getClass().getName() "java.lang.Object[]" @@ -46978,12 +47410,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -903 +854 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -46998,10 +47430,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -1234124208 +1344199921 1 anArray.getClass().getName() "java.lang.Object[]" @@ -47012,12 +47444,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -903 +854 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47032,10 +47464,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -1234124208 +1344199921 1 anArray.getClass().getName() "java.lang.Object[]" @@ -47046,12 +47478,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -904 +855 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47066,26 +47498,26 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -1528501130 +2025269734 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -904 +855 this -962080392 +494317290 1 this.elementData -1280770081 +2027775614 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47100,36 +47532,36 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 anArray -1528501130 +2025269734 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -905 +856 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -905 +856 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47144,23 +47576,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -906 +857 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47175,10 +47607,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47186,18 +47618,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -906 +857 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47206,10 +47638,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47217,18 +47649,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -907 +858 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47237,10 +47669,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -1737577054 +26728049 1 anArray.getClass().getName() "java.lang.Object[]" @@ -47251,18 +47683,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -907 +858 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47271,32 +47703,32 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -1737577054 +26728049 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -908 +859 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47305,10 +47737,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -1974914672 +1076770748 1 anArray.getClass().getName() "java.lang.Object[]" @@ -47319,18 +47751,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -908 +859 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47339,32 +47771,32 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -1974914672 +1076770748 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -909 +860 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47373,32 +47805,32 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -883644272 +2041416495 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -909 +860 this -1319106496 +1800031768 1 this.elementData -1749190291 +667447085 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47407,36 +47839,36 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 anArray -883644272 +2041416495 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -910 +861 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -910 +861 this -1559860499 +502800944 1 this.elementData -95044117 +576936864 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47451,23 +47883,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -911 +862 this -1559860499 +502800944 1 this.elementData -95044117 +576936864 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47482,10 +47914,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47493,18 +47925,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -911 +862 this -1559860499 +502800944 1 this.elementData -95044117 +576936864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47513,10 +47945,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47524,18 +47956,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -912 +863 this -1559860499 +502800944 1 this.elementData -95044117 +576936864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47544,10 +47976,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47555,18 +47987,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -913 +864 this -1559860499 +502800944 1 this.elementData -95044117 +576936864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47575,7 +48007,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 minCapacity 2 @@ -47583,27 +48015,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -913 +864 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 minCapacity 2 @@ -47611,30 +48043,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -912 +863 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47642,30 +48074,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -914 +865 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1989000009 +111156771 1 anArray.getClass().getName() "java.lang.Object[]" @@ -47676,64 +48108,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -914 +865 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1989000009 +111156771 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -915 +866 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1392702061 +1519736165 1 anArray.getClass().getName() "java.lang.Object[]" @@ -47744,124 +48176,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -915 +866 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1392702061 +1519736165 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -916 +867 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1719270574 +1653844940 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -916 +867 this -1559860499 +502800944 1 this.elementData -1826124698 +331418503 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 anArray -1719270574 +1653844940 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -917 +868 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -917 +868 this -1388066833 +2039810346 1 this.elementData -1124404870 +2143437117 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47876,23 +48308,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -918 +869 this -1388066833 +2039810346 1 this.elementData -1124404870 +2143437117 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -47907,10 +48339,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47918,18 +48350,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -918 +869 this -1388066833 +2039810346 1 this.elementData -1124404870 +2143437117 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47938,10 +48370,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -47949,18 +48381,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -919 +870 this -1388066833 +2039810346 1 this.elementData -1124404870 +2143437117 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -47969,7 +48401,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj null @@ -47980,18 +48412,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -920 +871 this -1388066833 +2039810346 1 this.elementData -1124404870 +2143437117 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -48000,7 +48432,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 minCapacity 2 @@ -48008,27 +48440,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -920 +871 this -1388066833 +2039810346 1 this.elementData -16556490 +260840925 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 minCapacity 2 @@ -48036,27 +48468,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -919 +870 this -1388066833 +2039810346 1 this.elementData -16556490 +260840925 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj null @@ -48067,49 +48499,105 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -921 +872 this -1388066833 +2039810346 1 this.elementData -16556490 +260840925 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +873 +this +2039810346 +1 +this.elementData +260840925 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +2 +1 +this.capacityIncrement +1 +1 +minCapacity +3 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +873 +this +2039810346 +1 +this.elementData +1891502635 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null] +1 +this.elementCount +2 +1 +this.capacityIncrement +1 +1 +minCapacity +3 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -921 +872 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48118,10 +48606,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -48129,18 +48617,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -922 +874 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48149,10 +48637,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -1239536967 +557023567 1 anArray.getClass().getName() "java.lang.Object[]" @@ -48163,18 +48651,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -922 +874 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48183,32 +48671,32 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -1239536967 +557023567 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -923 +875 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48217,10 +48705,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -158944822 +1276504061 1 anArray.getClass().getName() "java.lang.Object[]" @@ -48231,18 +48719,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -923 +875 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48251,32 +48739,32 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -158944822 +1276504061 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null null null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -924 +876 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48285,32 +48773,32 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -2063450133 +597190999 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -924 +876 this -1388066833 +2039810346 1 this.elementData -16556490 +1891502635 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Object"] @@ -48319,36 +48807,36 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 anArray -2063450133 +597190999 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -925 +877 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -925 +877 this -692969928 +603443293 1 this.elementData -941762215 +510854293 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -48363,23 +48851,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -926 +878 this -692969928 +603443293 1 this.elementData -941762215 +510854293 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -48394,10 +48882,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -48405,18 +48893,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -926 +878 this -692969928 +603443293 1 this.elementData -941762215 +510854293 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -48425,10 +48913,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -48436,18 +48924,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -927 +879 this -692969928 +603443293 1 this.elementData -941762215 +510854293 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -48456,7 +48944,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj null @@ -48467,18 +48955,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -928 +880 this -692969928 +603443293 1 this.elementData -941762215 +510854293 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -48487,85 +48975,144 @@ this.elementCount 1 1 this.capacityIncrement +1 +1 +minCapacity 2 1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +880 +this +603443293 +1 +this.elementData +2100961961 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 minCapacity 2 -1 +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +879 +this +603443293 +1 +this.elementData +2100961961 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +2 +1 +this.capacityIncrement +1 +1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -928 +881 this -692969928 +603443293 1 this.elementData -1243069115 +2100961961 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount -1 +2 1 this.capacityIncrement -2 1 -minCapacity -2 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -927 +882 this -692969928 +603443293 1 this.elementData -1243069115 +2100961961 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 +minCapacity +3 +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -929 +882 this -692969928 +603443293 1 this.elementData -1243069115 +487075464 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null] @@ -48574,29 +49121,26 @@ this.elementCount 2 1 this.capacityIncrement -2 1 -obj -726045964 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +3 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -929 +881 this -692969928 +603443293 1 this.elementData -1243069115 +487075464 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer"] @@ -48605,10 +49149,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -48616,18 +49160,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -930 +883 this -692969928 +603443293 1 this.elementData -1243069115 +487075464 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer"] @@ -48636,10 +49180,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -48647,18 +49191,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -931 +884 this -692969928 +603443293 1 this.elementData -1243069115 +487075464 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer"] @@ -48667,7 +49211,7 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 minCapacity 4 @@ -48675,27 +49219,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -931 +884 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null null] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 minCapacity 4 @@ -48703,30 +49247,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -930 +883 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -48734,30 +49278,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -932 +885 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -1924538668 +112302969 1 anArray.getClass().getName() "java.lang.Object[]" @@ -48768,64 +49312,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -932 +885 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -1924538668 +112302969 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -933 +886 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -322701962 +707976812 1 anArray.getClass().getName() "java.lang.Object[]" @@ -48836,124 +49380,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -933 +886 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -322701962 +707976812 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null null null null] +[540642172 null 1836797772 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -934 +887 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -1255666659 +1989335500 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -934 +887 this -692969928 +603443293 1 this.elementData -1541697789 +6320204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 anArray -1255666659 +1989335500 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -935 +888 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -935 +888 this -667738744 +1978869058 1 this.elementData -2083014833 +2131952342 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -48968,23 +49512,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 1 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -936 +889 this -667738744 +1978869058 1 this.elementData -2083014833 +2131952342 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -48999,10 +49543,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -49010,18 +49554,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -936 +889 this -667738744 +1978869058 1 this.elementData -2083014833 +2131952342 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -49030,10 +49574,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -49041,18 +49585,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -937 +890 this -667738744 +1978869058 1 this.elementData -2083014833 +2131952342 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -49061,7 +49605,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj null @@ -49072,18 +49616,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -938 +891 this -667738744 +1978869058 1 this.elementData -2083014833 +2131952342 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -49092,7 +49636,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 minCapacity 2 @@ -49100,27 +49644,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -938 +891 this -667738744 +1978869058 1 this.elementData -951884837 +1139700454 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 minCapacity 2 @@ -49128,27 +49672,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -937 +890 this -667738744 +1978869058 1 this.elementData -951884837 +1139700454 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj null @@ -49159,49 +49703,105 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -939 +892 this -667738744 +1978869058 1 this.elementData -951884837 +1139700454 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +893 +this +1978869058 +1 +this.elementData +1139700454 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +2 +1 +this.capacityIncrement +1 +1 +minCapacity +3 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +893 +this +1978869058 +1 +this.elementData +592617454 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null] +1 +this.elementCount +2 +1 +this.capacityIncrement +1 +1 +minCapacity +3 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -939 +892 this -667738744 +1978869058 1 this.elementData -951884837 +592617454 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer"] @@ -49210,10 +49810,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -49221,18 +49821,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -940 +894 this -667738744 +1978869058 1 this.elementData -951884837 +592617454 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer"] @@ -49241,10 +49841,10 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -49252,18 +49852,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -941 +895 this -667738744 +1978869058 1 this.elementData -951884837 +592617454 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer"] @@ -49272,7 +49872,7 @@ this.elementCount 3 1 this.capacityIncrement -2 +1 1 minCapacity 4 @@ -49280,27 +49880,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -941 +895 this -667738744 +1978869058 1 this.elementData -1722768956 +1340565491 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null null] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -2 +1 1 minCapacity 4 @@ -49308,30 +49908,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -940 +894 this -667738744 +1978869058 1 this.elementData -1722768956 +1340565491 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -49339,49 +49939,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -942 +896 this -667738744 +1978869058 1 this.elementData -1722768956 +1340565491 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +897 +this +1978869058 +1 +this.elementData +1340565491 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 1836797772 1477657879] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +1 +this.elementCount +4 +1 +this.capacityIncrement +1 +1 +minCapacity +5 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +897 +this +1978869058 +1 +this.elementData +671467883 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 1836797772 1477657879 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +1 +this.elementCount +4 +1 +this.capacityIncrement +1 +1 +minCapacity +5 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -942 +896 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49390,10 +50046,10 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -49401,18 +50057,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -943 +898 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49421,10 +50077,10 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -55830991 +407697359 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49435,18 +50091,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -943 +898 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49455,32 +50111,32 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -55830991 +407697359 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -944 +899 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49489,10 +50145,10 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -2048595645 +802600647 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49503,18 +50159,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -944 +899 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49523,32 +50179,32 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -2048595645 +802600647 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null null null null null] +[540642172 null 1836797772 1477657879 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -945 +900 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49557,32 +50213,32 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -141693164 +1543148593 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -945 +900 this -667738744 +1978869058 1 this.elementData -1722768956 +671467883 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -49591,36 +50247,36 @@ this.elementCount 5 1 this.capacityIncrement -2 +1 1 anArray -141693164 +1543148593 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null] +[540642172 null 1836797772 1477657879 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -946 +901 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -946 +901 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49635,23 +50291,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -947 +902 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49666,10 +50322,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1797559096 +952486988 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49680,12 +50336,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -947 +902 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49700,10 +50356,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1797559096 +952486988 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49714,12 +50370,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -948 +903 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49734,10 +50390,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -775780476 +932285561 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49748,12 +50404,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -948 +903 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49768,10 +50424,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -775780476 +932285561 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49782,12 +50438,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -949 +904 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49802,26 +50458,26 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1169239195 +2028555727 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -949 +904 this -2025126472 +1571967156 1 this.elementData -832293601 +574568002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49836,36 +50492,36 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 anArray -1169239195 +2028555727 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -950 +905 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -950 +905 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49880,23 +50536,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -951 +906 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -49911,10 +50567,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -49922,18 +50578,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -951 +906 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -49942,10 +50598,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -49953,18 +50609,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -952 +907 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -49973,10 +50629,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1419564609 +247944893 1 anArray.getClass().getName() "java.lang.Object[]" @@ -49987,18 +50643,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -952 +907 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50007,32 +50663,32 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1419564609 +247944893 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -953 +908 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50041,10 +50697,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -79065293 +1014166943 1 anArray.getClass().getName() "java.lang.Object[]" @@ -50055,18 +50711,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -953 +908 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50075,32 +50731,32 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -79065293 +1014166943 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -954 +909 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50109,32 +50765,32 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1705485605 +1625082366 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -954 +909 this -1927780315 +591391158 1 this.elementData -1117971916 +898557489 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50143,36 +50799,36 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 anArray -1705485605 +1625082366 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -955 +910 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -955 +910 this -1632326726 +572593338 1 this.elementData -411693457 +384294141 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -50187,23 +50843,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -956 +911 this -1632326726 +572593338 1 this.elementData -411693457 +384294141 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -50218,10 +50874,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50229,18 +50885,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -956 +911 this -1632326726 +572593338 1 this.elementData -411693457 +384294141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50249,10 +50905,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50260,18 +50916,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -957 +912 this -1632326726 +572593338 1 this.elementData -411693457 +384294141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50280,10 +50936,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50291,18 +50947,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -958 +913 this -1632326726 +572593338 1 this.elementData -411693457 +384294141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50311,7 +50967,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -50319,27 +50975,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -958 +913 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -50347,30 +51003,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -957 +912 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50378,30 +51034,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -959 +914 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -1560777631 +990355670 1 anArray.getClass().getName() "java.lang.Object[]" @@ -50412,64 +51068,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -959 +914 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -1560777631 +990355670 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -960 +915 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -476896112 +296347592 1 anArray.getClass().getName() "java.lang.Object[]" @@ -50480,124 +51136,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -960 +915 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -476896112 +296347592 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -961 +916 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -783983780 +956420404 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -961 +916 this -1632326726 +572593338 1 this.elementData -139621165 +1024597427 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 anArray -783983780 +956420404 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -962 +917 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -962 +917 this -1603216115 +349420578 1 this.elementData -775925896 +315932542 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -50612,23 +51268,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -963 +918 this -1603216115 +349420578 1 this.elementData -775925896 +315932542 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -50643,10 +51299,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50654,18 +51310,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -963 +918 this -1603216115 +349420578 1 this.elementData -775925896 +315932542 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50674,10 +51330,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50685,18 +51341,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -964 +919 this -1603216115 +349420578 1 this.elementData -775925896 +315932542 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50705,7 +51361,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj null @@ -50716,18 +51372,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -965 +920 this -1603216115 +349420578 1 this.elementData -775925896 +315932542 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -50736,7 +51392,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -50744,27 +51400,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -965 +920 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -50772,27 +51428,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -964 +919 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj null @@ -50803,30 +51459,30 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -966 +921 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50834,30 +51490,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -966 +921 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -50865,30 +51521,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -967 +922 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -263806432 +2065857933 1 anArray.getClass().getName() "java.lang.Object[]" @@ -50899,64 +51555,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -967 +922 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -263806432 +2065857933 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -968 +923 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1388455216 +1914301543 1 anArray.getClass().getName() "java.lang.Object[]" @@ -50967,124 +51623,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -968 +923 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1388455216 +1914301543 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null null null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -969 +924 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1209507010 +1157726741 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -969 +924 this -1603216115 +349420578 1 this.elementData -1465829488 +1277009227 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[540642172 null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 anArray -1209507010 +1157726741 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -970 +925 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -970 +925 this -104114568 +1708570683 1 this.elementData -1801855718 +225472281 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -51099,23 +51755,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -971 +926 this -104114568 +1708570683 1 this.elementData -1801855718 +225472281 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -51130,10 +51786,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -51141,18 +51797,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -971 +926 this -104114568 +1708570683 1 this.elementData -1801855718 +225472281 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -51161,10 +51817,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -51172,18 +51828,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -972 +927 this -104114568 +1708570683 1 this.elementData -1801855718 +225472281 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -51192,7 +51848,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj null @@ -51203,18 +51859,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -973 +928 this -104114568 +1708570683 1 this.elementData -1801855718 +225472281 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -51223,7 +51879,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -51231,27 +51887,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -973 +928 this -104114568 +1708570683 1 this.elementData -2122146079 +817348612 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -51259,27 +51915,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -972 +927 this -104114568 +1708570683 1 this.elementData -2122146079 +817348612 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj null @@ -51290,30 +51946,30 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -974 +929 this -104114568 +1708570683 1 this.elementData -2122146079 +817348612 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -51321,30 +51977,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -974 +929 this -104114568 +1708570683 1 this.elementData -2122146079 +817348612 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -51352,61 +52008,117 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -975 +930 this -104114568 +1708570683 1 this.elementData -2122146079 +817348612 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +931 +this +1708570683 +1 +this.elementData +817348612 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 1836797772] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Integer"] +1 +this.elementCount +3 +1 +this.capacityIncrement +2 +1 +minCapacity +4 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +931 +this +1708570683 +1 +this.elementData +2045766957 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 1836797772 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Integer" null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +2 +1 +minCapacity +4 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -975 +930 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -51414,30 +52126,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -976 +932 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1500740377 +690521419 1 anArray.getClass().getName() "java.lang.Object[]" @@ -51448,64 +52160,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -976 +932 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1500740377 +690521419 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -977 +933 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -748082224 +665726928 1 anArray.getClass().getName() "java.lang.Object[]" @@ -51516,124 +52228,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -977 +933 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -748082224 +665726928 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null null null null] +[540642172 null 1836797772 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -978 +934 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1648669230 +689401025 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -978 +934 this -104114568 +1708570683 1 this.elementData -2122146079 +2045766957 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 anArray -1648669230 +689401025 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -979 +935 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -979 +935 this -202251369 +790067787 1 this.elementData -1919629229 +1115201599 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -51648,23 +52360,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 1 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -980 +936 this -202251369 +790067787 1 this.elementData -1919629229 +1115201599 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -51679,10 +52391,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -51690,18 +52402,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -980 +936 this -202251369 +790067787 1 this.elementData -1919629229 +1115201599 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -51710,10 +52422,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -51721,18 +52433,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -981 +937 this -202251369 +790067787 1 this.elementData -1919629229 +1115201599 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -51741,7 +52453,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj null @@ -51752,18 +52464,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -982 +938 this -202251369 +790067787 1 this.elementData -1919629229 +1115201599 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -51772,7 +52484,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -51780,27 +52492,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -982 +938 this -202251369 +790067787 1 this.elementData -1561622922 +343856911 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 minCapacity 2 @@ -51808,27 +52520,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -981 +937 this -202251369 +790067787 1 this.elementData -1561622922 +343856911 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj null @@ -51839,30 +52551,30 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -983 +939 this -202251369 +790067787 1 this.elementData -1561622922 +343856911 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -51870,30 +52582,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -983 +939 this -202251369 +790067787 1 this.elementData -1561622922 +343856911 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -51901,179 +52613,179 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -984 +940 this -202251369 +790067787 1 this.elementData -1561622922 +343856911 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer"] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -984 +941 this -202251369 +790067787 1 this.elementData -1561622922 +343856911 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -4 -1 -this.capacityIncrement 3 1 -obj -12733619 +this.capacityIncrement +2 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -985 +941 this -202251369 +790067787 1 this.elementData -1561622922 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -4 -1 -this.capacityIncrement 3 1 -obj -245301360 +this.capacityIncrement +2 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +4 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -986 +940 this -202251369 +790067787 1 this.elementData -1561622922 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619] +[540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 -minCapacity -5 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -986 +942 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null null null] +[540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 4 1 this.capacityIncrement -3 +2 1 -minCapacity -5 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -985 +942 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -52081,30 +52793,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -987 +943 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -157943603 +306980751 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52115,64 +52827,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -987 +943 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -157943603 +306980751 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -988 +944 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -268347929 +363988129 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52183,124 +52895,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -988 +944 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -268347929 +363988129 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null null null null null] +[540642172 null 1836797772 1477657879 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -989 +945 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -407984003 +1997963191 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -989 +945 this -202251369 +790067787 1 this.elementData -1798800067 +102617125 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360 null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -3 +2 1 anArray -407984003 +1997963191 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null] +[540642172 null 1836797772 1477657879 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -990 +946 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -990 +946 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52315,23 +53027,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -991 +947 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52346,10 +53058,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -79960271 +1769193365 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52360,12 +53072,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -991 +947 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52380,10 +53092,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -79960271 +1769193365 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52394,12 +53106,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -992 +948 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52414,10 +53126,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1714995322 +769429195 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52428,12 +53140,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -992 +948 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52448,10 +53160,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -1714995322 +769429195 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52462,12 +53174,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -993 +949 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52482,26 +53194,26 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -400866820 +580718781 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -993 +949 this -71853550 +534906248 1 this.elementData -756805236 +1826699684 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52516,36 +53228,36 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 anArray -400866820 +580718781 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -994 +950 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -994 +950 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52560,23 +53272,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -995 +951 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52591,10 +53303,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -52602,18 +53314,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -995 +951 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52622,10 +53334,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -52633,18 +53345,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -996 +952 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52653,10 +53365,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -1467586866 +2051853139 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52667,18 +53379,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -996 +952 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52687,32 +53399,32 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -1467586866 +2051853139 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -997 +953 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52721,10 +53433,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -1882771067 +815674463 1 anArray.getClass().getName() "java.lang.Object[]" @@ -52735,18 +53447,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -997 +953 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52755,32 +53467,32 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -1882771067 +815674463 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -998 +954 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52789,32 +53501,32 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -561784524 +1453774246 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -998 +954 this -712443101 +1196695891 1 this.elementData -1809866482 +867148091 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52823,36 +53535,36 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 anArray -561784524 +1453774246 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -999 +955 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -999 +955 this -1574382656 +416153648 1 this.elementData -1503284705 +71587369 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52867,23 +53579,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1000 +956 this -1574382656 +416153648 1 this.elementData -1503284705 +71587369 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -52898,10 +53610,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -52909,18 +53621,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1000 +956 this -1574382656 +416153648 1 this.elementData -1503284705 +71587369 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52929,10 +53641,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -52940,18 +53652,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1001 +957 this -1574382656 +416153648 1 this.elementData -1503284705 +71587369 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52960,10 +53672,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -52971,18 +53683,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1002 +958 this -1574382656 +416153648 1 this.elementData -1503284705 +71587369 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -52991,7 +53703,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -52999,27 +53711,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1002 +958 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -53027,30 +53739,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1001 +957 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53058,30 +53770,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1003 +959 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -96963530 +634540230 1 anArray.getClass().getName() "java.lang.Object[]" @@ -53092,64 +53804,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1003 +959 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -96963530 +634540230 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1004 +960 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -1873444284 +1307904972 1 anArray.getClass().getName() "java.lang.Object[]" @@ -53160,124 +53872,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1004 +960 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -1873444284 +1307904972 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1005 +961 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -572848874 +1797712197 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1005 +961 this -1574382656 +416153648 1 this.elementData -560929980 +1169794610 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 anArray -572848874 +1797712197 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1006 +962 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1006 +962 this -701835817 +1671846437 1 this.elementData -1774386995 +1422222071 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -53292,23 +54004,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1007 +963 this -701835817 +1671846437 1 this.elementData -1774386995 +1422222071 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -53323,10 +54035,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53334,18 +54046,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1007 +963 this -701835817 +1671846437 1 this.elementData -1774386995 +1422222071 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -53354,10 +54066,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53365,18 +54077,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1008 +964 this -701835817 +1671846437 1 this.elementData -1774386995 +1422222071 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -53385,7 +54097,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj null @@ -53396,18 +54108,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1009 +965 this -701835817 +1671846437 1 this.elementData -1774386995 +1422222071 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -53416,7 +54128,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -53424,27 +54136,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1009 +965 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -53452,27 +54164,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1008 +964 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj null @@ -53483,30 +54195,30 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1010 +966 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53514,30 +54226,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1010 +966 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53545,30 +54257,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1011 +967 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -1357852575 +1840976765 1 anArray.getClass().getName() "java.lang.Object[]" @@ -53579,64 +54291,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1011 +967 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -1357852575 +1840976765 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1012 +968 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -119511356 +1016925085 1 anArray.getClass().getName() "java.lang.Object[]" @@ -53647,124 +54359,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1012 +968 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -119511356 +1016925085 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null null null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1013 +969 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -730150347 +1127224355 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1013 +969 this -701835817 +1671846437 1 this.elementData -16819076 +831236296 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 anArray -730150347 +1127224355 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1014 +970 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1014 +970 this -915323071 +789653861 1 this.elementData -1409490836 +436532993 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -53779,23 +54491,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1015 +971 this -915323071 +789653861 1 this.elementData -1409490836 +436532993 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -53810,10 +54522,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53821,18 +54533,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1015 +971 this -915323071 +789653861 1 this.elementData -1409490836 +436532993 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -53841,10 +54553,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -53852,18 +54564,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1016 +972 this -915323071 +789653861 1 this.elementData -1409490836 +436532993 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -53872,7 +54584,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj null @@ -53883,18 +54595,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1017 +973 this -915323071 +789653861 1 this.elementData -1409490836 +436532993 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -53903,7 +54615,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -53911,27 +54623,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1017 +973 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -53939,27 +54651,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1016 +972 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj null @@ -53970,30 +54682,30 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1018 +974 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -54001,30 +54713,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1018 +974 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null null] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -54032,30 +54744,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1019 +975 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null null] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -54063,30 +54775,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1019 +975 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -54094,30 +54806,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1020 +976 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -2094875182 +222511810 1 anArray.getClass().getName() "java.lang.Object[]" @@ -54128,64 +54840,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1020 +976 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -2094875182 +222511810 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360] +[540642172 null 1836797772 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1021 +977 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -572791309 +733943822 1 anArray.getClass().getName() "java.lang.Object[]" @@ -54196,124 +54908,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1021 +977 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -572791309 +733943822 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null null null null] +[540642172 null 1836797772 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1022 +978 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -1881824509 +373182087 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1022 +978 this -915323071 +789653861 1 this.elementData -420370595 +1318180415 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 anArray -1881824509 +373182087 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 245301360 null] +[540642172 null 1836797772 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1023 +979 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1023 +979 this -1832853394 +1457410641 1 this.elementData -1261560390 +1100767002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -54328,23 +55040,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 1 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1024 +980 this -1832853394 +1457410641 1 this.elementData -1261560390 +1100767002 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -54359,10 +55071,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -54370,18 +55082,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1024 +980 this -1832853394 +1457410641 1 this.elementData -1261560390 +1100767002 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -54390,10 +55102,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -54401,18 +55113,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1025 +981 this -1832853394 +1457410641 1 this.elementData -1261560390 +1100767002 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -54421,7 +55133,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj null @@ -54432,18 +55144,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1026 +982 this -1832853394 +1457410641 1 this.elementData -1261560390 +1100767002 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -54452,7 +55164,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -54460,27 +55172,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1026 +982 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 minCapacity 2 @@ -54488,27 +55200,27 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1025 +981 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj null @@ -54519,30 +55231,30 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1027 +983 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null null] +["java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +3 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -54550,30 +55262,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1027 +983 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null null] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -54581,30 +55293,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1028 +984 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 null null] +[540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -4 +3 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -54612,30 +55324,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1028 +984 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -54643,61 +55355,117 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1029 +985 this -1832853394 +1457410641 1 this.elementData -939427899 +313540687 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 null] +[540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount 4 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +986 +this +1457410641 +1 +this.elementData +313540687 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 1836797772 1477657879] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +1 +this.elementCount +4 +1 +this.capacityIncrement +3 +1 +minCapacity +5 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +986 +this +1457410641 +1 +this.elementData +1990098664 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 1836797772 1477657879 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +1 +this.elementCount +4 +1 +this.capacityIncrement +3 +1 +minCapacity +5 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1029 +985 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -54705,30 +55473,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1030 +987 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -664925749 +1383524016 1 anArray.getClass().getName() "java.lang.Object[]" @@ -54739,64 +55507,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1030 +987 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -664925749 +1383524016 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1031 +988 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -2049648102 +1907431275 1 anArray.getClass().getName() "java.lang.Object[]" @@ -54807,173 +55575,173 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1031 +988 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -2049648102 +1907431275 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null null null null null] +[540642172 null 1836797772 1477657879 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1032 +989 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -650468787 +1637061418 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1032 +989 this -1832853394 +1457410641 1 this.elementData -939427899 +1990098664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 5 1 this.capacityIncrement -4 +3 1 anArray -650468787 +1637061418 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null 726045964 12733619 245301360 null] +[540642172 null 1836797772 1477657879 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1033 +990 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1033 +990 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1034 +991 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -813783432 +2024453272 1 anArray.getClass().getName() "java.lang.Object[]" @@ -54984,30 +55752,30 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1034 +991 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -813783432 +2024453272 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55018,30 +55786,30 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1035 +992 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -2082277528 +98394724 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55052,30 +55820,30 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1035 +992 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -2082277528 +98394724 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55086,139 +55854,139 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1036 +993 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -1444901584 +536765369 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1036 +993 this -1737139879 +1686100174 1 this.elementData -1069765388 +22671767 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 anArray -1444901584 +536765369 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1037 +994 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1037 +994 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1038 +995 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -55226,30 +55994,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1038 +995 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -55257,30 +56025,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1039 +996 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -1972321710 +317071334 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55291,64 +56059,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1039 +996 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -1972321710 +317071334 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1040 +997 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -253404878 +2129221032 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55359,266 +56127,322 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1040 +997 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 anArray -253404878 +2129221032 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1041 +998 this -715842012 +1374026904 1 this.elementData -953305190 +2085002312 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 +1 +anArray +1472465 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +this_invocation_nonce +998 +this +1374026904 +1 +this.elementData +2085002312 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Object"] +1 +this.elementCount +1 +1 +this.capacityIncrement +4 1 anArray -515712545 +1472465 1 anArray.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[413835715 null] +anArray[..] +[540642172 null] +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +999 +initialCapacity +1 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +999 +this +1224347463 +1 +this.elementData +1791045777 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[null] +1 +this.elementData[..].getClass().getName() +[null] +1 +this.elementCount +0 +1 +this.capacityIncrement +4 +1 +initialCapacity +1 +1 +capacityIncrement +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1041 +1000 this -715842012 +1224347463 1 this.elementData -953305190 +1791045777 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null] 1 this.elementCount -1 -1 -this.capacityIncrement 0 1 -anArray -515712545 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null] +this.capacityIncrement +4 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1042 -initialCapacity -2 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1042 +1000 this -336744523 +1224347463 1 this.elementData -1045788216 +1791045777 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object"] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 -initialCapacity -2 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1043 +1001 this -336744523 +1224347463 1 this.elementData -1045788216 +1791045777 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object"] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1043 +1002 this -336744523 +1224347463 1 this.elementData -1045788216 +1791045777 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 -1 -obj -245301360 +4 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +2 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1044 +1002 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 -1 -obj -245301360 +4 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +2 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1044 +1001 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -55626,30 +56450,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1045 +1003 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -1556379264 +1831477404 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55660,64 +56484,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1045 +1003 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -1556379264 +1831477404 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1046 +1004 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -1715469588 +1966250569 1 anArray.getClass().getName() "java.lang.Object[]" @@ -55728,384 +56552,384 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1046 +1004 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -1715469588 +1966250569 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1047 +1005 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -1929404541 +370440646 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1047 +1005 this -336744523 +1224347463 1 this.elementData -1045788216 +1580297332 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 anArray -1929404541 +370440646 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1048 +1006 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1048 +1006 this -499050887 +1125381564 1 this.elementData -1624616274 +2130772866 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1049 +1007 this -499050887 +1125381564 1 this.elementData -1624616274 +2130772866 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1049 +1007 this -499050887 +1125381564 1 this.elementData -1624616274 +2130772866 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1050 +1008 this -499050887 +1125381564 1 this.elementData -1624616274 +2130772866 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1050 +1009 this -499050887 +1125381564 1 this.elementData -1624616274 +2130772866 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +["java.lang.Object"] 1 this.elementCount -2 1 -this.capacityIncrement -0 1 -obj -245301360 +this.capacityIncrement +4 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +2 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1051 +1009 this -499050887 +1125381564 1 this.elementData -1624616274 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +["java.lang.Object" null null null null] 1 this.elementCount -2 1 -this.capacityIncrement -0 1 -obj -245301360 +this.capacityIncrement +4 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +2 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1052 +1008 this -499050887 +1125381564 1 this.elementData -1624616274 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +["java.lang.Object" null null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1052 +1010 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 null null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" null null] +["java.lang.Object" null null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1051 +1010 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -56113,30 +56937,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1053 +1011 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -565544369 +728739494 1 anArray.getClass().getName() "java.lang.Object[]" @@ -56147,64 +56971,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1053 +1011 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -565544369 +728739494 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1054 +1012 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -341588161 +2005733474 1 anArray.getClass().getName() "java.lang.Object[]" @@ -56215,415 +57039,415 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1054 +1012 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -341588161 +2005733474 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null null null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1055 +1013 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -848433496 +6750210 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1055 +1013 this -499050887 +1125381564 1 this.elementData -1818629160 +511717113 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Object" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 anArray -848433496 +6750210 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1056 +1014 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1056 +1014 this -330351192 +521081105 1 this.elementData -967256449 +1237550792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -2 +1 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1057 +1015 this -330351192 +521081105 1 this.elementData -967256449 +1237550792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1057 +1015 this -330351192 +521081105 1 this.elementData -967256449 +1237550792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1058 +1016 this -330351192 +521081105 1 this.elementData -967256449 +1237550792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1058 +1017 this -330351192 +521081105 1 this.elementData -967256449 +1237550792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -2 1 -this.capacityIncrement -0 1 -obj -726045964 +this.capacityIncrement +4 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +2 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1059 +1017 this -330351192 +521081105 1 this.elementData -967256449 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null null null null] 1 this.elementCount -2 1 -this.capacityIncrement -0 1 -obj -245301360 +this.capacityIncrement +4 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +2 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1060 +1016 this -330351192 +521081105 1 this.elementData -967256449 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1060 +1018 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null] +["java.lang.Object" null null null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1059 +1018 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null] +[540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1061 +1019 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null] +[540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null] +["java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount 3 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -56631,30 +57455,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1061 +1019 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -56662,30 +57486,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1062 +1020 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -1865461670 +1846406218 1 anArray.getClass().getName() "java.lang.Object[]" @@ -56696,64 +57520,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1062 +1020 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -1865461670 +1846406218 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1063 +1021 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -1700525137 +158199555 1 anArray.getClass().getName() "java.lang.Object[]" @@ -56764,564 +57588,508 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1063 +1021 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -1700525137 +158199555 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null null null null] +[540642172 null 1836797772 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1064 +1022 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 anArray -2013603283 +1556995360 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1064 +1022 this -330351192 +521081105 1 this.elementData -227930553 +1448247698 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[540642172 null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 4 1 this.capacityIncrement -0 -1 -anArray -2013603283 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null 726045964 245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1065 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1065 -this -435584308 -1 -this.elementData -93711933 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -2 -1 -capacityIncrement -0 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1066 -this -435584308 +4 1 -this.elementData -93711933 +anArray +1556995360 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] +anArray[..] +[540642172 null 1836797772 540642172 null] 1 -this.elementCount -0 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1023 +initialCapacity 1 -this.capacityIncrement -0 1 -obj -null +capacityIncrement +4 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1066 +1023 this -435584308 +517052730 1 this.elementData -93711933 +524241174 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 -obj -null +initialCapacity +1 +1 +capacityIncrement +4 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1067 +1024 this -435584308 +517052730 1 this.elementData -93711933 +524241174 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1067 +1024 this -435584308 +517052730 1 this.elementData -93711933 +524241174 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1068 +1025 this -435584308 +517052730 1 this.elementData -93711933 +524241174 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 obj -12733619 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1069 +1026 this -435584308 +517052730 1 this.elementData -93711933 +524241174 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 minCapacity -3 +2 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1069 +1026 this -435584308 +517052730 1 this.elementData -910944680 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null] +["java.lang.Object" null null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 minCapacity -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1068 +1025 this -435584308 +517052730 1 this.elementData -910944680 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +4 1 obj -12733619 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1070 +1027 this -435584308 +517052730 1 this.elementData -910944680 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 null] +[540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1070 +1027 this -435584308 +517052730 1 this.elementData -910944680 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -4 +3 1 this.capacityIncrement -0 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1071 +1028 this -435584308 +517052730 1 this.elementData -910944680 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -4 +3 1 this.capacityIncrement -0 +4 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1072 +1028 this -435584308 +517052730 1 this.elementData -910944680 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 -minCapacity -5 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1072 +1029 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 null null null null] +[540642172 null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 4 1 this.capacityIncrement -0 +4 1 -minCapacity -5 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1071 +1029 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -57329,30 +58097,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1073 +1030 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -704341064 +1264213713 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57363,64 +58131,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1073 +1030 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -704341064 +1264213713 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360] +[540642172 null 1836797772 1477657879 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1074 +1031 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -930400384 +1506809545 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57431,124 +58199,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1074 +1031 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -930400384 +1506809545 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null null null null null] +[540642172 null 1836797772 1477657879 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1075 +1032 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1410820081 +1019384604 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1075 +1032 this -435584308 +517052730 1 this.elementData -836317297 +2035070981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null null null] +[540642172 null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 5 1 this.capacityIncrement -0 +4 1 anArray -1410820081 +1019384604 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null] +[540642172 null 1836797772 1477657879 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1076 +1033 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1076 +1033 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57563,23 +58331,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1077 +1034 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57594,10 +58362,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1853767746 +1624820151 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57608,12 +58376,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1077 +1034 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57628,10 +58396,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -1853767746 +1624820151 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57642,12 +58410,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1078 +1035 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57662,10 +58430,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -581756346 +1219161283 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57676,12 +58444,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1078 +1035 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57696,10 +58464,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -581756346 +1219161283 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57710,12 +58478,12 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1079 +1036 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57730,26 +58498,26 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -85862431 +2081191879 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1079 +1036 this -1286154840 +550668305 1 this.elementData -1981488825 +963110412 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57764,36 +58532,36 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 anArray -85862431 +2081191879 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1080 +1037 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1080 +1037 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57808,23 +58576,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1081 +1038 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -57839,10 +58607,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -57850,18 +58618,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1081 +1038 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -57870,10 +58638,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -57881,18 +58649,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1082 +1039 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -57901,10 +58669,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -1804323940 +1128096251 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57915,18 +58683,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1082 +1039 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -57935,32 +58703,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -1804323940 +1128096251 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1083 +1040 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -57969,10 +58737,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -655880293 +1552978964 1 anArray.getClass().getName() "java.lang.Object[]" @@ -57983,18 +58751,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1083 +1040 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -58003,32 +58771,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -655880293 +1552978964 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1084 +1041 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -58037,32 +58805,32 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -346524400 +1259652483 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1084 +1041 this -2128350680 +2061347276 1 this.elementData -554770681 +1559122513 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -58071,36 +58839,36 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 anArray -346524400 +1259652483 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1085 +1042 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1085 +1042 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58115,23 +58883,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1086 +1043 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58146,10 +58914,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58157,18 +58925,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1086 +1043 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -58177,10 +58945,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58188,18 +58956,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1087 +1044 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -58208,10 +58976,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58219,18 +58987,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1087 +1044 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58239,10 +59007,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58250,18 +59018,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1088 +1045 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58270,10 +59038,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1955156240 +355790875 1 anArray.getClass().getName() "java.lang.Object[]" @@ -58284,18 +59052,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1088 +1045 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58304,32 +59072,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1955156240 +355790875 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1089 +1046 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58338,10 +59106,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1663642933 +2028017635 1 anArray.getClass().getName() "java.lang.Object[]" @@ -58352,18 +59120,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1089 +1046 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58372,32 +59140,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -1663642933 +2028017635 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1090 +1047 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58406,32 +59174,32 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -609690991 +782378927 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1090 +1047 this -59940136 +1699113578 1 this.elementData -244035309 +1306324352 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -58440,36 +59208,36 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 anArray -609690991 +782378927 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1091 +1048 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1091 +1048 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58484,23 +59252,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1092 +1049 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58515,7 +59283,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj null @@ -58526,12 +59294,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1092 +1049 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58546,7 +59314,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj null @@ -58557,12 +59325,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1093 +1050 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58577,10 +59345,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58588,18 +59356,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1093 +1050 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Object"] @@ -58608,10 +59376,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58619,18 +59387,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1094 +1051 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Object"] @@ -58639,10 +59407,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58650,18 +59418,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1095 +1052 this -1432005900 +70807318 1 this.elementData -873929371 +910091170 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Object"] @@ -58670,7 +59438,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -58678,27 +59446,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1095 +1052 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 null] +[null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" null] +[null "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -58706,30 +59474,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1094 +1051 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -58737,30 +59505,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1096 +1053 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -976436187 +2041605291 1 anArray.getClass().getName() "java.lang.Object[]" @@ -58771,64 +59539,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1096 +1053 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -976436187 +2041605291 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360] +[null 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1097 +1054 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -2040448182 +1052245076 1 anArray.getClass().getName() "java.lang.Object[]" @@ -58839,124 +59607,124 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1097 +1054 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -2040448182 +1052245076 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null null null] +[null 540642172 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1098 +1055 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -646235931 +2136288211 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1098 +1055 this -1432005900 +70807318 1 this.elementData -1490276564 +1183888521 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 anArray -646235931 +2136288211 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null] +[null 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1099 +1056 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1099 +1056 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -58971,23 +59739,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1100 +1057 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59002,7 +59770,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj null @@ -59013,12 +59781,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1100 +1057 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59033,7 +59801,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj null @@ -59044,12 +59812,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1101 +1058 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59064,10 +59832,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -59075,18 +59843,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1101 +1058 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -59095,10 +59863,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -59106,18 +59874,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1102 +1059 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -59126,10 +59894,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -59137,18 +59905,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1103 +1060 this -1462489438 +1008925772 1 this.elementData -2109644551 +1175259735 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -59157,144 +59925,85 @@ this.elementCount 2 1 this.capacityIncrement +0 +1 +minCapacity +3 1 -1 -minCapacity -3 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1103 -this -1462489438 -1 -this.elementData -1840956687 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" null] -1 -this.elementCount -2 -1 -this.capacityIncrement -1 -1 -minCapacity -3 -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1102 -this -1462489438 -1 -this.elementData -1840956687 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object"] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1104 +1060 this -1462489438 +1008925772 1 this.elementData -1840956687 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360] +[null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object"] +[null "java.lang.Integer" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement +0 1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1105 +1059 this -1462489438 +1008925772 1 this.elementData -1840956687 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360] +[null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement +0 1 +obj +540642172 1 -minCapacity -4 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1105 +1061 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null] +[null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" null] @@ -59303,26 +60012,29 @@ this.elementCount 3 1 this.capacityIncrement +0 1 +obj +540642172 1 -minCapacity -4 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1104 +1061 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59331,10 +60043,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -59342,18 +60054,18 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1106 +1062 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59362,10 +60074,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1450305673 +293907205 1 anArray.getClass().getName() "java.lang.Object[]" @@ -59376,18 +60088,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1106 +1062 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59396,32 +60108,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1450305673 +293907205 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1107 +1063 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59430,10 +60142,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1348052661 +988800485 1 anArray.getClass().getName() "java.lang.Object[]" @@ -59444,18 +60156,18 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1107 +1063 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59464,32 +60176,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -1348052661 +988800485 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null null null null] +[null 1836797772 540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1108 +1064 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59498,32 +60210,32 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -768597577 +345902941 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1108 +1064 this -1462489438 +1008925772 1 this.elementData -14652433 +1205406622 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] @@ -59532,36 +60244,36 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 anArray -768597577 +345902941 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null] +[null 1836797772 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1109 +1065 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1109 +1065 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59576,23 +60288,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 2 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1110 +1066 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59607,7 +60319,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj null @@ -59618,12 +60330,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1110 +1066 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59638,7 +60350,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj null @@ -59649,12 +60361,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1111 +1067 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -59669,10 +60381,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -59680,18 +60392,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1111 +1067 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -59700,10 +60412,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -59711,18 +60423,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1112 +1068 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -59731,10 +60443,10 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -59742,18 +60454,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1113 +1069 this -705339934 +454325163 1 this.elementData -538539298 +796667727 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -59762,7 +60474,7 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -59770,27 +60482,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1113 +1069 this -705339934 +454325163 1 this.elementData -1733893028 +1794717576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null] +[null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null] +[null "java.lang.Integer" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +0 1 minCapacity 3 @@ -59798,30 +60510,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1112 +1068 this -705339934 +454325163 1 this.elementData -1733893028 +1794717576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619] +[null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer"] +[null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -12733619 +1477657879 1 obj.getClass().getName() "java.lang.Integer" @@ -59829,105 +60541,49 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1114 +1070 this -705339934 +454325163 1 this.elementData -1733893028 +1794717576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619] +[null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer"] +[null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1115 -this -705339934 -1 -this.elementData -1733893028 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer"] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1115 -this -705339934 -1 -this.elementData -187031806 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -minCapacity -4 -1 - javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1114 +1070 this -705339934 +454325163 1 this.elementData -187031806 +1794717576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -59936,10 +60592,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -59947,18 +60603,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1116 +1071 this -705339934 +454325163 1 this.elementData -187031806 +1794717576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -59967,10 +60623,10 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -59978,18 +60634,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1117 +1072 this -705339934 +454325163 1 this.elementData -187031806 +1794717576 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] @@ -59998,7 +60654,7 @@ this.elementCount 4 1 this.capacityIncrement -1 +0 1 minCapacity 5 @@ -60006,27 +60662,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1117 +1072 this -705339934 +454325163 1 this.elementData -1674987881 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 null] +[null 1836797772 1477657879 540642172 null null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null null] 1 this.elementCount 4 1 this.capacityIncrement -1 +0 1 minCapacity 5 @@ -60034,30 +60690,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1116 +1071 this -705339934 +454325163 1 this.elementData -1674987881 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -60065,30 +60721,30 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1118 +1073 this -705339934 +454325163 1 this.elementData -1674987881 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -158187444 +919112242 1 anArray.getClass().getName() "java.lang.Object[]" @@ -60099,64 +60755,64 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1118 +1073 this -705339934 +454325163 1 this.elementData -1674987881 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -158187444 +919112242 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1119 +1074 this -705339934 +454325163 1 this.elementData -1674987881 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 +0 1 anArray -71616322 +2021707251 1 anArray.getClass().getName() "java.lang.Object[]" @@ -60167,676 +60823,369 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1119 -this -705339934 -1 -this.elementData -1674987881 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 245301360 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -5 -1 -this.capacityIncrement -1 -1 -anArray -71616322 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null 726045964 12733619 245301360 245301360 null null null null null] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1120 -this -705339934 -1 -this.elementData -1674987881 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 245301360 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -5 -1 -this.capacityIncrement -1 -1 -anArray -1064681534 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715 null null null null null] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1120 +1074 this -705339934 +454325163 1 this.elementData -1674987881 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount 5 1 this.capacityIncrement -1 -1 -anArray -1064681534 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null 726045964 12733619 245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1121 -initialCapacity -2 -1 -capacityIncrement -2 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1121 -this -1268795134 -1 -this.elementData -127202428 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -initialCapacity -2 -1 -capacityIncrement -2 -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1122 -this -1268795134 -1 -this.elementData -127202428 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -anArray -1144978631 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1122 -this -1268795134 -1 -this.elementData -127202428 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -anArray -1144978631 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1123 -this -1268795134 -1 -this.elementData -127202428 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -anArray -54890450 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1123 -this -1268795134 -1 -this.elementData -127202428 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount 0 1 -this.capacityIncrement -2 -1 anArray -54890450 +2021707251 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[null 1836797772 1477657879 540642172 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1124 -this -1268795134 -1 -this.elementData -127202428 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -anArray -1273308587 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1124 +1075 this -1268795134 +454325163 1 this.elementData -127202428 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 -1 -this.capacityIncrement -2 -1 -anArray -1273308587 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1125 -initialCapacity -2 -1 -capacityIncrement -2 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1125 -this -822879354 -1 -this.elementData -338615998 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] +5 1 -this.elementCount +this.capacityIncrement 0 1 -this.capacityIncrement -2 +anArray +1541857308 1 -initialCapacity -2 +anArray.getClass().getName() +"java.lang.Object[]" 1 -capacityIncrement -2 +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1126 +1075 this -822879354 +454325163 1 this.elementData -338615998 +251210093 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement +0 +1 +anArray +1541857308 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null 1836797772 1477657879 540642172 540642172 null] +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1076 +initialCapacity 2 1 -obj -245301360 +capacityIncrement 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1126 +1076 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement +1 +1 +initialCapacity 2 1 -obj -245301360 +capacityIncrement 1 -obj.getClass().getName() -"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1127 +1077 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +1 1 anArray -287413836 +283717519 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1127 +1077 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +1 1 anArray -287413836 +283717519 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1128 +1078 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +1 1 anArray -873619549 +2095303566 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1128 +1078 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +1 1 anArray -873619549 +2095303566 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1129 +1079 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +1 1 anArray -578065504 +2025221430 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1129 +1079 this -822879354 +479397964 1 this.elementData -338615998 +1861781750 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +1 1 anArray -578065504 +2025221430 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1130 +1080 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1130 +1080 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -60851,23 +61200,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1131 +1081 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -60882,10 +61231,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -60893,18 +61242,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1131 +1081 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -60913,29 +61262,29 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1132 +1082 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -60944,268 +61293,206 @@ this.elementCount 1 1 this.capacityIncrement -2 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1132 -this -330906700 -1 -this.elementData -1713744817 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] -1 -this.elementCount -2 -1 -this.capacityIncrement -2 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1133 -this -330906700 1 -this.elementData -1713744817 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] -1 -this.elementCount -2 -1 -this.capacityIncrement -2 1 anArray -858465755 +1773283386 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1133 +1082 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 anArray -858465755 +1773283386 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1134 +1083 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 anArray -1438803739 +581318631 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1134 +1083 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 anArray -1438803739 +581318631 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1135 +1084 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 anArray -1308576153 +1877453512 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1135 +1084 this -330906700 +1378084334 1 this.elementData -1713744817 +200224114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 anArray -1308576153 +1877453512 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1136 +1085 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1136 +1085 this -859374544 +487694075 1 this.elementData -1680434933 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -61220,23 +61507,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1137 +1086 this -859374544 +487694075 1 this.elementData -1680434933 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -61251,72 +61538,10 @@ this.elementCount 0 1 this.capacityIncrement -2 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1137 -this -859374544 -1 -this.elementData -1680434933 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -2 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1138 -this -859374544 -1 -this.elementData -1680434933 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] 1 -this.elementCount -1 -1 -this.capacityIncrement -2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -61324,30 +61549,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1138 +1086 this -859374544 +487694075 1 this.elementData -1680434933 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -61355,117 +61580,61 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1139 +1087 this -859374544 +487694075 1 this.elementData -1680434933 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1140 -this -859374544 -1 -this.elementData -1680434933 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Object"] -1 -this.elementCount -2 -1 -this.capacityIncrement -2 -1 -minCapacity -3 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1140 +1087 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 -1 -minCapacity -3 -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1139 -this -859374544 -1 -this.elementData -1512477234 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] 1 -this.elementCount -3 -1 -this.capacityIncrement -2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -61473,226 +61642,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1141 +1088 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +1 1 anArray -440942299 +1989184704 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1141 +1088 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +1 1 anArray -440942299 +1989184704 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1142 +1089 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +1 1 anArray -2098637143 +611572016 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1142 +1089 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +1 1 anArray -2098637143 +611572016 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1143 +1090 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +1 1 anArray -1523044073 +889486595 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1143 +1090 this -859374544 +487694075 1 this.elementData -1512477234 +1704629915 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +1 1 anArray -1523044073 +889486595 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1144 +1091 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1144 +1091 this -1944146318 +77269878 1 this.elementData -1303477521 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -61707,23 +61876,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1145 +1092 this -1944146318 +77269878 1 this.elementData -1303477521 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -61738,7 +61907,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj null @@ -61749,12 +61918,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1145 +1092 this -1944146318 +77269878 1 this.elementData -1303477521 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -61769,7 +61938,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj null @@ -61780,12 +61949,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1146 +1093 this -1944146318 +77269878 1 this.elementData -1303477521 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -61800,221 +61969,159 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1146 +1093 this -1944146318 +77269878 1 this.elementData -1303477521 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +[null "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 -1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1147 -this -1944146318 -1 -this.elementData -1303477521 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer"] -1 -this.elementCount -2 1 -this.capacityIncrement -2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1148 -this -1944146318 -1 -this.elementData -1303477521 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer"] -1 -this.elementCount -2 -1 -this.capacityIncrement -2 -1 -minCapacity -3 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1148 +1094 this -1944146318 +77269878 1 this.elementData -1066012400 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null] +[null "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 1 -minCapacity -3 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1147 +1095 this -1944146318 +77269878 1 this.elementData -1066012400 +1990160809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null] +[null "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1149 +1095 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null] +[null 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null] +[null "java.lang.Object" null] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1149 +1094 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -62022,226 +62129,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1150 +1096 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 anArray -14339879 +1524960486 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1150 +1096 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 anArray -14339879 +1524960486 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1151 +1097 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 anArray -492177889 +117009527 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1151 +1097 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 anArray -492177889 +117009527 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null null null null] +[null 540642172 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1152 +1098 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 anArray -2074255826 +199640888 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1152 +1098 this -1944146318 +77269878 1 this.elementData -1066012400 +1285524499 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360] +[null 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 anArray -2074255826 +199640888 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null] +[null 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1153 +1099 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1153 +1099 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -62256,23 +62363,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 2 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1154 +1100 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -62287,7 +62394,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj null @@ -62298,12 +62405,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1154 +1100 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -62318,7 +62425,7 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj null @@ -62329,12 +62436,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1155 +1101 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -62349,10 +62456,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -62360,18 +62467,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1155 +1101 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -62380,10 +62487,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -726045964 +1836797772 1 obj.getClass().getName() "java.lang.Integer" @@ -62391,18 +62498,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1156 +1102 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -62411,29 +62518,29 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1157 +1103 this -1915625831 +1000975683 1 this.elementData -848505793 +1238959340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 1836797772] 1 this.elementData[..].getClass().getName() [null "java.lang.Integer"] @@ -62442,7 +62549,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -62450,27 +62557,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1157 +1103 this -1915625831 +1000975683 1 this.elementData -1545446871 +76432244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null] +[null 1836797772 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null] +[null "java.lang.Integer" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +1 1 minCapacity 3 @@ -62478,92 +62585,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1156 -this -1915625831 -1 -this.elementData -1545446871 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -2 -1 -obj -12733619 -1 -obj.getClass().getName() -"java.lang.Integer" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1158 +1102 this -1915625831 +1000975683 1 this.elementData -1545446871 +76432244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 null] +[null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null] +[null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1158 -this -1915625831 -1 -this.elementData -1545446871 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] -1 -this.elementCount -4 1 -this.capacityIncrement -2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -62571,30 +62616,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1159 +1104 this -1915625831 +1000975683 1 this.elementData -1545446871 +76432244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -62602,86 +62647,86 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1160 +1105 this -1915625831 +1000975683 1 this.elementData -1545446871 +76432244 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360] +[null 1836797772 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 minCapacity -5 +4 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1160 +1105 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 null null] +[null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -4 +3 1 this.capacityIncrement -2 +1 1 minCapacity -5 +4 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1159 +1104 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -62689,226 +62734,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1161 +1106 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 anArray -223589918 +1264413185 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1161 +1106 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 anArray -223589918 +1264413185 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360] +[null 1836797772 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1162 +1107 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 anArray -1926853223 +1243806178 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1162 +1107 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 anArray -1926853223 +1243806178 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null null null null null] +[null 1836797772 540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1163 +1108 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 anArray -568722201 +1010931249 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1163 +1108 this -1915625831 +1000975683 1 this.elementData -510850432 +1030228826 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +4 1 this.capacityIncrement -2 +1 1 anArray -568722201 +1010931249 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null] +[null 1836797772 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1164 +1109 initialCapacity 2 1 capacityIncrement -3 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1164 +1109 this -64319410 +1099855928 1 this.elementData -832049429 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -62923,57 +62968,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +1 1 initialCapacity 2 1 capacityIncrement -3 -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1165 -this -64319410 -1 -this.elementData -832049429 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -3 -1 -anArray -1988727586 -1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1165 +1110 this -64319410 +1099855928 1 this.elementData -832049429 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -62988,26 +62999,23 @@ this.elementCount 0 1 this.capacityIncrement -3 -1 -anArray -1988727586 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1166 +1110 this -64319410 +1099855928 1 this.elementData -832049429 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -63019,63 +63027,26 @@ this.elementData[..].getClass().getName() [null null] 1 this.elementCount -0 -1 -this.capacityIncrement -3 -1 -anArray -1109055994 1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1166 -this -64319410 -1 -this.elementData -832049429 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 1 this.capacityIncrement -3 -1 -anArray -1109055994 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1167 +1111 this -64319410 +1099855928 1 this.elementData -832049429 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -63087,522 +63058,398 @@ this.elementData[..].getClass().getName() [null null] 1 this.elementCount -0 -1 -this.capacityIncrement -3 -1 -anArray -1893518845 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1167 -this -64319410 -1 -this.elementData -832049429 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] 1 -this.elementCount -0 1 this.capacityIncrement -3 1 -anArray -1893518845 -1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[413835715] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1168 -initialCapacity -2 +obj +1836797772 1 -capacityIncrement -3 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1168 +1111 this -811063022 +1099855928 1 this.elementData -1457503245 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer"] 1 this.elementCount -0 -1 -this.capacityIncrement -3 -1 -initialCapacity 2 1 -capacityIncrement -3 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1169 -this -811063022 -1 -this.elementData -1457503245 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 this.capacityIncrement -3 +1 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1169 +1112 this -811063022 +1099855928 1 this.elementData -1457503245 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount -1 +2 1 this.capacityIncrement -3 +1 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1170 +1113 this -811063022 +1099855928 1 this.elementData -1457503245 +1629687658 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount -1 +2 1 this.capacityIncrement -3 -1 -anArray -2058561033 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[null] +minCapacity +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1170 +1113 this -811063022 +1099855928 1 this.elementData -1457503245 +1007880005 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" null] 1 this.elementCount -1 +2 1 this.capacityIncrement -3 -1 -anArray -2058561033 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[245301360] +minCapacity +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1171 +1112 this -811063022 +1099855928 1 this.elementData -1457503245 +1007880005 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 1 -anArray -126244814 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1477657879 1 -anArray[..] -[null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1171 +1114 this -811063022 +1099855928 1 this.elementData -1457503245 +1007880005 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 1 -anArray -126244814 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1172 +1115 this -811063022 +1099855928 1 this.elementData -1457503245 +1007880005 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount -1 -1 -this.capacityIncrement 3 1 -anArray -82745662 +this.capacityIncrement 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[413835715 null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1172 +1115 this -811063022 +1099855928 1 this.elementData -1457503245 +215219944 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -1 -1 -this.capacityIncrement 3 1 -anArray -82745662 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null] +this.capacityIncrement 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1173 -initialCapacity -2 1 -capacityIncrement -3 +minCapacity +4 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1173 +1114 this -1284421625 +1099855928 1 this.elementData -768631731 +215219944 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -0 +4 1 this.capacityIncrement -3 1 -initialCapacity -2 1 -capacityIncrement -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1174 +1116 this -1284421625 +1099855928 1 this.elementData -768631731 +215219944 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -0 +4 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1174 +1117 this -1284421625 +1099855928 1 this.elementData -768631731 +215219944 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1175 +1117 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 1477657879 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +5 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1175 +1116 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -63610,226 +63457,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1176 +1118 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 anArray -1279366212 +1192171522 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1176 +1118 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 anArray -1279366212 +1192171522 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1177 +1119 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 anArray -1701651320 +1661081225 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1177 +1119 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 anArray -1701651320 +1661081225 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[null 1836797772 1477657879 540642172 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1178 +1120 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 anArray -1614008141 +1882554559 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1178 +1120 this -1284421625 +1099855928 1 this.elementData -768631731 +1043208434 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 +1 1 anArray -1614008141 +1882554559 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1179 +1121 initialCapacity 2 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1179 +1121 this -1768880530 +1049817027 1 this.elementData -1958942289 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -63844,23 +63691,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 2 1 capacityIncrement -3 +2 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1180 +1122 this -1768880530 +1049817027 1 this.elementData -1958942289 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -63875,54 +63722,26 @@ this.elementCount 0 1 this.capacityIncrement -3 -1 -obj -null -1 -obj.getClass().getName() -nonsensical 2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1180 -this -1768880530 1 -this.elementData -1958942289 +anArray +1923598304 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -3 -1 -obj -null +anArray[..] +[] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1181 +1122 this -1768880530 +1049817027 1 this.elementData -1958942289 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -63934,649 +63753,562 @@ this.elementData[..].getClass().getName() [null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1181 -this -1768880530 -1 -this.elementData -1958942289 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Object"] -1 -this.elementCount 2 1 -this.capacityIncrement -3 +anArray +1923598304 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1182 +1123 this -1768880530 +1049817027 1 this.elementData -1958942289 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1183 -this -1768880530 +2 1 -this.elementData -1958942289 +anArray +776700275 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[null 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Object"] -1 -this.elementCount -2 -1 -this.capacityIncrement -3 -1 -minCapacity -3 +anArray[..] +[] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1183 +1123 this -1768880530 +1049817027 1 this.elementData -871259066 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" null null null] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -3 -1 -minCapacity -3 -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1182 -this -1768880530 +2 1 -this.elementData -871259066 +anArray +776700275 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[null 245301360 245301360 null null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1184 +1124 this -1768880530 +1049817027 1 this.elementData -871259066 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -3 +2 1 anArray -1707617016 +118394766 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1184 +1124 this -1768880530 +1049817027 1 this.elementData -871259066 +23211803 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -3 +2 1 anArray -1707617016 +118394766 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360] +[1684792003] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1185 +1125 +initialCapacity +2 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1125 this -1768880530 +386163331 1 this.elementData -871259066 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -3 -1 -anArray -947729404 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +2 1 -anArray[..] -[null null null null null null] +capacityIncrement +2 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1185 +1126 this -1768880530 +386163331 1 this.elementData -871259066 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -3 -1 -anArray -947729404 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null 245301360 245301360 null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1186 +1126 this -1768880530 +386163331 1 this.elementData -871259066 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount -3 1 -this.capacityIncrement -3 1 -anArray -601883229 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715 null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1186 +1127 this -1768880530 +386163331 1 this.elementData -871259066 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount -3 +1 1 this.capacityIncrement -3 +2 1 anArray -601883229 +694316372 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1187 -initialCapacity -2 -1 -capacityIncrement -3 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1187 -this -1203452433 -1 -this.elementData -1424053985 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null] -1 -this.elementData[..].getClass().getName() -[null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -3 -1 -initialCapacity -2 -1 -capacityIncrement -3 +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1188 +1127 this -1203452433 +386163331 1 this.elementData -1424053985 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" null] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 +2 1 -obj -null +anArray +694316372 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1188 +1128 this -1203452433 +386163331 1 this.elementData -1424053985 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 -obj -null +anArray +1516500233 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1189 +1128 this -1203452433 +386163331 1 this.elementData -1424053985 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 -obj -726045964 +anArray +1516500233 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1189 +1129 this -1203452433 +386163331 1 this.elementData -1424053985 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +2 1 -obj -726045964 +anArray +1850180796 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1190 +1129 this -1203452433 +386163331 1 this.elementData -1424053985 +1540374340 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +1850180796 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1191 +1130 +initialCapacity +2 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1130 this -1203452433 +884452399 1 this.elementData -1424053985 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -3 +2 1 -minCapacity -3 +initialCapacity +2 +1 +capacityIncrement +2 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1191 +1131 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null null] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -3 +2 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1190 +1131 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount -3 +1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -64584,30 +64316,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1192 +1132 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null] 1 this.elementCount -3 +1 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -64615,30 +64347,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1192 +1132 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -64646,226 +64378,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1193 +1133 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 anArray -823262848 +1259014228 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1193 +1133 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 anArray -823262848 +1259014228 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1194 +1134 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 anArray -341548715 +431687661 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1194 +1134 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 anArray -341548715 +431687661 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null null null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1195 +1135 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 anArray -185464574 +283383329 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1195 +1135 this -1203452433 +884452399 1 this.elementData -370080080 +235237152 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -3 +2 1 anArray -185464574 +283383329 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1196 +1136 initialCapacity 2 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1196 +1136 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -64880,23 +64612,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 2 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1197 +1137 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -64911,7 +64643,7 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj null @@ -64922,12 +64654,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1197 +1137 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -64942,7 +64674,7 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj null @@ -64953,12 +64685,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1198 +1138 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -64973,100 +64705,100 @@ this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1198 +1138 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +[null "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1199 +1139 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +[null "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1200 +1140 this -1104323421 +893192050 1 this.elementData -1810059373 +644345897 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +[null "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 minCapacity 3 @@ -65074,27 +64806,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1200 +1140 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null null] +[null 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null null] +[null "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -3 +2 1 minCapacity 3 @@ -65102,381 +64834,288 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1199 +1139 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 null null] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null null] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -3 +2 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1201 +1141 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 null null] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null null] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1201 -this -1104323421 +2 1 -this.elementData -414538609 +anArray +1472682156 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[null 726045964 12733619 245301360 null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] -1 -this.elementCount -4 -1 -this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1202 +1141 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 null] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -4 -1 -this.capacityIncrement 3 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1202 -this -1104323421 +this.capacityIncrement +2 1 -this.elementData -414538609 +anArray +1472682156 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[null 726045964 12733619 245301360 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -5 -1 -this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1203 +1142 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +3 1 this.capacityIncrement -3 +2 1 anArray -713450595 +178049969 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1203 +1142 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +3 1 this.capacityIncrement -3 +2 1 anArray -713450595 +178049969 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360] +[null 540642172 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1204 +1143 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +3 1 this.capacityIncrement -3 +2 1 anArray -1562948964 +333683827 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1204 +1143 this -1104323421 +893192050 1 this.elementData -414538609 +1738674023 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +3 1 this.capacityIncrement -3 +2 1 anArray -1562948964 +333683827 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null null null null null] +[null 540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1205 -this -1104323421 -1 -this.elementData -414538609 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 245301360 245301360] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -5 -1 -this.capacityIncrement -3 -1 -anArray -463267844 -1 -anArray.getClass().getName() -"java.lang.Object[]" +1144 +initialCapacity +2 1 -anArray[..] -[413835715 null null null null null] +capacityIncrement +2 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1205 +1144 this -1104323421 +1691185247 1 this.elementData -414538609 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -3 -1 -anArray -463267844 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null 726045964 12733619 245301360 245301360 null] +2 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1206 initialCapacity 2 1 capacityIncrement -4 +2 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1206 +1145 this -1514433733 +1691185247 1 this.elementData -1111566287 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -65491,23 +65130,23 @@ this.elementCount 0 1 this.capacityIncrement -4 -1 -initialCapacity 2 1 -capacityIncrement -4 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1207 +1145 this -1514433733 +1691185247 1 this.elementData -1111566287 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -65519,29 +65158,26 @@ this.elementData[..].getClass().getName() [null null] 1 this.elementCount -0 -1 -this.capacityIncrement -4 1 -anArray -1134340356 1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +2 1 -anArray[..] -[] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1207 +1146 this -1514433733 +1691185247 1 this.elementData -1111566287 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -65553,224 +65189,193 @@ this.elementData[..].getClass().getName() [null null] 1 this.elementCount -0 1 -this.capacityIncrement -4 1 -anArray -1134340356 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1208 +1146 this -1514433733 +1691185247 1 this.elementData -1111566287 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer"] 1 this.elementCount -0 -1 -this.capacityIncrement -4 +2 1 -anArray -1646028873 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1208 +1147 this -1514433733 +1691185247 1 this.elementData -1111566287 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 -1 -anArray -1646028873 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1209 +1148 this -1514433733 +1691185247 1 this.elementData -1111566287 +153245266 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 -1 -anArray -922927857 -1 -anArray.getClass().getName() -"java.lang.Object[]" +2 1 -anArray[..] -[413835715] +minCapacity +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1209 +1148 this -1514433733 +1691185247 1 this.elementData -1111566287 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 -1 -anArray -922927857 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1210 -initialCapacity 2 1 -capacityIncrement -4 +minCapacity +3 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1210 +1147 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -4 -1 -initialCapacity 2 1 -capacityIncrement -4 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1211 +1149 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -65778,30 +65383,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1211 +1149 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -65809,226 +65414,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1212 +1150 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 anArray -1613311161 +1782580546 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1212 +1150 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 anArray -1613311161 +1782580546 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[null 1836797772 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1213 +1151 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 anArray -792155905 +1702940637 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1213 +1151 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 anArray -792155905 +1702940637 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[null 1836797772 540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1214 +1152 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 anArray -1513167582 +2114684409 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1214 +1152 this -374110318 +1691185247 1 this.elementData -1987479857 +1699679644 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null 1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 anArray -1513167582 +2114684409 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[null 1836797772 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1215 +1153 initialCapacity 2 1 capacityIncrement -4 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1215 +1153 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -66043,23 +65648,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +2 1 initialCapacity 2 1 capacityIncrement -4 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1216 +1154 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -66074,817 +65679,873 @@ this.elementCount 0 1 this.capacityIncrement -4 +2 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1216 +1154 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +2 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1217 +1155 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +[null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +2 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1217 +1155 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -4 +2 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1218 +1156 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -4 -1 -anArray -713371220 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1477657879 1 -anArray[..] -[null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1218 +1157 this -1306202900 +1664439369 1 this.elementData -1774300666 +154482552 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -4 -1 -anArray -713371220 -1 -anArray.getClass().getName() -"java.lang.Object[]" +2 1 -anArray[..] -[245301360 245301360] +minCapacity +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1219 +1157 this -1306202900 +1664439369 1 this.elementData -1774300666 +1781071780 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" null null] 1 this.elementCount 2 1 this.capacityIncrement -4 +2 1 -anArray -228893339 +minCapacity +3 1 -anArray.getClass().getName() + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1156 +this +1664439369 +1 +this.elementData +1781071780 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null null null] +this.elementData[..] +[null 1836797772 1477657879 null] +1 +this.elementData[..].getClass().getName() +[null "java.lang.Integer" "java.lang.Integer" null] +1 +this.elementCount +3 +1 +this.capacityIncrement +2 +1 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1219 +1158 this -1306202900 +1664439369 1 this.elementData -1774300666 +1781071780 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -2 +3 1 this.capacityIncrement -4 -1 -anArray -228893339 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360 null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1220 +1158 this -1306202900 +1664439369 1 this.elementData -1774300666 +1781071780 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -2 -1 -this.capacityIncrement 4 1 -anArray -867136796 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715 null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1220 +1159 this -1306202900 +1664439369 1 this.elementData -1774300666 +1781071780 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null 1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount -2 -1 -this.capacityIncrement 4 1 -anArray -867136796 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1221 -initialCapacity -2 +1160 +this +1664439369 1 -capacityIncrement +this.elementData +1781071780 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[null 1836797772 1477657879 540642172] +1 +this.elementData[..].getClass().getName() +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +1 +this.elementCount 4 1 +this.capacityIncrement +2 +1 +minCapacity +5 +1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1221 +1160 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -0 -1 -this.capacityIncrement 4 1 -initialCapacity +this.capacityIncrement 2 1 -capacityIncrement -4 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1222 +1159 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +5 1 this.capacityIncrement -4 +2 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1222 +1161 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -4 +2 1 -obj -null +anArray +24119573 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1223 +1161 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +24119573 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null 1836797772 1477657879 540642172 540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1223 +1162 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +568221876 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1224 +1162 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +568221876 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null 1836797772 1477657879 540642172 540642172 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1225 +1163 this -1144101830 +1664439369 1 this.elementData -350881572 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -minCapacity -3 +anArray +203849460 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1225 +1163 this -1144101830 +1664439369 1 this.elementData -276485942 +1219402581 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 null null null null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" null null null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount +5 +1 +this.capacityIncrement +2 +1 +anArray +203849460 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null 1836797772 1477657879 540642172 540642172 null] +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1164 +initialCapacity 2 1 -this.capacityIncrement -4 -1 -minCapacity +capacityIncrement 3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1224 +1164 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 -obj -245301360 +initialCapacity +2 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +3 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1226 +1165 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 anArray -1892098733 +1667148529 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1226 +1165 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 anArray -1892098733 +1667148529 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1227 +1166 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 anArray -565560755 +1546693040 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1227 +1166 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 anArray -565560755 +1546693040 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1228 +1167 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 anArray -616987663 +501187768 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1228 +1167 this -1144101830 +820914198 1 this.elementData -276485942 +836220863 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -4 +3 1 anArray -616987663 +501187768 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 245301360 245301360 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1229 +1168 initialCapacity 2 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1229 +1168 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -66899,23 +66560,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 2 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1230 +1169 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -66930,221 +66591,348 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1230 +1169 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1231 +1170 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 -obj -726045964 +anArray +1585635178 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1231 +1170 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -obj -726045964 +anArray +1585635178 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1232 +1171 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +1058634310 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1233 +1171 this -1660604325 +288994035 1 this.elementData -1079413863 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -minCapacity +anArray +1058634310 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +this_invocation_nonce +1172 +this +288994035 +1 +this.elementData +128359175 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement 3 1 +anArray +1668016508 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] +1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1233 +1172 this -1660604325 +288994035 1 this.elementData -1914429232 +128359175 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null null null] +["java.lang.Object" null] 1 this.elementCount +1 +1 +this.capacityIncrement +3 +1 +anArray +1668016508 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1173 +initialCapacity 2 1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1173 +this +1353070773 +1 +this.elementData +404214852 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[null null] +1 +this.elementData[..].getClass().getName() +[null null] +1 +this.elementCount +0 +1 this.capacityIncrement -4 +3 1 -minCapacity +initialCapacity +2 +1 +capacityIncrement 3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1232 +1174 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null null null] +[null null] 1 this.elementCount +0 +1 +this.capacityIncrement 3 1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1174 +this +1353070773 +1 +this.elementData +404214852 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -67152,30 +66940,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1234 +1175 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -3 +1 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -67183,30 +66971,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1234 +1175 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -67214,226 +67002,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1235 +1176 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 anArray -64619223 +1822971466 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1235 +1176 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 anArray -64619223 +1822971466 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1236 +1177 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 anArray -1576039226 +1354003114 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1236 +1177 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 anArray -1576039226 +1354003114 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null null null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1237 +1178 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 anArray -1427969284 +825658265 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1237 +1178 this -1660604325 +1353070773 1 this.elementData -1914429232 +404214852 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 +3 1 anArray -1427969284 +825658265 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 245301360 245301360 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1238 +1179 initialCapacity 2 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1238 +1179 this -1750000963 +388357135 1 this.elementData -330155829 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -67448,23 +67236,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 2 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1239 +1180 this -1750000963 +388357135 1 this.elementData -330155829 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -67479,7 +67267,7 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj null @@ -67490,12 +67278,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1239 +1180 this -1750000963 +388357135 1 this.elementData -330155829 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -67510,7 +67298,7 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj null @@ -67521,12 +67309,12 @@ nonsensical javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1240 +1181 this -1750000963 +388357135 1 this.elementData -330155829 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -67541,283 +67329,159 @@ this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1240 -this -1750000963 -1 -this.elementData -330155829 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer"] -1 -this.elementCount -2 -1 -this.capacityIncrement -4 -1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1241 -this -1750000963 -1 -this.elementData -330155829 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer"] -1 -this.elementCount -2 -1 -this.capacityIncrement -4 -1 -obj -12733619 -1 -obj.getClass().getName() -"java.lang.Integer" -1 - -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1242 -this -1750000963 -1 -this.elementData -330155829 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer"] -1 -this.elementCount -2 -1 -this.capacityIncrement -4 -1 -minCapacity -3 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1242 +1181 this -1750000963 +388357135 1 this.elementData -1978757802 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 null null null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" null null null null] +[null "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -4 -1 -minCapacity -3 -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1241 -this -1750000963 -1 -this.elementData -1978757802 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null 726045964 12733619 null null null] -1 -this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null null null] -1 -this.elementCount 3 1 -this.capacityIncrement -4 -1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1243 +1182 this -1750000963 +388357135 1 this.elementData -1978757802 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 null null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" null null null] +[null "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1243 +1183 this -1750000963 +388357135 1 this.elementData -1978757802 +957465255 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +[null "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 -1 -obj -245301360 +3 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1244 +1183 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 null null] +[null 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +[null "java.lang.Object" null null null] 1 this.elementCount -4 +2 1 this.capacityIncrement -4 -1 -obj -245301360 +3 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1244 +1182 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -67825,520 +67489,517 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1245 +1184 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 anArray -1050620772 +1336735375 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1245 +1184 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 anArray -1050620772 +1336735375 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360] +[null 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1246 +1185 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 anArray -1172769370 +1984990929 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1246 +1185 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 anArray -1172769370 +1984990929 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null null null null null] +[null 540642172 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1247 +1186 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 anArray -1129889424 +1105423942 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1247 +1186 this -1750000963 +388357135 1 this.elementData -1978757802 +1254344205 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +3 1 this.capacityIncrement -4 +3 1 anArray -1129889424 +1105423942 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null 726045964 12733619 245301360 245301360 null] +[null 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1248 +1187 initialCapacity -3 +2 1 capacityIncrement -0 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1248 +1187 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 initialCapacity -3 +2 1 capacityIncrement -0 +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1249 +1188 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 -1 -anArray -571833038 -1 -anArray.getClass().getName() -"java.lang.Object[]" +3 1 -anArray[..] -[] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1249 +1188 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount -0 -1 -this.capacityIncrement -0 1 -anArray -571833038 1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +3 1 -anArray[..] -[] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1250 +1189 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount -0 1 -this.capacityIncrement -0 1 -anArray -808549341 +this.capacityIncrement +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1250 +1189 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 -1 -anArray -808549341 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1251 +1190 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 -1 -anArray -12255971 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1251 +1191 this -2001142394 +365181913 1 this.elementData -1458820291 +1031061344 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +3 1 -anArray -12255971 +minCapacity +3 1 -anArray.getClass().getName() + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +1191 +this +365181913 +1 +this.elementData +1327536153 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[413835715] +this.elementData[..] +[null 1836797772 null null null] 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1252 -initialCapacity +this.elementData[..].getClass().getName() +[null "java.lang.Integer" null null null] +1 +this.elementCount +2 +1 +this.capacityIncrement 3 1 -capacityIncrement -0 +minCapacity +3 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1252 +1190 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -0 -1 -initialCapacity 3 1 -capacityIncrement -0 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1253 +1192 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -68346,30 +68007,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1253 +1192 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -68377,706 +68038,517 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1254 +1193 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 anArray -1967670511 +367746789 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1254 +1193 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 anArray -1967670511 +367746789 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[null 1836797772 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1255 +1194 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 anArray -1537598224 +558216562 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1255 +1194 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 anArray -1537598224 +558216562 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[null 1836797772 540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1256 +1195 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 anArray -1742626417 +961712517 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1256 +1195 this -1975158132 +365181913 1 this.elementData -680509198 +1327536153 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -0 +3 1 anArray -1742626417 +961712517 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[null 1836797772 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1257 +1196 initialCapacity -3 +2 1 capacityIncrement -0 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1257 +1196 this -940212733 +1928931046 1 this.elementData -970728905 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 initialCapacity -3 +2 1 capacityIncrement -0 -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1258 -this -940212733 -1 -this.elementData -970728905 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1258 -this -940212733 -1 -this.elementData -970728905 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1259 -this -940212733 -1 -this.elementData -970728905 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1259 -this -940212733 -1 -this.elementData -970728905 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1260 +1197 this -940212733 +1928931046 1 this.elementData -970728905 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 -1 -anArray -607440076 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] [null null] 1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1260 -this -940212733 -1 -this.elementData -970728905 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null null] 1 this.elementCount -2 -1 -this.capacityIncrement -0 -1 -anArray -607440076 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +3 1 -anArray[..] -[245301360 245301360] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1261 +1197 this -940212733 +1928931046 1 this.elementData -970728905 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null null] 1 this.elementCount -2 -1 -this.capacityIncrement -0 1 -anArray -108099494 1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +3 1 -anArray[..] -[null null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1261 +1198 this -940212733 +1928931046 1 this.elementData -970728905 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null null] 1 this.elementCount -2 1 -this.capacityIncrement -0 1 -anArray -108099494 +this.capacityIncrement +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[245301360 245301360 null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1262 +1198 this -940212733 +1928931046 1 this.elementData -970728905 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -0 -1 -anArray -57030296 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[413835715 null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1262 +1199 this -940212733 +1928931046 1 this.elementData -970728905 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -0 -1 -anArray -57030296 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1263 -initialCapacity 3 1 -capacityIncrement -0 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1263 +1200 this -730478310 +1928931046 1 this.elementData -2132429918 +1034568234 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 -1 -initialCapacity 3 1 -capacityIncrement -0 +minCapacity +3 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1264 +1200 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 -1 -obj -245301360 +3 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1264 +1199 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 1477657879 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Integer" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1265 +1201 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 1477657879 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Integer" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -69084,30 +68556,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1265 +1201 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -69115,1218 +68587,1255 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1266 +1202 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1266 +1202 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1267 +1203 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 anArray -395047043 +482082765 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null] +[null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1267 +1203 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 anArray -395047043 +482082765 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1268 +1204 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 anArray -1683698824 +667821226 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null] +[null null null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1268 +1204 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 anArray -1683698824 +667821226 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null null null] +[null 1836797772 1477657879 540642172 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1269 +1205 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 anArray -534118449 +1209702763 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null] +[1684792003 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1269 +1205 this -730478310 +1928931046 1 this.elementData -2132429918 +835227336 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 anArray -534118449 +1209702763 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[null 1836797772 1477657879 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1270 +1206 initialCapacity -3 +2 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1270 +1206 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -3 +2 1 capacityIncrement -0 +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1271 +1207 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 -obj -726045964 +anArray +686466458 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1271 +1207 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 -obj -726045964 +anArray +686466458 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1272 +1208 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +[null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +875016237 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1272 +1208 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +875016237 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1273 +1209 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +[null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +105374791 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1273 +1209 this -447127883 +1028780142 1 this.elementData -833048728 +2128029086 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null null] 1 this.elementCount -3 -1 -this.capacityIncrement 0 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1274 -this -447127883 +this.capacityIncrement +4 1 -this.elementData -833048728 +anArray +105374791 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -3 +anArray[..] +[1684792003] 1 -this.capacityIncrement -0 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1210 +initialCapacity +2 1 -obj -null +capacityIncrement +4 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1275 +1210 this -447127883 +1107024580 1 this.elementData -833048728 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -0 +4 1 -minCapacity +initialCapacity +2 +1 +capacityIncrement 4 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1275 +1211 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null] 1 this.elementCount -3 -1 -this.capacityIncrement 0 1 -minCapacity +this.capacityIncrement 4 1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1274 +1211 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1276 +1212 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 anArray -207442883 +904861801 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1276 +1212 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 anArray -207442883 +904861801 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null] +[540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1277 +1213 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 anArray -1126575500 +204715855 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1277 +1213 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 anArray -1126575500 +204715855 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null null null null] +[540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1278 +1214 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 anArray -2138596548 +318857719 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1278 +1214 this -447127883 +1107024580 1 this.elementData -1604076703 +1010856212 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 anArray -2138596548 +318857719 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null] +[540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1279 +1215 initialCapacity -3 +2 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1279 +1215 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -3 +2 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1280 +1216 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1280 +1216 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1281 +1217 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1281 +1217 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1282 +1218 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1888442711 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1282 +1218 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1888442711 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1283 +1219 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1754894440 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1284 +1219 this -958382397 +745962066 1 this.elementData -1405593879 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 -1 -minCapacity 4 1 +anArray +1754894440 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null null] +1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1284 +1220 this -958382397 +745962066 1 this.elementData -1496207353 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 null null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 -1 -minCapacity 4 1 +anArray +1998767043 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null] +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1283 +1220 this -958382397 +745962066 1 this.elementData -1496207353 +1637290981 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -4 +2 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1998767043 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1285 +1221 +initialCapacity +2 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1221 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -4 -1 -this.capacityIncrement 0 1 -obj -null +this.capacityIncrement +4 1 -obj.getClass().getName() -nonsensical +initialCapacity 2 +1 +capacityIncrement +4 +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1285 +1222 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 +4 1 obj null @@ -70335,860 +69844,699 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1286 +1222 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -5 -1 -this.capacityIncrement -0 1 -anArray -1870959148 1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +4 1 -anArray[..] -[null null null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1286 +1223 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null] 1 this.elementCount -5 1 -this.capacityIncrement -0 1 -anArray -1870959148 +this.capacityIncrement +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[726045964 12733619 245301360 245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1287 +1223 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null "java.lang.Object"] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 -1 -anArray -1754841062 +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1287 +1224 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null "java.lang.Object"] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 -1 -anArray -1754841062 +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[726045964 12733619 245301360 245301360 null null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1288 +1225 this -958382397 +787738361 1 this.elementData -1496207353 +607932305 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null "java.lang.Object"] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 -1 -anArray -73321136 -1 -anArray.getClass().getName() -"java.lang.Object[]" +4 1 -anArray[..] -[413835715 null null null null null] +minCapacity +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1288 +1225 this -958382397 +787738361 1 this.elementData -1496207353 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null "java.lang.Object" null null null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 -1 -anArray -73321136 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[726045964 12733619 245301360 245301360 null null] +4 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1289 -initialCapacity +minCapacity 3 1 -capacityIncrement -1 -1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1289 +1224 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement +4 1 +obj +540642172 1 -initialCapacity -3 -1 -capacityIncrement -1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1290 +1226 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -1269132448 +1642030774 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1290 +1226 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -1269132448 +1642030774 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[null 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1291 +1227 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -1501471532 +1357563986 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1291 +1227 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -1501471532 +1357563986 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[null 540642172 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1292 +1228 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -151702427 +384587033 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1292 +1228 this -1800203021 +787738361 1 this.elementData -115071364 +168366 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -151702427 +384587033 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] +[null 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1293 +1229 initialCapacity -3 +2 1 capacityIncrement -1 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1293 +1229 this -599601600 +49752459 1 this.elementData -1510819476 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 initialCapacity -3 +2 1 capacityIncrement -1 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1294 +1230 this -599601600 +49752459 1 this.elementData -1510819476 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1294 -this -599601600 -1 -this.elementData -1510819476 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1295 -this -599601600 -1 -this.elementData -1510819476 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -1 -1 -anArray -496291004 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1295 -this -599601600 -1 -this.elementData -1510819476 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" null null] -1 -this.elementCount -1 -1 -this.capacityIncrement -1 -1 -anArray -496291004 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER -this_invocation_nonce -1296 +1230 this -599601600 +49752459 1 this.elementData -1510819476 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null null] 1 this.elementCount 1 1 -this.capacityIncrement -1 -1 -anArray -336419280 -1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +4 1 -anArray[..] -[null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1296 +1231 this -599601600 +49752459 1 this.elementData -1510819476 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null null] 1 this.elementCount 1 1 this.capacityIncrement +4 1 +obj +1836797772 1 -anArray -336419280 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1297 +1231 this -599601600 +49752459 1 this.elementData -1510819476 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer"] 1 this.elementCount -1 +2 1 this.capacityIncrement +4 1 +obj +1836797772 1 -anArray -2021880056 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715 null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1297 +1232 this -599601600 +49752459 1 this.elementData -1510819476 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer"] 1 this.elementCount -1 +2 1 this.capacityIncrement +4 1 +obj +540642172 1 -anArray -2021880056 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1298 -initialCapacity -3 -1 -capacityIncrement -1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1298 +1233 this -2104354711 +49752459 1 this.elementData -981445334 +411506101 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer"] 1 this.elementCount -0 +2 1 this.capacityIncrement +4 1 -1 -initialCapacity +minCapacity 3 1 -capacityIncrement -1 -1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1299 +1233 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772 null null null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer" null null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement +4 1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1299 +1232 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -71196,30 +70544,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1300 +1234 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null 1836797772 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -71227,30 +70575,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1300 +1234 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -71258,1206 +70606,1082 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1301 +1235 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -329835931 +1780034814 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1301 +1235 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -329835931 +1780034814 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[null 1836797772 540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1302 +1236 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -897199410 +1360657223 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1302 +1236 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -897199410 +1360657223 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[null 1836797772 540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1303 +1237 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -1747798283 +1905485420 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1303 +1237 this -2104354711 +49752459 1 this.elementData -981445334 +514455215 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -1747798283 +1905485420 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[null 1836797772 540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1304 +1238 initialCapacity -3 +2 1 capacityIncrement -1 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1304 +1238 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 initialCapacity -3 +2 1 capacityIncrement -1 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1305 +1239 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1305 +1239 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null null] 1 this.elementCount 1 1 this.capacityIncrement -1 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1306 +1240 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null null] 1 this.elementCount 1 1 this.capacityIncrement -1 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1306 +1240 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -1 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1307 +1241 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount 2 1 this.capacityIncrement -1 +4 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1307 -this -1964418715 -1 -this.elementData -571754027 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -obj -null +"java.lang.Integer" 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1308 +1242 this -1964418715 +551479935 1 this.elementData -571754027 +58940486 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer"] 1 this.elementCount -3 +2 1 this.capacityIncrement +4 1 -1 -anArray -1628095111 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null null null] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1308 -this -1964418715 -1 -this.elementData -571754027 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount +minCapacity 3 1 -this.capacityIncrement -1 -1 -anArray -1628095111 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null] -1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1309 +1242 this -1964418715 +551479935 1 this.elementData -571754027 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" null null null null] 1 this.elementCount -3 +2 1 this.capacityIncrement +4 1 -1 -anArray -157900503 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null null null null null null] -1 - -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 -this_invocation_nonce -1309 -this -1964418715 -1 -this.elementData -571754027 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount +minCapacity 3 1 -this.capacityIncrement -1 -1 -anArray -157900503 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null null null null] -1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1310 +1241 this -1964418715 +551479935 1 this.elementData -571754027 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 3 1 this.capacityIncrement +4 1 +obj +1477657879 1 -anArray -1691449876 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715 null null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1310 +1243 this -1964418715 +551479935 1 this.elementData -571754027 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount 3 1 this.capacityIncrement +4 1 +obj +540642172 1 -anArray -1691449876 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1311 -initialCapacity -3 -1 -capacityIncrement -1 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1311 -this -1957030593 -1 -this.elementData -953639099 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -1 -1 -initialCapacity -3 -1 -capacityIncrement -1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1312 +1243 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -1 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1312 +1244 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[null 1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -1 +4 1 this.capacityIncrement -1 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1313 +1244 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1313 +1245 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement +4 1 +anArray +1997859171 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1314 +1245 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement +4 1 +anArray +1997859171 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null 1836797772 1477657879 540642172 540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1314 +1246 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement +4 1 +anArray +550402284 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1315 +1246 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement +4 1 +anArray +550402284 1 -obj -null +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null 1836797772 1477657879 540642172 540642172 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1316 +1247 this -1957030593 +551479935 1 this.elementData -953639099 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement +4 +1 +anArray +959869407 1 +anArray.getClass().getName() +"java.lang.Object[]" 1 -minCapacity -4 +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1316 +1247 this -1957030593 +551479935 1 this.elementData -1141879332 +501107890 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null 1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null "java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement +4 +1 +anArray +959869407 1 +anArray.getClass().getName() +"java.lang.Object[]" 1 -minCapacity -4 +anArray[..] +[null 1836797772 1477657879 540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1315 +1248 +initialCapacity +3 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1248 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement +0 1 +initialCapacity +3 1 -obj -null +capacityIncrement +0 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1317 +1249 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -1652063332 +1438098656 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1317 +1249 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -1652063332 +1438098656 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1318 +1250 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -1412348861 +1594199808 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1318 +1250 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -1412348861 +1594199808 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1319 +1251 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -1210556536 +422396878 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1319 +1251 this -1957030593 +1449263511 1 this.elementData -1141879332 +116237769 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -1210556536 +422396878 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1320 +1252 initialCapacity 3 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1320 +1252 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -72472,23 +71696,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 3 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1321 +1253 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -72503,727 +71727,637 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1321 +1253 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1322 +1254 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement +0 1 +anArray +1769190683 1 -obj -12733619 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Integer" +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1322 +1254 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement +0 1 +anArray +1769190683 1 -obj -12733619 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Integer" +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1323 +1255 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement +0 1 +anArray +447981768 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1323 +1255 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement +0 1 +anArray +447981768 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1324 +1256 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement +0 1 +anArray +1125736023 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[1684792003 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1325 +1256 this -563628874 +1912962767 1 this.elementData -360118401 +452805835 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 -1 -this.capacityIncrement 1 1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1325 -this -563628874 +this.capacityIncrement +0 1 -this.elementData -901048361 +anArray +1125736023 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 12733619 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] +anArray[..] +[540642172 null] 1 -this.elementCount + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1257 +initialCapacity 3 1 -this.capacityIncrement -1 -1 -minCapacity -4 +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1324 +1257 this -563628874 +858952163 1 this.elementData -901048361 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement +0 1 +initialCapacity +3 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1326 +1258 this -563628874 +858952163 1 this.elementData -901048361 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1327 -this -563628874 -1 -this.elementData -901048361 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[726045964 12733619 245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -4 -1 -this.capacityIncrement -1 -1 -minCapacity -5 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1327 -this -563628874 -1 -this.elementData -2012608330 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[726045964 12733619 245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -4 -1 -this.capacityIncrement -1 -1 -minCapacity -5 +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1326 +1258 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -5 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1328 +1259 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -5 -1 -this.capacityIncrement 1 1 -anArray -893278413 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1328 +1259 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement +0 1 +obj +540642172 1 -anArray -893278413 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[726045964 12733619 245301360 245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1329 +1260 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -272111114 +1089418272 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1329 +1260 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -272111114 +1089418272 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null null null null null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1330 +1261 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -1378808535 +1233990028 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1330 +1261 this -563628874 +858952163 1 this.elementData -2012608330 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -1378808535 +1233990028 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1331 -initialCapacity -3 -1 -capacityIncrement -2 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1331 -this -139012968 -1 -this.elementData -2076228887 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -initialCapacity -3 -1 -capacityIncrement -2 +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1332 +1262 this -139012968 +858952163 1 this.elementData -2076228887 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 anArray -717123706 +1847008471 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1332 +1262 this -139012968 +858952163 1 this.elementData -2076228887 +1201484275 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 anArray -717123706 +1847008471 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1333 +1263 +initialCapacity +3 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1263 this -139012968 +1076607567 1 this.elementData -2076228887 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -73238,26 +72372,23 @@ this.elementCount 0 1 this.capacityIncrement -2 -1 -anArray -1019899778 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1333 +1264 this -139012968 +1076607567 1 this.elementData -2076228887 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -73272,411 +72403,392 @@ this.elementCount 0 1 this.capacityIncrement -2 -1 -anArray -1019899778 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1334 +1264 this -139012968 +1076607567 1 this.elementData -2076228887 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null] 1 this.elementCount -0 1 -this.capacityIncrement -2 1 -anArray -241098492 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1334 +1265 this -139012968 +1076607567 1 this.elementData -2076228887 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null] 1 this.elementCount -0 -1 -this.capacityIncrement -2 -1 -anArray -241098492 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[413835715] +this.capacityIncrement +0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1335 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -2 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1335 +1265 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -2 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1336 +1266 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1336 +1266 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1337 +1267 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -1564219875 +1509791656 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1337 +1267 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -1564219875 +1509791656 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1338 +1268 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -348632551 +257608164 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1338 +1268 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -348632551 +257608164 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1339 +1269 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -1131895641 +306115458 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1339 +1269 this -1988196802 +1076607567 1 this.elementData -778103894 +2036127838 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -1131895641 +306115458 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1340 +1270 initialCapacity 3 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1340 +1270 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -73691,23 +72803,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 initialCapacity 3 1 capacityIncrement -2 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1341 +1271 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -73722,72 +72834,72 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1341 +1271 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1342 +1272 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -73795,1237 +72907,1293 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1342 +1272 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1343 +1273 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -2 +0 1 -anArray -1092980403 +obj +540642172 1 -anArray.getClass().getName() +obj.getClass().getName() +"java.lang.Object" +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1273 +this +230643635 +1 +this.elementData +944427387 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[1836797772 540642172 540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +1 +this.elementCount +3 +1 +this.capacityIncrement +0 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1343 +1274 this -1359893161 +230643635 1 this.elementData -55901906 +944427387 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +3 1 this.capacityIncrement +0 +1 +obj +null +1 +obj.getClass().getName() +nonsensical 2 + +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +1275 +this +230643635 1 -anArray -1092980403 +this.elementData +944427387 1 -anArray.getClass().getName() +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[245301360 245301360] +this.elementData[..] +[1836797772 540642172 540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +1 +this.elementCount +3 +1 +this.capacityIncrement +0 +1 +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1344 +1275 this -1359893161 +230643635 1 this.elementData -55901906 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +3 1 this.capacityIncrement -2 +0 1 -anArray -146516783 +minCapacity +4 1 -anArray.getClass().getName() + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1274 +this +230643635 +1 +this.elementData +1636182655 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null null null] +this.elementData[..] +[1836797772 540642172 540642172 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +1 +this.elementCount +4 +1 +this.capacityIncrement +0 +1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1344 +1276 this -1359893161 +230643635 1 this.elementData -55901906 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -146516783 +71399214 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[null null null null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1345 +1276 this -1359893161 +230643635 1 this.elementData -55901906 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -1491312419 +71399214 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1836797772 540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1345 +1277 this -1359893161 +230643635 1 this.elementData -55901906 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -1491312419 +1932831450 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1346 -initialCapacity -3 -1 -capacityIncrement -2 +[null null null null null null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1346 +1277 this -1206181996 +230643635 1 this.elementData -55179092 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 -initialCapacity -3 +anArray +1932831450 1 -capacityIncrement -2 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 540642172 540642172 null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1347 +1278 this -1206181996 +230643635 1 this.elementData -55179092 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +496729294 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1347 +1278 this -1206181996 +230643635 1 this.elementData -55179092 +1636182655 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -1 +4 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +496729294 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 540642172 540642172 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1348 +1279 +initialCapacity +3 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1279 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +0 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1348 +1280 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -2 +0 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1349 +1280 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +0 1 obj -null +1836797772 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1349 +1281 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -2 +0 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1350 +1281 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -3 -1 -this.capacityIncrement 2 1 -anArray -1829547387 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1477657879 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1350 +1282 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -3 -1 -this.capacityIncrement 2 1 -anArray -1829547387 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1351 +1282 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -anArray -1532075563 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1351 +1283 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -anArray -1532075563 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360 null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1352 +1284 this -1206181996 +1302227152 1 this.elementData -55179092 +1122606666 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -anArray -1265059811 -1 -anArray.getClass().getName() -"java.lang.Object[]" +0 1 -anArray[..] -[413835715 null null null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1352 +1284 this -1206181996 +1302227152 1 this.elementData -55179092 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -anArray -1265059811 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1353 -initialCapacity -3 +0 1 -capacityIncrement -2 +minCapacity +4 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1353 +1283 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -2 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1354 +1285 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1354 +1285 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -2 +0 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1355 +1286 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1390869998 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1355 +1286 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1390869998 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1356 +1287 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1820383114 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1356 +1287 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1820383114 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1357 +1288 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -2 +0 1 -obj -null +anArray +1645547422 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1358 +1288 this -1772138177 +1302227152 1 this.elementData -875640596 +350068407 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -2 -1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1358 -this -1772138177 +0 1 -this.elementData -186064081 +anArray +1645547422 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 245301360 245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +anArray[..] +[1836797772 1477657879 540642172 540642172 null null] 1 -this.elementCount + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1289 +initialCapacity 3 1 -this.capacityIncrement -2 +capacityIncrement 1 -minCapacity -4 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1357 +1289 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 +initialCapacity +3 +1 +capacityIncrement +1 +1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1359 +1290 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -442819335 +369049246 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1359 +1290 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -442819335 +369049246 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1360 +1291 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1433726490 +1608297024 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1360 +1291 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1433726490 +1608297024 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1361 +1292 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1874598090 +1841396611 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1361 +1292 this -1772138177 +440737101 1 this.elementData -186064081 +2141817446 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1874598090 +1841396611 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1362 +1293 initialCapacity 3 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1362 +1293 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -75040,23 +74208,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 3 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1363 +1294 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -75071,283 +74239,348 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1363 +1294 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1364 +1295 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -2 1 -obj -12733619 1 -obj.getClass().getName() -"java.lang.Integer" +anArray +148626113 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1364 +1295 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 1 -obj -12733619 1 -obj.getClass().getName() -"java.lang.Integer" +anArray +148626113 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1365 +1296 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1847637306 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1365 +1296 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1847637306 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +this_invocation_nonce +1297 +this +1577592551 +1 +this.elementData +854587510 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null] +1 +this.elementCount +1 +1 +this.capacityIncrement +1 +1 +anArray +1904253191 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1366 +1297 this -637513493 +1577592551 1 this.elementData -893361968 +854587510 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1904253191 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1367 +1298 +initialCapacity +3 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1298 this -637513493 +1021436681 1 this.elementData -893361968 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +[null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -2 1 -minCapacity -4 +1 +initialCapacity +3 +1 +capacityIncrement +1 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1367 +1299 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] +[null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -2 1 -minCapacity -4 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1366 +1299 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -4 +1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -75355,288 +74588,288 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1368 +1300 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -4 +1 1 this.capacityIncrement -2 +1 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1368 +1300 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1369 +1301 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -605474553 +22600334 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1369 +1301 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -605474553 +22600334 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1370 +1302 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -1433292785 +1961173763 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1370 +1302 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -1433292785 +1961173763 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null null null null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1371 +1303 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -1027769096 +1202683709 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1371 +1303 this -637513493 +1021436681 1 this.elementData -1676419999 +1790585734 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -1027769096 +1202683709 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1372 +1304 initialCapacity 3 1 capacityIncrement -3 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1372 +1304 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -75651,23 +74884,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +1 1 initialCapacity 3 1 capacityIncrement -3 +1 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1373 +1305 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -75682,882 +74915,941 @@ this.elementCount 0 1 this.capacityIncrement -3 1 -anArray -1986804702 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1373 +1305 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 1 -anArray -1986804702 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1374 +1306 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 1 -anArray -1003399311 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1374 +1306 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 -anArray -1003399311 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1375 +1307 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 -anArray -2090623733 1 -anArray.getClass().getName() +obj +null +1 +obj.getClass().getName() +nonsensical +2 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1307 +this +2087885397 +1 +this.elementData +1002021887 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[413835715] +this.elementData[..] +[540642172 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null] +1 +this.elementCount +3 +1 +this.capacityIncrement +1 1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1375 +1308 this -1504223651 +2087885397 1 this.elementData -1309409873 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -3 +1 1 anArray -2090623733 +1712943792 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1376 -initialCapacity -3 -1 -capacityIncrement -3 +[null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1376 +1308 this -2133131964 +2087885397 1 this.elementData -1456915930 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -3 1 -initialCapacity -3 1 -capacityIncrement -3 +anArray +1712943792 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1377 +1309 this -2133131964 +2087885397 1 this.elementData -1456915930 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1525919705 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1377 +1309 this -2133131964 +2087885397 1 this.elementData -1456915930 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1525919705 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1378 +1310 this -2133131964 +2087885397 1 this.elementData -1456915930 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -777492416 +842741472 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1378 +1310 this -2133131964 +2087885397 1 this.elementData -1456915930 +1002021887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -777492416 +842741472 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 540642172 null null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1379 +1311 +initialCapacity +3 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1311 this -2133131964 +1156304131 1 this.elementData -1456915930 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement +1 +1 +initialCapacity 3 1 -anArray -2024527364 +capacityIncrement 1 -anArray.getClass().getName() +1 + +javautil.Vector13.addElement(java.lang.Object):::ENTER +this_invocation_nonce +1312 +this +1156304131 +1 +this.elementData +1766505436 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[null null null] +1 +this.elementData[..].getClass().getName() +[null null null] +1 +this.elementCount +0 +1 +this.capacityIncrement +1 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1379 +1312 this -2133131964 +1156304131 1 this.elementData -1456915930 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 1 -anArray -2024527364 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[245301360 null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1380 +1313 this -2133131964 +1156304131 1 this.elementData -1456915930 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 1 -anArray -1500503680 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715 null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1380 +1313 this -2133131964 +1156304131 1 this.elementData -1456915930 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -1 +2 1 this.capacityIncrement -3 1 -anArray -1500503680 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1381 -initialCapacity -3 +1314 +this +1156304131 +1 +this.elementData +1766505436 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[1836797772 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" null] +1 +this.elementCount +2 +1 +this.capacityIncrement 1 -capacityIncrement -3 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1381 +1314 this -1064883039 +1156304131 1 this.elementData -360522375 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +3 1 this.capacityIncrement -3 1 -initialCapacity -3 1 -capacityIncrement -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1382 +1315 this -1064883039 +1156304131 1 this.elementData -360522375 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +3 1 this.capacityIncrement -3 +1 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1382 +1316 this -1064883039 +1156304131 1 this.elementData -360522375 +1766505436 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1383 +1316 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +4 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1383 +1315 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1384 +1317 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -1248188438 +1164440413 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1384 +1317 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -1248188438 +1164440413 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[1836797772 540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1385 +1318 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -1682813570 +1610525991 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1385 +1318 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -1682813570 +1610525991 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1386 +1319 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -688040000 +1666607455 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1386 +1319 this -1064883039 +1156304131 1 this.elementData -360522375 +771775563 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -688040000 +1666607455 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1387 +1320 initialCapacity 3 1 capacityIncrement -3 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1387 +1320 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -76572,23 +75864,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +1 1 initialCapacity 3 1 capacityIncrement -3 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1388 +1321 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -76603,941 +75895,873 @@ this.elementCount 0 1 this.capacityIncrement -3 +1 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1388 +1321 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +1 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1389 +1322 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +1 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1389 +1322 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +1 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1390 +1323 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 2 1 this.capacityIncrement -3 +1 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1390 +1323 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 +1 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1391 +1324 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 1 -anArray -1896379805 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1391 +1325 this -1836324552 +1327006586 1 this.elementData -1619254427 +899644639 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -3 -1 -anArray -1896379805 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[245301360 245301360 null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1392 +1325 this -1836324552 +1327006586 1 this.elementData -1619254427 +530737374 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -3 1 -anArray -1650577508 -1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[null null null null null null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1392 +1324 this -1836324552 +1327006586 1 this.elementData -1619254427 +530737374 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 1 -anArray -1650577508 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360 null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1393 +1326 this -1836324552 +1327006586 1 this.elementData -1619254427 +530737374 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 -1 -anArray -62425010 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[413835715 null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1393 +1327 this -1836324552 +1327006586 1 this.elementData -1619254427 +530737374 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 1 -anArray -62425010 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1394 -initialCapacity -3 1 -capacityIncrement -3 +minCapacity +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1394 +1327 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +4 1 this.capacityIncrement -3 1 -initialCapacity -3 1 -capacityIncrement -3 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1395 +1326 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +5 1 this.capacityIncrement -3 +1 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1395 +1328 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -3 1 -obj -726045964 1 -obj.getClass().getName() -"java.lang.Integer" +anArray +1147580192 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1396 +1328 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1147580192 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1396 +1329 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +173099767 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1397 +1329 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +173099767 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1397 +1330 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -3 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" 1 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1398 -this -1205123334 1 -this.elementData -1589599681 +anArray +112797691 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] -1 -this.elementCount -3 -1 -this.capacityIncrement -3 -1 -obj -null +anArray[..] +[1684792003 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1399 +1330 this -1205123334 +1327006586 1 this.elementData -1589599681 +1332668132 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -3 1 -minCapacity -4 -1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1399 -this -1205123334 1 -this.elementData -1705269887 +anArray +112797691 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 245301360 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] -1 -this.elementCount -3 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null] 1 -this.capacityIncrement + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1331 +initialCapacity 3 1 -minCapacity -4 +capacityIncrement +2 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1398 +1331 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 -obj -null +initialCapacity +3 1 -obj.getClass().getName() -nonsensical +capacityIncrement 2 +1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1400 +1332 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -154237947 +1336996537 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1400 +1332 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -154237947 +1336996537 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1401 +1333 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -264413300 +7967307 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1401 +1333 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -264413300 +7967307 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1402 +1334 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -850667457 +2073707154 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1402 +1334 this -1205123334 +1045997582 1 this.elementData -1705269887 +1337335626 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -850667457 +2073707154 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1403 +1335 initialCapacity 3 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1403 +1335 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -77552,23 +76776,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 3 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1404 +1336 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -77583,671 +76807,637 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1404 +1336 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1405 +1337 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 -obj -12733619 +anArray +6519275 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1405 +1337 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +2 1 -obj -12733619 +anArray +6519275 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1406 +1338 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +692331943 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1406 +1338 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +692331943 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1407 +1339 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +1741979653 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1408 +1339 this -1369311720 +78204644 1 this.elementData -1587316788 +1287934450 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 -1 -this.capacityIncrement -3 1 -minCapacity -4 1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1408 -this -1369311720 +this.capacityIncrement +2 1 -this.elementData -1991392882 +anArray +1741979653 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 12733619 245301360 null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] -1 -this.elementCount -3 +anArray[..] +[540642172 null] 1 -this.capacityIncrement + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1340 +initialCapacity 3 1 -minCapacity -4 +capacityIncrement +2 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1407 +1340 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1409 +1341 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1409 +1341 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" null null] 1 this.elementCount -5 +1 1 this.capacityIncrement -3 +2 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1410 +1342 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" null null] 1 this.elementCount -5 1 -this.capacityIncrement -3 1 -anArray -807529279 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1410 +1342 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 -1 -anArray -807529279 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[726045964 12733619 245301360 245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1411 +1343 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -47943113 +447212746 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1411 +1343 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -47943113 +447212746 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null null null null null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1412 +1344 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -473532566 +1496355635 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1412 +1344 this -1369311720 +166794956 1 this.elementData -1991392882 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -473532566 +1496355635 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1413 -initialCapacity -3 -1 -capacityIncrement -4 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1413 -this -87440980 -1 -this.elementData -741736312 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null] -1 -this.elementData[..].getClass().getName() -[null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -4 -1 -initialCapacity -3 -1 -capacityIncrement -4 +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1414 +1345 this -87440980 +166794956 1 this.elementData -741736312 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 anArray -219624949 +1484171695 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1414 +1345 this -87440980 +166794956 1 this.elementData -741736312 +306612792 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 anArray -219624949 +1484171695 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1415 +1346 +initialCapacity +3 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1346 this -87440980 +2127036371 1 this.elementData -741736312 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -78262,26 +77452,23 @@ this.elementCount 0 1 this.capacityIncrement -4 -1 -anArray -1859612297 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[] +capacityIncrement +2 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1415 +1347 this -87440980 +2127036371 1 this.elementData -741736312 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -78296,411 +77483,392 @@ this.elementCount 0 1 this.capacityIncrement -4 -1 -anArray -1859612297 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1416 +1347 this -87440980 +2127036371 1 this.elementData -741736312 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null] 1 this.elementCount -0 1 -this.capacityIncrement -4 1 -anArray -26877241 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1416 +1348 this -87440980 +2127036371 1 this.elementData -741736312 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null null] 1 this.elementCount -0 1 -this.capacityIncrement -4 -1 -anArray -26877241 1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] +this.capacityIncrement +2 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1417 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -4 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1417 +1348 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 -initialCapacity -3 +obj +540642172 1 -capacityIncrement -4 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1418 +1349 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1418 +1349 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1419 +1350 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -741995451 +106374177 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1419 +1350 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -741995451 +106374177 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1420 +1351 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -280006828 +1803669141 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1420 +1351 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -280006828 +1803669141 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1421 +1352 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -938087619 +712609105 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1421 +1352 this -754223617 +2127036371 1 this.elementData -1787846325 +1529060733 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -938087619 +712609105 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1422 +1353 initialCapacity 3 1 capacityIncrement -4 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1422 +1353 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -78715,23 +77883,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +2 1 initialCapacity 3 1 capacityIncrement -4 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1423 +1354 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -78746,72 +77914,72 @@ this.elementCount 0 1 this.capacityIncrement -4 +2 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1423 +1354 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +2 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1424 +1355 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -78819,1237 +77987,1293 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1424 +1355 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1425 +1356 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -4 -1 -anArray -1292069128 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1425 +1356 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +3 1 this.capacityIncrement -4 -1 -anArray -1292069128 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1426 +1357 this -1761159906 +1836463382 1 this.elementData -1047433541 +1388278453 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -2 +3 1 this.capacityIncrement -4 +2 1 -anArray -451195832 +obj +null 1 -anArray.getClass().getName() +obj.getClass().getName() +nonsensical +2 + +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +1358 +this +1836463382 +1 +this.elementData +1388278453 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null null null] +this.elementData[..] +[1836797772 540642172 540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +1 +this.elementCount +3 +1 +this.capacityIncrement +2 +1 +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1426 +1358 this -1761159906 +1836463382 1 this.elementData -1047433541 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +3 1 this.capacityIncrement +2 +1 +minCapacity 4 1 -anArray -451195832 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1357 +this +1836463382 1 -anArray.getClass().getName() +this.elementData +934275857 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[245301360 245301360 null null] +this.elementData[..] +[1836797772 540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +4 +1 +this.capacityIncrement +2 +1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1427 +1359 this -1761159906 +1836463382 1 this.elementData -1047433541 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -4 +2 1 anArray -483590867 +1364913072 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1427 +1359 this -1761159906 +1836463382 1 this.elementData -1047433541 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -4 +2 1 anArray -483590867 +1364913072 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1428 -initialCapacity -3 -1 -capacityIncrement -4 +[1836797772 540642172 540642172 null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1428 +1360 this -1633581421 +1836463382 1 this.elementData -24515852 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -4 +2 1 -initialCapacity -3 +anArray +232307208 1 -capacityIncrement -4 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1429 +1360 this -1633581421 +1836463382 1 this.elementData -24515852 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +232307208 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 540642172 540642172 null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1429 +1361 this -1633581421 +1836463382 1 this.elementData -24515852 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +609962972 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1430 +1361 this -1633581421 +1836463382 1 this.elementData -24515852 +934275857 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[1836797772 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +609962972 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 540642172 540642172 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1430 +1362 +initialCapacity +3 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1362 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -4 +2 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1431 +1363 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -4 +2 1 obj -null +1836797772 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1431 +1363 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -4 +2 1 obj -null +1836797772 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1432 +1364 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" null null] 1 this.elementCount -3 1 -this.capacityIncrement -4 1 -anArray -1868547987 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1477657879 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1432 +1364 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -3 +2 1 this.capacityIncrement -4 -1 -anArray -1868547987 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1477657879 1 -anArray[..] -[245301360 245301360 null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1433 +1365 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -3 +2 1 this.capacityIncrement -4 -1 -anArray -2032647428 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1433 +1365 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -4 -1 -anArray -2032647428 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 245301360 null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1434 +1366 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -4 -1 -anArray -535465920 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715 null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1434 +1367 this -1633581421 +1818544933 1 this.elementData -24515852 +1793436274 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -4 -1 -anArray -535465920 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1435 -initialCapacity -3 +2 1 -capacityIncrement +minCapacity 4 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1435 +1367 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -4 -1 -initialCapacity -3 +2 1 -capacityIncrement +minCapacity 4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1436 +1366 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +4 1 this.capacityIncrement -4 +2 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1436 +1368 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +4 1 this.capacityIncrement -4 +2 1 obj -726045964 +null 1 obj.getClass().getName() -"java.lang.Integer" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1437 +1368 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -4 +2 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1437 +1369 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +1549725679 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1438 +1369 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +1549725679 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1438 +1370 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +371800738 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1439 +1370 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -4 +2 1 -obj -null +anArray +371800738 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1440 +1371 this -1619236510 +1818544933 1 this.elementData -1595248786 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -4 +2 1 -minCapacity -4 +anArray +1364767791 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1440 +1371 this -1619236510 +1818544933 1 this.elementData -13013507 +572868060 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[1836797772 1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -4 +2 1 -minCapacity -4 +anArray +1364767791 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1439 +1372 +initialCapacity +3 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1372 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 -obj -null +initialCapacity +3 +1 +capacityIncrement +3 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1441 +1373 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1822163802 +762476028 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1441 +1373 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1822163802 +762476028 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1442 +1374 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1990213994 +966739377 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1442 +1374 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1990213994 +966739377 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1443 +1375 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -321311486 +952562199 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1443 +1375 this -1619236510 +1499136125 1 this.elementData -13013507 +1926343982 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 245301360 245301360 null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -321311486 +952562199 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 245301360 245301360 null null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1444 +1376 initialCapacity 3 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1444 +1376 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -80064,23 +79288,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 3 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1445 +1377 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -80095,1235 +79319,1179 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1445 +1377 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1446 +1378 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 -obj -12733619 +anArray +982757413 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1446 +1378 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -obj -12733619 +anArray +982757413 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1447 +1379 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +902478634 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1447 +1379 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +902478634 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1448 +1380 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +2114444063 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1449 +1380 this -1508256644 +1199673596 1 this.elementData -372446520 +2044903525 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] +["java.lang.Object" null null] 1 this.elementCount -3 -1 -this.capacityIncrement -4 1 -minCapacity -4 1 - -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 -this_invocation_nonce -1449 -this -1508256644 +this.capacityIncrement +3 1 -this.elementData -1941314282 +anArray +2114444063 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[726045964 12733619 245301360 null null null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null null] +anArray[..] +[540642172 null] 1 -this.elementCount + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1381 +initialCapacity 3 1 -this.capacityIncrement -4 -1 -minCapacity -4 +capacityIncrement +3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1448 +1381 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1450 +1382 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1450 +1382 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount -5 +1 1 this.capacityIncrement -4 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1451 +1383 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" null null] 1 this.elementCount -5 1 -this.capacityIncrement -4 1 -anArray -950088703 +this.capacityIncrement +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1451 +1383 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 -1 -anArray -950088703 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[726045964 12733619 245301360 245301360 null] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1452 +1384 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1599915876 +1448061896 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1452 +1384 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1599915876 +1448061896 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null null null null null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1453 +1385 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1143383845 +382750013 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1453 +1385 this -1508256644 +294247762 1 this.elementData -1941314282 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[726045964 12733619 245301360 245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1143383845 +382750013 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[726045964 12733619 245301360 245301360 null null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1454 -initialCapacity -4 -1 -capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1454 -this -1168609559 -1 -this.elementData -2082906298 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -0 -1 -initialCapacity -4 -1 -capacityIncrement -0 +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1455 +1386 this -1168609559 +294247762 1 this.elementData -2082906298 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +3 1 anArray -1275220739 +1240232440 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1455 +1386 this -1168609559 +294247762 1 this.elementData -2082906298 +918312414 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +3 1 anArray -1275220739 +1240232440 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1456 +1387 +initialCapacity +3 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1387 this -1168609559 +489349054 1 this.elementData -2082906298 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 -1 -anArray -748163313 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +3 1 -anArray[..] -[] +capacityIncrement +3 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1456 +1388 this -1168609559 +489349054 1 this.elementData -2082906298 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 -1 -anArray -748163313 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1457 +1388 this -1168609559 +489349054 1 this.elementData -2082906298 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null] 1 this.elementCount -0 1 -this.capacityIncrement -0 1 -anArray -864048406 +this.capacityIncrement +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1457 +1389 this -1168609559 +489349054 1 this.elementData -2082906298 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null] 1 this.elementCount -0 1 -this.capacityIncrement -0 -1 -anArray -864048406 1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] +this.capacityIncrement +3 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1458 -initialCapacity -4 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1458 +1389 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +3 1 -initialCapacity -4 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1459 +1390 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +3 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1459 +1390 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1460 +1391 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 anArray -446107260 +574434418 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1460 +1391 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 anArray -446107260 +574434418 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1461 +1392 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 anArray -859307143 +150268540 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1461 +1392 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 anArray -859307143 +150268540 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1462 +1393 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 anArray -547626326 +1130894323 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1462 +1393 this -777138628 +489349054 1 this.elementData -373379742 +915416632 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 anArray -547626326 +1130894323 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1463 +1394 initialCapacity -4 +3 1 capacityIncrement -0 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1463 +1394 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 initialCapacity -4 +3 1 capacityIncrement -0 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1464 +1395 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1464 +1395 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +3 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1465 +1396 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -81331,129 +80499,241 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1465 +1396 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1466 +1397 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount 2 1 this.capacityIncrement -0 +3 1 -anArray -1073123996 +obj +540642172 1 -anArray.getClass().getName() +obj.getClass().getName() +"java.lang.Object" +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1397 +this +1962826816 +1 +this.elementData +1072410641 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[1836797772 540642172 540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +1 +this.elementCount +3 +1 +this.capacityIncrement +3 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1466 +1398 this -1988233687 +1962826816 1 this.elementData -1398030089 +1072410641 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount +3 +1 +this.capacityIncrement +3 +1 +obj +null +1 +obj.getClass().getName() +nonsensical 2 + +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +1399 +this +1962826816 +1 +this.elementData +1072410641 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[1836797772 540642172 540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] +1 +this.elementCount +3 1 this.capacityIncrement -0 +3 1 -anArray -1073123996 +minCapacity +4 1 -anArray.getClass().getName() + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +1399 +this +1962826816 +1 +this.elementData +283318938 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[245301360 245301360] +this.elementData[..] +[1836797772 540642172 540642172 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +3 +1 +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1467 +1398 this -1988233687 +1962826816 1 this.elementData -1398030089 +283318938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount +4 +1 +this.capacityIncrement +3 +1 +obj +null +1 +obj.getClass().getName() +nonsensical 2 + +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +this_invocation_nonce +1400 +this +1962826816 +1 +this.elementData +283318938 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[1836797772 540642172 540642172 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +1 +this.elementCount +4 1 this.capacityIncrement -0 +3 1 anArray -1427333266 +320304382 1 anArray.getClass().getName() "java.lang.Object[]" @@ -81464,2753 +80744,2877 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1467 +1400 this -1988233687 +1962826816 1 this.elementData -1398030089 +283318938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 anArray -1427333266 +320304382 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1468 +1401 this -1988233687 +1962826816 1 this.elementData -1398030089 +283318938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 anArray -1797864672 +361571968 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1468 +1401 this -1988233687 +1962826816 1 this.elementData -1398030089 +283318938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 anArray -1797864672 +361571968 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1469 -initialCapacity -4 -1 -capacityIncrement -0 +[1836797772 540642172 540642172 null null null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1469 +1402 this -1616629014 +1962826816 1 this.elementData -720736454 +283318938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 +3 1 -initialCapacity -4 +anArray +2005169944 1 -capacityIncrement -0 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1470 +1402 this -1616629014 +1962826816 1 this.elementData -720736454 +283318938 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +2005169944 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 540642172 540642172 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1470 +1403 +initialCapacity +3 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1403 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +3 1 -obj -245301360 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1471 +1404 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +3 1 obj -null +1836797772 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1471 +1404 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +3 1 obj -null +1836797772 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1472 +1405 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +3 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1472 +1405 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +3 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1473 +1406 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 -1 -anArray -1609813298 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1473 +1406 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -0 -1 -anArray -1609813298 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 null 245301360] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1474 +1407 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -0 -1 -anArray -2133114580 +3 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1474 +1408 this -1616629014 +2134607032 1 this.elementData -720736454 +1470344997 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -0 -1 -anArray -2133114580 -1 -anArray.getClass().getName() -"java.lang.Object[]" +3 1 -anArray[..] -[245301360 null 245301360 null null null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1475 +1408 this -1616629014 +2134607032 1 this.elementData -720736454 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null] 1 this.elementCount 3 1 this.capacityIncrement -0 -1 -anArray -1164743042 -1 -anArray.getClass().getName() -"java.lang.Object[]" +3 1 -anArray[..] -[413835715 null null null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1475 +1407 this -1616629014 +2134607032 1 this.elementData -720736454 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +4 1 this.capacityIncrement -0 -1 -anArray -1164743042 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360 null] +3 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1476 -initialCapacity -4 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1476 +1409 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 -1 -initialCapacity -4 +3 1 -capacityIncrement -0 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1477 +1409 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -0 +3 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1477 +1410 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +2131670196 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1478 +1410 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +2131670196 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1478 +1411 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +5 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +1546908073 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1479 +1411 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +5 1 this.capacityIncrement -0 +3 1 -obj -null +anArray +1546908073 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1479 +1412 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 -obj -null +anArray +371439501 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1480 +1412 this -1522864489 +2134607032 1 this.elementData -1073361677 +728115831 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -0 +3 1 -obj -726045964 +anArray +371439501 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1836797772 1477657879 540642172 540642172 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1480 +1413 +initialCapacity +3 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1413 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 -obj -726045964 +initialCapacity +3 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +4 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1481 +1414 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 anArray -1127070539 +1162918744 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1481 +1414 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 anArray -1127070539 +1162918744 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1482 +1415 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 anArray -1868782433 +1321530272 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1482 +1415 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 anArray -1868782433 +1321530272 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1483 +1416 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 anArray -1678014056 +573673894 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1483 +1416 this -1522864489 +210506412 1 this.elementData -1073361677 +112049309 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 anArray -1678014056 +573673894 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1484 +1417 initialCapacity -4 +3 1 capacityIncrement -0 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1484 +1417 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 initialCapacity -4 +3 1 capacityIncrement -0 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1485 +1418 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1485 +1418 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1486 +1419 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1617550160 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1486 +1419 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1617550160 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1487 +1420 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +1325124186 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +this_invocation_nonce +1420 +this +1226020905 +1 +this.elementData +156856360 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null] +1 +this.elementCount +1 +1 +this.capacityIncrement +4 +1 +anArray +1325124186 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1487 +1421 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +461160828 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1488 +1421 this -1626986788 +1226020905 1 this.elementData -857668665 +156856360 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -0 +4 1 -obj -null +anArray +461160828 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1488 +1422 +initialCapacity +3 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1422 this -1626986788 +1499867659 1 this.elementData -857668665 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 -obj -null +initialCapacity +3 +1 +capacityIncrement +4 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1489 +1423 this -1626986788 +1499867659 1 this.elementData -857668665 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1490 +1423 this -1626986788 +1499867659 1 this.elementData -857668665 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 -minCapacity -5 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1490 +1424 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null null null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null null] +["java.lang.Object" null null] 1 this.elementCount -4 +1 1 this.capacityIncrement -0 +4 1 -minCapacity -5 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1489 +1424 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1491 +1425 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 anArray -330287752 +1740797075 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1491 +1425 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 anArray -330287752 +1740797075 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1492 +1426 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 anArray -2048504016 +440938038 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1492 +1426 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 anArray -2048504016 +440938038 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null null null null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1493 +1427 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 anArray -749168208 +1922464006 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1493 +1427 this -1626986788 +1499867659 1 this.elementData -927013991 +2012993836 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 anArray -749168208 +1922464006 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1494 +1428 initialCapacity -4 +3 1 capacityIncrement -1 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1494 +1428 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 initialCapacity -4 +3 1 capacityIncrement -1 +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1495 +1429 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement +4 1 +obj +540642172 1 -anArray -395385389 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1495 +1429 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null] 1 this.elementCount -0 -1 -this.capacityIncrement 1 1 -anArray -395385389 +this.capacityIncrement +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1496 +1430 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null] 1 this.elementCount -0 -1 -this.capacityIncrement 1 1 -anArray -927829105 +this.capacityIncrement +4 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1496 +1430 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement +4 1 +obj +540642172 1 -anArray -927829105 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1497 +1431 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement +4 1 +obj +null 1 -anArray -1145006868 +obj.getClass().getName() +nonsensical +2 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1431 +this +1536031937 1 -anArray.getClass().getName() +this.elementData +798981583 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[413835715] +this.elementData[..] +[540642172 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null] +1 +this.elementCount +3 +1 +this.capacityIncrement +4 +1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1497 +1432 this -573449495 +1536031937 1 this.elementData -59054729 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 anArray -1145006868 +1954406292 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1498 -initialCapacity -4 -1 -capacityIncrement -1 +[null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1498 +1432 this -529469709 +1536031937 1 this.elementData -1772649642 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 -1 -initialCapacity 4 1 -capacityIncrement +anArray +1954406292 1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1499 +1433 this -529469709 +1536031937 1 this.elementData -1772649642 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement +4 1 +anArray +904058452 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1499 +1433 this -529469709 +1536031937 1 this.elementData -1772649642 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 +anArray +904058452 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[540642172 540642172 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1500 +1434 this -529469709 +1536031937 1 this.elementData -1772649642 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -1 +4 1 anArray -881898263 +29183965 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1500 +1434 this -529469709 +1536031937 1 this.elementData -1772649642 +798981583 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -1 +4 1 anArray -881898263 +29183965 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 540642172 null null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1501 +1435 +initialCapacity +3 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1435 this -529469709 +1427651360 1 this.elementData -1772649642 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement +4 1 +initialCapacity +3 1 -anArray -131974647 +capacityIncrement +4 1 -anArray.getClass().getName() + +javautil.Vector13.addElement(java.lang.Object):::ENTER +this_invocation_nonce +1436 +this +1427651360 +1 +this.elementData +1334042472 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[null null null] +1 +this.elementData[..].getClass().getName() +[null null null] +1 +this.elementCount +0 +1 +this.capacityIncrement +4 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1501 +1436 this -529469709 +1427651360 1 this.elementData -1772649642 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement +4 1 +obj +1836797772 1 -anArray -131974647 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1502 +1437 this -529469709 +1427651360 1 this.elementData -1772649642 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement +4 +1 +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 -anArray -1894768425 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1437 +this +1427651360 1 -anArray.getClass().getName() +this.elementData +1334042472 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[413835715 null] +this.elementData[..] +[1836797772 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Integer" "java.lang.Object" null] +1 +this.elementCount +2 +1 +this.capacityIncrement +4 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1502 +1438 this -529469709 +1427651360 1 this.elementData -1772649642 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" null] 1 this.elementCount -1 +2 1 this.capacityIncrement -1 -1 -anArray -1894768425 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1503 -initialCapacity 4 1 -capacityIncrement +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1503 +1438 this -337917612 +1427651360 1 this.elementData -1434542216 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 -1 -initialCapacity 4 1 -capacityIncrement +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1504 +1439 this -337917612 +1427651360 1 this.elementData -1434542216 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +3 1 this.capacityIncrement -1 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1504 +1440 this -337917612 +1427651360 1 this.elementData -1434542216 +1334042472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1505 +1440 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +4 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1505 +1439 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1506 +1441 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -552119443 +131635550 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1506 +1441 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -552119443 +131635550 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360] +[1836797772 540642172 540642172 null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1507 +1442 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -194639814 +319644606 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1507 +1442 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -194639814 +319644606 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1508 +1443 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -693759517 +1118078504 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[1684792003 null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1508 +1443 this -337917612 +1427651360 1 this.elementData -1434542216 +1827725498 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 anArray -693759517 +1118078504 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] +[1836797772 540642172 540642172 null null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1509 +1444 initialCapacity -4 +3 1 capacityIncrement -1 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1509 +1444 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 initialCapacity -4 +3 1 capacityIncrement -1 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1510 +1445 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +[null null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1510 +1445 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -1 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1511 +1446 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null] 1 this.elementCount 1 1 this.capacityIncrement -1 +4 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1511 +1446 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 2 1 this.capacityIncrement -1 +4 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1512 +1447 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 1477657879 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Integer" null] 1 this.elementCount 2 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -84218,750 +83622,682 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1512 +1447 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1513 +1448 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement +4 1 +obj +540642172 1 -anArray -791681940 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1513 +1449 this -1327482656 +691690486 1 this.elementData -793390709 +1793799654 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object"] 1 this.elementCount 3 1 this.capacityIncrement +4 1 -1 -anArray -791681940 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1514 +1449 this -1327482656 +691690486 1 this.elementData -793390709 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172 null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" null null null null] 1 this.elementCount 3 1 this.capacityIncrement +4 1 -1 -anArray -2137172415 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[null null null null null null] +minCapacity +4 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1514 +1448 this -1327482656 +691690486 1 this.elementData -793390709 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -3 +4 1 this.capacityIncrement +4 1 +obj +540642172 1 -anArray -2137172415 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360 null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1515 +1450 this -1327482656 +691690486 1 this.elementData -793390709 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -3 +4 1 this.capacityIncrement +4 1 +obj +null 1 -anArray -645299183 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715 null null null] -1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1515 +1450 this -1327482656 +691690486 1 this.elementData -793390709 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -1 -1 -anArray -645299183 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1516 -initialCapacity 4 1 -capacityIncrement -1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1516 +1451 this -750951331 +691690486 1 this.elementData -477626698 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -1 -1 -initialCapacity 4 1 -capacityIncrement +anArray +1961945640 1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1517 +1451 this -750951331 +691690486 1 this.elementData -477626698 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement +4 1 +anArray +1961945640 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[1836797772 1477657879 540642172 540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1517 +1452 this -750951331 +691690486 1 this.elementData -477626698 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement +4 1 +anArray +258931371 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1518 +1452 this -750951331 +691690486 1 this.elementData -477626698 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement +4 1 +anArray +258931371 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[1836797772 1477657879 540642172 540642172 null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1518 +1453 this -750951331 +691690486 1 this.elementData -477626698 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +5 1 this.capacityIncrement +4 1 +anArray +1008315045 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1519 +1453 this -750951331 +691690486 1 this.elementData -477626698 +310623126 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1836797772 1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -2 +5 1 this.capacityIncrement +4 1 +anArray +1008315045 1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1519 -this -750951331 -1 -this.elementData -477626698 -1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[245301360 245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -obj -null +anArray[..] +[1836797772 1477657879 540642172 540642172 null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1520 -this -750951331 -1 -this.elementData -477626698 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] -1 -this.elementCount -3 -1 -this.capacityIncrement -1 -1 -obj -726045964 +1454 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1520 +1454 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement +0 1 +initialCapacity +4 +1 +capacityIncrement +0 1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" -1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1521 +1455 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -178040800 +953742666 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1521 +1455 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -178040800 +953742666 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1522 +1456 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -887005329 +1239759990 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1522 +1456 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -887005329 +1239759990 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1523 +1457 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -67087029 +891093184 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1523 +1457 this -750951331 +860481979 1 this.elementData -477626698 +1083962448 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -1 +0 1 anArray -67087029 +891093184 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1524 +1458 initialCapacity 4 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1524 +1458 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -84976,23 +84312,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 4 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1525 +1459 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -85007,671 +84343,637 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1525 +1459 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1526 +1460 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement +0 1 +anArray +902830499 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1526 +1460 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement +0 1 +anArray +902830499 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1527 +1461 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement +0 1 +anArray +1754662105 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1527 +1461 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 +1 1 this.capacityIncrement +0 1 +anArray +1754662105 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1528 +1462 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 +1 1 this.capacityIncrement +0 1 +anArray +403147759 1 -obj -null +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1528 +1462 this -102781728 +708533063 1 this.elementData -875650308 +1438030319 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -4 -1 -this.capacityIncrement -1 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1529 -this -102781728 +this.capacityIncrement +0 1 -this.elementData -875650308 +anArray +403147759 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[12733619 245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +anArray[..] +[540642172 null] 1 -this.elementCount + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1463 +initialCapacity 4 1 -this.capacityIncrement -1 -1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1530 +1463 this -102781728 +2040467681 1 this.elementData -875650308 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement +0 1 +initialCapacity +4 1 -minCapacity -5 +capacityIncrement +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1530 +1464 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement +0 1 +obj +540642172 1 -minCapacity -5 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1529 +1464 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" null null null] 1 this.elementCount -5 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1531 +1465 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" null null null] 1 this.elementCount -5 -1 -this.capacityIncrement 1 1 -anArray -1505820404 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1531 +1465 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement +0 1 +obj +540642172 1 -anArray -1505820404 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[12733619 245301360 245301360 null 726045964] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1532 +1466 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -228750133 +341796579 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1532 +1466 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -228750133 +341796579 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null null null null null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1533 +1467 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -607757201 +807657332 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1533 +1467 this -102781728 +2040467681 1 this.elementData -349293665 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 anArray -607757201 +807657332 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1534 -initialCapacity -4 -1 -capacityIncrement -2 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1534 -this -1143052075 -1 -this.elementData -2035002110 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -2 -1 -initialCapacity -4 -1 -capacityIncrement -2 +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1535 +1468 this -1143052075 +2040467681 1 this.elementData -2035002110 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 anArray -1455900648 +825936265 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1535 +1468 this -1143052075 +2040467681 1 this.elementData -2035002110 +1278677872 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 anArray -1455900648 +825936265 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1536 +1469 +initialCapacity +4 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1469 this -1143052075 +1164107853 1 this.elementData -2035002110 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -85686,26 +84988,23 @@ this.elementCount 0 1 this.capacityIncrement -2 -1 -anArray -893517018 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[] +capacityIncrement +0 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1536 +1470 this -1143052075 +1164107853 1 this.elementData -2035002110 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -85720,153 +85019,134 @@ this.elementCount 0 1 this.capacityIncrement -2 -1 -anArray -893517018 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1537 +1470 this -1143052075 +1164107853 1 this.elementData -2035002110 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 1 -this.capacityIncrement -2 1 -anArray -2134861702 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1537 +1471 this -1143052075 +1164107853 1 this.elementData -2035002110 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 1 -this.capacityIncrement -2 -1 -anArray -2134861702 1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[413835715] +this.capacityIncrement +0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1538 -initialCapacity -4 +obj +null 1 -capacityIncrement +obj.getClass().getName() +nonsensical 2 -1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1538 +1471 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 -initialCapacity -4 +obj +null 1 -capacityIncrement +obj.getClass().getName() +nonsensical 2 -1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1539 +1472 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -85874,30 +85154,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1539 +1472 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -85905,226 +85185,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1540 +1473 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -389869238 +68377659 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1540 +1473 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -389869238 +68377659 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1541 +1474 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -559676069 +1661123505 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1541 +1474 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -559676069 +1661123505 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1542 +1475 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -497317823 +825249556 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1542 +1475 this -463851438 +1164107853 1 this.elementData -585479856 +711327356 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 anArray -497317823 +825249556 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1543 +1476 initialCapacity 4 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1543 +1476 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -86139,23 +85419,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 initialCapacity 4 1 capacityIncrement -2 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1544 +1477 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -86170,10 +85450,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -86181,18 +85461,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1544 +1477 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null null] @@ -86201,10 +85481,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -86212,18 +85492,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1545 +1478 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null null] @@ -86232,10 +85512,10 @@ this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -86243,18 +85523,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1545 +1478 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -86263,29 +85543,29 @@ this.elementCount 2 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1546 +1479 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -86294,78 +85574,134 @@ this.elementCount 2 1 this.capacityIncrement +0 +1 +obj +null +1 +obj.getClass().getName() +nonsensical 2 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1479 +this +883151184 1 -anArray -1892464608 +this.elementData +709865851 1 -anArray.getClass().getName() +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +0 1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1546 +1480 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +3 1 this.capacityIncrement -2 +0 1 -anArray -1892464608 +obj +1836797772 1 -anArray.getClass().getName() +obj.getClass().getName() +"java.lang.Integer" +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1480 +this +883151184 +1 +this.elementData +709865851 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[245301360 245301360] +this.elementData[..] +[540642172 540642172 null 1836797772] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +1 +this.elementCount +4 +1 +this.capacityIncrement +0 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1547 +1481 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -272370939 +1550207152 1 anArray.getClass().getName() "java.lang.Object[]" @@ -86376,297 +85712,303 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1547 +1481 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -272370939 +1550207152 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1548 +1482 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -1450720016 +1864230087 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1548 +1482 this -414297037 +883151184 1 this.elementData -948317285 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 anArray -1450720016 +1864230087 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1549 -initialCapacity -4 -1 -capacityIncrement -2 +[540642172 540642172 null 1836797772 null null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1549 +1483 this -1869464521 +883151184 1 this.elementData -256965190 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 -initialCapacity -4 +anArray +1168019749 1 -capacityIncrement -2 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1550 +1483 this -1869464521 +883151184 1 this.elementData -256965190 +709865851 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1168019749 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1550 +1484 +initialCapacity +4 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1484 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +0 1 -obj -245301360 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1551 +1485 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -2 +0 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1551 +1485 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +0 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1552 +1486 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -86674,750 +86016,744 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1552 +1486 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1553 +1487 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -3 -1 -this.capacityIncrement 2 1 -anArray -224334213 +this.capacityIncrement +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1553 +1487 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -anArray -224334213 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 null 245301360] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1554 +1488 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -2 -1 -anArray -1551317406 -1 -anArray.getClass().getName() -"java.lang.Object[]" +0 1 -anArray[..] -[null null null null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1554 +1488 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -2 -1 -anArray -1551317406 -1 -anArray.getClass().getName() -"java.lang.Object[]" +0 1 -anArray[..] -[245301360 null 245301360 null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1555 +1489 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -2 -1 -anArray -392684415 +0 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[413835715 null null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1555 +1490 this -1869464521 +311239812 1 this.elementData -256965190 +2093010349 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -2 -1 -anArray -392684415 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1556 -initialCapacity -4 +0 1 -capacityIncrement -2 +minCapacity +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1556 +1490 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1477657879 540642172 540642172 null null null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 -1 -initialCapacity -4 +0 1 -capacityIncrement -2 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1557 +1489 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -2 +0 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1557 +1491 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1297978429 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1558 +1491 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 +anArray +1297978429 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1558 +1492 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -2 +5 1 this.capacityIncrement -2 +0 +1 +anArray +915349526 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1559 +1492 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -2 +5 1 this.capacityIncrement -2 +0 1 -obj -null +anArray +915349526 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1559 +1493 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -2 +0 1 -obj -null +anArray +1280851663 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1560 +1493 this -629715674 +311239812 1 this.elementData -831920502 +2088445230 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -3 +5 1 this.capacityIncrement -2 +0 1 -obj -726045964 +anArray +1280851663 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1560 +1494 +initialCapacity +4 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1494 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 1 -obj -726045964 1 -obj.getClass().getName() -"java.lang.Integer" +initialCapacity +4 +1 +capacityIncrement +1 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1561 +1495 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1969335144 +129153987 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1561 +1495 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1969335144 +129153987 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1562 +1496 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1597797644 +168907708 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1562 +1496 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -1597797644 +168907708 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1563 +1497 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -2049480620 +447718425 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1563 +1497 this -629715674 +1764696127 1 this.elementData -831920502 +1223867739 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 anArray -2049480620 +447718425 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1564 +1498 initialCapacity 4 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1564 +1498 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -87432,23 +86768,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 4 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1565 +1499 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -87463,671 +86799,637 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1565 +1499 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1566 +1500 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1427646530 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1566 +1500 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1427646530 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1567 +1501 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +846254484 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1567 +1501 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +846254484 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1568 +1502 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -2 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 +anArray +592983282 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1568 +1502 this -2130566107 +1206569586 1 this.elementData -1282230271 +1427381743 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -4 1 -this.capacityIncrement -2 1 -obj -null +this.capacityIncrement 1 -obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.addElement(java.lang.Object):::ENTER -this_invocation_nonce -1569 -this -2130566107 1 -this.elementData -1282230271 +anArray +592983282 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[12733619 245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +anArray[..] +[540642172 null] 1 -this.elementCount + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1503 +initialCapacity 4 1 -this.capacityIncrement -2 -1 -obj -726045964 +capacityIncrement 1 -obj.getClass().getName() -"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1570 +1503 this -2130566107 +1448525331 1 this.elementData -1282230271 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 1 -minCapacity -5 +1 +initialCapacity +4 +1 +capacityIncrement +1 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1570 +1504 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 1 -minCapacity -5 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1569 +1504 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null null null] 1 this.elementCount -5 +1 1 this.capacityIncrement -2 +1 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1571 +1505 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null null null] 1 this.elementCount -5 +1 1 this.capacityIncrement -2 1 -anArray -1583882228 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1571 +1505 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 1 -anArray -1583882228 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[12733619 245301360 245301360 null 726045964] +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1572 +1506 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -101317784 +1984975621 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1572 +1506 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -101317784 +1984975621 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null null null null null] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1573 +1507 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -2040947264 +348984985 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1573 +1507 this -2130566107 +1448525331 1 this.elementData -445767052 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -2 +1 1 anArray -2040947264 +348984985 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1574 -initialCapacity -4 -1 -capacityIncrement -3 -1 - -javautil.Vector13.Vector13(int, int):::EXIT85 -this_invocation_nonce -1574 -this -444372517 -1 -this.elementData -1768252600 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[null null null null] -1 -this.elementData[..].getClass().getName() -[null null null null] -1 -this.elementCount -0 -1 -this.capacityIncrement -3 -1 -initialCapacity -4 -1 -capacityIncrement -3 +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1575 +1508 this -444372517 +1448525331 1 this.elementData -1768252600 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 +1 1 anArray -2142741014 +2005435445 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1575 +1508 this -444372517 +1448525331 1 this.elementData -1768252600 +1108924067 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 +1 1 anArray -2142741014 +2005435445 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1576 +1509 +initialCapacity +4 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1509 this -444372517 +1939990953 1 this.elementData -1768252600 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -88142,26 +87444,23 @@ this.elementCount 0 1 this.capacityIncrement -3 1 -anArray -1894945755 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 +1 +capacityIncrement 1 -anArray[..] -[] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1576 +1510 this -444372517 +1939990953 1 this.elementData -1768252600 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -88176,153 +87475,134 @@ this.elementCount 0 1 this.capacityIncrement -3 1 -anArray -1894945755 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1577 +1510 this -444372517 +1939990953 1 this.elementData -1768252600 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 1 -anArray -1170819275 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1577 +1511 this -444372517 +1939990953 1 this.elementData -1768252600 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 -1 -this.capacityIncrement -3 -1 -anArray -1170819275 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[413835715] +this.capacityIncrement 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1578 -initialCapacity -4 1 -capacityIncrement -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1578 +1511 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 -initialCapacity -4 1 -capacityIncrement -3 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1579 +1512 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -88330,30 +87610,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1579 +1512 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -88361,226 +87641,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1580 +1513 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -1113535150 +2073621255 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1580 +1513 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -1113535150 +2073621255 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1581 +1514 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -2012766092 +1208121709 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1581 +1514 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -2012766092 +1208121709 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1582 +1515 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -1397300700 +873610597 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1582 +1515 this -566897464 +1939990953 1 this.elementData -1608219356 +119358627 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -3 +1 1 anArray -1397300700 +873610597 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1583 +1516 initialCapacity 4 1 capacityIncrement -3 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1583 +1516 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -88595,23 +87875,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +1 1 initialCapacity 4 1 capacityIncrement -3 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1584 +1517 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -88626,10 +87906,10 @@ this.elementCount 0 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -88637,18 +87917,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1584 +1517 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null null] @@ -88657,10 +87937,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -88668,18 +87948,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1585 +1518 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null null] @@ -88688,10 +87968,10 @@ this.elementCount 1 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -88699,18 +87979,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1585 +1518 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -88719,29 +87999,29 @@ this.elementCount 2 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1586 +1519 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -88750,78 +88030,134 @@ this.elementCount 2 1 this.capacityIncrement -3 1 -anArray -1346140385 1 -anArray.getClass().getName() +obj +null +1 +obj.getClass().getName() +nonsensical +2 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1519 +this +1497845528 +1 +this.elementData +1710989308 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +1 +1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1586 +1520 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +3 1 this.capacityIncrement -3 1 -anArray -1346140385 1 -anArray.getClass().getName() +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1520 +this +1497845528 +1 +this.elementData +1710989308 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[245301360 245301360] +this.elementData[..] +[540642172 540642172 null 1836797772] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +1 +this.elementCount +4 +1 +this.capacityIncrement +1 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1587 +1521 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -841229550 +1047087935 1 anArray.getClass().getName() "java.lang.Object[]" @@ -88832,297 +88168,303 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1587 +1521 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -841229550 +1047087935 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1588 +1522 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -1660198649 +464887938 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1588 +1522 this -1699184955 +1497845528 1 this.elementData -964000879 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -3 +1 1 anArray -1660198649 +464887938 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1589 -initialCapacity -4 -1 -capacityIncrement -3 +[540642172 540642172 null 1836797772 null null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1589 +1523 this -703668272 +1497845528 1 this.elementData -360203475 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -3 1 -initialCapacity -4 1 -capacityIncrement -3 +anArray +2020152163 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1590 +1523 this -703668272 +1497845528 1 this.elementData -360203475 +1710989308 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +2020152163 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1590 +1524 +initialCapacity +4 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1524 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +initialCapacity +4 +1 +capacityIncrement +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1591 +1525 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -3 +1 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1591 +1525 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +1 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1592 +1526 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -89130,750 +88472,744 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1592 +1526 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1593 +1527 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -3 1 -anArray -183403432 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1593 +1527 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -3 1 -anArray -183403432 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 null 245301360] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1594 +1528 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -3 -1 -anArray -822448179 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[null null null null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1594 +1528 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 -1 -anArray -822448179 1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[245301360 null 245301360 null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1595 +1529 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -3 1 -anArray -1681792361 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[413835715 null null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1595 +1530 this -703668272 +1104443373 1 this.elementData -360203475 +898694235 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] -1 -this.elementCount -3 -1 -this.capacityIncrement -3 -1 -anArray -1681792361 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360 null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1596 -initialCapacity +this.elementCount 4 1 -capacityIncrement -3 +this.capacityIncrement +1 +1 +minCapacity +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1596 +1530 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1477657879 540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -3 1 -initialCapacity -4 1 -capacityIncrement -3 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1597 +1529 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +5 1 this.capacityIncrement -3 +1 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1597 +1531 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -1 +5 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +869601985 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1598 +1531 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -1 +5 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +869601985 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1598 +1532 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +anArray +1365008457 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1599 +1532 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +5 1 this.capacityIncrement -3 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 +anArray +1365008457 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null null null null null] +1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1599 +1533 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -3 +5 1 this.capacityIncrement -3 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 +anArray +1671179293 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1600 +1533 this -704449513 +1104443373 1 this.elementData -605619080 +60292059 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -3 +5 1 this.capacityIncrement -3 1 -obj -726045964 1 -obj.getClass().getName() -"java.lang.Integer" +anArray +1671179293 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1600 +1534 +initialCapacity +4 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1534 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 -obj -726045964 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +2 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1601 +1535 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -1714874427 +1985836631 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1601 +1535 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -1714874427 +1985836631 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1602 +1536 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -516468202 +1948471365 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1602 +1536 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -516468202 +1948471365 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1603 +1537 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -152169840 +1636506029 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1603 +1537 this -704449513 +1609124502 1 this.elementData -605619080 +1144068272 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 anArray -152169840 +1636506029 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1604 +1538 initialCapacity 4 1 capacityIncrement -3 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1604 +1538 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -89888,23 +89224,23 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 initialCapacity 4 1 capacityIncrement -3 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1605 +1539 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -89919,671 +89255,637 @@ this.elementCount 0 1 this.capacityIncrement -3 +2 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1605 +1539 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1606 +1540 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +1578009262 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1606 +1540 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +1578009262 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1607 +1541 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +1735507635 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1607 +1541 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -3 +2 1 -obj -245301360 +anArray +1735507635 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1608 +1542 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 1 -this.capacityIncrement -3 -1 -obj -null 1 -obj.getClass().getName() -nonsensical +this.capacityIncrement 2 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1608 -this -2012960950 1 -this.elementData -377311812 +anArray +1362728240 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[12733619 245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -4 -1 -this.capacityIncrement -3 -1 -obj -null +anArray[..] +[1684792003 null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1609 +1542 this -2012960950 +758348212 1 this.elementData -377311812 +817978763 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -4 -1 -this.capacityIncrement -3 1 -obj -726045964 -1 -obj.getClass().getName() -"java.lang.Integer" 1 - -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1610 -this -2012960950 +this.capacityIncrement +2 1 -this.elementData -377311812 +anArray +1362728240 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[12733619 245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +anArray[..] +[540642172 null] 1 -this.elementCount + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1543 +initialCapacity 4 1 -this.capacityIncrement -3 -1 -minCapacity -5 +capacityIncrement +2 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1610 +1543 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -3 +2 1 -minCapacity -5 +initialCapacity +4 +1 +capacityIncrement +2 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1609 +1544 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +[null null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -3 +2 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1611 +1544 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null null null] 1 this.elementCount -5 1 -this.capacityIncrement -3 1 -anArray -409675821 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1611 +1545 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" null null null] 1 this.elementCount -5 1 -this.capacityIncrement -3 1 -anArray -409675821 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[12733619 245301360 245301360 null 726045964] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1612 +1545 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 -1 -anArray -588951265 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null null null null null null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1612 +1546 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -588951265 +728885526 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null null null null null] +[null null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1613 +1546 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -751781832 +728885526 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[540642172 540642172] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1613 +1547 this -2012960950 +1798219673 1 this.elementData -2107898340 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -3 +2 1 anArray -751781832 +922511709 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1614 -initialCapacity -4 -1 -capacityIncrement -4 +[null null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1614 +1547 this -1550955123 +1798219673 1 this.elementData -746244975 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 -initialCapacity -4 +anArray +922511709 1 -capacityIncrement -4 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1615 +1548 this -1550955123 +1798219673 1 this.elementData -746244975 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 anArray -834796345 +678433396 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1615 +1548 this -1550955123 +1798219673 1 this.elementData -746244975 +1092572064 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 anArray -834796345 +678433396 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[] +[540642172 540642172 null] 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1616 +1549 +initialCapacity +4 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1549 this -1550955123 +331994761 1 this.elementData -746244975 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -90598,26 +89900,23 @@ this.elementCount 0 1 this.capacityIncrement -4 -1 -anArray -911504564 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +initialCapacity +4 1 -anArray[..] -[] +capacityIncrement +2 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1616 +1550 this -1550955123 +331994761 1 this.elementData -746244975 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -90632,153 +89931,134 @@ this.elementCount 0 1 this.capacityIncrement -4 -1 -anArray -911504564 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1617 +1550 this -1550955123 +331994761 1 this.elementData -746244975 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 1 -this.capacityIncrement -4 1 -anArray -1656353097 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[413835715] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1617 +1551 this -1550955123 +331994761 1 this.elementData -746244975 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 -1 -this.capacityIncrement -4 -1 -anArray -1656353097 -1 -anArray.getClass().getName() -"java.lang.Object[]" 1 -anArray[..] -[413835715] 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1618 -initialCapacity -4 +this.capacityIncrement +2 1 -capacityIncrement -4 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1618 +1551 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 -1 -initialCapacity -4 +2 1 -capacityIncrement -4 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1619 +1552 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -90786,30 +90066,30 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1619 +1552 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -90817,226 +90097,226 @@ obj.getClass().getName() javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1620 +1553 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -1132638976 +1647809929 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null] +[null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1620 +1553 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -1132638976 +1647809929 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360] +[540642172 null 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1621 +1554 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -968222624 +1258084361 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null] +[null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1621 +1554 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -968222624 +1258084361 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null 540642172 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1622 +1555 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -1434048249 +391914049 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null] +[1684792003 null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1622 +1555 this -495985218 +331994761 1 this.elementData -1639524919 +928294079 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -4 +2 1 anArray -1434048249 +391914049 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 null] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1623 +1556 initialCapacity 4 1 capacityIncrement -4 +2 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1623 +1556 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -91051,23 +90331,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +2 1 initialCapacity 4 1 capacityIncrement -4 +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1624 +1557 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -91082,10 +90362,10 @@ this.elementCount 0 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -91093,18 +90373,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1624 +1557 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null null] @@ -91113,10 +90393,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -91124,18 +90404,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1625 +1558 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null null null] @@ -91144,10 +90424,10 @@ this.elementCount 1 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -91155,18 +90435,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1625 +1558 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -91175,29 +90455,29 @@ this.elementCount 2 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1626 +1559 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -91206,78 +90486,134 @@ this.elementCount 2 1 this.capacityIncrement -4 +2 1 -anArray -491490794 +obj +null 1 -anArray.getClass().getName() +obj.getClass().getName() +nonsensical +2 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1559 +this +96406857 +1 +this.elementData +1534745514 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[null null] +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount +3 +1 +this.capacityIncrement +2 1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1626 +1560 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -2 +3 1 this.capacityIncrement -4 +2 1 -anArray -491490794 +obj +1836797772 1 -anArray.getClass().getName() +obj.getClass().getName() +"java.lang.Integer" +1 + +javautil.Vector13.addElement(java.lang.Object):::EXIT463 +this_invocation_nonce +1560 +this +96406857 +1 +this.elementData +1534745514 +1 +this.elementData.getClass().getName() "java.lang.Object[]" 1 -anArray[..] -[245301360 245301360] +this.elementData[..] +[540642172 540642172 null 1836797772] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +1 +this.elementCount +4 +1 +this.capacityIncrement +2 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1627 +1561 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -4 +2 1 anArray -1263668396 +2003496028 1 anArray.getClass().getName() "java.lang.Object[]" @@ -91288,297 +90624,303 @@ anArray[..] javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1627 +1561 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -4 +2 1 anArray -1263668396 +2003496028 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1628 +1562 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -4 +2 1 anArray -2008946389 +30578394 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null] +[null null null null null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1628 +1562 this -839950662 +96406857 1 this.elementData -1640764503 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -4 +2 1 anArray -2008946389 +30578394 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1629 -initialCapacity -4 -1 -capacityIncrement -4 +[540642172 540642172 null 1836797772 null null null null] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1629 +1563 this -1624061789 +96406857 1 this.elementData -1089334353 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -4 +2 1 -initialCapacity -4 +anArray +2088371948 1 -capacityIncrement -4 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1630 +1563 this -1624061789 +96406857 1 this.elementData -1089334353 +1534745514 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +2088371948 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1630 +1564 +initialCapacity +4 +1 +capacityIncrement +2 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1564 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -4 +2 1 -obj -245301360 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +2 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1631 +1565 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -4 +2 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1631 +1565 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +2 1 obj -null +1477657879 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Integer" +1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1632 +1566 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -91586,750 +90928,744 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1632 +1566 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -4 +2 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1633 +1567 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -4 -1 -anArray -1144380196 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[null null null] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1633 +1567 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 -1 -anArray -1144380196 +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +540642172 1 -anArray[..] -[245301360 null 245301360] +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1634 +1568 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -4 -1 -anArray -734411640 -1 -anArray.getClass().getName() -"java.lang.Object[]" +2 1 -anArray[..] -[null null null null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1634 +1568 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 -1 -this.capacityIncrement 4 1 -anArray -734411640 -1 -anArray.getClass().getName() -"java.lang.Object[]" +this.capacityIncrement +2 1 -anArray[..] -[245301360 null 245301360 null null null] +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.copyInto(java.lang.Object[]):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1635 +1569 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 -1 -this.capacityIncrement 4 1 -anArray -1667914171 +this.capacityIncrement +2 1 -anArray.getClass().getName() -"java.lang.Object[]" +obj +1836797772 1 -anArray[..] -[413835715 null null null] +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1635 +1570 this -1624061789 +1976870338 1 this.elementData -1089334353 +1434234664 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 -1 -this.capacityIncrement 4 1 -anArray -1667914171 -1 -anArray.getClass().getName() -"java.lang.Object[]" -1 -anArray[..] -[245301360 null 245301360 null] -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1636 -initialCapacity -4 +this.capacityIncrement +2 1 -capacityIncrement -4 +minCapacity +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1636 +1570 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1477657879 540642172 540642172 null null null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null] 1 this.elementCount -0 -1 -this.capacityIncrement 4 1 -initialCapacity -4 +this.capacityIncrement +2 1 -capacityIncrement -4 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1637 +1569 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -[null null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -0 +5 1 this.capacityIncrement -4 +2 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1637 +1571 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +1819063424 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1638 +1571 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -1 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +1819063424 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1638 +1572 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -obj -245301360 +anArray +1011279482 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1639 +1572 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -2 +5 1 this.capacityIncrement -4 +2 1 -obj -null +anArray +1011279482 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1639 +1573 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -4 +2 1 -obj -null +anArray +208866101 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1640 +1573 this -1529427706 +1976870338 1 this.elementData -1859683799 +1083021083 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null 1836797772 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] 1 this.elementCount -3 +5 1 this.capacityIncrement -4 +2 1 -obj -726045964 +anArray +208866101 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1640 +1574 +initialCapacity +4 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1574 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 -obj -726045964 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Integer" +capacityIncrement +3 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1641 +1575 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1228611355 +576020159 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1641 +1575 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1228611355 +576020159 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1642 +1576 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1215777580 +921420643 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1642 +1576 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -1215777580 +921420643 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null null null null] +[] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1643 +1577 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -266885855 +1165303897 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null] +[1684792003] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1643 +1577 this -1529427706 +543846639 1 this.elementData -1859683799 +690686166 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 anArray -266885855 +1165303897 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[245301360 245301360 null 726045964 null] +[1684792003] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1644 +1578 initialCapacity 4 1 capacityIncrement -4 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1644 +1578 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -92344,23 +91680,23 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 initialCapacity 4 1 capacityIncrement -4 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1645 +1579 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -92375,1008 +91711,1210 @@ this.elementCount 0 1 this.capacityIncrement -4 +3 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1645 +1579 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1646 +1580 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" null null null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +1423561005 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1646 +1580 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +1423561005 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1647 +1581 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +943870983 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1647 +1581 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -3 +1 1 this.capacityIncrement -4 +3 1 -obj -245301360 +anArray +943870983 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1648 +1582 this -1604710049 +887750041 1 this.elementData -114670870 +1010953501 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount +1 +1 +this.capacityIncrement 3 1 +anArray +1136419747 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +this_invocation_nonce +1582 +this +887750041 +1 +this.elementData +1010953501 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null null] +1 +this.elementCount +1 +1 this.capacityIncrement +3 +1 +anArray +1136419747 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] +1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1583 +initialCapacity 4 1 -obj -null +capacityIncrement +3 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1648 +1583 this -1604710049 +1881561036 1 this.elementData -114670870 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement +3 +1 +initialCapacity 4 1 -obj -null +capacityIncrement +3 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1649 +1584 this -1604710049 +1881561036 1 this.elementData -114670870 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -4 +3 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1650 +1584 this -1604710049 +1881561036 1 this.elementData -114670870 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount -4 +1 1 this.capacityIncrement -4 +3 1 -minCapacity -5 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1650 +1585 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null null null null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null null] +["java.lang.Object" null null null] 1 this.elementCount -4 +1 1 this.capacityIncrement -4 +3 1 -minCapacity -5 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1649 +1585 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1651 +1586 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1297622486 +1084502906 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null] +[null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1651 +1586 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1297622486 +1084502906 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964] +[540642172 540642172] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1652 +1587 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1444686917 +1613095350 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[null null null null null null null null null null] +[null null null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1652 +1587 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1444686917 +1613095350 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null null null null null] +[540642172 540642172 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1653 +1588 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1402901037 +587153993 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[413835715 null null null null null] +[1684792003 null null] 1 javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1653 +1588 this -1604710049 +1881561036 1 this.elementData -980480731 +1785507932 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[12733619 245301360 245301360 null 726045964 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -4 +3 1 anArray -1402901037 +587153993 1 anArray.getClass().getName() "java.lang.Object[]" 1 anArray[..] -[12733619 245301360 245301360 null 726045964 null] +[540642172 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1654 +1589 initialCapacity -0 +4 1 capacityIncrement -0 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1654 +1589 this -1814961687 +757004314 1 this.elementData -1203351421 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 initialCapacity -0 +4 1 capacityIncrement -0 +3 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1655 +1590 this -1814961687 +757004314 1 this.elementData -1203351421 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1655 +1590 this -1814961687 +757004314 1 this.elementData -1203351421 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +3 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1656 -initialCapacity -0 +1591 +this +757004314 1 -capacityIncrement -0 +this.elementData +1279271200 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null null] +1 +this.elementCount +1 +1 +this.capacityIncrement +3 1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1656 +1591 this -1873828948 +757004314 1 this.elementData -595445781 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 -1 -initialCapacity -0 +3 1 -capacityIncrement -0 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1657 +1592 this -1873828948 +757004314 1 this.elementData -595445781 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1658 +1592 this -1873828948 +757004314 1 this.elementData -595445781 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -0 +3 1 -minCapacity +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1658 +1593 this -1873828948 +757004314 1 this.elementData -383446247 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -0 +3 1 -minCapacity +anArray +52908367 1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1657 +1593 this -1873828948 +757004314 1 this.elementData -383446247 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +52908367 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null 540642172] 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1659 +1594 this -1873828948 +757004314 1 this.elementData -383446247 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount +3 +1 +this.capacityIncrement +3 +1 +anArray +1527953000 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +this_invocation_nonce +1594 +this +757004314 +1 +this.elementData +1279271200 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Object" null] 1 +this.elementCount +3 1 this.capacityIncrement -0 +3 +1 +anArray +1527953000 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null 540642172 null null null] 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1659 +1595 this -1873828948 +757004314 1 this.elementData -383446247 +1279271200 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount +3 +1 +this.capacityIncrement +3 +1 +anArray +18242360 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null] +1 + +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 +this_invocation_nonce +1595 +this +757004314 +1 +this.elementData +1279271200 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" 1 +this.elementData[..] +[540642172 null 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null "java.lang.Object" null] +1 +this.elementCount +3 1 this.capacityIncrement -0 +3 +1 +anArray +18242360 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1660 +1596 initialCapacity -0 +4 1 capacityIncrement -0 +3 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1660 +1596 this -2130132329 +1276261147 1 this.elementData -434174366 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 initialCapacity -0 +4 1 capacityIncrement -0 +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1661 +1597 this -2130132329 +1276261147 1 this.elementData -434174366 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1662 +1597 this -2130132329 +1276261147 1 this.elementData -434174366 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +3 1 -minCapacity +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1662 +1598 this -2130132329 +1276261147 1 this.elementData -19136856 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +3 1 -minCapacity +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1661 +1598 this -2130132329 +1276261147 1 this.elementData -19136856 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +2 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -93384,444 +92922,492 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1663 +1599 this -2130132329 +1276261147 1 this.elementData -19136856 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +2 1 this.capacityIncrement -0 +3 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1664 +1599 this -2130132329 +1276261147 1 this.elementData -19136856 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 -minCapacity -2 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1664 +1600 this -2130132329 +1276261147 1 this.elementData -1658075389 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -0 +3 1 -minCapacity -2 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1663 +1600 this -2130132329 +1276261147 1 this.elementData -1658075389 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1665 +1601 this -2130132329 +1276261147 1 this.elementData -1658075389 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 +1 +anArray +996796369 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null] 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1665 +1601 this -2130132329 +1276261147 1 this.elementData -1658075389 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -0 +3 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1666 -initialCapacity -0 +anArray +996796369 1 -capacityIncrement -0 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null 1836797772] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1666 +1602 this -1525259451 +1276261147 1 this.elementData -523298718 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 +3 1 -initialCapacity -0 +anArray +135640095 1 -capacityIncrement -0 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1667 +1602 this -1525259451 +1276261147 1 this.elementData -523298718 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +135640095 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null 1836797772 null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1668 +1603 this -1525259451 +1276261147 1 this.elementData -523298718 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 +3 1 -minCapacity +anArray +1430439149 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1668 +1603 this -1525259451 +1276261147 1 this.elementData -1136018961 +1971764991 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 +3 1 -minCapacity +anArray +1430439149 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1667 +1604 +initialCapacity +4 +1 +capacityIncrement +3 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1604 this -1525259451 +359922172 1 this.elementData -1136018961 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +3 1 -obj -245301360 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +3 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1669 +1605 this -1525259451 +359922172 1 this.elementData -1136018961 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -0 +3 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1670 +1605 this -1525259451 +359922172 1 this.elementData -1136018961 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +3 1 -minCapacity -2 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1670 +1606 this -1525259451 +359922172 1 this.elementData -1941055697 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Integer" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +3 1 -minCapacity -2 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1669 +1606 this -1525259451 +359922172 1 this.elementData -1941055697 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +3 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -93829,114 +93415,120 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1671 +1607 this -1525259451 +359922172 1 this.elementData -1941055697 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -0 +3 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1672 +1607 this -1525259451 +359922172 1 this.elementData -1941055697 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +3 1 this.capacityIncrement -0 -1 -minCapacity 3 1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" +1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1672 +1608 this -1525259451 +359922172 1 this.elementData -899017902 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +3 1 this.capacityIncrement -0 -1 -minCapacity 3 1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1671 +1608 this -1525259451 +359922172 1 this.elementData -899017902 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -0 +3 1 obj null @@ -93945,1642 +93537,1840 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1673 +1609 this -1525259451 +359922172 1 this.elementData -899017902 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -0 +3 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1673 +1610 this -1525259451 +359922172 1 this.elementData -98938622 +1632682988 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement -0 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1674 -initialCapacity -0 +3 1 -capacityIncrement -0 +minCapacity +5 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1674 +1610 this -709077176 +359922172 1 this.elementData -1073339829 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[1477657879 540642172 540642172 null null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -0 -1 -initialCapacity -0 +3 1 -capacityIncrement -0 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1675 +1609 this -709077176 +359922172 1 this.elementData -1073339829 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -0 +3 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1676 +1611 this -709077176 +359922172 1 this.elementData -1073339829 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -0 +3 1 -minCapacity +anArray +132577100 1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1676 +1611 this -709077176 +359922172 1 this.elementData -759871203 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -0 +3 1 -minCapacity +anArray +132577100 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1675 +1612 this -709077176 +359922172 1 this.elementData -759871203 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +231756373 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1677 +1612 this -709077176 +359922172 1 this.elementData -759871203 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -0 +3 1 -obj -245301360 +anArray +231756373 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1678 +1613 this -709077176 +359922172 1 this.elementData -759871203 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -0 +3 1 -minCapacity -2 +anArray +1786294176 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1678 +1613 this -709077176 +359922172 1 this.elementData -70060112 +1153447573 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[1477657879 540642172 540642172 null 1836797772 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -0 -1 -minCapacity -2 -1 - -javautil.Vector13.addElement(java.lang.Object):::EXIT463 -this_invocation_nonce -1677 -this -709077176 +3 1 -this.elementData -70060112 +anArray +1786294176 1 -this.elementData.getClass().getName() +anArray.getClass().getName() "java.lang.Object[]" 1 -this.elementData[..] -[245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] -1 -this.elementCount -2 -1 -this.capacityIncrement -0 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null] 1 -obj -245301360 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1614 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +4 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1679 +1614 this -709077176 +793331940 1 this.elementData -70060112 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -obj -null +initialCapacity +4 +1 +capacityIncrement +4 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1680 +1615 this -709077176 +793331940 1 this.elementData -70060112 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +anArray +275266973 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1680 +1615 this -709077176 +793331940 1 this.elementData -679263828 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +anArray +275266973 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1679 +1616 this -709077176 +793331940 1 this.elementData -679263828 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -0 +4 1 -obj -null +anArray +1069716895 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1681 +1616 this -709077176 +793331940 1 this.elementData -679263828 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null null null null] 1 this.elementCount -3 +0 1 this.capacityIncrement -0 +4 1 -obj -726045964 +anArray +1069716895 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1681 +1617 this -709077176 +793331940 1 this.elementData -679263828 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 -obj -726045964 +anArray +1521083627 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003] 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1682 +1617 this -709077176 +793331940 1 this.elementData -679263828 +522553046 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 +1 +anArray +1521083627 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003] 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1682 +1618 +initialCapacity +4 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1618 this -709077176 +1770642014 1 this.elementData -679263828 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null null null null] 1 this.elementCount -4 +0 1 this.capacityIncrement -0 +4 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1683 initialCapacity -0 +4 1 capacityIncrement -0 +4 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1683 +1619 this -364089744 +1770642014 1 this.elementData -1075417105 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -0 +4 1 -initialCapacity -0 +obj +540642172 1 -capacityIncrement -0 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1684 +1619 this -364089744 +1770642014 1 this.elementData -1075417105 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1685 +1620 this -364089744 +1770642014 1 this.elementData -1075417105 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 -minCapacity +anArray +328827614 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1685 +1620 this -364089744 +1770642014 1 this.elementData -1312910583 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement -0 +4 1 -minCapacity +anArray +328827614 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1684 +1621 this -364089744 +1770642014 1 this.elementData -1312910583 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +109228794 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1686 +1621 this -364089744 +1770642014 1 this.elementData -1312910583 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 -obj -245301360 +anArray +109228794 1 -obj.getClass().getName() -"java.lang.Object" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1687 +1622 this -364089744 +1770642014 1 this.elementData -1312910583 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 -minCapacity -2 +anArray +561959774 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1687 +1622 this -364089744 +1770642014 1 this.elementData -693695556 +945591847 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" null null null] 1 this.elementCount 1 1 this.capacityIncrement -0 +4 1 -minCapacity -2 +anArray +561959774 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1686 +1623 +initialCapacity +4 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1623 this -364089744 +2110756088 1 this.elementData -693695556 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 -obj -245301360 +initialCapacity +4 1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1688 +1624 this -364089744 +2110756088 1 this.elementData -693695556 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[null null null null] 1 this.elementCount -2 +0 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1689 +1624 this -364089744 +2110756088 1 this.elementData -693695556 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1689 +1625 this -364089744 +2110756088 1 this.elementData -252490129 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" null null null] 1 this.elementCount -2 +1 1 this.capacityIncrement -0 +4 1 -minCapacity -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1688 +1625 this -364089744 +2110756088 1 this.elementData -252490129 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1690 +1626 this -364089744 +2110756088 1 this.elementData -252490129 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -3 +2 1 this.capacityIncrement -0 +4 1 -obj -726045964 +anArray +823723302 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1690 +1626 this -364089744 +2110756088 1 this.elementData -252490129 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -4 +2 1 this.capacityIncrement -0 +4 1 -obj -726045964 +anArray +823723302 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1691 +1627 this -364089744 +2110756088 1 this.elementData -252490129 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -4 +2 1 this.capacityIncrement -0 +4 1 -obj -12733619 +anArray +1714078840 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1692 +1627 this -364089744 +2110756088 1 this.elementData -252490129 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -4 +2 1 this.capacityIncrement -0 +4 1 -minCapacity -5 +anArray +1714078840 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1692 +1628 this -364089744 +2110756088 1 this.elementData -173911631 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -4 +2 1 this.capacityIncrement -0 +4 1 -minCapacity -5 +anArray +1732502545 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1691 +1628 this -364089744 +2110756088 1 this.elementData -173911631 +580871917 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -5 +2 1 this.capacityIncrement -0 +4 1 -obj -12733619 +anArray +1732502545 1 -obj.getClass().getName() -"java.lang.Integer" +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 540642172 null] 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1693 +1629 +initialCapacity +4 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1629 this -364089744 +1051876890 1 this.elementData -173911631 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null null null] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] +[null null null null] 1 this.elementCount -5 +0 1 this.capacityIncrement -0 +4 +1 +initialCapacity +4 +1 +capacityIncrement +4 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1693 +1630 this -364089744 +1051876890 1 this.elementData -207538650 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +[null null null null] 1 this.elementCount -5 -1 -this.capacityIncrement 0 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1694 -initialCapacity -0 +this.capacityIncrement +4 1 -capacityIncrement +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1694 +1630 this -588647822 +1051876890 1 this.elementData -2094266272 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +1 1 this.capacityIncrement +4 1 +obj +540642172 1 -initialCapacity -0 +obj.getClass().getName() +"java.lang.Object" 1 -capacityIncrement + +javautil.Vector13.addElement(java.lang.Object):::ENTER +this_invocation_nonce +1631 +this +1051876890 +1 +this.elementData +1199262943 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" 1 +this.elementData[..] +[540642172 null null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null null null] +1 +this.elementCount +1 +1 +this.capacityIncrement +4 +1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1695 +1631 this -588647822 +1051876890 1 this.elementData -2094266272 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement +4 1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1695 +1632 this -588647822 +1051876890 1 this.elementData -2094266272 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 +2 1 this.capacityIncrement +4 1 +obj +540642172 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1696 -initialCapacity -0 -1 -capacityIncrement -1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1696 +1632 this -1076259174 +1051876890 1 this.elementData -433178737 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement +4 1 +obj +540642172 1 -initialCapacity -0 -1 -capacityIncrement -1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1697 +1633 this -1076259174 +1051876890 1 this.elementData -433178737 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement +4 1 +anArray +2009221452 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1698 +1633 this -1076259174 +1051876890 1 this.elementData -433178737 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement +4 1 +anArray +2009221452 1 -minCapacity +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[540642172 null 540642172] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1698 +1634 this -1076259174 +1051876890 1 this.elementData -298333928 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement +4 1 +anArray +257513673 1 -minCapacity +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1697 +1634 this -1076259174 +1051876890 1 this.elementData -298333928 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 +anArray +257513673 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[540642172 null 540642172 null null null] 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1699 +1635 this -1076259174 +1051876890 1 this.elementData -298333928 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 +1 +anArray +590845366 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[1684792003 null null null] 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1699 +1635 this -1076259174 +1051876890 1 this.elementData -298333928 +1199262943 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 null 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" null "java.lang.Object" null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 +anArray +590845366 +1 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[540642172 null 540642172 null] 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1700 +1636 initialCapacity -0 +4 1 capacityIncrement -1 +4 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1700 +1636 this -1871495798 +1052195003 1 this.elementData -36899377 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 initialCapacity -0 +4 1 capacityIncrement -1 +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1701 +1637 this -1871495798 +1052195003 1 this.elementData -36899377 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[null null null null] 1 this.elementData[..].getClass().getName() -[] +[null null null null] 1 this.elementCount 0 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1702 +1637 this -1871495798 +1052195003 1 this.elementData -36899377 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" null null null] 1 this.elementCount -0 1 -this.capacityIncrement 1 +this.capacityIncrement +4 1 -minCapacity +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1702 +1638 this -1871495798 +1052195003 1 this.elementData -1692538903 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" null null null] 1 this.elementCount -0 1 -this.capacityIncrement 1 +this.capacityIncrement +4 1 -minCapacity +obj +540642172 1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1701 +1638 this -1871495798 +1052195003 1 this.elementData -1692538903 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +2 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -95588,444 +95378,492 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1703 +1639 this -1871495798 +1052195003 1 this.elementData -1692538903 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +2 1 this.capacityIncrement -1 +4 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1704 +1639 this -1871495798 +1052195003 1 this.elementData -1692538903 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 +obj +null 1 -minCapacity +obj.getClass().getName() +nonsensical 2 -1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1704 +1640 this -1871495798 +1052195003 1 this.elementData -932954559 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement +4 1 +obj +1836797772 1 -minCapacity -2 +obj.getClass().getName() +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1703 +1640 this -1871495798 +1052195003 1 this.elementData -932954559 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -1 +4 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1705 +1641 this -1871495798 +1052195003 1 this.elementData -932954559 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement +4 +1 +anArray +511707818 +1 +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[null null null null] 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1705 +1641 this -1871495798 +1052195003 1 this.elementData -932954559 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement +4 1 +anArray +511707818 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1706 -initialCapacity -0 -1 -capacityIncrement +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[540642172 540642172 null 1836797772] 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1706 +1642 this -1389166366 +1052195003 1 this.elementData -276903178 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement +4 1 +anArray +25536233 1 -initialCapacity -0 -1 -capacityIncrement +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[null null null null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1707 +1642 this -1389166366 +1052195003 1 this.elementData -276903178 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement +4 1 +anArray +25536233 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[540642172 540642172 null 1836797772 null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1708 +1643 this -1389166366 +1052195003 1 this.elementData -276903178 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement +4 1 +anArray +116405378 1 -minCapacity +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[1684792003 null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1708 +1643 this -1389166366 +1052195003 1 this.elementData -314649597 +1541049864 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement +4 1 +anArray +116405378 1 -minCapacity +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1707 +1644 +initialCapacity +4 +1 +capacityIncrement +4 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1644 this -1389166366 +164974746 1 this.elementData -314649597 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement +4 1 +initialCapacity +4 1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +capacityIncrement +4 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1709 +1645 this -1389166366 +164974746 1 this.elementData -314649597 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null null null null] 1 this.elementCount -1 +0 1 this.capacityIncrement -1 +4 1 obj -245301360 +1477657879 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1710 +1645 this -1389166366 +164974746 1 this.elementData -314649597 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" null null null] 1 this.elementCount 1 1 this.capacityIncrement +4 1 +obj +1477657879 1 -minCapacity -2 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1710 +1646 this -1389166366 +164974746 1 this.elementData -1211037865 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Integer" null null null] 1 this.elementCount 1 1 this.capacityIncrement +4 1 +obj +540642172 1 -minCapacity -2 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1709 +1646 this -1389166366 +164974746 1 this.elementData -1211037865 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +4 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -96033,114 +95871,89 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1711 +1647 this -1389166366 +164974746 1 this.elementData -1211037865 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[1477657879 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Object" null null] 1 this.elementCount 2 1 this.capacityIncrement -1 +4 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 - -javautil.Vector13.ensureCapacityHelper(int):::ENTER -this_invocation_nonce -1712 -this -1389166366 -1 -this.elementData -1211037865 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] -1 -this.elementCount -2 -1 -this.capacityIncrement -1 -1 -minCapacity -3 +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1712 +1647 this -1389166366 +164974746 1 this.elementData -63390789 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +3 1 this.capacityIncrement +4 1 +obj +540642172 1 -minCapacity -3 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1711 +1648 this -1389166366 +164974746 1 this.elementData -63390789 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount 3 1 this.capacityIncrement -1 +4 1 obj null @@ -96149,637 +95962,677 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1713 +1648 this -1389166366 +164974746 1 this.elementData -63390789 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement +4 1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1713 +1649 this -1389166366 +164974746 1 this.elementData -63390789 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -3 +4 1 this.capacityIncrement +4 1 +obj +1836797772 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1714 -initialCapacity -0 -1 -capacityIncrement -1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1714 +1650 this -257101811 +164974746 1 this.elementData -373039713 +396283472 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[1477657879 540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +4 1 this.capacityIncrement +4 1 -1 -initialCapacity -0 -1 -capacityIncrement -1 +minCapacity +5 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1715 +1650 this -257101811 +164974746 1 this.elementData -373039713 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[1477657879 540642172 540642172 null null null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null null null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement +4 1 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +5 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1716 +1649 this -257101811 +164974746 1 this.elementData -373039713 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement +4 1 +obj +1836797772 1 -minCapacity -1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1716 +1651 this -257101811 +164974746 1 this.elementData -1173690798 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -[null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement +4 1 +anArray +1020520290 1 -minCapacity +anArray.getClass().getName() +"java.lang.Object[]" 1 +anArray[..] +[null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1715 +1651 this -257101811 +164974746 1 this.elementData -1173690798 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement +4 1 +anArray +1020520290 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[1477657879 540642172 540642172 null 1836797772] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1717 +1652 this -257101811 +164974746 1 this.elementData -1173690798 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement +4 1 +anArray +530653666 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[null null null null null null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1718 +1652 this -257101811 +164974746 1 this.elementData -1173690798 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement +4 1 +anArray +530653666 1 -minCapacity -2 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null null null null null] 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.copyInto(java.lang.Object[]):::ENTER this_invocation_nonce -1718 +1653 this -257101811 +164974746 1 this.elementData -1583944291 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement +4 1 +anArray +2125238280 1 -minCapacity -2 +anArray.getClass().getName() +"java.lang.Object[]" +1 +anArray[..] +[1684792003 null null null null null] 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.copyInto(java.lang.Object[]):::EXIT118 this_invocation_nonce -1717 +1653 this -257101811 +164974746 1 this.elementData -1583944291 +989892772 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[1477657879 540642172 540642172 null 1836797772 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Integer" "java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null] 1 this.elementCount -2 +5 1 this.capacityIncrement +4 1 +anArray +2125238280 1 -obj -245301360 +anArray.getClass().getName() +"java.lang.Object[]" 1 -obj.getClass().getName() -"java.lang.Object" +anArray[..] +[1477657879 540642172 540642172 null 1836797772 null] 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1719 +1654 +initialCapacity +0 +1 +capacityIncrement +0 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 +this_invocation_nonce +1654 this -257101811 +1859374258 1 this.elementData -1583944291 +442987331 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement +0 1 +initialCapacity +0 1 -obj -null +capacityIncrement +0 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1720 +1655 this -257101811 +1859374258 1 this.elementData -1583944291 +442987331 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement -1 -1 -minCapacity -3 +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1720 +1655 this -257101811 +1859374258 1 this.elementData -1144410625 +442987331 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement +0 1 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1656 +initialCapacity +0 1 -minCapacity -3 +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1719 +1656 this -257101811 +366873404 1 this.elementData -1144410625 +1217467887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement +0 1 +initialCapacity +0 1 -obj -null +capacityIncrement +0 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1721 +1657 this -257101811 +366873404 1 this.elementData -1144410625 +1217467887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement -1 +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1722 +1658 this -257101811 +366873404 1 this.elementData -1144410625 +1217467887 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement -1 +0 1 minCapacity -4 +1 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1722 +1658 this -257101811 +366873404 1 this.elementData -1245831843 +945288723 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -3 +0 1 this.capacityIncrement -1 +0 1 minCapacity -4 +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1721 +1657 this -257101811 +366873404 1 this.elementData -1245831843 +945288723 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1723 +1659 this -257101811 +366873404 1 this.elementData -1245831843 +945288723 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1723 +1659 this -257101811 +366873404 1 this.elementData -1245831843 +945288723 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1724 +1660 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1724 +1660 this -730227051 +428566321 1 this.elementData -57003552 +2087258327 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -96794,23 +96647,23 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 initialCapacity 0 1 capacityIncrement -1 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1725 +1661 this -730227051 +428566321 1 this.elementData -57003552 +2087258327 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -96825,10 +96678,10 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -96836,12 +96689,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1726 +1662 this -730227051 +428566321 1 this.elementData -57003552 +2087258327 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -96856,7 +96709,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -96864,12 +96717,12 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1726 +1662 this -730227051 +428566321 1 this.elementData -280991902 +1016550616 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -96884,7 +96737,7 @@ this.elementCount 0 1 this.capacityIncrement -1 +0 1 minCapacity 1 @@ -96892,18 +96745,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1725 +1661 this -730227051 +428566321 1 this.elementData -280991902 +1016550616 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -96912,10 +96765,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -96923,18 +96776,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1727 +1663 this -730227051 +428566321 1 this.elementData -280991902 +1016550616 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -96943,10 +96796,10 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -96954,18 +96807,18 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1728 +1664 this -730227051 +428566321 1 this.elementData -280991902 +1016550616 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -96974,7 +96827,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -96982,18 +96835,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1728 +1664 this -730227051 +428566321 1 this.elementData -314357161 +1006094903 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" null] @@ -97002,7 +96855,7 @@ this.elementCount 1 1 this.capacityIncrement -1 +0 1 minCapacity 2 @@ -97010,18 +96863,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1727 +1663 this -730227051 +428566321 1 this.elementData -314357161 +1006094903 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -97030,29 +96883,29 @@ this.elementCount 2 1 this.capacityIncrement -1 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1729 +1665 this -730227051 +428566321 1 this.elementData -314357161 +1006094903 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -97061,29 +96914,23 @@ this.elementCount 2 1 this.capacityIncrement +0 1 -1 -obj -null -1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1730 +1665 this -730227051 +428566321 1 this.elementData -314357161 +1006094903 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -97092,466 +96939,472 @@ this.elementCount 2 1 this.capacityIncrement -1 -1 -minCapacity -3 +0 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1730 -this -730227051 -1 -this.elementData -591033307 -1 -this.elementData.getClass().getName() -"java.lang.Object[]" -1 -this.elementData[..] -[245301360 245301360 null] -1 -this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] -1 -this.elementCount -2 -1 -this.capacityIncrement -1 +1666 +initialCapacity +0 1 -minCapacity -3 +capacityIncrement +0 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1729 +1666 this -730227051 +2030538903 1 this.elementData -591033307 +1293680848 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement +0 1 +initialCapacity +0 1 -obj -null +capacityIncrement +0 1 -obj.getClass().getName() -nonsensical -2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1731 +1667 this -730227051 +2030538903 1 this.elementData -591033307 +1293680848 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement -1 +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1732 +1668 this -730227051 +2030538903 1 this.elementData -591033307 +1293680848 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement -1 +0 1 minCapacity -4 +1 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1732 +1668 this -730227051 +2030538903 1 this.elementData -1384923374 +1261153343 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -3 +0 1 this.capacityIncrement -1 +0 1 minCapacity -4 +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1731 +1667 this -730227051 +2030538903 1 this.elementData -1384923374 +1261153343 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1733 +1669 this -730227051 +2030538903 1 this.elementData -1384923374 +1261153343 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1734 +1670 this -730227051 +2030538903 1 this.elementData -1384923374 +1261153343 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 minCapacity -5 +2 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1734 +1670 this -730227051 +2030538903 1 this.elementData -1979380632 +1309176095 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null] +["java.lang.Object" null] 1 this.elementCount -4 1 -this.capacityIncrement 1 +this.capacityIncrement +0 1 minCapacity -5 +2 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1733 +1669 this -730227051 +2030538903 1 this.elementData -1979380632 +1309176095 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +2 1 this.capacityIncrement -1 +0 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1735 +1671 this -730227051 +2030538903 1 this.elementData -1979380632 +1309176095 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +2 1 this.capacityIncrement +0 1 +obj +null 1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1735 +1672 this -730227051 +2030538903 1 this.elementData -1979380632 +1309176095 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -5 +2 1 this.capacityIncrement +0 1 +minCapacity +3 1 -javautil.Vector13.Vector13(int, int):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1736 -initialCapacity -0 +1672 +this +2030538903 1 -capacityIncrement +this.elementData +198099809 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null null] +1 +this.elementCount 2 1 +this.capacityIncrement +0 +1 +minCapacity +3 +1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1736 +1671 this -781106347 +2030538903 1 this.elementData -486839918 +198099809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 -1 -this.capacityIncrement -2 +3 1 -initialCapacity +this.capacityIncrement 0 1 -capacityIncrement -2 +obj +null 1 +obj.getClass().getName() +nonsensical +2 javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1737 +1673 this -781106347 +2030538903 1 this.elementData -486839918 +198099809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +3 1 this.capacityIncrement -2 +0 1 javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1737 +1673 this -781106347 +2030538903 1 this.elementData -486839918 +645482568 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1738 +1674 initialCapacity 0 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1738 +1674 this -405806756 +807752428 1 this.elementData -2133568867 +1026055550 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -97566,23 +97419,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 initialCapacity 0 1 capacityIncrement -2 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1739 +1675 this -405806756 +807752428 1 this.elementData -2133568867 +1026055550 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -97597,10 +97450,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -97608,12 +97461,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1740 +1676 this -405806756 +807752428 1 this.elementData -2133568867 +1026055550 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -97628,7 +97481,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 minCapacity 1 @@ -97636,27 +97489,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1740 +1676 this -405806756 +807752428 1 this.elementData -210010063 +1073763441 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +0 1 minCapacity 1 @@ -97664,74 +97517,80 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1739 +1675 this -405806756 +807752428 1 this.elementData -210010063 +1073763441 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1741 +1677 this -405806756 +807752428 1 this.elementData -210010063 +1073763441 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +0 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1741 +1678 this -405806756 +807752428 1 this.elementData -1323496820 +1073763441 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object"] @@ -97740,298 +97599,319 @@ this.elementCount 1 1 this.capacityIncrement +0 +1 +minCapacity 2 1 -javautil.Vector13.Vector13(int, int):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1742 -initialCapacity +1678 +this +807752428 +1 +this.elementData +752316209 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement 0 1 -capacityIncrement +minCapacity 2 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1742 +1677 this -375438114 +807752428 1 this.elementData -681427112 +752316209 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 -1 -this.capacityIncrement 2 1 -initialCapacity +this.capacityIncrement 0 1 -capacityIncrement -2 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1743 +1679 this -375438114 +807752428 1 this.elementData -681427112 +752316209 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1744 +1680 this -375438114 +807752428 1 this.elementData -681427112 +752316209 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 minCapacity -1 +3 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1744 +1680 this -375438114 +807752428 1 this.elementData -215181933 +914356853 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -0 +2 1 this.capacityIncrement -2 +0 1 minCapacity -1 +3 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1743 +1679 this -375438114 +807752428 1 this.elementData -215181933 +914356853 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1745 +1681 this -375438114 +807752428 1 this.elementData -215181933 +914356853 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null null] 1 this.elementCount -1 +3 1 this.capacityIncrement -2 +0 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1745 +1681 this -375438114 +807752428 1 this.elementData -215181933 +914356853 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 obj -245301360 +1836797772 1 obj.getClass().getName() -"java.lang.Object" +"java.lang.Integer" 1 javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1746 +1682 this -375438114 +807752428 1 this.elementData -215181933 +914356853 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1746 +1682 this -375438114 +807752428 1 this.elementData -215181933 +914356853 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -2 +4 1 this.capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1747 +1683 initialCapacity 0 1 capacityIncrement -2 +0 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1747 +1683 this -200286383 +1229161065 1 this.elementData -1106364232 +195228908 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -98046,23 +97926,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 initialCapacity 0 1 capacityIncrement -2 +0 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1748 +1684 this -200286383 +1229161065 1 this.elementData -1106364232 +195228908 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -98077,10 +97957,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -98088,12 +97968,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1749 +1685 this -200286383 +1229161065 1 this.elementData -1106364232 +195228908 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -98108,7 +97988,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +0 1 minCapacity 1 @@ -98116,27 +97996,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1749 +1685 this -200286383 +1229161065 1 this.elementData -1750231498 +471579726 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +0 1 minCapacity 1 @@ -98144,30 +98024,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1748 +1684 this -200286383 +1229161065 1 this.elementData -1750231498 +471579726 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -98175,49 +98055,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1750 +1686 this -200286383 +1229161065 1 this.elementData -1750231498 +471579726 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +1687 +this +1229161065 +1 +this.elementData +471579726 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172] +1 +this.elementData[..].getClass().getName() +["java.lang.Object"] +1 +this.elementCount +1 +1 +this.capacityIncrement +0 +1 +minCapacity +2 +1 + +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +this_invocation_nonce +1687 +this +1229161065 +1 +this.elementData +1442726378 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" null] +1 +this.elementCount +1 +1 +this.capacityIncrement +0 +1 +minCapacity +2 +1 + javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1750 +1686 this -200286383 +1229161065 1 this.elementData -1750231498 +1442726378 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -98226,10 +98162,10 @@ this.elementCount 2 1 this.capacityIncrement -2 +0 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -98237,18 +98173,18 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1751 +1688 this -200286383 +1229161065 1 this.elementData -1750231498 +1442726378 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -98257,7 +98193,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +0 1 obj null @@ -98268,18 +98204,18 @@ nonsensical javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1752 +1689 this -200286383 +1229161065 1 this.elementData -1750231498 +1442726378 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -98288,7 +98224,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +0 1 minCapacity 3 @@ -98296,18 +98232,18 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1752 +1689 this -200286383 +1229161065 1 this.elementData -2057273927 +16503286 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -98316,7 +98252,7 @@ this.elementCount 2 1 this.capacityIncrement -2 +0 1 minCapacity 3 @@ -98324,18 +98260,18 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1751 +1688 this -200286383 +1229161065 1 this.elementData -2057273927 +16503286 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -98344,7 +98280,7 @@ this.elementCount 3 1 this.capacityIncrement -2 +0 1 obj null @@ -98353,20 +98289,20 @@ obj.getClass().getName() nonsensical 2 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1753 +1690 this -200286383 +1229161065 1 this.elementData -2057273927 +16503286 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172 null null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null null] @@ -98375,503 +98311,532 @@ this.elementCount 3 1 this.capacityIncrement -2 +0 +1 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1753 +1690 this -200286383 +1229161065 1 this.elementData -2116174389 +16503286 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -3 +4 1 this.capacityIncrement -2 -1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1754 -initialCapacity 0 1 -capacityIncrement -2 +obj +1836797772 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1754 +1691 this -2066277956 +1229161065 1 this.elementData -975550855 +16503286 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 -1 -initialCapacity 0 1 -capacityIncrement -2 +obj +1477657879 +1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1755 +1692 this -2066277956 +1229161065 1 this.elementData -975550855 +16503286 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 -1 -obj -245301360 +0 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +5 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1756 +1692 this -2066277956 +1229161065 1 this.elementData -975550855 +484589713 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null 1836797772 null null null null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null null null] 1 this.elementCount -0 +4 1 this.capacityIncrement -2 +0 1 minCapacity -1 +5 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1756 +1691 this -2066277956 +1229161065 1 this.elementData -45575140 +484589713 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -[null null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount -0 +5 1 this.capacityIncrement -2 +0 1 -minCapacity +obj +1477657879 1 +obj.getClass().getName() +"java.lang.Integer" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1755 +1693 this -2066277956 +1229161065 1 this.elementData -45575140 +484589713 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null 1836797772 1477657879 null null null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null null null] 1 this.elementCount -1 +5 1 this.capacityIncrement -2 -1 -obj -245301360 -1 -obj.getClass().getName() -"java.lang.Object" +0 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1757 +1693 this -2066277956 +1229161065 1 this.elementData -45575140 +1574598287 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172 540642172 null 1836797772 1477657879] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] 1 this.elementCount -1 +5 1 this.capacityIncrement -2 +0 1 -obj -245301360 + +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1694 +initialCapacity +0 +1 +capacityIncrement 1 -obj.getClass().getName() -"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1757 +1694 this -2066277956 +2056031695 1 this.elementData -45575140 +606508809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +initialCapacity +0 +1 +capacityIncrement +1 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1758 +1695 this -2066277956 +2056031695 1 this.elementData -45575140 +606508809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement -2 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1759 +1695 this -2066277956 +2056031695 1 this.elementData -45575140 +606508809 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement -2 1 -minCapacity -3 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1696 +initialCapacity +0 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1759 +1696 this -2066277956 +718187988 1 this.elementData -1477199648 +615438348 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[] 1 this.elementCount -2 +0 1 this.capacityIncrement -2 1 -minCapacity -3 +1 +initialCapacity +0 +1 +capacityIncrement +1 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1758 +1697 this -2066277956 +718187988 1 this.elementData -1477199648 +615438348 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement -2 +1 1 obj -null +540642172 1 obj.getClass().getName() -nonsensical -2 +"java.lang.Object" +1 + +javautil.Vector13.ensureCapacityHelper(int):::ENTER +this_invocation_nonce +1698 +this +718187988 +1 +this.elementData +615438348 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[] +1 +this.elementData[..].getClass().getName() +[] +1 +this.elementCount +0 +1 +this.capacityIncrement +1 +1 +minCapacity +1 +1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1760 +1698 this -2066277956 +718187988 1 this.elementData -1477199648 +978508707 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[null] 1 this.elementCount -3 +0 1 this.capacityIncrement -2 1 -obj -726045964 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +1 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1760 +1697 this -2066277956 +718187988 1 this.elementData -1477199648 +978508707 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 +1 1 this.capacityIncrement -2 +1 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1761 +1699 this -2066277956 +718187988 1 this.elementData -1477199648 +978508707 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 +1 1 this.capacityIncrement -2 +1 1 javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1761 +1699 this -2066277956 +718187988 1 this.elementData -1477199648 +978508707 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +["java.lang.Object"] 1 this.elementCount -4 +1 1 this.capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::ENTER this_invocation_nonce -1762 +1700 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1762 +1700 this -236040969 +710708543 1 this.elementData -738269974 +1965237677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -98886,23 +98851,23 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 initialCapacity 0 1 capacityIncrement -2 +1 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1763 +1701 this -236040969 +710708543 1 this.elementData -738269974 +1965237677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -98917,10 +98882,10 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -98928,12 +98893,12 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1764 +1702 this -236040969 +710708543 1 this.elementData -738269974 +1965237677 1 this.elementData.getClass().getName() "java.lang.Object[]" @@ -98948,7 +98913,7 @@ this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -98956,27 +98921,27 @@ minCapacity javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1764 +1702 this -236040969 +710708543 1 this.elementData -2090424299 +664792509 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null] +[null] 1 this.elementData[..].getClass().getName() -[null null] +[null] 1 this.elementCount 0 1 this.capacityIncrement -2 +1 1 minCapacity 1 @@ -98984,30 +98949,30 @@ minCapacity javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1763 +1701 this -236040969 +710708543 1 this.elementData -2090424299 +664792509 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -99015,111 +98980,105 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1765 +1703 this -236040969 +710708543 1 this.elementData -2090424299 +664792509 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null] +["java.lang.Object"] 1 this.elementCount 1 1 this.capacityIncrement -2 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1765 +1704 this -236040969 +710708543 1 this.elementData -2090424299 +664792509 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object"] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +2 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1766 +1704 this -236040969 +710708543 1 this.elementData -2090424299 +188523822 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" null] 1 this.elementCount -2 +1 1 this.capacityIncrement -2 1 -obj -null 1 -obj.getClass().getName() -nonsensical +minCapacity 2 +1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1767 +1703 this -236040969 +710708543 1 this.elementData -2090424299 +188523822 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object"] @@ -99128,668 +99087,695 @@ this.elementCount 2 1 this.capacityIncrement -2 1 -minCapacity -3 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1767 +1705 this -236040969 +710708543 1 this.elementData -928728373 +188523822 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -2 1 -minCapacity -3 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.trimToSize():::EXIT134 this_invocation_nonce -1766 +1705 this -236040969 +710708543 1 this.elementData -928728373 +188523822 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -3 +2 1 this.capacityIncrement -2 1 -obj -null 1 -obj.getClass().getName() -nonsensical -2 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1706 +initialCapacity +0 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1768 +1706 this -236040969 +1170727939 1 this.elementData -928728373 +690339675 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null null] +[] 1 this.elementCount -3 +0 1 this.capacityIncrement -2 1 -obj -726045964 1 -obj.getClass().getName() -"java.lang.Integer" +initialCapacity +0 +1 +capacityIncrement +1 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1768 +1707 this -236040969 +1170727939 1 this.elementData -928728373 +690339675 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 obj -726045964 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1769 +1708 this -236040969 +1170727939 1 this.elementData -928728373 +690339675 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 1 -obj -12733619 1 -obj.getClass().getName() -"java.lang.Integer" +minCapacity +1 1 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1770 +1708 this -236040969 +1170727939 1 this.elementData -928728373 +1896828359 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer"] +[null] 1 this.elementCount -4 +0 1 this.capacityIncrement -2 +1 1 minCapacity -5 +1 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1770 +1707 this -236040969 +1170727939 1 this.elementData -1226618615 +1896828359 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 null null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" null null] +["java.lang.Object"] 1 this.elementCount -4 +1 1 this.capacityIncrement -2 1 -minCapacity -5 +1 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1769 +1709 this -236040969 +1170727939 1 this.elementData -1226618615 +1896828359 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object"] 1 this.elementCount -5 +1 1 this.capacityIncrement -2 +1 1 obj -12733619 +540642172 1 obj.getClass().getName() -"java.lang.Integer" +"java.lang.Object" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1771 +1710 this -236040969 +1170727939 1 this.elementData -1226618615 +1896828359 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619 null] +[540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer" null] +["java.lang.Object"] 1 this.elementCount -5 +1 1 this.capacityIncrement +1 +1 +minCapacity 2 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1771 +1710 this -236040969 +1170727939 1 this.elementData -2083534752 +536122141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null 726045964 12733619] +[540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null "java.lang.Integer" "java.lang.Integer"] +["java.lang.Object" null] 1 this.elementCount -5 +1 1 this.capacityIncrement -2 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1772 -initialCapacity -0 1 -capacityIncrement -3 +minCapacity +2 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1772 +1709 this -1100228882 +1170727939 1 this.elementData -1712619104 +536122141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 -initialCapacity -0 1 -capacityIncrement -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1773 +1711 this -1100228882 +1170727939 1 this.elementData -1712619104 +536122141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 +1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1773 +1712 this -1100228882 +1170727939 1 this.elementData -1712619104 +536122141 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1774 -initialCapacity -0 1 -capacityIncrement +minCapacity 3 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1774 +1712 this -1265960187 +1170727939 1 this.elementData -1872372080 +1709804316 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +2 1 this.capacityIncrement -3 1 -initialCapacity -0 1 -capacityIncrement +minCapacity 3 1 -javautil.Vector13.addElement(java.lang.Object):::ENTER +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1775 +1711 this -1265960187 +1170727939 1 this.elementData -1872372080 +1709804316 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement -3 +1 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.ensureCapacityHelper(int):::ENTER +javautil.Vector13.trimToSize():::ENTER this_invocation_nonce -1776 +1713 this -1265960187 +1170727939 1 this.elementData -1872372080 +1709804316 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -0 +3 1 this.capacityIncrement +1 +1 + +javautil.Vector13.trimToSize():::EXIT134 +this_invocation_nonce +1713 +this +1170727939 +1 +this.elementData +1709804316 +1 +this.elementData.getClass().getName() +"java.lang.Object[]" +1 +this.elementData[..] +[540642172 540642172 null] +1 +this.elementData[..].getClass().getName() +["java.lang.Object" "java.lang.Object" null] +1 +this.elementCount 3 1 -minCapacity +this.capacityIncrement 1 1 -javautil.Vector13.ensureCapacityHelper(int):::EXIT168 +javautil.Vector13.Vector13(int, int):::ENTER +this_invocation_nonce +1714 +initialCapacity +0 +1 +capacityIncrement +1 +1 + +javautil.Vector13.Vector13(int, int):::EXIT85 this_invocation_nonce -1776 +1714 this -1265960187 +1630678941 1 this.elementData -1879669069 +1792550665 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[] 1 this.elementData[..].getClass().getName() -[null null null] +[] 1 this.elementCount 0 1 this.capacityIncrement -3 1 -minCapacity +1 +initialCapacity +0 +1 +capacityIncrement 1 1 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1775 +1715 this -1265960187 +1630678941 1 this.elementData -1879669069 +1792550665 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1777 +1716 this -1265960187 +1630678941 1 this.elementData -1879669069 +1792550665 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +[] 1 this.elementCount -1 +0 1 this.capacityIncrement -3 +1 +1 +minCapacity +1 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1777 +1716 this -1265960187 +1630678941 1 this.elementData -2113595313 +1359953204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360] +[null] 1 this.elementData[..].getClass().getName() -["java.lang.Object"] +[null] 1 this.elementCount -1 +0 1 this.capacityIncrement -3 1 - -javautil.Vector13.Vector13(int, int):::ENTER -this_invocation_nonce -1778 -initialCapacity -0 1 -capacityIncrement -3 +minCapacity +1 1 -javautil.Vector13.Vector13(int, int):::EXIT85 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1778 +1715 this -1669420564 +1630678941 1 this.elementData -1077571093 +1359953204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object"] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 1 -initialCapacity -0 1 -capacityIncrement -3 +obj +540642172 +1 +obj.getClass().getName() +"java.lang.Object" 1 javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1779 +1717 this -1669420564 +1630678941 1 this.elementData -1077571093 +1359953204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object"] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -99797,86 +99783,86 @@ obj.getClass().getName() javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1780 +1718 this -1669420564 +1630678941 1 this.elementData -1077571093 +1359953204 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[] +[540642172] 1 this.elementData[..].getClass().getName() -[] +["java.lang.Object"] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 1 -minCapacity 1 +minCapacity +2 1 javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1780 +1718 this -1669420564 +1630678941 1 this.elementData -1007764900 +2014838114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[null null null] +[540642172 null] 1 this.elementData[..].getClass().getName() -[null null null] +["java.lang.Object" null] 1 this.elementCount -0 +1 1 this.capacityIncrement -3 1 -minCapacity 1 +minCapacity +2 1 javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1779 +1717 this -1669420564 +1630678941 1 this.elementData -1007764900 +2014838114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +2 1 this.capacityIncrement -3 +1 1 obj -245301360 +540642172 1 obj.getClass().getName() "java.lang.Object" @@ -99884,80 +99870,77 @@ obj.getClass().getName() javautil.Vector13.addElement(java.lang.Object):::ENTER this_invocation_nonce -1781 +1719 this -1669420564 +1630678941 1 this.elementData -1007764900 +2014838114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 null null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" null null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount -1 +2 1 this.capacityIncrement -3 +1 1 obj -245301360 +null 1 obj.getClass().getName() -"java.lang.Object" -1 +nonsensical +2 -javautil.Vector13.addElement(java.lang.Object):::EXIT463 +javautil.Vector13.ensureCapacityHelper(int):::ENTER this_invocation_nonce -1781 +1720 this -1669420564 +1630678941 1 this.elementData -1007764900 +2014838114 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object" null] +["java.lang.Object" "java.lang.Object"] 1 this.elementCount 2 1 this.capacityIncrement -3 1 -obj -245301360 1 -obj.getClass().getName() -"java.lang.Object" +minCapacity +3 1 -javautil.Vector13.trimToSize():::ENTER +javautil.Vector13.ensureCapacityHelper(int):::EXIT168 this_invocation_nonce -1782 +1720 this -1669420564 +1630678941 1 this.elementData -1007764900 +136936250 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360 null] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() ["java.lang.Object" "java.lang.Object" null] @@ -99966,31 +99949,40 @@ this.elementCount 2 1 this.capacityIncrement +1 +1 +minCapacity 3 1 -javautil.Vector13.trimToSize():::EXIT134 +javautil.Vector13.addElement(java.lang.Object):::EXIT463 this_invocation_nonce -1782 +1719 this -1669420564 +1630678941 1 this.elementData -301150411 +136936250 1 this.elementData.getClass().getName() "java.lang.Object[]" 1 this.elementData[..] -[245301360 245301360] +[540642172 540642172 null] 1 this.elementData[..].getClass().getName() -["java.lang.Object" "java.lang.Object"] +["java.lang.Object" "java.lang.Object" null] 1 this.elementCount -2 +3 1 this.capacityIncrement -3 1 +1 +obj +null +1 +obj.getClass().getName() +nonsensical +2 diff --git a/tests/daikon-tests/Vector/Vector.txt-jaif.goal b/tests/daikon-tests/Vector/Vector.txt-jaif.goal index dc351e7209..92d5325dbb 100644 --- a/tests/daikon-tests/Vector/Vector.txt-jaif.goal +++ b/tests/daikon-tests/Vector/Vector.txt-jaif.goal @@ -8,83 +8,161 @@ class Vector13 : // 41700/41700 obj/class samples field elementData : // java.lang.Object[] field elementCount : // int field capacityIncrement : // int + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 5 samples - return: + return: + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // initialCapacity method (I)V : // 260 samples - return: + return: + parameter #0 : // initialCapacity + method (II)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // initialCapacity + parameter #1 : // capacityIncrement method (II)V : // 1785 samples - return: + return: parameter #0 : // initialCapacity parameter #1 : // capacityIncrement + method addElement(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj method addElement(Ljava/lang/Object;)V : // 3760 samples - return: - parameter #0 : @Nullable // obj + return: + parameter #0 : @Nullable // obj + method capacity()V throws Ljava/lang/Throwable; : // 0 samples + return: method capacity()I : // 0 samples - return: + return: + method clone()V throws Ljava/lang/Throwable; : // 0 samples + return: method clone()Ljava/lang/Object; : // 150 samples - return: + return: + method contains(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // elem method contains(Ljava/lang/Object;)Z : // 300 samples - return: + return: parameter #0 : // elem + method copyInto([Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // anArray method copyInto([Ljava/lang/Object;)V : // 450 samples - return: + return: parameter #0 : // anArray + method elementAt(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method elementAt(I)Ljava/lang/Object; : // 375 samples - return: @Nullable + return: @Nullable parameter #0 : // index + method elements()V throws Ljava/lang/Throwable; : // 0 samples + return: method elements()Ljava/util/Enumeration; : // 300 samples - return: + return: + method ensureCapacity(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // minCapacity method ensureCapacity(I)V : // 900 samples - return: + return: + parameter #0 : // minCapacity + method ensureCapacityHelper(I)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // minCapacity method ensureCapacityHelper(I)V : // 1450 samples - return: + return: parameter #0 : // minCapacity + method firstElement()V throws Ljava/lang/Throwable; : // 0 samples + return: method firstElement()Ljava/lang/Object; : // 125 samples - return: @Nullable + return: @Nullable + method indexOf(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // elem method indexOf(Ljava/lang/Object;)I : // 900 samples - return: + return: + parameter #0 : // elem + method indexOf(Ljava/lang/Object;I)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // elem + parameter #1 : // index method indexOf(Ljava/lang/Object;I)I : // 5700 samples - return: + return: parameter #0 : // elem parameter #1 : // index + method insertElementAt(Ljava/lang/Object;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj + parameter #1 : // index method insertElementAt(Ljava/lang/Object;I)V : // 150 samples - return: - parameter #0 : @Nullable // obj + return: + parameter #0 : @Nullable // obj parameter #1 : // index + method isEmpty()V throws Ljava/lang/Throwable; : // 0 samples + return: method isEmpty()Z : // 150 samples - return: + return: + method lastElement()V throws Ljava/lang/Throwable; : // 0 samples + return: method lastElement()Ljava/lang/Object; : // 125 samples - return: @Nullable + return: @Nullable + method lastIndexOf(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // elem method lastIndexOf(Ljava/lang/Object;)I : // 750 samples - return: + return: + parameter #0 : // elem + method lastIndexOf(Ljava/lang/Object;I)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // elem + parameter #1 : // index method lastIndexOf(Ljava/lang/Object;I)I : // 2625 samples - return: + return: parameter #0 : // elem parameter #1 : // index + method removeAllElements()V throws Ljava/lang/Throwable; : // 0 samples + return: method removeAllElements()V : // 150 samples - return: + return: + method removeElement(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj method removeElement(Ljava/lang/Object;)Z : // 150 samples - return: + return: parameter #0 : // obj + method removeElementAt(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // index method removeElementAt(I)V : // 190 samples - return: + return: parameter #0 : // index + method setElementAt(Ljava/lang/Object;I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // obj + parameter #1 : // index method setElementAt(Ljava/lang/Object;I)V : // 375 samples - return: - parameter #0 : @Nullable // obj + return: + parameter #0 : @Nullable // obj parameter #1 : // index + method setSize(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // newSize method setSize(I)V : // 150 samples - return: + return: parameter #0 : // newSize + method size()V throws Ljava/lang/Throwable; : // 0 samples + return: method size()I : // 300 samples - return: + return: + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 150 samples - return: + return: + method trimToSize()V throws Ljava/lang/Throwable; : // 0 samples + return: method trimToSize()V : // 150 samples - return: + return: diff --git a/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-chicory.goal b/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-chicory.goal index 993f2f4acb..a83044fdb3 100644 --- a/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-chicory.goal +++ b/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for MapQuick.WeightedNodePath -// Declarations written Thu Jun 04 13:17:23 PDT 2015 +// Declarations written Mon May 30 00:51:43 CEST 2016 decl-version 2.0 var-comparability none @@ -266,6 +266,140 @@ variable path.cost rep-type int comparability 22 +ppt MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode,\_MapQuick.WeightedNodePath):::THROW42 +ppt-type subexit +parent parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick.WeightedNodePath + rep-type hashcode + flags is_param + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.node + var-kind field node + enclosing-var this + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path + var-kind field path + enclosing-var this + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.node + var-kind field node + enclosing-var this.path + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path + var-kind field path + enclosing-var this.path + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path.node + var-kind field node + enclosing-var this.path.path + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path.path + var-kind field path + enclosing-var this.path.path + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path.cost + var-kind field cost + enclosing-var this.path.path + dec-type int + rep-type int + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.cost + var-kind field cost + enclosing-var this.path + dec-type int + rep-type int + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.cost + var-kind field cost + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable node + var-kind variable + dec-type MapQuick.WeightedNode + rep-type hashcode + flags is_param + comparability 22 +variable path + var-kind variable + dec-type MapQuick.WeightedNodePath + rep-type hashcode + flags is_param + comparability 22 +variable path.node + var-kind field node + enclosing-var path + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 +variable path.path + var-kind field path + enclosing-var path + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 +variable path.path.node + var-kind field node + enclosing-var path.path + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 +variable path.path.path + var-kind field path + enclosing-var path.path + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 +variable path.path.cost + var-kind field cost + enclosing-var path.path + dec-type int + rep-type int + comparability 22 +variable path.cost + var-kind field cost + enclosing-var path + dec-type int + rep-type int + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname + comparability 22 + ppt MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER ppt-type enter parent parent MapQuick.WeightedNodePath:::OBJECT 1 @@ -455,6 +589,106 @@ variable return.getClass().getName() flags synthetic classname comparability 22 +ppt MapQuick.WeightedNodePath.extend(java.lang.Object):::THROW58 +ppt-type subexit +parent parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this + var-kind variable + dec-type MapQuick.WeightedNodePath + rep-type hashcode + flags is_param + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.node + var-kind field node + enclosing-var this + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path + var-kind field path + enclosing-var this + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.node + var-kind field node + enclosing-var this.path + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path + var-kind field path + enclosing-var this.path + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path.node + var-kind field node + enclosing-var this.path.path + dec-type MapQuick.WeightedNode + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path.path + var-kind field path + enclosing-var this.path.path + dec-type MapQuick.WeightedNodePath + rep-type hashcode + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.path.cost + var-kind field cost + enclosing-var this.path.path + dec-type int + rep-type int + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.path.cost + var-kind field cost + enclosing-var this.path + dec-type int + rep-type int + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable this.cost + var-kind field cost + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent MapQuick.WeightedNodePath:::OBJECT 1 +variable o + var-kind variable + dec-type java.lang.Object + rep-type hashcode + flags is_param + comparability 22 +variable o.getClass().getName() + var-kind function getClass().getName() + enclosing-var o + dec-type java.lang.Class + rep-type java.lang.String + function-args o + flags synthetic classname + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname + comparability 22 + ppt MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER ppt-type enter parent parent MapQuick.WeightedNodePath:::OBJECT 1 @@ -1834,14 +2068,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 0 node -180406984 +683612021 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 1 node -180406984 +683612021 1 path null @@ -1869,10 +2103,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 1 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -1899,7 +2133,7 @@ this.cost 5 1 node -180406984 +683612021 1 path null @@ -1927,10 +2161,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 0 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -1957,17 +2191,17 @@ this.cost 5 1 node -180406984 +683612021 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 2 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -1998,10 +2232,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 2 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2035,10 +2269,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 3 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2069,10 +2303,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 3 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2099,7 +2333,7 @@ this.cost 5 1 return -665587013 +1668632755 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -2109,10 +2343,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 4 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2143,10 +2377,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 4 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2173,7 +2407,7 @@ this.cost 5 1 return -1220855602 +1568643625 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -2183,10 +2417,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 5 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2217,10 +2451,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 5 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2254,10 +2488,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 6 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2284,7 +2518,7 @@ this.cost 5 1 o -977332480 +1268972593 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -2294,10 +2528,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 7 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2324,20 +2558,20 @@ this.cost 5 1 node -977332480 +1268972593 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 8 node -977332480 +1268972593 1 path -2000754171 +429725497 1 path.node -180406984 +683612021 1 path.path null @@ -2359,16 +2593,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 8 this -2072059104 +962272194 1 this.node -977332480 +1268972593 1 this.path -2000754171 +429725497 1 this.path.node -180406984 +683612021 1 this.path.path null @@ -2389,13 +2623,13 @@ this.cost 10 1 node -977332480 +1268972593 1 path -2000754171 +429725497 1 path.node -180406984 +683612021 1 path.path null @@ -2417,10 +2651,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 7 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2447,10 +2681,10 @@ this.cost 5 1 node -977332480 +1268972593 1 return -2072059104 +962272194 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -2460,10 +2694,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 6 this -2000754171 +429725497 1 this.node -180406984 +683612021 1 this.path null @@ -2490,13 +2724,13 @@ this.cost 5 1 o -977332480 +1268972593 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2072059104 +962272194 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -2506,16 +2740,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 9 this -2072059104 +962272194 1 this.node -977332480 +1268972593 1 this.path -2000754171 +429725497 1 this.path.node -180406984 +683612021 1 this.path.path null @@ -2540,16 +2774,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 9 this -2072059104 +962272194 1 this.node -977332480 +1268972593 1 this.path -2000754171 +429725497 1 this.path.node -180406984 +683612021 1 this.path.path null @@ -2577,16 +2811,16 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 10 this -2072059104 +962272194 1 this.node -977332480 +1268972593 1 this.path -2000754171 +429725497 1 this.path.node -180406984 +683612021 1 this.path.path null @@ -2611,16 +2845,16 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 10 this -2072059104 +962272194 1 this.node -977332480 +1268972593 1 this.path -2000754171 +429725497 1 this.path.node -180406984 +683612021 1 this.path.path null @@ -2641,7 +2875,7 @@ this.cost 10 1 return -1502541176 +209419001 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -2651,14 +2885,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 11 node -949339959 +2126936021 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 12 node -949339959 +2126936021 1 path null @@ -2686,10 +2920,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 12 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2716,7 +2950,7 @@ this.cost 1 1 node -949339959 +2126936021 1 path null @@ -2744,10 +2978,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 11 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2774,17 +3008,17 @@ this.cost 1 1 node -949339959 +2126936021 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 13 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2815,10 +3049,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 13 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2852,10 +3086,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 14 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2886,10 +3120,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 14 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2916,7 +3150,7 @@ this.cost 1 1 return -864972325 +1555566256 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -2926,10 +3160,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 15 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2960,10 +3194,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 15 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -2990,7 +3224,7 @@ this.cost 1 1 return -1273059732 +936146014 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -3000,10 +3234,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 16 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3034,10 +3268,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 16 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3071,10 +3305,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 17 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3101,7 +3335,7 @@ this.cost 1 1 o -935340663 +1340859376 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -3111,10 +3345,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 18 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3141,20 +3375,20 @@ this.cost 1 1 node -935340663 +1340859376 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 19 node -935340663 +1340859376 1 path -1900677350 +400916985 1 path.node -949339959 +2126936021 1 path.path null @@ -3176,16 +3410,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 19 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3206,13 +3440,13 @@ this.cost 6 1 node -935340663 +1340859376 1 path -1900677350 +400916985 1 path.node -949339959 +2126936021 1 path.path null @@ -3234,10 +3468,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 18 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3264,10 +3498,10 @@ this.cost 1 1 node -935340663 +1340859376 1 return -690227001 +130140814 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -3277,10 +3511,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 17 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3307,13 +3541,13 @@ this.cost 1 1 o -935340663 +1340859376 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -690227001 +130140814 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -3323,16 +3557,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 20 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3357,16 +3591,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 20 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3394,10 +3628,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 21 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3424,7 +3658,7 @@ this.cost 1 1 o -949339959 +2126936021 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -3434,10 +3668,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 22 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3464,20 +3698,20 @@ this.cost 1 1 node -949339959 +2126936021 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 23 node -949339959 +2126936021 1 path -1900677350 +400916985 1 path.node -949339959 +2126936021 1 path.path null @@ -3499,16 +3733,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 23 this -2086028360 +1138308252 1 this.node -949339959 +2126936021 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3529,13 +3763,13 @@ this.cost 2 1 node -949339959 +2126936021 1 path -1900677350 +400916985 1 path.node -949339959 +2126936021 1 path.path null @@ -3557,10 +3791,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 22 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3587,10 +3821,10 @@ this.cost 1 1 node -949339959 +2126936021 1 return -2086028360 +1138308252 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -3600,10 +3834,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 21 this -1900677350 +400916985 1 this.node -949339959 +2126936021 1 this.path null @@ -3630,13 +3864,13 @@ this.cost 1 1 o -949339959 +2126936021 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2086028360 +1138308252 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -3646,16 +3880,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 24 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3676,7 +3910,7 @@ this.cost 6 1 o -949339959 +2126936021 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -3686,16 +3920,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 25 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3716,26 +3950,26 @@ this.cost 6 1 node -949339959 +2126936021 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 26 node -949339959 +2126936021 1 path -690227001 +130140814 1 path.node -935340663 +1340859376 1 path.path -1900677350 +400916985 1 path.path.node -949339959 +2126936021 1 path.path.path null @@ -3751,22 +3985,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 26 this -60625598 +1762463888 1 this.node -949339959 +2126936021 1 this.path -690227001 +130140814 1 this.path.node -935340663 +1340859376 1 this.path.path -1900677350 +400916985 1 this.path.path.node -949339959 +2126936021 1 this.path.path.path null @@ -3781,19 +4015,19 @@ this.cost 7 1 node -949339959 +2126936021 1 path -690227001 +130140814 1 path.node -935340663 +1340859376 1 path.path -1900677350 +400916985 1 path.path.node -949339959 +2126936021 1 path.path.path null @@ -3809,16 +4043,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 25 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3839,10 +4073,10 @@ this.cost 6 1 node -949339959 +2126936021 1 return -60625598 +1762463888 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -3852,16 +4086,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 24 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3882,13 +4116,13 @@ this.cost 6 1 o -949339959 +2126936021 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -60625598 +1762463888 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -3898,16 +4132,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 27 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3928,7 +4162,7 @@ this.cost 6 1 o -1027176908 +1488622545 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -3938,16 +4172,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 28 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -3968,26 +4202,26 @@ this.cost 6 1 node -1027176908 +1488622545 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 29 node -1027176908 +1488622545 1 path -690227001 +130140814 1 path.node -935340663 +1340859376 1 path.path -1900677350 +400916985 1 path.path.node -949339959 +2126936021 1 path.path.path null @@ -4003,22 +4237,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 29 this -141254523 +1094626265 1 this.node -1027176908 +1488622545 1 this.path -690227001 +130140814 1 this.path.node -935340663 +1340859376 1 this.path.path -1900677350 +400916985 1 this.path.path.node -949339959 +2126936021 1 this.path.path.path null @@ -4033,19 +4267,19 @@ this.cost 16 1 node -1027176908 +1488622545 1 path -690227001 +130140814 1 path.node -935340663 +1340859376 1 path.path -1900677350 +400916985 1 path.path.node -949339959 +2126936021 1 path.path.path null @@ -4061,16 +4295,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 28 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -4091,10 +4325,10 @@ this.cost 6 1 node -1027176908 +1488622545 1 return -141254523 +1094626265 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -4104,16 +4338,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 27 this -690227001 +130140814 1 this.node -935340663 +1340859376 1 this.path -1900677350 +400916985 1 this.path.node -949339959 +2126936021 1 this.path.path null @@ -4134,13 +4368,13 @@ this.cost 6 1 o -1027176908 +1488622545 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -141254523 +1094626265 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -4150,22 +4384,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 30 this -141254523 +1094626265 1 this.node -1027176908 +1488622545 1 this.path -690227001 +130140814 1 this.path.node -935340663 +1340859376 1 this.path.path -1900677350 +400916985 1 this.path.path.node -949339959 +2126936021 1 this.path.path.path null @@ -4184,22 +4418,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 30 this -141254523 +1094626265 1 this.node -1027176908 +1488622545 1 this.path -690227001 +130140814 1 this.path.node -935340663 +1340859376 1 this.path.path -1900677350 +400916985 1 this.path.path.node -949339959 +2126936021 1 this.path.path.path null @@ -4221,22 +4455,22 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 31 this -141254523 +1094626265 1 this.node -1027176908 +1488622545 1 this.path -690227001 +130140814 1 this.path.node -935340663 +1340859376 1 this.path.path -1900677350 +400916985 1 this.path.path.node -949339959 +2126936021 1 this.path.path.path null @@ -4255,22 +4489,22 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 31 this -141254523 +1094626265 1 this.node -1027176908 +1488622545 1 this.path -690227001 +130140814 1 this.path.node -935340663 +1340859376 1 this.path.path -1900677350 +400916985 1 this.path.path.node -949339959 +2126936021 1 this.path.path.path null @@ -4285,7 +4519,7 @@ this.cost 16 1 return -1095338126 +2038715653 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -4295,14 +4529,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 32 node -1118061598 +1592392086 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 33 node -1118061598 +1592392086 1 path null @@ -4330,10 +4564,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 33 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4360,7 +4594,7 @@ this.cost 1 1 node -1118061598 +1592392086 1 path null @@ -4388,10 +4622,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 32 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4418,17 +4652,17 @@ this.cost 1 1 node -1118061598 +1592392086 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 34 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4459,10 +4693,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 34 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4496,10 +4730,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 35 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4530,10 +4764,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 35 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4560,7 +4794,7 @@ this.cost 1 1 return -1307246099 +1823476810 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -4570,10 +4804,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 36 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4604,10 +4838,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 36 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4634,7 +4868,7 @@ this.cost 1 1 return -2127477083 +435619333 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -4644,10 +4878,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 37 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4678,10 +4912,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 37 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4715,10 +4949,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 38 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4745,7 +4979,7 @@ this.cost 1 1 o -904611431 +682377108 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -4755,10 +4989,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 39 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4785,20 +5019,20 @@ this.cost 1 1 node -904611431 +682377108 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 40 node -904611431 +682377108 1 path -779366336 +1392580488 1 path.node -1118061598 +1592392086 1 path.path null @@ -4820,16 +5054,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 40 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -4850,13 +5084,13 @@ this.cost 2 1 node -904611431 +682377108 1 path -779366336 +1392580488 1 path.node -1118061598 +1592392086 1 path.path null @@ -4878,10 +5112,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 39 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4908,10 +5142,10 @@ this.cost 1 1 node -904611431 +682377108 1 return -1767583704 +1149379176 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -4921,10 +5155,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 38 this -779366336 +1392580488 1 this.node -1118061598 +1592392086 1 this.path null @@ -4951,13 +5185,13 @@ this.cost 1 1 o -904611431 +682377108 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1767583704 +1149379176 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -4967,16 +5201,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 41 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5001,16 +5235,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 41 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5038,16 +5272,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 42 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5068,7 +5302,7 @@ this.cost 2 1 o -1638024177 +1000406267 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -5078,16 +5312,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 43 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5108,26 +5342,26 @@ this.cost 2 1 node -1638024177 +1000406267 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 44 node -1638024177 +1000406267 1 path -1767583704 +1149379176 1 path.node -904611431 +682377108 1 path.path -779366336 +1392580488 1 path.path.node -1118061598 +1592392086 1 path.path.path null @@ -5143,22 +5377,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 44 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5173,19 +5407,19 @@ this.cost 3 1 node -1638024177 +1000406267 1 path -1767583704 +1149379176 1 path.node -904611431 +682377108 1 path.path -779366336 +1392580488 1 path.path.node -1118061598 +1592392086 1 path.path.path null @@ -5201,16 +5435,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 43 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5231,10 +5465,10 @@ this.cost 2 1 node -1638024177 +1000406267 1 return -1679471946 +1178657106 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -5244,16 +5478,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 42 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5274,13 +5508,13 @@ this.cost 2 1 o -1638024177 +1000406267 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1679471946 +1178657106 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -5290,22 +5524,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 45 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5324,22 +5558,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 45 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5361,16 +5595,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 46 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5391,7 +5625,7 @@ this.cost 2 1 o -359940254 +1300820614 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -5401,16 +5635,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 47 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5431,26 +5665,26 @@ this.cost 2 1 node -359940254 +1300820614 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 48 node -359940254 +1300820614 1 path -1767583704 +1149379176 1 path.node -904611431 +682377108 1 path.path -779366336 +1392580488 1 path.path.node -1118061598 +1592392086 1 path.path.path null @@ -5466,22 +5700,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 48 this -54415379 +1508533038 1 this.node -359940254 +1300820614 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5496,19 +5730,19 @@ this.cost 3 1 node -359940254 +1300820614 1 path -1767583704 +1149379176 1 path.node -904611431 +682377108 1 path.path -779366336 +1392580488 1 path.path.node -1118061598 +1592392086 1 path.path.path null @@ -5524,16 +5758,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 47 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5554,10 +5788,10 @@ this.cost 2 1 node -359940254 +1300820614 1 return -54415379 +1508533038 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -5567,16 +5801,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 46 this -1767583704 +1149379176 1 this.node -904611431 +682377108 1 this.path -779366336 +1392580488 1 this.path.node -1118061598 +1592392086 1 this.path.path null @@ -5597,13 +5831,13 @@ this.cost 2 1 o -359940254 +1300820614 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -54415379 +1508533038 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -5613,22 +5847,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 49 this -54415379 +1508533038 1 this.node -359940254 +1300820614 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5647,22 +5881,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 49 this -54415379 +1508533038 1 this.node -359940254 +1300820614 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5684,22 +5918,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 50 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5714,7 +5948,7 @@ this.cost 3 1 o -1878724878 +722833184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -5724,22 +5958,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 51 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5754,29 +5988,29 @@ this.cost 3 1 node -1878724878 +722833184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 52 node -1878724878 +722833184 1 path -1679471946 +1178657106 1 path.node -1638024177 +1000406267 1 path.path -1767583704 +1149379176 1 path.path.node -904611431 +682377108 1 path.path.path -779366336 +1392580488 1 path.path.cost 2 @@ -5789,25 +6023,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 52 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -5819,22 +6053,22 @@ this.cost 4 1 node -1878724878 +722833184 1 path -1679471946 +1178657106 1 path.node -1638024177 +1000406267 1 path.path -1767583704 +1149379176 1 path.path.node -904611431 +682377108 1 path.path.path -779366336 +1392580488 1 path.path.cost 2 @@ -5847,22 +6081,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 51 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5877,10 +6111,10 @@ this.cost 3 1 node -1878724878 +722833184 1 return -1276962705 +342332409 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -5890,22 +6124,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 50 this -1679471946 +1178657106 1 this.node -1638024177 +1000406267 1 this.path -1767583704 +1149379176 1 this.path.node -904611431 +682377108 1 this.path.path -779366336 +1392580488 1 this.path.path.node -1118061598 +1592392086 1 this.path.path.path null @@ -5920,13 +6154,13 @@ this.cost 3 1 o -1878724878 +722833184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1276962705 +342332409 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -5936,25 +6170,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 53 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -5970,25 +6204,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 53 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -6007,25 +6241,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 54 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -6037,7 +6271,7 @@ this.cost 4 1 o -2108098464 +472107750 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -6047,25 +6281,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 55 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -6077,29 +6311,29 @@ this.cost 4 1 node -2108098464 +472107750 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 56 node -2108098464 +472107750 1 path -1276962705 +342332409 1 path.node -1878724878 +722833184 1 path.path -1679471946 +1178657106 1 path.path.node -1638024177 +1000406267 1 path.path.path -1767583704 +1149379176 1 path.path.cost 3 @@ -6112,25 +6346,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 56 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6142,22 +6376,22 @@ this.cost 5 1 node -2108098464 +472107750 1 path -1276962705 +342332409 1 path.node -1878724878 +722833184 1 path.path -1679471946 +1178657106 1 path.path.node -1638024177 +1000406267 1 path.path.path -1767583704 +1149379176 1 path.path.cost 3 @@ -6170,25 +6404,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 55 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -6200,10 +6434,10 @@ this.cost 4 1 node -2108098464 +472107750 1 return -1625676242 +1910362232 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -6213,25 +6447,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 54 this -1276962705 +342332409 1 this.node -1878724878 +722833184 1 this.path -1679471946 +1178657106 1 this.path.node -1638024177 +1000406267 1 this.path.path -1767583704 +1149379176 1 this.path.path.node -904611431 +682377108 1 this.path.path.path -779366336 +1392580488 1 this.path.path.cost 2 @@ -6243,13 +6477,13 @@ this.cost 4 1 o -2108098464 +472107750 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1625676242 +1910362232 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -6259,25 +6493,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 57 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6293,25 +6527,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 57 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6330,25 +6564,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 58 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6360,7 +6594,7 @@ this.cost 5 1 o -306158513 +430026927 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -6370,25 +6604,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 59 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6400,29 +6634,29 @@ this.cost 5 1 node -306158513 +430026927 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 60 node -306158513 +430026927 1 path -1625676242 +1910362232 1 path.node -2108098464 +472107750 1 path.path -1276962705 +342332409 1 path.path.node -1878724878 +722833184 1 path.path.path -1679471946 +1178657106 1 path.path.cost 4 @@ -6435,25 +6669,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 60 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6465,22 +6699,22 @@ this.cost 6 1 node -306158513 +430026927 1 path -1625676242 +1910362232 1 path.node -2108098464 +472107750 1 path.path -1276962705 +342332409 1 path.path.node -1878724878 +722833184 1 path.path.path -1679471946 +1178657106 1 path.path.cost 4 @@ -6493,25 +6727,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 59 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6523,10 +6757,10 @@ this.cost 5 1 node -306158513 +430026927 1 return -235309779 +1180089934 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -6536,25 +6770,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 58 this -1625676242 +1910362232 1 this.node -2108098464 +472107750 1 this.path -1276962705 +342332409 1 this.path.node -1878724878 +722833184 1 this.path.path -1679471946 +1178657106 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1767583704 +1149379176 1 this.path.path.cost 3 @@ -6566,13 +6800,13 @@ this.cost 5 1 o -306158513 +430026927 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -235309779 +1180089934 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -6582,25 +6816,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 61 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6616,25 +6850,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 61 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6653,25 +6887,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 62 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6683,7 +6917,7 @@ this.cost 6 1 o -1334061526 +1760040693 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -6693,25 +6927,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 63 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6723,29 +6957,29 @@ this.cost 6 1 node -1334061526 +1760040693 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 64 node -1334061526 +1760040693 1 path -235309779 +1180089934 1 path.node -306158513 +430026927 1 path.path -1625676242 +1910362232 1 path.path.node -2108098464 +472107750 1 path.path.path -1276962705 +342332409 1 path.path.cost 5 @@ -6758,25 +6992,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 64 this -1842792802 +1564173473 1 this.node -1334061526 +1760040693 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -6788,22 +7022,22 @@ this.cost 7 1 node -1334061526 +1760040693 1 path -235309779 +1180089934 1 path.node -306158513 +430026927 1 path.path -1625676242 +1910362232 1 path.path.node -2108098464 +472107750 1 path.path.path -1276962705 +342332409 1 path.path.cost 5 @@ -6816,25 +7050,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 63 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6846,10 +7080,10 @@ this.cost 6 1 node -1334061526 +1760040693 1 return -1842792802 +1564173473 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -6859,25 +7093,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 62 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -6889,13 +7123,13 @@ this.cost 6 1 o -1334061526 +1760040693 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1842792802 +1564173473 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -6905,25 +7139,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 65 this -1842792802 +1564173473 1 this.node -1334061526 +1760040693 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -6939,25 +7173,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 65 this -1842792802 +1564173473 1 this.node -1334061526 +1760040693 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -6976,25 +7210,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 66 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -7006,7 +7240,7 @@ this.cost 6 1 o -809466180 +1716237784 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -7016,25 +7250,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 67 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -7046,29 +7280,29 @@ this.cost 6 1 node -809466180 +1716237784 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 68 node -809466180 +1716237784 1 path -235309779 +1180089934 1 path.node -306158513 +430026927 1 path.path -1625676242 +1910362232 1 path.path.node -2108098464 +472107750 1 path.path.path -1276962705 +342332409 1 path.path.cost 5 @@ -7081,25 +7315,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 68 this -389183515 +1955572831 1 this.node -809466180 +1716237784 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -7111,22 +7345,22 @@ this.cost 7 1 node -809466180 +1716237784 1 path -235309779 +1180089934 1 path.node -306158513 +430026927 1 path.path -1625676242 +1910362232 1 path.path.node -2108098464 +472107750 1 path.path.path -1276962705 +342332409 1 path.path.cost 5 @@ -7139,25 +7373,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 67 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -7169,10 +7403,10 @@ this.cost 6 1 node -809466180 +1716237784 1 return -389183515 +1955572831 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -7182,25 +7416,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 66 this -235309779 +1180089934 1 this.node -306158513 +430026927 1 this.path -1625676242 +1910362232 1 this.path.node -2108098464 +472107750 1 this.path.path -1276962705 +342332409 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -1679471946 +1178657106 1 this.path.path.cost 4 @@ -7212,13 +7446,13 @@ this.cost 6 1 o -809466180 +1716237784 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -389183515 +1955572831 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -7228,25 +7462,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 69 this -389183515 +1955572831 1 this.node -809466180 +1716237784 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -7262,25 +7496,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 69 this -389183515 +1955572831 1 this.node -809466180 +1716237784 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -7299,25 +7533,25 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 70 this -1842792802 +1564173473 1 this.node -1334061526 +1760040693 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -7333,25 +7567,25 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 70 this -1842792802 +1564173473 1 this.node -1334061526 +1760040693 1 this.path -235309779 +1180089934 1 this.path.node -306158513 +430026927 1 this.path.path -1625676242 +1910362232 1 this.path.path.node -2108098464 +472107750 1 this.path.path.path -1276962705 +342332409 1 this.path.path.cost 5 @@ -7363,7 +7597,7 @@ this.cost 7 1 return -1919631490 +75353282 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -7373,14 +7607,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 71 node -1599623549 +1594742491 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 72 node -1599623549 +1594742491 1 path null @@ -7408,10 +7642,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 72 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7438,7 +7672,7 @@ this.cost 1 1 node -1599623549 +1594742491 1 path null @@ -7466,10 +7700,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 71 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7496,17 +7730,17 @@ this.cost 1 1 node -1599623549 +1594742491 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 73 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7537,10 +7771,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 73 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7574,10 +7808,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 74 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7608,10 +7842,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 74 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7638,7 +7872,7 @@ this.cost 1 1 return -1067689580 +1984410606 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -7648,10 +7882,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 75 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7682,10 +7916,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 75 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7712,7 +7946,7 @@ this.cost 1 1 return -285416728 +1568017132 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -7722,10 +7956,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 76 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7756,10 +7990,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 76 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7793,10 +8027,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 77 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7823,7 +8057,7 @@ this.cost 1 1 o -1667963745 +1892105187 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -7833,10 +8067,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 78 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7863,20 +8097,20 @@ this.cost 1 1 node -1667963745 +1892105187 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 79 node -1667963745 +1892105187 1 path -525211250 +93648030 1 path.node -1599623549 +1594742491 1 path.path null @@ -7898,16 +8132,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 79 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -7928,13 +8162,13 @@ this.cost 2 1 node -1667963745 +1892105187 1 path -525211250 +93648030 1 path.node -1599623549 +1594742491 1 path.path null @@ -7956,10 +8190,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 78 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -7986,10 +8220,10 @@ this.cost 1 1 node -1667963745 +1892105187 1 return -215134277 +674033133 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -7999,10 +8233,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 77 this -525211250 +93648030 1 this.node -1599623549 +1594742491 1 this.path null @@ -8029,13 +8263,13 @@ this.cost 1 1 o -1667963745 +1892105187 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -215134277 +674033133 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -8045,16 +8279,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 80 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -8079,16 +8313,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 80 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -8116,16 +8350,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 81 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -8146,7 +8380,7 @@ this.cost 2 1 o -1546815638 +498628406 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -8156,16 +8390,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 82 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -8186,26 +8420,26 @@ this.cost 2 1 node -1546815638 +498628406 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 83 node -1546815638 +498628406 1 path -215134277 +674033133 1 path.node -1667963745 +1892105187 1 path.path -525211250 +93648030 1 path.path.node -1599623549 +1594742491 1 path.path.path null @@ -8221,22 +8455,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 83 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8251,19 +8485,19 @@ this.cost 3 1 node -1546815638 +498628406 1 path -215134277 +674033133 1 path.node -1667963745 +1892105187 1 path.path -525211250 +93648030 1 path.path.node -1599623549 +1594742491 1 path.path.path null @@ -8279,16 +8513,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 82 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -8309,10 +8543,10 @@ this.cost 2 1 node -1546815638 +498628406 1 return -2040880931 +966429048 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -8322,16 +8556,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 81 this -215134277 +674033133 1 this.node -1667963745 +1892105187 1 this.path -525211250 +93648030 1 this.path.node -1599623549 +1594742491 1 this.path.path null @@ -8352,13 +8586,13 @@ this.cost 2 1 o -1546815638 +498628406 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2040880931 +966429048 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -8368,22 +8602,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 84 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8402,22 +8636,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 84 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8439,22 +8673,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 85 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8469,7 +8703,7 @@ this.cost 3 1 o -1476997433 +1354187475 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -8479,22 +8713,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 86 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8509,29 +8743,29 @@ this.cost 3 1 node -1476997433 +1354187475 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 87 node -1476997433 +1354187475 1 path -2040880931 +966429048 1 path.node -1546815638 +498628406 1 path.path -215134277 +674033133 1 path.path.node -1667963745 +1892105187 1 path.path.path -525211250 +93648030 1 path.path.cost 2 @@ -8544,25 +8778,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 87 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8574,22 +8808,22 @@ this.cost 4 1 node -1476997433 +1354187475 1 path -2040880931 +966429048 1 path.node -1546815638 +498628406 1 path.path -215134277 +674033133 1 path.path.node -1667963745 +1892105187 1 path.path.path -525211250 +93648030 1 path.path.cost 2 @@ -8602,22 +8836,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 86 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8632,10 +8866,10 @@ this.cost 3 1 node -1476997433 +1354187475 1 return -1132380758 +797201419 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -8645,22 +8879,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 85 this -2040880931 +966429048 1 this.node -1546815638 +498628406 1 this.path -215134277 +674033133 1 this.path.node -1667963745 +1892105187 1 this.path.path -525211250 +93648030 1 this.path.path.node -1599623549 +1594742491 1 this.path.path.path null @@ -8675,13 +8909,13 @@ this.cost 3 1 o -1476997433 +1354187475 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1132380758 +797201419 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -8691,25 +8925,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 88 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8725,25 +8959,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 88 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8762,25 +8996,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 89 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8792,7 +9026,7 @@ this.cost 4 1 o -1638024177 +1000406267 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -8802,25 +9036,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 90 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8832,29 +9066,29 @@ this.cost 4 1 node -1638024177 +1000406267 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 91 node -1638024177 +1000406267 1 path -1132380758 +797201419 1 path.node -1476997433 +1354187475 1 path.path -2040880931 +966429048 1 path.path.node -1546815638 +498628406 1 path.path.path -215134277 +674033133 1 path.path.cost 3 @@ -8867,25 +9101,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 91 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -8897,22 +9131,22 @@ this.cost 5 1 node -1638024177 +1000406267 1 path -1132380758 +797201419 1 path.node -1476997433 +1354187475 1 path.path -2040880931 +966429048 1 path.path.node -1546815638 +498628406 1 path.path.path -215134277 +674033133 1 path.path.cost 3 @@ -8925,25 +9159,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 90 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8955,10 +9189,10 @@ this.cost 4 1 node -1638024177 +1000406267 1 return -923319992 +413775500 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -8968,25 +9202,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 89 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -8998,13 +9232,13 @@ this.cost 4 1 o -1638024177 +1000406267 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -923319992 +413775500 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9014,25 +9248,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 92 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9048,25 +9282,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 92 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9085,25 +9319,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 93 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -9115,7 +9349,7 @@ this.cost 4 1 o -306158513 +430026927 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -9125,25 +9359,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 94 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -9155,29 +9389,29 @@ this.cost 4 1 node -306158513 +430026927 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 95 node -306158513 +430026927 1 path -1132380758 +797201419 1 path.node -1476997433 +1354187475 1 path.path -2040880931 +966429048 1 path.path.node -1546815638 +498628406 1 path.path.path -215134277 +674033133 1 path.path.cost 3 @@ -9190,25 +9424,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 95 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9220,22 +9454,22 @@ this.cost 5 1 node -306158513 +430026927 1 path -1132380758 +797201419 1 path.node -1476997433 +1354187475 1 path.path -2040880931 +966429048 1 path.path.node -1546815638 +498628406 1 path.path.path -215134277 +674033133 1 path.path.cost 3 @@ -9248,25 +9482,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 94 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -9278,10 +9512,10 @@ this.cost 4 1 node -306158513 +430026927 1 return -522272322 +772779514 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9291,25 +9525,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 93 this -1132380758 +797201419 1 this.node -1476997433 +1354187475 1 this.path -2040880931 +966429048 1 this.path.node -1546815638 +498628406 1 this.path.path -215134277 +674033133 1 this.path.path.node -1667963745 +1892105187 1 this.path.path.path -525211250 +93648030 1 this.path.path.cost 2 @@ -9321,13 +9555,13 @@ this.cost 4 1 o -306158513 +430026927 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -522272322 +772779514 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9337,25 +9571,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 96 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9371,25 +9605,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 96 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9408,25 +9642,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 97 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9438,7 +9672,7 @@ this.cost 5 1 o -1878724878 +722833184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -9448,25 +9682,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 98 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9478,29 +9712,29 @@ this.cost 5 1 node -1878724878 +722833184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 99 node -1878724878 +722833184 1 path -923319992 +413775500 1 path.node -1638024177 +1000406267 1 path.path -1132380758 +797201419 1 path.path.node -1476997433 +1354187475 1 path.path.path -2040880931 +966429048 1 path.path.cost 4 @@ -9513,25 +9747,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 99 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -9543,22 +9777,22 @@ this.cost 6 1 node -1878724878 +722833184 1 path -923319992 +413775500 1 path.node -1638024177 +1000406267 1 path.path -1132380758 +797201419 1 path.path.node -1476997433 +1354187475 1 path.path.path -2040880931 +966429048 1 path.path.cost 4 @@ -9571,25 +9805,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 98 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9601,10 +9835,10 @@ this.cost 5 1 node -1878724878 +722833184 1 return -1065250565 +124194742 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9614,25 +9848,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 97 this -923319992 +413775500 1 this.node -1638024177 +1000406267 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9644,13 +9878,13 @@ this.cost 5 1 o -1878724878 +722833184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1065250565 +124194742 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9660,25 +9894,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 100 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -9694,25 +9928,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 100 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -9731,25 +9965,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 101 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9761,7 +9995,7 @@ this.cost 5 1 o -1334061526 +1760040693 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -9771,25 +10005,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 102 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9801,29 +10035,29 @@ this.cost 5 1 node -1334061526 +1760040693 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 103 node -1334061526 +1760040693 1 path -522272322 +772779514 1 path.node -306158513 +430026927 1 path.path -1132380758 +797201419 1 path.path.node -1476997433 +1354187475 1 path.path.path -2040880931 +966429048 1 path.path.cost 4 @@ -9836,25 +10070,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 103 this -95080916 +2134407557 1 this.node -1334061526 +1760040693 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -9866,22 +10100,22 @@ this.cost 6 1 node -1334061526 +1760040693 1 path -522272322 +772779514 1 path.node -306158513 +430026927 1 path.path -1132380758 +797201419 1 path.path.node -1476997433 +1354187475 1 path.path.path -2040880931 +966429048 1 path.path.cost 4 @@ -9894,25 +10128,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 102 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9924,10 +10158,10 @@ this.cost 5 1 node -1334061526 +1760040693 1 return -95080916 +2134407557 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9937,25 +10171,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 101 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -9967,13 +10201,13 @@ this.cost 5 1 o -1334061526 +1760040693 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -95080916 +2134407557 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -9983,25 +10217,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 104 this -95080916 +2134407557 1 this.node -1334061526 +1760040693 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10017,25 +10251,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 104 this -95080916 +2134407557 1 this.node -1334061526 +1760040693 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10054,25 +10288,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 105 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -10084,7 +10318,7 @@ this.cost 5 1 o -809466180 +1716237784 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -10094,25 +10328,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 106 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -10124,29 +10358,29 @@ this.cost 5 1 node -809466180 +1716237784 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 107 node -809466180 +1716237784 1 path -522272322 +772779514 1 path.node -306158513 +430026927 1 path.path -1132380758 +797201419 1 path.path.node -1476997433 +1354187475 1 path.path.path -2040880931 +966429048 1 path.path.cost 4 @@ -10159,25 +10393,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 107 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10189,22 +10423,22 @@ this.cost 6 1 node -809466180 +1716237784 1 path -522272322 +772779514 1 path.node -306158513 +430026927 1 path.path -1132380758 +797201419 1 path.path.node -1476997433 +1354187475 1 path.path.path -2040880931 +966429048 1 path.path.cost 4 @@ -10217,25 +10451,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 106 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -10247,10 +10481,10 @@ this.cost 5 1 node -809466180 +1716237784 1 return -297121844 +1420971011 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -10260,25 +10494,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 105 this -522272322 +772779514 1 this.node -306158513 +430026927 1 this.path -1132380758 +797201419 1 this.path.node -1476997433 +1354187475 1 this.path.path -2040880931 +966429048 1 this.path.path.node -1546815638 +498628406 1 this.path.path.path -215134277 +674033133 1 this.path.path.cost 3 @@ -10290,13 +10524,13 @@ this.cost 5 1 o -809466180 +1716237784 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -297121844 +1420971011 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -10306,25 +10540,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 108 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10340,25 +10574,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 108 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10377,25 +10611,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 109 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10407,7 +10641,7 @@ this.cost 6 1 o -2108098464 +472107750 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -10417,25 +10651,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 110 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10447,29 +10681,29 @@ this.cost 6 1 node -2108098464 +472107750 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 111 node -2108098464 +472107750 1 path -1065250565 +124194742 1 path.node -1878724878 +722833184 1 path.path -923319992 +413775500 1 path.path.node -1638024177 +1000406267 1 path.path.path -1132380758 +797201419 1 path.path.cost 5 @@ -10482,25 +10716,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 111 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -10512,22 +10746,22 @@ this.cost 7 1 node -2108098464 +472107750 1 path -1065250565 +124194742 1 path.node -1878724878 +722833184 1 path.path -923319992 +413775500 1 path.path.node -1638024177 +1000406267 1 path.path.path -1132380758 +797201419 1 path.path.cost 5 @@ -10540,25 +10774,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 110 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10570,10 +10804,10 @@ this.cost 6 1 node -2108098464 +472107750 1 return -827352833 +94143590 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -10583,25 +10817,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 109 this -1065250565 +124194742 1 this.node -1878724878 +722833184 1 this.path -923319992 +413775500 1 this.path.node -1638024177 +1000406267 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10613,13 +10847,13 @@ this.cost 6 1 o -2108098464 +472107750 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -827352833 +94143590 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -10629,25 +10863,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 112 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -10663,25 +10897,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 112 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -10700,25 +10934,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 113 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10730,7 +10964,7 @@ this.cost 6 1 o -362449906 +1723352938 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -10740,25 +10974,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 114 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10770,29 +11004,29 @@ this.cost 6 1 node -362449906 +1723352938 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 115 node -362449906 +1723352938 1 path -297121844 +1420971011 1 path.node -809466180 +1716237784 1 path.path -522272322 +772779514 1 path.path.node -306158513 +430026927 1 path.path.path -1132380758 +797201419 1 path.path.cost 5 @@ -10805,25 +11039,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 115 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -10835,22 +11069,22 @@ this.cost 7 1 node -362449906 +1723352938 1 path -297121844 +1420971011 1 path.node -809466180 +1716237784 1 path.path -522272322 +772779514 1 path.path.node -306158513 +430026927 1 path.path.path -1132380758 +797201419 1 path.path.cost 5 @@ -10863,25 +11097,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 114 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10893,10 +11127,10 @@ this.cost 6 1 node -362449906 +1723352938 1 return -1431947250 +1280881877 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -10906,25 +11140,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 113 this -297121844 +1420971011 1 this.node -809466180 +1716237784 1 this.path -522272322 +772779514 1 this.path.node -306158513 +430026927 1 this.path.path -1132380758 +797201419 1 this.path.path.node -1476997433 +1354187475 1 this.path.path.path -2040880931 +966429048 1 this.path.path.cost 4 @@ -10936,13 +11170,13 @@ this.cost 6 1 o -362449906 +1723352938 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1431947250 +1280881877 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -10952,25 +11186,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 116 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -10986,25 +11220,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 116 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11023,25 +11257,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 117 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11053,7 +11287,7 @@ this.cost 7 1 o -904611431 +682377108 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -11063,25 +11297,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 118 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11093,29 +11327,29 @@ this.cost 7 1 node -904611431 +682377108 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 119 node -904611431 +682377108 1 path -1431947250 +1280881877 1 path.node -362449906 +1723352938 1 path.path -297121844 +1420971011 1 path.path.node -809466180 +1716237784 1 path.path.path -522272322 +772779514 1 path.path.cost 6 @@ -11128,25 +11362,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 119 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11158,22 +11392,22 @@ this.cost 8 1 node -904611431 +682377108 1 path -1431947250 +1280881877 1 path.node -362449906 +1723352938 1 path.path -297121844 +1420971011 1 path.path.node -809466180 +1716237784 1 path.path.path -522272322 +772779514 1 path.path.cost 6 @@ -11186,25 +11420,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 118 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11216,10 +11450,10 @@ this.cost 7 1 node -904611431 +682377108 1 return -2035682468 +1405629211 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -11229,25 +11463,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 117 this -1431947250 +1280881877 1 this.node -362449906 +1723352938 1 this.path -297121844 +1420971011 1 this.path.node -809466180 +1716237784 1 this.path.path -522272322 +772779514 1 this.path.path.node -306158513 +430026927 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11259,13 +11493,13 @@ this.cost 7 1 o -904611431 +682377108 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2035682468 +1405629211 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -11275,25 +11509,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 120 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11309,25 +11543,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 120 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11346,25 +11580,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 121 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11376,7 +11610,7 @@ this.cost 7 1 o -306158513 +430026927 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -11386,25 +11620,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 122 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11416,29 +11650,29 @@ this.cost 7 1 node -306158513 +430026927 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 123 node -306158513 +430026927 1 path -827352833 +94143590 1 path.node -2108098464 +472107750 1 path.path -1065250565 +124194742 1 path.path.node -1878724878 +722833184 1 path.path.path -923319992 +413775500 1 path.path.cost 6 @@ -11451,25 +11685,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 123 this -5775672 +2090032277 1 this.node -306158513 +430026927 1 this.path -827352833 +94143590 1 this.path.node -2108098464 +472107750 1 this.path.path -1065250565 +124194742 1 this.path.path.node -1878724878 +722833184 1 this.path.path.path -923319992 +413775500 1 this.path.path.cost 6 @@ -11481,22 +11715,22 @@ this.cost 8 1 node -306158513 +430026927 1 path -827352833 +94143590 1 path.node -2108098464 +472107750 1 path.path -1065250565 +124194742 1 path.path.node -1878724878 +722833184 1 path.path.path -923319992 +413775500 1 path.path.cost 6 @@ -11509,25 +11743,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 122 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11539,10 +11773,10 @@ this.cost 7 1 node -306158513 +430026927 1 return -5775672 +2090032277 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -11552,25 +11786,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 121 this -827352833 +94143590 1 this.node -2108098464 +472107750 1 this.path -1065250565 +124194742 1 this.path.node -1878724878 +722833184 1 this.path.path -923319992 +413775500 1 this.path.path.node -1638024177 +1000406267 1 this.path.path.path -1132380758 +797201419 1 this.path.path.cost 5 @@ -11582,13 +11816,13 @@ this.cost 7 1 o -306158513 +430026927 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -5775672 +2090032277 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -11598,25 +11832,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 124 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11628,7 +11862,7 @@ this.cost 8 1 o -1638024177 +1000406267 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -11638,25 +11872,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 125 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11668,29 +11902,29 @@ this.cost 8 1 node -1638024177 +1000406267 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 126 node -1638024177 +1000406267 1 path -2035682468 +1405629211 1 path.node -904611431 +682377108 1 path.path -1431947250 +1280881877 1 path.path.node -362449906 +1723352938 1 path.path.path -297121844 +1420971011 1 path.path.cost 7 @@ -11703,25 +11937,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 126 this -434955189 +782465560 1 this.node -1638024177 +1000406267 1 this.path -2035682468 +1405629211 1 this.path.node -904611431 +682377108 1 this.path.path -1431947250 +1280881877 1 this.path.path.node -362449906 +1723352938 1 this.path.path.path -297121844 +1420971011 1 this.path.path.cost 7 @@ -11733,22 +11967,22 @@ this.cost 9 1 node -1638024177 +1000406267 1 path -2035682468 +1405629211 1 path.node -904611431 +682377108 1 path.path -1431947250 +1280881877 1 path.path.node -362449906 +1723352938 1 path.path.path -297121844 +1420971011 1 path.path.cost 7 @@ -11761,25 +11995,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 125 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11791,10 +12025,10 @@ this.cost 8 1 node -1638024177 +1000406267 1 return -434955189 +782465560 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -11804,25 +12038,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 124 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11834,13 +12068,13 @@ this.cost 8 1 o -1638024177 +1000406267 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -434955189 +782465560 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -11850,25 +12084,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 127 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11880,7 +12114,7 @@ this.cost 8 1 o -359940254 +1300820614 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -11890,25 +12124,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 128 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -11920,29 +12154,29 @@ this.cost 8 1 node -359940254 +1300820614 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 129 node -359940254 +1300820614 1 path -2035682468 +1405629211 1 path.node -904611431 +682377108 1 path.path -1431947250 +1280881877 1 path.path.node -362449906 +1723352938 1 path.path.path -297121844 +1420971011 1 path.path.cost 7 @@ -11955,25 +12189,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 129 this -257527135 +1856296339 1 this.node -359940254 +1300820614 1 this.path -2035682468 +1405629211 1 this.path.node -904611431 +682377108 1 this.path.path -1431947250 +1280881877 1 this.path.path.node -362449906 +1723352938 1 this.path.path.path -297121844 +1420971011 1 this.path.path.cost 7 @@ -11985,22 +12219,22 @@ this.cost 9 1 node -359940254 +1300820614 1 path -2035682468 +1405629211 1 path.node -904611431 +682377108 1 path.path -1431947250 +1280881877 1 path.path.node -362449906 +1723352938 1 path.path.path -297121844 +1420971011 1 path.path.cost 7 @@ -12013,25 +12247,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 128 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -12043,10 +12277,10 @@ this.cost 8 1 node -359940254 +1300820614 1 return -257527135 +1856296339 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -12056,25 +12290,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 127 this -2035682468 +1405629211 1 this.node -904611431 +682377108 1 this.path -1431947250 +1280881877 1 this.path.node -362449906 +1723352938 1 this.path.path -297121844 +1420971011 1 this.path.path.node -809466180 +1716237784 1 this.path.path.path -522272322 +772779514 1 this.path.path.cost 6 @@ -12086,13 +12320,13 @@ this.cost 8 1 o -359940254 +1300820614 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -257527135 +1856296339 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -12102,25 +12336,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 130 this -257527135 +1856296339 1 this.node -359940254 +1300820614 1 this.path -2035682468 +1405629211 1 this.path.node -904611431 +682377108 1 this.path.path -1431947250 +1280881877 1 this.path.path.node -362449906 +1723352938 1 this.path.path.path -297121844 +1420971011 1 this.path.path.cost 7 @@ -12136,25 +12370,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 130 this -257527135 +1856296339 1 this.node -359940254 +1300820614 1 this.path -2035682468 +1405629211 1 this.path.node -904611431 +682377108 1 this.path.path -1431947250 +1280881877 1 this.path.path.node -362449906 +1723352938 1 this.path.path.path -297121844 +1420971011 1 this.path.path.cost 7 @@ -12173,25 +12407,25 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 131 this -257527135 +1856296339 1 this.node -359940254 +1300820614 1 this.path -2035682468 +1405629211 1 this.path.node -904611431 +682377108 1 this.path.path -1431947250 +1280881877 1 this.path.path.node -362449906 +1723352938 1 this.path.path.path -297121844 +1420971011 1 this.path.path.cost 7 @@ -12207,25 +12441,25 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 131 this -257527135 +1856296339 1 this.node -359940254 +1300820614 1 this.path -2035682468 +1405629211 1 this.path.node -904611431 +682377108 1 this.path.path -1431947250 +1280881877 1 this.path.path.node -362449906 +1723352938 1 this.path.path.path -297121844 +1420971011 1 this.path.path.cost 7 @@ -12237,7 +12471,7 @@ this.cost 9 1 return -1079009240 +130145957 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -12247,14 +12481,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 132 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 133 node -1556381412 +1224746653 1 path null @@ -12282,10 +12516,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 133 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12312,7 +12546,7 @@ this.cost 2 1 node -1556381412 +1224746653 1 path null @@ -12340,10 +12574,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 132 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12370,17 +12604,17 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 134 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12411,10 +12645,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 134 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12448,10 +12682,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 135 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12482,10 +12716,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 135 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12512,7 +12746,7 @@ this.cost 2 1 return -948367292 +1656495742 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -12522,10 +12756,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 136 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12556,10 +12790,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 136 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12586,7 +12820,7 @@ this.cost 2 1 return -585448610 +745936086 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -12596,10 +12830,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 137 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12630,10 +12864,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 137 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12667,10 +12901,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 138 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12697,7 +12931,7 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -12707,10 +12941,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 139 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12737,20 +12971,20 @@ this.cost 2 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 140 node -2012201363 +2085749863 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -12772,16 +13006,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 140 this -495834985 +1822377460 1 this.node -2012201363 +2085749863 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -12802,13 +13036,13 @@ this.cost 22 1 node -2012201363 +2085749863 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -12830,10 +13064,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 139 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12860,10 +13094,10 @@ this.cost 2 1 node -2012201363 +2085749863 1 return -495834985 +1822377460 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -12873,10 +13107,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 138 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -12903,13 +13137,13 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -495834985 +1822377460 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -12919,16 +13153,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 141 this -495834985 +1822377460 1 this.node -2012201363 +2085749863 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -12953,16 +13187,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 141 this -495834985 +1822377460 1 this.node -2012201363 +2085749863 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -12990,10 +13224,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 142 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13020,7 +13254,7 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -13030,10 +13264,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 143 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13060,20 +13294,20 @@ this.cost 2 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 144 node -1262042535 +1286196706 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -13095,16 +13329,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 144 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13125,13 +13359,13 @@ this.cost 14 1 node -1262042535 +1286196706 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -13153,10 +13387,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 143 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13183,10 +13417,10 @@ this.cost 2 1 node -1262042535 +1286196706 1 return -452904326 +537647040 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -13196,10 +13430,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 142 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13226,13 +13460,13 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -452904326 +537647040 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -13242,16 +13476,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 145 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13276,16 +13510,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 145 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13313,10 +13547,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 146 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13343,7 +13577,7 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -13353,10 +13587,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 147 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13383,20 +13617,20 @@ this.cost 2 1 node -1280962114 +1770098351 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 148 node -1280962114 +1770098351 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -13418,16 +13652,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 148 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13448,13 +13682,13 @@ this.cost 11 1 node -1280962114 +1770098351 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -13476,10 +13710,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 147 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13506,10 +13740,10 @@ this.cost 2 1 node -1280962114 +1770098351 1 return -606688823 +952023366 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -13519,10 +13753,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 146 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13549,13 +13783,13 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -606688823 +952023366 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -13565,16 +13799,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 149 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13599,16 +13833,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 149 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13636,10 +13870,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 150 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13666,7 +13900,7 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -13676,10 +13910,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 151 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13706,20 +13940,20 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 152 node -1556381412 +1224746653 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -13741,16 +13975,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 152 this -366692205 +1903542212 1 this.node -1556381412 +1224746653 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13771,13 +14005,13 @@ this.cost 4 1 node -1556381412 +1224746653 1 path -1751571024 +686240476 1 path.node -1556381412 +1224746653 1 path.path null @@ -13799,10 +14033,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 151 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13829,10 +14063,10 @@ this.cost 2 1 node -1556381412 +1224746653 1 return -366692205 +1903542212 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -13842,10 +14076,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 150 this -1751571024 +686240476 1 this.node -1556381412 +1224746653 1 this.path null @@ -13872,13 +14106,13 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -366692205 +1903542212 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -13888,16 +14122,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 153 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13918,7 +14152,7 @@ this.cost 11 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -13928,16 +14162,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 154 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -13958,26 +14192,26 @@ this.cost 11 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 155 node -1262042535 +1286196706 1 path -606688823 +952023366 1 path.node -1280962114 +1770098351 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -13993,22 +14227,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 155 this -1865306192 +1770067725 1 this.node -1262042535 +1286196706 1 this.path -606688823 +952023366 1 this.path.node -1280962114 +1770098351 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -14023,19 +14257,19 @@ this.cost 23 1 node -1262042535 +1286196706 1 path -606688823 +952023366 1 path.node -1280962114 +1770098351 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14051,16 +14285,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 154 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14081,10 +14315,10 @@ this.cost 11 1 node -1262042535 +1286196706 1 return -1865306192 +1770067725 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14094,16 +14328,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 153 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14124,13 +14358,13 @@ this.cost 11 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1865306192 +1770067725 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14140,16 +14374,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 156 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14170,7 +14404,7 @@ this.cost 11 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -14180,16 +14414,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 157 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14210,26 +14444,26 @@ this.cost 11 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 158 node -1234890038 +437292184 1 path -606688823 +952023366 1 path.node -1280962114 +1770098351 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14245,22 +14479,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 158 this -1514904058 +880696454 1 this.node -1234890038 +437292184 1 this.path -606688823 +952023366 1 this.path.node -1280962114 +1770098351 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -14275,19 +14509,19 @@ this.cost 16 1 node -1234890038 +437292184 1 path -606688823 +952023366 1 path.node -1280962114 +1770098351 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14303,16 +14537,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 157 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14333,10 +14567,10 @@ this.cost 11 1 node -1234890038 +437292184 1 return -1514904058 +880696454 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14346,16 +14580,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 156 this -606688823 +952023366 1 this.node -1280962114 +1770098351 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14376,13 +14610,13 @@ this.cost 11 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1514904058 +880696454 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14392,22 +14626,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 159 this -1514904058 +880696454 1 this.node -1234890038 +437292184 1 this.path -606688823 +952023366 1 this.path.node -1280962114 +1770098351 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -14426,22 +14660,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 159 this -1514904058 +880696454 1 this.node -1234890038 +437292184 1 this.path -606688823 +952023366 1 this.path.node -1280962114 +1770098351 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -14463,16 +14697,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 160 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14493,7 +14727,7 @@ this.cost 14 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -14503,16 +14737,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 161 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14533,26 +14767,26 @@ this.cost 14 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 162 node -1556381412 +1224746653 1 path -452904326 +537647040 1 path.node -1262042535 +1286196706 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14568,22 +14802,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 162 this -426383974 +1408007254 1 this.node -1556381412 +1224746653 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -14598,19 +14832,19 @@ this.cost 16 1 node -1556381412 +1224746653 1 path -452904326 +537647040 1 path.node -1262042535 +1286196706 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14626,16 +14860,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 161 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14656,10 +14890,10 @@ this.cost 14 1 node -1556381412 +1224746653 1 return -426383974 +1408007254 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14669,16 +14903,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 160 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14699,13 +14933,13 @@ this.cost 14 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -426383974 +1408007254 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14715,16 +14949,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 163 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14745,7 +14979,7 @@ this.cost 14 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -14755,16 +14989,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 164 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14785,26 +15019,26 @@ this.cost 14 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 165 node -2012201363 +2085749863 1 path -452904326 +537647040 1 path.node -1262042535 +1286196706 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14820,22 +15054,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 165 this -82520979 +1255611685 1 this.node -2012201363 +2085749863 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -14850,19 +15084,19 @@ this.cost 34 1 node -2012201363 +2085749863 1 path -452904326 +537647040 1 path.node -1262042535 +1286196706 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -14878,16 +15112,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 164 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14908,10 +15142,10 @@ this.cost 14 1 node -2012201363 +2085749863 1 return -82520979 +1255611685 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14921,16 +15155,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 163 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14951,13 +15185,13 @@ this.cost 14 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -82520979 +1255611685 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -14967,16 +15201,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 166 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -14997,7 +15231,7 @@ this.cost 14 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -15007,16 +15241,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 167 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -15037,26 +15271,26 @@ this.cost 14 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 168 node -1803141738 +1891274373 1 path -452904326 +537647040 1 path.node -1262042535 +1286196706 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -15072,22 +15306,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 168 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15102,19 +15336,19 @@ this.cost 15 1 node -1803141738 +1891274373 1 path -452904326 +537647040 1 path.node -1262042535 +1286196706 1 path.path -1751571024 +686240476 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -15130,16 +15364,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 167 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -15160,10 +15394,10 @@ this.cost 14 1 node -1803141738 +1891274373 1 return -113964102 +1742927764 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -15173,16 +15407,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 166 this -452904326 +537647040 1 this.node -1262042535 +1286196706 1 this.path -1751571024 +686240476 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -15203,13 +15437,13 @@ this.cost 14 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -113964102 +1742927764 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -15219,22 +15453,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 169 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15253,22 +15487,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 169 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15290,22 +15524,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 170 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15320,7 +15554,7 @@ this.cost 15 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -15330,22 +15564,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 171 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15360,29 +15594,29 @@ this.cost 15 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 172 node -1234890038 +437292184 1 path -113964102 +1742927764 1 path.node -1803141738 +1891274373 1 path.path -452904326 +537647040 1 path.path.node -1262042535 +1286196706 1 path.path.path -1751571024 +686240476 1 path.path.cost 14 @@ -15395,25 +15629,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 172 this -1986732837 +1709984468 1 this.node -1234890038 +437292184 1 this.path -113964102 +1742927764 1 this.path.node -1803141738 +1891274373 1 this.path.path -452904326 +537647040 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1751571024 +686240476 1 this.path.path.cost 14 @@ -15425,22 +15659,22 @@ this.cost 20 1 node -1234890038 +437292184 1 path -113964102 +1742927764 1 path.node -1803141738 +1891274373 1 path.path -452904326 +537647040 1 path.path.node -1262042535 +1286196706 1 path.path.path -1751571024 +686240476 1 path.path.cost 14 @@ -15453,22 +15687,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 171 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15483,10 +15717,10 @@ this.cost 15 1 node -1234890038 +437292184 1 return -1986732837 +1709984468 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -15496,22 +15730,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 170 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15526,13 +15760,13 @@ this.cost 15 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1986732837 +1709984468 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -15542,22 +15776,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 173 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15572,7 +15806,7 @@ this.cost 15 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -15582,22 +15816,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 174 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15612,29 +15846,29 @@ this.cost 15 1 node -1943047903 +2082789522 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 175 node -1943047903 +2082789522 1 path -113964102 +1742927764 1 path.node -1803141738 +1891274373 1 path.path -452904326 +537647040 1 path.path.node -1262042535 +1286196706 1 path.path.path -1751571024 +686240476 1 path.path.cost 14 @@ -15647,25 +15881,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 175 this -22285792 +1460050154 1 this.node -1943047903 +2082789522 1 this.path -113964102 +1742927764 1 this.path.node -1803141738 +1891274373 1 this.path.path -452904326 +537647040 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1751571024 +686240476 1 this.path.path.cost 14 @@ -15677,22 +15911,22 @@ this.cost 18 1 node -1943047903 +2082789522 1 path -113964102 +1742927764 1 path.node -1803141738 +1891274373 1 path.path -452904326 +537647040 1 path.path.node -1262042535 +1286196706 1 path.path.path -1751571024 +686240476 1 path.path.cost 14 @@ -15705,22 +15939,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 174 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15735,10 +15969,10 @@ this.cost 15 1 node -1943047903 +2082789522 1 return -22285792 +1460050154 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -15748,22 +15982,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 173 this -113964102 +1742927764 1 this.node -1803141738 +1891274373 1 this.path -452904326 +537647040 1 this.path.node -1262042535 +1286196706 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15778,13 +16012,13 @@ this.cost 15 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -22285792 +1460050154 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -15794,25 +16028,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 176 this -22285792 +1460050154 1 this.node -1943047903 +2082789522 1 this.path -113964102 +1742927764 1 this.path.node -1803141738 +1891274373 1 this.path.path -452904326 +537647040 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1751571024 +686240476 1 this.path.path.cost 14 @@ -15828,25 +16062,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 176 this -22285792 +1460050154 1 this.node -1943047903 +2082789522 1 this.path -113964102 +1742927764 1 this.path.node -1803141738 +1891274373 1 this.path.path -452904326 +537647040 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1751571024 +686240476 1 this.path.path.cost 14 @@ -15865,22 +16099,22 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 177 this -1514904058 +880696454 1 this.node -1234890038 +437292184 1 this.path -606688823 +952023366 1 this.path.node -1280962114 +1770098351 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15899,22 +16133,22 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 177 this -1514904058 +880696454 1 this.node -1234890038 +437292184 1 this.path -606688823 +952023366 1 this.path.node -1280962114 +1770098351 1 this.path.path -1751571024 +686240476 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -15929,7 +16163,7 @@ this.cost 16 1 return -895151566 +1914787656 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -15939,14 +16173,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 178 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 179 node -1556381412 +1224746653 1 path null @@ -15974,10 +16208,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 179 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16004,7 +16238,7 @@ this.cost 2 1 node -1556381412 +1224746653 1 path null @@ -16032,10 +16266,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 178 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16062,17 +16296,17 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 180 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16103,10 +16337,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 180 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16140,14 +16374,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 181 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 182 node -2012201363 +2085749863 1 path null @@ -16175,10 +16409,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 182 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16205,7 +16439,7 @@ this.cost 20 1 node -2012201363 +2085749863 1 path null @@ -16233,10 +16467,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 181 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16263,17 +16497,17 @@ this.cost 20 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 183 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16304,10 +16538,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 183 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16341,14 +16575,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 184 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 185 node -946650629 +1604068167 1 path null @@ -16376,10 +16610,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 185 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -16406,7 +16640,7 @@ this.cost 4 1 node -946650629 +1604068167 1 path null @@ -16434,10 +16668,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 184 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -16464,17 +16698,17 @@ this.cost 4 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 186 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -16505,10 +16739,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 186 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -16542,10 +16776,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 187 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16576,10 +16810,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 187 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16606,7 +16840,7 @@ this.cost 2 1 return -1896221758 +1541985617 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -16616,10 +16850,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 188 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16650,10 +16884,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 188 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16680,7 +16914,7 @@ this.cost 20 1 return -1141765226 +319612923 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -16690,10 +16924,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 189 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -16724,10 +16958,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 189 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -16754,7 +16988,7 @@ this.cost 4 1 return -1881767437 +877795714 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -16764,10 +16998,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 190 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16798,10 +17032,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 190 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16828,7 +17062,7 @@ this.cost 2 1 return -873644290 +2047393955 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -16838,10 +17072,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 191 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16872,10 +17106,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 191 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -16909,10 +17143,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 192 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16943,10 +17177,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 192 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -16973,7 +17207,7 @@ this.cost 20 1 return -993887491 +1419725804 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -16983,10 +17217,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 193 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -17017,10 +17251,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 193 this -95630655 +73181693 1 this.node -2012201363 +2085749863 1 this.path null @@ -17054,10 +17288,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 194 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -17088,10 +17322,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 194 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -17118,7 +17352,7 @@ this.cost 4 1 return -1139254871 +640786011 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -17128,10 +17362,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 195 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -17162,10 +17396,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 195 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -17199,10 +17433,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 196 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17229,7 +17463,7 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -17239,10 +17473,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 197 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17269,20 +17503,20 @@ this.cost 2 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 198 node -2012201363 +2085749863 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -17304,16 +17538,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 198 this -492420245 +59997172 1 this.node -2012201363 +2085749863 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -17334,13 +17568,13 @@ this.cost 22 1 node -2012201363 +2085749863 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -17362,10 +17596,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 197 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17392,10 +17626,10 @@ this.cost 2 1 node -2012201363 +2085749863 1 return -492420245 +59997172 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -17405,10 +17639,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 196 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17435,13 +17669,13 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -492420245 +59997172 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -17451,10 +17685,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 199 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17481,7 +17715,7 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -17491,10 +17725,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 200 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17521,20 +17755,20 @@ this.cost 2 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 201 node -1262042535 +1286196706 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -17556,16 +17790,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 201 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -17586,13 +17820,13 @@ this.cost 14 1 node -1262042535 +1286196706 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -17614,10 +17848,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 200 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17644,10 +17878,10 @@ this.cost 2 1 node -1262042535 +1286196706 1 return -1852565824 +1202639361 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -17657,10 +17891,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 199 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17687,13 +17921,13 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1852565824 +1202639361 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -17703,16 +17937,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 202 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -17737,16 +17971,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 202 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -17774,10 +18008,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 203 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17804,7 +18038,7 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -17814,10 +18048,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 204 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17844,20 +18078,20 @@ this.cost 2 1 node -1280962114 +1770098351 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 205 node -1280962114 +1770098351 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -17879,16 +18113,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 205 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -17909,13 +18143,13 @@ this.cost 11 1 node -1280962114 +1770098351 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -17937,10 +18171,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 204 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -17967,10 +18201,10 @@ this.cost 2 1 node -1280962114 +1770098351 1 return -1855889762 +643654763 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -17980,10 +18214,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 203 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -18010,13 +18244,13 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1855889762 +643654763 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18026,16 +18260,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 206 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -18060,16 +18294,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 206 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -18097,10 +18331,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 207 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -18127,7 +18361,7 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -18137,10 +18371,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 208 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -18167,20 +18401,20 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 209 node -1556381412 +1224746653 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -18202,16 +18436,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 209 this -1886740906 +1030471802 1 this.node -1556381412 +1224746653 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -18232,13 +18466,13 @@ this.cost 4 1 node -1556381412 +1224746653 1 path -1689422527 +1793684097 1 path.node -1556381412 +1224746653 1 path.path null @@ -18260,10 +18494,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 208 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -18290,10 +18524,10 @@ this.cost 2 1 node -1556381412 +1224746653 1 return -1886740906 +1030471802 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18303,10 +18537,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 207 this -1689422527 +1793684097 1 this.node -1556381412 +1224746653 1 this.path null @@ -18333,13 +18567,13 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1886740906 +1030471802 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18349,10 +18583,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 210 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -18379,7 +18613,7 @@ this.cost 4 1 o -710875540 +1831446806 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -18389,10 +18623,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 211 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -18419,20 +18653,20 @@ this.cost 4 1 node -710875540 +1831446806 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 212 node -710875540 +1831446806 1 path -1798264627 +63978331 1 path.node -946650629 +1604068167 1 path.path null @@ -18454,16 +18688,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 212 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18484,13 +18718,13 @@ this.cost 8 1 node -710875540 +1831446806 1 path -1798264627 +63978331 1 path.node -946650629 +1604068167 1 path.path null @@ -18512,10 +18746,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 211 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -18542,10 +18776,10 @@ this.cost 4 1 node -710875540 +1831446806 1 return -1233672519 +1243355991 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18555,10 +18789,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 210 this -1798264627 +63978331 1 this.node -946650629 +1604068167 1 this.path null @@ -18585,13 +18819,13 @@ this.cost 4 1 o -710875540 +1831446806 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1233672519 +1243355991 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18601,16 +18835,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 213 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18635,16 +18869,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 213 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18672,16 +18906,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 214 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18702,7 +18936,7 @@ this.cost 8 1 o -946650629 +1604068167 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -18712,16 +18946,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 215 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18742,26 +18976,26 @@ this.cost 8 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 216 node -946650629 +1604068167 1 path -1233672519 +1243355991 1 path.node -710875540 +1831446806 1 path.path -1798264627 +63978331 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -18777,22 +19011,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 216 this -379415048 +2068255427 1 this.node -946650629 +1604068167 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -18807,19 +19041,19 @@ this.cost 12 1 node -946650629 +1604068167 1 path -1233672519 +1243355991 1 path.node -710875540 +1831446806 1 path.path -1798264627 +63978331 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -18835,16 +19069,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 215 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18865,10 +19099,10 @@ this.cost 8 1 node -946650629 +1604068167 1 return -379415048 +2068255427 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18878,16 +19112,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 214 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18908,13 +19142,13 @@ this.cost 8 1 o -946650629 +1604068167 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -379415048 +2068255427 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -18924,16 +19158,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 217 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18954,7 +19188,7 @@ this.cost 8 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -18964,16 +19198,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 218 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -18994,26 +19228,26 @@ this.cost 8 1 node -949763793 +1998651247 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 219 node -949763793 +1998651247 1 path -1233672519 +1243355991 1 path.node -710875540 +1831446806 1 path.path -1798264627 +63978331 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -19029,22 +19263,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 219 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -19059,19 +19293,19 @@ this.cost 11 1 node -949763793 +1998651247 1 path -1233672519 +1243355991 1 path.node -710875540 +1831446806 1 path.path -1798264627 +63978331 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -19087,16 +19321,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 218 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -19117,10 +19351,10 @@ this.cost 8 1 node -949763793 +1998651247 1 return -434120800 +392301955 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -19130,16 +19364,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 217 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -19160,13 +19394,13 @@ this.cost 8 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -434120800 +392301955 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -19176,22 +19410,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 220 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -19210,22 +19444,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 220 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -19247,16 +19481,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 221 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -19277,7 +19511,7 @@ this.cost 8 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -19287,16 +19521,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 222 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -19317,26 +19551,26 @@ this.cost 8 1 node -1266336741 +644161395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 223 node -1266336741 +644161395 1 path -1233672519 +1243355991 1 path.node -710875540 +1831446806 1 path.path -1798264627 +63978331 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -19352,22 +19586,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 223 this -1758664217 +955501238 1 this.node -1266336741 +644161395 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -19382,19 +19616,19 @@ this.cost 19 1 node -1266336741 +644161395 1 path -1233672519 +1243355991 1 path.node -710875540 +1831446806 1 path.path -1798264627 +63978331 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -19410,16 +19644,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 222 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -19440,10 +19674,10 @@ this.cost 8 1 node -1266336741 +644161395 1 return -1758664217 +955501238 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -19453,16 +19687,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 221 this -1233672519 +1243355991 1 this.node -710875540 +1831446806 1 this.path -1798264627 +63978331 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -19483,13 +19717,13 @@ this.cost 8 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1758664217 +955501238 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -19499,22 +19733,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 224 this -1758664217 +955501238 1 this.node -1266336741 +644161395 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -19533,22 +19767,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 224 this -1758664217 +955501238 1 this.node -1266336741 +644161395 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -19570,16 +19804,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 225 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -19600,7 +19834,7 @@ this.cost 11 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -19610,16 +19844,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 226 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -19640,26 +19874,26 @@ this.cost 11 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 227 node -1262042535 +1286196706 1 path -1855889762 +643654763 1 path.node -1280962114 +1770098351 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -19675,22 +19909,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 227 this -2052061458 +226594800 1 this.node -1262042535 +1286196706 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -19705,19 +19939,19 @@ this.cost 23 1 node -1262042535 +1286196706 1 path -1855889762 +643654763 1 path.node -1280962114 +1770098351 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -19733,16 +19967,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 226 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -19763,10 +19997,10 @@ this.cost 11 1 node -1262042535 +1286196706 1 return -2052061458 +226594800 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -19776,16 +20010,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 225 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -19806,13 +20040,13 @@ this.cost 11 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2052061458 +226594800 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -19822,16 +20056,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 228 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -19852,7 +20086,7 @@ this.cost 11 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -19862,16 +20096,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 229 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -19892,26 +20126,26 @@ this.cost 11 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 230 node -1234890038 +437292184 1 path -1855889762 +643654763 1 path.node -1280962114 +1770098351 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -19927,22 +20161,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 230 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -19957,19 +20191,19 @@ this.cost 16 1 node -1234890038 +437292184 1 path -1855889762 +643654763 1 path.node -1280962114 +1770098351 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -19985,16 +20219,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 229 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20015,10 +20249,10 @@ this.cost 11 1 node -1234890038 +437292184 1 return -409553786 +890297469 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20028,16 +20262,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 228 this -1855889762 +643654763 1 this.node -1280962114 +1770098351 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20058,13 +20292,13 @@ this.cost 11 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -409553786 +890297469 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20074,22 +20308,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 231 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -20108,22 +20342,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 231 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -20145,22 +20379,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 232 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -20175,7 +20409,7 @@ this.cost 11 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -20185,22 +20419,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 233 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -20215,29 +20449,29 @@ this.cost 11 1 node -1266336741 +644161395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 234 node -1266336741 +644161395 1 path -434120800 +392301955 1 path.node -949763793 +1998651247 1 path.path -1233672519 +1243355991 1 path.path.node -710875540 +1831446806 1 path.path.path -1798264627 +63978331 1 path.path.cost 8 @@ -20250,25 +20484,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 234 this -685392667 +1710992834 1 this.node -1266336741 +644161395 1 this.path -434120800 +392301955 1 this.path.node -949763793 +1998651247 1 this.path.path -1233672519 +1243355991 1 this.path.path.node -710875540 +1831446806 1 this.path.path.path -1798264627 +63978331 1 this.path.path.cost 8 @@ -20280,22 +20514,22 @@ this.cost 22 1 node -1266336741 +644161395 1 path -434120800 +392301955 1 path.node -949763793 +1998651247 1 path.path -1233672519 +1243355991 1 path.path.node -710875540 +1831446806 1 path.path.path -1798264627 +63978331 1 path.path.cost 8 @@ -20308,22 +20542,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 233 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -20338,10 +20572,10 @@ this.cost 11 1 node -1266336741 +644161395 1 return -685392667 +1710992834 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20351,22 +20585,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 232 this -434120800 +392301955 1 this.node -949763793 +1998651247 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -20381,13 +20615,13 @@ this.cost 11 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -685392667 +1710992834 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20397,16 +20631,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 235 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20427,7 +20661,7 @@ this.cost 14 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -20437,16 +20671,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 236 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20467,26 +20701,26 @@ this.cost 14 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 237 node -1556381412 +1224746653 1 path -1852565824 +1202639361 1 path.node -1262042535 +1286196706 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -20502,22 +20736,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 237 this -292271761 +1850527708 1 this.node -1556381412 +1224746653 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -20532,19 +20766,19 @@ this.cost 16 1 node -1556381412 +1224746653 1 path -1852565824 +1202639361 1 path.node -1262042535 +1286196706 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -20560,16 +20794,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 236 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20590,10 +20824,10 @@ this.cost 14 1 node -1556381412 +1224746653 1 return -292271761 +1850527708 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20603,16 +20837,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 235 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20633,13 +20867,13 @@ this.cost 14 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -292271761 +1850527708 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20649,16 +20883,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 238 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20679,7 +20913,7 @@ this.cost 14 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -20689,16 +20923,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 239 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20719,26 +20953,26 @@ this.cost 14 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 240 node -2012201363 +2085749863 1 path -1852565824 +1202639361 1 path.node -1262042535 +1286196706 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -20754,22 +20988,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 240 this -916386438 +1961012502 1 this.node -2012201363 +2085749863 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -20784,19 +21018,19 @@ this.cost 34 1 node -2012201363 +2085749863 1 path -1852565824 +1202639361 1 path.node -1262042535 +1286196706 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -20812,16 +21046,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 239 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20842,10 +21076,10 @@ this.cost 14 1 node -2012201363 +2085749863 1 return -916386438 +1961012502 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20855,16 +21089,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 238 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20885,13 +21119,13 @@ this.cost 14 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -916386438 +1961012502 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -20901,16 +21135,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 241 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20931,7 +21165,7 @@ this.cost 14 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -20941,16 +21175,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 242 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -20971,26 +21205,26 @@ this.cost 14 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 243 node -1803141738 +1891274373 1 path -1852565824 +1202639361 1 path.node -1262042535 +1286196706 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -21006,22 +21240,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 243 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21036,19 +21270,19 @@ this.cost 15 1 node -1803141738 +1891274373 1 path -1852565824 +1202639361 1 path.node -1262042535 +1286196706 1 path.path -1689422527 +1793684097 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -21064,16 +21298,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 242 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -21094,10 +21328,10 @@ this.cost 14 1 node -1803141738 +1891274373 1 return -2101630829 +1305590605 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -21107,16 +21341,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 241 this -1852565824 +1202639361 1 this.node -1262042535 +1286196706 1 this.path -1689422527 +1793684097 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -21137,13 +21371,13 @@ this.cost 14 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2101630829 +1305590605 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -21153,22 +21387,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 244 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21187,22 +21421,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 244 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21224,22 +21458,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 245 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21254,7 +21488,7 @@ this.cost 15 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -21264,22 +21498,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 246 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21294,29 +21528,29 @@ this.cost 15 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 247 node -1234890038 +437292184 1 path -2101630829 +1305590605 1 path.node -1803141738 +1891274373 1 path.path -1852565824 +1202639361 1 path.path.node -1262042535 +1286196706 1 path.path.path -1689422527 +1793684097 1 path.path.cost 14 @@ -21329,25 +21563,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 247 this -298317147 +73393189 1 this.node -1234890038 +437292184 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -21359,22 +21593,22 @@ this.cost 20 1 node -1234890038 +437292184 1 path -2101630829 +1305590605 1 path.node -1803141738 +1891274373 1 path.path -1852565824 +1202639361 1 path.path.node -1262042535 +1286196706 1 path.path.path -1689422527 +1793684097 1 path.path.cost 14 @@ -21387,22 +21621,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 246 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21417,10 +21651,10 @@ this.cost 15 1 node -1234890038 +437292184 1 return -298317147 +73393189 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -21430,22 +21664,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 245 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21460,13 +21694,13 @@ this.cost 15 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -298317147 +73393189 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -21476,22 +21710,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 248 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21506,7 +21740,7 @@ this.cost 15 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -21516,22 +21750,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 249 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21546,29 +21780,29 @@ this.cost 15 1 node -1943047903 +2082789522 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 250 node -1943047903 +2082789522 1 path -2101630829 +1305590605 1 path.node -1803141738 +1891274373 1 path.path -1852565824 +1202639361 1 path.path.node -1262042535 +1286196706 1 path.path.path -1689422527 +1793684097 1 path.path.cost 14 @@ -21581,25 +21815,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 250 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -21611,22 +21845,22 @@ this.cost 18 1 node -1943047903 +2082789522 1 path -2101630829 +1305590605 1 path.node -1803141738 +1891274373 1 path.path -1852565824 +1202639361 1 path.path.node -1262042535 +1286196706 1 path.path.path -1689422527 +1793684097 1 path.path.cost 14 @@ -21639,22 +21873,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 249 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21669,10 +21903,10 @@ this.cost 15 1 node -1943047903 +2082789522 1 return -1589457531 +863714145 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -21682,22 +21916,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 248 this -2101630829 +1305590605 1 this.node -1803141738 +1891274373 1 this.path -1852565824 +1202639361 1 this.path.node -1262042535 +1286196706 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21712,13 +21946,13 @@ this.cost 15 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1589457531 +863714145 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -21728,25 +21962,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 251 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -21762,25 +21996,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 251 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -21799,22 +22033,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 252 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21829,7 +22063,7 @@ this.cost 16 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -21839,22 +22073,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 253 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21869,29 +22103,29 @@ this.cost 16 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 254 node -1262042535 +1286196706 1 path -409553786 +890297469 1 path.node -1234890038 +437292184 1 path.path -1855889762 +643654763 1 path.path.node -1280962114 +1770098351 1 path.path.path -1689422527 +1793684097 1 path.path.cost 11 @@ -21904,25 +22138,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 254 this -1463638484 +1601664942 1 this.node -1262042535 +1286196706 1 this.path -409553786 +890297469 1 this.path.node -1234890038 +437292184 1 this.path.path -1855889762 +643654763 1 this.path.path.node -1280962114 +1770098351 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 11 @@ -21934,22 +22168,22 @@ this.cost 28 1 node -1262042535 +1286196706 1 path -409553786 +890297469 1 path.node -1234890038 +437292184 1 path.path -1855889762 +643654763 1 path.path.node -1280962114 +1770098351 1 path.path.path -1689422527 +1793684097 1 path.path.cost 11 @@ -21962,22 +22196,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 253 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -21992,10 +22226,10 @@ this.cost 16 1 node -1262042535 +1286196706 1 return -1463638484 +1601664942 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22005,22 +22239,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 252 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22035,13 +22269,13 @@ this.cost 16 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1463638484 +1601664942 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22051,22 +22285,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 255 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22081,7 +22315,7 @@ this.cost 16 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -22091,22 +22325,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 256 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22121,29 +22355,29 @@ this.cost 16 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 257 node -1803141738 +1891274373 1 path -409553786 +890297469 1 path.node -1234890038 +437292184 1 path.path -1855889762 +643654763 1 path.path.node -1280962114 +1770098351 1 path.path.path -1689422527 +1793684097 1 path.path.cost 11 @@ -22156,25 +22390,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 257 this -2094307850 +475165049 1 this.node -1803141738 +1891274373 1 this.path -409553786 +890297469 1 this.path.node -1234890038 +437292184 1 this.path.path -1855889762 +643654763 1 this.path.path.node -1280962114 +1770098351 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 11 @@ -22186,22 +22420,22 @@ this.cost 17 1 node -1803141738 +1891274373 1 path -409553786 +890297469 1 path.node -1234890038 +437292184 1 path.path -1855889762 +643654763 1 path.path.node -1280962114 +1770098351 1 path.path.path -1689422527 +1793684097 1 path.path.cost 11 @@ -22214,22 +22448,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 256 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22244,10 +22478,10 @@ this.cost 16 1 node -1803141738 +1891274373 1 return -2094307850 +475165049 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22257,22 +22491,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 255 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22287,13 +22521,13 @@ this.cost 16 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2094307850 +475165049 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22303,22 +22537,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 258 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22333,7 +22567,7 @@ this.cost 16 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -22343,22 +22577,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 259 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22373,29 +22607,29 @@ this.cost 16 1 node -1943047903 +2082789522 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 260 node -1943047903 +2082789522 1 path -409553786 +890297469 1 path.node -1234890038 +437292184 1 path.path -1855889762 +643654763 1 path.path.node -1280962114 +1770098351 1 path.path.path -1689422527 +1793684097 1 path.path.cost 11 @@ -22408,25 +22642,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 260 this -1775060620 +1754778997 1 this.node -1943047903 +2082789522 1 this.path -409553786 +890297469 1 this.path.node -1234890038 +437292184 1 this.path.path -1855889762 +643654763 1 this.path.path.node -1280962114 +1770098351 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 11 @@ -22438,22 +22672,22 @@ this.cost 19 1 node -1943047903 +2082789522 1 path -409553786 +890297469 1 path.node -1234890038 +437292184 1 path.path -1855889762 +643654763 1 path.path.node -1280962114 +1770098351 1 path.path.path -1689422527 +1793684097 1 path.path.cost 11 @@ -22466,22 +22700,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 259 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22496,10 +22730,10 @@ this.cost 16 1 node -1943047903 +2082789522 1 return -1775060620 +1754778997 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22509,22 +22743,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 258 this -409553786 +890297469 1 this.node -1234890038 +437292184 1 this.path -1855889762 +643654763 1 this.path.node -1280962114 +1770098351 1 this.path.path -1689422527 +1793684097 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -22539,13 +22773,13 @@ this.cost 16 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1775060620 +1754778997 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22555,25 +22789,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 261 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -22585,7 +22819,7 @@ this.cost 18 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -22595,25 +22829,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 262 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -22625,29 +22859,29 @@ this.cost 18 1 node -949763793 +1998651247 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 263 node -949763793 +1998651247 1 path -1589457531 +863714145 1 path.node -1943047903 +2082789522 1 path.path -2101630829 +1305590605 1 path.path.node -1803141738 +1891274373 1 path.path.path -1852565824 +1202639361 1 path.path.cost 15 @@ -22660,25 +22894,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 263 this -601016216 +1177678328 1 this.node -949763793 +1998651247 1 this.path -1589457531 +863714145 1 this.path.node -1943047903 +2082789522 1 this.path.path -2101630829 +1305590605 1 this.path.path.node -1803141738 +1891274373 1 this.path.path.path -1852565824 +1202639361 1 this.path.path.cost 15 @@ -22690,22 +22924,22 @@ this.cost 21 1 node -949763793 +1998651247 1 path -1589457531 +863714145 1 path.node -1943047903 +2082789522 1 path.path -2101630829 +1305590605 1 path.path.node -1803141738 +1891274373 1 path.path.path -1852565824 +1202639361 1 path.path.cost 15 @@ -22718,25 +22952,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 262 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -22748,10 +22982,10 @@ this.cost 18 1 node -949763793 +1998651247 1 return -601016216 +1177678328 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22761,25 +22995,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 261 this -1589457531 +863714145 1 this.node -1943047903 +2082789522 1 this.path -2101630829 +1305590605 1 this.path.node -1803141738 +1891274373 1 this.path.path -1852565824 +1202639361 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -1689422527 +1793684097 1 this.path.path.cost 14 @@ -22791,13 +23025,13 @@ this.cost 18 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -601016216 +1177678328 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -22807,22 +23041,22 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 264 this -1758664217 +955501238 1 this.node -1266336741 +644161395 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -22841,22 +23075,22 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 264 this -1758664217 +955501238 1 this.node -1266336741 +644161395 1 this.path -1233672519 +1243355991 1 this.path.node -710875540 +1831446806 1 this.path.path -1798264627 +63978331 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -22871,7 +23105,7 @@ this.cost 19 1 return -1663950471 +2030367944 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -22881,14 +23115,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 265 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 266 node -1262042535 +1286196706 1 path null @@ -22916,10 +23150,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 266 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -22946,7 +23180,7 @@ this.cost 12 1 node -1262042535 +1286196706 1 path null @@ -22974,10 +23208,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 265 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23004,17 +23238,17 @@ this.cost 12 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 267 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23045,10 +23279,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 267 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23082,10 +23316,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 268 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23116,10 +23350,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 268 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23146,7 +23380,7 @@ this.cost 12 1 return -1149160771 +1010494180 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -23156,10 +23390,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 269 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23190,10 +23424,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 269 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23220,7 +23454,7 @@ this.cost 12 1 return -1624640726 +1075002784 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -23230,10 +23464,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 270 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23264,10 +23498,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 270 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23301,10 +23535,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 271 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23335,10 +23569,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 271 this -1483514863 +878883978 1 this.node -1262042535 +1286196706 1 this.path null @@ -23365,7 +23599,7 @@ this.cost 12 1 return -82110277 +791868477 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -23375,14 +23609,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 272 node -710875540 +1831446806 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 273 node -710875540 +1831446806 1 path null @@ -23410,10 +23644,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 273 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23440,7 +23674,7 @@ this.cost 4 1 node -710875540 +1831446806 1 path null @@ -23468,10 +23702,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 272 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23498,17 +23732,17 @@ this.cost 4 1 node -710875540 +1831446806 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 274 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23539,10 +23773,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 274 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23576,10 +23810,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 275 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23610,10 +23844,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 275 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23640,7 +23874,7 @@ this.cost 4 1 return -473311185 +2072059104 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -23650,10 +23884,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 276 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23684,10 +23918,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 276 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23714,7 +23948,7 @@ this.cost 4 1 return -661657807 +1502541176 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -23724,10 +23958,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 277 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23758,10 +23992,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 277 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23795,10 +24029,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 278 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23829,10 +24063,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 278 this -1342924165 +977332480 1 this.node -710875540 +1831446806 1 this.path null @@ -23859,7 +24093,7 @@ this.cost 4 1 return -812438083 +949339959 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -23869,14 +24103,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 279 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 280 node -1803141738 +1891274373 1 path null @@ -23904,10 +24138,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 280 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -23934,7 +24168,7 @@ this.cost 1 1 node -1803141738 +1891274373 1 path null @@ -23962,10 +24196,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 279 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -23992,17 +24226,17 @@ this.cost 1 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 281 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24033,10 +24267,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 281 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24070,10 +24304,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 282 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24104,10 +24338,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 282 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24134,7 +24368,7 @@ this.cost 1 1 return -947242391 +864972325 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -24144,10 +24378,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 283 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24178,10 +24412,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 283 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24208,7 +24442,7 @@ this.cost 1 1 return -1006590326 +1273059732 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -24218,10 +24452,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 284 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24252,10 +24486,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 284 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24289,10 +24523,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 285 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24323,10 +24557,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 285 this -945833355 +1900677350 1 this.node -1803141738 +1891274373 1 this.path null @@ -24353,7 +24587,7 @@ this.cost 1 1 return -2034921663 +935340663 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -24363,14 +24597,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 286 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 287 node -1556381412 +1224746653 1 path null @@ -24398,10 +24632,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 287 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -24428,7 +24662,7 @@ this.cost 2 1 node -1556381412 +1224746653 1 path null @@ -24456,10 +24690,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 286 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -24486,17 +24720,17 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 288 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -24527,10 +24761,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 288 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -24564,14 +24798,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 289 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 290 node -2012201363 +2085749863 1 path null @@ -24599,10 +24833,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 290 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -24629,7 +24863,7 @@ this.cost 20 1 node -2012201363 +2085749863 1 path null @@ -24657,10 +24891,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 289 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -24687,17 +24921,17 @@ this.cost 20 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 291 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -24728,10 +24962,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 291 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -24765,14 +24999,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 292 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 293 node -946650629 +1604068167 1 path null @@ -24800,10 +25034,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 293 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -24830,7 +25064,7 @@ this.cost 4 1 node -946650629 +1604068167 1 path null @@ -24858,10 +25092,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 292 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -24888,17 +25122,17 @@ this.cost 4 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 294 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -24929,10 +25163,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 294 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -24966,10 +25200,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 295 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25000,10 +25234,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 295 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25030,7 +25264,7 @@ this.cost 2 1 return -405519671 +1027176908 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25040,10 +25274,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 296 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -25074,10 +25308,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 296 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -25104,7 +25338,7 @@ this.cost 20 1 return -1603498566 +141254523 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25114,10 +25348,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 297 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -25148,10 +25382,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 297 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -25178,7 +25412,7 @@ this.cost 4 1 return -1228112559 +1095338126 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25188,10 +25422,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 298 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25222,10 +25456,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 298 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25252,7 +25486,7 @@ this.cost 2 1 return -1422447796 +1118061598 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25262,10 +25496,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 299 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25296,10 +25530,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 299 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25333,10 +25567,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 300 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -25367,10 +25601,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 300 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -25397,7 +25631,7 @@ this.cost 20 1 return -1292148968 +779366336 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25407,10 +25641,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 301 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -25441,10 +25675,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 301 this -1279113269 +2086028360 1 this.node -2012201363 +2085749863 1 this.path null @@ -25478,10 +25712,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 302 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -25512,10 +25746,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 302 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -25542,7 +25776,7 @@ this.cost 4 1 return -1793066712 +1307246099 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25552,10 +25786,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 303 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -25586,10 +25820,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 303 this -1745405613 +60625598 1 this.node -946650629 +1604068167 1 this.path null @@ -25623,10 +25857,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 304 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25657,10 +25891,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 304 this -103827919 +690227001 1 this.node -1556381412 +1224746653 1 this.path null @@ -25687,7 +25921,7 @@ this.cost 2 1 return -434210233 +2127477083 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -25697,14 +25931,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 305 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 306 node -1556381412 +1224746653 1 path null @@ -25732,10 +25966,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 306 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -25762,7 +25996,7 @@ this.cost 2 1 node -1556381412 +1224746653 1 path null @@ -25790,10 +26024,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 305 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -25820,17 +26054,17 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 307 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -25861,10 +26095,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 307 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -25898,14 +26132,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 308 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 309 node -2012201363 +2085749863 1 path null @@ -25933,10 +26167,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 309 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -25963,7 +26197,7 @@ this.cost 20 1 node -2012201363 +2085749863 1 path null @@ -25991,10 +26225,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 308 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26021,17 +26255,17 @@ this.cost 20 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 310 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26062,10 +26296,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 310 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26099,14 +26333,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 311 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 312 node -946650629 +1604068167 1 path null @@ -26134,10 +26368,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 312 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26164,7 +26398,7 @@ this.cost 4 1 node -946650629 +1604068167 1 path null @@ -26192,10 +26426,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 311 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26222,17 +26456,17 @@ this.cost 4 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 313 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26263,10 +26497,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 313 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26300,10 +26534,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 314 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26334,10 +26568,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 314 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26364,7 +26598,7 @@ this.cost 2 1 return -1391487054 +1679471946 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -26374,10 +26608,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 315 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26408,10 +26642,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 315 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26438,7 +26672,7 @@ this.cost 20 1 return -626000748 +359940254 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -26448,10 +26682,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 316 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26482,10 +26716,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 316 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26512,7 +26746,7 @@ this.cost 4 1 return -672184983 +54415379 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -26522,10 +26756,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 317 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26556,10 +26790,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 317 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26586,7 +26820,7 @@ this.cost 2 1 return -1649026061 +1878724878 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -26596,10 +26830,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 318 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26630,10 +26864,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 318 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26667,10 +26901,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 319 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26701,10 +26935,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 319 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26731,7 +26965,7 @@ this.cost 20 1 return -1904542692 +1276962705 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -26741,10 +26975,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 320 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26775,10 +27009,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 320 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -26812,10 +27046,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 321 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26846,10 +27080,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 321 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26876,7 +27110,7 @@ this.cost 4 1 return -1405265909 +2108098464 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -26886,10 +27120,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 322 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26920,10 +27154,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 322 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -26957,10 +27191,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 323 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -26987,7 +27221,7 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -26997,10 +27231,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 324 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27027,20 +27261,20 @@ this.cost 2 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 325 node -2012201363 +2085749863 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27062,16 +27296,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 325 this -278982857 +1625676242 1 this.node -2012201363 +2085749863 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27092,13 +27326,13 @@ this.cost 22 1 node -2012201363 +2085749863 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27120,10 +27354,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 324 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27150,10 +27384,10 @@ this.cost 2 1 node -2012201363 +2085749863 1 return -278982857 +1625676242 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -27163,10 +27397,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 323 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27193,13 +27427,13 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -278982857 +1625676242 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -27209,10 +27443,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 326 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27239,7 +27473,7 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -27249,10 +27483,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 327 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27279,20 +27513,20 @@ this.cost 2 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 328 node -1262042535 +1286196706 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27314,16 +27548,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 328 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27344,13 +27578,13 @@ this.cost 14 1 node -1262042535 +1286196706 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27372,10 +27606,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 327 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27402,10 +27636,10 @@ this.cost 2 1 node -1262042535 +1286196706 1 return -908076198 +306158513 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -27415,10 +27649,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 326 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27445,13 +27679,13 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -908076198 +306158513 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -27461,16 +27695,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 329 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27495,16 +27729,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 329 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27532,10 +27766,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 330 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27562,7 +27796,7 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -27572,10 +27806,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 331 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27602,20 +27836,20 @@ this.cost 2 1 node -1280962114 +1770098351 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 332 node -1280962114 +1770098351 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27637,16 +27871,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 332 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27667,13 +27901,13 @@ this.cost 11 1 node -1280962114 +1770098351 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27695,10 +27929,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 331 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27725,10 +27959,10 @@ this.cost 2 1 node -1280962114 +1770098351 1 return -2017864204 +235309779 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -27738,10 +27972,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 330 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27768,13 +28002,13 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2017864204 +235309779 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -27784,16 +28018,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 333 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27818,16 +28052,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 333 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27855,10 +28089,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 334 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27885,7 +28119,7 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -27895,10 +28129,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 335 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -27925,20 +28159,20 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 336 node -1556381412 +1224746653 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -27960,16 +28194,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 336 this -1181923204 +1334061526 1 this.node -1556381412 +1224746653 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -27990,13 +28224,13 @@ this.cost 4 1 node -1556381412 +1224746653 1 path -621953525 +904611431 1 path.node -1556381412 +1224746653 1 path.path null @@ -28018,10 +28252,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 335 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -28048,10 +28282,10 @@ this.cost 2 1 node -1556381412 +1224746653 1 return -1181923204 +1334061526 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28061,10 +28295,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 334 this -621953525 +904611431 1 this.node -1556381412 +1224746653 1 this.path null @@ -28091,13 +28325,13 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1181923204 +1334061526 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28107,10 +28341,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 337 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -28137,7 +28371,7 @@ this.cost 4 1 o -710875540 +1831446806 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -28147,10 +28381,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 338 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -28177,20 +28411,20 @@ this.cost 4 1 node -710875540 +1831446806 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 339 node -710875540 +1831446806 1 path -13626748 +1638024177 1 path.node -946650629 +1604068167 1 path.path null @@ -28212,16 +28446,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 339 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28242,13 +28476,13 @@ this.cost 8 1 node -710875540 +1831446806 1 path -13626748 +1638024177 1 path.node -946650629 +1604068167 1 path.path null @@ -28270,10 +28504,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 338 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -28300,10 +28534,10 @@ this.cost 4 1 node -710875540 +1831446806 1 return -359554878 +1842792802 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28313,10 +28547,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 337 this -13626748 +1638024177 1 this.node -946650629 +1604068167 1 this.path null @@ -28343,13 +28577,13 @@ this.cost 4 1 o -710875540 +1831446806 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -359554878 +1842792802 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28359,16 +28593,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 340 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28393,16 +28627,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 340 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28430,16 +28664,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 341 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28460,7 +28694,7 @@ this.cost 8 1 o -946650629 +1604068167 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -28470,16 +28704,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 342 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28500,26 +28734,26 @@ this.cost 8 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 343 node -946650629 +1604068167 1 path -359554878 +1842792802 1 path.node -710875540 +1831446806 1 path.path -13626748 +1638024177 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -28535,22 +28769,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 343 this -19851888 +809466180 1 this.node -946650629 +1604068167 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -28565,19 +28799,19 @@ this.cost 12 1 node -946650629 +1604068167 1 path -359554878 +1842792802 1 path.node -710875540 +1831446806 1 path.path -13626748 +1638024177 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -28593,16 +28827,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 342 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28623,10 +28857,10 @@ this.cost 8 1 node -946650629 +1604068167 1 return -19851888 +809466180 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28636,16 +28870,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 341 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28666,13 +28900,13 @@ this.cost 8 1 o -946650629 +1604068167 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -19851888 +809466180 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28682,16 +28916,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 344 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28712,7 +28946,7 @@ this.cost 8 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -28722,16 +28956,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 345 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28752,26 +28986,26 @@ this.cost 8 1 node -949763793 +1998651247 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 346 node -949763793 +1998651247 1 path -359554878 +1842792802 1 path.node -710875540 +1831446806 1 path.path -13626748 +1638024177 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -28787,22 +29021,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 346 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -28817,19 +29051,19 @@ this.cost 11 1 node -949763793 +1998651247 1 path -359554878 +1842792802 1 path.node -710875540 +1831446806 1 path.path -13626748 +1638024177 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -28845,16 +29079,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 345 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28875,10 +29109,10 @@ this.cost 8 1 node -949763793 +1998651247 1 return -790716331 +389183515 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28888,16 +29122,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 344 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -28918,13 +29152,13 @@ this.cost 8 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -790716331 +389183515 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -28934,22 +29168,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 347 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -28968,22 +29202,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 347 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -29005,16 +29239,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 348 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -29035,7 +29269,7 @@ this.cost 8 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -29045,16 +29279,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 349 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -29075,26 +29309,26 @@ this.cost 8 1 node -1266336741 +644161395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 350 node -1266336741 +644161395 1 path -359554878 +1842792802 1 path.node -710875540 +1831446806 1 path.path -13626748 +1638024177 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -29110,22 +29344,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 350 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -29140,19 +29374,19 @@ this.cost 19 1 node -1266336741 +644161395 1 path -359554878 +1842792802 1 path.node -710875540 +1831446806 1 path.path -13626748 +1638024177 1 path.path.node -946650629 +1604068167 1 path.path.path null @@ -29168,16 +29402,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 349 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -29198,10 +29432,10 @@ this.cost 8 1 node -1266336741 +644161395 1 return -940567481 +1919631490 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -29211,16 +29445,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 348 this -359554878 +1842792802 1 this.node -710875540 +1831446806 1 this.path -13626748 +1638024177 1 this.path.node -946650629 +1604068167 1 this.path.path null @@ -29241,13 +29475,13 @@ this.cost 8 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -940567481 +1919631490 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -29257,22 +29491,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 351 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -29291,22 +29525,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 351 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -29328,16 +29562,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 352 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29358,7 +29592,7 @@ this.cost 11 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -29368,16 +29602,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 353 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29398,26 +29632,26 @@ this.cost 11 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 354 node -1262042535 +1286196706 1 path -2017864204 +235309779 1 path.node -1280962114 +1770098351 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -29433,22 +29667,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 354 this -490527600 +1599623549 1 this.node -1262042535 +1286196706 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -29463,19 +29697,19 @@ this.cost 23 1 node -1262042535 +1286196706 1 path -2017864204 +235309779 1 path.node -1280962114 +1770098351 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -29491,16 +29725,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 353 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29521,10 +29755,10 @@ this.cost 11 1 node -1262042535 +1286196706 1 return -490527600 +1599623549 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -29534,16 +29768,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 352 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29564,13 +29798,13 @@ this.cost 11 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -490527600 +1599623549 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -29580,16 +29814,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 355 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29610,7 +29844,7 @@ this.cost 11 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -29620,16 +29854,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 356 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29650,26 +29884,26 @@ this.cost 11 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 357 node -1234890038 +437292184 1 path -2017864204 +235309779 1 path.node -1280962114 +1770098351 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -29685,22 +29919,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 357 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -29715,19 +29949,19 @@ this.cost 16 1 node -1234890038 +437292184 1 path -2017864204 +235309779 1 path.node -1280962114 +1770098351 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -29743,16 +29977,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 356 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29773,10 +30007,10 @@ this.cost 11 1 node -1234890038 +437292184 1 return -107652367 +525211250 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -29786,16 +30020,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 355 this -2017864204 +235309779 1 this.node -1280962114 +1770098351 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -29816,13 +30050,13 @@ this.cost 11 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -107652367 +525211250 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -29832,22 +30066,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 358 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -29866,22 +30100,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 358 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -29903,22 +30137,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 359 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -29933,7 +30167,7 @@ this.cost 11 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -29943,22 +30177,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 360 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -29973,29 +30207,29 @@ this.cost 11 1 node -1266336741 +644161395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 361 node -1266336741 +644161395 1 path -790716331 +389183515 1 path.node -949763793 +1998651247 1 path.path -359554878 +1842792802 1 path.path.node -710875540 +1831446806 1 path.path.path -13626748 +1638024177 1 path.path.cost 8 @@ -30008,25 +30242,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 361 this -1132101395 +1067689580 1 this.node -1266336741 +644161395 1 this.path -790716331 +389183515 1 this.path.node -949763793 +1998651247 1 this.path.path -359554878 +1842792802 1 this.path.path.node -710875540 +1831446806 1 this.path.path.path -13626748 +1638024177 1 this.path.path.cost 8 @@ -30038,22 +30272,22 @@ this.cost 22 1 node -1266336741 +644161395 1 path -790716331 +389183515 1 path.node -949763793 +1998651247 1 path.path -359554878 +1842792802 1 path.path.node -710875540 +1831446806 1 path.path.path -13626748 +1638024177 1 path.path.cost 8 @@ -30066,22 +30300,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 360 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -30096,10 +30330,10 @@ this.cost 11 1 node -1266336741 +644161395 1 return -1132101395 +1067689580 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30109,22 +30343,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 359 this -790716331 +389183515 1 this.node -949763793 +1998651247 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -30139,13 +30373,13 @@ this.cost 11 1 o -1266336741 +644161395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1132101395 +1067689580 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30155,16 +30389,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 362 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30185,7 +30419,7 @@ this.cost 14 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -30195,16 +30429,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 363 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30225,26 +30459,26 @@ this.cost 14 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 364 node -1556381412 +1224746653 1 path -908076198 +306158513 1 path.node -1262042535 +1286196706 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -30260,22 +30494,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 364 this -523033345 +285416728 1 this.node -1556381412 +1224746653 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -30290,19 +30524,19 @@ this.cost 16 1 node -1556381412 +1224746653 1 path -908076198 +306158513 1 path.node -1262042535 +1286196706 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -30318,16 +30552,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 363 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30348,10 +30582,10 @@ this.cost 14 1 node -1556381412 +1224746653 1 return -523033345 +285416728 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30361,16 +30595,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 362 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30391,13 +30625,13 @@ this.cost 14 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -523033345 +285416728 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30407,16 +30641,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 365 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30437,7 +30671,7 @@ this.cost 14 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -30447,16 +30681,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 366 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30477,26 +30711,26 @@ this.cost 14 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 367 node -2012201363 +2085749863 1 path -908076198 +306158513 1 path.node -1262042535 +1286196706 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -30512,22 +30746,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 367 this -970862244 +1667963745 1 this.node -2012201363 +2085749863 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -30542,19 +30776,19 @@ this.cost 34 1 node -2012201363 +2085749863 1 path -908076198 +306158513 1 path.node -1262042535 +1286196706 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -30570,16 +30804,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 366 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30600,10 +30834,10 @@ this.cost 14 1 node -2012201363 +2085749863 1 return -970862244 +1667963745 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30613,16 +30847,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 365 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30643,13 +30877,13 @@ this.cost 14 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -970862244 +1667963745 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30659,16 +30893,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 368 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30689,7 +30923,7 @@ this.cost 14 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -30699,16 +30933,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 369 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30729,26 +30963,26 @@ this.cost 14 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 370 node -1803141738 +1891274373 1 path -908076198 +306158513 1 path.node -1262042535 +1286196706 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -30764,22 +30998,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 370 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -30794,19 +31028,19 @@ this.cost 15 1 node -1803141738 +1891274373 1 path -908076198 +306158513 1 path.node -1262042535 +1286196706 1 path.path -621953525 +904611431 1 path.path.node -1556381412 +1224746653 1 path.path.path null @@ -30822,16 +31056,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 369 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30852,10 +31086,10 @@ this.cost 14 1 node -1803141738 +1891274373 1 return -700985002 +215134277 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30865,16 +31099,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 368 this -908076198 +306158513 1 this.node -1262042535 +1286196706 1 this.path -621953525 +904611431 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -30895,13 +31129,13 @@ this.cost 14 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -700985002 +215134277 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -30911,22 +31145,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 371 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -30945,22 +31179,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 371 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -30982,22 +31216,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 372 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31012,7 +31246,7 @@ this.cost 15 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -31022,22 +31256,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 373 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31052,29 +31286,29 @@ this.cost 15 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 374 node -1234890038 +437292184 1 path -700985002 +215134277 1 path.node -1803141738 +1891274373 1 path.path -908076198 +306158513 1 path.path.node -1262042535 +1286196706 1 path.path.path -621953525 +904611431 1 path.path.cost 14 @@ -31087,25 +31321,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 374 this -359641172 +1546815638 1 this.node -1234890038 +437292184 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -31117,22 +31351,22 @@ this.cost 20 1 node -1234890038 +437292184 1 path -700985002 +215134277 1 path.node -1803141738 +1891274373 1 path.path -908076198 +306158513 1 path.path.node -1262042535 +1286196706 1 path.path.path -621953525 +904611431 1 path.path.cost 14 @@ -31145,22 +31379,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 373 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31175,10 +31409,10 @@ this.cost 15 1 node -1234890038 +437292184 1 return -359641172 +1546815638 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -31188,22 +31422,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 372 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31218,13 +31452,13 @@ this.cost 15 1 o -1234890038 +437292184 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -359641172 +1546815638 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -31234,22 +31468,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 375 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31264,7 +31498,7 @@ this.cost 15 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -31274,22 +31508,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 376 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31304,29 +31538,29 @@ this.cost 15 1 node -1943047903 +2082789522 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 377 node -1943047903 +2082789522 1 path -700985002 +215134277 1 path.node -1803141738 +1891274373 1 path.path -908076198 +306158513 1 path.path.node -1262042535 +1286196706 1 path.path.path -621953525 +904611431 1 path.path.cost 14 @@ -31339,25 +31573,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 377 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -31369,22 +31603,22 @@ this.cost 18 1 node -1943047903 +2082789522 1 path -700985002 +215134277 1 path.node -1803141738 +1891274373 1 path.path -908076198 +306158513 1 path.path.node -1262042535 +1286196706 1 path.path.path -621953525 +904611431 1 path.path.cost 14 @@ -31397,22 +31631,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 376 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31427,10 +31661,10 @@ this.cost 15 1 node -1943047903 +2082789522 1 return -1470195146 +2040880931 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -31440,22 +31674,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 375 this -700985002 +215134277 1 this.node -1803141738 +1891274373 1 this.path -908076198 +306158513 1 this.path.node -1262042535 +1286196706 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31470,13 +31704,13 @@ this.cost 15 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1470195146 +2040880931 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -31486,25 +31720,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 378 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -31520,25 +31754,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 378 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -31557,22 +31791,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 379 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31587,7 +31821,7 @@ this.cost 16 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -31597,22 +31831,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 380 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31627,29 +31861,29 @@ this.cost 16 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 381 node -1262042535 +1286196706 1 path -107652367 +525211250 1 path.node -1234890038 +437292184 1 path.path -2017864204 +235309779 1 path.path.node -1280962114 +1770098351 1 path.path.path -621953525 +904611431 1 path.path.cost 11 @@ -31662,25 +31896,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 381 this -622976440 +1476997433 1 this.node -1262042535 +1286196706 1 this.path -107652367 +525211250 1 this.path.node -1234890038 +437292184 1 this.path.path -2017864204 +235309779 1 this.path.path.node -1280962114 +1770098351 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 11 @@ -31692,22 +31926,22 @@ this.cost 28 1 node -1262042535 +1286196706 1 path -107652367 +525211250 1 path.node -1234890038 +437292184 1 path.path -2017864204 +235309779 1 path.path.node -1280962114 +1770098351 1 path.path.path -621953525 +904611431 1 path.path.cost 11 @@ -31720,22 +31954,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 380 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31750,10 +31984,10 @@ this.cost 16 1 node -1262042535 +1286196706 1 return -622976440 +1476997433 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -31763,22 +31997,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 379 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31793,13 +32027,13 @@ this.cost 16 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -622976440 +1476997433 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -31809,22 +32043,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 382 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31839,7 +32073,7 @@ this.cost 16 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -31849,22 +32083,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 383 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -31879,29 +32113,29 @@ this.cost 16 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 384 node -1803141738 +1891274373 1 path -107652367 +525211250 1 path.node -1234890038 +437292184 1 path.path -2017864204 +235309779 1 path.path.node -1280962114 +1770098351 1 path.path.path -621953525 +904611431 1 path.path.cost 11 @@ -31914,25 +32148,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 384 this -1382247955 +1132380758 1 this.node -1803141738 +1891274373 1 this.path -107652367 +525211250 1 this.path.node -1234890038 +437292184 1 this.path.path -2017864204 +235309779 1 this.path.path.node -1280962114 +1770098351 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 11 @@ -31944,22 +32178,22 @@ this.cost 17 1 node -1803141738 +1891274373 1 path -107652367 +525211250 1 path.node -1234890038 +437292184 1 path.path -2017864204 +235309779 1 path.path.node -1280962114 +1770098351 1 path.path.path -621953525 +904611431 1 path.path.cost 11 @@ -31972,22 +32206,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 383 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -32002,10 +32236,10 @@ this.cost 16 1 node -1803141738 +1891274373 1 return -1382247955 +1132380758 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32015,22 +32249,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 382 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -32045,13 +32279,13 @@ this.cost 16 1 o -1803141738 +1891274373 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1382247955 +1132380758 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32061,22 +32295,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 385 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -32091,7 +32325,7 @@ this.cost 16 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -32101,22 +32335,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 386 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -32131,29 +32365,29 @@ this.cost 16 1 node -1943047903 +2082789522 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 387 node -1943047903 +2082789522 1 path -107652367 +525211250 1 path.node -1234890038 +437292184 1 path.path -2017864204 +235309779 1 path.path.node -1280962114 +1770098351 1 path.path.path -621953525 +904611431 1 path.path.cost 11 @@ -32166,25 +32400,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 387 this -2110770086 +522272322 1 this.node -1943047903 +2082789522 1 this.path -107652367 +525211250 1 this.path.node -1234890038 +437292184 1 this.path.path -2017864204 +235309779 1 this.path.path.node -1280962114 +1770098351 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 11 @@ -32196,22 +32430,22 @@ this.cost 19 1 node -1943047903 +2082789522 1 path -107652367 +525211250 1 path.node -1234890038 +437292184 1 path.path -2017864204 +235309779 1 path.path.node -1280962114 +1770098351 1 path.path.path -621953525 +904611431 1 path.path.cost 11 @@ -32224,22 +32458,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 386 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -32254,10 +32488,10 @@ this.cost 16 1 node -1943047903 +2082789522 1 return -2110770086 +522272322 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32267,22 +32501,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 385 this -107652367 +525211250 1 this.node -1234890038 +437292184 1 this.path -2017864204 +235309779 1 this.path.node -1280962114 +1770098351 1 this.path.path -621953525 +904611431 1 this.path.path.node -1556381412 +1224746653 1 this.path.path.path null @@ -32297,13 +32531,13 @@ this.cost 16 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2110770086 +522272322 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32313,25 +32547,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 388 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -32343,7 +32577,7 @@ this.cost 18 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -32353,25 +32587,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 389 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -32383,29 +32617,29 @@ this.cost 18 1 node -949763793 +1998651247 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 390 node -949763793 +1998651247 1 path -1470195146 +2040880931 1 path.node -1943047903 +2082789522 1 path.path -700985002 +215134277 1 path.path.node -1803141738 +1891274373 1 path.path.path -908076198 +306158513 1 path.path.cost 15 @@ -32418,25 +32652,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 390 this -1430470609 +1065250565 1 this.node -949763793 +1998651247 1 this.path -1470195146 +2040880931 1 this.path.node -1943047903 +2082789522 1 this.path.path -700985002 +215134277 1 this.path.path.node -1803141738 +1891274373 1 this.path.path.path -908076198 +306158513 1 this.path.path.cost 15 @@ -32448,22 +32682,22 @@ this.cost 21 1 node -949763793 +1998651247 1 path -1470195146 +2040880931 1 path.node -1943047903 +2082789522 1 path.path -700985002 +215134277 1 path.path.node -1803141738 +1891274373 1 path.path.path -908076198 +306158513 1 path.path.cost 15 @@ -32476,25 +32710,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 389 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -32506,10 +32740,10 @@ this.cost 18 1 node -949763793 +1998651247 1 return -1430470609 +1065250565 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32519,25 +32753,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 388 this -1470195146 +2040880931 1 this.node -1943047903 +2082789522 1 this.path -700985002 +215134277 1 this.path.node -1803141738 +1891274373 1 this.path.path -908076198 +306158513 1 this.path.path.node -1262042535 +1286196706 1 this.path.path.path -621953525 +904611431 1 this.path.path.cost 14 @@ -32549,13 +32783,13 @@ this.cost 18 1 o -949763793 +1998651247 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1430470609 +1065250565 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32565,22 +32799,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 391 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -32595,7 +32829,7 @@ this.cost 19 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -32605,22 +32839,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 392 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -32635,29 +32869,29 @@ this.cost 19 1 node -1943047903 +2082789522 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 393 node -1943047903 +2082789522 1 path -940567481 +1919631490 1 path.node -1266336741 +644161395 1 path.path -359554878 +1842792802 1 path.path.node -710875540 +1831446806 1 path.path.path -13626748 +1638024177 1 path.path.cost 8 @@ -32670,25 +32904,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 393 this -840097298 +95080916 1 this.node -1943047903 +2082789522 1 this.path -940567481 +1919631490 1 this.path.node -1266336741 +644161395 1 this.path.path -359554878 +1842792802 1 this.path.path.node -710875540 +1831446806 1 this.path.path.path -13626748 +1638024177 1 this.path.path.cost 8 @@ -32700,22 +32934,22 @@ this.cost 22 1 node -1943047903 +2082789522 1 path -940567481 +1919631490 1 path.node -1266336741 +644161395 1 path.path -359554878 +1842792802 1 path.path.node -710875540 +1831446806 1 path.path.path -13626748 +1638024177 1 path.path.cost 8 @@ -32728,22 +32962,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 392 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -32758,10 +32992,10 @@ this.cost 19 1 node -1943047903 +2082789522 1 return -840097298 +95080916 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32771,22 +33005,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 391 this -940567481 +1919631490 1 this.node -1266336741 +644161395 1 this.path -359554878 +1842792802 1 this.path.node -710875540 +1831446806 1 this.path.path -13626748 +1638024177 1 this.path.path.node -946650629 +1604068167 1 this.path.path.path null @@ -32801,13 +33035,13 @@ this.cost 19 1 o -1943047903 +2082789522 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -840097298 +95080916 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -32817,10 +33051,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 394 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -32851,10 +33085,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 394 this -1369984726 +1767583704 1 this.node -2012201363 +2085749863 1 this.path null @@ -32881,7 +33115,7 @@ this.cost 20 1 return -1957792108 +297121844 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -32891,14 +33125,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 395 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 396 node -1556381412 +1224746653 1 path null @@ -32926,10 +33160,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 396 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -32956,7 +33190,7 @@ this.cost 2 1 node -1556381412 +1224746653 1 path null @@ -32984,10 +33218,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 395 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33014,17 +33248,17 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 397 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33055,10 +33289,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 397 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33092,14 +33326,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 398 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 399 node -2012201363 +2085749863 1 path null @@ -33127,10 +33361,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 399 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33157,7 +33391,7 @@ this.cost 20 1 node -2012201363 +2085749863 1 path null @@ -33185,10 +33419,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 398 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33215,17 +33449,17 @@ this.cost 20 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 400 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33256,10 +33490,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 400 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33293,14 +33527,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 401 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 402 node -946650629 +1604068167 1 path null @@ -33328,10 +33562,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 402 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -33358,7 +33592,7 @@ this.cost 4 1 node -946650629 +1604068167 1 path null @@ -33386,10 +33620,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 401 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -33416,17 +33650,17 @@ this.cost 4 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 403 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -33457,10 +33691,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 403 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -33494,10 +33728,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 404 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33528,10 +33762,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 404 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33558,7 +33792,7 @@ this.cost 2 1 return -1316166688 +2035682468 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -33568,10 +33802,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 405 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33602,10 +33836,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 405 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33632,7 +33866,7 @@ this.cost 20 1 return -1731961116 +5775672 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -33642,10 +33876,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 406 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -33676,10 +33910,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 406 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -33706,7 +33940,7 @@ this.cost 4 1 return -2077125174 +434955189 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -33716,10 +33950,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 407 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33750,10 +33984,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 407 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33780,7 +34014,7 @@ this.cost 2 1 return -748633786 +257527135 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -33790,10 +34024,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 408 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33824,10 +34058,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 408 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -33861,10 +34095,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 409 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33895,10 +34129,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 409 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33925,7 +34159,7 @@ this.cost 20 1 return -181353529 +1079009240 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -33935,10 +34169,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 410 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -33969,10 +34203,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 410 this -1139168871 +362449906 1 this.node -2012201363 +2085749863 1 this.path null @@ -34006,10 +34240,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 411 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -34040,10 +34274,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 411 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -34070,7 +34304,7 @@ this.cost 4 1 return -729466810 +1556381412 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -34080,10 +34314,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 412 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -34114,10 +34348,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 412 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -34151,10 +34385,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 413 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34181,7 +34415,7 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -34191,10 +34425,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 414 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34221,20 +34455,20 @@ this.cost 2 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 415 node -2012201363 +2085749863 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -34256,16 +34490,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 415 this -164534947 +1751571024 1 this.node -2012201363 +2085749863 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -34286,13 +34520,13 @@ this.cost 22 1 node -2012201363 +2085749863 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -34314,10 +34548,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 414 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34344,10 +34578,10 @@ this.cost 2 1 node -2012201363 +2085749863 1 return -164534947 +1751571024 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -34357,10 +34591,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 413 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34387,13 +34621,13 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -164534947 +1751571024 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -34403,10 +34637,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 416 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34433,7 +34667,7 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -34443,10 +34677,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 417 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34473,20 +34707,20 @@ this.cost 2 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 418 node -1262042535 +1286196706 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -34508,16 +34742,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 418 this -1527400540 +948367292 1 this.node -1262042535 +1286196706 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -34538,13 +34772,13 @@ this.cost 14 1 node -1262042535 +1286196706 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -34566,10 +34800,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 417 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34596,10 +34830,10 @@ this.cost 2 1 node -1262042535 +1286196706 1 return -1527400540 +948367292 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -34609,10 +34843,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 416 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34639,13 +34873,13 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1527400540 +948367292 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -34655,16 +34889,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 419 this -1527400540 +948367292 1 this.node -1262042535 +1286196706 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -34689,16 +34923,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 419 this -1527400540 +948367292 1 this.node -1262042535 +1286196706 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -34726,10 +34960,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 420 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34756,7 +34990,7 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -34766,10 +35000,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 421 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34796,20 +35030,20 @@ this.cost 2 1 node -1280962114 +1770098351 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 422 node -1280962114 +1770098351 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -34831,16 +35065,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 422 this -1359542 +585448610 1 this.node -1280962114 +1770098351 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -34861,13 +35095,13 @@ this.cost 11 1 node -1280962114 +1770098351 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -34889,10 +35123,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 421 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34919,10 +35153,10 @@ this.cost 2 1 node -1280962114 +1770098351 1 return -1359542 +585448610 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -34932,10 +35166,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 420 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -34962,13 +35196,13 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1359542 +585448610 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -34978,16 +35212,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 423 this -1359542 +585448610 1 this.node -1280962114 +1770098351 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -35012,16 +35246,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 423 this -1359542 +585448610 1 this.node -1280962114 +1770098351 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -35049,10 +35283,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 424 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -35079,7 +35313,7 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -35089,10 +35323,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 425 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -35119,20 +35353,20 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 426 node -1556381412 +1224746653 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -35154,16 +35388,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 426 this -1374985924 +2012201363 1 this.node -1556381412 +1224746653 1 this.path -867519822 +827352833 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -35184,13 +35418,13 @@ this.cost 4 1 node -1556381412 +1224746653 1 path -867519822 +827352833 1 path.node -1556381412 +1224746653 1 path.path null @@ -35212,10 +35446,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 425 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -35242,10 +35476,10 @@ this.cost 2 1 node -1556381412 +1224746653 1 return -1374985924 +2012201363 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -35255,10 +35489,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 424 this -867519822 +827352833 1 this.node -1556381412 +1224746653 1 this.path null @@ -35285,13 +35519,13 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1374985924 +2012201363 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -35301,10 +35535,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 427 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -35335,10 +35569,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 427 this -1194501892 +1431947250 1 this.node -946650629 +1604068167 1 this.path null @@ -35365,7 +35599,7 @@ this.cost 4 1 return -316899301 +495834985 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -35375,14 +35609,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 428 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 429 node -1556381412 +1224746653 1 path null @@ -35410,10 +35644,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 429 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35440,7 +35674,7 @@ this.cost 2 1 node -1556381412 +1224746653 1 path null @@ -35468,10 +35702,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 428 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35498,17 +35732,17 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 430 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35539,10 +35773,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 430 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35576,14 +35810,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 431 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 432 node -946650629 +1604068167 1 path null @@ -35611,10 +35845,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 432 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -35641,7 +35875,7 @@ this.cost 4 1 node -946650629 +1604068167 1 path null @@ -35669,10 +35903,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 431 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -35699,17 +35933,17 @@ this.cost 4 1 node -946650629 +1604068167 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 433 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -35740,10 +35974,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 433 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -35777,10 +36011,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 434 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35811,10 +36045,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 434 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35841,7 +36075,7 @@ this.cost 2 1 return -935198667 +1280962114 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -35851,10 +36085,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 435 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -35885,10 +36119,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 435 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -35915,7 +36149,7 @@ this.cost 4 1 return -451183876 +606688823 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -35925,10 +36159,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 436 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35959,10 +36193,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 436 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -35989,7 +36223,7 @@ this.cost 2 1 return -282646375 +366692205 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -35999,10 +36233,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 437 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36033,10 +36267,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 437 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36070,10 +36304,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 438 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -36104,10 +36338,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 438 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -36134,7 +36368,7 @@ this.cost 4 1 return -203797461 +1865306192 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -36144,10 +36378,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 439 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -36178,10 +36412,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 439 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -36215,10 +36449,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 440 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36245,7 +36479,7 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -36255,10 +36489,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 441 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36285,20 +36519,20 @@ this.cost 2 1 node -2012201363 +2085749863 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 442 node -2012201363 +2085749863 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -36320,16 +36554,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 442 this -2134993709 +1234890038 1 this.node -2012201363 +2085749863 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36350,13 +36584,13 @@ this.cost 22 1 node -2012201363 +2085749863 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -36378,10 +36612,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 441 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36408,10 +36642,10 @@ this.cost 2 1 node -2012201363 +2085749863 1 return -2134993709 +1234890038 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -36421,10 +36655,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 440 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36451,13 +36685,13 @@ this.cost 2 1 o -2012201363 +2085749863 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2134993709 +1234890038 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -36467,16 +36701,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 443 this -2134993709 +1234890038 1 this.node -2012201363 +2085749863 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36501,16 +36735,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 443 this -2134993709 +1234890038 1 this.node -2012201363 +2085749863 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36538,10 +36772,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 444 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36568,7 +36802,7 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -36578,10 +36812,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 445 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36608,20 +36842,20 @@ this.cost 2 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 446 node -1262042535 +1286196706 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -36643,16 +36877,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 446 this -535009440 +1514904058 1 this.node -1262042535 +1286196706 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36673,13 +36907,13 @@ this.cost 14 1 node -1262042535 +1286196706 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -36701,10 +36935,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 445 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36731,10 +36965,10 @@ this.cost 2 1 node -1262042535 +1286196706 1 return -535009440 +1514904058 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -36744,10 +36978,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 444 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36774,13 +37008,13 @@ this.cost 2 1 o -1262042535 +1286196706 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -535009440 +1514904058 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -36790,16 +37024,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 447 this -535009440 +1514904058 1 this.node -1262042535 +1286196706 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36824,16 +37058,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 447 this -535009440 +1514904058 1 this.node -1262042535 +1286196706 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36861,10 +37095,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 448 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36891,7 +37125,7 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -36901,10 +37135,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 449 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -36931,20 +37165,20 @@ this.cost 2 1 node -1280962114 +1770098351 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 450 node -1280962114 +1770098351 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -36966,16 +37200,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 450 this -389628091 +426383974 1 this.node -1280962114 +1770098351 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -36996,13 +37230,13 @@ this.cost 11 1 node -1280962114 +1770098351 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -37024,10 +37258,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 449 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -37054,10 +37288,10 @@ this.cost 2 1 node -1280962114 +1770098351 1 return -389628091 +426383974 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -37067,10 +37301,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 448 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -37097,13 +37331,13 @@ this.cost 2 1 o -1280962114 +1770098351 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -389628091 +426383974 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -37113,16 +37347,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 451 this -389628091 +426383974 1 this.node -1280962114 +1770098351 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -37147,16 +37381,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 451 this -389628091 +426383974 1 this.node -1280962114 +1770098351 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -37184,10 +37418,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 452 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -37214,7 +37448,7 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -37224,10 +37458,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 453 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -37254,20 +37488,20 @@ this.cost 2 1 node -1556381412 +1224746653 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 454 node -1556381412 +1224746653 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -37289,16 +37523,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 454 this -801685734 +82520979 1 this.node -1556381412 +1224746653 1 this.path -367107347 +1262042535 1 this.path.node -1556381412 +1224746653 1 this.path.path null @@ -37319,13 +37553,13 @@ this.cost 4 1 node -1556381412 +1224746653 1 path -367107347 +1262042535 1 path.node -1556381412 +1224746653 1 path.path null @@ -37347,10 +37581,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 453 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -37377,10 +37611,10 @@ this.cost 2 1 node -1556381412 +1224746653 1 return -801685734 +82520979 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -37390,10 +37624,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 452 this -367107347 +1262042535 1 this.node -1556381412 +1224746653 1 this.path null @@ -37420,13 +37654,13 @@ this.cost 2 1 o -1556381412 +1224746653 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -801685734 +82520979 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -37436,10 +37670,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 455 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -37470,10 +37704,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 455 this -252663198 +452904326 1 this.node -946650629 +1604068167 1 this.path null @@ -37500,7 +37734,7 @@ this.cost 4 1 return -619730060 +1803141738 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -37510,14 +37744,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 456 node -710875540 +1831446806 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 457 node -710875540 +1831446806 1 path null @@ -37545,10 +37779,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 457 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -37575,7 +37809,7 @@ this.cost 4 1 node -710875540 +1831446806 1 path null @@ -37603,10 +37837,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 456 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -37633,17 +37867,17 @@ this.cost 4 1 node -710875540 +1831446806 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 458 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -37674,10 +37908,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 458 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -37711,14 +37945,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 459 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 460 node -1262042535 +1286196706 1 path null @@ -37746,10 +37980,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 460 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -37776,7 +38010,7 @@ this.cost 12 1 node -1262042535 +1286196706 1 path null @@ -37804,10 +38038,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 459 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -37834,17 +38068,17 @@ this.cost 12 1 node -1262042535 +1286196706 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 461 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -37875,10 +38109,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 461 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -37912,14 +38146,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 462 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 463 node -1803141738 +1891274373 1 path null @@ -37947,10 +38181,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 463 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -37977,7 +38211,7 @@ this.cost 1 1 node -1803141738 +1891274373 1 path null @@ -38005,10 +38239,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 462 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38035,17 +38269,17 @@ this.cost 1 1 node -1803141738 +1891274373 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 464 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38076,10 +38310,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 464 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38113,10 +38347,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 465 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -38147,10 +38381,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 465 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -38177,7 +38411,7 @@ this.cost 4 1 return -1666290849 +22285792 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38187,10 +38421,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 466 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -38221,10 +38455,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 466 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -38251,7 +38485,7 @@ this.cost 12 1 return -16058616 +895151566 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38261,10 +38495,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 467 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38295,10 +38529,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 467 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38325,7 +38559,7 @@ this.cost 1 1 return -1461703237 +1689422527 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38335,10 +38569,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 468 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -38369,10 +38603,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 468 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -38399,7 +38633,7 @@ this.cost 4 1 return -1780866226 +95630655 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38409,10 +38643,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 469 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -38443,10 +38677,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 469 this -507430470 +113964102 1 this.node -710875540 +1831446806 1 this.path null @@ -38480,10 +38714,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 470 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -38514,10 +38748,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 470 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -38544,7 +38778,7 @@ this.cost 12 1 return -1539072143 +946650629 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38554,10 +38788,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 471 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -38588,10 +38822,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 471 this -726347053 +1986732837 1 this.node -1262042535 +1286196706 1 this.path null @@ -38625,10 +38859,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 472 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38659,10 +38893,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 472 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38689,7 +38923,7 @@ this.cost 1 1 return -744979286 +1798264627 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38699,10 +38933,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 473 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38733,10 +38967,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 473 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38770,10 +39004,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 474 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38804,10 +39038,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 474 this -1417870223 +1943047903 1 this.node -1803141738 +1891274373 1 this.path null @@ -38834,7 +39068,7 @@ this.cost 1 1 return -1037197792 +1896221758 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -38844,14 +39078,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 475 node -1266336741 +644161395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 476 node -1266336741 +644161395 1 path null @@ -38879,10 +39113,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 476 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -38909,7 +39143,7 @@ this.cost 11 1 node -1266336741 +644161395 1 path null @@ -38937,10 +39171,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 475 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -38967,17 +39201,17 @@ this.cost 11 1 node -1266336741 +644161395 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 477 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39008,10 +39242,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 477 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39045,14 +39279,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 478 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 479 node -1234890038 +437292184 1 path null @@ -39080,10 +39314,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 479 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39110,7 +39344,7 @@ this.cost 5 1 node -1234890038 +437292184 1 path null @@ -39138,10 +39372,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 478 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39168,17 +39402,17 @@ this.cost 5 1 node -1234890038 +437292184 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 480 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39209,10 +39443,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 480 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39246,10 +39480,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 481 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39280,10 +39514,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 481 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39310,7 +39544,7 @@ this.cost 11 1 return -1726871179 +873644290 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -39320,10 +39554,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 482 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39354,10 +39588,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 482 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39384,7 +39618,7 @@ this.cost 5 1 return -282416248 +993887491 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -39394,10 +39628,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 483 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39428,10 +39662,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 483 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39458,7 +39692,7 @@ this.cost 11 1 return -631020266 +1139254871 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -39468,10 +39702,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 484 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39502,10 +39736,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 484 this -1058527445 +1141765226 1 this.node -1266336741 +644161395 1 this.path null @@ -39539,10 +39773,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 485 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39573,10 +39807,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 485 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39603,7 +39837,7 @@ this.cost 5 1 return -1283361776 +492420245 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -39613,10 +39847,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 486 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39647,10 +39881,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 486 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39684,10 +39918,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 487 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39718,10 +39952,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 487 this -916236367 +1881767437 1 this.node -1234890038 +437292184 1 this.path null @@ -39748,7 +39982,7 @@ this.cost 5 1 return -135618764 +1852565824 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -39758,14 +39992,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 488 node -864417081 +1855889762 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 489 node -864417081 +1855889762 1 path null @@ -39793,10 +40027,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 489 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -39823,7 +40057,7 @@ this.cost 2 1 node -864417081 +1855889762 1 path null @@ -39851,10 +40085,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 488 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -39881,17 +40115,17 @@ this.cost 2 1 node -864417081 +1855889762 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 490 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -39922,10 +40156,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 490 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -39959,10 +40193,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 491 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -39993,10 +40227,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 491 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40023,7 +40257,7 @@ this.cost 2 1 return -1863827199 +710875540 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -40033,10 +40267,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 492 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40067,10 +40301,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 492 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40097,7 +40331,7 @@ this.cost 2 1 return -2147258451 +1233672519 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -40107,10 +40341,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 493 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40141,10 +40375,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 493 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40178,10 +40412,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 494 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40208,7 +40442,7 @@ this.cost 2 1 o -510098122 +379415048 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -40218,10 +40452,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 495 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40248,20 +40482,20 @@ this.cost 2 1 node -510098122 +379415048 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 496 node -510098122 +379415048 1 path -531008412 +1886740906 1 path.node -864417081 +1855889762 1 path.path null @@ -40283,16 +40517,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 496 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40313,13 +40547,13 @@ this.cost 22 1 node -510098122 +379415048 1 path -531008412 +1886740906 1 path.node -864417081 +1855889762 1 path.path null @@ -40341,10 +40575,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 495 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40371,10 +40605,10 @@ this.cost 2 1 node -510098122 +379415048 1 return -464417630 +949763793 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -40384,10 +40618,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 494 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40414,13 +40648,13 @@ this.cost 2 1 o -510098122 +379415048 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -464417630 +949763793 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -40430,16 +40664,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 497 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40464,16 +40698,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 497 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40501,10 +40735,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 498 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40531,7 +40765,7 @@ this.cost 2 1 o -1511534212 +434120800 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -40541,10 +40775,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 499 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40571,20 +40805,20 @@ this.cost 2 1 node -1511534212 +434120800 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 500 node -1511534212 +434120800 1 path -531008412 +1886740906 1 path.node -864417081 +1855889762 1 path.path null @@ -40606,16 +40840,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 500 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40636,13 +40870,13 @@ this.cost 14 1 node -1511534212 +434120800 1 path -531008412 +1886740906 1 path.node -864417081 +1855889762 1 path.path null @@ -40664,10 +40898,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 499 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40694,10 +40928,10 @@ this.cost 2 1 node -1511534212 +434120800 1 return -1771440721 +1266336741 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -40707,10 +40941,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 498 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40737,13 +40971,13 @@ this.cost 2 1 o -1511534212 +434120800 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1771440721 +1266336741 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -40753,16 +40987,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 501 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40787,16 +41021,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 501 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40824,10 +41058,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 502 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40854,7 +41088,7 @@ this.cost 2 1 o -2038399486 +1758664217 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -40864,10 +41098,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 503 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -40894,20 +41128,20 @@ this.cost 2 1 node -2038399486 +1758664217 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 504 node -2038399486 +1758664217 1 path -531008412 +1886740906 1 path.node -864417081 +1855889762 1 path.path null @@ -40929,16 +41163,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 504 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -40959,13 +41193,13 @@ this.cost 11 1 node -2038399486 +1758664217 1 path -531008412 +1886740906 1 path.node -864417081 +1855889762 1 path.path null @@ -40987,10 +41221,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 503 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -41017,10 +41251,10 @@ this.cost 2 1 node -2038399486 +1758664217 1 return -573540611 +2052061458 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41030,10 +41264,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 502 this -531008412 +1886740906 1 this.node -864417081 +1855889762 1 this.path null @@ -41060,13 +41294,13 @@ this.cost 2 1 o -2038399486 +1758664217 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -573540611 +2052061458 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41076,16 +41310,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 505 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41110,16 +41344,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 505 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41147,16 +41381,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 506 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41177,7 +41411,7 @@ this.cost 11 1 o -1511534212 +434120800 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -41187,16 +41421,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 507 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41217,26 +41451,26 @@ this.cost 11 1 node -1511534212 +434120800 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 508 node -1511534212 +434120800 1 path -573540611 +2052061458 1 path.node -2038399486 +1758664217 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -41252,22 +41486,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 508 this -1590441341 +409553786 1 this.node -1511534212 +434120800 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -41282,19 +41516,19 @@ this.cost 23 1 node -1511534212 +434120800 1 path -573540611 +2052061458 1 path.node -2038399486 +1758664217 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -41310,16 +41544,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 507 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41340,10 +41574,10 @@ this.cost 11 1 node -1511534212 +434120800 1 return -1590441341 +409553786 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41353,16 +41587,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 506 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41383,13 +41617,13 @@ this.cost 11 1 o -1511534212 +434120800 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1590441341 +409553786 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41399,16 +41633,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 509 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41429,7 +41663,7 @@ this.cost 11 1 o -818663978 +685392667 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -41439,16 +41673,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 510 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41469,26 +41703,26 @@ this.cost 11 1 node -818663978 +685392667 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 511 node -818663978 +685392667 1 path -573540611 +2052061458 1 path.node -2038399486 +1758664217 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -41504,22 +41738,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 511 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -41534,19 +41768,19 @@ this.cost 16 1 node -818663978 +685392667 1 path -573540611 +2052061458 1 path.node -2038399486 +1758664217 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -41562,16 +41796,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 510 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41592,10 +41826,10 @@ this.cost 11 1 node -818663978 +685392667 1 return -357751917 +292271761 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41605,16 +41839,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 509 this -573540611 +2052061458 1 this.node -2038399486 +1758664217 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41635,13 +41869,13 @@ this.cost 11 1 o -818663978 +685392667 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -357751917 +292271761 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41651,22 +41885,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 512 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -41685,22 +41919,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 512 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -41722,16 +41956,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 513 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41752,7 +41986,7 @@ this.cost 14 1 o -864417081 +1855889762 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -41762,16 +41996,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 514 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41792,26 +42026,26 @@ this.cost 14 1 node -864417081 +1855889762 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 515 node -864417081 +1855889762 1 path -1771440721 +1266336741 1 path.node -1511534212 +434120800 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -41827,22 +42061,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 515 this -1929741066 +916386438 1 this.node -864417081 +1855889762 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -41857,19 +42091,19 @@ this.cost 16 1 node -864417081 +1855889762 1 path -1771440721 +1266336741 1 path.node -1511534212 +434120800 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -41885,16 +42119,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 514 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41915,10 +42149,10 @@ this.cost 14 1 node -864417081 +1855889762 1 return -1929741066 +916386438 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41928,16 +42162,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 513 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -41958,13 +42192,13 @@ this.cost 14 1 o -864417081 +1855889762 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1929741066 +916386438 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -41974,16 +42208,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 516 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42004,7 +42238,7 @@ this.cost 14 1 o -510098122 +379415048 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -42014,16 +42248,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 517 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42044,26 +42278,26 @@ this.cost 14 1 node -510098122 +379415048 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 518 node -510098122 +379415048 1 path -1771440721 +1266336741 1 path.node -1511534212 +434120800 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -42079,22 +42313,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 518 this -1860059268 +2101630829 1 this.node -510098122 +379415048 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42109,19 +42343,19 @@ this.cost 34 1 node -510098122 +379415048 1 path -1771440721 +1266336741 1 path.node -1511534212 +434120800 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -42137,16 +42371,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 517 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42167,10 +42401,10 @@ this.cost 14 1 node -510098122 +379415048 1 return -1860059268 +2101630829 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -42180,16 +42414,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 516 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42210,13 +42444,13 @@ this.cost 14 1 o -510098122 +379415048 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1860059268 +2101630829 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -42226,16 +42460,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 519 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42256,7 +42490,7 @@ this.cost 14 1 o -1096667897 +298317147 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -42266,16 +42500,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 520 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42296,26 +42530,26 @@ this.cost 14 1 node -1096667897 +298317147 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 521 node -1096667897 +298317147 1 path -1771440721 +1266336741 1 path.node -1511534212 +434120800 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -42331,22 +42565,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 521 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42361,19 +42595,19 @@ this.cost 15 1 node -1096667897 +298317147 1 path -1771440721 +1266336741 1 path.node -1511534212 +434120800 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -42389,16 +42623,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 520 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42419,10 +42653,10 @@ this.cost 14 1 node -1096667897 +298317147 1 return -1992686325 +1589457531 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -42432,16 +42666,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 519 this -1771440721 +1266336741 1 this.node -1511534212 +434120800 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -42462,13 +42696,13 @@ this.cost 14 1 o -1096667897 +298317147 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1992686325 +1589457531 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -42478,22 +42712,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 522 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42512,22 +42746,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 522 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42549,22 +42783,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 523 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42579,7 +42813,7 @@ this.cost 15 1 o -818663978 +685392667 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -42589,22 +42823,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 524 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42619,29 +42853,29 @@ this.cost 15 1 node -818663978 +685392667 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 525 node -818663978 +685392667 1 path -1992686325 +1589457531 1 path.node -1096667897 +298317147 1 path.path -1771440721 +1266336741 1 path.path.node -1511534212 +434120800 1 path.path.path -531008412 +1886740906 1 path.path.cost 14 @@ -42654,25 +42888,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 525 this -1071589310 +1463638484 1 this.node -818663978 +685392667 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -42684,22 +42918,22 @@ this.cost 20 1 node -818663978 +685392667 1 path -1992686325 +1589457531 1 path.node -1096667897 +298317147 1 path.path -1771440721 +1266336741 1 path.path.node -1511534212 +434120800 1 path.path.path -531008412 +1886740906 1 path.path.cost 14 @@ -42712,22 +42946,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 524 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42742,10 +42976,10 @@ this.cost 15 1 node -818663978 +685392667 1 return -1071589310 +1463638484 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -42755,22 +42989,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 523 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42785,13 +43019,13 @@ this.cost 15 1 o -818663978 +685392667 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1071589310 +1463638484 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -42801,22 +43035,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 526 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42831,7 +43065,7 @@ this.cost 15 1 o -1403669428 +2094307850 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -42841,22 +43075,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 527 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42871,29 +43105,29 @@ this.cost 15 1 node -1403669428 +2094307850 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 528 node -1403669428 +2094307850 1 path -1992686325 +1589457531 1 path.node -1096667897 +298317147 1 path.path -1771440721 +1266336741 1 path.path.node -1511534212 +434120800 1 path.path.path -531008412 +1886740906 1 path.path.cost 14 @@ -42906,25 +43140,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 528 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -42936,22 +43170,22 @@ this.cost 18 1 node -1403669428 +2094307850 1 path -1992686325 +1589457531 1 path.node -1096667897 +298317147 1 path.path -1771440721 +1266336741 1 path.path.node -1511534212 +434120800 1 path.path.path -531008412 +1886740906 1 path.path.cost 14 @@ -42964,22 +43198,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 527 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -42994,10 +43228,10 @@ this.cost 15 1 node -1403669428 +2094307850 1 return -1364214101 +1775060620 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43007,22 +43241,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 526 this -1992686325 +1589457531 1 this.node -1096667897 +298317147 1 this.path -1771440721 +1266336741 1 this.path.node -1511534212 +434120800 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43037,13 +43271,13 @@ this.cost 15 1 o -1403669428 +2094307850 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1364214101 +1775060620 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43053,25 +43287,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 529 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -43087,25 +43321,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 529 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -43124,22 +43358,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 530 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43154,7 +43388,7 @@ this.cost 16 1 o -1511534212 +434120800 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -43164,22 +43398,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 531 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43194,29 +43428,29 @@ this.cost 16 1 node -1511534212 +434120800 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 532 node -1511534212 +434120800 1 path -357751917 +292271761 1 path.node -818663978 +685392667 1 path.path -573540611 +2052061458 1 path.path.node -2038399486 +1758664217 1 path.path.path -531008412 +1886740906 1 path.path.cost 11 @@ -43229,25 +43463,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 532 this -1810980135 +601016216 1 this.node -1511534212 +434120800 1 this.path -357751917 +292271761 1 this.path.node -818663978 +685392667 1 this.path.path -573540611 +2052061458 1 this.path.path.node -2038399486 +1758664217 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 11 @@ -43259,22 +43493,22 @@ this.cost 28 1 node -1511534212 +434120800 1 path -357751917 +292271761 1 path.node -818663978 +685392667 1 path.path -573540611 +2052061458 1 path.path.node -2038399486 +1758664217 1 path.path.path -531008412 +1886740906 1 path.path.cost 11 @@ -43287,22 +43521,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 531 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43317,10 +43551,10 @@ this.cost 16 1 node -1511534212 +434120800 1 return -1810980135 +601016216 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43330,22 +43564,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 530 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43360,13 +43594,13 @@ this.cost 16 1 o -1511534212 +434120800 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1810980135 +601016216 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43376,22 +43610,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 533 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43406,7 +43640,7 @@ this.cost 16 1 o -1096667897 +298317147 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -43416,22 +43650,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 534 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43446,29 +43680,29 @@ this.cost 16 1 node -1096667897 +298317147 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 535 node -1096667897 +298317147 1 path -357751917 +292271761 1 path.node -818663978 +685392667 1 path.path -573540611 +2052061458 1 path.path.node -2038399486 +1758664217 1 path.path.path -531008412 +1886740906 1 path.path.cost 11 @@ -43481,25 +43715,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 535 this -857400014 +1663950471 1 this.node -1096667897 +298317147 1 this.path -357751917 +292271761 1 this.path.node -818663978 +685392667 1 this.path.path -573540611 +2052061458 1 this.path.path.node -2038399486 +1758664217 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 11 @@ -43511,22 +43745,22 @@ this.cost 17 1 node -1096667897 +298317147 1 path -357751917 +292271761 1 path.node -818663978 +685392667 1 path.path -573540611 +2052061458 1 path.path.node -2038399486 +1758664217 1 path.path.path -531008412 +1886740906 1 path.path.cost 11 @@ -43539,22 +43773,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 534 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43569,10 +43803,10 @@ this.cost 16 1 node -1096667897 +298317147 1 return -857400014 +1663950471 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43582,22 +43816,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 533 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43612,13 +43846,13 @@ this.cost 16 1 o -1096667897 +298317147 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -857400014 +1663950471 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43628,22 +43862,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 536 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43658,7 +43892,7 @@ this.cost 16 1 o -1403669428 +2094307850 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -43668,22 +43902,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 537 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43698,29 +43932,29 @@ this.cost 16 1 node -1403669428 +2094307850 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 538 node -1403669428 +2094307850 1 path -357751917 +292271761 1 path.node -818663978 +685392667 1 path.path -573540611 +2052061458 1 path.path.node -2038399486 +1758664217 1 path.path.path -531008412 +1886740906 1 path.path.cost 11 @@ -43733,25 +43967,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 538 this -706763928 +1483514863 1 this.node -1403669428 +2094307850 1 this.path -357751917 +292271761 1 this.path.node -818663978 +685392667 1 this.path.path -573540611 +2052061458 1 this.path.path.node -2038399486 +1758664217 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 11 @@ -43763,22 +43997,22 @@ this.cost 19 1 node -1403669428 +2094307850 1 path -357751917 +292271761 1 path.node -818663978 +685392667 1 path.path -573540611 +2052061458 1 path.path.node -2038399486 +1758664217 1 path.path.path -531008412 +1886740906 1 path.path.cost 11 @@ -43791,22 +44025,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 537 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43821,10 +44055,10 @@ this.cost 16 1 node -1403669428 +2094307850 1 return -706763928 +1483514863 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43834,22 +44068,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 536 this -357751917 +292271761 1 this.node -818663978 +685392667 1 this.path -573540611 +2052061458 1 this.path.node -2038399486 +1758664217 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -43864,13 +44098,13 @@ this.cost 16 1 o -1403669428 +2094307850 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -706763928 +1483514863 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -43880,25 +44114,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 539 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -43910,7 +44144,7 @@ this.cost 18 1 o -849286339 +1149160771 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -43920,25 +44154,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 540 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -43950,29 +44184,29 @@ this.cost 18 1 node -849286339 +1149160771 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 541 node -849286339 +1149160771 1 path -1364214101 +1775060620 1 path.node -1403669428 +2094307850 1 path.path -1992686325 +1589457531 1 path.path.node -1096667897 +298317147 1 path.path.path -1771440721 +1266336741 1 path.path.cost 15 @@ -43985,25 +44219,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 541 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44015,22 +44249,22 @@ this.cost 21 1 node -849286339 +1149160771 1 path -1364214101 +1775060620 1 path.node -1403669428 +2094307850 1 path.path -1992686325 +1589457531 1 path.path.node -1096667897 +298317147 1 path.path.path -1771440721 +1266336741 1 path.path.cost 15 @@ -44043,25 +44277,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 540 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -44073,10 +44307,10 @@ this.cost 18 1 node -849286339 +1149160771 1 return -1779181611 +1624640726 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -44086,25 +44320,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 539 this -1364214101 +1775060620 1 this.node -1403669428 +2094307850 1 this.path -1992686325 +1589457531 1 this.path.node -1096667897 +298317147 1 this.path.path -1771440721 +1266336741 1 this.path.path.node -1511534212 +434120800 1 this.path.path.path -531008412 +1886740906 1 this.path.path.cost 14 @@ -44116,13 +44350,13 @@ this.cost 18 1 o -849286339 +1149160771 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1779181611 +1624640726 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -44132,25 +44366,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 542 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44166,25 +44400,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 542 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44203,25 +44437,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 543 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44233,7 +44467,7 @@ this.cost 21 1 o -1143035249 +82110277 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -44243,25 +44477,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 544 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44273,29 +44507,29 @@ this.cost 21 1 node -1143035249 +82110277 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 545 node -1143035249 +82110277 1 path -1779181611 +1624640726 1 path.node -849286339 +1149160771 1 path.path -1364214101 +1775060620 1 path.path.node -1403669428 +2094307850 1 path.path.path -1992686325 +1589457531 1 path.path.cost 18 @@ -44308,25 +44542,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 545 this -1752207528 +1342924165 1 this.node -1143035249 +82110277 1 this.path -1779181611 +1624640726 1 this.path.node -849286339 +1149160771 1 this.path.path -1364214101 +1775060620 1 this.path.path.node -1403669428 +2094307850 1 this.path.path.path -1992686325 +1589457531 1 this.path.path.cost 18 @@ -44338,22 +44572,22 @@ this.cost 32 1 node -1143035249 +82110277 1 path -1779181611 +1624640726 1 path.node -849286339 +1149160771 1 path.path -1364214101 +1775060620 1 path.path.node -1403669428 +2094307850 1 path.path.path -1992686325 +1589457531 1 path.path.cost 18 @@ -44366,25 +44600,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 544 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44396,10 +44630,10 @@ this.cost 21 1 node -1143035249 +82110277 1 return -1752207528 +1342924165 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -44409,25 +44643,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 543 this -1779181611 +1624640726 1 this.node -849286339 +1149160771 1 this.path -1364214101 +1775060620 1 this.path.node -1403669428 +2094307850 1 this.path.path -1992686325 +1589457531 1 this.path.path.node -1096667897 +298317147 1 this.path.path.path -1771440721 +1266336741 1 this.path.path.cost 15 @@ -44439,13 +44673,13 @@ this.cost 21 1 o -1143035249 +82110277 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1752207528 +1342924165 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -44455,25 +44689,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 546 this -1752207528 +1342924165 1 this.node -1143035249 +82110277 1 this.path -1779181611 +1624640726 1 this.path.node -849286339 +1149160771 1 this.path.path -1364214101 +1775060620 1 this.path.path.node -1403669428 +2094307850 1 this.path.path.path -1992686325 +1589457531 1 this.path.path.cost 18 @@ -44489,25 +44723,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 546 this -1752207528 +1342924165 1 this.node -1143035249 +82110277 1 this.path -1779181611 +1624640726 1 this.path.node -849286339 +1149160771 1 this.path.path -1364214101 +1775060620 1 this.path.path.node -1403669428 +2094307850 1 this.path.path.path -1992686325 +1589457531 1 this.path.path.cost 18 @@ -44526,16 +44760,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 547 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -44556,7 +44790,7 @@ this.cost 22 1 o -908671785 +473311185 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -44566,16 +44800,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 548 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -44596,26 +44830,26 @@ this.cost 22 1 node -908671785 +473311185 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 549 node -908671785 +473311185 1 path -464417630 +949763793 1 path.node -510098122 +379415048 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -44631,22 +44865,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 549 this -1290476678 +661657807 1 this.node -908671785 +473311185 1 this.path -464417630 +949763793 1 this.path.node -510098122 +379415048 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -44661,19 +44895,19 @@ this.cost 26 1 node -908671785 +473311185 1 path -464417630 +949763793 1 path.node -510098122 +379415048 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -44689,16 +44923,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 548 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -44719,10 +44953,10 @@ this.cost 22 1 node -908671785 +473311185 1 return -1290476678 +661657807 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -44732,16 +44966,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 547 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -44762,13 +44996,13 @@ this.cost 22 1 o -908671785 +473311185 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1290476678 +661657807 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -44778,22 +45012,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 550 this -1290476678 +661657807 1 this.node -908671785 +473311185 1 this.path -464417630 +949763793 1 this.path.node -510098122 +379415048 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -44812,22 +45046,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 550 this -1290476678 +661657807 1 this.node -908671785 +473311185 1 this.path -464417630 +949763793 1 this.path.node -510098122 +379415048 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -44849,16 +45083,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 551 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -44879,7 +45113,7 @@ this.cost 22 1 o -849286339 +1149160771 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -44889,16 +45123,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 552 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -44919,26 +45153,26 @@ this.cost 22 1 node -849286339 +1149160771 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 553 node -849286339 +1149160771 1 path -464417630 +949763793 1 path.node -510098122 +379415048 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -44954,22 +45188,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 553 this -1604176093 +812438083 1 this.node -849286339 +1149160771 1 this.path -464417630 +949763793 1 this.path.node -510098122 +379415048 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -44984,19 +45218,19 @@ this.cost 25 1 node -849286339 +1149160771 1 path -464417630 +949763793 1 path.node -510098122 +379415048 1 path.path -531008412 +1886740906 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -45012,16 +45246,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 552 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45042,10 +45276,10 @@ this.cost 22 1 node -849286339 +1149160771 1 return -1604176093 +812438083 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -45055,16 +45289,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 551 this -464417630 +949763793 1 this.node -510098122 +379415048 1 this.path -531008412 +1886740906 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45085,13 +45319,13 @@ this.cost 22 1 o -849286339 +1149160771 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1604176093 +812438083 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -45101,22 +45335,22 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 554 this -1290476678 +661657807 1 this.node -908671785 +473311185 1 this.path -464417630 +949763793 1 this.path.node -510098122 +379415048 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -45135,22 +45369,22 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 554 this -1290476678 +661657807 1 this.node -908671785 +473311185 1 this.path -464417630 +949763793 1 this.path.node -510098122 +379415048 1 this.path.path -531008412 +1886740906 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -45165,7 +45399,7 @@ this.cost 26 1 return -1877890613 +945833355 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -45175,14 +45409,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 555 node -864417081 +1855889762 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 556 node -864417081 +1855889762 1 path null @@ -45210,10 +45444,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 556 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45240,7 +45474,7 @@ this.cost 2 1 node -864417081 +1855889762 1 path null @@ -45268,10 +45502,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 555 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45298,17 +45532,17 @@ this.cost 2 1 node -864417081 +1855889762 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 557 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45339,10 +45573,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 557 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45376,10 +45610,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 558 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45410,10 +45644,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 558 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45440,7 +45674,7 @@ this.cost 2 1 return -1307462318 +1006590326 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -45450,10 +45684,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 559 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45484,10 +45718,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 559 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45514,7 +45748,7 @@ this.cost 2 1 return -1466502522 +2034921663 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -45524,10 +45758,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 560 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45558,10 +45792,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 560 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45595,10 +45829,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 561 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45625,7 +45859,7 @@ this.cost 2 1 o -838070635 +103827919 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -45635,10 +45869,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 562 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45665,20 +45899,20 @@ this.cost 2 1 node -838070635 +103827919 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 563 node -838070635 +103827919 1 path -140372732 +947242391 1 path.node -864417081 +1855889762 1 path.path null @@ -45700,16 +45934,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 563 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45730,13 +45964,13 @@ this.cost 3 1 node -838070635 +103827919 1 path -140372732 +947242391 1 path.node -864417081 +1855889762 1 path.path null @@ -45758,10 +45992,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 562 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45788,10 +46022,10 @@ this.cost 2 1 node -838070635 +103827919 1 return -107921772 +1279113269 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -45801,10 +46035,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 561 this -140372732 +947242391 1 this.node -864417081 +1855889762 1 this.path null @@ -45831,13 +46065,13 @@ this.cost 2 1 o -838070635 +103827919 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -107921772 +1279113269 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -45847,16 +46081,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 564 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45881,16 +46115,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 564 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45918,16 +46152,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 565 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45948,7 +46182,7 @@ this.cost 3 1 o -1365023936 +1745405613 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -45958,16 +46192,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 566 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -45988,26 +46222,26 @@ this.cost 3 1 node -1365023936 +1745405613 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 567 node -1365023936 +1745405613 1 path -107921772 +1279113269 1 path.node -838070635 +103827919 1 path.path -140372732 +947242391 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -46023,22 +46257,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 567 this -389491451 +405519671 1 this.node -1365023936 +1745405613 1 this.path -107921772 +1279113269 1 this.path.node -838070635 +103827919 1 this.path.path -140372732 +947242391 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -46053,19 +46287,19 @@ this.cost 5 1 node -1365023936 +1745405613 1 path -107921772 +1279113269 1 path.node -838070635 +103827919 1 path.path -140372732 +947242391 1 path.path.node -864417081 +1855889762 1 path.path.path null @@ -46081,16 +46315,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 566 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -46111,10 +46345,10 @@ this.cost 3 1 node -1365023936 +1745405613 1 return -389491451 +405519671 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -46124,16 +46358,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 565 this -107921772 +1279113269 1 this.node -838070635 +103827919 1 this.path -140372732 +947242391 1 this.path.node -864417081 +1855889762 1 this.path.path null @@ -46154,13 +46388,13 @@ this.cost 3 1 o -1365023936 +1745405613 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -389491451 +405519671 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -46170,22 +46404,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 568 this -389491451 +405519671 1 this.node -1365023936 +1745405613 1 this.path -107921772 +1279113269 1 this.path.node -838070635 +103827919 1 this.path.path -140372732 +947242391 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -46204,22 +46438,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 568 this -389491451 +405519671 1 this.node -1365023936 +1745405613 1 this.path -107921772 +1279113269 1 this.path.node -838070635 +103827919 1 this.path.path -140372732 +947242391 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -46241,22 +46475,22 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 569 this -389491451 +405519671 1 this.node -1365023936 +1745405613 1 this.path -107921772 +1279113269 1 this.path.node -838070635 +103827919 1 this.path.path -140372732 +947242391 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -46275,22 +46509,22 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 569 this -389491451 +405519671 1 this.node -1365023936 +1745405613 1 this.path -107921772 +1279113269 1 this.path.node -838070635 +103827919 1 this.path.path -140372732 +947242391 1 this.path.path.node -864417081 +1855889762 1 this.path.path.path null @@ -46305,7 +46539,7 @@ this.cost 5 1 return -652660901 +1603498566 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -46315,14 +46549,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 570 node -2072777878 +1228112559 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 571 node -2072777878 +1228112559 1 path null @@ -46350,10 +46584,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 571 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46380,7 +46614,7 @@ this.cost 2 1 node -2072777878 +1228112559 1 path null @@ -46408,10 +46642,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 570 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46438,17 +46672,17 @@ this.cost 2 1 node -2072777878 +1228112559 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 572 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46479,10 +46713,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 572 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46516,10 +46750,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 573 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46550,10 +46784,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 573 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46580,7 +46814,7 @@ this.cost 2 1 return -825075423 +1292148968 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -46590,10 +46824,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 574 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46624,10 +46858,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 574 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46654,7 +46888,7 @@ this.cost 2 1 return -740725682 +1793066712 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -46664,10 +46898,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 575 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46698,10 +46932,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 575 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46735,10 +46969,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 576 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46765,7 +46999,7 @@ this.cost 2 1 o -413835715 +434210233 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -46775,10 +47009,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 577 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46805,20 +47039,20 @@ this.cost 2 1 node -413835715 +434210233 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 578 node -413835715 +434210233 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -46840,16 +47074,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 578 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -46870,13 +47104,13 @@ this.cost 22 1 node -413835715 +434210233 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -46898,10 +47132,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 577 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46928,10 +47162,10 @@ this.cost 2 1 node -413835715 +434210233 1 return -1784813019 +621953525 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -46941,10 +47175,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 576 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -46971,13 +47205,13 @@ this.cost 2 1 o -413835715 +434210233 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1784813019 +621953525 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -46987,16 +47221,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 579 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47021,16 +47255,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 579 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47058,10 +47292,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 580 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47088,7 +47322,7 @@ this.cost 2 1 o -1300829037 +1369984726 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -47098,10 +47332,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 581 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47128,20 +47362,20 @@ this.cost 2 1 node -1300829037 +1369984726 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 582 node -1300829037 +1369984726 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -47163,16 +47397,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 582 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47193,13 +47427,13 @@ this.cost 14 1 node -1300829037 +1369984726 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -47221,10 +47455,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 581 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47251,10 +47485,10 @@ this.cost 2 1 node -1300829037 +1369984726 1 return -1650098399 +13626748 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -47264,10 +47498,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 580 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47294,13 +47528,13 @@ this.cost 2 1 o -1300829037 +1369984726 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1650098399 +13626748 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -47310,16 +47544,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 583 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47344,16 +47578,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 583 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47381,10 +47615,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 584 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47411,7 +47645,7 @@ this.cost 2 1 o -599974635 +1391487054 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -47421,10 +47655,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 585 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47451,20 +47685,20 @@ this.cost 2 1 node -599974635 +1391487054 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 586 node -599974635 +1391487054 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -47486,16 +47720,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 586 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47516,13 +47750,13 @@ this.cost 11 1 node -599974635 +1391487054 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -47544,10 +47778,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 585 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47574,10 +47808,10 @@ this.cost 2 1 node -599974635 +1391487054 1 return -1337967780 +626000748 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -47587,10 +47821,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 584 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47617,13 +47851,13 @@ this.cost 2 1 o -599974635 +1391487054 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1337967780 +626000748 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -47633,16 +47867,16 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 587 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47667,16 +47901,16 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 587 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47704,10 +47938,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 588 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47734,7 +47968,7 @@ this.cost 2 1 o -2072777878 +1228112559 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -47744,10 +47978,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 589 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47774,20 +48008,20 @@ this.cost 2 1 node -2072777878 +1228112559 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 590 node -2072777878 +1228112559 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -47809,16 +48043,16 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 590 this -923210723 +672184983 1 this.node -2072777878 +1228112559 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47839,13 +48073,13 @@ this.cost 4 1 node -2072777878 +1228112559 1 path -698073912 +1422447796 1 path.node -2072777878 +1228112559 1 path.path null @@ -47867,10 +48101,10 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 589 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47897,10 +48131,10 @@ this.cost 2 1 node -2072777878 +1228112559 1 return -923210723 +672184983 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -47910,10 +48144,10 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 588 this -698073912 +1422447796 1 this.node -2072777878 +1228112559 1 this.path null @@ -47940,13 +48174,13 @@ this.cost 2 1 o -2072777878 +1228112559 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -923210723 +672184983 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -47956,16 +48190,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 591 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -47986,7 +48220,7 @@ this.cost 11 1 o -1300829037 +1369984726 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -47996,16 +48230,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 592 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48026,26 +48260,26 @@ this.cost 11 1 node -1300829037 +1369984726 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 593 node -1300829037 +1369984726 1 path -1337967780 +626000748 1 path.node -599974635 +1391487054 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48061,22 +48295,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 593 this -833271886 +1649026061 1 this.node -1300829037 +1369984726 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -48091,19 +48325,19 @@ this.cost 23 1 node -1300829037 +1369984726 1 path -1337967780 +626000748 1 path.node -599974635 +1391487054 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48119,16 +48353,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 592 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48149,10 +48383,10 @@ this.cost 11 1 node -1300829037 +1369984726 1 return -833271886 +1649026061 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48162,16 +48396,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 591 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48192,13 +48426,13 @@ this.cost 11 1 o -1300829037 +1369984726 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -833271886 +1649026061 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48208,16 +48442,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 594 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48238,7 +48472,7 @@ this.cost 11 1 o -1059725915 +1904542692 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -48248,16 +48482,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 595 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48278,26 +48512,26 @@ this.cost 11 1 node -1059725915 +1904542692 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 596 node -1059725915 +1904542692 1 path -1337967780 +626000748 1 path.node -599974635 +1391487054 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48313,22 +48547,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 596 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -48343,19 +48577,19 @@ this.cost 16 1 node -1059725915 +1904542692 1 path -1337967780 +626000748 1 path.node -599974635 +1391487054 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48371,16 +48605,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 595 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48401,10 +48635,10 @@ this.cost 11 1 node -1059725915 +1904542692 1 return -1731568834 +1405265909 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48414,16 +48648,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 594 this -1337967780 +626000748 1 this.node -599974635 +1391487054 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48444,13 +48678,13 @@ this.cost 11 1 o -1059725915 +1904542692 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1731568834 +1405265909 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48460,22 +48694,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 597 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -48494,22 +48728,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 597 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -48531,16 +48765,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 598 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48561,7 +48795,7 @@ this.cost 14 1 o -2072777878 +1228112559 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -48571,16 +48805,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 599 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48601,26 +48835,26 @@ this.cost 14 1 node -2072777878 +1228112559 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 600 node -2072777878 +1228112559 1 path -1650098399 +13626748 1 path.node -1300829037 +1369984726 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48636,22 +48870,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 600 this -1926492541 +278982857 1 this.node -2072777878 +1228112559 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -48666,19 +48900,19 @@ this.cost 16 1 node -2072777878 +1228112559 1 path -1650098399 +13626748 1 path.node -1300829037 +1369984726 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48694,16 +48928,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 599 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48724,10 +48958,10 @@ this.cost 14 1 node -2072777878 +1228112559 1 return -1926492541 +278982857 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48737,16 +48971,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 598 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48767,13 +49001,13 @@ this.cost 14 1 o -2072777878 +1228112559 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1926492541 +278982857 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48783,16 +49017,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 601 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48813,7 +49047,7 @@ this.cost 14 1 o -413835715 +434210233 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -48823,16 +49057,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 602 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48853,26 +49087,26 @@ this.cost 14 1 node -413835715 +434210233 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 603 node -413835715 +434210233 1 path -1650098399 +13626748 1 path.node -1300829037 +1369984726 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48888,22 +49122,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 603 this -949190768 +908076198 1 this.node -413835715 +434210233 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -48918,19 +49152,19 @@ this.cost 34 1 node -413835715 +434210233 1 path -1650098399 +13626748 1 path.node -1300829037 +1369984726 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -48946,16 +49180,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 602 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -48976,10 +49210,10 @@ this.cost 14 1 node -413835715 +434210233 1 return -949190768 +908076198 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -48989,16 +49223,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 601 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -49019,13 +49253,13 @@ this.cost 14 1 o -413835715 +434210233 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -949190768 +908076198 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49035,16 +49269,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 604 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -49065,7 +49299,7 @@ this.cost 14 1 o -1540707860 +2017864204 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -49075,16 +49309,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 605 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -49105,26 +49339,26 @@ this.cost 14 1 node -1540707860 +2017864204 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 606 node -1540707860 +2017864204 1 path -1650098399 +13626748 1 path.node -1300829037 +1369984726 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -49140,22 +49374,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 606 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49170,19 +49404,19 @@ this.cost 15 1 node -1540707860 +2017864204 1 path -1650098399 +13626748 1 path.node -1300829037 +1369984726 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -49198,16 +49432,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 605 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -49228,10 +49462,10 @@ this.cost 14 1 node -1540707860 +2017864204 1 return -319187494 +1181923204 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49241,16 +49475,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 604 this -1650098399 +13626748 1 this.node -1300829037 +1369984726 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -49271,13 +49505,13 @@ this.cost 14 1 o -1540707860 +2017864204 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -319187494 +1181923204 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49287,22 +49521,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 607 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49321,22 +49555,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 607 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49358,22 +49592,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 608 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49388,7 +49622,7 @@ this.cost 15 1 o -1059725915 +1904542692 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -49398,22 +49632,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 609 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49428,29 +49662,29 @@ this.cost 15 1 node -1059725915 +1904542692 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 610 node -1059725915 +1904542692 1 path -319187494 +1181923204 1 path.node -1540707860 +2017864204 1 path.path -1650098399 +13626748 1 path.path.node -1300829037 +1369984726 1 path.path.path -698073912 +1422447796 1 path.path.cost 14 @@ -49463,25 +49697,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 610 this -170061452 +359554878 1 this.node -1059725915 +1904542692 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -49493,22 +49727,22 @@ this.cost 20 1 node -1059725915 +1904542692 1 path -319187494 +1181923204 1 path.node -1540707860 +2017864204 1 path.path -1650098399 +13626748 1 path.path.node -1300829037 +1369984726 1 path.path.path -698073912 +1422447796 1 path.path.cost 14 @@ -49521,22 +49755,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 609 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49551,10 +49785,10 @@ this.cost 15 1 node -1059725915 +1904542692 1 return -170061452 +359554878 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49564,22 +49798,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 608 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49594,13 +49828,13 @@ this.cost 15 1 o -1059725915 +1904542692 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -170061452 +359554878 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49610,22 +49844,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 611 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49640,7 +49874,7 @@ this.cost 15 1 o -2069573254 +19851888 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -49650,22 +49884,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 612 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49680,29 +49914,29 @@ this.cost 15 1 node -2069573254 +19851888 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 613 node -2069573254 +19851888 1 path -319187494 +1181923204 1 path.node -1540707860 +2017864204 1 path.path -1650098399 +13626748 1 path.path.node -1300829037 +1369984726 1 path.path.path -698073912 +1422447796 1 path.path.cost 14 @@ -49715,25 +49949,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 613 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -49745,22 +49979,22 @@ this.cost 18 1 node -2069573254 +19851888 1 path -319187494 +1181923204 1 path.node -1540707860 +2017864204 1 path.path -1650098399 +13626748 1 path.path.node -1300829037 +1369984726 1 path.path.path -698073912 +1422447796 1 path.path.cost 14 @@ -49773,22 +50007,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 612 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49803,10 +50037,10 @@ this.cost 15 1 node -2069573254 +19851888 1 return -525049519 +790716331 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49816,22 +50050,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 611 this -319187494 +1181923204 1 this.node -1540707860 +2017864204 1 this.path -1650098399 +13626748 1 this.path.node -1300829037 +1369984726 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49846,13 +50080,13 @@ this.cost 15 1 o -2069573254 +19851888 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -525049519 +790716331 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -49862,25 +50096,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 614 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -49896,25 +50130,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 614 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -49933,22 +50167,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 615 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -49963,7 +50197,7 @@ this.cost 16 1 o -1300829037 +1369984726 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -49973,22 +50207,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 616 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50003,29 +50237,29 @@ this.cost 16 1 node -1300829037 +1369984726 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 617 node -1300829037 +1369984726 1 path -1731568834 +1405265909 1 path.node -1059725915 +1904542692 1 path.path -1337967780 +626000748 1 path.path.node -599974635 +1391487054 1 path.path.path -698073912 +1422447796 1 path.path.cost 11 @@ -50038,25 +50272,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 617 this -496960310 +940567481 1 this.node -1300829037 +1369984726 1 this.path -1731568834 +1405265909 1 this.path.node -1059725915 +1904542692 1 this.path.path -1337967780 +626000748 1 this.path.path.node -599974635 +1391487054 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 11 @@ -50068,22 +50302,22 @@ this.cost 28 1 node -1300829037 +1369984726 1 path -1731568834 +1405265909 1 path.node -1059725915 +1904542692 1 path.path -1337967780 +626000748 1 path.path.node -599974635 +1391487054 1 path.path.path -698073912 +1422447796 1 path.path.cost 11 @@ -50096,22 +50330,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 616 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50126,10 +50360,10 @@ this.cost 16 1 node -1300829037 +1369984726 1 return -496960310 +940567481 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50139,22 +50373,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 615 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50169,13 +50403,13 @@ this.cost 16 1 o -1300829037 +1369984726 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -496960310 +940567481 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50185,22 +50419,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 618 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50215,7 +50449,7 @@ this.cost 16 1 o -1540707860 +2017864204 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -50225,22 +50459,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 619 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50255,29 +50489,29 @@ this.cost 16 1 node -1540707860 +2017864204 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 620 node -1540707860 +2017864204 1 path -1731568834 +1405265909 1 path.node -1059725915 +1904542692 1 path.path -1337967780 +626000748 1 path.path.node -599974635 +1391487054 1 path.path.path -698073912 +1422447796 1 path.path.cost 11 @@ -50290,25 +50524,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 620 this -848026987 +490527600 1 this.node -1540707860 +2017864204 1 this.path -1731568834 +1405265909 1 this.path.node -1059725915 +1904542692 1 this.path.path -1337967780 +626000748 1 this.path.path.node -599974635 +1391487054 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 11 @@ -50320,22 +50554,22 @@ this.cost 17 1 node -1540707860 +2017864204 1 path -1731568834 +1405265909 1 path.node -1059725915 +1904542692 1 path.path -1337967780 +626000748 1 path.path.node -599974635 +1391487054 1 path.path.path -698073912 +1422447796 1 path.path.cost 11 @@ -50348,22 +50582,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 619 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50378,10 +50612,10 @@ this.cost 16 1 node -1540707860 +2017864204 1 return -848026987 +490527600 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50391,22 +50625,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 618 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50421,13 +50655,13 @@ this.cost 16 1 o -1540707860 +2017864204 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -848026987 +490527600 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50437,22 +50671,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 621 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50467,7 +50701,7 @@ this.cost 16 1 o -2069573254 +19851888 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -50477,22 +50711,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 622 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50507,29 +50741,29 @@ this.cost 16 1 node -2069573254 +19851888 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 623 node -2069573254 +19851888 1 path -1731568834 +1405265909 1 path.node -1059725915 +1904542692 1 path.path -1337967780 +626000748 1 path.path.node -599974635 +1391487054 1 path.path.path -698073912 +1422447796 1 path.path.cost 11 @@ -50542,25 +50776,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 623 this -2088089017 +107652367 1 this.node -2069573254 +19851888 1 this.path -1731568834 +1405265909 1 this.path.node -1059725915 +1904542692 1 this.path.path -1337967780 +626000748 1 this.path.path.node -599974635 +1391487054 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 11 @@ -50572,22 +50806,22 @@ this.cost 19 1 node -2069573254 +19851888 1 path -1731568834 +1405265909 1 path.node -1059725915 +1904542692 1 path.path -1337967780 +626000748 1 path.path.node -599974635 +1391487054 1 path.path.path -698073912 +1422447796 1 path.path.cost 11 @@ -50600,22 +50834,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 622 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50630,10 +50864,10 @@ this.cost 16 1 node -2069573254 +19851888 1 return -2088089017 +107652367 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50643,22 +50877,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 621 this -1731568834 +1405265909 1 this.node -1059725915 +1904542692 1 this.path -1337967780 +626000748 1 this.path.node -599974635 +1391487054 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -50673,13 +50907,13 @@ this.cost 16 1 o -2069573254 +19851888 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -2088089017 +107652367 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50689,25 +50923,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 624 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -50719,7 +50953,7 @@ this.cost 18 1 o -334349445 +1132101395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -50729,25 +50963,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 625 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -50759,29 +50993,29 @@ this.cost 18 1 node -334349445 +1132101395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 626 node -334349445 +1132101395 1 path -525049519 +790716331 1 path.node -2069573254 +19851888 1 path.path -319187494 +1181923204 1 path.path.node -1540707860 +2017864204 1 path.path.path -1650098399 +13626748 1 path.path.cost 15 @@ -50794,25 +51028,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 626 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -50824,22 +51058,22 @@ this.cost 21 1 node -334349445 +1132101395 1 path -525049519 +790716331 1 path.node -2069573254 +19851888 1 path.path -319187494 +1181923204 1 path.path.node -1540707860 +2017864204 1 path.path.path -1650098399 +13626748 1 path.path.cost 15 @@ -50852,25 +51086,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 625 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -50882,10 +51116,10 @@ this.cost 18 1 node -334349445 +1132101395 1 return -1593901563 +523033345 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50895,25 +51129,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 624 this -525049519 +790716331 1 this.node -2069573254 +19851888 1 this.path -319187494 +1181923204 1 this.path.node -1540707860 +2017864204 1 this.path.path -1650098399 +13626748 1 this.path.path.node -1300829037 +1369984726 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 14 @@ -50925,13 +51159,13 @@ this.cost 18 1 o -334349445 +1132101395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1593901563 +523033345 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -50941,25 +51175,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 627 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -50975,25 +51209,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 627 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -51012,25 +51246,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 628 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -51042,7 +51276,7 @@ this.cost 21 1 o -992556663 +970862244 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -51052,25 +51286,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 629 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -51082,29 +51316,29 @@ this.cost 21 1 node -992556663 +970862244 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 630 node -992556663 +970862244 1 path -1593901563 +523033345 1 path.node -334349445 +1132101395 1 path.path -525049519 +790716331 1 path.path.node -2069573254 +19851888 1 path.path.path -319187494 +1181923204 1 path.path.cost 18 @@ -51117,25 +51351,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 630 this -246865145 +700985002 1 this.node -992556663 +970862244 1 this.path -1593901563 +523033345 1 this.path.node -334349445 +1132101395 1 this.path.path -525049519 +790716331 1 this.path.path.node -2069573254 +19851888 1 this.path.path.path -319187494 +1181923204 1 this.path.path.cost 18 @@ -51147,22 +51381,22 @@ this.cost 32 1 node -992556663 +970862244 1 path -1593901563 +523033345 1 path.node -334349445 +1132101395 1 path.path -525049519 +790716331 1 path.path.node -2069573254 +19851888 1 path.path.path -319187494 +1181923204 1 path.path.cost 18 @@ -51175,25 +51409,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 629 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -51205,10 +51439,10 @@ this.cost 21 1 node -992556663 +970862244 1 return -246865145 +700985002 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -51218,25 +51452,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 628 this -1593901563 +523033345 1 this.node -334349445 +1132101395 1 this.path -525049519 +790716331 1 this.path.node -2069573254 +19851888 1 this.path.path -319187494 +1181923204 1 this.path.path.node -1540707860 +2017864204 1 this.path.path.path -1650098399 +13626748 1 this.path.path.cost 15 @@ -51248,13 +51482,13 @@ this.cost 21 1 o -992556663 +970862244 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -246865145 +700985002 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -51264,25 +51498,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 631 this -246865145 +700985002 1 this.node -992556663 +970862244 1 this.path -1593901563 +523033345 1 this.path.node -334349445 +1132101395 1 this.path.path -525049519 +790716331 1 this.path.path.node -2069573254 +19851888 1 this.path.path.path -319187494 +1181923204 1 this.path.path.cost 18 @@ -51298,25 +51532,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 631 this -246865145 +700985002 1 this.node -992556663 +970862244 1 this.path -1593901563 +523033345 1 this.path.node -334349445 +1132101395 1 this.path.path -525049519 +790716331 1 this.path.path.node -2069573254 +19851888 1 this.path.path.path -319187494 +1181923204 1 this.path.path.cost 18 @@ -51335,16 +51569,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 632 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51365,7 +51599,7 @@ this.cost 22 1 o -124086011 +359641172 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -51375,16 +51609,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 633 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51405,26 +51639,26 @@ this.cost 22 1 node -124086011 +359641172 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 634 node -124086011 +359641172 1 path -1784813019 +621953525 1 path.node -413835715 +434210233 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -51440,22 +51674,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 634 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -51470,19 +51704,19 @@ this.cost 26 1 node -124086011 +359641172 1 path -1784813019 +621953525 1 path.node -413835715 +434210233 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -51498,16 +51732,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 633 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51528,10 +51762,10 @@ this.cost 22 1 node -124086011 +359641172 1 return -306965640 +1470195146 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -51541,16 +51775,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 632 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51571,13 +51805,13 @@ this.cost 22 1 o -124086011 +359641172 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -306965640 +1470195146 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -51587,22 +51821,22 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 635 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -51621,22 +51855,22 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 635 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -51658,16 +51892,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 636 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51688,7 +51922,7 @@ this.cost 22 1 o -334349445 +1132101395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -51698,16 +51932,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 637 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51728,26 +51962,26 @@ this.cost 22 1 node -334349445 +1132101395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 638 node -334349445 +1132101395 1 path -1784813019 +621953525 1 path.node -413835715 +434210233 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -51763,22 +51997,22 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 638 this -915791386 +622976440 1 this.node -334349445 +1132101395 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -51793,19 +52027,19 @@ this.cost 25 1 node -334349445 +1132101395 1 path -1784813019 +621953525 1 path.node -413835715 +434210233 1 path.path -698073912 +1422447796 1 path.path.node -2072777878 +1228112559 1 path.path.path null @@ -51821,16 +52055,16 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 637 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51851,10 +52085,10 @@ this.cost 22 1 node -334349445 +1132101395 1 return -915791386 +622976440 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -51864,16 +52098,16 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 636 this -1784813019 +621953525 1 this.node -413835715 +434210233 1 this.path -698073912 +1422447796 1 this.path.node -2072777878 +1228112559 1 this.path.path null @@ -51894,13 +52128,13 @@ this.cost 22 1 o -334349445 +1132101395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -915791386 +622976440 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -51910,22 +52144,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 639 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -51940,7 +52174,7 @@ this.cost 26 1 o -690526453 +1382247955 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -51950,22 +52184,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 640 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -51980,29 +52214,29 @@ this.cost 26 1 node -690526453 +1382247955 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 641 node -690526453 +1382247955 1 path -306965640 +1470195146 1 path.node -124086011 +359641172 1 path.path -1784813019 +621953525 1 path.path.node -413835715 +434210233 1 path.path.path -698073912 +1422447796 1 path.path.cost 22 @@ -52015,25 +52249,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 641 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52045,22 +52279,22 @@ this.cost 30 1 node -690526453 +1382247955 1 path -306965640 +1470195146 1 path.node -124086011 +359641172 1 path.path -1784813019 +621953525 1 path.path.node -413835715 +434210233 1 path.path.path -698073912 +1422447796 1 path.path.cost 22 @@ -52073,22 +52307,22 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 640 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -52103,10 +52337,10 @@ this.cost 26 1 node -690526453 +1382247955 1 return -676467183 +2110770086 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52116,22 +52350,22 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 639 this -306965640 +1470195146 1 this.node -124086011 +359641172 1 this.path -1784813019 +621953525 1 this.path.node -413835715 +434210233 1 this.path.path -698073912 +1422447796 1 this.path.path.node -2072777878 +1228112559 1 this.path.path.path null @@ -52146,13 +52380,13 @@ this.cost 26 1 o -690526453 +1382247955 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -676467183 +2110770086 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52162,25 +52396,25 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 642 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52196,25 +52430,25 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 642 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52233,25 +52467,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 643 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52263,7 +52497,7 @@ this.cost 30 1 o -124086011 +359641172 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -52273,25 +52507,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 644 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52303,29 +52537,29 @@ this.cost 30 1 node -124086011 +359641172 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 645 node -124086011 +359641172 1 path -676467183 +2110770086 1 path.node -690526453 +1382247955 1 path.path -306965640 +1470195146 1 path.path.node -124086011 +359641172 1 path.path.path -1784813019 +621953525 1 path.path.cost 26 @@ -52338,25 +52572,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 645 this -605517463 +1430470609 1 this.node -124086011 +359641172 1 this.path -676467183 +2110770086 1 this.path.node -690526453 +1382247955 1 this.path.path -306965640 +1470195146 1 this.path.path.node -124086011 +359641172 1 this.path.path.path -1784813019 +621953525 1 this.path.path.cost 26 @@ -52368,22 +52602,22 @@ this.cost 34 1 node -124086011 +359641172 1 path -676467183 +2110770086 1 path.node -690526453 +1382247955 1 path.path -306965640 +1470195146 1 path.path.node -124086011 +359641172 1 path.path.path -1784813019 +621953525 1 path.path.cost 26 @@ -52396,25 +52630,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 644 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52426,10 +52660,10 @@ this.cost 30 1 node -124086011 +359641172 1 return -605517463 +1430470609 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52439,25 +52673,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 643 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52469,13 +52703,13 @@ this.cost 30 1 o -124086011 +359641172 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -605517463 +1430470609 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52485,25 +52719,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 646 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52515,7 +52749,7 @@ this.cost 30 1 o -334349445 +1132101395 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -52525,25 +52759,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 647 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52555,29 +52789,29 @@ this.cost 30 1 node -334349445 +1132101395 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 648 node -334349445 +1132101395 1 path -676467183 +2110770086 1 path.node -690526453 +1382247955 1 path.path -306965640 +1470195146 1 path.path.node -124086011 +359641172 1 path.path.path -1784813019 +621953525 1 path.path.cost 26 @@ -52590,25 +52824,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 648 this -6997508 +840097298 1 this.node -334349445 +1132101395 1 this.path -676467183 +2110770086 1 this.path.node -690526453 +1382247955 1 this.path.path -306965640 +1470195146 1 this.path.path.node -124086011 +359641172 1 this.path.path.path -1784813019 +621953525 1 this.path.path.cost 26 @@ -52620,22 +52854,22 @@ this.cost 33 1 node -334349445 +1132101395 1 path -676467183 +2110770086 1 path.node -690526453 +1382247955 1 path.path -306965640 +1470195146 1 path.path.node -124086011 +359641172 1 path.path.path -1784813019 +621953525 1 path.path.cost 26 @@ -52648,25 +52882,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 647 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52678,10 +52912,10 @@ this.cost 30 1 node -334349445 +1132101395 1 return -6997508 +840097298 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52691,25 +52925,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 646 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52721,13 +52955,13 @@ this.cost 30 1 o -334349445 +1132101395 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -6997508 +840097298 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52737,25 +52971,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::ENTER this_invocation_nonce 649 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52767,7 +53001,7 @@ this.cost 30 1 o -992556663 +970862244 1 o.getClass().getName() "MapQuick.WeightedNode" @@ -52777,25 +53011,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::ENTER this_invocation_nonce 650 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52807,29 +53041,29 @@ this.cost 30 1 node -992556663 +970862244 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 651 node -992556663 +970862244 1 path -676467183 +2110770086 1 path.node -690526453 +1382247955 1 path.path -306965640 +1470195146 1 path.path.node -124086011 +359641172 1 path.path.path -1784813019 +621953525 1 path.path.cost 26 @@ -52842,25 +53076,25 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 651 this -1643000018 +1957792108 1 this.node -992556663 +970862244 1 this.path -676467183 +2110770086 1 this.path.node -690526453 +1382247955 1 this.path.path -306965640 +1470195146 1 this.path.path.node -124086011 +359641172 1 this.path.path.path -1784813019 +621953525 1 this.path.path.cost 26 @@ -52872,22 +53106,22 @@ this.cost 41 1 node -992556663 +970862244 1 path -676467183 +2110770086 1 path.node -690526453 +1382247955 1 path.path -306965640 +1470195146 1 path.path.node -124086011 +359641172 1 path.path.path -1784813019 +621953525 1 path.path.cost 26 @@ -52900,25 +53134,25 @@ MapQuick.WeightedNodePath.extend(MapQuick.WeightedNode):::EXIT63 this_invocation_nonce 650 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52930,10 +53164,10 @@ this.cost 30 1 node -992556663 +970862244 1 return -1643000018 +1957792108 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52943,25 +53177,25 @@ MapQuick.WeightedNodePath.extend(java.lang.Object):::EXIT56 this_invocation_nonce 649 this -676467183 +2110770086 1 this.node -690526453 +1382247955 1 this.path -306965640 +1470195146 1 this.path.node -124086011 +359641172 1 this.path.path -1784813019 +621953525 1 this.path.path.node -413835715 +434210233 1 this.path.path.path -698073912 +1422447796 1 this.path.path.cost 22 @@ -52973,13 +53207,13 @@ this.cost 30 1 o -992556663 +970862244 1 o.getClass().getName() "MapQuick.WeightedNode" 1 return -1643000018 +1957792108 1 return.getClass().getName() "MapQuick.WeightedNodePath" @@ -52989,25 +53223,25 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 652 this -246865145 +700985002 1 this.node -992556663 +970862244 1 this.path -1593901563 +523033345 1 this.path.node -334349445 +1132101395 1 this.path.path -525049519 +790716331 1 this.path.path.node -2069573254 +19851888 1 this.path.path.path -319187494 +1181923204 1 this.path.path.cost 18 @@ -53023,25 +53257,25 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 652 this -246865145 +700985002 1 this.node -992556663 +970862244 1 this.path -1593901563 +523033345 1 this.path.node -334349445 +1132101395 1 this.path.path -525049519 +790716331 1 this.path.path.node -2069573254 +19851888 1 this.path.path.path -319187494 +1181923204 1 this.path.path.cost 18 @@ -53053,7 +53287,7 @@ this.cost 32 1 return -1556569400 +867519822 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -53063,14 +53297,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 653 node -413835715 +434210233 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 654 node -413835715 +434210233 1 path null @@ -53098,10 +53332,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 654 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53128,7 +53362,7 @@ this.cost 20 1 node -413835715 +434210233 1 path null @@ -53156,10 +53390,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 653 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53186,17 +53420,17 @@ this.cost 20 1 node -413835715 +434210233 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 655 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53227,10 +53461,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 655 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53264,10 +53498,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 656 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53298,10 +53532,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 656 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53328,7 +53562,7 @@ this.cost 20 1 return -2077336935 +1194501892 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -53338,10 +53572,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 657 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53372,10 +53606,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 657 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53402,7 +53636,7 @@ this.cost 20 1 return -12733619 +1316166688 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -53412,10 +53646,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 658 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53446,10 +53680,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 658 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53483,10 +53717,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 659 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53517,10 +53751,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 659 this -616118046 +1139168871 1 this.node -413835715 +434210233 1 this.path null @@ -53547,7 +53781,7 @@ this.cost 20 1 return -1413053480 +1731961116 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -53557,14 +53791,14 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::ENTER this_invocation_nonce 660 node -2072777878 +1228112559 1 MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.WeightedNodePath):::ENTER this_invocation_nonce 661 node -2072777878 +1228112559 1 path null @@ -53592,10 +53826,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode, MapQuick.Weigh this_invocation_nonce 661 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53622,7 +53856,7 @@ this.cost 2 1 node -2072777878 +1228112559 1 path null @@ -53650,10 +53884,10 @@ MapQuick.WeightedNodePath.WeightedNodePath(MapQuick.WeightedNode):::EXIT33 this_invocation_nonce 660 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53680,17 +53914,17 @@ this.cost 2 1 node -2072777878 +1228112559 1 MapQuick.WeightedNodePath.hashCode():::ENTER this_invocation_nonce 662 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53721,10 +53955,10 @@ MapQuick.WeightedNodePath.hashCode():::EXIT118 this_invocation_nonce 662 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53758,10 +53992,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 663 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53792,10 +54026,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 663 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53822,7 +54056,7 @@ this.cost 2 1 return -616765457 +748633786 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -53832,10 +54066,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 664 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53866,10 +54100,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 664 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53896,7 +54130,7 @@ this.cost 2 1 return -73471730 +181353529 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" @@ -53906,10 +54140,10 @@ MapQuick.WeightedNodePath.cost():::ENTER this_invocation_nonce 665 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53940,10 +54174,10 @@ MapQuick.WeightedNodePath.cost():::EXIT68 this_invocation_nonce 665 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -53977,10 +54211,10 @@ MapQuick.WeightedNodePath.elements():::ENTER this_invocation_nonce 666 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -54011,10 +54245,10 @@ MapQuick.WeightedNodePath.elements():::EXIT79 this_invocation_nonce 666 this -168186187 +2077125174 1 this.node -2072777878 +1228112559 1 this.path null @@ -54041,7 +54275,7 @@ this.cost 2 1 return -36269085 +729466810 1 return.getClass().getName() "java.util.Collections$UnmodifiableCollection$1" diff --git a/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-jaif.goal b/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-jaif.goal index 43028b4b06..bf95f95428 100644 --- a/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-jaif.goal +++ b/tests/daikon-tests/WeightedNodePath/WeightedNodePath.txt-jaif.goal @@ -5,34 +5,61 @@ annotation @NonNull: package MapQuick: class WeightedNodePath : // 1142/- obj/class samples field node : // MapQuick.WeightedNode - field path : @Nullable // MapQuick.WeightedNodePath + field path : @Nullable // MapQuick.WeightedNodePath field cost : // int + method (LMapQuick/WeightedNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // node method (LMapQuick/WeightedNode;)V : // 32 samples - return: + return: + parameter #0 : // node + method (LMapQuick/WeightedNode;LMapQuick/;)V throws Ljava/lang/Throwable; : // 0 samples + return: parameter #0 : // node + parameter #1 : // path method (LMapQuick/WeightedNode;LMapQuick/;)V : // 160 samples - return: + return: parameter #0 : // node - parameter #1 : @Nullable // path + parameter #1 : @Nullable // path + method cost()V throws Ljava/lang/Throwable; : // 0 samples + return: method cost()D : // 103 samples - return: + return: + method elements()V throws Ljava/lang/Throwable; : // 0 samples + return: method elements()Ljava/util/Iterator; : // 84 samples - return: + return: + method equals(LMapQuick/WeightedNodePath;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // wnp method equals(LMapQuick/WeightedNodePath;)Z : // 0 samples - return: + return: parameter #0 : // wnp + method equals(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // o method equals(Ljava/lang/Object;)Z : // 0 samples - return: + return: parameter #0 : // o + method extend(LMapQuick/WeightedNode;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // node method extend(LMapQuick/WeightedNode;)LMapQuick/Path; : // 128 samples - return: + return: parameter #0 : // node + method extend(Ljava/lang/Object;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // o method extend(Ljava/lang/Object;)LMapQuick/Path; : // 128 samples - return: + return: parameter #0 : // o + method hashCode()V throws Ljava/lang/Throwable; : // 0 samples + return: method hashCode()I : // 32 samples - return: + return: + method toString()V throws Ljava/lang/Throwable; : // 0 samples + return: method toString()Ljava/lang/String; : // 0 samples - return: + return: diff --git a/tests/daikon-tests/compar/Compar1.txt-jaif.goal b/tests/daikon-tests/compar/Compar1.txt-jaif.goal index 3a8100a206..faf9700517 100644 --- a/tests/daikon-tests/compar/Compar1.txt-jaif.goal +++ b/tests/daikon-tests/compar/Compar1.txt-jaif.goal @@ -4,16 +4,27 @@ annotation @NonNull: package misc: class Compar1 : // 0/- obj/class samples + method bar(IIII)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // i + parameter #1 : // j + parameter #2 : // k + parameter #3 : // l method bar(IIII)V : // 100 samples - return: + return: parameter #0 : // i parameter #1 : // j parameter #2 : // k parameter #3 : // l + method main([Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // args method main([Ljava/lang/String;)V : // 1 samples - return: + return: parameter #0 : // args + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 0 samples - return: + return: diff --git a/tests/daikon-tests/encapsulate_downcast/ed.txt-jaif.goal b/tests/daikon-tests/encapsulate_downcast/ed.txt-jaif.goal index d9f1202981..cd56dafce3 100644 --- a/tests/daikon-tests/encapsulate_downcast/ed.txt-jaif.goal +++ b/tests/daikon-tests/encapsulate_downcast/ed.txt-jaif.goal @@ -8,14 +8,22 @@ class EncapsulateDowncast : // 0/130 obj/class samples field SEED : // int field random : // java.util.Random field random2 : // java.util.Random + method main([Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // argv method main([Ljava/lang/String;)V : // 1 samples - return: + return: parameter #0 : // argv + method showLastPerson(Ljava/util/Vector;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // list method showLastPerson(Ljava/util/Vector;)V : // 64 samples - return: + return: parameter #0 : // list + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 0 samples - return: + return: package misc: @@ -23,12 +31,19 @@ class Person : // 609/- obj/class samples field _name : // java.lang.String field _height : // int field _weight : // int + method (Ljava/lang/String;II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // name + parameter #1 : // height + parameter #2 : // weight method (Ljava/lang/String;II)V : // 609 samples - return: + return: parameter #0 : // name parameter #1 : // height parameter #2 : // weight + method getName()V throws Ljava/lang/Throwable; : // 0 samples + return: method getName()Ljava/lang/String; : // 0 samples - return: + return: diff --git a/tests/daikon-tests/hanoi/Hanoi.txt-jaif.goal b/tests/daikon-tests/hanoi/Hanoi.txt-jaif.goal index 1bb0485022..57f82eb6cb 100644 --- a/tests/daikon-tests/hanoi/Hanoi.txt-jaif.goal +++ b/tests/daikon-tests/hanoi/Hanoi.txt-jaif.goal @@ -7,27 +7,49 @@ class Hanoi : // 2208/- obj/class samples field diskLocation : // int[] field height : // int field noOutput : // boolean + method otherPeg(II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // pegA + parameter #1 : // pegB method otherPeg(II)I : // 342 samples - return: + return: parameter #0 : // pegA parameter #1 : // pegB + method (I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // height method (I)V : // 6 samples - return: + return: parameter #0 : // height + method (IZ)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // height + parameter #1 : // noOutput method (IZ)V : // 6 samples - return: + return: parameter #0 : // height parameter #1 : // noOutput + method moveDisk(II)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // fromPeg + parameter #1 : // toPeg method moveDisk(II)V : // 360 samples - return: + return: parameter #0 : // fromPeg parameter #1 : // toPeg + method moveTower(III)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // fromPeg + parameter #1 : // toPeg + parameter #2 : // towerHeight method moveTower(III)V : // 360 samples - return: + return: parameter #0 : // fromPeg parameter #1 : // toPeg parameter #2 : // towerHeight + method showTowers()V throws Ljava/lang/Throwable; : // 0 samples + return: method showTowers()V : // 378 samples - return: + return: diff --git a/tests/daikon-tests/param/Param.txt-jaif.goal b/tests/daikon-tests/param/Param.txt-jaif.goal index 91f706d085..b2e7d96c08 100644 --- a/tests/daikon-tests/param/Param.txt-jaif.goal +++ b/tests/daikon-tests/param/Param.txt-jaif.goal @@ -8,15 +8,28 @@ class Param : // 203/- obj/class samples field gi2 : // int field gs1 : // misc.ParamType field gs2 : // misc.ParamType + method main([Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // args method main([Ljava/lang/String;)V : // 1 samples - return: + return: parameter #0 : // args + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 1 samples - return: + return: + method main()V throws Ljava/lang/Throwable; : // 0 samples + return: method main()V : // 1 samples - return: + return: + method work(IILmisc/ParamType;Lmisc/ParamType;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // pi1 + parameter #1 : // pi2 + parameter #2 : // ps1 + parameter #3 : // ps2 method work(IILmisc/ParamType;Lmisc/ParamType;)V : // 100 samples - return: + return: parameter #0 : // pi1 parameter #1 : // pi2 parameter #2 : // ps1 @@ -27,7 +40,9 @@ package misc: class ParamType : // 102/- obj/class samples field a : // int field b : // int + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 102 samples - return: + return: diff --git a/tests/daikon-tests/precedence/Precedence.txt-jaif.goal b/tests/daikon-tests/precedence/Precedence.txt-jaif.goal index 355d84e4f8..20f7220051 100644 --- a/tests/daikon-tests/precedence/Precedence.txt-jaif.goal +++ b/tests/daikon-tests/precedence/Precedence.txt-jaif.goal @@ -5,13 +5,21 @@ annotation @NonNull: package misc: class Precedence : // 3/- obj/class samples field i : // int + method main([Ljava/lang/String;)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // args method main([Ljava/lang/String;)V : // 1 samples - return: + return: parameter #0 : // args + method ()V throws Ljava/lang/Throwable; : // 0 samples + return: method ()V : // 1 samples - return: + return: + method lets_calculate(I)V throws Ljava/lang/Throwable; : // 0 samples + return: + parameter #0 : // j method lets_calculate(I)I : // 1 samples - return: + return: parameter #0 : // j diff --git a/tests/daikon-tests/purity/purity.txt-chicory.goal b/tests/daikon-tests/purity/purity.txt-chicory.goal index 2fb72dfeeb..344fe4e24b 100644 --- a/tests/daikon-tests/purity/purity.txt-chicory.goal +++ b/tests/daikon-tests/purity/purity.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for misc.Purity -// Declarations written Thu Jun 04 13:34:45 PDT 2015 +// Declarations written Mon Jul 31 12:56:05 PDT 2017 decl-version 2.0 var-comparability none @@ -7,13 +7,13 @@ var-comparability none ppt misc.Purity.Purity(int,\_int):::ENTER ppt-type enter variable value - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable shift - var-kind variable + var-kind variable dec-type int rep-type int flags is_param @@ -23,10 +23,10 @@ ppt misc.Purity.Purity(int,\_int):::EXIT24 ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -58,7 +58,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -72,7 +72,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -83,7 +83,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -97,7 +97,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -106,7 +106,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -147,7 +147,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -223,26 +223,26 @@ variable this.retrieve(this.list2) comparability 22 parent misc.Purity:::OBJECT 1 variable value - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 variable shift - var-kind variable + var-kind variable dec-type int rep-type int flags is_param comparability 22 -ppt misc.Purity.getValue():::ENTER -ppt-type enter +ppt misc.Purity.Purity(int,\_int):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -274,7 +274,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -288,7 +288,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -299,7 +299,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -313,7 +313,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -322,7 +322,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -363,7 +363,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -438,224 +438,39 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 - -ppt misc.Purity.getValue():::EXIT27 -ppt-type subexit -parent parent misc.Purity:::OBJECT 1 -variable this - var-kind variable - dec-type misc.Purity - rep-type hashcode - flags is_param - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.value - var-kind field value - enclosing-var this - dec-type int - rep-type int - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.shift - var-kind field shift - enclosing-var this - dec-type int - rep-type int - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.heavy - var-kind field heavy - enclosing-var this - dec-type boolean - rep-type boolean - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list1 - var-kind field list1 - enclosing-var this - dec-type java.util.LinkedList - rep-type hashcode - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list1[..] - var-kind array - enclosing-var this.list1 - array 1 - dec-type java.util.LinkedList - rep-type hashcode[] - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list1[..].getClass().getName() - var-kind function getClass().getName() - enclosing-var this.list1[..] - array 1 - dec-type java.lang.Class[] - rep-type java.lang.String[] - function-args this.list1[] - flags synthetic classname - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list2 - var-kind field list2 - enclosing-var this - dec-type java.util.List - rep-type hashcode - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list2[..] - var-kind array - enclosing-var this.list2 - array 1 - dec-type java.util.List - rep-type hashcode[] - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list2[..].getClass().getName() - var-kind function getClass().getName() - enclosing-var this.list2[..] - array 1 - dec-type java.lang.Class[] - rep-type java.lang.String[] - function-args this.list2[] - flags synthetic classname - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.list2.getClass().getName() - var-kind function getClass().getName() - enclosing-var this.list2 - dec-type java.lang.Class - rep-type java.lang.String - function-args this.list2 - flags synthetic classname - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.getValue() - var-kind function getValue - enclosing-var this +variable value + var-kind variable dec-type int rep-type int - function-args this + flags is_param comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.getShift() - var-kind function getShift - enclosing-var this +variable shift + var-kind variable dec-type int rep-type int - function-args this - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.isHeavy() - var-kind function isHeavy - enclosing-var this - dec-type boolean - rep-type boolean - function-args this + flags is_param comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.getNum() - var-kind function getNum - enclosing-var this - dec-type java.lang.Number +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - function-args this comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.getNum().getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var this.getNum() + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args this.getNum() - flags synthetic classname - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.getJWrap() - var-kind function getJWrap - enclosing-var this - dec-type java.lang.Integer - rep-type hashcode - function-args this - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.scale(this.value) - var-kind function scale - enclosing-var this - dec-type int - rep-type int - function-args this this.value - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.scale(this.shift) - var-kind function scale - enclosing-var this - dec-type int - rep-type int - function-args this this.shift - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.scale(this.getValue()) - var-kind function scale - enclosing-var this - dec-type int - rep-type int - function-args this this.getValue() - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.scale(this.getShift()) - var-kind function scale - enclosing-var this - dec-type int - rep-type int - function-args this this.getShift() - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.sum(this.getNum()) - var-kind function sum - enclosing-var this - dec-type int - rep-type int - function-args this this.getNum() - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.sum(this.getJWrap()) - var-kind function sum - enclosing-var this - dec-type int - rep-type int - function-args this this.getJWrap() - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.retrieve(this.list1) - var-kind function retrieve - enclosing-var this - dec-type int - rep-type int - function-args this this.list1 - comparability 22 - parent misc.Purity:::OBJECT 1 -variable this.retrieve(this.list2) - var-kind function retrieve - enclosing-var this - dec-type int - rep-type int - function-args this this.list2 - comparability 22 - parent misc.Purity:::OBJECT 1 -variable return - var-kind return - dec-type int - rep-type int + flags synthetic classname non_null comparability 22 -ppt misc.Purity.getShift():::ENTER +ppt misc.Purity.getValue():::ENTER ppt-type enter parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -687,7 +502,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -701,7 +516,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -712,7 +527,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -726,7 +541,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -735,7 +550,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -776,7 +591,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -852,14 +667,14 @@ variable this.retrieve(this.list2) comparability 22 parent misc.Purity:::OBJECT 1 -ppt misc.Purity.getShift():::EXIT31 +ppt misc.Purity.getValue():::EXIT27 ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -891,7 +706,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -905,7 +720,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -916,7 +731,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -930,7 +745,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -939,7 +754,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -980,7 +795,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -1056,19 +871,19 @@ variable this.retrieve(this.list2) comparability 22 parent misc.Purity:::OBJECT 1 variable return - var-kind return + var-kind return dec-type int rep-type int comparability 22 -ppt misc.Purity.isHeavy():::ENTER -ppt-type enter +ppt misc.Purity.getValue():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -1100,7 +915,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -1114,7 +929,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -1125,7 +940,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -1139,7 +954,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -1148,7 +963,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -1189,7 +1004,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -1264,15 +1079,27 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -ppt misc.Purity.isHeavy():::EXIT35 -ppt-type subexit +ppt misc.Purity.getShift():::ENTER +ppt-type enter parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -1304,7 +1131,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -1318,7 +1145,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -1329,7 +1156,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -1343,7 +1170,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -1352,7 +1179,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -1393,7 +1220,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -1468,20 +1295,15 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable return - var-kind return - dec-type boolean - rep-type boolean - comparability 22 -ppt misc.Purity.getNum():::ENTER -ppt-type enter +ppt misc.Purity.getShift():::EXIT31 +ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -1513,7 +1335,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -1527,7 +1349,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -1538,7 +1360,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -1552,7 +1374,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -1561,7 +1383,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -1602,7 +1424,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -1677,15 +1499,20 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 -ppt misc.Purity.getNum():::EXIT39 +ppt misc.Purity.getShift():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -1717,7 +1544,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -1731,7 +1558,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -1742,7 +1569,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -1756,7 +1583,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -1765,7 +1592,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -1806,7 +1633,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -1881,28 +1708,27 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable return - var-kind return - dec-type java.lang.Number +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags synthetic classname + flags synthetic classname non_null comparability 22 -ppt misc.Purity.getJWrap():::ENTER +ppt misc.Purity.isHeavy():::ENTER ppt-type enter parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -1934,7 +1760,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -1948,7 +1774,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -1959,7 +1785,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -1973,7 +1799,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -1982,7 +1808,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -2023,7 +1849,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -2099,14 +1925,14 @@ variable this.retrieve(this.list2) comparability 22 parent misc.Purity:::OBJECT 1 -ppt misc.Purity.getJWrap():::EXIT43 +ppt misc.Purity.isHeavy():::EXIT35 ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -2138,7 +1964,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -2152,7 +1978,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -2163,7 +1989,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -2177,7 +2003,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -2186,7 +2012,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -2227,7 +2053,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -2303,19 +2129,19 @@ variable this.retrieve(this.list2) comparability 22 parent misc.Purity:::OBJECT 1 variable return - var-kind return - dec-type java.lang.Integer - rep-type hashcode + var-kind return + dec-type boolean + rep-type boolean comparability 22 -ppt misc.Purity.scale(int):::ENTER -ppt-type enter +ppt misc.Purity.isHeavy():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -2347,7 +2173,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -2361,7 +2187,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -2372,7 +2198,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -2386,7 +2212,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -2395,7 +2221,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -2436,7 +2262,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -2511,21 +2337,27 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable scale - var-kind variable - dec-type int - rep-type int - flags is_param +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null comparability 22 -ppt misc.Purity.scale(int):::EXIT47 -ppt-type subexit +ppt misc.Purity.getNum():::ENTER +ppt-type enter parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -2557,7 +2389,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -2571,7 +2403,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -2582,7 +2414,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -2596,7 +2428,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -2605,7 +2437,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -2646,7 +2478,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -2721,26 +2553,15 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable scale - var-kind variable - dec-type int - rep-type int - flags is_param - comparability 22 -variable return - var-kind return - dec-type int - rep-type int - comparability 22 -ppt misc.Purity.sum(java.lang.Number):::ENTER -ppt-type enter +ppt misc.Purity.getNum():::EXIT39 +ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -2772,7 +2593,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -2786,7 +2607,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -2797,7 +2618,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -2811,7 +2632,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -2820,7 +2641,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -2861,7 +2682,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -2936,29 +2757,28 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable n - var-kind variable +variable return + var-kind return dec-type java.lang.Number rep-type hashcode - flags is_param comparability 22 -variable n.getClass().getName() +variable return.getClass().getName() var-kind function getClass().getName() - enclosing-var n + enclosing-var return dec-type java.lang.Class rep-type java.lang.String - function-args n - flags synthetic classname + function-args return + flags synthetic classname non_null comparability 22 -ppt misc.Purity.sum(java.lang.Number):::EXIT51 +ppt misc.Purity.getNum():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -2990,7 +2810,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -3004,7 +2824,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -3015,7 +2835,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -3029,7 +2849,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -3038,7 +2858,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -3079,7 +2899,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -3154,34 +2974,27 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable n - var-kind variable - dec-type java.lang.Number +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param comparability 22 -variable n.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var n + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args n - flags synthetic classname - comparability 22 -variable return - var-kind return - dec-type int - rep-type int + flags synthetic classname non_null comparability 22 -ppt misc.Purity.retrieve(java.util.List):::ENTER +ppt misc.Purity.getJWrap():::ENTER ppt-type enter parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -3213,7 +3026,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -3227,7 +3040,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -3238,7 +3051,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -3252,7 +3065,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -3261,7 +3074,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -3302,7 +3115,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -3377,45 +3190,224 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable l - var-kind variable + +ppt misc.Purity.getJWrap():::EXIT43 +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this dec-type java.util.List rep-type hashcode - flags is_param comparability 22 -variable l[..] - var-kind array - enclosing-var l + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 array 1 dec-type java.util.List rep-type hashcode[] comparability 22 -variable l[..].getClass().getName() + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() var-kind function getClass().getName() - enclosing-var l[..] + enclosing-var this.list2[..] array 1 dec-type java.lang.Class[] rep-type java.lang.String[] - function-args l[] - flags synthetic classname + function-args this.list2[] + flags synthetic classname non_null comparability 22 -variable l.getClass().getName() + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() var-kind function getClass().getName() - enclosing-var l + enclosing-var this.list2 dec-type java.lang.Class rep-type java.lang.String - function-args l - flags synthetic classname + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable return + var-kind return + dec-type java.lang.Integer + rep-type hashcode comparability 22 -ppt misc.Purity.retrieve(java.util.List):::EXIT55 +ppt misc.Purity.getJWrap():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.value @@ -3447,7 +3439,7 @@ variable this.list1 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList @@ -3461,7 +3453,7 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2 @@ -3472,7 +3464,7 @@ variable this.list2 comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List @@ -3486,7 +3478,7 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() @@ -3495,7 +3487,7 @@ variable this.list2.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getValue() @@ -3536,7 +3528,7 @@ variable this.getNum().getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 parent misc.Purity:::OBJECT 1 variable this.getJWrap() @@ -3611,81 +3603,275 @@ variable this.retrieve(this.list2) function-args this this.list2 comparability 22 parent misc.Purity:::OBJECT 1 -variable l - var-kind variable +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 + +ppt misc.Purity.scale(int):::ENTER +ppt-type enter +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this dec-type java.util.List rep-type hashcode - flags is_param comparability 22 -variable l[..] - var-kind array - enclosing-var l + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 array 1 dec-type java.util.List rep-type hashcode[] comparability 22 -variable l[..].getClass().getName() + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() var-kind function getClass().getName() - enclosing-var l[..] + enclosing-var this.list2[..] array 1 dec-type java.lang.Class[] rep-type java.lang.String[] - function-args l[] - flags synthetic classname + function-args this.list2[] + flags synthetic classname non_null comparability 22 -variable l.getClass().getName() + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() var-kind function getClass().getName() - enclosing-var l + enclosing-var this.list2 dec-type java.lang.Class rep-type java.lang.String - function-args l - flags synthetic classname + function-args this.list2 + flags synthetic classname non_null comparability 22 -variable return - var-kind return + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable scale + var-kind variable dec-type int rep-type int + flags is_param comparability 22 -ppt misc.Purity:::OBJECT -ppt-type object +ppt misc.Purity.scale(int):::EXIT47 +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type misc.Purity rep-type hashcode - flags is_param + flags is_param non_null comparability 22 + parent misc.Purity:::OBJECT 1 variable this.value var-kind field value enclosing-var this dec-type int rep-type int comparability 22 + parent misc.Purity:::OBJECT 1 variable this.shift var-kind field shift enclosing-var this dec-type int rep-type int comparability 22 + parent misc.Purity:::OBJECT 1 variable this.heavy var-kind field heavy enclosing-var this dec-type boolean rep-type boolean comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list1 var-kind field list1 enclosing-var this dec-type java.util.LinkedList rep-type hashcode comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list1[..] - var-kind array + var-kind array enclosing-var this.list1 array 1 dec-type java.util.LinkedList rep-type hashcode[] comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list1[..].getClass().getName() var-kind function getClass().getName() enclosing-var this.list1[..] @@ -3693,21 +3879,24 @@ variable this.list1[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list1[] - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list2 var-kind field list2 enclosing-var this dec-type java.util.List rep-type hashcode comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list2[..] - var-kind array + var-kind array enclosing-var this.list2 array 1 dec-type java.util.List rep-type hashcode[] comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list2[..].getClass().getName() var-kind function getClass().getName() enclosing-var this.list2[..] @@ -3715,16 +3904,18 @@ variable this.list2[..].getClass().getName() dec-type java.lang.Class[] rep-type java.lang.String[] function-args this.list2[] - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent misc.Purity:::OBJECT 1 variable this.list2.getClass().getName() var-kind function getClass().getName() enclosing-var this.list2 dec-type java.lang.Class rep-type java.lang.String function-args this.list2 - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent misc.Purity:::OBJECT 1 variable this.getValue() var-kind function getValue enclosing-var this @@ -3732,6 +3923,7 @@ variable this.getValue() rep-type int function-args this comparability 22 + parent misc.Purity:::OBJECT 1 variable this.getShift() var-kind function getShift enclosing-var this @@ -3739,6 +3931,7 @@ variable this.getShift() rep-type int function-args this comparability 22 + parent misc.Purity:::OBJECT 1 variable this.isHeavy() var-kind function isHeavy enclosing-var this @@ -3746,6 +3939,7 @@ variable this.isHeavy() rep-type boolean function-args this comparability 22 + parent misc.Purity:::OBJECT 1 variable this.getNum() var-kind function getNum enclosing-var this @@ -3753,14 +3947,16 @@ variable this.getNum() rep-type hashcode function-args this comparability 22 + parent misc.Purity:::OBJECT 1 variable this.getNum().getClass().getName() var-kind function getClass().getName() enclosing-var this.getNum() dec-type java.lang.Class rep-type java.lang.String function-args this.getNum() - flags synthetic classname + flags synthetic classname non_null comparability 22 + parent misc.Purity:::OBJECT 1 variable this.getJWrap() var-kind function getJWrap enclosing-var this @@ -3768,6 +3964,7 @@ variable this.getJWrap() rep-type hashcode function-args this comparability 22 + parent misc.Purity:::OBJECT 1 variable this.scale(this.value) var-kind function scale enclosing-var this @@ -3775,6 +3972,7 @@ variable this.scale(this.value) rep-type int function-args this this.value comparability 22 + parent misc.Purity:::OBJECT 1 variable this.scale(this.shift) var-kind function scale enclosing-var this @@ -3782,6 +3980,7 @@ variable this.scale(this.shift) rep-type int function-args this this.shift comparability 22 + parent misc.Purity:::OBJECT 1 variable this.scale(this.getValue()) var-kind function scale enclosing-var this @@ -3789,6 +3988,7 @@ variable this.scale(this.getValue()) rep-type int function-args this this.getValue() comparability 22 + parent misc.Purity:::OBJECT 1 variable this.scale(this.getShift()) var-kind function scale enclosing-var this @@ -3796,6 +3996,7 @@ variable this.scale(this.getShift()) rep-type int function-args this this.getShift() comparability 22 + parent misc.Purity:::OBJECT 1 variable this.sum(this.getNum()) var-kind function sum enclosing-var this @@ -3803,6 +4004,7 @@ variable this.sum(this.getNum()) rep-type int function-args this this.getNum() comparability 22 + parent misc.Purity:::OBJECT 1 variable this.sum(this.getJWrap()) var-kind function sum enclosing-var this @@ -3810,6 +4012,7 @@ variable this.sum(this.getJWrap()) rep-type int function-args this this.getJWrap() comparability 22 + parent misc.Purity:::OBJECT 1 variable this.retrieve(this.list1) var-kind function retrieve enclosing-var this @@ -3817,6 +4020,7 @@ variable this.retrieve(this.list1) rep-type int function-args this this.list1 comparability 22 + parent misc.Purity:::OBJECT 1 variable this.retrieve(this.list2) var-kind function retrieve enclosing-var this @@ -3824,2098 +4028,1848 @@ variable this.retrieve(this.list2) rep-type int function-args this this.list2 comparability 22 + parent misc.Purity:::OBJECT 1 +variable scale + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -0 -value --100 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 -this_invocation_nonce -0 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -686363848 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1582525299 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -value --100 -1 -shift -0 -1 +ppt misc.Purity.scale(int):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable scale + var-kind variable + dec-type int + rep-type int + flags is_param + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -18 -value --100 -1 -shift -5 -1 +ppt misc.Purity.sum(java.lang.Number):::ENTER +ppt-type enter +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable n + var-kind variable + dec-type java.lang.Number + rep-type hashcode + flags is_param + comparability 22 +variable n.getClass().getName() + var-kind function getClass().getName() + enclosing-var n + dec-type java.lang.Class + rep-type java.lang.String + function-args n + flags synthetic classname non_null + comparability 22 -misc.Purity.Purity(int, int):::EXIT24 -this_invocation_nonce -18 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -646946680 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -523145999 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 -value --100 -1 -shift -5 -1 +ppt misc.Purity.sum(java.lang.Number):::EXIT51 +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable n + var-kind variable + dec-type java.lang.Number + rep-type hashcode + flags is_param + comparability 22 +variable n.getClass().getName() + var-kind function getClass().getName() + enclosing-var n + dec-type java.lang.Class + rep-type java.lang.String + function-args n + flags synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -36 -value --100 -1 -shift -10 -1 +ppt misc.Purity.sum(java.lang.Number):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable n + var-kind variable + dec-type java.lang.Number + rep-type hashcode + flags is_param + comparability 22 +variable n.getClass().getName() + var-kind function getClass().getName() + enclosing-var n + dec-type java.lang.Class + rep-type java.lang.String + function-args n + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -misc.Purity.Purity(int, int):::EXIT24 -this_invocation_nonce -36 -this -716754375 -1 -this.value --100 -1 -this.shift -10 -1 -this.heavy -true -1 -this.list1 -1255004602 -1 -this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -643015091 -1 -this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -10 -1 -this.isHeavy() -true -1 -this.getNum() -1615263460 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1392190493 -1 -this.scale(this.value) --1100 -1 -this.scale(this.shift) -0 -1 -this.scale(this.getValue()) --1100 -1 -this.scale(this.getShift()) -0 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -10 -1 -this.retrieve(this.list2) -10 -1 -value --100 -1 -shift -10 -1 - -misc.Purity.getValue():::ENTER -this_invocation_nonce -54 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -1711281786 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -264493031 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 - -misc.Purity.getValue():::EXIT27 -this_invocation_nonce -54 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -1947973636 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1204701737 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -return --100 -1 - -misc.Purity.getShift():::ENTER -this_invocation_nonce -89 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -946269843 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1840845266 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 - -misc.Purity.getShift():::EXIT31 -this_invocation_nonce -89 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -289483333 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1295917276 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -return -0 -1 - -misc.Purity.isHeavy():::ENTER -this_invocation_nonce -124 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -702509858 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -218092200 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 - -misc.Purity.isHeavy():::EXIT35 -this_invocation_nonce -124 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -982274580 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1382071571 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -return -false -1 - -misc.Purity.getNum():::ENTER -this_invocation_nonce -159 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -1293767845 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1084245040 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 - -misc.Purity.getNum():::EXIT39 -this_invocation_nonce -159 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -1507642485 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -787694442 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -return -1691286586 -1 -return.getClass().getName() -"java.lang.Integer" -1 - -misc.Purity.getJWrap():::ENTER -this_invocation_nonce -194 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -1360099210 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1371483802 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -194 -this -477980458 -1 -this.value --100 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -620106128 -1 -this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1279840457 -1 -this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -0 -1 -this.isHeavy() -false -1 -this.getNum() -1586276963 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1694923283 -1 -this.scale(this.value) --100 -1 -this.scale(this.shift) --100 -1 -this.scale(this.getValue()) --100 -1 -this.scale(this.getShift()) --100 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -return -205039926 -1 - -misc.Purity.getValue():::ENTER -this_invocation_nonce -229 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1542266494 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -745345368 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 - -misc.Purity.getValue():::EXIT27 -this_invocation_nonce -229 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -747487025 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -235094225 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 -return --100 -1 - -misc.Purity.getShift():::ENTER -this_invocation_nonce -264 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1265656101 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1056565972 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 - -misc.Purity.getShift():::EXIT31 -this_invocation_nonce -264 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -162014361 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -2113584578 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 -return -5 -1 - -misc.Purity.isHeavy():::ENTER -this_invocation_nonce -299 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1488997419 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -952682642 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 - -misc.Purity.isHeavy():::EXIT35 -this_invocation_nonce -299 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -99092062 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1140459609 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 -return -true -1 - -misc.Purity.getNum():::ENTER -this_invocation_nonce -334 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1413098988 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -933039143 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 +ppt misc.Purity.retrieve(java.util.List):::ENTER +ppt-type enter +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable l + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable l[..] + var-kind array + enclosing-var l + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable l[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var l[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args l[] + flags synthetic classname non_null + comparability 22 +variable l.getClass().getName() + var-kind function getClass().getName() + enclosing-var l + dec-type java.lang.Class + rep-type java.lang.String + function-args l + flags synthetic classname non_null + comparability 22 -misc.Purity.getNum():::EXIT39 -this_invocation_nonce -334 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -663286007 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -260308072 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 -return -573577165 -1 -return.getClass().getName() -"java.lang.Integer" -1 +ppt misc.Purity.retrieve(java.util.List):::EXIT55 +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable l + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable l[..] + var-kind array + enclosing-var l + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable l[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var l[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args l[] + flags synthetic classname non_null + comparability 22 +variable l.getClass().getName() + var-kind function getClass().getName() + enclosing-var l + dec-type java.lang.Class + rep-type java.lang.String + function-args l + flags synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type int + rep-type int + comparability 22 -misc.Purity.getJWrap():::ENTER -this_invocation_nonce -369 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -57320772 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1317541148 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 +ppt misc.Purity.retrieve(java.util.List):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent misc.Purity:::OBJECT 1 +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 + parent misc.Purity:::OBJECT 1 +variable l + var-kind variable + dec-type java.util.List + rep-type hashcode + flags is_param + comparability 22 +variable l[..] + var-kind array + enclosing-var l + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable l[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var l[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args l[] + flags synthetic classname non_null + comparability 22 +variable l.getClass().getName() + var-kind function getClass().getName() + enclosing-var l + dec-type java.lang.Class + rep-type java.lang.String + function-args l + flags synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags synthetic classname non_null + comparability 22 -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -369 -this -917732198 -1 -this.value --100 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1097499032 -1 -this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1180110925 -1 -this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1210190219 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -849389996 -1 -this.scale(this.value) --600 -1 -this.scale(this.shift) --75 -1 -this.scale(this.getValue()) --600 -1 -this.scale(this.getShift()) --75 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 -return -1373861163 -1 +ppt misc.Purity:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type misc.Purity + rep-type hashcode + flags is_param non_null + comparability 22 +variable this.value + var-kind field value + enclosing-var this + dec-type int + rep-type int + comparability 22 +variable this.shift + var-kind field shift + enclosing-var this + dec-type int + rep-type int + comparability 22 +variable this.heavy + var-kind field heavy + enclosing-var this + dec-type boolean + rep-type boolean + comparability 22 +variable this.list1 + var-kind field list1 + enclosing-var this + dec-type java.util.LinkedList + rep-type hashcode + comparability 22 +variable this.list1[..] + var-kind array + enclosing-var this.list1 + array 1 + dec-type java.util.LinkedList + rep-type hashcode[] + comparability 22 +variable this.list1[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list1[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list1[] + flags synthetic classname non_null + comparability 22 +variable this.list2 + var-kind field list2 + enclosing-var this + dec-type java.util.List + rep-type hashcode + comparability 22 +variable this.list2[..] + var-kind array + enclosing-var this.list2 + array 1 + dec-type java.util.List + rep-type hashcode[] + comparability 22 +variable this.list2[..].getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2[..] + array 1 + dec-type java.lang.Class[] + rep-type java.lang.String[] + function-args this.list2[] + flags synthetic classname non_null + comparability 22 +variable this.list2.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.list2 + dec-type java.lang.Class + rep-type java.lang.String + function-args this.list2 + flags synthetic classname non_null + comparability 22 +variable this.getValue() + var-kind function getValue + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 +variable this.getShift() + var-kind function getShift + enclosing-var this + dec-type int + rep-type int + function-args this + comparability 22 +variable this.isHeavy() + var-kind function isHeavy + enclosing-var this + dec-type boolean + rep-type boolean + function-args this + comparability 22 +variable this.getNum() + var-kind function getNum + enclosing-var this + dec-type java.lang.Number + rep-type hashcode + function-args this + comparability 22 +variable this.getNum().getClass().getName() + var-kind function getClass().getName() + enclosing-var this.getNum() + dec-type java.lang.Class + rep-type java.lang.String + function-args this.getNum() + flags synthetic classname non_null + comparability 22 +variable this.getJWrap() + var-kind function getJWrap + enclosing-var this + dec-type java.lang.Integer + rep-type hashcode + function-args this + comparability 22 +variable this.scale(this.value) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.value + comparability 22 +variable this.scale(this.shift) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.shift + comparability 22 +variable this.scale(this.getValue()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getValue() + comparability 22 +variable this.scale(this.getShift()) + var-kind function scale + enclosing-var this + dec-type int + rep-type int + function-args this this.getShift() + comparability 22 +variable this.sum(this.getNum()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getNum() + comparability 22 +variable this.sum(this.getJWrap()) + var-kind function sum + enclosing-var this + dec-type int + rep-type int + function-args this this.getJWrap() + comparability 22 +variable this.retrieve(this.list1) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list1 + comparability 22 +variable this.retrieve(this.list2) + var-kind function retrieve + enclosing-var this + dec-type int + rep-type int + function-args this this.list2 + comparability 22 -misc.Purity.getValue():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -404 -this -716754375 -1 -this.value --100 -1 -this.shift -10 -1 -this.heavy -true -1 -this.list1 -1255004602 -1 -this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -643015091 -1 -this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --100 -1 -this.getShift() -10 -1 -this.isHeavy() -true -1 -this.getNum() -740393997 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1281656861 -1 -this.scale(this.value) --1100 -1 -this.scale(this.shift) -0 -1 -this.scale(this.getValue()) --1100 -1 -this.scale(this.getShift()) 0 -1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -10 -1 -this.retrieve(this.list2) -10 -1 - -misc.Purity.getValue():::EXIT27 -this_invocation_nonce -404 -this -716754375 -1 -this.value --100 -1 -this.shift -10 -1 -this.heavy -true -1 -this.list1 -1255004602 -1 -this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -643015091 -1 -this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() +value -100 1 -this.getShift() -10 -1 -this.isHeavy() -true -1 -this.getNum() -1545883417 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1405428113 -1 -this.scale(this.value) --1100 -1 -this.scale(this.shift) -0 -1 -this.scale(this.getValue()) --1100 -1 -this.scale(this.getShift()) +shift 0 1 -this.sum(this.getNum()) --200 -1 -this.sum(this.getJWrap()) --200 -1 -this.retrieve(this.list1) -10 -1 -this.retrieve(this.list2) -10 -1 -return --100 -1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -439 +0 this -716754375 +1577213552 1 this.value -100 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1255004602 +532445947 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +2109957412 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -5927,31 +5881,31 @@ this.getValue() -100 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -857661838 +1802598046 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -812272602 +659748578 1 this.scale(this.value) --1100 +-100 1 this.scale(this.shift) -0 +-100 1 this.scale(this.getValue()) --1100 +-100 1 this.scale(this.getShift()) -0 +-100 1 this.sum(this.getNum()) -200 @@ -5960,41 +5914,57 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-100 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -439 +18 +value +-100 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +18 this -716754375 +240650537 1 this.value -100 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1255004602 +483422889 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +1435804085 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6006,31 +5976,31 @@ this.getValue() -100 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -312077835 +968514068 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -937106871 +1360767589 1 this.scale(this.value) --1100 +-600 1 this.scale(this.shift) -0 +-75 1 this.scale(this.getValue()) --1100 +-600 1 this.scale(this.getShift()) -0 +-75 1 this.sum(this.getNum()) -200 @@ -6039,20 +6009,33 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-100 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +36 +value +-100 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -474 +36 this -716754375 +873415566 1 this.value -100 @@ -6064,19 +6047,19 @@ this.heavy true 1 this.list1 -1255004602 +818403870 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +762218386 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6094,13 +6077,13 @@ this.isHeavy() true 1 this.getNum() -310113799 +249515771 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -139808524 +796533847 1 this.scale(this.value) -1100 @@ -6126,36 +6109,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-100 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -474 +54 this -716754375 +1577213552 1 this.value -100 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1255004602 +532445947 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +2109957412 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6167,32 +6156,111 @@ this.getValue() -100 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -414753050 +1449621165 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -22593188 +1627960023 1 this.scale(this.value) --1100 +-100 1 this.scale(this.shift) -0 +-100 1 this.scale(this.getValue()) --1100 +-100 1 this.scale(this.getShift()) +-100 +1 +this.sum(this.getNum()) +-200 +1 +this.sum(this.getJWrap()) +-200 +1 +this.retrieve(this.list1) +0 +1 +this.retrieve(this.list2) +0 +1 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +54 +this +1577213552 +1 +this.value +-100 +1 +this.shift +0 +1 +this.heavy +false +1 +this.list1 +532445947 +1 +this.list1[..] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +2109957412 +1 +this.list2[..] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-100 +1 +this.getShift() 0 1 +this.isHeavy() +false +1 +this.getNum() +1811044090 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +114132791 +1 +this.scale(this.value) +-100 +1 +this.scale(this.shift) +-100 +1 +this.scale(this.getValue()) +-100 +1 +this.scale(this.getShift()) +-100 +1 this.sum(this.getNum()) -200 1 @@ -6200,44 +6268,44 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-100 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -509 +89 this -716754375 +1577213552 1 this.value -100 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1255004602 +532445947 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +2109957412 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6249,31 +6317,31 @@ this.getValue() -100 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1766588844 +586617651 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2097281333 +328638398 1 this.scale(this.value) --1100 +-100 1 this.scale(this.shift) -0 +-100 1 this.scale(this.getValue()) --1100 +-100 1 this.scale(this.getShift()) -0 +-100 1 this.sum(this.getNum()) -200 @@ -6282,41 +6350,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -509 +89 this -716754375 +1577213552 1 this.value -100 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1255004602 +532445947 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +2109957412 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6328,31 +6396,31 @@ this.getValue() -100 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -210781873 +1789550256 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1410405608 +3447021 1 this.scale(this.value) --1100 +-100 1 this.scale(this.shift) -0 +-100 1 this.scale(this.getValue()) --1100 +-100 1 this.scale(this.getShift()) -0 +-100 1 this.sum(this.getNum()) -200 @@ -6361,47 +6429,44 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -762558070 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -544 +124 this -716754375 +1577213552 1 this.value -100 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1255004602 +532445947 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +2109957412 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6413,31 +6478,31 @@ this.getValue() -100 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -131077194 +440434003 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1843661383 +1032616650 1 this.scale(this.value) --1100 +-100 1 this.scale(this.shift) -0 +-100 1 this.scale(this.getValue()) --1100 +-100 1 this.scale(this.getShift()) -0 +-100 1 this.sum(this.getNum()) -200 @@ -6446,41 +6511,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -544 +124 this -716754375 +1577213552 1 this.value -100 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1255004602 +532445947 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +2109957412 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6492,31 +6557,31 @@ this.getValue() -100 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -375321518 +1068934215 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -869281787 +127618319 1 this.scale(this.value) --1100 +-100 1 this.scale(this.shift) -0 +-100 1 this.scale(this.getValue()) --1100 +-100 1 this.scale(this.getShift()) -0 +-100 1 this.sum(this.getNum()) -200 @@ -6525,20 +6590,20 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -687743568 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -579 +159 this -477980458 +1577213552 1 this.value -100 @@ -6550,19 +6615,19 @@ this.heavy false 1 this.list1 -620106128 +532445947 1 this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1279840457 +2109957412 1 this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6580,13 +6645,13 @@ this.isHeavy() false 1 this.getNum() -1149159222 +1798286609 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1598606683 +2036958521 1 this.scale(this.value) -100 @@ -6612,15 +6677,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --100 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -579 +159 this -477980458 +1577213552 1 this.value -100 @@ -6632,19 +6694,19 @@ this.heavy false 1 this.list1 -620106128 +532445947 1 this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1279840457 +2109957412 1 this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6662,13 +6724,13 @@ this.isHeavy() false 1 this.getNum() -614613564 +1945604815 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -413828078 +785992331 1 this.scale(this.value) -100 @@ -6694,42 +6756,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --100 -1 return --100 +940060004 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -614 +194 this -917732198 +1577213552 1 this.value -100 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1097499032 +532445947 1 this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1180110925 +2109957412 1 this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6741,31 +6803,31 @@ this.getValue() -100 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1656457960 +234698513 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -110934012 +1121172875 1 this.scale(this.value) --600 +-100 1 this.scale(this.shift) --75 +-100 1 this.scale(this.getValue()) --600 +-100 1 this.scale(this.getShift()) --75 +-100 1 this.sum(this.getNum()) -200 @@ -6774,44 +6836,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --100 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -614 +194 this -917732198 +1577213552 1 this.value -100 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1097499032 +532445947 1 this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1180110925 +2109957412 1 this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6823,31 +6882,31 @@ this.getValue() -100 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -452134088 +649734728 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1220473930 +1595953398 1 this.scale(this.value) --600 +-100 1 this.scale(this.shift) --75 +-100 1 this.scale(this.getValue()) --600 +-100 1 this.scale(this.getShift()) --75 +-100 1 this.sum(this.getNum()) -200 @@ -6856,47 +6915,44 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --100 +0 1 return --600 +998351292 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -649 +229 this -716754375 +240650537 1 this.value -100 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1255004602 +483422889 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +1435804085 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6908,31 +6964,31 @@ this.getValue() -100 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1889029013 +1684106402 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -512384243 +335471116 1 this.scale(this.value) --1100 +-600 1 this.scale(this.shift) -0 +-75 1 this.scale(this.getValue()) --1100 +-600 1 this.scale(this.getShift()) -0 +-75 1 this.sum(this.getNum()) -200 @@ -6941,44 +6997,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --100 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -649 +229 this -716754375 +240650537 1 this.value -100 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1255004602 +483422889 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +1435804085 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -6990,31 +7043,31 @@ this.getValue() -100 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -232547631 +1308927845 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -7796677 +2017354584 1 this.scale(this.value) --1100 +-600 1 this.scale(this.shift) -0 +-75 1 this.scale(this.getValue()) --1100 +-600 1 this.scale(this.getShift()) -0 +-75 1 this.sum(this.getNum()) -200 @@ -7023,47 +7076,44 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --100 +5 1 return --1100 +-100 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -684 +264 this -477980458 +240650537 1 this.value -100 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -620106128 +483422889 1 this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1279840457 +1435804085 1 this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7075,31 +7125,31 @@ this.getValue() -100 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -42247872 +321142942 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1390381194 +745160567 1 this.scale(this.value) --100 +-600 1 this.scale(this.shift) --100 +-75 1 this.scale(this.getValue()) --100 +-600 1 this.scale(this.getShift()) --100 +-75 1 this.sum(this.getNum()) -200 @@ -7108,47 +7158,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1367164551 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -684 +264 this -477980458 +240650537 1 this.value -100 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -620106128 +483422889 1 this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1279840457 +1435804085 1 this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7160,31 +7204,31 @@ this.getValue() -100 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2007069404 +610984013 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -142345952 +1644443712 1 this.scale(this.value) --100 +-600 1 this.scale(this.shift) --100 +-75 1 this.scale(this.getValue()) --100 +-600 1 this.scale(this.getShift()) --100 +-75 1 this.sum(this.getNum()) -200 @@ -7193,26 +7237,20 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1367164551 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --200 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -719 +299 this -917732198 +240650537 1 this.value -100 @@ -7224,19 +7262,19 @@ this.heavy true 1 this.list1 -1097499032 +483422889 1 this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1180110925 +1435804085 1 this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7254,13 +7292,13 @@ this.isHeavy() true 1 this.getNum() -111632506 +1393931310 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1454304511 +788117692 1 this.scale(this.value) -600 @@ -7286,18 +7324,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1984529870 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -719 +299 this -917732198 +240650537 1 this.value -100 @@ -7309,19 +7341,19 @@ this.heavy true 1 this.list1 -1097499032 +483422889 1 this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1180110925 +1435804085 1 this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7339,13 +7371,13 @@ this.isHeavy() true 1 this.getNum() -1425003533 +1566723494 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1296747787 +510113906 1 this.scale(this.value) -600 @@ -7371,45 +7403,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1984529870 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --200 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -754 +334 this -716754375 +240650537 1 this.value -100 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1255004602 +483422889 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +1435804085 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7421,31 +7447,31 @@ this.getValue() -100 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1776006353 +1622006612 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1463565218 +66233253 1 this.scale(this.value) --1100 +-600 1 this.scale(this.shift) -0 +-75 1 this.scale(this.getValue()) --1100 +-600 1 this.scale(this.getShift()) -0 +-75 1 this.sum(this.getNum()) -200 @@ -7454,47 +7480,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -862926188 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -754 +334 this -716754375 +240650537 1 this.value -100 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1255004602 +483422889 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +1435804085 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7506,31 +7526,31 @@ this.getValue() -100 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1243373525 +1286783232 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -215465718 +1874154700 1 this.scale(this.value) --1100 +-600 1 this.scale(this.shift) -0 +-75 1 this.scale(this.getValue()) --1100 +-600 1 this.scale(this.getShift()) -0 +-75 1 this.sum(this.getNum()) -200 @@ -7539,50 +7559,47 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -862926188 +return +1632392469 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --200 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -789 +369 this -477980458 +240650537 1 this.value -100 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -620106128 +483422889 1 this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1279840457 +1435804085 1 this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7594,31 +7611,31 @@ this.getValue() -100 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -674893584 +2008362258 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2075326481 +760563749 1 this.scale(this.value) --100 +-600 1 this.scale(this.shift) --100 +-75 1 this.scale(this.getValue()) --100 +-600 1 this.scale(this.getShift()) --100 +-75 1 this.sum(this.getNum()) -200 @@ -7627,53 +7644,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -582771593 -1 -l[..] -[2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -789 +369 this -477980458 +240650537 1 this.value -100 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -620106128 +483422889 1 this.list1[..] -[1379875314 888498445 1539567524 480913165 1726600494 27980747 2120979783 1226156328 756328084 650401195 601121135] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1279840457 +1435804085 1 this.list2[..] -[1911086639 1867717141 953520588 1297548602 202918529 247685467 1026335983 1040213577 205218412 247113402 1574116] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7685,31 +7690,31 @@ this.getValue() -100 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -837375677 +1753447031 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1312664548 +1810132623 1 this.scale(this.value) --100 +-600 1 this.scale(this.shift) --100 +-75 1 this.scale(this.getValue()) --100 +-600 1 this.scale(this.getShift()) --100 +-75 1 this.sum(this.getNum()) -200 @@ -7718,56 +7723,44 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -582771593 -1 -l[..] -[2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +895947612 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -824 +404 this -917732198 +873415566 1 this.value -100 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1097499032 +818403870 1 this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1180110925 +762218386 1 this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7779,31 +7772,31 @@ this.getValue() -100 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -853552605 +846492085 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -467870275 +1096283470 1 this.scale(this.value) --600 +-1100 1 this.scale(this.shift) --75 +0 1 this.scale(this.getValue()) --600 +-1100 1 this.scale(this.getShift()) --75 +0 1 this.sum(this.getNum()) -200 @@ -7812,53 +7805,41 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -582771593 -1 -l[..] -[2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -824 +404 this -917732198 +873415566 1 this.value -100 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1097499032 +818403870 1 this.list1[..] -[929186741 340475003 1466939813 1745169531 732656791 91454439 1623948668 1335593353 1818405427 1100231132 1750434854] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1180110925 +762218386 1 this.list2[..] -[2112836430 1799775865 1525795060 935344593 756278511 1964711431 1196464545 2090220954 1806076252 42217019 871834823] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7870,31 +7851,31 @@ this.getValue() -100 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1558080258 +152005629 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -239304688 +75457651 1 this.scale(this.value) --600 +-1100 1 this.scale(this.shift) --75 +0 1 this.scale(this.getValue()) --600 +-1100 1 this.scale(this.getShift()) --75 +0 1 this.sum(this.getNum()) -200 @@ -7903,32 +7884,20 @@ this.sum(this.getJWrap()) -200 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -582771593 -1 -l[..] -[2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-100 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -859 +439 this -716754375 +873415566 1 this.value -100 @@ -7940,19 +7909,19 @@ this.heavy true 1 this.list1 -1255004602 +818403870 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +762218386 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -7970,13 +7939,13 @@ this.isHeavy() true 1 this.getNum() -1904504032 +362239120 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -755507289 +1796488937 1 this.scale(this.value) -1100 @@ -8002,24 +7971,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -582771593 -1 -l[..] -[2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -859 +439 this -716754375 +873415566 1 this.value -100 @@ -8031,19 +7988,19 @@ this.heavy true 1 this.list1 -1255004602 +818403870 1 this.list1[..] -[277964980 980486635 1396851014 583763294 1604382762 1056409202 1822148265 1729083635 959942241 1852088223 271300696] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -643015091 +762218386 1 this.list2[..] -[1016922733 1745510705 24317268 678430346 1388143299 262085285 378424998 1489862619 461713513 1160596380 549392959] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8061,13 +8018,13 @@ this.isHeavy() true 1 this.getNum() -1887685159 +423031029 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1548550182 +1712669532 1 this.scale(this.value) -1100 @@ -8093,61 +8050,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -582771593 -1 -l[..] -[2116733231 721317215 633245190 22953798 1384910173 1757511425 2004439137 1032605070 1178060083 2004073288 1326231868 1246233263 1034442050 1987411885 470905757 1035818704 1502515546 518576549 1227419517 511909137] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -894 -value --99 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -894 +474 this -1128590881 +873415566 1 this.value --99 +-100 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1651366663 +818403870 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +762218386 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8156,93 +8091,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -927929668 +1225373914 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -687685562 +60830820 1 this.scale(this.value) --99 +-1100 1 this.scale(this.shift) --99 +0 1 this.scale(this.getValue()) --99 +-1100 1 this.scale(this.getShift()) --99 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --99 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -912 -value --99 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -912 +474 this -174252380 +873415566 1 this.value --99 +-100 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1639539799 +818403870 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +762218386 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8251,72 +8170,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1177504482 +759156157 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1256021869 +1635546341 1 this.scale(this.value) --594 +-1100 1 this.scale(this.shift) --74 +0 1 this.scale(this.getValue()) --594 +-1100 1 this.scale(this.getShift()) --74 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --99 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -930 -value --99 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -930 +509 this -195302273 +873415566 1 this.value --99 +-100 1 this.shift 10 @@ -8325,19 +8231,19 @@ this.heavy true 1 this.list1 -1090289695 +818403870 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +762218386 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8346,7 +8252,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 10 @@ -8355,31 +8261,31 @@ this.isHeavy() true 1 this.getNum() -115247781 +1698156408 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2086689320 +1740035246 1 this.scale(this.value) --1089 +-1100 1 this.scale(this.shift) -1 +0 1 this.scale(this.getValue()) --1089 +-1100 1 this.scale(this.getShift()) -1 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 10 @@ -8387,42 +8293,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --99 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -948 +509 this -1128590881 +873415566 1 this.value --99 +-100 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1651366663 +818403870 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +762218386 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8431,77 +8331,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -431962083 +884457408 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1492002121 +913190639 1 this.scale(this.value) --99 +-1100 1 this.scale(this.shift) --99 +0 1 this.scale(this.getValue()) --99 +-1100 1 this.scale(this.getShift()) --99 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1845066581 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -948 +544 this -1128590881 +873415566 1 this.value --99 +-100 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1651366663 +818403870 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +762218386 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8510,80 +8416,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2060585275 +1018937824 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1935425403 +905654280 1 this.scale(this.value) --99 +-1100 1 this.scale(this.shift) --99 +0 1 this.scale(this.getValue()) --99 +-1100 1 this.scale(this.getShift()) --99 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --99 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -983 +544 this -1128590881 +873415566 1 this.value --99 +-100 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1651366663 +818403870 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +762218386 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8592,56 +8495,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -759947112 +1915058446 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1345862675 +1419810764 1 this.scale(this.value) --99 +-1100 1 this.scale(this.shift) --99 +0 1 this.scale(this.getValue()) --99 +-1100 1 this.scale(this.getShift()) --99 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +922151033 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -983 +579 this -1128590881 +1577213552 1 this.value --99 +-100 1 this.shift 0 @@ -8650,19 +8556,19 @@ this.heavy false 1 this.list1 -1651366663 +532445947 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +2109957412 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8671,7 +8577,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 0 @@ -8680,31 +8586,31 @@ this.isHeavy() false 1 this.getNum() -468724874 +1516369375 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -888940122 +55909012 1 this.scale(this.value) --99 +-100 1 this.scale(this.shift) --99 +-100 1 this.scale(this.getValue()) --99 +-100 1 this.scale(this.getShift()) --99 +-100 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 0 @@ -8712,18 +8618,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-100 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -1018 +579 this -1128590881 +1577213552 1 this.value --99 +-100 1 this.shift 0 @@ -8732,19 +8638,19 @@ this.heavy false 1 this.list1 -1651366663 +532445947 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +2109957412 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8753,7 +8659,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 0 @@ -8762,31 +8668,31 @@ this.isHeavy() false 1 this.getNum() -372898275 +1394336709 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -944025979 +1387228415 1 this.scale(this.value) --99 +-100 1 this.scale(this.shift) --99 +-100 1 this.scale(this.getValue()) --99 +-100 1 this.scale(this.getShift()) --99 +-100 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 0 @@ -8794,36 +8700,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-100 +1 +return +-100 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -1018 +614 this -1128590881 +240650537 1 this.value --99 +-100 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1651366663 +483422889 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +1435804085 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8832,80 +8744,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -635445017 +120960120 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -488224188 +748658608 1 this.scale(this.value) --99 +-600 1 this.scale(this.shift) --99 +-75 1 this.scale(this.getValue()) --99 +-600 1 this.scale(this.getShift()) --99 +-75 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-100 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -1053 +614 this -1128590881 +240650537 1 this.value --99 +-100 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1651366663 +483422889 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +1435804085 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8914,77 +8826,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -48912529 +546718765 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1734121749 +167185492 1 this.scale(this.value) --99 +-600 1 this.scale(this.shift) --99 +-75 1 this.scale(this.getValue()) --99 +-600 1 this.scale(this.getShift()) --99 +-75 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-100 +1 +return +-600 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -1053 +649 this -1128590881 +873415566 1 this.value --99 +-100 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1651366663 +818403870 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +762218386 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -8993,83 +8911,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1883662006 +592179046 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -503410768 +1937348256 1 this.scale(this.value) --99 +-1100 1 this.scale(this.shift) --99 +0 1 this.scale(this.getValue()) --99 +-1100 1 this.scale(this.getShift()) --99 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1886692243 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-100 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -1088 +649 this -1128590881 +873415566 1 this.value --99 +-100 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1651366663 +818403870 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +762218386 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9078,56 +8993,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2040480146 +1641808846 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1183454879 +1358444045 1 this.scale(this.value) --99 +-1100 1 this.scale(this.shift) --99 +0 1 this.scale(this.getValue()) --99 +-1100 1 this.scale(this.getShift()) --99 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-100 +1 +return +-1100 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -1088 +684 this -1128590881 +1577213552 1 this.value --99 +-100 1 this.shift 0 @@ -9136,19 +9057,19 @@ this.heavy false 1 this.list1 -1651366663 +532445947 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +2109957412 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9157,7 +9078,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 0 @@ -9166,31 +9087,31 @@ this.isHeavy() false 1 this.getNum() -332612839 +750044075 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -324051932 +331844619 1 this.scale(this.value) --99 +-100 1 this.scale(this.shift) --99 +-100 1 this.scale(this.getValue()) --99 +-100 1 this.scale(this.getShift()) --99 +-100 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 0 @@ -9198,39 +9119,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -322292332 +n +310656974 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -1123 +684 this -174252380 +1577213552 1 this.value --99 +-100 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1639539799 +532445947 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +2109957412 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9239,56 +9163,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -813466190 +64830413 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1045358528 +159259014 1 this.scale(this.value) --594 +-100 1 this.scale(this.shift) --74 +-100 1 this.scale(this.getValue()) --594 +-100 1 this.scale(this.getShift()) --74 +-100 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +310656974 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-200 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -1123 +719 this -174252380 +240650537 1 this.value --99 +-100 1 this.shift 5 @@ -9297,19 +9230,19 @@ this.heavy true 1 this.list1 -1639539799 +483422889 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +1435804085 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9318,7 +9251,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 5 @@ -9327,31 +9260,31 @@ this.isHeavy() true 1 this.getNum() -777063989 +653687670 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1266405716 +356473385 1 this.scale(this.value) --594 +-600 1 this.scale(this.shift) --74 +-75 1 this.scale(this.getValue()) --594 +-600 1 this.scale(this.getShift()) --74 +-75 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 5 @@ -9359,18 +9292,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --99 +n +2136344592 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -1158 +719 this -174252380 +240650537 1 this.value --99 +-100 1 this.shift 5 @@ -9379,19 +9315,19 @@ this.heavy true 1 this.list1 -1639539799 +483422889 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +1435804085 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9400,7 +9336,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 5 @@ -9409,31 +9345,31 @@ this.isHeavy() true 1 this.getNum() -770443395 +110992469 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1663232002 +329611835 1 this.scale(this.value) --594 +-600 1 this.scale(this.shift) --74 +-75 1 this.scale(this.getValue()) --594 +-600 1 this.scale(this.getShift()) --74 +-75 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 5 @@ -9441,36 +9377,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +2136344592 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-200 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -1158 +754 this -174252380 +873415566 1 this.value --99 +-100 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1639539799 +818403870 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +762218386 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9479,80 +9424,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -145624615 +2091156596 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1529030372 +863831416 1 this.scale(this.value) --594 +-1100 1 this.scale(this.shift) --74 +0 1 this.scale(this.getValue()) --594 +-1100 1 this.scale(this.getShift()) --74 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +1508395126 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -1193 +754 this -174252380 +873415566 1 this.value --99 +-100 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1639539799 +818403870 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +762218386 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9561,77 +9509,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1624142202 +1638172114 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -293351997 +972765878 1 this.scale(this.value) --594 +-1100 1 this.scale(this.shift) --74 +0 1 this.scale(this.getValue()) --594 +-1100 1 this.scale(this.getShift()) --74 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1508395126 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-200 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -1193 +789 this -174252380 +1577213552 1 this.value --99 +-100 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1639539799 +532445947 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +2109957412 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9640,80 +9597,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1892043714 +1651945012 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1788340069 +2034688500 1 this.scale(this.value) --594 +-100 1 this.scale(this.shift) --74 +-100 1 this.scale(this.getValue()) --594 +-100 1 this.scale(this.getShift()) --74 +-100 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +1007251739 +1 +l[..] +[1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -1228 +789 this -174252380 +1577213552 1 this.value --99 +-100 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1639539799 +532445947 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1289479439 6738746 2096171631 2114694065 1844169442 1537358694 804581391 209813603 1057941451 1975358023 2101440631] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +2109957412 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[747464370 1513712028 1018547642 1456208737 288665596 13648335 312116338 453211571 796684896 757108857 1809787067] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9722,56 +9688,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -450416271 +1223685984 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -266411022 +1076835071 1 this.scale(this.value) --594 +-100 1 this.scale(this.shift) --74 +-100 1 this.scale(this.getValue()) --594 +-100 1 this.scale(this.getShift()) --74 +-100 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1007251739 +1 +l[..] +[1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -1228 +824 this -174252380 +240650537 1 this.value --99 +-100 1 this.shift 5 @@ -9780,19 +9761,19 @@ this.heavy true 1 this.list1 -1639539799 +483422889 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +1435804085 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9801,7 +9782,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 5 @@ -9810,31 +9791,31 @@ this.isHeavy() true 1 this.getNum() -66642759 +1463757745 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1225870426 +1525262377 1 this.scale(this.value) --594 +-600 1 this.scale(this.shift) --74 +-75 1 this.scale(this.getValue()) --594 +-600 1 this.scale(this.getShift()) --74 +-75 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 5 @@ -9842,21 +9823,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -246140464 +l +1007251739 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -1263 +824 this -174252380 +240650537 1 this.value --99 +-100 1 this.shift 5 @@ -9865,19 +9852,19 @@ this.heavy true 1 this.list1 -1639539799 +483422889 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[2088051243 1277181601 41903949 488970385 1209271652 93122545 2083562754 1239731077 557041912 1134712904 985922955] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +1435804085 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[1784662007 997110508 509886383 1854778591 2054798982 885951223 191382150 142666848 1060830840 2137211482 920011586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -9886,7 +9873,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 5 @@ -9895,31 +9882,31 @@ this.isHeavy() true 1 this.getNum() -829274326 +1837760739 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -444728052 +1418428263 1 this.scale(this.value) --594 +-600 1 this.scale(this.shift) --74 +-75 1 this.scale(this.getValue()) --594 +-600 1 this.scale(this.getShift()) --74 +-75 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 5 @@ -9927,97 +9914,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -1263 -this -174252380 -1 -this.value --99 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1639539799 -1 -this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -553199177 +l +1007251739 1 -this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +l[..] +[1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --99 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1301278404 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -612674980 -1 -this.scale(this.value) --594 -1 -this.scale(this.shift) --74 -1 -this.scale(this.getValue()) --594 -1 -this.scale(this.getShift()) --74 -1 -this.sum(this.getNum()) --198 -1 -this.sum(this.getJWrap()) --198 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -44301495 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -1298 +859 this -195302273 +873415566 1 this.value --99 +-100 1 this.shift 10 @@ -10026,19 +9946,19 @@ this.heavy true 1 this.list1 -1090289695 +818403870 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +762218386 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10047,7 +9967,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 10 @@ -10056,31 +9976,31 @@ this.isHeavy() true 1 this.getNum() -1545884603 +2059904228 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1425361215 +1836643189 1 this.scale(this.value) --1089 +-1100 1 this.scale(this.shift) -1 +0 1 this.scale(this.getValue()) --1089 +-1100 1 this.scale(this.getShift()) -1 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 10 @@ -10088,15 +10008,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1007251739 +1 +l[..] +[1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -1298 +859 this -195302273 +873415566 1 this.value --99 +-100 1 this.shift 10 @@ -10105,19 +10037,19 @@ this.heavy true 1 this.list1 -1090289695 +818403870 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1531333864 1468177767 434091818 398887205 2114889273 1025799482 1504109395 2047526627 1908316405 1873653341 25126016] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +762218386 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[672320506 718231523 1349414238 157627094 932607259 1740000325 1142020464 1682092198 1626877848 905544614 2137589296] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10126,7 +10058,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --99 +-100 1 this.getShift() 10 @@ -10135,31 +10067,31 @@ this.isHeavy() true 1 this.getNum() -865858220 +1355316001 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1129911468 +1597462040 1 this.scale(this.value) --1089 +-1100 1 this.scale(this.shift) -1 +0 1 this.scale(this.getValue()) --1089 +-1100 1 this.scale(this.getShift()) -1 +0 1 this.sum(this.getNum()) --198 +-200 1 this.sum(this.getJWrap()) --198 +-200 1 this.retrieve(this.list1) 10 @@ -10167,39 +10099,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1007251739 +1 +l[..] +[1556595366 194494468 1167116739 853993923 1347870667 1702146597 644460953 591723622 1166726978 95395916 1856056345 1778535015 2032251042 24433162 1725097945 519821334 1781256139 1307096070 1014328909 2081303229] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +894 +value -99 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -1333 +894 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10211,31 +10165,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -224152255 +1410986873 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -640632947 +2110245805 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -10244,41 +10198,57 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-99 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -1333 +912 +value +-99 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +912 this -195302273 +221036634 1 this.value -99 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1090289695 +1335050193 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +361993357 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10290,31 +10260,31 @@ this.getValue() -99 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1782417818 +214074868 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1846875123 +1442045361 1 this.scale(this.value) --1089 +-594 1 this.scale(this.shift) -1 +-74 1 this.scale(this.getValue()) --1089 +-594 1 this.scale(this.getShift()) -1 +-74 1 this.sum(this.getNum()) -198 @@ -10323,20 +10293,33 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-99 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +930 +value +-99 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -1368 +930 this -195302273 +146611050 1 this.value -99 @@ -10348,19 +10331,19 @@ this.heavy true 1 this.list1 -1090289695 +415138788 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +1509563803 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10378,13 +10361,13 @@ this.isHeavy() true 1 this.getNum() -701558523 +182738614 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1408874031 +94345706 1 this.scale(this.value) -1089 @@ -10410,36 +10393,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-99 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -1368 +948 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10451,31 +10440,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -791147195 +670035812 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1739647788 +1870647526 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -10484,44 +10473,41 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -1403 +948 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10533,31 +10519,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -270519011 +1204167249 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -390137178 +1047503754 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -10566,41 +10552,44 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-99 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -1403 +983 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10612,31 +10601,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -767976355 +1722023916 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1001880015 +2009787198 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -10645,47 +10634,41 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -178135978 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -1438 +983 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10697,31 +10680,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -339178328 +32017212 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1148559558 +1121454968 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -10730,41 +10713,44 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -1438 +1018 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10776,31 +10762,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -109988423 +1006485584 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1739488941 +466505482 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -10809,20 +10795,17 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -1895744776 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -1473 +1018 this -1128590881 +403716510 1 this.value -99 @@ -10834,19 +10817,19 @@ this.heavy false 1 this.list1 -1651366663 +853119666 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +57494364 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10864,13 +10847,13 @@ this.isHeavy() false 1 this.getNum() -1715063340 +1580893732 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1544045346 +1547425104 1 this.scale(this.value) -99 @@ -10896,15 +10879,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --99 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -1473 +1053 this -1128590881 +403716510 1 this.value -99 @@ -10916,19 +10899,19 @@ this.heavy false 1 this.list1 -1651366663 +853119666 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +57494364 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -10946,13 +10929,13 @@ this.isHeavy() false 1 this.getNum() -577739874 +152134087 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1300494231 +1615780336 1 this.scale(this.value) -99 @@ -10978,42 +10961,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --99 -1 -return --99 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -1508 +1053 this -174252380 +403716510 1 this.value -99 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1639539799 +853119666 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +57494364 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11025,31 +11002,31 @@ this.getValue() -99 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -317981251 +1783593083 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1371571821 +1750905143 1 this.scale(this.value) --594 +-99 1 this.scale(this.shift) --74 +-99 1 this.scale(this.getValue()) --594 +-99 1 this.scale(this.getShift()) --74 +-99 1 this.sum(this.getNum()) -198 @@ -11058,44 +11035,47 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --99 +return +1782704802 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -1508 +1088 this -174252380 +403716510 1 this.value -99 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1639539799 +853119666 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +57494364 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11107,31 +11087,31 @@ this.getValue() -99 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -918128649 +2094411587 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1318200048 +1833638914 1 this.scale(this.value) --594 +-99 1 this.scale(this.shift) --74 +-99 1 this.scale(this.getValue()) --594 +-99 1 this.scale(this.getShift()) --74 +-99 1 this.sum(this.getNum()) -198 @@ -11140,47 +11120,41 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --99 -1 -return --594 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -1543 +1088 this -195302273 +403716510 1 this.value -99 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1090289695 +853119666 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +57494364 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11192,31 +11166,31 @@ this.getValue() -99 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1546904284 +1620303253 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1383270606 +90320863 1 this.scale(this.value) --1089 +-99 1 this.scale(this.shift) -1 +-99 1 this.scale(this.getValue()) --1089 +-99 1 this.scale(this.getShift()) -1 +-99 1 this.sum(this.getNum()) -198 @@ -11225,44 +11199,44 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --99 +return +1216590855 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -1543 +1123 this -195302273 +221036634 1 this.value -99 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1090289695 +1335050193 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +361993357 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11274,31 +11248,31 @@ this.getValue() -99 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -2118596267 +2107447833 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1968592209 +60559178 1 this.scale(this.value) --1089 +-594 1 this.scale(this.shift) -1 +-74 1 this.scale(this.getValue()) --1089 +-594 1 this.scale(this.getShift()) -1 +-74 1 this.sum(this.getNum()) -198 @@ -11307,47 +11281,41 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --99 -1 -return --1089 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -1578 +1123 this -1128590881 +221036634 1 this.value -99 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1651366663 +1335050193 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +361993357 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11359,31 +11327,31 @@ this.getValue() -99 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1996190981 +395629617 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1992284233 +1122134344 1 this.scale(this.value) --99 +-594 1 this.scale(this.shift) --99 +-74 1 this.scale(this.getValue()) --99 +-594 1 this.scale(this.getShift()) --99 +-74 1 this.sum(this.getNum()) -198 @@ -11392,47 +11360,44 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -756080007 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-99 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -1578 +1158 this -1128590881 +221036634 1 this.value -99 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1651366663 +1335050193 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +361993357 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11444,31 +11409,31 @@ this.getValue() -99 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -775938350 +1471868639 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1675143866 +876563773 1 this.scale(this.value) --99 +-594 1 this.scale(this.shift) --99 +-74 1 this.scale(this.getValue()) --99 +-594 1 this.scale(this.getShift()) --99 +-74 1 this.sum(this.getNum()) -198 @@ -11477,26 +11442,17 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -756080007 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --198 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -1613 +1158 this -174252380 +221036634 1 this.value -99 @@ -11508,19 +11464,19 @@ this.heavy true 1 this.list1 -1639539799 +1335050193 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +361993357 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11538,13 +11494,13 @@ this.isHeavy() true 1 this.getNum() -632343692 +87765719 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2051346088 +1413653265 1 this.scale(this.value) -594 @@ -11570,18 +11526,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1271232078 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -1613 +1193 this -174252380 +221036634 1 this.value -99 @@ -11593,19 +11546,19 @@ this.heavy true 1 this.list1 -1639539799 +1335050193 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +361993357 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11623,13 +11576,13 @@ this.isHeavy() true 1 this.getNum() -282730943 +1418621776 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1625131837 +446073433 1 this.scale(this.value) -594 @@ -11655,45 +11608,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1271232078 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --198 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -1648 +1193 this -195302273 +221036634 1 this.value -99 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1090289695 +1335050193 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +361993357 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11705,31 +11649,31 @@ this.getValue() -99 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1893761913 +1181199958 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -601339604 +125622176 1 this.scale(this.value) --1089 +-594 1 this.scale(this.shift) -1 +-74 1 this.scale(this.getValue()) --1089 +-594 1 this.scale(this.getShift()) -1 +-74 1 this.sum(this.getNum()) -198 @@ -11738,47 +11682,44 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -656681646 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -1648 +1228 this -195302273 +221036634 1 this.value -99 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1090289695 +1335050193 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +361993357 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11790,31 +11731,31 @@ this.getValue() -99 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -929962389 +542060780 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -491889057 +237351678 1 this.scale(this.value) --1089 +-594 1 this.scale(this.shift) -1 +-74 1 this.scale(this.getValue()) --1089 +-594 1 this.scale(this.getShift()) -1 +-74 1 this.sum(this.getNum()) -198 @@ -11823,50 +11764,41 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -656681646 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --198 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -1683 +1228 this -1128590881 +221036634 1 this.value -99 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1651366663 +1335050193 1 this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -106138388 +361993357 1 this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -11878,31 +11810,31 @@ this.getValue() -99 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1514823696 +1967892594 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1223223487 +342597804 1 this.scale(this.value) --99 +-594 1 this.scale(this.shift) --99 +-74 1 this.scale(this.getValue()) --99 +-594 1 this.scale(this.getShift()) --99 +-74 1 this.sum(this.getNum()) -198 @@ -11911,123 +11843,23 @@ this.sum(this.getJWrap()) -198 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -856193278 -1 -l[..] -[1899988446 23981032 1469762835 1947060051 882464171 1053255815 362780484 545520755 959640242 1071358324 1816455020 531995388 1272063655 1374143700 1194026062 1908826466 388211529 615848317 1838968926 966091658] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -1683 -this -1128590881 -1 -this.value --99 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -1651366663 -1 -this.list1[..] -[440851213 567754741 984088366 1801601815 2282005 1846436036 1911757902 264732500 1920494563 1072905931 2057282105] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -106138388 -1 -this.list2[..] -[1456460106 1706393036 1851134014 1413779209 1628095255 160320711 1565696439 1542923582 1051605149 537324433 643009796] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --99 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -2126124686 +return +1308244637 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -1797195169 -1 -this.scale(this.value) --99 -1 -this.scale(this.shift) --99 -1 -this.scale(this.getValue()) --99 -1 -this.scale(this.getShift()) --99 -1 -this.sum(this.getNum()) --198 -1 -this.sum(this.getJWrap()) --198 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -856193278 -1 -l[..] -[1899988446 23981032 1469762835 1947060051 882464171 1053255815 362780484 545520755 959640242 1071358324 1816455020 531995388 1272063655 1374143700 1194026062 1908826466 388211529 615848317 1838968926 966091658] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -1718 +1263 this -174252380 +221036634 1 this.value -99 @@ -12039,19 +11871,19 @@ this.heavy true 1 this.list1 -1639539799 +1335050193 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +361993357 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12069,13 +11901,13 @@ this.isHeavy() true 1 this.getNum() -1101710328 +1860944798 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -841478262 +1179381257 1 this.scale(this.value) -594 @@ -12101,24 +11933,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -856193278 -1 -l[..] -[1899988446 23981032 1469762835 1947060051 882464171 1053255815 362780484 545520755 959640242 1071358324 1816455020 531995388 1272063655 1374143700 1194026062 1908826466 388211529 615848317 1838968926 966091658] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -1718 +1263 this -174252380 +221036634 1 this.value -99 @@ -12130,19 +11950,19 @@ this.heavy true 1 this.list1 -1639539799 +1335050193 1 this.list1[..] -[1382727136 1574430565 161007621 225690927 731289487 733496228 1314970216 950209035 1474852153 1583881797 94073967] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -553199177 +361993357 1 this.list2[..] -[1161859976 311814461 805547347 1097350341 577620751 1445877617 2087643114 1429992312 1391294207 1679788513 1385514529] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12160,13 +11980,13 @@ this.isHeavy() true 1 this.getNum() -1545333939 +258754732 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -760285955 +333362446 1 this.scale(this.value) -594 @@ -12192,27 +12012,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -856193278 -1 -l[..] -[1899988446 23981032 1469762835 1947060051 882464171 1053255815 362780484 545520755 959640242 1071358324 1816455020 531995388 1272063655 1374143700 1194026062 1908826466 388211529 615848317 1838968926 966091658] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +597255128 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -1753 +1298 this -195302273 +146611050 1 this.value -99 @@ -12224,19 +12032,19 @@ this.heavy true 1 this.list1 -1090289695 +415138788 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +1509563803 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12254,13 +12062,13 @@ this.isHeavy() true 1 this.getNum() -598346035 +985397764 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1883374991 +1476394199 1 this.scale(this.value) -1089 @@ -12286,24 +12094,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -856193278 -1 -l[..] -[1899988446 23981032 1469762835 1947060051 882464171 1053255815 362780484 545520755 959640242 1071358324 1816455020 531995388 1272063655 1374143700 1194026062 1908826466 388211529 615848317 1838968926 966091658] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -1753 +1298 this -195302273 +146611050 1 this.value -99 @@ -12315,19 +12111,19 @@ this.heavy true 1 this.list1 -1090289695 +415138788 1 this.list1[..] -[20944014 1966208837 593563423 958910046 1683856034 1028863272 566686860 216081575 288183948 931990051 211065939] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1889735576 +1509563803 1 this.list2[..] -[1650170349 1809238285 1646898122 500010271 569113986 206598964 1975214396 1626138246 1628608800 201536938 649605647] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12345,13 +12141,13 @@ this.isHeavy() true 1 this.getNum() -2122000604 +837764579 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1203225699 +1501587365 1 this.scale(this.value) -1089 @@ -12377,61 +12173,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -856193278 -1 -l[..] -[1899988446 23981032 1469762835 1947060051 882464171 1053255815 362780484 545520755 959640242 1071358324 1816455020 531995388 1272063655 1374143700 1194026062 1908826466 388211529 615848317 1838968926 966091658] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -1788 -value --98 -1 -shift -0 +-99 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -1788 +1333 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12440,93 +12214,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1576972005 +1007603019 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2072800408 +348100441 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --98 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -1806 -value --98 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -1806 +1333 this -1076735622 +146611050 1 this.value --98 +-99 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1998389332 +415138788 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +1509563803 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12535,72 +12293,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -359819969 +1597249648 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -180269031 +89387388 1 this.scale(this.value) --588 +-1089 1 this.scale(this.shift) --73 +1 1 this.scale(this.getValue()) --588 +-1089 1 this.scale(this.getShift()) --73 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --98 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -1824 -value --98 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -1824 +1368 this -1829661747 +146611050 1 this.value --98 +-99 1 this.shift 10 @@ -12609,19 +12354,19 @@ this.heavy true 1 this.list1 -1306640436 +415138788 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1509563803 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12630,7 +12375,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 10 @@ -12639,31 +12384,31 @@ this.isHeavy() true 1 this.getNum() -303811743 +1333592072 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1595335682 +655381473 1 this.scale(this.value) --1078 +-1089 1 this.scale(this.shift) -2 +1 1 this.scale(this.getValue()) --1078 +-1089 1 this.scale(this.getShift()) -2 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 10 @@ -12671,42 +12416,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --98 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -1842 +1368 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12715,77 +12454,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1473474579 +1486371051 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2053315696 +1121647253 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -1842 +1403 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12794,80 +12536,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -14695382 +1694556038 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -24665869 +1076496284 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --98 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -1877 +1403 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12876,77 +12615,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -94916412 +1508646930 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1827270410 +1291286504 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +795372831 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -1877 +1438 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -12955,80 +12700,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1917628770 +1072601481 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -152163214 +121295574 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -1912 +1438 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13037,56 +12779,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1901597768 +1887813102 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1302052122 +485041780 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1459672753 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -1912 +1473 this -1908302941 +403716510 1 this.value --98 +-99 1 this.shift 0 @@ -13095,19 +12840,19 @@ this.heavy false 1 this.list1 -179261442 +853119666 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +57494364 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13116,7 +12861,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 0 @@ -13125,31 +12870,31 @@ this.isHeavy() false 1 this.getNum() -731651524 +117244645 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -375801146 +1540011289 1 this.scale(this.value) --98 +-99 1 this.scale(this.shift) --98 +-99 1 this.scale(this.getValue()) --98 +-99 1 this.scale(this.getShift()) --98 +-99 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 0 @@ -13157,18 +12902,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-99 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -1947 +1473 this -1908302941 +403716510 1 this.value --98 +-99 1 this.shift 0 @@ -13177,19 +12922,19 @@ this.heavy false 1 this.list1 -179261442 +853119666 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +57494364 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13198,7 +12943,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 0 @@ -13207,31 +12952,31 @@ this.isHeavy() false 1 this.getNum() -340454995 +239465106 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1130665357 +1596000437 1 this.scale(this.value) --98 +-99 1 this.scale(this.shift) --98 +-99 1 this.scale(this.getValue()) --98 +-99 1 this.scale(this.getShift()) --98 +-99 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 0 @@ -13239,36 +12984,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-99 +1 +return +-99 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -1947 +1508 this -1908302941 +221036634 1 this.value --98 +-99 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -179261442 +1335050193 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +361993357 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13277,83 +13028,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -9862796 +832947102 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -407771553 +1061804750 1 this.scale(this.value) --98 +-594 1 this.scale(this.shift) --98 +-74 1 this.scale(this.getValue()) --98 +-594 1 this.scale(this.getShift()) --98 +-74 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -796173694 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-99 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -1982 +1508 this -1908302941 +221036634 1 this.value --98 +-99 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -179261442 +1335050193 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +361993357 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13362,77 +13110,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -320670601 +507084503 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1474320684 +1225439493 1 this.scale(this.value) --98 +-594 1 this.scale(this.shift) --98 +-74 1 this.scale(this.getValue()) --98 +-594 1 this.scale(this.getShift()) --98 +-74 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-99 +1 +return +-594 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -1982 +1543 this -1908302941 +146611050 1 this.value --98 +-99 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -179261442 +415138788 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1509563803 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13441,80 +13195,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1241416902 +1454127753 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1690241309 +667026744 1 this.scale(this.value) --98 +-1089 1 this.scale(this.shift) --98 +1 1 this.scale(this.getValue()) --98 +-1089 1 this.scale(this.getShift()) --98 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -971997847 +scale +-99 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -2017 +1543 this -1076735622 +146611050 1 this.value --98 +-99 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1998389332 +415138788 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +1509563803 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13523,77 +13277,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -459711800 +1926764753 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1877544341 +1845904670 1 this.scale(this.value) --588 +-1089 1 this.scale(this.shift) --73 +1 1 this.scale(this.getValue()) --588 +-1089 1 this.scale(this.getShift()) --73 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-99 +1 +return +-1089 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -2017 +1578 this -1076735622 +403716510 1 this.value --98 +-99 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1998389332 +853119666 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +57494364 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13602,80 +13362,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -763030169 +1497973285 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1623194146 +1846896625 1 this.scale(this.value) --588 +-99 1 this.scale(this.shift) --73 +-99 1 this.scale(this.getValue()) --588 +-99 1 this.scale(this.getShift()) --73 +-99 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --98 +n +1555690610 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -2052 +1578 this -1076735622 +403716510 1 this.value --98 +-99 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1998389332 +853119666 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +57494364 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13684,56 +13447,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1539243981 +13329486 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1485576905 +327177752 1 this.scale(this.value) --588 +-99 1 this.scale(this.shift) --73 +-99 1 this.scale(this.getValue()) --588 +-99 1 this.scale(this.getShift()) --73 +-99 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1555690610 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-198 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -2052 +1613 this -1076735622 +221036634 1 this.value --98 +-99 1 this.shift 5 @@ -13742,19 +13514,19 @@ this.heavy true 1 this.list1 -1998389332 +1335050193 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +361993357 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13763,7 +13535,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 5 @@ -13772,31 +13544,31 @@ this.isHeavy() true 1 this.getNum() -1446162313 +1458540918 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -430077845 +1164371389 1 this.scale(this.value) --588 +-594 1 this.scale(this.shift) --73 +-74 1 this.scale(this.getValue()) --588 +-594 1 this.scale(this.getShift()) --73 +-74 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 5 @@ -13804,18 +13576,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +517210187 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -2087 +1613 this -1076735622 +221036634 1 this.value --98 +-99 1 this.shift 5 @@ -13824,19 +13599,19 @@ this.heavy true 1 this.list1 -1998389332 +1335050193 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +361993357 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13845,7 +13620,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 5 @@ -13854,31 +13629,31 @@ this.isHeavy() true 1 this.getNum() -2035868760 +267760927 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -989301669 +633070006 1 this.scale(this.value) --588 +-594 1 this.scale(this.shift) --73 +-74 1 this.scale(this.getValue()) --588 +-594 1 this.scale(this.getShift()) --73 +-74 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 5 @@ -13886,36 +13661,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +517210187 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-198 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -2087 +1648 this -1076735622 +146611050 1 this.value --98 +-99 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1998389332 +415138788 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +1509563803 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -13924,80 +13708,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1374755809 +1459794865 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -744323790 +1776957250 1 this.scale(this.value) --588 +-1089 1 this.scale(this.shift) --73 +1 1 this.scale(this.getValue()) --588 +-1089 1 this.scale(this.getShift()) --73 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +1268066861 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -2122 +1648 this -1076735622 +146611050 1 this.value --98 +-99 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1998389332 +415138788 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +1509563803 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14006,77 +13793,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -757694755 +827966648 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2145204222 +1938056729 1 this.scale(this.value) --588 +-1089 1 this.scale(this.shift) --73 +1 1 this.scale(this.getValue()) --588 +-1089 1 this.scale(this.getShift()) --73 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1268066861 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-198 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -2122 +1683 this -1076735622 +403716510 1 this.value --98 +-99 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1998389332 +853119666 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +57494364 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14085,83 +13881,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -344409671 +1273765644 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1024911832 +701141022 1 this.scale(this.value) --588 +-99 1 this.scale(this.shift) --73 +-99 1 this.scale(this.getValue()) --588 +-99 1 this.scale(this.getShift()) --73 +-99 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -726827837 +l +1447689627 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[112061925 764577347 1344645519 1234776885 540159270 422250493 1690287238 1690254271 1440047379 343965883 230835489 280884709 1847509784 2114650936 1635756693 504527234 101478235 540585569 1007653873 836514715] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -2157 +1683 this -1076735622 +403716510 1 this.value --98 +-99 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1998389332 +853119666 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[559670971 1144648478 1576861390 600746945 1566502717 1458849419 1824835605 981661423 269468037 1681595665 787867107] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +57494364 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[1828757853 1374677625 1345636186 963269035 1359484306 2140832232 157456214 1659791576 1935365522 1483022288 1159785389] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14170,56 +13972,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -908472323 +1414521932 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -85602491 +828441346 1 this.scale(this.value) --588 +-99 1 this.scale(this.shift) --73 +-99 1 this.scale(this.getValue()) --588 +-99 1 this.scale(this.getShift()) --73 +-99 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1447689627 +1 +l[..] +[112061925 764577347 1344645519 1234776885 540159270 422250493 1690287238 1690254271 1440047379 343965883 230835489 280884709 1847509784 2114650936 1635756693 504527234 101478235 540585569 1007653873 836514715] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -2157 +1718 this -1076735622 +221036634 1 this.value --98 +-99 1 this.shift 5 @@ -14228,19 +14045,19 @@ this.heavy true 1 this.list1 -1998389332 +1335050193 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +361993357 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14249,7 +14066,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 5 @@ -14258,31 +14075,31 @@ this.isHeavy() true 1 this.getNum() -2054506394 +1899073220 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -699403845 +555826066 1 this.scale(this.value) --588 +-594 1 this.scale(this.shift) --73 +-74 1 this.scale(this.getValue()) --588 +-594 1 this.scale(this.getShift()) --73 +-74 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 5 @@ -14290,39 +14107,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1702422884 +l +1447689627 +1 +l[..] +[112061925 764577347 1344645519 1234776885 540159270 422250493 1690287238 1690254271 1440047379 343965883 230835489 280884709 1847509784 2114650936 1635756693 504527234 101478235 540585569 1007653873 836514715] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -2192 +1718 this -1829661747 +221036634 1 this.value --98 +-99 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1306640436 +1335050193 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1418370913 391359742 2081853534 707610042 710714889 551734240 1757293506 687780858 1734161410 1364614850 1211076369] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +361993357 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[459296537 2015601401 1287712235 1165897474 1551870003 967765295 1917513796 1182320432 1734853116 703504298 201556483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14331,56 +14157,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1696782407 +174573182 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1386565936 +858242339 1 this.scale(this.value) --1078 +-594 1 this.scale(this.shift) -2 +-74 1 this.scale(this.getValue()) --1078 +-594 1 this.scale(this.getShift()) -2 +-74 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +1447689627 +1 +l[..] +[112061925 764577347 1344645519 1234776885 540159270 422250493 1690287238 1690254271 1440047379 343965883 230835489 280884709 1847509784 2114650936 1635756693 504527234 101478235 540585569 1007653873 836514715] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -2192 +1753 this -1829661747 +146611050 1 this.value --98 +-99 1 this.shift 10 @@ -14389,19 +14230,19 @@ this.heavy true 1 this.list1 -1306640436 +415138788 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1509563803 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14410,7 +14251,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 10 @@ -14419,31 +14260,31 @@ this.isHeavy() true 1 this.getNum() -1668632755 +1310540333 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -721767112 +1715998167 1 this.scale(this.value) --1078 +-1089 1 this.scale(this.shift) -2 +1 1 this.scale(this.getValue()) --1078 +-1089 1 this.scale(this.getShift()) -2 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 10 @@ -14451,18 +14292,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --98 +l +1447689627 +1 +l[..] +[112061925 764577347 1344645519 1234776885 540159270 422250493 1690287238 1690254271 1440047379 343965883 230835489 280884709 1847509784 2114650936 1635756693 504527234 101478235 540585569 1007653873 836514715] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -2227 +1753 this -1829661747 +146611050 1 this.value --98 +-99 1 this.shift 10 @@ -14471,19 +14321,19 @@ this.heavy true 1 this.list1 -1306640436 +415138788 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[13326370 1268650975 731395981 1196765369 486898233 650023597 1282473384 575593575 346861221 1188392295 226710952] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1509563803 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[684874119 1157740463 1379435698 1529306539 1635985705 695682681 1073502961 1582797472 644166178 892529689 1757676444] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14492,7 +14342,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --98 +-99 1 this.getShift() 10 @@ -14501,31 +14351,31 @@ this.isHeavy() true 1 this.getNum() -1752213128 +1386767190 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1002790985 +1558712965 1 this.scale(this.value) --1078 +-1089 1 this.scale(this.shift) -2 +1 1 this.scale(this.getValue()) --1078 +-1089 1 this.scale(this.getShift()) -2 +1 1 this.sum(this.getNum()) --196 +-198 1 this.sum(this.getJWrap()) --196 +-198 1 this.retrieve(this.list1) 10 @@ -14533,36 +14383,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1447689627 +1 +l[..] +[112061925 764577347 1344645519 1234776885 540159270 422250493 1690287238 1690254271 1440047379 343965883 230835489 280884709 1847509784 2114650936 1635756693 504527234 101478235 540585569 1007653873 836514715] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -2227 +1788 +value +-98 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +1788 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14574,31 +14449,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -456423239 +1815546035 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -293790789 +1864350231 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -14607,44 +14482,57 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-98 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -2262 +1806 +value +-98 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +1806 this -1829661747 +25548982 1 this.value -98 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1306640436 +1735934726 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +522764626 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14656,31 +14544,31 @@ this.getValue() -98 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -676886270 +143110009 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1206661731 +2142003995 1 this.scale(this.value) --1078 +-588 1 this.scale(this.shift) -2 +-73 1 this.scale(this.getValue()) --1078 +-588 1 this.scale(this.getShift()) -2 +-73 1 this.sum(this.getNum()) -196 @@ -14689,17 +14577,33 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-98 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +1824 +value +-98 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -2262 +1824 this -1829661747 +1535634836 1 this.value -98 @@ -14711,19 +14615,19 @@ this.heavy true 1 this.list1 -1306640436 +1846412426 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +660143728 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14741,13 +14645,13 @@ this.isHeavy() true 1 this.getNum() -1675634296 +1241276575 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -285066114 +215145189 1 this.scale(this.value) -1078 @@ -14773,39 +14677,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-98 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -2297 +1842 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14817,31 +14724,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -70161541 +982007015 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -236497384 +1232306490 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -14850,41 +14757,41 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -2297 +1842 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14896,31 +14803,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1966785938 +1663166483 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1702965342 +2042495840 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -14929,47 +14836,44 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -76455778 -1 -return.getClass().getName() -"java.lang.Integer" +-98 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -2332 +1877 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -14981,31 +14885,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -797039940 +36333492 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1994765241 +1468357786 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -15014,41 +14918,41 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -2332 +1877 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15060,31 +14964,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1652192170 +990398217 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1430245480 +841283083 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -15093,20 +14997,20 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1351321489 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -2367 +1912 this -1908302941 +2025864991 1 this.value -98 @@ -15118,19 +15022,19 @@ this.heavy false 1 this.list1 -179261442 +1589683045 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1836797772 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15148,13 +15052,13 @@ this.isHeavy() false 1 this.getNum() -2020698598 +1675763772 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1574942928 +520016214 1 this.scale(this.value) -98 @@ -15180,15 +15084,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --98 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -2367 +1912 this -1908302941 +2025864991 1 this.value -98 @@ -15200,19 +15101,19 @@ this.heavy false 1 this.list1 -179261442 +1589683045 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +1836797772 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15230,13 +15131,13 @@ this.isHeavy() false 1 this.getNum() -182357974 +1731722639 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -431304749 +1924582348 1 this.scale(this.value) -98 @@ -15262,42 +15163,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --98 -1 return --98 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -2402 +1947 this -1076735622 +2025864991 1 this.value -98 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1998389332 +1589683045 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +1836797772 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15309,31 +15207,31 @@ this.getValue() -98 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1181607818 +11003494 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1501313317 +1757143877 1 this.scale(this.value) --588 +-98 1 this.scale(this.shift) --73 +-98 1 this.scale(this.getValue()) --588 +-98 1 this.scale(this.getShift()) --73 +-98 1 this.sum(this.getNum()) -196 @@ -15342,44 +15240,41 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --98 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -2402 +1947 this -1076735622 +2025864991 1 this.value -98 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1998389332 +1589683045 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +1836797772 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15391,31 +15286,31 @@ this.getValue() -98 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1787550216 +817406040 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -60258782 +1955915048 1 this.scale(this.value) --588 +-98 1 this.scale(this.shift) --73 +-98 1 this.scale(this.getValue()) --588 +-98 1 this.scale(this.getShift()) --73 +-98 1 this.sum(this.getNum()) -196 @@ -15424,47 +15319,47 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --98 +0 1 return --588 +1270855946 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -2437 +1982 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15476,31 +15371,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1304551337 +2083117811 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1933768736 +157683534 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -15509,44 +15404,41 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --98 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -2437 +1982 this -1829661747 +2025864991 1 this.value -98 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1306640436 +1589683045 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +1836797772 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15558,31 +15450,31 @@ this.getValue() -98 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -833632254 +1518864111 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -673979950 +1816757085 1 this.scale(this.value) --1078 +-98 1 this.scale(this.shift) -2 +-98 1 this.scale(this.getValue()) --1078 +-98 1 this.scale(this.getShift()) -2 +-98 1 this.sum(this.getNum()) -196 @@ -15591,47 +15483,44 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --98 +0 1 return --1078 +1585787493 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -2472 +2017 this -1908302941 +25548982 1 this.value -98 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -179261442 +1735934726 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +522764626 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15643,31 +15532,31 @@ this.getValue() -98 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1752265372 +1730173572 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1880855893 +2097514481 1 this.scale(this.value) --98 +-588 1 this.scale(this.shift) --98 +-73 1 this.scale(this.getValue()) --98 +-588 1 this.scale(this.getShift()) --98 +-73 1 this.sum(this.getNum()) -196 @@ -15676,47 +15565,41 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -585709811 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -2472 +2017 this -1908302941 +25548982 1 this.value -98 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -179261442 +1735934726 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +522764626 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15728,31 +15611,31 @@ this.getValue() -98 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2107239276 +1568059495 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -70205408 +706197430 1 this.scale(this.value) --98 +-588 1 this.scale(this.shift) --98 +-73 1 this.scale(this.getValue()) --98 +-588 1 this.scale(this.getShift()) --98 +-73 1 this.sum(this.getNum()) -196 @@ -15761,26 +15644,99 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -585709811 +return +-98 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +2052 +this +25548982 +1 +this.value +-98 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +1735934726 +1 +this.list1[..] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +522764626 +1 +this.list2[..] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-98 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +1325808650 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +510464020 +1 +this.scale(this.value) +-588 +1 +this.scale(this.shift) +-73 +1 +this.scale(this.getValue()) +-588 +1 +this.scale(this.getShift()) +-73 +1 +this.sum(this.getNum()) +-196 +1 +this.sum(this.getJWrap()) -196 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -2507 +2052 this -1076735622 +25548982 1 this.value -98 @@ -15792,19 +15748,19 @@ this.heavy true 1 this.list1 -1998389332 +1735934726 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +522764626 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15822,13 +15778,13 @@ this.isHeavy() true 1 this.getNum() -973770053 +1987083830 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -180406984 +1632492873 1 this.scale(this.value) -588 @@ -15854,18 +15810,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -2000754171 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -2507 +2087 this -1076735622 +25548982 1 this.value -98 @@ -15877,19 +15830,19 @@ this.heavy true 1 this.list1 -1998389332 +1735934726 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +522764626 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15907,13 +15860,13 @@ this.isHeavy() true 1 this.getNum() -1376407271 +525683462 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -583158213 +1766724936 1 this.scale(this.value) -588 @@ -15939,45 +15892,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -2000754171 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --196 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -2542 +2087 this -1829661747 +25548982 1 this.value -98 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1306640436 +1735934726 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +522764626 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -15989,31 +15933,31 @@ this.getValue() -98 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -24720983 +473581465 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1021217410 +319977154 1 this.scale(this.value) --1078 +-588 1 this.scale(this.shift) -2 +-73 1 this.scale(this.getValue()) --1078 +-588 1 this.scale(this.getShift()) -2 +-73 1 this.sum(this.getNum()) -196 @@ -16022,47 +15966,44 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -911703046 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -2542 +2122 this -1829661747 +25548982 1 this.value -98 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1306640436 +1735934726 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +522764626 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16074,31 +16015,31 @@ this.getValue() -98 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -697272777 +648680157 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -245301360 +1071097621 1 this.scale(this.value) --1078 +-588 1 this.scale(this.shift) -2 +-73 1 this.scale(this.getValue()) --1078 +-588 1 this.scale(this.getShift()) -2 +-73 1 this.sum(this.getNum()) -196 @@ -16107,50 +16048,41 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -911703046 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --196 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -2577 +2122 this -1908302941 +25548982 1 this.value -98 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -179261442 +1735934726 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +522764626 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16162,31 +16094,31 @@ this.getValue() -98 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1758838927 +1897871865 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -693445134 +1908143486 1 this.scale(this.value) --98 +-588 1 this.scale(this.shift) --98 +-73 1 this.scale(this.getValue()) --98 +-588 1 this.scale(this.getShift()) --98 +-73 1 this.sum(this.getNum()) -196 @@ -16195,53 +16127,47 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -338614869 -1 -l[..] -[268438733 1934126831 409683978 726045964 652434694 418400476 1195339854 367408493 1019056726 1104309057 1568643625 1684154803 1755306561 1454511888 1174947815 1235792540 1650869643 677370661 757886680 1075920403] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +133250414 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -2577 +2157 this -1908302941 +25548982 1 this.value -98 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -179261442 +1735934726 1 this.list1[..] -[2074982600 1245614567 1373436613 47433088 491476979 1031479691 1591168053 147610680 549086475 759154166 903721135] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1836764361 +522764626 1 this.list2[..] -[421189702 829221002 1695995231 1041400786 831287252 2063720629 944228906 1898555459 1709572287 1597714396 650331484] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16253,31 +16179,31 @@ this.getValue() -98 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1181905481 +85777802 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -61684417 +222624801 1 this.scale(this.value) --98 +-588 1 this.scale(this.shift) --98 +-73 1 this.scale(this.getValue()) --98 +-588 1 this.scale(this.getShift()) --98 +-73 1 this.sum(this.getNum()) -196 @@ -16286,32 +16212,17 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -338614869 -1 -l[..] -[268438733 1934126831 409683978 726045964 652434694 418400476 1195339854 367408493 1019056726 1104309057 1568643625 1684154803 1755306561 1454511888 1174947815 1235792540 1650869643 677370661 757886680 1075920403] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -2612 +2157 this -1076735622 +25548982 1 this.value -98 @@ -16323,19 +16234,19 @@ this.heavy true 1 this.list1 -1998389332 +1735934726 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +522764626 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16353,13 +16264,13 @@ this.isHeavy() true 1 this.getNum() -1642878665 +603650290 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1664473176 +762227630 1 this.scale(this.value) -588 @@ -16385,48 +16296,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -338614869 -1 -l[..] -[268438733 1934126831 409683978 726045964 652434694 418400476 1195339854 367408493 1019056726 1104309057 1568643625 1684154803 1755306561 1454511888 1174947815 1235792540 1650869643 677370661 757886680 1075920403] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +1316864772 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -2612 +2192 this -1076735622 +1535634836 1 this.value -98 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1998389332 +1846412426 1 this.list1[..] -[285263844 1245926004 165307331 1623956546 1467998899 217875110 367355635 130672320 1481395006 2027946171 978334460] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1732467788 +660143728 1 this.list2[..] -[2002826890 1852857152 309788517 1115244891 683612021 429725497 408923218 824854526 1323077097 1911088241 1894641955] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16438,31 +16340,31 @@ this.getValue() -98 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1678683210 +1685232414 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2136039831 +280744458 1 this.scale(this.value) --588 +-1078 1 this.scale(this.shift) --73 +2 1 this.scale(this.getValue()) --588 +-1078 1 this.scale(this.getShift()) --73 +2 1 this.sum(this.getNum()) -196 @@ -16471,32 +16373,99 @@ this.sum(this.getJWrap()) -196 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -338614869 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +2192 +this +1535634836 1 -l[..] -[268438733 1934126831 409683978 726045964 652434694 418400476 1195339854 367408493 1019056726 1104309057 1568643625 1684154803 1755306561 1454511888 1174947815 1235792540 1650869643 677370661 757886680 1075920403] +this.value +-98 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +1846412426 +1 +this.list1[..] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +660143728 +1 +this.list2[..] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 +this.getValue() +-98 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +1213216872 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +1754638213 +1 +this.scale(this.value) +-1078 +1 +this.scale(this.shift) +2 +1 +this.scale(this.getValue()) +-1078 +1 +this.scale(this.getShift()) +2 +1 +this.sum(this.getNum()) +-196 +1 +this.sum(this.getJWrap()) +-196 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 return -5 +-98 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -2647 +2227 this -1829661747 +1535634836 1 this.value -98 @@ -16508,19 +16477,19 @@ this.heavy true 1 this.list1 -1306640436 +1846412426 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +660143728 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16538,13 +16507,13 @@ this.isHeavy() true 1 this.getNum() -937312718 +407858146 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1622300681 +1454031203 1 this.scale(this.value) -1078 @@ -16570,24 +16539,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -338614869 -1 -l[..] -[268438733 1934126831 409683978 726045964 652434694 418400476 1195339854 367408493 1019056726 1104309057 1568643625 1684154803 1755306561 1454511888 1174947815 1235792540 1650869643 677370661 757886680 1075920403] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -2647 +2227 this -1829661747 +1535634836 1 this.value -98 @@ -16599,19 +16556,19 @@ this.heavy true 1 this.list1 -1306640436 +1846412426 1 this.list1[..] -[538033630 1825065540 1367600679 747138112 813364375 1481637470 1808071325 1361154225 1923251731 167988273 1585392153] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1856307142 +660143728 1 this.list2[..] -[311711978 1230599213 265968634 1221362231 1786318391 831812477 153758969 804164642 1480547523 669201272 893919165] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16629,13 +16586,13 @@ this.isHeavy() true 1 this.getNum() -1555163255 +527446182 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -605359148 +1511785794 1 this.scale(this.value) -1078 @@ -16661,61 +16618,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -338614869 -1 -l[..] -[268438733 1934126831 409683978 726045964 652434694 418400476 1195339854 367408493 1019056726 1104309057 1568643625 1684154803 1755306561 1454511888 1174947815 1235792540 1650869643 677370661 757886680 1075920403] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -2682 -value --97 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -2682 +2262 this -1641164597 +1535634836 1 this.value --97 +-98 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -773419711 +1846412426 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +660143728 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16724,93 +16659,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1838772799 +963601816 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1964752463 +961419791 1 this.scale(this.value) --97 +-1078 1 this.scale(this.shift) --97 +2 1 this.scale(this.getValue()) --97 +-1078 1 this.scale(this.getShift()) --97 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --97 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -2700 -value --97 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -2700 +2262 this -1886089369 +1535634836 1 this.value --97 +-98 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -497911416 +1846412426 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +660143728 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16819,72 +16738,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1262734368 +665188480 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1343123322 +489279267 1 this.scale(this.value) --582 +-1078 1 this.scale(this.shift) --72 +2 1 this.scale(this.getValue()) --582 +-1078 1 this.scale(this.getShift()) --72 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --97 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -2718 -value --97 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -2718 +2297 this -1673059237 +1535634836 1 this.value --97 +-98 1 this.shift 10 @@ -16893,19 +16799,19 @@ this.heavy true 1 this.list1 -2103206088 +1846412426 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +660143728 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16914,7 +16820,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 10 @@ -16923,31 +16829,31 @@ this.isHeavy() true 1 this.getNum() -448685916 +1596467899 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1249105595 +377478451 1 this.scale(this.value) --1067 +-1078 1 this.scale(this.shift) -3 +2 1 this.scale(this.getValue()) --1067 +-1078 1 this.scale(this.getShift()) -3 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 10 @@ -16955,42 +16861,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --97 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -2736 +2297 this -1641164597 +1535634836 1 this.value --97 +-98 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -773419711 +1846412426 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +660143728 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -16999,77 +16899,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2065085740 +513169028 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -265329366 +1301664418 1 this.scale(this.value) --97 +-1078 1 this.scale(this.shift) --97 +2 1 this.scale(this.getValue()) --97 +-1078 1 this.scale(this.getShift()) --97 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1408652377 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -2736 +2332 this -1641164597 +1535634836 1 this.value --97 +-98 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -773419711 +1846412426 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +660143728 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17078,80 +16984,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1214603190 +990416209 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2003749595 +394714818 1 this.scale(this.value) --97 +-1078 1 this.scale(this.shift) --97 +2 1 this.scale(this.getValue()) --97 +-1078 1 this.scale(this.getShift()) --97 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --97 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -2771 +2332 this -1641164597 +1535634836 1 this.value --97 +-98 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -773419711 +1846412426 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +660143728 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17160,56 +17063,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -180890911 +1952779858 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1544180672 +366004251 1 this.scale(this.value) --97 +-1078 1 this.scale(this.shift) --97 +2 1 this.scale(this.getValue()) --97 +-1078 1 this.scale(this.getShift()) --97 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1791868405 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -2771 +2367 this -1641164597 +2025864991 1 this.value --97 +-98 1 this.shift 0 @@ -17218,19 +17124,19 @@ this.heavy false 1 this.list1 -773419711 +1589683045 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1836797772 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17239,7 +17145,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 0 @@ -17248,31 +17154,31 @@ this.isHeavy() false 1 this.getNum() -704680309 +1260134048 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -189640158 +391618063 1 this.scale(this.value) --97 +-98 1 this.scale(this.shift) --97 +-98 1 this.scale(this.getValue()) --97 +-98 1 this.scale(this.getShift()) --97 +-98 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 0 @@ -17280,18 +17186,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-98 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -2806 +2367 this -1641164597 +2025864991 1 this.value --97 +-98 1 this.shift 0 @@ -17300,19 +17206,19 @@ this.heavy false 1 this.list1 -773419711 +1589683045 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1836797772 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17321,7 +17227,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 0 @@ -17330,31 +17236,31 @@ this.isHeavy() false 1 this.getNum() -416403358 +81009902 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1989515980 +57748372 1 this.scale(this.value) --97 +-98 1 this.scale(this.shift) --97 +-98 1 this.scale(this.getValue()) --97 +-98 1 this.scale(this.getShift()) --97 +-98 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 0 @@ -17362,36 +17268,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-98 +1 +return +-98 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -2806 +2402 this -1641164597 +25548982 1 this.value --97 +-98 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -773419711 +1735934726 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +522764626 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17400,80 +17312,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1474692070 +674483268 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1040850463 +54495403 1 this.scale(this.value) --97 +-588 1 this.scale(this.shift) --97 +-73 1 this.scale(this.getValue()) --97 +-588 1 this.scale(this.getShift()) --97 +-73 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-98 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -2841 +2402 this -1641164597 +25548982 1 this.value --97 +-98 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -773419711 +1735934726 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +522764626 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17482,77 +17394,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -171943179 +665372494 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1483504238 +764372388 1 this.scale(this.value) --97 +-588 1 this.scale(this.shift) --97 +-73 1 this.scale(this.getValue()) --97 +-588 1 this.scale(this.getShift()) --97 +-73 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-98 +1 +return +-588 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -2841 +2437 this -1641164597 +1535634836 1 this.value --97 +-98 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -773419711 +1846412426 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +660143728 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17561,83 +17479,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -970586396 +459857341 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -359774960 +1684890795 1 this.scale(this.value) --97 +-1078 1 this.scale(this.shift) --97 +2 1 this.scale(this.getValue()) --97 +-1078 1 this.scale(this.getShift()) --97 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1571286415 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-98 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -2876 +2437 this -1641164597 +1535634836 1 this.value --97 +-98 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -773419711 +1846412426 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +660143728 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17646,56 +17561,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1004369746 +94264799 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1220855602 +1399499405 1 this.scale(this.value) --97 +-1078 1 this.scale(this.shift) --97 +2 1 this.scale(this.getValue()) --97 +-1078 1 this.scale(this.getShift()) --97 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-98 +1 +return +-1078 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -2876 +2472 this -1641164597 +2025864991 1 this.value --97 +-98 1 this.shift 0 @@ -17704,19 +17625,19 @@ this.heavy false 1 this.list1 -773419711 +1589683045 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1836797772 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17725,7 +17646,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 0 @@ -17734,31 +17655,31 @@ this.isHeavy() false 1 this.getNum() -1861339376 +238157928 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1136606583 +32863545 1 this.scale(this.value) --97 +-98 1 this.scale(this.shift) --97 +-98 1 this.scale(this.getValue()) --97 +-98 1 this.scale(this.getShift()) --97 +-98 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 0 @@ -17766,39 +17687,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -1079800416 +n +1995616381 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -2911 +2472 this -1886089369 +2025864991 1 this.value --97 +-98 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -497911416 +1589683045 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1836797772 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17807,56 +17731,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1968774562 +1883919084 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -766030558 +1860513229 1 this.scale(this.value) --582 +-98 1 this.scale(this.shift) --72 +-98 1 this.scale(this.getValue()) --582 +-98 1 this.scale(this.getShift()) --72 +-98 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1995616381 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-196 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -2911 +2507 this -1886089369 +25548982 1 this.value --97 +-98 1 this.shift 5 @@ -17865,19 +17798,19 @@ this.heavy true 1 this.list1 -497911416 +1735934726 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +522764626 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17886,7 +17819,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 5 @@ -17895,31 +17828,31 @@ this.isHeavy() true 1 this.getNum() -511124541 +1150538133 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -535572587 +662822946 1 this.scale(this.value) --582 +-588 1 this.scale(this.shift) --72 +-73 1 this.scale(this.getValue()) --582 +-588 1 this.scale(this.getShift()) --72 +-73 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 5 @@ -17927,18 +17860,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --97 +n +92150540 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -2946 +2507 this -1886089369 +25548982 1 this.value --97 +-98 1 this.shift 5 @@ -17947,19 +17883,19 @@ this.heavy true 1 this.list1 -497911416 +1735934726 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +522764626 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -17968,7 +17904,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 5 @@ -17977,31 +17913,31 @@ this.isHeavy() true 1 this.getNum() -1264505132 +1110623531 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1039582812 +410495873 1 this.scale(this.value) --582 +-588 1 this.scale(this.shift) --72 +-73 1 this.scale(this.getValue()) --582 +-588 1 this.scale(this.getShift()) --72 +-73 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 5 @@ -18009,36 +17945,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +92150540 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-196 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -2946 +2542 this -1886089369 +1535634836 1 this.value --97 +-98 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -497911416 +1846412426 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +660143728 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18047,80 +17992,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -341369292 +811587677 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1464869507 +1166807841 1 this.scale(this.value) --582 +-1078 1 this.scale(this.shift) --72 +2 1 this.scale(this.getValue()) --582 +-1078 1 this.scale(this.getShift()) --72 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +289639718 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -2981 +2542 this -1886089369 +1535634836 1 this.value --97 +-98 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -497911416 +1846412426 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +660143728 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18129,77 +18077,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1309274941 +885851948 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1866486225 +2048834776 1 this.scale(this.value) --582 +-1078 1 this.scale(this.shift) --72 +2 1 this.scale(this.getValue()) --582 +-1078 1 this.scale(this.getShift()) --72 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +289639718 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-196 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -2981 +2577 this -1886089369 +2025864991 1 this.value --97 +-98 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -497911416 +1589683045 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1836797772 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18208,80 +18165,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1740351846 +1605283233 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1366203582 +1384722895 1 this.scale(this.value) --582 +-98 1 this.scale(this.shift) --72 +-98 1 this.scale(this.getValue()) --582 +-98 1 this.scale(this.getShift()) --72 +-98 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +245475541 +1 +l[..] +[22429093 733957003 815992954 868737467 55331187 1392425346 2054574951 1991294891 399931359 809762318 2028371466 198761306 798244209 525571 1263877414 110771485 141289226 1208736537 710239027 2104545713] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -3016 +2577 this -1886089369 +2025864991 1 this.value --97 +-98 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -497911416 +1589683045 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1340328248 1401132667 717386707 1900164709 540642172 1875308878 1445157774 909295153 1522311648 36202360 1318822808] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1836797772 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[1383547042 329645619 3213500 923219673 1604125387 1668627309 1795799895 1698097425 1376400422 418304857 1050349584] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18290,56 +18256,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -888448950 +712256162 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -707705059 +1018298342 1 this.scale(this.value) --582 +-98 1 this.scale(this.shift) --72 +-98 1 this.scale(this.getValue()) --582 +-98 1 this.scale(this.getShift()) --72 +-98 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +245475541 +1 +l[..] +[22429093 733957003 815992954 868737467 55331187 1392425346 2054574951 1991294891 399931359 809762318 2028371466 198761306 798244209 525571 1263877414 110771485 141289226 1208736537 710239027 2104545713] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -3016 +2612 this -1886089369 +25548982 1 this.value --97 +-98 1 this.shift 5 @@ -18348,19 +18329,19 @@ this.heavy true 1 this.list1 -497911416 +1735934726 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +522764626 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18369,7 +18350,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 5 @@ -18378,31 +18359,31 @@ this.isHeavy() true 1 this.getNum() -1634489527 +1039949752 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -254667865 +1182461167 1 this.scale(this.value) --582 +-588 1 this.scale(this.shift) --72 +-73 1 this.scale(this.getValue()) --582 +-588 1 this.scale(this.getShift()) --72 +-73 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 5 @@ -18410,21 +18391,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -267898584 +l +245475541 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[22429093 733957003 815992954 868737467 55331187 1392425346 2054574951 1991294891 399931359 809762318 2028371466 198761306 798244209 525571 1263877414 110771485 141289226 1208736537 710239027 2104545713] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -3051 +2612 this -1886089369 +25548982 1 this.value --97 +-98 1 this.shift 5 @@ -18433,19 +18420,19 @@ this.heavy true 1 this.list1 -497911416 +1735934726 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[861842890 553871028 250370634 724125922 1843368112 1465085305 989938643 1519280649 1262822392 120694604 916419490] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +522764626 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[2106620844 2006034581 979294118 1663411182 488044861 1740189450 731260860 1709366259 1335298403 1643691748 2068434592] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18454,7 +18441,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 5 @@ -18463,31 +18450,31 @@ this.isHeavy() true 1 this.getNum() -1445777176 +1297149880 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -399531227 +2116908859 1 this.scale(this.value) --582 +-588 1 this.scale(this.shift) --72 +-73 1 this.scale(this.getValue()) --582 +-588 1 this.scale(this.getShift()) --72 +-73 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 5 @@ -18495,36 +18482,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +245475541 +1 +l[..] +[22429093 733957003 815992954 868737467 55331187 1392425346 2054574951 1991294891 399931359 809762318 2028371466 198761306 798244209 525571 1263877414 110771485 141289226 1208736537 710239027 2104545713] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -3051 +2647 this -1886089369 +1535634836 1 this.value --97 +-98 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -497911416 +1846412426 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +660143728 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18533,59 +18535,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1887451667 +561247961 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1919217432 +813656972 1 this.scale(this.value) --582 +-1078 1 this.scale(this.shift) --72 +2 1 this.scale(this.getValue()) --582 +-1078 1 this.scale(this.getShift()) --72 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -1083001684 +l +245475541 +1 +l[..] +[22429093 733957003 815992954 868737467 55331187 1392425346 2054574951 1991294891 399931359 809762318 2028371466 198761306 798244209 525571 1263877414 110771485 141289226 1208736537 710239027 2104545713] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -3086 +2647 this -1673059237 +1535634836 1 this.value --97 +-98 1 this.shift 10 @@ -18594,19 +18605,19 @@ this.heavy true 1 this.list1 -2103206088 +1846412426 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1539805781 1206883981 601893033 1037324811 1525037790 1627821297 1132547352 1549409129 922872566 1651855867 727001376] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +660143728 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[523691575 1468303011 1427810650 902919927 503195940 1857815974 1852584274 1354011814 1022308509 846238611 1033490990] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18615,7 +18626,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --97 +-98 1 this.getShift() 10 @@ -18624,31 +18635,31 @@ this.isHeavy() true 1 this.getNum() -2085394663 +2048425748 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -147498354 +1863932867 1 this.scale(this.value) --1067 +-1078 1 this.scale(this.shift) -3 +2 1 this.scale(this.getValue()) --1067 +-1078 1 this.scale(this.getShift()) -3 +2 1 this.sum(this.getNum()) --194 +-196 1 this.sum(this.getJWrap()) --194 +-196 1 this.retrieve(this.list1) 10 @@ -18656,36 +18667,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +245475541 +1 +l[..] +[22429093 733957003 815992954 868737467 55331187 1392425346 2054574951 1991294891 399931359 809762318 2028371466 198761306 798244209 525571 1263877414 110771485 141289226 1208736537 710239027 2104545713] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -3086 +2682 +value +-97 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +2682 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18697,31 +18733,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -808707040 +1752203484 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -515219417 +601008104 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -18730,44 +18766,57 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -97 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -3121 +2700 +value +-97 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +2700 this -1673059237 +2056418216 1 this.value -97 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2103206088 +648525677 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1502635287 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18779,31 +18828,31 @@ this.getValue() -97 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -638676815 +317986356 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1117961999 +331510866 1 this.scale(this.value) --1067 +-582 1 this.scale(this.shift) -3 +-72 1 this.scale(this.getValue()) --1067 +-582 1 this.scale(this.getShift()) -3 +-72 1 this.sum(this.getNum()) -194 @@ -18812,17 +18861,33 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-97 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +2718 +value +-97 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -3121 +2718 this -1673059237 +640363654 1 this.value -97 @@ -18834,19 +18899,19 @@ this.heavy true 1 this.list1 -2103206088 +924477420 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1295083508 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18864,13 +18929,13 @@ this.isHeavy() true 1 this.getNum() -1252889590 +1226622409 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1238180295 +1957502751 1 this.scale(this.value) -1067 @@ -18896,39 +18961,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-97 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -3156 +2736 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -18940,31 +19008,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -979678635 +1780132728 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -701696896 +1177377518 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -18973,41 +19041,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -3156 +2736 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19019,31 +19087,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1587025395 +1773206895 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1388918025 +1970881185 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -19052,44 +19120,44 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-97 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -3191 +2771 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19101,31 +19169,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -398003285 +1250391581 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1977134237 +1725017993 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -19134,41 +19202,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -3191 +2771 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19180,31 +19248,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1680651228 +140799417 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -852780005 +926370398 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -19213,47 +19281,44 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -367683957 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -3226 +2806 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19265,31 +19330,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1353812880 +1181869371 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -943834195 +767010715 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -19298,41 +19363,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -3226 +2806 this -1673059237 +1373810119 1 this.value -97 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2103206088 +445288316 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1131316523 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19344,31 +19409,31 @@ this.getValue() -97 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1707098623 +110431793 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -825032841 +192794887 1 this.scale(this.value) --1067 +-97 1 this.scale(this.shift) -3 +-97 1 this.scale(this.getValue()) --1067 +-97 1 this.scale(this.getShift()) -3 +-97 1 this.sum(this.getNum()) -194 @@ -19377,20 +19442,20 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -25050008 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -3261 +2841 this -1641164597 +1373810119 1 this.value -97 @@ -19402,19 +19467,19 @@ this.heavy false 1 this.list1 -773419711 +445288316 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1131316523 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19432,13 +19497,13 @@ this.isHeavy() false 1 this.getNum() -108689644 +1122805102 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1385746758 +1391942103 1 this.scale(this.value) -97 @@ -19464,15 +19529,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --97 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -3261 +2841 this -1641164597 +1373810119 1 this.value -97 @@ -19484,19 +19546,19 @@ this.heavy false 1 this.list1 -773419711 +445288316 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1131316523 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19514,13 +19576,13 @@ this.isHeavy() false 1 this.getNum() -785609991 +2092769598 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1017656981 +422392391 1 this.scale(this.value) -97 @@ -19546,42 +19608,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --97 -1 return --97 +1053631449 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -3296 +2876 this -1886089369 +1373810119 1 this.value -97 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -497911416 +445288316 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1131316523 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19593,31 +19655,31 @@ this.getValue() -97 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1201114959 +1453128758 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -792834113 +1136497418 1 this.scale(this.value) --582 +-97 1 this.scale(this.shift) --72 +-97 1 this.scale(this.getValue()) --582 +-97 1 this.scale(this.getShift()) --72 +-97 1 this.sum(this.getNum()) -194 @@ -19626,44 +19688,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --97 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -3296 +2876 this -1886089369 +1373810119 1 this.value -97 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -497911416 +445288316 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1131316523 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19675,31 +19734,31 @@ this.getValue() -97 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -26907556 +863125040 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1263727822 +1693847660 1 this.scale(this.value) --582 +-97 1 this.scale(this.shift) --72 +-97 1 this.scale(this.getValue()) --582 +-97 1 this.scale(this.getShift()) --72 +-97 1 this.sum(this.getNum()) -194 @@ -19708,47 +19767,44 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --97 +0 1 return --582 +1429880200 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -3331 +2911 this -1673059237 +2056418216 1 this.value -97 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2103206088 +648525677 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1502635287 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19760,31 +19816,31 @@ this.getValue() -97 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -860235524 +2050019814 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1118540264 +1485955886 1 this.scale(this.value) --1067 +-582 1 this.scale(this.shift) -3 +-72 1 this.scale(this.getValue()) --1067 +-582 1 this.scale(this.getShift()) -3 +-72 1 this.sum(this.getNum()) -194 @@ -19793,44 +19849,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --97 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -3331 +2911 this -1673059237 +2056418216 1 this.value -97 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2103206088 +648525677 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1502635287 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19842,31 +19895,31 @@ this.getValue() -97 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -124194742 +212921632 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2134407557 +149047107 1 this.scale(this.value) --1067 +-582 1 this.scale(this.shift) -3 +-72 1 this.scale(this.getValue()) --1067 +-582 1 this.scale(this.getShift()) -3 +-72 1 this.sum(this.getNum()) -194 @@ -19875,47 +19928,44 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --97 +5 1 return --1067 +-97 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -3366 +2946 this -1641164597 +2056418216 1 this.value -97 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -773419711 +648525677 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1502635287 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -19927,31 +19977,31 @@ this.getValue() -97 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1420971011 +1956710488 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -94143590 +603856241 1 this.scale(this.value) --97 +-582 1 this.scale(this.shift) --97 +-72 1 this.scale(this.getValue()) --97 +-582 1 this.scale(this.getShift()) --97 +-72 1 this.sum(this.getNum()) -194 @@ -19960,47 +20010,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1723352938 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -3366 +2946 this -1641164597 +2056418216 1 this.value -97 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -773419711 +648525677 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1502635287 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20012,31 +20056,31 @@ this.getValue() -97 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1280881877 +682376643 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1405629211 +854507466 1 this.scale(this.value) --97 +-582 1 this.scale(this.shift) --97 +-72 1 this.scale(this.getValue()) --97 +-582 1 this.scale(this.getShift()) --97 +-72 1 this.sum(this.getNum()) -194 @@ -20045,26 +20089,20 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1723352938 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --194 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -3401 +2981 this -1886089369 +2056418216 1 this.value -97 @@ -20076,19 +20114,19 @@ this.heavy true 1 this.list1 -497911416 +648525677 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1502635287 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20106,13 +20144,13 @@ this.isHeavy() true 1 this.getNum() -2090032277 +1316061703 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -782465560 +490150701 1 this.scale(this.value) -582 @@ -20138,18 +20176,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1856296339 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -3401 +2981 this -1886089369 +2056418216 1 this.value -97 @@ -20161,19 +20193,19 @@ this.heavy true 1 this.list1 -497911416 +648525677 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1502635287 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20191,13 +20223,13 @@ this.isHeavy() true 1 this.getNum() -130145957 +1413246829 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1224746653 +334203599 1 this.scale(this.value) -582 @@ -20223,45 +20255,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1856296339 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --194 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -3436 +3016 this -1673059237 +2056418216 1 this.value -97 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2103206088 +648525677 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1502635287 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20273,31 +20299,31 @@ this.getValue() -97 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -686240476 +1372082959 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1656495742 +1946403944 1 this.scale(this.value) --1067 +-582 1 this.scale(this.shift) -3 +-72 1 this.scale(this.getValue()) --1067 +-582 1 this.scale(this.getShift()) -3 +-72 1 this.sum(this.getNum()) -194 @@ -20306,47 +20332,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -745936086 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -3436 +3016 this -1673059237 +2056418216 1 this.value -97 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2103206088 +648525677 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1502635287 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20358,31 +20378,31 @@ this.getValue() -97 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -2085749863 +1131645570 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1822377460 +209833425 1 this.scale(this.value) --1067 +-582 1 this.scale(this.shift) -3 +-72 1 this.scale(this.getValue()) --1067 +-582 1 this.scale(this.getShift()) -3 +-72 1 this.sum(this.getNum()) -194 @@ -20391,50 +20411,47 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -745936086 +return +532854629 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --194 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -3471 +3051 this -1641164597 +2056418216 1 this.value -97 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -773419711 +648525677 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1502635287 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20446,31 +20463,31 @@ this.getValue() -97 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1286196706 +1971851377 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -537647040 +712025048 1 this.scale(this.value) --97 +-582 1 this.scale(this.shift) --97 +-72 1 this.scale(this.getValue()) --97 +-582 1 this.scale(this.getShift()) --97 +-72 1 this.sum(this.getNum()) -194 @@ -20479,53 +20496,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1770098351 -1 -l[..] -[952023366 1903542212 1770067725 437292184 880696454 1408007254 1255611685 1891274373 1742927764 1709984468 2082789522 1460050154 1914787656 1793684097 73181693 1604068167 63978331 1541985617 319612923 877795714] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -3471 +3051 this -1641164597 +2056418216 1 this.value -97 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -773419711 +648525677 1 this.list1[..] -[146567486 195994093 1980290200 1035830194 1695627976 1311396942 1023735033 275719867 1901578090 971323976 2018863785] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -802011895 +1502635287 1 this.list2[..] -[1806550693 1573695965 699487303 957617843 1440636683 2050094903 1717402253 51966844 1528386426 1538760015 1941494931] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20537,31 +20542,31 @@ this.getValue() -97 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2047393955 +681384962 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1419725804 +586084331 1 this.scale(this.value) --97 +-582 1 this.scale(this.shift) --97 +-72 1 this.scale(this.getValue()) --97 +-582 1 this.scale(this.getShift()) --97 +-72 1 this.sum(this.getNum()) -194 @@ -20570,56 +20575,44 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1770098351 -1 -l[..] -[952023366 1903542212 1770067725 437292184 880696454 1408007254 1255611685 1891274373 1742927764 1709984468 2082789522 1460050154 1914787656 1793684097 73181693 1604068167 63978331 1541985617 319612923 877795714] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +399534175 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -3506 +3086 this -1886089369 +640363654 1 this.value -97 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -497911416 +924477420 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1295083508 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20631,31 +20624,31 @@ this.getValue() -97 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -640786011 +949057310 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -59997172 +2024542466 1 this.scale(this.value) --582 +-1067 1 this.scale(this.shift) --72 +3 1 this.scale(this.getValue()) --582 +-1067 1 this.scale(this.getShift()) --72 +3 1 this.sum(this.getNum()) -194 @@ -20664,53 +20657,41 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1770098351 -1 -l[..] -[952023366 1903542212 1770067725 437292184 880696454 1408007254 1255611685 1891274373 1742927764 1709984468 2082789522 1460050154 1914787656 1793684097 73181693 1604068167 63978331 1541985617 319612923 877795714] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -3506 +3086 this -1886089369 +640363654 1 this.value -97 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -497911416 +924477420 1 this.list1[..] -[1800880000 755639182 1956927163 1362774736 1241892697 1096993286 1019048307 962810924 673919523 736668783 949010926] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -665587013 +1295083508 1 this.list2[..] -[278610268 1088423816 873370366 685014117 372432852 1711596206 1253982677 282340681 1508449344 1463671773 506312426] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20722,31 +20703,31 @@ this.getValue() -97 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1202639361 +770189387 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -643654763 +963522361 1 this.scale(this.value) --582 +-1067 1 this.scale(this.shift) --72 +3 1 this.scale(this.getValue()) --582 +-1067 1 this.scale(this.getShift()) --72 +3 1 this.sum(this.getNum()) -194 @@ -20755,32 +20736,20 @@ this.sum(this.getJWrap()) -194 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1770098351 -1 -l[..] -[952023366 1903542212 1770067725 437292184 880696454 1408007254 1255611685 1891274373 1742927764 1709984468 2082789522 1460050154 1914787656 1793684097 73181693 1604068167 63978331 1541985617 319612923 877795714] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-97 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -3541 +3121 this -1673059237 +640363654 1 this.value -97 @@ -20792,19 +20761,19 @@ this.heavy true 1 this.list1 -2103206088 +924477420 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1295083508 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20822,13 +20791,13 @@ this.isHeavy() true 1 this.getNum() -1030471802 +175408781 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1831446806 +315138752 1 this.scale(this.value) -1067 @@ -20854,24 +20823,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1770098351 -1 -l[..] -[952023366 1903542212 1770067725 437292184 880696454 1408007254 1255611685 1891274373 1742927764 1709984468 2082789522 1460050154 1914787656 1793684097 73181693 1604068167 63978331 1541985617 319612923 877795714] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -3541 +3121 this -1673059237 +640363654 1 this.value -97 @@ -20883,19 +20840,19 @@ this.heavy true 1 this.list1 -2103206088 +924477420 1 this.list1[..] -[1003891396 1771161740 1644533113 1553493301 455729681 1522063365 493772491 957444229 670189832 328777909 294892832] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2019053795 +1295083508 1 this.list2[..] -[1848026318 722340065 644415964 939075127 1178337686 227295968 1937409810 1899620856 288346843 1522282669 2032131172] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -20913,13 +20870,13 @@ this.isHeavy() true 1 this.getNum() -1243355991 +2114874018 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2068255427 +911312317 1 this.scale(this.value) -1067 @@ -20945,61 +20902,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1770098351 -1 -l[..] -[952023366 1903542212 1770067725 437292184 880696454 1408007254 1255611685 1891274373 1742927764 1709984468 2082789522 1460050154 1914787656 1793684097 73181693 1604068167 63978331 1541985617 319612923 877795714] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -3576 -value --96 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -3576 +3156 this -1998651247 +640363654 1 this.value --96 +-97 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -392301955 +924477420 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1295083508 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21008,93 +20943,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1900677350 +415186196 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -864972325 +1337344609 1 this.scale(this.value) --96 +-1067 1 this.scale(this.shift) --96 +3 1 this.scale(this.getValue()) --96 +-1067 1 this.scale(this.getShift()) --96 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --96 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -3594 -value --96 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -3594 +3156 this -1273059732 +640363654 1 this.value --96 +-97 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -935340663 +924477420 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1295083508 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21103,72 +21022,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1919631490 +1113619023 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1599623549 +2015781843 1 this.scale(this.value) --576 +-1067 1 this.scale(this.shift) --71 +3 1 this.scale(this.getValue()) --576 +-1067 1 this.scale(this.getShift()) --71 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --96 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -3612 -value --96 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -3612 +3191 this -525211250 +640363654 1 this.value --96 +-97 1 this.shift 10 @@ -21177,19 +21083,19 @@ this.heavy true 1 this.list1 -1067689580 +924477420 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1295083508 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21198,7 +21104,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 10 @@ -21207,31 +21113,31 @@ this.isHeavy() true 1 this.getNum() -585448610 +428910174 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2012201363 +1682463303 1 this.scale(this.value) --1056 +-1067 1 this.scale(this.shift) -4 +3 1 this.scale(this.getValue()) --1056 +-1067 1 this.scale(this.getShift()) -4 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 10 @@ -21239,42 +21145,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --96 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -3630 +3191 this -1998651247 +640363654 1 this.value --96 +-97 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -392301955 +924477420 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1295083508 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21283,77 +21183,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -495834985 +633075331 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1262042535 +1858609436 1 this.scale(this.value) --96 +-1067 1 this.scale(this.shift) --96 +3 1 this.scale(this.getValue()) --96 +-1067 1 this.scale(this.getShift()) --96 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1920387277 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -3630 +3226 this -1998651247 +640363654 1 this.value --96 +-97 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -392301955 +924477420 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1295083508 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21362,80 +21268,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -452904326 +1414147750 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1280962114 +775931202 1 this.scale(this.value) --96 +-1067 1 this.scale(this.shift) --96 +3 1 this.scale(this.getValue()) --96 +-1067 1 this.scale(this.getShift()) --96 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --96 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -3665 +3226 this -1998651247 +640363654 1 this.value --96 +-97 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -392301955 +924477420 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1295083508 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21444,56 +21347,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -606688823 +22069592 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -366692205 +1160003871 1 this.scale(this.value) --96 +-1067 1 this.scale(this.shift) --96 +3 1 this.scale(this.getValue()) --96 +-1067 1 this.scale(this.getShift()) --96 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1075738627 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -3665 +3261 this -1998651247 +1373810119 1 this.value --96 +-97 1 this.shift 0 @@ -21502,19 +21408,19 @@ this.heavy false 1 this.list1 -392301955 +445288316 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1131316523 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21523,7 +21429,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 0 @@ -21532,31 +21438,31 @@ this.isHeavy() false 1 this.getNum() -1865306192 +282828951 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1234890038 +394721749 1 this.scale(this.value) --96 +-97 1 this.scale(this.shift) --96 +-97 1 this.scale(this.getValue()) --96 +-97 1 this.scale(this.getShift()) --96 +-97 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 0 @@ -21564,18 +21470,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-97 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -3700 +3261 this -1998651247 +1373810119 1 this.value --96 +-97 1 this.shift 0 @@ -21584,19 +21490,19 @@ this.heavy false 1 this.list1 -392301955 +445288316 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1131316523 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21605,7 +21511,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 0 @@ -21614,31 +21520,31 @@ this.isHeavy() false 1 this.getNum() -1514904058 +1884122755 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -426383974 +1134612201 1 this.scale(this.value) --96 +-97 1 this.scale(this.shift) --96 +-97 1 this.scale(this.getValue()) --96 +-97 1 this.scale(this.getShift()) --96 +-97 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 0 @@ -21646,36 +21552,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-97 +1 +return +-97 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -3700 +3296 this -1998651247 +2056418216 1 this.value --96 +-97 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -392301955 +648525677 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1502635287 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21684,80 +21596,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -82520979 +246550802 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1803141738 +786041152 1 this.scale(this.value) --96 +-582 1 this.scale(this.shift) --96 +-72 1 this.scale(this.getValue()) --96 +-582 1 this.scale(this.getShift()) --96 +-72 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-97 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -3735 +3296 this -1998651247 +2056418216 1 this.value --96 +-97 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -392301955 +648525677 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1502635287 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21766,77 +21678,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -113964102 +897074030 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1986732837 +1885996206 1 this.scale(this.value) --96 +-582 1 this.scale(this.shift) --96 +-72 1 this.scale(this.getValue()) --96 +-582 1 this.scale(this.getShift()) --96 +-72 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-97 +1 +return +-582 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -3735 +3331 this -1998651247 +640363654 1 this.value --96 +-97 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -392301955 +924477420 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1295083508 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21845,83 +21763,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1943047903 +1859039536 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -22285792 +278934944 1 this.scale(this.value) --96 +-1067 1 this.scale(this.shift) --96 +3 1 this.scale(this.getValue()) --96 +-1067 1 this.scale(this.getShift()) --96 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -895151566 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-97 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -3770 +3331 this -1998651247 +640363654 1 this.value --96 +-97 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -392301955 +924477420 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1295083508 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -21930,56 +21845,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1689422527 +1739876329 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -95630655 +1205555397 1 this.scale(this.value) --96 +-1067 1 this.scale(this.shift) --96 +3 1 this.scale(this.getValue()) --96 +-1067 1 this.scale(this.getShift()) --96 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-97 +1 +return +-1067 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -3770 +3366 this -1998651247 +1373810119 1 this.value --96 +-97 1 this.shift 0 @@ -21988,19 +21909,19 @@ this.heavy false 1 this.list1 -392301955 +445288316 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1131316523 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22009,7 +21930,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 0 @@ -22018,31 +21939,31 @@ this.isHeavy() false 1 this.getNum() -946650629 +1543974463 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1798264627 +1293618474 1 this.scale(this.value) --96 +-97 1 this.scale(this.shift) --96 +-97 1 this.scale(this.getValue()) --96 +-97 1 this.scale(this.getShift()) --96 +-97 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 0 @@ -22050,39 +21971,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -1896221758 +n +156545103 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -3805 +3366 this -1273059732 +1373810119 1 this.value --96 +-97 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -935340663 +445288316 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1131316523 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22091,56 +22015,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1141765226 +345281752 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1881767437 +1896294051 1 this.scale(this.value) --576 +-97 1 this.scale(this.shift) --71 +-97 1 this.scale(this.getValue()) --576 +-97 1 this.scale(this.getShift()) --71 +-97 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +156545103 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-194 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -3805 +3401 this -1273059732 +2056418216 1 this.value --96 +-97 1 this.shift 5 @@ -22149,19 +22082,19 @@ this.heavy true 1 this.list1 -935340663 +648525677 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1502635287 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22170,7 +22103,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 5 @@ -22179,31 +22112,31 @@ this.isHeavy() true 1 this.getNum() -873644290 +1684015092 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -993887491 +1209669119 1 this.scale(this.value) --576 +-582 1 this.scale(this.shift) --71 +-72 1 this.scale(this.getValue()) --576 +-582 1 this.scale(this.getShift()) --71 +-72 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 5 @@ -22211,18 +22144,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --96 +n +2014866032 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -3840 +3401 this -1273059732 +2056418216 1 this.value --96 +-97 1 this.shift 5 @@ -22231,19 +22167,19 @@ this.heavy true 1 this.list1 -935340663 +648525677 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1502635287 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22252,7 +22188,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 5 @@ -22261,31 +22197,31 @@ this.isHeavy() true 1 this.getNum() -1139254871 +811760110 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -492420245 +1415157681 1 this.scale(this.value) --576 +-582 1 this.scale(this.shift) --71 +-72 1 this.scale(this.getValue()) --576 +-582 1 this.scale(this.getShift()) --71 +-72 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 5 @@ -22293,36 +22229,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +2014866032 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-194 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -3840 +3436 this -1273059732 +640363654 1 this.value --96 +-97 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -935340663 +924477420 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1295083508 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22331,80 +22276,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1852565824 +1291113768 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1855889762 +2005167404 1 this.scale(this.value) --576 +-1067 1 this.scale(this.shift) --71 +3 1 this.scale(this.getValue()) --576 +-1067 1 this.scale(this.getShift()) --71 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +1418385211 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -3875 +3436 this -1273059732 +640363654 1 this.value --96 +-97 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -935340663 +924477420 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1295083508 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22413,77 +22361,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1886740906 +1282811396 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -710875540 +641853239 1 this.scale(this.value) --576 +-1067 1 this.scale(this.shift) --71 +3 1 this.scale(this.getValue()) --576 +-1067 1 this.scale(this.getShift()) --71 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1418385211 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-194 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -3875 +3471 this -1273059732 +1373810119 1 this.value --96 +-97 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -935340663 +445288316 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1131316523 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22492,80 +22449,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1233672519 +1920467934 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -379415048 +1883840933 1 this.scale(this.value) --576 +-97 1 this.scale(this.shift) --71 +-97 1 this.scale(this.getValue()) --576 +-97 1 this.scale(this.getShift()) --71 +-97 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +233996206 +1 +l[..] +[614685048 385337537 789219251 832279283 265119009 668210649 1545087375 838411509 1434041222 1375995437 1338841523 929776179 802581203 1561408618 2050404090 388043093 188576144 1608230649 282432134 266437232] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -3910 +3471 this -1273059732 +1373810119 1 this.value --96 +-97 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -935340663 +445288316 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[592688102 103887628 1123629720 205962452 842326585 1032986144 917819120 263025902 438135304 936580213 662736689] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1131316523 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[852687460 495792375 1045941616 161960012 738433734 1484594489 1489069835 1800890735 1538399081 1805013491 951880373] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22574,56 +22540,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -949763793 +1873859565 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -434120800 +1843289228 1 this.scale(this.value) --576 +-97 1 this.scale(this.shift) --71 +-97 1 this.scale(this.getValue()) --576 +-97 1 this.scale(this.getShift()) --71 +-97 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +233996206 +1 +l[..] +[614685048 385337537 789219251 832279283 265119009 668210649 1545087375 838411509 1434041222 1375995437 1338841523 929776179 802581203 1561408618 2050404090 388043093 188576144 1608230649 282432134 266437232] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -3910 +3506 this -1273059732 +2056418216 1 this.value --96 +-97 1 this.shift 5 @@ -22632,19 +22613,19 @@ this.heavy true 1 this.list1 -935340663 +648525677 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1502635287 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22653,7 +22634,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 5 @@ -22662,31 +22643,31 @@ this.isHeavy() true 1 this.getNum() -1266336741 +1361289747 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1758664217 +1381128261 1 this.scale(this.value) --576 +-582 1 this.scale(this.shift) --71 +-72 1 this.scale(this.getValue()) --576 +-582 1 this.scale(this.getShift()) --71 +-72 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 5 @@ -22694,21 +22675,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -2052061458 +l +233996206 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[614685048 385337537 789219251 832279283 265119009 668210649 1545087375 838411509 1434041222 1375995437 1338841523 929776179 802581203 1561408618 2050404090 388043093 188576144 1608230649 282432134 266437232] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -3945 +3506 this -1273059732 +2056418216 1 this.value --96 +-97 1 this.shift 5 @@ -22717,19 +22704,19 @@ this.heavy true 1 this.list1 -935340663 +648525677 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[1253946629 2095490653 352359770 243745864 699780352 1613255205 1897115967 1166151249 1121453612 1615056168 213193302] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1502635287 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[1543237999 632249781 19717364 1540270363 1597655940 2619171 1728790703 1227074340 1154002927 2070529722 1188753216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22738,7 +22725,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 5 @@ -22747,31 +22734,31 @@ this.isHeavy() true 1 this.getNum() -409553786 +999609945 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -685392667 +615634843 1 this.scale(this.value) --576 +-582 1 this.scale(this.shift) --71 +-72 1 this.scale(this.getValue()) --576 +-582 1 this.scale(this.getShift()) --71 +-72 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 5 @@ -22779,97 +22766,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -3945 -this -1273059732 -1 -this.value --96 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -935340663 -1 -this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -359940254 +l +233996206 1 -this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +l[..] +[614685048 385337537 789219251 832279283 265119009 668210649 1545087375 838411509 1434041222 1375995437 1338841523 929776179 802581203 1561408618 2050404090 388043093 188576144 1608230649 282432134 266437232] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --96 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -292271761 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -916386438 -1 -this.scale(this.value) --576 -1 -this.scale(this.shift) --71 -1 -this.scale(this.getValue()) --576 -1 -this.scale(this.getShift()) --71 -1 -this.sum(this.getNum()) --192 -1 -this.sum(this.getJWrap()) --192 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -2101630829 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -3980 +3541 this -525211250 +640363654 1 this.value --96 +-97 1 this.shift 10 @@ -22878,19 +22798,19 @@ this.heavy true 1 this.list1 -1067689580 +924477420 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1295083508 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22899,7 +22819,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 10 @@ -22908,31 +22828,31 @@ this.isHeavy() true 1 this.getNum() -298317147 +1758386724 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1589457531 +673068808 1 this.scale(this.value) --1056 +-1067 1 this.scale(this.shift) -4 +3 1 this.scale(this.getValue()) --1056 +-1067 1 this.scale(this.getShift()) -4 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 10 @@ -22940,15 +22860,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +233996206 +1 +l[..] +[614685048 385337537 789219251 832279283 265119009 668210649 1545087375 838411509 1434041222 1375995437 1338841523 929776179 802581203 1561408618 2050404090 388043093 188576144 1608230649 282432134 266437232] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -3980 +3541 this -525211250 +640363654 1 this.value --96 +-97 1 this.shift 10 @@ -22957,19 +22889,19 @@ this.heavy true 1 this.list1 -1067689580 +924477420 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[99451533 84739718 2050835901 511473681 2011986105 439904756 171497379 2012846597 1665404403 988458918 1990451863] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1295083508 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[249155636 1629604310 142555199 1320677379 246399377 1630521067 274773041 1629911510 292917034 242355057 455538610] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -22978,7 +22910,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --96 +-97 1 this.getShift() 10 @@ -22987,31 +22919,31 @@ this.isHeavy() true 1 this.getNum() -1463638484 +900008524 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2094307850 +520232556 1 this.scale(this.value) --1056 +-1067 1 this.scale(this.shift) -4 +3 1 this.scale(this.getValue()) --1056 +-1067 1 this.scale(this.getShift()) -4 +3 1 this.sum(this.getNum()) --192 +-194 1 this.sum(this.getJWrap()) --192 +-194 1 this.retrieve(this.list1) 10 @@ -23019,39 +22951,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +233996206 +1 +l[..] +[614685048 385337537 789219251 832279283 265119009 668210649 1545087375 838411509 1434041222 1375995437 1338841523 929776179 802581203 1561408618 2050404090 388043093 188576144 1608230649 282432134 266437232] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +3576 +value -96 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -4015 +3576 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23063,31 +23017,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1775060620 +1686369710 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -601016216 +194706439 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -23096,41 +23050,57 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-96 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -4015 +3594 +value +-96 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +3594 this -525211250 +942518407 1 this.value -96 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1067689580 +1943325854 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1765250898 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23142,31 +23112,31 @@ this.getValue() -96 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1663950471 +2134991632 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1483514863 +480971771 1 this.scale(this.value) --1056 +-576 1 this.scale(this.shift) -4 +-71 1 this.scale(this.getValue()) --1056 +-576 1 this.scale(this.getShift()) -4 +-71 1 this.sum(this.getNum()) -192 @@ -23175,20 +23145,33 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-96 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +3612 +value +-96 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -4050 +3612 this -525211250 +1586845078 1 this.value -96 @@ -23200,19 +23183,19 @@ this.heavy true 1 this.list1 -1067689580 +1356728614 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1032000752 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23230,13 +23213,13 @@ this.isHeavy() true 1 this.getNum() -1149160771 +270397815 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1624640726 +376416077 1 this.scale(this.value) -1056 @@ -23262,36 +23245,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-96 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -4050 +3630 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23303,31 +23292,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -82110277 +1089504328 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1342924165 +660879561 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -23336,44 +23325,41 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -4085 +3630 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23385,31 +23371,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -473311185 +1485697819 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -661657807 +867398280 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -23418,41 +23404,44 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-96 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -4085 +3665 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23464,31 +23453,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -812438083 +2007331442 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -945833355 +1904324159 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -23497,47 +23486,41 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -947242391 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -4120 +3665 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23549,31 +23532,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1006590326 +1176735295 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2034921663 +1848415041 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -23582,41 +23565,44 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -4120 +3700 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23628,31 +23614,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -103827919 +843467284 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1279113269 +1313532469 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -23661,20 +23647,17 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -1745405613 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -4155 +3700 this -1998651247 +17037394 1 this.value -96 @@ -23686,19 +23669,19 @@ this.heavy false 1 this.list1 -392301955 +1484531981 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +22756955 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23716,13 +23699,13 @@ this.isHeavy() false 1 this.getNum() -405519671 +339924917 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1603498566 +520022247 1 this.scale(this.value) -96 @@ -23748,15 +23731,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --96 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -4155 +3735 this -1998651247 +17037394 1 this.value -96 @@ -23768,19 +23751,19 @@ this.heavy false 1 this.list1 -392301955 +1484531981 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +22756955 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23798,13 +23781,13 @@ this.isHeavy() false 1 this.getNum() -1228112559 +518522822 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1422447796 +124407148 1 this.scale(this.value) -96 @@ -23830,42 +23813,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --96 -1 -return --96 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -4190 +3735 this -1273059732 +17037394 1 this.value -96 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -935340663 +1484531981 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +22756955 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23877,31 +23854,31 @@ this.getValue() -96 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1292148968 +85445963 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1793066712 +1825027294 1 this.scale(this.value) --576 +-96 1 this.scale(this.shift) --71 +-96 1 this.scale(this.getValue()) --576 +-96 1 this.scale(this.getShift()) --71 +-96 1 this.sum(this.getNum()) -192 @@ -23910,44 +23887,47 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --96 +return +852445367 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -4190 +3770 this -1273059732 +17037394 1 this.value -96 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -935340663 +1484531981 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +22756955 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -23959,31 +23939,31 @@ this.getValue() -96 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -434210233 +1738236591 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -621953525 +1558021762 1 this.scale(this.value) --576 +-96 1 this.scale(this.shift) --71 +-96 1 this.scale(this.getValue()) --576 +-96 1 this.scale(this.getShift()) --71 +-96 1 this.sum(this.getNum()) -192 @@ -23992,47 +23972,41 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --96 -1 -return --576 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -4225 +3770 this -525211250 +17037394 1 this.value -96 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1067689580 +1484531981 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +22756955 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24044,31 +24018,31 @@ this.getValue() -96 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1369984726 +225290371 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -13626748 +1169146729 1 this.scale(this.value) --1056 +-96 1 this.scale(this.shift) -4 +-96 1 this.scale(this.getValue()) --1056 +-96 1 this.scale(this.getShift()) -4 +-96 1 this.sum(this.getNum()) -192 @@ -24077,44 +24051,44 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --96 +return +2040352617 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -4225 +3805 this -525211250 +942518407 1 this.value -96 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1067689580 +1943325854 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1765250898 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24126,31 +24100,31 @@ this.getValue() -96 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1391487054 +1237598030 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -626000748 +688766789 1 this.scale(this.value) --1056 +-576 1 this.scale(this.shift) -4 +-71 1 this.scale(this.getValue()) --1056 +-576 1 this.scale(this.getShift()) -4 +-71 1 this.sum(this.getNum()) -192 @@ -24159,47 +24133,41 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --96 -1 -return --1056 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -4260 +3805 this -1998651247 +942518407 1 this.value -96 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -392301955 +1943325854 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1765250898 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24211,31 +24179,31 @@ this.getValue() -96 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -672184983 +302155142 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1649026061 +24606376 1 this.scale(this.value) --96 +-576 1 this.scale(this.shift) --96 +-71 1 this.scale(this.getValue()) --96 +-576 1 this.scale(this.getShift()) --96 +-71 1 this.sum(this.getNum()) -192 @@ -24244,47 +24212,44 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1904542692 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-96 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -4260 +3840 this -1998651247 +942518407 1 this.value -96 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -392301955 +1943325854 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1765250898 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24296,31 +24261,31 @@ this.getValue() -96 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1405265909 +1772160903 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -278982857 +756185697 1 this.scale(this.value) --96 +-576 1 this.scale(this.shift) --96 +-71 1 this.scale(this.getValue()) --96 +-576 1 this.scale(this.getShift()) --96 +-71 1 this.sum(this.getNum()) -192 @@ -24329,26 +24294,17 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1904542692 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --192 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -4295 +3840 this -1273059732 +942518407 1 this.value -96 @@ -24360,19 +24316,19 @@ this.heavy true 1 this.list1 -935340663 +1943325854 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1765250898 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24390,13 +24346,13 @@ this.isHeavy() true 1 this.getNum() -908076198 +733672688 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2017864204 +297927961 1 this.scale(this.value) -576 @@ -24422,18 +24378,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1181923204 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -4295 +3875 this -1273059732 +942518407 1 this.value -96 @@ -24445,19 +24398,19 @@ this.heavy true 1 this.list1 -935340663 +1943325854 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1765250898 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24475,13 +24428,13 @@ this.isHeavy() true 1 this.getNum() -359554878 +1891546521 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -19851888 +1312884893 1 this.scale(this.value) -576 @@ -24507,45 +24460,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1181923204 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --192 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -4330 +3875 this -525211250 +942518407 1 this.value -96 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1067689580 +1943325854 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1765250898 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24557,31 +24501,31 @@ this.getValue() -96 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -790716331 +849373393 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -940567481 +868964689 1 this.scale(this.value) --1056 +-576 1 this.scale(this.shift) -4 +-71 1 this.scale(this.getValue()) --1056 +-576 1 this.scale(this.getShift()) -4 +-71 1 this.sum(this.getNum()) -192 @@ -24590,47 +24534,44 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -490527600 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -4330 +3910 this -525211250 +942518407 1 this.value -96 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1067689580 +1943325854 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1765250898 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24642,31 +24583,31 @@ this.getValue() -96 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -107652367 +912011468 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1132101395 +1881129850 1 this.scale(this.value) --1056 +-576 1 this.scale(this.shift) -4 +-71 1 this.scale(this.getValue()) --1056 +-576 1 this.scale(this.getShift()) -4 +-71 1 this.sum(this.getNum()) -192 @@ -24675,50 +24616,41 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -490527600 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --192 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -4365 +3910 this -1998651247 +942518407 1 this.value -96 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -392301955 +1943325854 1 this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -475165049 +1765250898 1 this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24730,31 +24662,31 @@ this.getValue() -96 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -523033345 +1095293768 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -970862244 +673186785 1 this.scale(this.value) --96 +-576 1 this.scale(this.shift) --96 +-71 1 this.scale(this.getValue()) --96 +-576 1 this.scale(this.getShift()) --96 +-71 1 this.sum(this.getNum()) -192 @@ -24763,123 +24695,23 @@ this.sum(this.getJWrap()) -192 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -700985002 -1 -l[..] -[359641172 1470195146 622976440 1382247955 2110770086 1430470609 840097298 1957792108 867519822 1139168871 1194501892 1316166688 1731961116 2077125174 748633786 181353529 729466810 164534947 1527400540 1359542] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -4365 -this -1998651247 -1 -this.value --96 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -392301955 -1 -this.list1[..] -[644161395 955501238 226594800 890297469 1710992834 1850527708 1961012502 1305590605 73393189 863714145 1601664942] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -475165049 -1 -this.list2[..] -[1754778997 1177678328 2030367944 878883978 1010494180 1075002784 791868477 977332480 2072059104 1502541176 949339959] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --96 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -1374985924 +return +2142080121 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -316899301 -1 -this.scale(this.value) --96 -1 -this.scale(this.shift) --96 -1 -this.scale(this.getValue()) --96 -1 -this.scale(this.getShift()) --96 -1 -this.sum(this.getNum()) --192 -1 -this.sum(this.getJWrap()) --192 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -700985002 -1 -l[..] -[359641172 1470195146 622976440 1382247955 2110770086 1430470609 840097298 1957792108 867519822 1139168871 1194501892 1316166688 1731961116 2077125174 748633786 181353529 729466810 164534947 1527400540 1359542] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -4400 +3945 this -1273059732 +942518407 1 this.value -96 @@ -24891,19 +24723,19 @@ this.heavy true 1 this.list1 -935340663 +1943325854 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1765250898 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -24921,13 +24753,13 @@ this.isHeavy() true 1 this.getNum() -367107347 +1906808037 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -252663198 +1983025922 1 this.scale(this.value) -576 @@ -24953,24 +24785,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -700985002 -1 -l[..] -[359641172 1470195146 622976440 1382247955 2110770086 1430470609 840097298 1957792108 867519822 1139168871 1194501892 1316166688 1731961116 2077125174 748633786 181353529 729466810 164534947 1527400540 1359542] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -4400 +3945 this -1273059732 +942518407 1 this.value -96 @@ -24982,19 +24802,19 @@ this.heavy true 1 this.list1 -935340663 +1943325854 1 this.list1[..] -[690227001 2086028360 60625598 1027176908 141254523 1095338126 1118061598 779366336 1307246099 2127477083 904611431] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -359940254 +1765250898 1 this.list2[..] -[54415379 1878724878 1276962705 2108098464 1625676242 306158513 235309779 1334061526 1842792802 809466180 389183515] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25012,13 +24832,13 @@ this.isHeavy() true 1 this.getNum() -935198667 +1579526446 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -451183876 +1308109015 1 this.scale(this.value) -576 @@ -25044,27 +24864,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -700985002 -1 -l[..] -[359641172 1470195146 622976440 1382247955 2110770086 1430470609 840097298 1957792108 867519822 1139168871 1194501892 1316166688 1731961116 2077125174 748633786 181353529 729466810 164534947 1527400540 1359542] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +11902257 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -4435 +3980 this -525211250 +1586845078 1 this.value -96 @@ -25076,19 +24884,19 @@ this.heavy true 1 this.list1 -1067689580 +1356728614 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1032000752 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25106,13 +24914,13 @@ this.isHeavy() true 1 this.getNum() -282646375 +1660794022 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -203797461 +300031246 1 this.scale(this.value) -1056 @@ -25138,24 +24946,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -700985002 -1 -l[..] -[359641172 1470195146 622976440 1382247955 2110770086 1430470609 840097298 1957792108 867519822 1139168871 1194501892 1316166688 1731961116 2077125174 748633786 181353529 729466810 164534947 1527400540 1359542] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -4435 +3980 this -525211250 +1586845078 1 this.value -96 @@ -25167,19 +24963,19 @@ this.heavy true 1 this.list1 -1067689580 +1356728614 1 this.list1[..] -[285416728 1667963745 215134277 1546815638 2040880931 1476997433 1132380758 923319992 522272322 1065250565 95080916] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -297121844 +1032000752 1 this.list2[..] -[827352833 362449906 1431947250 2035682468 5775672 434955189 257527135 1079009240 1556381412 1751571024 948367292] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25197,13 +24993,13 @@ this.isHeavy() true 1 this.getNum() -2134993709 +500179317 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -535009440 +824208363 1 this.scale(this.value) -1056 @@ -25229,61 +25025,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -700985002 -1 -l[..] -[359641172 1470195146 622976440 1382247955 2110770086 1430470609 840097298 1957792108 867519822 1139168871 1194501892 1316166688 1731961116 2077125174 748633786 181353529 729466810 164534947 1527400540 1359542] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -4470 -value --95 -1 -shift -0 +-96 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -4470 +4015 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25292,93 +25066,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -464417630 +1048027629 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1511534212 +1073533248 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --95 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -4488 -value --95 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -4488 +4015 this -1771440721 +1586845078 1 this.value --95 +-96 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2038399486 +1356728614 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1032000752 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25387,72 +25145,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1307462318 +599491651 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1466502522 +293002476 1 this.scale(this.value) --570 +-1056 1 this.scale(this.shift) --70 +4 1 this.scale(this.getValue()) --570 +-1056 1 this.scale(this.getShift()) --70 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --95 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -4506 -value --95 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -4506 +4050 this -838070635 +1586845078 1 this.value --95 +-96 1 this.shift 10 @@ -25461,19 +25206,19 @@ this.heavy true 1 this.list1 -107921772 +1356728614 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1032000752 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25482,7 +25227,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 10 @@ -25491,31 +25236,31 @@ this.isHeavy() true 1 this.getNum() -525049519 +302870502 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -496960310 +1268959798 1 this.scale(this.value) --1045 +-1056 1 this.scale(this.shift) -5 +4 1 this.scale(this.getValue()) --1045 +-1056 1 this.scale(this.getShift()) -5 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 10 @@ -25523,42 +25268,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --95 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -4524 +4050 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25567,77 +25306,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -848026987 +876926621 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2088089017 +326298949 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -4524 +4085 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25646,80 +25388,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -334349445 +1786364562 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1593901563 +928466577 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --95 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -4559 +4085 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25728,77 +25467,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -992556663 +624271064 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -246865145 +564742142 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +90205195 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -4559 +4120 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25807,80 +25552,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -124086011 +135184888 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -306965640 +21257599 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -4594 +4120 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25889,56 +25631,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -915791386 +1782148126 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -690526453 +1816089958 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +306206744 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -4594 +4155 this -389628091 +17037394 1 this.value --95 +-96 1 this.shift 0 @@ -25947,19 +25692,19 @@ this.heavy false 1 this.list1 -801685734 +1484531981 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +22756955 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -25968,7 +25713,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 0 @@ -25977,31 +25722,31 @@ this.isHeavy() false 1 this.getNum() -676467183 +827084938 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -605517463 +280265505 1 this.scale(this.value) --95 +-96 1 this.scale(this.shift) --95 +-96 1 this.scale(this.getValue()) --95 +-96 1 this.scale(this.getShift()) --95 +-96 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 0 @@ -26009,18 +25754,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-96 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -4629 +4155 this -389628091 +17037394 1 this.value --95 +-96 1 this.shift 0 @@ -26029,19 +25774,19 @@ this.heavy false 1 this.list1 -801685734 +1484531981 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +22756955 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26050,7 +25795,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 0 @@ -26059,31 +25804,31 @@ this.isHeavy() false 1 this.getNum() -6997508 +112619572 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1643000018 +371619938 1 this.scale(this.value) --95 +-96 1 this.scale(this.shift) --95 +-96 1 this.scale(this.getValue()) --95 +-96 1 this.scale(this.getShift()) --95 +-96 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 0 @@ -26091,36 +25836,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-96 +1 +return +-96 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -4629 +4190 this -389628091 +942518407 1 this.value --95 +-96 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -801685734 +1943325854 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1765250898 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26129,83 +25880,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1556569400 +1161667116 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -616118046 +1898220577 1 this.scale(this.value) --95 +-576 1 this.scale(this.shift) --95 +-71 1 this.scale(this.getValue()) --95 +-576 1 this.scale(this.getShift()) --95 +-71 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -2077336935 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-96 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -4664 +4190 this -389628091 +942518407 1 this.value --95 +-96 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -801685734 +1943325854 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1765250898 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26214,77 +25962,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -12733619 +1143371233 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1413053480 +1634132079 1 this.scale(this.value) --95 +-576 1 this.scale(this.shift) --95 +-71 1 this.scale(this.getValue()) --95 +-576 1 this.scale(this.getShift()) --95 +-71 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-96 +1 +return +-576 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -4664 +4225 this -389628091 +1586845078 1 this.value --95 +-96 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -801685734 +1356728614 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1032000752 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26293,80 +26047,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -168186187 +1239548589 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -616765457 +477289012 1 this.scale(this.value) --95 +-1056 1 this.scale(this.shift) --95 +4 1 this.scale(this.getValue()) --95 +-1056 1 this.scale(this.getShift()) --95 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -73471730 +scale +-96 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -4699 +4225 this -1771440721 +1586845078 1 this.value --95 +-96 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2038399486 +1356728614 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1032000752 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26375,77 +26129,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -36269085 +1795960102 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1836639494 +1027591600 1 this.scale(this.value) --570 +-1056 1 this.scale(this.shift) --70 +4 1 this.scale(this.getValue()) --570 +-1056 1 this.scale(this.getShift()) --70 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-96 +1 +return +-1056 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -4699 +4260 this -1771440721 +17037394 1 this.value --95 +-96 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2038399486 +1484531981 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +22756955 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26454,80 +26214,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -470033680 +1678854096 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1411206094 +1849201180 1 this.scale(this.value) --570 +-96 1 this.scale(this.shift) --70 +-96 1 this.scale(this.getValue()) --570 +-96 1 this.scale(this.getShift()) --70 +-96 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --95 +n +1691875296 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -4734 +4260 this -1771440721 +17037394 1 this.value --95 +-96 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2038399486 +1484531981 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +22756955 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26536,56 +26299,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1331424390 +667346055 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -470120990 +1225197672 1 this.scale(this.value) --570 +-96 1 this.scale(this.shift) --70 +-96 1 this.scale(this.getValue()) --570 +-96 1 this.scale(this.getShift()) --70 +-96 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1691875296 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-192 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -4734 +4295 this -1771440721 +942518407 1 this.value --95 +-96 1 this.shift 5 @@ -26594,19 +26366,19 @@ this.heavy true 1 this.list1 -2038399486 +1943325854 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1765250898 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26615,7 +26387,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 5 @@ -26624,31 +26396,31 @@ this.isHeavy() true 1 this.getNum() -731141617 +1669712678 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -395728785 +943081537 1 this.scale(this.value) --570 +-576 1 this.scale(this.shift) --70 +-71 1 this.scale(this.getValue()) --570 +-576 1 this.scale(this.getShift()) --70 +-71 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 5 @@ -26656,18 +26428,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +683962652 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -4769 +4295 this -1771440721 +942518407 1 this.value --95 +-96 1 this.shift 5 @@ -26676,19 +26451,19 @@ this.heavy true 1 this.list1 -2038399486 +1943325854 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1765250898 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26697,7 +26472,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 5 @@ -26706,31 +26481,31 @@ this.isHeavy() true 1 this.getNum() -256834736 +1500608548 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -179277482 +341853399 1 this.scale(this.value) --570 +-576 1 this.scale(this.shift) --70 +-71 1 this.scale(this.getValue()) --570 +-576 1 this.scale(this.getShift()) --70 +-71 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 5 @@ -26738,36 +26513,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +683962652 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-192 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -4769 +4330 this -1771440721 +1586845078 1 this.value --95 +-96 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2038399486 +1356728614 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1032000752 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26776,80 +26560,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -197083233 +513700442 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -958113357 +366590980 1 this.scale(this.value) --570 +-1056 1 this.scale(this.shift) --70 +4 1 this.scale(this.getValue()) --570 +-1056 1 this.scale(this.getShift()) --70 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +1195067075 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -4804 +4330 this -1771440721 +1586845078 1 this.value --95 +-96 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2038399486 +1356728614 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1032000752 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26858,77 +26645,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1178805893 +1366025231 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1654000076 +1007309018 1 this.scale(this.value) --570 +-1056 1 this.scale(this.shift) --70 +4 1 this.scale(this.getValue()) --570 +-1056 1 this.scale(this.getShift()) --70 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1195067075 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-192 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -4804 +4365 this -1771440721 +17037394 1 this.value --95 +-96 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2038399486 +1484531981 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +22756955 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -26937,83 +26733,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1750950564 +1684792003 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1257714307 +2038148563 1 this.scale(this.value) --570 +-96 1 this.scale(this.shift) --70 +-96 1 this.scale(this.getValue()) --570 +-96 1 this.scale(this.getShift()) --70 +-96 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -722820328 +l +2008966511 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[433874882 572191680 103536485 37380050 2023938592 231977479 1427889191 93314457 1796371666 2076287037 1890627974 195615004 1935972447 97652294 1889248251 1027007693 1783047508 2146608740 1381713434 1489092624] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -4839 +4365 this -1771440721 +17037394 1 this.value --95 +-96 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2038399486 +1484531981 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1159114532 1256728724 1412925683 1832580921 497359413 369241501 2124046270 1151593579 1902260856 1988859660 1514160588] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +22756955 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1640639994 1263793464 323326911 1270144618 2074185499 797925218 275310919 2109874862 183284570 1607305514 146305349] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27022,56 +26824,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -126261617 +192881625 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -365153683 +1641313620 1 this.scale(this.value) --570 +-96 1 this.scale(this.shift) --70 +-96 1 this.scale(this.getValue()) --570 +-96 1 this.scale(this.getShift()) --70 +-96 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +2008966511 +1 +l[..] +[433874882 572191680 103536485 37380050 2023938592 231977479 1427889191 93314457 1796371666 2076287037 1890627974 195615004 1935972447 97652294 1889248251 1027007693 1783047508 2146608740 1381713434 1489092624] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -4839 +4400 this -1771440721 +942518407 1 this.value --95 +-96 1 this.shift 5 @@ -27080,19 +26897,19 @@ this.heavy true 1 this.list1 -2038399486 +1943325854 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1765250898 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27101,7 +26918,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 5 @@ -27110,31 +26927,31 @@ this.isHeavy() true 1 this.getNum() -1777170702 +1773638882 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1705426038 +1059063940 1 this.scale(this.value) --570 +-576 1 this.scale(this.shift) --70 +-71 1 this.scale(this.getValue()) --570 +-576 1 this.scale(this.getShift()) --70 +-71 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 5 @@ -27142,39 +26959,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -631184157 +l +2008966511 +1 +l[..] +[433874882 572191680 103536485 37380050 2023938592 231977479 1427889191 93314457 1796371666 2076287037 1890627974 195615004 1935972447 97652294 1889248251 1027007693 1783047508 2146608740 1381713434 1489092624] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -4874 +4400 this -838070635 +942518407 1 this.value --95 +-96 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -107921772 +1943325854 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[134310351 1411892748 22805895 1413378318 1475491159 1024429571 1667689440 1157058691 40472007 1138193439 398110318] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1765250898 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[670971910 1601292138 494586676 1218593486 508198356 1330754528 79290965 1582785598 322836221 1370651081 450003680] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27183,56 +27009,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1890394166 +1295226194 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1981674244 +252651381 1 this.scale(this.value) --1045 +-576 1 this.scale(this.shift) -5 +-71 1 this.scale(this.getValue()) --1045 +-576 1 this.scale(this.getShift()) -5 +-71 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +2008966511 +1 +l[..] +[433874882 572191680 103536485 37380050 2023938592 231977479 1427889191 93314457 1796371666 2076287037 1890627974 195615004 1935972447 97652294 1889248251 1027007693 1783047508 2146608740 1381713434 1489092624] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -4874 +4435 this -838070635 +1586845078 1 this.value --95 +-96 1 this.shift 10 @@ -27241,19 +27082,19 @@ this.heavy true 1 this.list1 -107921772 +1356728614 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1032000752 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27262,7 +27103,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 10 @@ -27271,31 +27112,31 @@ this.isHeavy() true 1 this.getNum() -675137585 +1514840818 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1881283994 +1704064279 1 this.scale(this.value) --1045 +-1056 1 this.scale(this.shift) -5 +4 1 this.scale(this.getValue()) --1045 +-1056 1 this.scale(this.getShift()) -5 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 10 @@ -27303,18 +27144,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --95 +l +2008966511 +1 +l[..] +[433874882 572191680 103536485 37380050 2023938592 231977479 1427889191 93314457 1796371666 2076287037 1890627974 195615004 1935972447 97652294 1889248251 1027007693 1783047508 2146608740 1381713434 1489092624] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -4909 +4435 this -838070635 +1586845078 1 this.value --95 +-96 1 this.shift 10 @@ -27323,19 +27173,19 @@ this.heavy true 1 this.list1 -107921772 +1356728614 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[611563982 1615039080 336484883 876213901 230528013 1909546776 392781299 1822383117 233021551 1991313236 736778932] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1032000752 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[770911223 1392906938 708890004 255944888 1004095028 1487470647 1948863195 1890187342 19986569 294184992 793315160] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27344,7 +27194,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --95 +-96 1 this.getShift() 10 @@ -27353,31 +27203,31 @@ this.isHeavy() true 1 this.getNum() -1338352377 +878274034 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -944681561 +1117509763 1 this.scale(this.value) --1045 +-1056 1 this.scale(this.shift) -5 +4 1 this.scale(this.getValue()) --1045 +-1056 1 this.scale(this.getShift()) -5 +4 1 this.sum(this.getNum()) --190 +-192 1 this.sum(this.getJWrap()) --190 +-192 1 this.retrieve(this.list1) 10 @@ -27385,36 +27235,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +2008966511 +1 +l[..] +[433874882 572191680 103536485 37380050 2023938592 231977479 1427889191 93314457 1796371666 2076287037 1890627974 195615004 1935972447 97652294 1889248251 1027007693 1783047508 2146608740 1381713434 1489092624] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -4909 +4470 +value +-95 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +4470 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27426,31 +27301,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -916393456 +413601558 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -72098708 +1658926803 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -27459,44 +27334,57 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-95 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -4944 +4488 +value +-95 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +4488 this -838070635 +210652080 1 this.value -95 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -107921772 +1652149987 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +439928219 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27508,31 +27396,31 @@ this.getValue() -95 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -582208448 +1106131243 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1241889804 +510109769 1 this.scale(this.value) --1045 +-570 1 this.scale(this.shift) -5 +-70 1 this.scale(this.getValue()) --1045 +-570 1 this.scale(this.getShift()) -5 +-70 1 this.sum(this.getNum()) -190 @@ -27541,17 +27429,33 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-95 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +4506 +value +-95 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -4944 +4506 this -838070635 +1473611564 1 this.value -95 @@ -27563,19 +27467,19 @@ this.heavy true 1 this.list1 -107921772 +107456312 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1742920067 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27593,13 +27497,13 @@ this.isHeavy() true 1 this.getNum() -1048370635 +1390835631 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2009422457 +889729797 1 this.scale(this.value) -1045 @@ -27625,39 +27529,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-95 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -4979 +4524 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27669,31 +27576,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1035402077 +148912029 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -942716498 +874217650 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -27702,41 +27609,41 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -4979 +4524 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27748,31 +27655,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -101834320 +1436664465 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2132433228 +558187323 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -27781,47 +27688,44 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -450678213 -1 -return.getClass().getName() -"java.lang.Integer" +-95 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -5014 +4559 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27833,31 +27737,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -373902922 +680576081 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -649258932 +1088872417 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -27866,41 +27770,41 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -5014 +4559 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -27912,31 +27816,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -730459717 +453523494 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1819937367 +274722023 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -27945,20 +27849,20 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1077742948 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -5049 +4594 this -389628091 +1296674576 1 this.value -95 @@ -27970,19 +27874,19 @@ this.heavy false 1 this.list1 -801685734 +664457955 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1800659519 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28000,13 +27904,13 @@ this.isHeavy() false 1 this.getNum() -1748648238 +1052967153 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1217226871 +1210898719 1 this.scale(this.value) -95 @@ -28032,15 +27936,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --95 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -5049 +4594 this -389628091 +1296674576 1 this.value -95 @@ -28052,19 +27953,19 @@ this.heavy false 1 this.list1 -801685734 +664457955 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +1800659519 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28082,13 +27983,13 @@ this.isHeavy() false 1 this.getNum() -1002799575 +306123060 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -600795369 +2104028992 1 this.scale(this.value) -95 @@ -28114,42 +28015,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --95 -1 return --95 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -5084 +4629 this -1771440721 +1296674576 1 this.value -95 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2038399486 +664457955 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1800659519 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28161,31 +28059,31 @@ this.getValue() -95 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -99658589 +1527430292 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2072144310 +1975546571 1 this.scale(this.value) --570 +-95 1 this.scale(this.shift) --70 +-95 1 this.scale(this.getValue()) --570 +-95 1 this.scale(this.getShift()) --70 +-95 1 this.sum(this.getNum()) -190 @@ -28194,44 +28092,41 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --95 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -5084 +4629 this -1771440721 +1296674576 1 this.value -95 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2038399486 +664457955 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1800659519 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28243,31 +28138,31 @@ this.getValue() -95 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -787114771 +521960438 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -538690677 +632587706 1 this.scale(this.value) --570 +-95 1 this.scale(this.shift) --70 +-95 1 this.scale(this.getValue()) --570 +-95 1 this.scale(this.getShift()) --70 +-95 1 this.sum(this.getNum()) -190 @@ -28276,47 +28171,47 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --95 +0 1 return --570 +726950788 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -5119 +4664 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28328,31 +28223,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2130636234 +1567885839 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -313371113 +558569884 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -28361,44 +28256,41 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --95 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -5119 +4664 this -838070635 +1296674576 1 this.value -95 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -107921772 +664457955 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1800659519 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28410,31 +28302,31 @@ this.getValue() -95 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1198393747 +550752602 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -154580616 +680779399 1 this.scale(this.value) --1045 +-95 1 this.scale(this.shift) -5 +-95 1 this.scale(this.getValue()) --1045 +-95 1 this.scale(this.getShift()) -5 +-95 1 this.sum(this.getNum()) -190 @@ -28443,47 +28335,44 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --95 +0 1 return --1045 +1439337960 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -5154 +4699 this -389628091 +210652080 1 this.value -95 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -801685734 +1652149987 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +439928219 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28495,31 +28384,31 @@ this.getValue() -95 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1728683889 +741669172 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -683862160 +315860201 1 this.scale(this.value) --95 +-570 1 this.scale(this.shift) --95 +-70 1 this.scale(this.getValue()) --95 +-570 1 this.scale(this.getShift()) --95 +-70 1 this.sum(this.getNum()) -190 @@ -28528,47 +28417,41 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -338844376 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -5154 +4699 this -389628091 +210652080 1 this.value -95 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -801685734 +1652149987 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +439928219 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28580,31 +28463,31 @@ this.getValue() -95 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1978279235 +604125138 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1597279791 +631659383 1 this.scale(this.value) --95 +-570 1 this.scale(this.shift) --95 +-70 1 this.scale(this.getValue()) --95 +-570 1 this.scale(this.getShift()) --95 +-70 1 this.sum(this.getNum()) -190 @@ -28613,26 +28496,99 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -338844376 +return +-95 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +4734 +this +210652080 +1 +this.value +-95 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +1652149987 +1 +this.list1[..] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +439928219 +1 +this.list2[..] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-95 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +785447854 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +556529265 +1 +this.scale(this.value) +-570 +1 +this.scale(this.shift) +-70 +1 +this.scale(this.getValue()) +-570 +1 +this.scale(this.getShift()) +-70 +1 +this.sum(this.getNum()) +-190 +1 +this.sum(this.getJWrap()) -190 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -5189 +4734 this -1771440721 +210652080 1 this.value -95 @@ -28644,19 +28600,19 @@ this.heavy true 1 this.list1 -2038399486 +1652149987 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +439928219 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28674,13 +28630,13 @@ this.isHeavy() true 1 this.getNum() -1935859837 +346224929 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1619028409 +63468833 1 this.scale(this.value) -570 @@ -28706,18 +28662,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -245178926 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -5189 +4769 this -1771440721 +210652080 1 this.value -95 @@ -28729,19 +28682,19 @@ this.heavy true 1 this.list1 -2038399486 +1652149987 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +439928219 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28759,13 +28712,13 @@ this.isHeavy() true 1 this.getNum() -1848574336 +720167805 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1342944003 +1418334255 1 this.scale(this.value) -570 @@ -28791,45 +28744,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -245178926 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --190 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -5224 +4769 this -838070635 +210652080 1 this.value -95 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -107921772 +1652149987 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +439928219 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28841,31 +28785,31 @@ this.getValue() -95 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -806728451 +1466073198 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1620812446 +398690014 1 this.scale(this.value) --1045 +-570 1 this.scale(this.shift) -5 +-70 1 this.scale(this.getValue()) --1045 +-570 1 this.scale(this.getShift()) -5 +-70 1 this.sum(this.getNum()) -190 @@ -28874,47 +28818,44 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -164717727 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -5224 +4804 this -838070635 +210652080 1 this.value -95 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -107921772 +1652149987 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +439928219 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -28926,31 +28867,31 @@ this.getValue() -95 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -304416706 +1526298704 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1025530588 +1593180232 1 this.scale(this.value) --1045 +-570 1 this.scale(this.shift) -5 +-70 1 this.scale(this.getValue()) --1045 +-570 1 this.scale(this.getShift()) -5 +-70 1 this.sum(this.getNum()) -190 @@ -28959,50 +28900,41 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -164717727 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --190 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -5259 +4804 this -389628091 +210652080 1 this.value -95 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -801685734 +1652149987 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +439928219 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29014,31 +28946,31 @@ this.getValue() -95 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -388841694 +492079624 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -469613237 +380242442 1 this.scale(this.value) --95 +-570 1 this.scale(this.shift) --95 +-70 1 this.scale(this.getValue()) --95 +-570 1 this.scale(this.getShift()) --95 +-70 1 this.sum(this.getNum()) -190 @@ -29047,53 +28979,47 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -787271534 -1 -l[..] -[1025922771 537810434 221294015 1994317148 563544060 1082133150 372845607 58834903 995737101 13395436 1798793564 48647682 1577805514 1049200642 926964577 1647270301 312771783 1862872672 1136908691 1862362278] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +125881207 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -5259 +4839 this -389628091 +210652080 1 this.value -95 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -801685734 +1652149987 1 this.list1[..] -[619730060 507430470 726347053 1417870223 1666290849 16058616 1461703237 1780866226 1539072143 744979286 1037197792] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1058527445 +439928219 1 this.list2[..] -[916236367 1726871179 282416248 631020266 1283361776 135618764 864417081 531008412 1863827199 2147258451 510098122] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29105,31 +29031,31 @@ this.getValue() -95 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1148651321 +1763344271 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1652249164 +1353170030 1 this.scale(this.value) --95 +-570 1 this.scale(this.shift) --95 +-70 1 this.scale(this.getValue()) --95 +-570 1 this.scale(this.getShift()) --95 +-70 1 this.sum(this.getNum()) -190 @@ -29138,32 +29064,17 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -787271534 -1 -l[..] -[1025922771 537810434 221294015 1994317148 563544060 1082133150 372845607 58834903 995737101 13395436 1798793564 48647682 1577805514 1049200642 926964577 1647270301 312771783 1862872672 1136908691 1862362278] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -5294 +4839 this -1771440721 +210652080 1 this.value -95 @@ -29175,19 +29086,19 @@ this.heavy true 1 this.list1 -2038399486 +1652149987 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +439928219 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29205,13 +29116,13 @@ this.isHeavy() true 1 this.getNum() -240659991 +370869802 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1060761436 +398572781 1 this.scale(this.value) -570 @@ -29237,48 +29148,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -787271534 -1 -l[..] -[1025922771 537810434 221294015 1994317148 563544060 1082133150 372845607 58834903 995737101 13395436 1798793564 48647682 1577805514 1049200642 926964577 1647270301 312771783 1862872672 1136908691 1862362278] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +765284253 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -5294 +4874 this -1771440721 +1473611564 1 this.value -95 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2038399486 +107456312 1 this.list1[..] -[573540611 1590441341 818663978 357751917 1929741066 1860059268 1096667897 1992686325 1071589310 1403669428 1364214101] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810980135 +1742920067 1 this.list2[..] -[857400014 706763928 849286339 1779181611 1143035249 1752207528 908671785 1290476678 1604176093 1877890613 140372732] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29290,31 +29192,31 @@ this.getValue() -95 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1955701105 +1077199500 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -83770753 +240166646 1 this.scale(this.value) --570 +-1045 1 this.scale(this.shift) --70 +5 1 this.scale(this.getValue()) --570 +-1045 1 this.scale(this.getShift()) --70 +5 1 this.sum(this.getNum()) -190 @@ -29323,32 +29225,99 @@ this.sum(this.getJWrap()) -190 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -787271534 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +4874 +this +1473611564 1 -l[..] -[1025922771 537810434 221294015 1994317148 563544060 1082133150 372845607 58834903 995737101 13395436 1798793564 48647682 1577805514 1049200642 926964577 1647270301 312771783 1862872672 1136908691 1862362278] +this.value +-95 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +107456312 +1 +this.list1[..] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1742920067 +1 +this.list2[..] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 -return +this.getValue() +-95 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +351028485 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +1405747618 +1 +this.scale(this.value) +-1045 +1 +this.scale(this.shift) +5 +1 +this.scale(this.getValue()) +-1045 +1 +this.scale(this.getShift()) 5 1 +this.sum(this.getNum()) +-190 +1 +this.sum(this.getJWrap()) +-190 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 +return +-95 +1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -5329 +4909 this -838070635 +1473611564 1 this.value -95 @@ -29360,19 +29329,19 @@ this.heavy true 1 this.list1 -107921772 +107456312 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1742920067 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29390,13 +29359,13 @@ this.isHeavy() true 1 this.getNum() -1333256886 +898406901 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1204110204 +1054932644 1 this.scale(this.value) -1045 @@ -29422,24 +29391,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -787271534 -1 -l[..] -[1025922771 537810434 221294015 1994317148 563544060 1082133150 372845607 58834903 995737101 13395436 1798793564 48647682 1577805514 1049200642 926964577 1647270301 312771783 1862872672 1136908691 1862362278] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -5329 +4909 this -838070635 +1473611564 1 this.value -95 @@ -29451,19 +29408,19 @@ this.heavy true 1 this.list1 -107921772 +107456312 1 this.list1[..] -[1365023936 389491451 652660901 2072777878 698073912 825075423 740725682 413835715 1784813019 1300829037 1650098399] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -599974635 +1742920067 1 this.list2[..] -[1337967780 923210723 833271886 1059725915 1731568834 1926492541 949190768 1540707860 319187494 170061452 2069573254] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29481,13 +29438,13 @@ this.isHeavy() true 1 this.getNum() -1741792947 +1213349904 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1964467972 +1259769769 1 this.scale(this.value) -1045 @@ -29513,61 +29470,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -787271534 -1 -l[..] -[1025922771 537810434 221294015 1994317148 563544060 1082133150 372845607 58834903 995737101 13395436 1798793564 48647682 1577805514 1049200642 926964577 1647270301 312771783 1862872672 1136908691 1862362278] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -5364 -value --94 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -5364 +4944 this -1399616426 +1473611564 1 this.value --94 +-95 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1964886191 +107456312 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1742920067 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29576,93 +29511,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -200021447 +444920847 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -948552174 +589835301 1 this.scale(this.value) --94 +-1045 1 this.scale(this.shift) --94 +5 1 this.scale(this.getValue()) --94 +-1045 1 this.scale(this.getShift()) --94 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --94 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -5382 -value --94 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -5382 +4944 this -1545276737 +1473611564 1 this.value --94 +-95 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1946375588 +107456312 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1742920067 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29671,72 +29590,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1122111603 +2032188048 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -128323667 +112466394 1 this.scale(this.value) --564 +-1045 1 this.scale(this.shift) --69 +5 1 this.scale(this.getValue()) --564 +-1045 1 this.scale(this.getShift()) --69 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --94 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -5400 -value --94 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -5400 +4979 this -662289681 +1473611564 1 this.value --94 +-95 1 this.shift 10 @@ -29745,19 +29651,19 @@ this.heavy true 1 this.list1 -694926166 +107456312 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +1742920067 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29766,7 +29672,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 10 @@ -29775,31 +29681,31 @@ this.isHeavy() true 1 this.getNum() -2121036807 +992846223 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -37075049 +1493625803 1 this.scale(this.value) --1034 +-1045 1 this.scale(this.shift) -6 +5 1 this.scale(this.getValue()) --1034 +-1045 1 this.scale(this.getShift()) -6 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 10 @@ -29807,42 +29713,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --94 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -5418 +4979 this -1399616426 +1473611564 1 this.value --94 +-95 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1964886191 +107456312 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1742920067 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29851,77 +29751,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -350090913 +630074945 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2020265658 +64133603 1 this.scale(this.value) --94 +-1045 1 this.scale(this.shift) --94 +5 1 this.scale(this.getValue()) --94 +-1045 1 this.scale(this.getShift()) --94 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1436901839 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -5418 +5014 this -1399616426 +1473611564 1 this.value --94 +-95 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1964886191 +107456312 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1742920067 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -29930,80 +29836,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -740971289 +999522307 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -246785270 +1866161430 1 this.scale(this.value) --94 +-1045 1 this.scale(this.shift) --94 +5 1 this.scale(this.getValue()) --94 +-1045 1 this.scale(this.getShift()) --94 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --94 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -5453 +5014 this -1399616426 +1473611564 1 this.value --94 +-95 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1964886191 +107456312 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1742920067 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30012,56 +29915,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -929110533 +2024918163 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1207130794 +107241811 1 this.scale(this.value) --94 +-1045 1 this.scale(this.shift) --94 +5 1 this.scale(this.getValue()) --94 +-1045 1 this.scale(this.getShift()) --94 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +558922244 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -5453 +5049 this -1399616426 +1296674576 1 this.value --94 +-95 1 this.shift 0 @@ -30070,19 +29976,19 @@ this.heavy false 1 this.list1 -1964886191 +664457955 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1800659519 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30091,7 +29997,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 0 @@ -30100,31 +30006,31 @@ this.isHeavy() false 1 this.getNum() -969241549 +339099861 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1379251548 +1653986196 1 this.scale(this.value) --94 +-95 1 this.scale(this.shift) --94 +-95 1 this.scale(this.getValue()) --94 +-95 1 this.scale(this.getShift()) --94 +-95 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 0 @@ -30132,18 +30038,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-95 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -5488 +5049 this -1399616426 +1296674576 1 this.value --94 +-95 1 this.shift 0 @@ -30152,19 +30058,19 @@ this.heavy false 1 this.list1 -1964886191 +664457955 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1800659519 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30173,7 +30079,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 0 @@ -30182,31 +30088,31 @@ this.isHeavy() false 1 this.getNum() -1142281518 +1197365356 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1969152493 +1702660825 1 this.scale(this.value) --94 +-95 1 this.scale(this.shift) --94 +-95 1 this.scale(this.getValue()) --94 +-95 1 this.scale(this.getShift()) --94 +-95 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 0 @@ -30214,36 +30120,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-95 +1 +return +-95 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -5488 +5084 this -1399616426 +210652080 1 this.value --94 +-95 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1964886191 +1652149987 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +439928219 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30252,80 +30164,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -675465934 +1131040331 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -957394696 +254749889 1 this.scale(this.value) --94 +-570 1 this.scale(this.shift) --94 +-70 1 this.scale(this.getValue()) --94 +-570 1 this.scale(this.getShift()) --94 +-70 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-95 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -5523 +5084 this -1399616426 +210652080 1 this.value --94 +-95 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1964886191 +1652149987 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +439928219 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30334,77 +30246,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1985172348 +973576304 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1485713044 +992802731 1 this.scale(this.value) --94 +-570 1 this.scale(this.shift) --94 +-70 1 this.scale(this.getValue()) --94 +-570 1 this.scale(this.getShift()) --94 +-70 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-95 +1 +return +-570 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -5523 +5119 this -1399616426 +1473611564 1 this.value --94 +-95 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1964886191 +107456312 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1742920067 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30413,83 +30331,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1586766839 +715521683 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1338334627 +1545242146 1 this.scale(this.value) --94 +-1045 1 this.scale(this.shift) --94 +5 1 this.scale(this.getValue()) --94 +-1045 1 this.scale(this.getShift()) --94 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -646357311 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-95 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -5558 +5119 this -1399616426 +1473611564 1 this.value --94 +-95 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1964886191 +107456312 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1742920067 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30498,56 +30413,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1355039451 +1524126153 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -83976522 +102065302 1 this.scale(this.value) --94 +-1045 1 this.scale(this.shift) --94 +5 1 this.scale(this.getValue()) --94 +-1045 1 this.scale(this.getShift()) --94 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-95 +1 +return +-1045 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -5558 +5154 this -1399616426 +1296674576 1 this.value --94 +-95 1 this.shift 0 @@ -30556,19 +30477,19 @@ this.heavy false 1 this.list1 -1964886191 +664457955 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +1800659519 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30577,7 +30498,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 0 @@ -30586,31 +30507,31 @@ this.isHeavy() false 1 this.getNum() -496649175 +63001505 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2061231983 +191037037 1 this.scale(this.value) --94 +-95 1 this.scale(this.shift) --94 +-95 1 this.scale(this.getValue()) --94 +-95 1 this.scale(this.getShift()) --94 +-95 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 0 @@ -30618,39 +30539,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -2067228524 +n +330084561 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -5593 +5154 this -1545276737 +1296674576 1 this.value --94 +-95 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1946375588 +664457955 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1800659519 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30659,56 +30583,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1919361702 +1043351526 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1360263927 +937773018 1 this.scale(this.value) --564 +-95 1 this.scale(this.shift) --69 +-95 1 this.scale(this.getValue()) --564 +-95 1 this.scale(this.getShift()) --69 +-95 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +330084561 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-190 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -5593 +5189 this -1545276737 +210652080 1 this.value --94 +-95 1 this.shift 5 @@ -30717,19 +30650,19 @@ this.heavy true 1 this.list1 -1946375588 +1652149987 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +439928219 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30738,7 +30671,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 5 @@ -30747,31 +30680,31 @@ this.isHeavy() true 1 this.getNum() -1992398774 +728258269 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -533686947 +1572098393 1 this.scale(this.value) --564 +-570 1 this.scale(this.shift) --69 +-70 1 this.scale(this.getValue()) --564 +-570 1 this.scale(this.getShift()) --69 +-70 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 5 @@ -30779,18 +30712,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --94 +n +1627857534 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -5628 +5189 this -1545276737 +210652080 1 this.value --94 +-95 1 this.shift 5 @@ -30799,19 +30735,19 @@ this.heavy true 1 this.list1 -1946375588 +1652149987 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +439928219 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30820,7 +30756,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 5 @@ -30829,31 +30765,31 @@ this.isHeavy() true 1 this.getNum() -1784808357 +2084663827 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1222474803 +360062456 1 this.scale(this.value) --564 +-570 1 this.scale(this.shift) --69 +-70 1 this.scale(this.getValue()) --564 +-570 1 this.scale(this.getShift()) --69 +-70 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 5 @@ -30861,36 +30797,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1627857534 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-190 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -5628 +5224 this -1545276737 +1473611564 1 this.value --94 +-95 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1946375588 +107456312 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1742920067 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30899,80 +30844,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1157963172 +1790421142 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1390222690 +846947180 1 this.scale(this.value) --564 +-1045 1 this.scale(this.shift) --69 +5 1 this.scale(this.getValue()) --564 +-1045 1 this.scale(this.getShift()) --69 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +1172131546 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -5663 +5224 this -1545276737 +1473611564 1 this.value --94 +-95 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1946375588 +107456312 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1742920067 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -30981,77 +30929,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -850671470 +1616974404 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1436758211 +927327686 1 this.scale(this.value) --564 +-1045 1 this.scale(this.shift) --69 +5 1 this.scale(this.getValue()) --564 +-1045 1 this.scale(this.getShift()) --69 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1172131546 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-190 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -5663 +5259 this -1545276737 +1296674576 1 this.value --94 +-95 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1946375588 +664457955 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1800659519 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31060,80 +31017,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1289125409 +1582071873 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -368234480 +1908981452 1 this.scale(this.value) --564 +-95 1 this.scale(this.shift) --69 +-95 1 this.scale(this.getValue()) --564 +-95 1 this.scale(this.getShift()) --69 +-95 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +433287555 +1 +l[..] +[27319466 1003752023 266272063 226744878 172032696 299644693 1771243284 2052256418 2013559698 143695640 2043318969 341878976 1331923253 1132967838 1853205005 2143431083 750468423 1384010761 295221641 2147046752] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -5698 +5259 this -1545276737 +1296674576 1 this.value --94 +-95 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1946375588 +664457955 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1477657879 1146147158 1147258851 891095110 2011482127 905735620 2145970759 577405636 1931444790 626742236 500772834] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1800659519 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1691538257 459848100 1335505684 992768706 1226204845 393040818 158453976 1368594774 726281927 1447499999 1371006431] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31142,56 +31108,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -2016518353 +182259421 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -37041917 +715378067 1 this.scale(this.value) --564 +-95 1 this.scale(this.shift) --69 +-95 1 this.scale(this.getValue()) --564 +-95 1 this.scale(this.getShift()) --69 +-95 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +433287555 +1 +l[..] +[27319466 1003752023 266272063 226744878 172032696 299644693 1771243284 2052256418 2013559698 143695640 2043318969 341878976 1331923253 1132967838 1853205005 2143431083 750468423 1384010761 295221641 2147046752] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -5698 +5294 this -1545276737 +210652080 1 this.value --94 +-95 1 this.shift 5 @@ -31200,19 +31181,19 @@ this.heavy true 1 this.list1 -1946375588 +1652149987 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +439928219 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31221,7 +31202,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 5 @@ -31230,31 +31211,31 @@ this.isHeavy() true 1 this.getNum() -1940725036 +2124643775 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1784049416 +1262773598 1 this.scale(this.value) --564 +-570 1 this.scale(this.shift) --69 +-70 1 this.scale(this.getValue()) --564 +-570 1 this.scale(this.getShift()) --69 +-70 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 5 @@ -31262,21 +31243,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1351855298 +l +433287555 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[27319466 1003752023 266272063 226744878 172032696 299644693 1771243284 2052256418 2013559698 143695640 2043318969 341878976 1331923253 1132967838 1853205005 2143431083 750468423 1384010761 295221641 2147046752] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -5733 +5294 this -1545276737 +210652080 1 this.value --94 +-95 1 this.shift 5 @@ -31285,19 +31272,19 @@ this.heavy true 1 this.list1 -1946375588 +1652149987 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1107730949 700072760 1461149300 2075495587 206835546 1997287019 436546048 1300393335 1627428162 2011791487 1150284200] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +439928219 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[2138564891 1151755506 2141179775 592959754 1663619914 341748265 364604394 146370526 758013696 1279309678 48914743] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31306,7 +31293,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 5 @@ -31315,31 +31302,31 @@ this.isHeavy() true 1 this.getNum() -255008226 +688726285 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1693378617 +494317290 1 this.scale(this.value) --564 +-570 1 this.scale(this.shift) --69 +-70 1 this.scale(this.getValue()) --564 +-570 1 this.scale(this.getShift()) --69 +-70 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 5 @@ -31347,36 +31334,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +433287555 +1 +l[..] +[27319466 1003752023 266272063 226744878 172032696 299644693 1771243284 2052256418 2013559698 143695640 2043318969 341878976 1331923253 1132967838 1853205005 2143431083 750468423 1384010761 295221641 2147046752] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -5733 +5329 this -1545276737 +1473611564 1 this.value --94 +-95 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1946375588 +107456312 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +1742920067 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31385,59 +31387,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -13642228 +2027775614 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1651659414 +282821294 1 this.scale(this.value) --564 +-1045 1 this.scale(this.shift) --69 +5 1 this.scale(this.getValue()) --564 +-1045 1 this.scale(this.getShift()) --69 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -1066149976 +l +433287555 +1 +l[..] +[27319466 1003752023 266272063 226744878 172032696 299644693 1771243284 2052256418 2013559698 143695640 2043318969 341878976 1331923253 1132967838 1853205005 2143431083 750468423 1384010761 295221641 2147046752] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -5768 +5329 this -662289681 +1473611564 1 this.value --94 +-95 1 this.shift 10 @@ -31446,19 +31457,19 @@ this.heavy true 1 this.list1 -694926166 +107456312 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[921760190 360067785 1860250540 1426329391 1690859824 1074593562 660017404 1381965390 1979313356 1386883398 1306854175] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +1742920067 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1564984895 1587819720 1002191352 1256440269 704024720 1452012306 211968962 1486566962 1173643169 1282287470 1397616978] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31467,7 +31478,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --94 +-95 1 this.getShift() 10 @@ -31476,31 +31487,31 @@ this.isHeavy() true 1 this.getNum() -179096064 +1344199921 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1442958201 +2025269734 1 this.scale(this.value) --1034 +-1045 1 this.scale(this.shift) -6 +5 1 this.scale(this.getValue()) --1034 +-1045 1 this.scale(this.getShift()) -6 +5 1 this.sum(this.getNum()) --188 +-190 1 this.sum(this.getJWrap()) --188 +-190 1 this.retrieve(this.list1) 10 @@ -31508,36 +31519,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +433287555 +1 +l[..] +[27319466 1003752023 266272063 226744878 172032696 299644693 1771243284 2052256418 2013559698 143695640 2043318969 341878976 1331923253 1132967838 1853205005 2143431083 750468423 1384010761 295221641 2147046752] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -5768 +5364 +value +-94 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +5364 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31549,31 +31585,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -265658636 +1989335500 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -306193139 +1978869058 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -31582,44 +31618,57 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -94 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -5803 +5382 +value +-94 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +5382 this -662289681 +2131952342 1 this.value -94 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -694926166 +1139700454 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +591391158 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31631,31 +31680,31 @@ this.getValue() -94 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -817268961 +315932542 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -534021315 +1277009227 1 this.scale(this.value) --1034 +-564 1 this.scale(this.shift) -6 +-69 1 this.scale(this.getValue()) --1034 +-564 1 this.scale(this.getShift()) -6 +-69 1 this.sum(this.getNum()) -188 @@ -31664,17 +31713,33 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-94 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +5400 +value +-94 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -5803 +5400 this -662289681 +2065857933 1 this.value -94 @@ -31686,19 +31751,19 @@ this.heavy true 1 this.list1 -694926166 +1914301543 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +102617125 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31716,13 +31781,13 @@ this.isHeavy() true 1 this.getNum() -962080392 +815674463 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1280770081 +1453774246 1 this.scale(this.value) -1034 @@ -31748,39 +31813,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-94 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -5838 +5418 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31792,31 +31860,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1674157486 +416153648 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1234124208 +71587369 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -31825,41 +31893,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -5838 +5418 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31871,31 +31939,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1528501130 +1169794610 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1319106496 +634540230 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -31904,44 +31972,44 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-94 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -5873 +5453 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -31953,31 +32021,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1749190291 +1307904972 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1737577054 +1797712197 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -31986,41 +32054,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -5873 +5453 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32032,31 +32100,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1974914672 +1671846437 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -883644272 +1422222071 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -32065,47 +32133,44 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1559860499 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -5908 +5488 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32117,31 +32182,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -95044117 +831236296 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1826124698 +1840976765 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -32150,41 +32215,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -5908 +5488 this -662289681 +1800031768 1 this.value -94 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -694926166 +667447085 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +260840925 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32196,31 +32261,31 @@ this.getValue() -94 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1989000009 +1016925085 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1392702061 +1127224355 1 this.scale(this.value) --1034 +-94 1 this.scale(this.shift) -6 +-94 1 this.scale(this.getValue()) --1034 +-94 1 this.scale(this.getShift()) -6 +-94 1 this.sum(this.getNum()) -188 @@ -32229,20 +32294,20 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1719270574 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -5943 +5523 this -1399616426 +1800031768 1 this.value -94 @@ -32254,19 +32319,19 @@ this.heavy false 1 this.list1 -1964886191 +667447085 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +260840925 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32284,13 +32349,13 @@ this.isHeavy() false 1 this.getNum() -1388066833 +789653861 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1124404870 +436532993 1 this.scale(this.value) -94 @@ -32316,15 +32381,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --94 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -5943 +5523 this -1399616426 +1800031768 1 this.value -94 @@ -32336,19 +32398,19 @@ this.heavy false 1 this.list1 -1964886191 +667447085 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +260840925 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32366,13 +32428,13 @@ this.isHeavy() false 1 this.getNum() -16556490 +1318180415 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1239536967 +222511810 1 this.scale(this.value) -94 @@ -32398,42 +32460,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --94 -1 return --94 +733943822 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -5978 +5558 this -1545276737 +1800031768 1 this.value -94 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1946375588 +667447085 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +260840925 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32445,31 +32507,31 @@ this.getValue() -94 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -158944822 +373182087 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2063450133 +1457410641 1 this.scale(this.value) --564 +-94 1 this.scale(this.shift) --69 +-94 1 this.scale(this.getValue()) --564 +-94 1 this.scale(this.getShift()) --69 +-94 1 this.sum(this.getNum()) -188 @@ -32478,44 +32540,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --94 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -5978 +5558 this -1545276737 +1800031768 1 this.value -94 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1946375588 +667447085 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +260840925 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32527,31 +32586,31 @@ this.getValue() -94 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -692969928 +1100767002 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -941762215 +313540687 1 this.scale(this.value) --564 +-94 1 this.scale(this.shift) --69 +-94 1 this.scale(this.getValue()) --564 +-94 1 this.scale(this.getShift()) --69 +-94 1 this.sum(this.getNum()) -188 @@ -32560,47 +32619,44 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --94 +0 1 return --564 +1990098664 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -6013 +5593 this -662289681 +2131952342 1 this.value -94 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -694926166 +1139700454 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +591391158 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32612,31 +32668,31 @@ this.getValue() -94 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1243069115 +1383524016 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1541697789 +1907431275 1 this.scale(this.value) --1034 +-564 1 this.scale(this.shift) -6 +-69 1 this.scale(this.getValue()) --1034 +-564 1 this.scale(this.getShift()) -6 +-69 1 this.sum(this.getNum()) -188 @@ -32645,44 +32701,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --94 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -6013 +5593 this -662289681 +2131952342 1 this.value -94 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -694926166 +1139700454 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +591391158 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32694,31 +32747,31 @@ this.getValue() -94 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1924538668 +1637061418 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -322701962 +1686100174 1 this.scale(this.value) --1034 +-564 1 this.scale(this.shift) -6 +-69 1 this.scale(this.getValue()) --1034 +-564 1 this.scale(this.getShift()) -6 +-69 1 this.sum(this.getNum()) -188 @@ -32727,47 +32780,44 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --94 +5 1 return --1034 +-94 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -6048 +5628 this -1399616426 +2131952342 1 this.value -94 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1964886191 +1139700454 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +591391158 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32779,31 +32829,31 @@ this.getValue() -94 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1255666659 +22671767 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -667738744 +2024453272 1 this.scale(this.value) --94 +-564 1 this.scale(this.shift) --94 +-69 1 this.scale(this.getValue()) --94 +-564 1 this.scale(this.getShift()) --94 +-69 1 this.sum(this.getNum()) -188 @@ -32812,47 +32862,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -2083014833 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -6048 +5628 this -1399616426 +2131952342 1 this.value -94 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1964886191 +1139700454 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +591391158 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32864,31 +32908,31 @@ this.getValue() -94 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -951884837 +98394724 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1722768956 +536765369 1 this.scale(this.value) --94 +-564 1 this.scale(this.shift) --94 +-69 1 this.scale(this.getValue()) --94 +-564 1 this.scale(this.getShift()) --94 +-69 1 this.sum(this.getNum()) -188 @@ -32897,26 +32941,20 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -2083014833 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --188 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -6083 +5663 this -1545276737 +2131952342 1 this.value -94 @@ -32928,19 +32966,19 @@ this.heavy true 1 this.list1 -1946375588 +1139700454 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +591391158 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -32958,13 +32996,13 @@ this.isHeavy() true 1 this.getNum() -55830991 +1374026904 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2048595645 +2085002312 1 this.scale(this.value) -564 @@ -32990,18 +33028,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -141693164 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -6083 +5663 this -1545276737 +2131952342 1 this.value -94 @@ -33013,19 +33045,19 @@ this.heavy true 1 this.list1 -1946375588 +1139700454 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +591391158 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33043,13 +33075,13 @@ this.isHeavy() true 1 this.getNum() -2025126472 +317071334 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -832293601 +2129221032 1 this.scale(this.value) -564 @@ -33075,45 +33107,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -141693164 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --188 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -6118 +5698 this -662289681 +2131952342 1 this.value -94 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -694926166 +1139700454 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +591391158 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33125,31 +33151,31 @@ this.getValue() -94 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1797559096 +1472465 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -775780476 +1224347463 1 this.scale(this.value) --1034 +-564 1 this.scale(this.shift) -6 +-69 1 this.scale(this.getValue()) --1034 +-564 1 this.scale(this.getShift()) -6 +-69 1 this.sum(this.getNum()) -188 @@ -33158,47 +33184,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1169239195 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -6118 +5698 this -662289681 +2131952342 1 this.value -94 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -694926166 +1139700454 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +591391158 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33210,31 +33230,31 @@ this.getValue() -94 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1927780315 +1791045777 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1117971916 +1580297332 1 this.scale(this.value) --1034 +-564 1 this.scale(this.shift) -6 +-69 1 this.scale(this.getValue()) --1034 +-564 1 this.scale(this.getShift()) -6 +-69 1 this.sum(this.getNum()) -188 @@ -33243,50 +33263,47 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -1169239195 +return +1831477404 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --188 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -6153 +5733 this -1399616426 +2131952342 1 this.value -94 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1964886191 +1139700454 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +591391158 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33298,31 +33315,31 @@ this.getValue() -94 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1419564609 +1966250569 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -79065293 +370440646 1 this.scale(this.value) --94 +-564 1 this.scale(this.shift) --94 +-69 1 this.scale(this.getValue()) --94 +-564 1 this.scale(this.getShift()) --94 +-69 1 this.sum(this.getNum()) -188 @@ -33331,53 +33348,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1705485605 -1 -l[..] -[1632326726 411693457 139621165 1560777631 476896112 783983780 1603216115 775925896 1465829488 263806432 1388455216 1209507010 104114568 1801855718 2122146079 1500740377 748082224 1648669230 202251369 1919629229] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -6153 +5733 this -1399616426 +2131952342 1 this.value -94 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1964886191 +1139700454 1 this.list1[..] -[1986172218 1110658958 917247382 1539131108 1736004041 1307088945 1633673452 1571280869 911158124 128703311 600515448] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1837477283 +591391158 1 this.list2[..] -[1665851521 1222207508 960503401 546086108 1871593525 1679397066 1248915741 1021693209 318522251 1874224233 796549835] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33389,31 +33394,31 @@ this.getValue() -94 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1561622922 +1125381564 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1798800067 +2130772866 1 this.scale(this.value) --94 +-564 1 this.scale(this.shift) --94 +-69 1 this.scale(this.getValue()) --94 +-564 1 this.scale(this.getShift()) --94 +-69 1 this.sum(this.getNum()) -188 @@ -33422,56 +33427,44 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1705485605 -1 -l[..] -[1632326726 411693457 139621165 1560777631 476896112 783983780 1603216115 775925896 1465829488 263806432 1388455216 1209507010 104114568 1801855718 2122146079 1500740377 748082224 1648669230 202251369 1919629229] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +511717113 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -6188 +5768 this -1545276737 +2065857933 1 this.value -94 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1946375588 +1914301543 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +102617125 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33483,31 +33476,31 @@ this.getValue() -94 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -157943603 +728739494 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -268347929 +2005733474 1 this.scale(this.value) --564 +-1034 1 this.scale(this.shift) --69 +6 1 this.scale(this.getValue()) --564 +-1034 1 this.scale(this.getShift()) --69 +6 1 this.sum(this.getNum()) -188 @@ -33516,53 +33509,41 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1705485605 -1 -l[..] -[1632326726 411693457 139621165 1560777631 476896112 783983780 1603216115 775925896 1465829488 263806432 1388455216 1209507010 104114568 1801855718 2122146079 1500740377 748082224 1648669230 202251369 1919629229] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -6188 +5768 this -1545276737 +2065857933 1 this.value -94 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1946375588 +1914301543 1 this.list1[..] -[116112765 1592089879 608354733 448354164 2115800672 80183631 1174039548 1002934600 722676897 2010584094 1231682313] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1289761158 +102617125 1 this.list2[..] -[315849688 2053614479 741373969 572177089 148563557 1531704685 1474164206 758974803 36650841 1810361645 1199856819] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33574,31 +33555,31 @@ this.getValue() -94 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -407984003 +6750210 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -71853550 +521081105 1 this.scale(this.value) --564 +-1034 1 this.scale(this.shift) --69 +6 1 this.scale(this.getValue()) --564 +-1034 1 this.scale(this.getShift()) --69 +6 1 this.sum(this.getNum()) -188 @@ -33607,32 +33588,20 @@ this.sum(this.getJWrap()) -188 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1705485605 -1 -l[..] -[1632326726 411693457 139621165 1560777631 476896112 783983780 1603216115 775925896 1465829488 263806432 1388455216 1209507010 104114568 1801855718 2122146079 1500740377 748082224 1648669230 202251369 1919629229] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-94 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -6223 +5803 this -662289681 +2065857933 1 this.value -94 @@ -33644,19 +33613,19 @@ this.heavy true 1 this.list1 -694926166 +1914301543 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +102617125 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33674,13 +33643,13 @@ this.isHeavy() true 1 this.getNum() -756805236 +1237550792 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -79960271 +1448247698 1 this.scale(this.value) -1034 @@ -33706,24 +33675,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1705485605 -1 -l[..] -[1632326726 411693457 139621165 1560777631 476896112 783983780 1603216115 775925896 1465829488 263806432 1388455216 1209507010 104114568 1801855718 2122146079 1500740377 748082224 1648669230 202251369 1919629229] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -6223 +5803 this -662289681 +2065857933 1 this.value -94 @@ -33735,19 +33692,19 @@ this.heavy true 1 this.list1 -694926166 +1914301543 1 this.list1[..] -[1607999576 1714659984 1207291995 1531063109 1428614609 1858560003 1668324806 1988519210 1901847856 1210313844 779671724] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2144934921 +102617125 1 this.list2[..] -[113235058 471108564 149428659 1039088470 622897886 61990877 351100944 1815987499 1264304529 1963015485 609987534] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33765,13 +33722,13 @@ this.isHeavy() true 1 this.getNum() -1714995322 +1846406218 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -400866820 +158199555 1 this.scale(this.value) -1034 @@ -33797,61 +33754,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1705485605 -1 -l[..] -[1632326726 411693457 139621165 1560777631 476896112 783983780 1603216115 775925896 1465829488 263806432 1388455216 1209507010 104114568 1801855718 2122146079 1500740377 748082224 1648669230 202251369 1919629229] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -6258 -value --93 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -6258 +5838 this -712443101 +2065857933 1 this.value --93 +-94 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1809866482 +1914301543 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +102617125 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33860,93 +33795,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -939427899 +1556995360 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -664925749 +517052730 1 this.scale(this.value) --93 +-1034 1 this.scale(this.shift) --93 +6 1 this.scale(this.getValue()) --93 +-1034 1 this.scale(this.getShift()) --93 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --93 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -6276 -value --93 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -6276 +5838 this -2049648102 +2065857933 1 this.value --93 +-94 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -650468787 +1914301543 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +102617125 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -33955,72 +33874,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -227930553 +524241174 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1865461670 +2035070981 1 this.scale(this.value) --558 +-1034 1 this.scale(this.shift) --68 +6 1 this.scale(this.getValue()) --558 +-1034 1 this.scale(this.getShift()) --68 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --93 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -6294 -value --93 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -6294 +5873 this -1700525137 +2065857933 1 this.value --93 +-94 1 this.shift 10 @@ -34029,19 +33935,19 @@ this.heavy true 1 this.list1 -2013603283 +1914301543 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +102617125 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34050,7 +33956,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 10 @@ -34059,31 +33965,31 @@ this.isHeavy() true 1 this.getNum() -873929371 +1264213713 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1490276564 +1506809545 1 this.scale(this.value) --1023 +-1034 1 this.scale(this.shift) -7 +6 1 this.scale(this.getValue()) --1023 +-1034 1 this.scale(this.getShift()) -7 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 10 @@ -34091,42 +33997,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --93 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -6312 +5873 this -712443101 +2065857933 1 this.value --93 +-94 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1809866482 +1914301543 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +102617125 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34135,77 +34035,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -976436187 +1019384604 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2040448182 +550668305 1 this.scale(this.value) --93 +-1034 1 this.scale(this.shift) --93 +6 1 this.scale(this.getValue()) --93 +-1034 1 this.scale(this.getShift()) --93 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +963110412 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -6312 +5908 this -712443101 +2065857933 1 this.value --93 +-94 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1809866482 +1914301543 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +102617125 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34214,80 +34120,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -646235931 +1624820151 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1462489438 +1219161283 1 this.scale(this.value) --93 +-1034 1 this.scale(this.shift) --93 +6 1 this.scale(this.getValue()) --93 +-1034 1 this.scale(this.getShift()) --93 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --93 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -6347 +5908 this -712443101 +2065857933 1 this.value --93 +-94 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1809866482 +1914301543 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +102617125 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34296,56 +34199,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2109644551 +2081191879 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1840956687 +2061347276 1 this.scale(this.value) --93 +-1034 1 this.scale(this.shift) --93 +6 1 this.scale(this.getValue()) --93 +-1034 1 this.scale(this.getShift()) --93 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1559122513 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -6347 +5943 this -712443101 +1800031768 1 this.value --93 +-94 1 this.shift 0 @@ -34354,19 +34260,19 @@ this.heavy false 1 this.list1 -1809866482 +667447085 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +260840925 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34375,7 +34281,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 0 @@ -34384,31 +34290,31 @@ this.isHeavy() false 1 this.getNum() -14652433 +1128096251 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1450305673 +1552978964 1 this.scale(this.value) --93 +-94 1 this.scale(this.shift) --93 +-94 1 this.scale(this.getValue()) --93 +-94 1 this.scale(this.getShift()) --93 +-94 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 0 @@ -34416,18 +34322,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-94 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -6382 +5943 this -712443101 +1800031768 1 this.value --93 +-94 1 this.shift 0 @@ -34436,19 +34342,19 @@ this.heavy false 1 this.list1 -1809866482 +667447085 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +260840925 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34457,7 +34363,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 0 @@ -34466,31 +34372,31 @@ this.isHeavy() false 1 this.getNum() -1348052661 +1259652483 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -768597577 +1699113578 1 this.scale(this.value) --93 +-94 1 this.scale(this.shift) --93 +-94 1 this.scale(this.getValue()) --93 +-94 1 this.scale(this.getShift()) --93 +-94 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 0 @@ -34498,36 +34404,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-94 +1 +return +-94 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -6382 +5978 this -712443101 +2131952342 1 this.value --93 +-94 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1809866482 +1139700454 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +591391158 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34536,80 +34448,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -705339934 +1306324352 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -538539298 +355790875 1 this.scale(this.value) --93 +-564 1 this.scale(this.shift) --93 +-69 1 this.scale(this.getValue()) --93 +-564 1 this.scale(this.getShift()) --93 +-69 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-94 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -6417 +5978 this -712443101 +2131952342 1 this.value --93 +-94 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1809866482 +1139700454 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +591391158 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34618,77 +34530,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1733893028 +2028017635 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -187031806 +782378927 1 this.scale(this.value) --93 +-564 1 this.scale(this.shift) --93 +-69 1 this.scale(this.getValue()) --93 +-564 1 this.scale(this.getShift()) --93 +-69 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-94 +1 +return +-564 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -6417 +6013 this -712443101 +2065857933 1 this.value --93 +-94 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1809866482 +1914301543 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +102617125 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34697,83 +34615,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1674987881 +70807318 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -158187444 +910091170 1 this.scale(this.value) --93 +-1034 1 this.scale(this.shift) --93 +6 1 this.scale(this.getValue()) --93 +-1034 1 this.scale(this.getShift()) --93 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -71616322 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-94 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -6452 +6013 this -712443101 +2065857933 1 this.value --93 +-94 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1809866482 +1914301543 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +102617125 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34782,56 +34697,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1064681534 +1183888521 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1268795134 +2041605291 1 this.scale(this.value) --93 +-1034 1 this.scale(this.shift) --93 +6 1 this.scale(this.getValue()) --93 +-1034 1 this.scale(this.getShift()) --93 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-94 +1 +return +-1034 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -6452 +6048 this -712443101 +1800031768 1 this.value --93 +-94 1 this.shift 0 @@ -34840,19 +34761,19 @@ this.heavy false 1 this.list1 -1809866482 +667447085 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +260840925 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34861,7 +34782,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 0 @@ -34870,31 +34791,31 @@ this.isHeavy() false 1 this.getNum() -127202428 +1052245076 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1144978631 +2136288211 1 this.scale(this.value) --93 +-94 1 this.scale(this.shift) --93 +-94 1 this.scale(this.getValue()) --93 +-94 1 this.scale(this.getShift()) --93 +-94 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 0 @@ -34902,39 +34823,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -54890450 +n +1008925772 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -6487 +6048 this -2049648102 +1800031768 1 this.value --93 +-94 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -650468787 +667447085 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +260840925 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -34943,56 +34867,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1273308587 +1175259735 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -822879354 +1205406622 1 this.scale(this.value) --558 +-94 1 this.scale(this.shift) --68 +-94 1 this.scale(this.getValue()) --558 +-94 1 this.scale(this.getShift()) --68 +-94 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1008925772 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-188 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -6487 +6083 this -2049648102 +2131952342 1 this.value --93 +-94 1 this.shift 5 @@ -35001,19 +34934,19 @@ this.heavy true 1 this.list1 -650468787 +1139700454 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +591391158 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35022,7 +34955,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 5 @@ -35031,31 +34964,31 @@ this.isHeavy() true 1 this.getNum() -338615998 +293907205 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -287413836 +988800485 1 this.scale(this.value) --558 +-564 1 this.scale(this.shift) --68 +-69 1 this.scale(this.getValue()) --558 +-564 1 this.scale(this.getShift()) --68 +-69 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 5 @@ -35063,18 +34996,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --93 +n +345902941 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -6522 +6083 this -2049648102 +2131952342 1 this.value --93 +-94 1 this.shift 5 @@ -35083,19 +35019,19 @@ this.heavy true 1 this.list1 -650468787 +1139700454 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +591391158 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35104,7 +35040,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 5 @@ -35113,31 +35049,31 @@ this.isHeavy() true 1 this.getNum() -873619549 +454325163 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -578065504 +796667727 1 this.scale(this.value) --558 +-564 1 this.scale(this.shift) --68 +-69 1 this.scale(this.getValue()) --558 +-564 1 this.scale(this.getShift()) --68 +-69 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 5 @@ -35145,36 +35081,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +345902941 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-188 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -6522 +6118 this -2049648102 +2065857933 1 this.value --93 +-94 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -650468787 +1914301543 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +102617125 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35183,80 +35128,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -330906700 +1794717576 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1713744817 +251210093 1 this.scale(this.value) --558 +-1034 1 this.scale(this.shift) --68 +6 1 this.scale(this.getValue()) --558 +-1034 1 this.scale(this.getShift()) --68 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +919112242 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -6557 +6118 this -2049648102 +2065857933 1 this.value --93 +-94 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -650468787 +1914301543 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +102617125 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35265,77 +35213,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -858465755 +2021707251 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1438803739 +1541857308 1 this.scale(this.value) --558 +-1034 1 this.scale(this.shift) --68 +6 1 this.scale(this.getValue()) --558 +-1034 1 this.scale(this.getShift()) --68 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +919112242 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-188 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -6557 +6153 this -2049648102 +1800031768 1 this.value --93 +-94 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -650468787 +667447085 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +260840925 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35344,80 +35301,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1308576153 +479397964 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -859374544 +1861781750 1 this.scale(this.value) --558 +-94 1 this.scale(this.shift) --68 +-94 1 this.scale(this.getValue()) --558 +-94 1 this.scale(this.getShift()) --68 +-94 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +283717519 +1 +l[..] +[2095303566 2025221430 1378084334 200224114 1773283386 581318631 1877453512 487694075 1704629915 1989184704 611572016 889486595 77269878 1990160809 1285524499 1524960486 117009527 199640888 1000975683 1238959340] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -6592 +6153 this -2049648102 +1800031768 1 this.value --93 +-94 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -650468787 +667447085 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[26728049 1076770748 2041416495 502800944 576936864 331418503 111156771 1519736165 1653844940 2039810346 2143437117] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +260840925 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[1891502635 557023567 1276504061 597190999 603443293 510854293 2100961961 487075464 6320204 112302969 707976812] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35426,56 +35392,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1680434933 +76432244 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1512477234 +1030228826 1 this.scale(this.value) --558 +-94 1 this.scale(this.shift) --68 +-94 1 this.scale(this.getValue()) --558 +-94 1 this.scale(this.getShift()) --68 +-94 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +283717519 +1 +l[..] +[2095303566 2025221430 1378084334 200224114 1773283386 581318631 1877453512 487694075 1704629915 1989184704 611572016 889486595 77269878 1990160809 1285524499 1524960486 117009527 199640888 1000975683 1238959340] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -6592 +6188 this -2049648102 +2131952342 1 this.value --93 +-94 1 this.shift 5 @@ -35484,19 +35465,19 @@ this.heavy true 1 this.list1 -650468787 +1139700454 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +591391158 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35505,7 +35486,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 5 @@ -35514,31 +35495,31 @@ this.isHeavy() true 1 this.getNum() -440942299 +1264413185 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2098637143 +1243806178 1 this.scale(this.value) --558 +-564 1 this.scale(this.shift) --68 +-69 1 this.scale(this.getValue()) --558 +-564 1 this.scale(this.getShift()) --68 +-69 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 5 @@ -35546,21 +35527,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1523044073 +l +283717519 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[2095303566 2025221430 1378084334 200224114 1773283386 581318631 1877453512 487694075 1704629915 1989184704 611572016 889486595 77269878 1990160809 1285524499 1524960486 117009527 199640888 1000975683 1238959340] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -6627 +6188 this -2049648102 +2131952342 1 this.value --93 +-94 1 this.shift 5 @@ -35569,19 +35556,19 @@ this.heavy true 1 this.list1 -650468787 +1139700454 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[592617454 1340565491 671467883 407697359 802600647 1543148593 1571967156 574568002 952486988 932285561 2028555727] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +591391158 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[898557489 247944893 1014166943 1625082366 572593338 384294141 1024597427 990355670 296347592 956420404 349420578] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35590,7 +35577,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 5 @@ -35599,31 +35586,31 @@ this.isHeavy() true 1 this.getNum() -1944146318 +1010931249 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1303477521 +1099855928 1 this.scale(this.value) --558 +-564 1 this.scale(this.shift) --68 +-69 1 this.scale(this.getValue()) --558 +-564 1 this.scale(this.getShift()) --68 +-69 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 5 @@ -35631,97 +35618,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -6627 -this -2049648102 -1 -this.value --93 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -650468787 -1 -this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1045788216 +l +283717519 1 -this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +l[..] +[2095303566 2025221430 1378084334 200224114 1773283386 581318631 1877453512 487694075 1704629915 1989184704 611572016 889486595 77269878 1990160809 1285524499 1524960486 117009527 199640888 1000975683 1238959340] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --93 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1066012400 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -14339879 -1 -this.scale(this.value) --558 -1 -this.scale(this.shift) --68 -1 -this.scale(this.getValue()) --558 -1 -this.scale(this.getShift()) --68 -1 -this.sum(this.getNum()) --186 -1 -this.sum(this.getJWrap()) --186 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -492177889 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -6662 +6223 this -1700525137 +2065857933 1 this.value --93 +-94 1 this.shift 10 @@ -35730,19 +35650,19 @@ this.heavy true 1 this.list1 -2013603283 +1914301543 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +102617125 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35751,7 +35671,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 10 @@ -35760,31 +35680,31 @@ this.isHeavy() true 1 this.getNum() -2074255826 +1629687658 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1915625831 +1007880005 1 this.scale(this.value) --1023 +-1034 1 this.scale(this.shift) -7 +6 1 this.scale(this.getValue()) --1023 +-1034 1 this.scale(this.getShift()) -7 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 10 @@ -35792,15 +35712,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +283717519 +1 +l[..] +[2095303566 2025221430 1378084334 200224114 1773283386 581318631 1877453512 487694075 1704629915 1989184704 611572016 889486595 77269878 1990160809 1285524499 1524960486 117009527 199640888 1000975683 1238959340] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -6662 +6223 this -1700525137 +2065857933 1 this.value --93 +-94 1 this.shift 10 @@ -35809,19 +35741,19 @@ this.heavy true 1 this.list1 -2013603283 +1914301543 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1157726741 1708570683 225472281 817348612 2045766957 690521419 665726928 689401025 790067787 1115201599 343856911] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +102617125 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[306980751 363988129 1997963191 534906248 1826699684 1769193365 769429195 580718781 1196695891 867148091 2051853139] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35830,7 +35762,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --93 +-94 1 this.getShift() 10 @@ -35839,31 +35771,31 @@ this.isHeavy() true 1 this.getNum() -848505793 +215219944 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1545446871 +1043208434 1 this.scale(this.value) --1023 +-1034 1 this.scale(this.shift) -7 +6 1 this.scale(this.getValue()) --1023 +-1034 1 this.scale(this.getShift()) -7 +6 1 this.sum(this.getNum()) --186 +-188 1 this.sum(this.getJWrap()) --186 +-188 1 this.retrieve(this.list1) 10 @@ -35871,39 +35803,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +283717519 +1 +l[..] +[2095303566 2025221430 1378084334 200224114 1773283386 581318631 1877453512 487694075 1704629915 1989184704 611572016 889486595 77269878 1990160809 1285524499 1524960486 117009527 199640888 1000975683 1238959340] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +6258 +value -93 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -6697 +6258 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35915,31 +35869,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -510850432 +153245266 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -223589918 +1699679644 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -35948,41 +35902,57 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-93 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -6697 +6276 +value +-93 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +6276 this -1700525137 +1782580546 1 this.value -93 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2013603283 +1702940637 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +1546693040 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -35994,31 +35964,31 @@ this.getValue() -93 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1926853223 +388357135 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -568722201 +957465255 1 this.scale(this.value) --1023 +-558 1 this.scale(this.shift) -7 +-68 1 this.scale(this.getValue()) --1023 +-558 1 this.scale(this.getShift()) -7 +-68 1 this.sum(this.getNum()) -186 @@ -36027,20 +35997,33 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-93 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +6294 +value +-93 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -6732 +6294 this -1700525137 +1254344205 1 this.value -93 @@ -36052,19 +36035,19 @@ this.heavy true 1 this.list1 -2013603283 +1336735375 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +482082765 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36082,13 +36065,13 @@ this.isHeavy() true 1 this.getNum() -64319410 +318857719 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -832049429 +745962066 1 this.scale(this.value) -1023 @@ -36114,36 +36097,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-93 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -6732 +6312 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36155,31 +36144,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1988727586 +1637290981 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1109055994 +1888442711 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -36188,44 +36177,41 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -6767 +6312 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36237,31 +36223,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1893518845 +1754894440 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -811063022 +1998767043 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -36270,41 +36256,44 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-93 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -6767 +6347 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36316,31 +36305,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1457503245 +787738361 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2058561033 +607932305 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -36349,47 +36338,41 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -126244814 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -6802 +6347 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36401,31 +36384,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -82745662 +168366 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1284421625 +1642030774 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -36434,41 +36417,44 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -6802 +6382 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36480,31 +36466,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -768631731 +1357563986 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1279366212 +384587033 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -36513,20 +36499,17 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -1701651320 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -6837 +6382 this -712443101 +1192171522 1 this.value -93 @@ -36538,19 +36521,19 @@ this.heavy false 1 this.list1 -1809866482 +1661081225 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +884452399 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36568,13 +36551,13 @@ this.isHeavy() false 1 this.getNum() -1614008141 +49752459 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1768880530 +411506101 1 this.scale(this.value) -93 @@ -36600,15 +36583,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --93 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -6837 +6417 this -712443101 +1192171522 1 this.value -93 @@ -36620,19 +36603,19 @@ this.heavy false 1 this.list1 -1809866482 +1661081225 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +884452399 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36650,13 +36633,13 @@ this.isHeavy() false 1 this.getNum() -1958942289 +514455215 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -871259066 +1780034814 1 this.scale(this.value) -93 @@ -36682,42 +36665,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --93 -1 -return --93 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -6872 +6417 this -2049648102 +1192171522 1 this.value -93 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -650468787 +1661081225 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +884452399 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36729,31 +36706,31 @@ this.getValue() -93 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1707617016 +1360657223 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -947729404 +1905485420 1 this.scale(this.value) --558 +-93 1 this.scale(this.shift) --68 +-93 1 this.scale(this.getValue()) --558 +-93 1 this.scale(this.getShift()) --68 +-93 1 this.sum(this.getNum()) -186 @@ -36762,44 +36739,47 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --93 +return +551479935 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -6872 +6452 this -2049648102 +1192171522 1 this.value -93 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -650468787 +1661081225 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +884452399 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36811,31 +36791,31 @@ this.getValue() -93 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -601883229 +58940486 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1203452433 +501107890 1 this.scale(this.value) --558 +-93 1 this.scale(this.shift) --68 +-93 1 this.scale(this.getValue()) --558 +-93 1 this.scale(this.getShift()) --68 +-93 1 this.sum(this.getNum()) -186 @@ -36844,47 +36824,41 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --93 -1 -return --558 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -6907 +6452 this -1700525137 +1192171522 1 this.value -93 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2013603283 +1661081225 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +884452399 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36896,31 +36870,31 @@ this.getValue() -93 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1424053985 +1997859171 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -370080080 +550402284 1 this.scale(this.value) --1023 +-93 1 this.scale(this.shift) -7 +-93 1 this.scale(this.getValue()) --1023 +-93 1 this.scale(this.getShift()) -7 +-93 1 this.sum(this.getNum()) -186 @@ -36929,44 +36903,44 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --93 +return +959869407 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -6907 +6487 this -1700525137 +1782580546 1 this.value -93 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2013603283 +1702940637 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +1546693040 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -36978,31 +36952,31 @@ this.getValue() -93 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -823262848 +1449263511 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -341548715 +116237769 1 this.scale(this.value) --1023 +-558 1 this.scale(this.shift) -7 +-68 1 this.scale(this.getValue()) --1023 +-558 1 this.scale(this.getShift()) -7 +-68 1 this.sum(this.getNum()) -186 @@ -37011,47 +36985,41 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --93 -1 -return --1023 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -6942 +6487 this -712443101 +1782580546 1 this.value -93 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1809866482 +1702940637 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +1546693040 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37063,31 +37031,31 @@ this.getValue() -93 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -185464574 +1438098656 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1104323421 +1594199808 1 this.scale(this.value) --93 +-558 1 this.scale(this.shift) --93 +-68 1 this.scale(this.getValue()) --93 +-558 1 this.scale(this.getShift()) --93 +-68 1 this.sum(this.getNum()) -186 @@ -37096,47 +37064,44 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1810059373 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-93 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -6942 +6522 this -712443101 +1782580546 1 this.value -93 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1809866482 +1702940637 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +1546693040 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37148,31 +37113,31 @@ this.getValue() -93 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -414538609 +422396878 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -713450595 +1912962767 1 this.scale(this.value) --93 +-558 1 this.scale(this.shift) --93 +-68 1 this.scale(this.getValue()) --93 +-558 1 this.scale(this.getShift()) --93 +-68 1 this.sum(this.getNum()) -186 @@ -37181,26 +37146,17 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1810059373 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --186 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -6977 +6522 this -2049648102 +1782580546 1 this.value -93 @@ -37212,19 +37168,19 @@ this.heavy true 1 this.list1 -650468787 +1702940637 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +1546693040 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37242,13 +37198,13 @@ this.isHeavy() true 1 this.getNum() -1562948964 +452805835 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -463267844 +1769190683 1 this.scale(this.value) -558 @@ -37274,18 +37230,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1514433733 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -6977 +6557 this -2049648102 +1782580546 1 this.value -93 @@ -37297,19 +37250,19 @@ this.heavy true 1 this.list1 -650468787 +1702940637 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +1546693040 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37327,13 +37280,13 @@ this.isHeavy() true 1 this.getNum() -1111566287 +447981768 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1134340356 +1125736023 1 this.scale(this.value) -558 @@ -37359,45 +37312,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1514433733 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --186 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -7012 +6557 this -1700525137 +1782580546 1 this.value -93 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2013603283 +1702940637 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +1546693040 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37409,31 +37353,31 @@ this.getValue() -93 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1646028873 +858952163 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -922927857 +1201484275 1 this.scale(this.value) --1023 +-558 1 this.scale(this.shift) -7 +-68 1 this.scale(this.getValue()) --1023 +-558 1 this.scale(this.getShift()) -7 +-68 1 this.sum(this.getNum()) -186 @@ -37442,47 +37386,44 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -374110318 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -7012 +6592 this -1700525137 +1782580546 1 this.value -93 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2013603283 +1702940637 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +1546693040 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37494,31 +37435,31 @@ this.getValue() -93 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1987479857 +1089418272 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1613311161 +1233990028 1 this.scale(this.value) --1023 +-558 1 this.scale(this.shift) -7 +-68 1 this.scale(this.getValue()) --1023 +-558 1 this.scale(this.getShift()) -7 +-68 1 this.sum(this.getNum()) -186 @@ -37527,50 +37468,41 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -374110318 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --186 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -7047 +6592 this -712443101 +1782580546 1 this.value -93 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1809866482 +1702940637 1 this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -16819076 +1546693040 1 this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37582,31 +37514,31 @@ this.getValue() -93 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -792155905 +1847008471 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1513167582 +1076607567 1 this.scale(this.value) --93 +-558 1 this.scale(this.shift) --93 +-68 1 this.scale(this.getValue()) --93 +-558 1 this.scale(this.getShift()) --93 +-68 1 this.sum(this.getNum()) -186 @@ -37615,123 +37547,23 @@ this.sum(this.getJWrap()) -186 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1306202900 -1 -l[..] -[1774300666 713371220 228893339 867136796 1144101830 350881572 276485942 1892098733 565560755 616987663 1660604325 1079413863 1914429232 64619223 1576039226 1427969284 1750000963 330155829 1978757802 1050620772] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -7047 -this -712443101 -1 -this.value --93 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -1809866482 -1 -this.list1[..] -[1467586866 1882771067 561784524 1574382656 1503284705 560929980 96963530 1873444284 572848874 701835817 1774386995] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -16819076 -1 -this.list2[..] -[1357852575 119511356 730150347 915323071 1409490836 420370595 2094875182 572791309 1881824509 1832853394 1261560390] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --93 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -1172769370 +return +2036127838 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -1129889424 -1 -this.scale(this.value) --93 -1 -this.scale(this.shift) --93 -1 -this.scale(this.getValue()) --93 -1 -this.scale(this.getShift()) --93 -1 -this.sum(this.getNum()) --186 -1 -this.sum(this.getJWrap()) --186 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -1306202900 -1 -l[..] -[1774300666 713371220 228893339 867136796 1144101830 350881572 276485942 1892098733 565560755 616987663 1660604325 1079413863 1914429232 64619223 1576039226 1427969284 1750000963 330155829 1978757802 1050620772] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -7082 +6627 this -2049648102 +1782580546 1 this.value -93 @@ -37743,19 +37575,19 @@ this.heavy true 1 this.list1 -650468787 +1702940637 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +1546693040 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37773,13 +37605,13 @@ this.isHeavy() true 1 this.getNum() -2001142394 +1509791656 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1458820291 +257608164 1 this.scale(this.value) -558 @@ -37805,24 +37637,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1306202900 -1 -l[..] -[1774300666 713371220 228893339 867136796 1144101830 350881572 276485942 1892098733 565560755 616987663 1660604325 1079413863 1914429232 64619223 1576039226 1427969284 1750000963 330155829 1978757802 1050620772] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -7082 +6627 this -2049648102 +1782580546 1 this.value -93 @@ -37834,19 +37654,19 @@ this.heavy true 1 this.list1 -650468787 +1702940637 1 this.list1[..] -[1737139879 1069765388 813783432 2082277528 1444901584 715842012 953305190 1972321710 253404878 515712545 336744523] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1045788216 +1546693040 1 this.list2[..] -[1556379264 1715469588 1929404541 499050887 1624616274 1818629160 565544369 341588161 848433496 330351192 967256449] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37864,13 +37684,13 @@ this.isHeavy() true 1 this.getNum() -571833038 +306115458 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -808549341 +230643635 1 this.scale(this.value) -558 @@ -37896,27 +37716,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1306202900 -1 -l[..] -[1774300666 713371220 228893339 867136796 1144101830 350881572 276485942 1892098733 565560755 616987663 1660604325 1079413863 1914429232 64619223 1576039226 1427969284 1750000963 330155829 1978757802 1050620772] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +944427387 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -7117 +6662 this -1700525137 +1254344205 1 this.value -93 @@ -37928,19 +37736,19 @@ this.heavy true 1 this.list1 -2013603283 +1336735375 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +482082765 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -37958,13 +37766,13 @@ this.isHeavy() true 1 this.getNum() -12255971 +1636182655 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1975158132 +71399214 1 this.scale(this.value) -1023 @@ -37990,24 +37798,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1306202900 -1 -l[..] -[1774300666 713371220 228893339 867136796 1144101830 350881572 276485942 1892098733 565560755 616987663 1660604325 1079413863 1914429232 64619223 1576039226 1427969284 1750000963 330155829 1978757802 1050620772] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -7117 +6662 this -1700525137 +1254344205 1 this.value -93 @@ -38019,19 +37815,19 @@ this.heavy true 1 this.list1 -2013603283 +1336735375 1 this.list1[..] -[435584308 93711933 910944680 836317297 704341064 930400384 1410820081 1286154840 1981488825 1853767746 581756346] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -85862431 +482082765 1 this.list2[..] -[2128350680 554770681 1804323940 655880293 346524400 59940136 244035309 1955156240 1663642933 609690991 1432005900] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38049,13 +37845,13 @@ this.isHeavy() true 1 this.getNum() -680509198 +1932831450 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1967670511 +496729294 1 this.scale(this.value) -1023 @@ -38081,61 +37877,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1306202900 -1 -l[..] -[1774300666 713371220 228893339 867136796 1144101830 350881572 276485942 1892098733 565560755 616987663 1660604325 1079413863 1914429232 64619223 1576039226 1427969284 1750000963 330155829 1978757802 1050620772] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -7152 -value --92 -1 -shift -0 +-93 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -7152 +6697 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38144,93 +37918,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -115071364 +1302227152 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1269132448 +1122606666 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --92 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -7170 -value --92 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -7170 +6697 this -1501471532 +1254344205 1 this.value --92 +-93 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -151702427 +1336735375 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +482082765 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38239,72 +37997,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -901048361 +350068407 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2012608330 +1390869998 1 this.scale(this.value) --552 +-1023 1 this.scale(this.shift) --67 +7 1 this.scale(this.getValue()) --552 +-1023 1 this.scale(this.getShift()) --67 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --92 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -7188 -value --92 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -7188 +6732 this -893278413 +1254344205 1 this.value --92 +-93 1 this.shift 10 @@ -38313,19 +38058,19 @@ this.heavy true 1 this.list1 -272111114 +1336735375 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +482082765 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38334,7 +38079,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 10 @@ -38343,31 +38088,31 @@ this.isHeavy() true 1 this.getNum() -186064081 +1820383114 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -442819335 +1645547422 1 this.scale(this.value) --1012 +-1023 1 this.scale(this.shift) -8 +7 1 this.scale(this.getValue()) --1012 +-1023 1 this.scale(this.getShift()) -8 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 10 @@ -38375,42 +38120,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --92 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -7206 +6732 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38419,77 +38158,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1433726490 +440737101 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1874598090 +2141817446 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -7206 +6767 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38498,80 +38240,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -637513493 +369049246 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -893361968 +1608297024 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --92 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -7241 +6767 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38580,77 +38319,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1676419999 +1841396611 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -605474553 +1577592551 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +854587510 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -7241 +6802 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38659,80 +38404,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1433292785 +148626113 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1027769096 +1847637306 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -7276 +6802 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38741,56 +38483,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1504223651 +1904253191 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1309409873 +1021436681 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1790585734 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -7276 +6837 this -1537598224 +1192171522 1 this.value --92 +-93 1 this.shift 0 @@ -38799,19 +38544,19 @@ this.heavy false 1 this.list1 -1742626417 +1661081225 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +884452399 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38820,7 +38565,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 0 @@ -38829,31 +38574,31 @@ this.isHeavy() false 1 this.getNum() -1986804702 +22600334 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1003399311 +1961173763 1 this.scale(this.value) --92 +-93 1 this.scale(this.shift) --92 +-93 1 this.scale(this.getValue()) --92 +-93 1 this.scale(this.getShift()) --92 +-93 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 0 @@ -38861,18 +38606,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-93 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -7311 +6837 this -1537598224 +1192171522 1 this.value --92 +-93 1 this.shift 0 @@ -38881,19 +38626,19 @@ this.heavy false 1 this.list1 -1742626417 +1661081225 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +884452399 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38902,7 +38647,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 0 @@ -38911,31 +38656,31 @@ this.isHeavy() false 1 this.getNum() -2090623733 +1202683709 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2133131964 +2087885397 1 this.scale(this.value) --92 +-93 1 this.scale(this.shift) --92 +-93 1 this.scale(this.getValue()) --92 +-93 1 this.scale(this.getShift()) --92 +-93 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 0 @@ -38943,36 +38688,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-93 +1 +return +-93 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -7311 +6872 this -1537598224 +1782580546 1 this.value --92 +-93 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1742626417 +1702940637 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1546693040 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -38981,83 +38732,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1456915930 +1002021887 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -777492416 +1712943792 1 this.scale(this.value) --92 +-558 1 this.scale(this.shift) --92 +-68 1 this.scale(this.getValue()) --92 +-558 1 this.scale(this.getShift()) --92 +-68 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -2024527364 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-93 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -7346 +6872 this -1537598224 +1782580546 1 this.value --92 +-93 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1742626417 +1702940637 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1546693040 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39066,77 +38814,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1500503680 +1525919705 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1064883039 +842741472 1 this.scale(this.value) --92 +-558 1 this.scale(this.shift) --92 +-68 1 this.scale(this.getValue()) --92 +-558 1 this.scale(this.getShift()) --92 +-68 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-93 +1 +return +-558 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -7346 +6907 this -1537598224 +1254344205 1 this.value --92 +-93 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1742626417 +1336735375 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +482082765 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39145,80 +38899,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -360522375 +1156304131 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1248188438 +1766505436 1 this.scale(this.value) --92 +-1023 1 this.scale(this.shift) --92 +7 1 this.scale(this.getValue()) --92 +-1023 1 this.scale(this.getShift()) --92 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -1682813570 +scale +-93 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -7381 +6907 this -1501471532 +1254344205 1 this.value --92 +-93 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -151702427 +1336735375 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +482082765 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39227,77 +38981,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -688040000 +771775563 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1836324552 +1164440413 1 this.scale(this.value) --552 +-1023 1 this.scale(this.shift) --67 +7 1 this.scale(this.getValue()) --552 +-1023 1 this.scale(this.getShift()) --67 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-93 +1 +return +-1023 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -7381 +6942 this -1501471532 +1192171522 1 this.value --92 +-93 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -151702427 +1661081225 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +884452399 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39306,80 +39066,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1619254427 +1610525991 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1896379805 +1666607455 1 this.scale(this.value) --552 +-93 1 this.scale(this.shift) --67 +-93 1 this.scale(this.getValue()) --552 +-93 1 this.scale(this.getShift()) --67 +-93 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --92 +n +1327006586 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -7416 +6942 this -1501471532 +1192171522 1 this.value --92 +-93 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -151702427 +1661081225 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +884452399 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39388,56 +39151,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1650577508 +899644639 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -62425010 +530737374 1 this.scale(this.value) --552 +-93 1 this.scale(this.shift) --67 +-93 1 this.scale(this.getValue()) --552 +-93 1 this.scale(this.getShift()) --67 +-93 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1327006586 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-186 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -7416 +6977 this -1501471532 +1782580546 1 this.value --92 +-93 1 this.shift 5 @@ -39446,19 +39218,19 @@ this.heavy true 1 this.list1 -151702427 +1702940637 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1546693040 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39467,7 +39239,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 5 @@ -39476,31 +39248,31 @@ this.isHeavy() true 1 this.getNum() -1205123334 +1332668132 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1589599681 +1147580192 1 this.scale(this.value) --552 +-558 1 this.scale(this.shift) --67 +-68 1 this.scale(this.getValue()) --552 +-558 1 this.scale(this.getShift()) --67 +-68 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 5 @@ -39508,18 +39280,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +173099767 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -7451 +6977 this -1501471532 +1782580546 1 this.value --92 +-93 1 this.shift 5 @@ -39528,19 +39303,19 @@ this.heavy true 1 this.list1 -151702427 +1702940637 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1546693040 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39549,7 +39324,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 5 @@ -39558,31 +39333,31 @@ this.isHeavy() true 1 this.getNum() -1705269887 +112797691 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -154237947 +1045997582 1 this.scale(this.value) --552 +-558 1 this.scale(this.shift) --67 +-68 1 this.scale(this.getValue()) --552 +-558 1 this.scale(this.getShift()) --67 +-68 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 5 @@ -39590,36 +39365,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +173099767 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-186 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -7451 +7012 this -1501471532 +1254344205 1 this.value --92 +-93 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -151702427 +1336735375 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +482082765 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39628,80 +39412,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -264413300 +1337335626 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -850667457 +1336996537 1 this.scale(this.value) --552 +-1023 1 this.scale(this.shift) --67 +7 1 this.scale(this.getValue()) --552 +-1023 1 this.scale(this.getShift()) --67 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +7967307 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -7486 +7012 this -1501471532 +1254344205 1 this.value --92 +-93 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -151702427 +1336735375 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +482082765 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39710,77 +39497,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1369311720 +2073707154 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1587316788 +78204644 1 this.scale(this.value) --552 +-1023 1 this.scale(this.shift) --67 +7 1 this.scale(this.getValue()) --552 +-1023 1 this.scale(this.getShift()) --67 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +7967307 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-186 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -7486 +7047 this -1501471532 +1192171522 1 this.value --92 +-93 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -151702427 +1661081225 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +884452399 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39789,83 +39585,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1991392882 +1287934450 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -807529279 +6519275 1 this.scale(this.value) --552 +-93 1 this.scale(this.shift) --67 +-93 1 this.scale(this.getValue()) --552 +-93 1 this.scale(this.getShift()) --67 +-93 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -47943113 +l +692331943 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1741979653 166794956 306612792 447212746 1496355635 1484171695 2127036371 1529060733 106374177 1803669141 712609105 1836463382 1388278453 934275857 1364913072 232307208 609962972 1818544933 1793436274 572868060] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -7521 +7047 this -1501471532 +1192171522 1 this.value --92 +-93 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -151702427 +1661081225 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1882554559 1049817027 23211803 1923598304 776700275 118394766 386163331 1540374340 694316372 1516500233 1850180796] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +884452399 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[235237152 1259014228 431687661 283383329 893192050 644345897 1738674023 1472682156 178049969 333683827 1691185247] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39874,56 +39676,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -473532566 +1549725679 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -87440980 +371800738 1 this.scale(this.value) --552 +-93 1 this.scale(this.shift) --67 +-93 1 this.scale(this.getValue()) --552 +-93 1 this.scale(this.getShift()) --67 +-93 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +692331943 +1 +l[..] +[1741979653 166794956 306612792 447212746 1496355635 1484171695 2127036371 1529060733 106374177 1803669141 712609105 1836463382 1388278453 934275857 1364913072 232307208 609962972 1818544933 1793436274 572868060] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -7521 +7082 this -1501471532 +1782580546 1 this.value --92 +-93 1 this.shift 5 @@ -39932,19 +39749,19 @@ this.heavy true 1 this.list1 -151702427 +1702940637 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1546693040 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -39953,7 +39770,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 5 @@ -39962,31 +39779,31 @@ this.isHeavy() true 1 this.getNum() -741736312 +1364767791 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -219624949 +1499136125 1 this.scale(this.value) --552 +-558 1 this.scale(this.shift) --67 +-68 1 this.scale(this.getValue()) --552 +-558 1 this.scale(this.getShift()) --67 +-68 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 5 @@ -39994,39 +39811,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1859612297 +l +692331943 +1 +l[..] +[1741979653 166794956 306612792 447212746 1496355635 1484171695 2127036371 1529060733 106374177 1803669141 712609105 1836463382 1388278453 934275857 1364913072 232307208 609962972 1818544933 1793436274 572868060] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -7556 +7082 this -893278413 +1782580546 1 this.value --92 +-93 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -272111114 +1702940637 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114684409 1664439369 154482552 1781071780 1219402581 24119573 568221876 203849460 820914198 836220863 1667148529] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1546693040 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[501187768 288994035 128359175 1585635178 1058634310 1668016508 1353070773 404214852 1822971466 1354003114 825658265] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40035,56 +39861,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -26877241 +1926343982 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -754223617 +762476028 1 this.scale(this.value) --1012 +-558 1 this.scale(this.shift) -8 +-68 1 this.scale(this.getValue()) --1012 +-558 1 this.scale(this.getShift()) -8 +-68 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +692331943 +1 +l[..] +[1741979653 166794956 306612792 447212746 1496355635 1484171695 2127036371 1529060733 106374177 1803669141 712609105 1836463382 1388278453 934275857 1364913072 232307208 609962972 1818544933 1793436274 572868060] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -7556 +7117 this -893278413 +1254344205 1 this.value --92 +-93 1 this.shift 10 @@ -40093,19 +39934,19 @@ this.heavy true 1 this.list1 -272111114 +1336735375 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +482082765 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40114,7 +39955,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 10 @@ -40123,31 +39964,31 @@ this.isHeavy() true 1 this.getNum() -1787846325 +966739377 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -741995451 +952562199 1 this.scale(this.value) --1012 +-1023 1 this.scale(this.shift) -8 +7 1 this.scale(this.getValue()) --1012 +-1023 1 this.scale(this.getShift()) -8 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 10 @@ -40155,18 +39996,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --92 +l +692331943 +1 +l[..] +[1741979653 166794956 306612792 447212746 1496355635 1484171695 2127036371 1529060733 106374177 1803669141 712609105 1836463382 1388278453 934275857 1364913072 232307208 609962972 1818544933 1793436274 572868060] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -7591 +7117 this -893278413 +1254344205 1 this.value --92 +-93 1 this.shift 10 @@ -40175,19 +40025,19 @@ this.heavy true 1 this.list1 -272111114 +1336735375 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[1984990929 1105423942 365181913 1031061344 1327536153 367746789 558216562 961712517 1928931046 1034568234 835227336] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +482082765 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[667821226 1209702763 1028780142 2128029086 686466458 875016237 105374791 1107024580 1010856212 904861801 204715855] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40196,7 +40046,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --92 +-93 1 this.getShift() 10 @@ -40205,31 +40055,31 @@ this.isHeavy() true 1 this.getNum() -280006828 +1199673596 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -938087619 +2044903525 1 this.scale(this.value) --1012 +-1023 1 this.scale(this.shift) -8 +7 1 this.scale(this.getValue()) --1012 +-1023 1 this.scale(this.getShift()) -8 +7 1 this.sum(this.getNum()) --184 +-186 1 this.sum(this.getJWrap()) --184 +-186 1 this.retrieve(this.list1) 10 @@ -40237,36 +40087,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +692331943 +1 +l[..] +[1741979653 166794956 306612792 447212746 1496355635 1484171695 2127036371 1529060733 106374177 1803669141 712609105 1836463382 1388278453 934275857 1364913072 232307208 609962972 1818544933 1793436274 572868060] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -7591 +7152 +value +-92 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +7152 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40278,31 +40153,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1761159906 +210506412 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1047433541 +112049309 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -40311,44 +40186,57 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-92 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -7626 +7170 +value +-92 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +7170 this -893278413 +1162918744 1 this.value -92 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -272111114 +1321530272 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1536031937 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40360,31 +40248,31 @@ this.getValue() -92 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1292069128 +1793799654 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -451195832 +310623126 1 this.scale(this.value) --1012 +-552 1 this.scale(this.shift) -8 +-67 1 this.scale(this.getValue()) --1012 +-552 1 this.scale(this.getShift()) -8 +-67 1 this.sum(this.getNum()) -184 @@ -40393,17 +40281,33 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-92 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +7188 +value +-92 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -7626 +7188 this -893278413 +1961945640 1 this.value -92 @@ -40415,19 +40319,19 @@ this.heavy true 1 this.list1 -272111114 +258931371 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +2040467681 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40445,13 +40349,13 @@ this.isHeavy() true 1 this.getNum() -483590867 +1550207152 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1633581421 +1864230087 1 this.scale(this.value) -1012 @@ -40477,39 +40381,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-92 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -7661 +7206 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40521,31 +40428,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -24515852 +1168019749 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1868547987 +311239812 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -40554,41 +40461,41 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -7661 +7206 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40600,31 +40507,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2032647428 +2093010349 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -535465920 +2088445230 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -40633,47 +40540,44 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1619236510 -1 -return.getClass().getName() -"java.lang.Integer" +-92 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -7696 +7241 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40685,31 +40589,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1595248786 +1297978429 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -13013507 +915349526 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -40718,41 +40622,41 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -7696 +7241 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40764,31 +40668,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1822163802 +1280851663 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1990213994 +1764696127 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -40797,20 +40701,20 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -321311486 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -7731 +7276 this -1537598224 +982757413 1 this.value -92 @@ -40822,19 +40726,19 @@ this.heavy false 1 this.list1 -1742626417 +902478634 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1962826816 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40852,13 +40756,13 @@ this.isHeavy() false 1 this.getNum() -1508256644 +1223867739 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -372446520 +129153987 1 this.scale(this.value) -92 @@ -40884,15 +40788,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --92 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -7731 +7276 this -1537598224 +982757413 1 this.value -92 @@ -40904,19 +40805,19 @@ this.heavy false 1 this.list1 -1742626417 +902478634 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1962826816 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -40934,13 +40835,13 @@ this.isHeavy() false 1 this.getNum() -1941314282 +168907708 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -950088703 +447718425 1 this.scale(this.value) -92 @@ -40966,42 +40867,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --92 -1 return --92 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -7766 +7311 this -1501471532 +982757413 1 this.value -92 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -151702427 +902478634 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1962826816 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41013,31 +40911,31 @@ this.getValue() -92 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1599915876 +1206569586 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1143383845 +1427381743 1 this.scale(this.value) --552 +-92 1 this.scale(this.shift) --67 +-92 1 this.scale(this.getValue()) --552 +-92 1 this.scale(this.getShift()) --67 +-92 1 this.sum(this.getNum()) -184 @@ -41046,44 +40944,41 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --92 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -7766 +7311 this -1501471532 +982757413 1 this.value -92 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -151702427 +902478634 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1962826816 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41095,31 +40990,31 @@ this.getValue() -92 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1168609559 +1427646530 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2082906298 +846254484 1 this.scale(this.value) --552 +-92 1 this.scale(this.shift) --67 +-92 1 this.scale(this.getValue()) --552 +-92 1 this.scale(this.getShift()) --67 +-92 1 this.sum(this.getNum()) -184 @@ -41128,47 +41023,47 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --92 +0 1 return --552 +592983282 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -7801 +7346 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41180,31 +41075,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1275220739 +1448525331 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -748163313 +1108924067 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -41213,44 +41108,41 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --92 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -7801 +7346 this -893278413 +982757413 1 this.value -92 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -272111114 +902478634 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1962826816 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41262,31 +41154,31 @@ this.getValue() -92 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -864048406 +1984975621 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -777138628 +348984985 1 this.scale(this.value) --1012 +-92 1 this.scale(this.shift) -8 +-92 1 this.scale(this.getValue()) --1012 +-92 1 this.scale(this.getShift()) -8 +-92 1 this.sum(this.getNum()) -184 @@ -41295,47 +41187,44 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --92 +0 1 return --1012 +2005435445 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -7836 +7381 this -1537598224 +1162918744 1 this.value -92 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1742626417 +1321530272 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1536031937 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41347,31 +41236,31 @@ this.getValue() -92 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -373379742 +1939990953 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -446107260 +119358627 1 this.scale(this.value) --92 +-552 1 this.scale(this.shift) --92 +-67 1 this.scale(this.getValue()) --92 +-552 1 this.scale(this.getShift()) --92 +-67 1 this.sum(this.getNum()) -184 @@ -41380,47 +41269,41 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -859307143 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -7836 +7381 this -1537598224 +1162918744 1 this.value -92 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1742626417 +1321530272 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1536031937 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41432,31 +41315,31 @@ this.getValue() -92 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -547626326 +2073621255 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1988233687 +1208121709 1 this.scale(this.value) --92 +-552 1 this.scale(this.shift) --92 +-67 1 this.scale(this.getValue()) --92 +-552 1 this.scale(this.getShift()) --92 +-67 1 this.sum(this.getNum()) -184 @@ -41465,26 +41348,99 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -859307143 +return +-92 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +7416 +this +1162918744 +1 +this.value +-92 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +1321530272 +1 +this.list1[..] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1536031937 +1 +this.list2[..] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-92 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +873610597 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +1497845528 +1 +this.scale(this.value) +-552 +1 +this.scale(this.shift) +-67 +1 +this.scale(this.getValue()) +-552 +1 +this.scale(this.getShift()) +-67 +1 +this.sum(this.getNum()) +-184 +1 +this.sum(this.getJWrap()) -184 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -7871 +7416 this -1501471532 +1162918744 1 this.value -92 @@ -41496,19 +41452,19 @@ this.heavy true 1 this.list1 -151702427 +1321530272 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1536031937 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41526,13 +41482,13 @@ this.isHeavy() true 1 this.getNum() -1398030089 +1710989308 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1073123996 +1047087935 1 this.scale(this.value) -552 @@ -41558,18 +41514,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1427333266 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -7871 +7451 this -1501471532 +1162918744 1 this.value -92 @@ -41581,19 +41534,19 @@ this.heavy true 1 this.list1 -151702427 +1321530272 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1536031937 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41611,13 +41564,13 @@ this.isHeavy() true 1 this.getNum() -1797864672 +464887938 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1616629014 +2020152163 1 this.scale(this.value) -552 @@ -41643,45 +41596,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1427333266 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --184 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -7906 +7451 this -893278413 +1162918744 1 this.value -92 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -272111114 +1321530272 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1536031937 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41693,31 +41637,31 @@ this.getValue() -92 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -720736454 +1104443373 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1609813298 +898694235 1 this.scale(this.value) --1012 +-552 1 this.scale(this.shift) -8 +-67 1 this.scale(this.getValue()) --1012 +-552 1 this.scale(this.getShift()) -8 +-67 1 this.sum(this.getNum()) -184 @@ -41726,47 +41670,44 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -2133114580 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -7906 +7486 this -893278413 +1162918744 1 this.value -92 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -272111114 +1321530272 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +1536031937 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41778,31 +41719,31 @@ this.getValue() -92 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1164743042 +60292059 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1522864489 +869601985 1 this.scale(this.value) --1012 +-552 1 this.scale(this.shift) -8 +-67 1 this.scale(this.getValue()) --1012 +-552 1 this.scale(this.getShift()) -8 +-67 1 this.sum(this.getNum()) -184 @@ -41811,50 +41752,41 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -2133114580 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --184 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -7941 +7486 this -1537598224 +1162918744 1 this.value -92 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1742626417 +1321530272 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1536031937 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41866,31 +41798,31 @@ this.getValue() -92 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1073361677 +1365008457 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1127070539 +1671179293 1 this.scale(this.value) --92 +-552 1 this.scale(this.shift) --92 +-67 1 this.scale(this.getValue()) --92 +-552 1 this.scale(this.getShift()) --92 +-67 1 this.sum(this.getNum()) -184 @@ -41899,53 +41831,47 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1868782433 -1 -l[..] -[1678014056 1626986788 857668665 927013991 330287752 2048504016 749168208 573449495 59054729 395385389 927829105 1145006868 529469709 1772649642 881898263 131974647 1894768425 337917612 1434542216 552119443] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +1609124502 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -7941 +7521 this -1537598224 +1162918744 1 this.value -92 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1742626417 +1321530272 1 this.list1[..] -[940212733 970728905 607440076 108099494 57030296 730478310 2132429918 395047043 1683698824 534118449 447127883] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -833048728 +1536031937 1 this.list2[..] -[1604076703 207442883 1126575500 2138596548 958382397 1405593879 1496207353 1870959148 1754841062 73321136 1800203021] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -41957,31 +41883,31 @@ this.getValue() -92 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -194639814 +1144068272 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -693759517 +1985836631 1 this.scale(this.value) --92 +-552 1 this.scale(this.shift) --92 +-67 1 this.scale(this.getValue()) --92 +-552 1 this.scale(this.getShift()) --92 +-67 1 this.sum(this.getNum()) -184 @@ -41990,32 +41916,17 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1868782433 -1 -l[..] -[1678014056 1626986788 857668665 927013991 330287752 2048504016 749168208 573449495 59054729 395385389 927829105 1145006868 529469709 1772649642 881898263 131974647 1894768425 337917612 1434542216 552119443] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -7976 +7521 this -1501471532 +1162918744 1 this.value -92 @@ -42027,19 +41938,19 @@ this.heavy true 1 this.list1 -151702427 +1321530272 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +1536031937 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42057,13 +41968,13 @@ this.isHeavy() true 1 this.getNum() -1327482656 +1948471365 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -793390709 +1636506029 1 this.scale(this.value) -552 @@ -42089,48 +42000,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1868782433 -1 -l[..] -[1678014056 1626986788 857668665 927013991 330287752 2048504016 749168208 573449495 59054729 395385389 927829105 1145006868 529469709 1772649642 881898263 131974647 1894768425 337917612 1434542216 552119443] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +758348212 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -7976 +7556 this -1501471532 +1961945640 1 this.value -92 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -151702427 +258931371 1 this.list1[..] -[599601600 1510819476 496291004 336419280 2021880056 2104354711 981445334 329835931 897199410 1747798283 1964418715] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -571754027 +2040467681 1 this.list2[..] -[1628095111 157900503 1691449876 1957030593 953639099 1141879332 1652063332 1412348861 1210556536 563628874 360118401] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42142,31 +42044,31 @@ this.getValue() -92 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -791681940 +817978763 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2137172415 +1578009262 1 this.scale(this.value) --552 +-1012 1 this.scale(this.shift) --67 +8 1 this.scale(this.getValue()) --552 +-1012 1 this.scale(this.getShift()) --67 +8 1 this.sum(this.getNum()) -184 @@ -42175,32 +42077,99 @@ this.sum(this.getJWrap()) -184 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -1868782433 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +7556 +this +1961945640 1 -l[..] -[1678014056 1626986788 857668665 927013991 330287752 2048504016 749168208 573449495 59054729 395385389 927829105 1145006868 529469709 1772649642 881898263 131974647 1894768425 337917612 1434542216 552119443] +this.value +-92 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +258931371 +1 +this.list1[..] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +2040467681 +1 +this.list2[..] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 +this.getValue() +-92 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +1735507635 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +1362728240 +1 +this.scale(this.value) +-1012 +1 +this.scale(this.shift) +8 +1 +this.scale(this.getValue()) +-1012 +1 +this.scale(this.getShift()) +8 +1 +this.sum(this.getNum()) +-184 +1 +this.sum(this.getJWrap()) +-184 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 return -5 +-92 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -8011 +7591 this -893278413 +1961945640 1 this.value -92 @@ -42212,19 +42181,19 @@ this.heavy true 1 this.list1 -272111114 +258931371 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +2040467681 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42242,13 +42211,13 @@ this.isHeavy() true 1 this.getNum() -645299183 +1798219673 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -750951331 +1092572064 1 this.scale(this.value) -1012 @@ -42274,24 +42243,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1868782433 -1 -l[..] -[1678014056 1626986788 857668665 927013991 330287752 2048504016 749168208 573449495 59054729 395385389 927829105 1145006868 529469709 1772649642 881898263 131974647 1894768425 337917612 1434542216 552119443] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -8011 +7591 this -893278413 +1961945640 1 this.value -92 @@ -42303,19 +42260,19 @@ this.heavy true 1 this.list1 -272111114 +258931371 1 this.list1[..] -[1378808535 139012968 2076228887 717123706 1019899778 241098492 1988196802 778103894 1564219875 348632551 1131895641] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1359893161 +2040467681 1 this.list2[..] -[55901906 1092980403 146516783 1491312419 1206181996 55179092 1829547387 1532075563 1265059811 1772138177 875640596] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42333,13 +42290,13 @@ this.isHeavy() true 1 this.getNum() -477626698 +728885526 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -178040800 +922511709 1 this.scale(this.value) -1012 @@ -42365,61 +42322,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1868782433 -1 -l[..] -[1678014056 1626986788 857668665 927013991 330287752 2048504016 749168208 573449495 59054729 395385389 927829105 1145006868 529469709 1772649642 881898263 131974647 1894768425 337917612 1434542216 552119443] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -8046 -value --91 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -8046 +7626 this -887005329 +1961945640 1 this.value --91 +-92 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -67087029 +258931371 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +2040467681 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42428,93 +42363,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -224334213 +678433396 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1551317406 +331994761 1 this.scale(this.value) --91 +-1012 1 this.scale(this.shift) --91 +8 1 this.scale(this.getValue()) --91 +-1012 1 this.scale(this.getShift()) --91 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --91 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -8064 -value --91 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -8064 +7626 this -392684415 +1961945640 1 this.value --91 +-92 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -629715674 +258931371 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +2040467681 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42523,72 +42442,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -841229550 +928294079 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1660198649 +1647809929 1 this.scale(this.value) --546 +-1012 1 this.scale(this.shift) --66 +8 1 this.scale(this.getValue()) --546 +-1012 1 this.scale(this.getShift()) --66 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --91 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -8082 -value --91 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -8082 +7661 this -703668272 +1961945640 1 this.value --91 +-92 1 this.shift 10 @@ -42597,19 +42503,19 @@ this.heavy true 1 this.list1 -360203475 +258931371 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +2040467681 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42618,7 +42524,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 10 @@ -42627,31 +42533,31 @@ this.isHeavy() true 1 this.getNum() -1434048249 +1258084361 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -839950662 +391914049 1 this.scale(this.value) --1001 +-1012 1 this.scale(this.shift) -9 +8 1 this.scale(this.getValue()) --1001 +-1012 1 this.scale(this.getShift()) -9 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 10 @@ -42659,42 +42565,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --91 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -8100 +7661 this -887005329 +1961945640 1 this.value --91 +-92 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -67087029 +258931371 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +2040467681 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42703,77 +42603,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1640764503 +96406857 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -491490794 +1534745514 1 this.scale(this.value) --91 +-1012 1 this.scale(this.shift) --91 +8 1 this.scale(this.getValue()) --91 +-1012 1 this.scale(this.getShift()) --91 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +2003496028 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -8100 +7696 this -887005329 +1961945640 1 this.value --91 +-92 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -67087029 +258931371 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +2040467681 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42782,80 +42688,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1263668396 +30578394 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2008946389 +2088371948 1 this.scale(this.value) --91 +-1012 1 this.scale(this.shift) --91 +8 1 this.scale(this.getValue()) --91 +-1012 1 this.scale(this.getShift()) --91 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --91 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -8135 +7696 this -887005329 +1961945640 1 this.value --91 +-92 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -67087029 +258931371 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +2040467681 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42864,56 +42767,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1624061789 +1976870338 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1089334353 +1434234664 1 this.scale(this.value) --91 +-1012 1 this.scale(this.shift) --91 +8 1 this.scale(this.getValue()) --91 +-1012 1 this.scale(this.getShift()) --91 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1083021083 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -8135 +7731 this -887005329 +982757413 1 this.value --91 +-92 1 this.shift 0 @@ -42922,19 +42828,19 @@ this.heavy false 1 this.list1 -67087029 +902478634 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +1962826816 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -42943,7 +42849,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 0 @@ -42952,31 +42858,31 @@ this.isHeavy() false 1 this.getNum() -1144380196 +1819063424 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -734411640 +1011279482 1 this.scale(this.value) --91 +-92 1 this.scale(this.shift) --91 +-92 1 this.scale(this.getValue()) --91 +-92 1 this.scale(this.getShift()) --91 +-92 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 0 @@ -42984,18 +42890,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-92 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -8170 +7731 this -887005329 +982757413 1 this.value --91 +-92 1 this.shift 0 @@ -43004,19 +42910,19 @@ this.heavy false 1 this.list1 -67087029 +902478634 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +1962826816 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43025,7 +42931,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 0 @@ -43034,31 +42940,31 @@ this.isHeavy() false 1 this.getNum() -1667914171 +208866101 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1529427706 +543846639 1 this.scale(this.value) --91 +-92 1 this.scale(this.shift) --91 +-92 1 this.scale(this.getValue()) --91 +-92 1 this.scale(this.getShift()) --91 +-92 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 0 @@ -43066,36 +42972,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-92 +1 +return +-92 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -8170 +7766 this -887005329 +1162918744 1 this.value --91 +-92 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -67087029 +1321530272 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +1536031937 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43104,80 +43016,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1859683799 +690686166 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1228611355 +576020159 1 this.scale(this.value) --91 +-552 1 this.scale(this.shift) --91 +-67 1 this.scale(this.getValue()) --91 +-552 1 this.scale(this.getShift()) --91 +-67 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-92 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -8205 +7766 this -887005329 +1162918744 1 this.value --91 +-92 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -67087029 +1321530272 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +1536031937 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43186,77 +43098,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1215777580 +921420643 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -266885855 +1165303897 1 this.scale(this.value) --91 +-552 1 this.scale(this.shift) --91 +-67 1 this.scale(this.getValue()) --91 +-552 1 this.scale(this.getShift()) --91 +-67 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-92 +1 +return +-552 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -8205 +7801 this -887005329 +1961945640 1 this.value --91 +-92 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -67087029 +258931371 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +2040467681 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43265,83 +43183,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1604710049 +887750041 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -114670870 +1010953501 1 this.scale(this.value) --91 +-1012 1 this.scale(this.shift) --91 +8 1 this.scale(this.getValue()) --91 +-1012 1 this.scale(this.getShift()) --91 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -980480731 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-92 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -8240 +7801 this -887005329 +1961945640 1 this.value --91 +-92 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -67087029 +258931371 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +2040467681 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43350,56 +43265,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1297622486 +1423561005 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1444686917 +943870983 1 this.scale(this.value) --91 +-1012 1 this.scale(this.shift) --91 +8 1 this.scale(this.getValue()) --91 +-1012 1 this.scale(this.getShift()) --91 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-92 +1 +return +-1012 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -8240 +7836 this -887005329 +982757413 1 this.value --91 +-92 1 this.shift 0 @@ -43408,19 +43329,19 @@ this.heavy false 1 this.list1 -67087029 +902478634 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +1962826816 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43429,7 +43350,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 0 @@ -43438,31 +43359,31 @@ this.isHeavy() false 1 this.getNum() -1402901037 +1136419747 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1334768446 +1881561036 1 this.scale(this.value) --91 +-92 1 this.scale(this.shift) --91 +-92 1 this.scale(this.getValue()) --91 +-92 1 this.scale(this.getShift()) --91 +-92 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 0 @@ -43470,39 +43391,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -839095360 +n +1785507932 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -8275 +7836 this -392684415 +982757413 1 this.value --91 +-92 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -629715674 +902478634 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1962826816 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43511,56 +43435,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -150605671 +1084502906 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1493776331 +1613095350 1 this.scale(this.value) --546 +-92 1 this.scale(this.shift) --66 +-92 1 this.scale(this.getValue()) --546 +-92 1 this.scale(this.getShift()) --66 +-92 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1785507932 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-184 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -8275 +7871 this -392684415 +1162918744 1 this.value --91 +-92 1 this.shift 5 @@ -43569,19 +43502,19 @@ this.heavy true 1 this.list1 -629715674 +1321530272 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1536031937 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43590,7 +43523,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 5 @@ -43599,31 +43532,31 @@ this.isHeavy() true 1 this.getNum() -1814961687 +587153993 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1203351421 +757004314 1 this.scale(this.value) --546 +-552 1 this.scale(this.shift) --66 +-67 1 this.scale(this.getValue()) --546 +-552 1 this.scale(this.getShift()) --66 +-67 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 5 @@ -43631,18 +43564,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --91 +n +1279271200 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -8310 +7871 this -392684415 +1162918744 1 this.value --91 +-92 1 this.shift 5 @@ -43651,19 +43587,19 @@ this.heavy true 1 this.list1 -629715674 +1321530272 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1536031937 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43672,7 +43608,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 5 @@ -43681,31 +43617,31 @@ this.isHeavy() true 1 this.getNum() -1873828948 +52908367 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -595445781 +1527953000 1 this.scale(this.value) --546 +-552 1 this.scale(this.shift) --66 +-67 1 this.scale(this.getValue()) --546 +-552 1 this.scale(this.getShift()) --66 +-67 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 5 @@ -43713,36 +43649,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1279271200 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-184 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -8310 +7906 this -392684415 +1961945640 1 this.value --91 +-92 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -629715674 +258931371 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +2040467681 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43751,80 +43696,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -383446247 +18242360 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2130132329 +1276261147 1 this.scale(this.value) --546 +-1012 1 this.scale(this.shift) --66 +8 1 this.scale(this.getValue()) --546 +-1012 1 this.scale(this.getShift()) --66 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +1971764991 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -8345 +7906 this -392684415 +1961945640 1 this.value --91 +-92 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -629715674 +258931371 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +2040467681 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43833,77 +43781,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -434174366 +996796369 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -19136856 +135640095 1 this.scale(this.value) --546 +-1012 1 this.scale(this.shift) --66 +8 1 this.scale(this.getValue()) --546 +-1012 1 this.scale(this.getShift()) --66 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1971764991 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-184 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -8345 +7941 this -392684415 +982757413 1 this.value --91 +-92 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -629715674 +902478634 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1962826816 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43912,80 +43869,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1658075389 +1430439149 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1525259451 +359922172 1 this.scale(this.value) --546 +-92 1 this.scale(this.shift) --66 +-92 1 this.scale(this.getValue()) --546 +-92 1 this.scale(this.getShift()) --66 +-92 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +1632682988 +1 +l[..] +[1153447573 132577100 231756373 1786294176 793331940 522553046 275266973 1069716895 1521083627 1770642014 945591847 328827614 109228794 561959774 2110756088 580871917 823723302 1714078840 1732502545 1051876890] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -8380 +7941 this -392684415 +982757413 1 this.value --91 +-92 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -629715674 +902478634 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[2114444063 294247762 918312414 1448061896 382750013 1240232440 489349054 915416632 574434418 150268540 1130894323] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1962826816 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1072410641 283318938 320304382 361571968 2005169944 2134607032 1470344997 728115831 2131670196 1546908073 371439501] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -43994,56 +43960,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -523298718 +1199262943 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1136018961 +2009221452 1 this.scale(this.value) --546 +-92 1 this.scale(this.shift) --66 +-92 1 this.scale(this.getValue()) --546 +-92 1 this.scale(this.getShift()) --66 +-92 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1632682988 +1 +l[..] +[1153447573 132577100 231756373 1786294176 793331940 522553046 275266973 1069716895 1521083627 1770642014 945591847 328827614 109228794 561959774 2110756088 580871917 823723302 1714078840 1732502545 1051876890] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -8380 +7976 this -392684415 +1162918744 1 this.value --91 +-92 1 this.shift 5 @@ -44052,19 +44033,19 @@ this.heavy true 1 this.list1 -629715674 +1321530272 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1536031937 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44073,7 +44054,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 5 @@ -44082,31 +44063,31 @@ this.isHeavy() true 1 this.getNum() -1941055697 +257513673 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -899017902 +590845366 1 this.scale(this.value) --546 +-552 1 this.scale(this.shift) --66 +-67 1 this.scale(this.getValue()) --546 +-552 1 this.scale(this.getShift()) --66 +-67 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 5 @@ -44114,21 +44095,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -98938622 +l +1632682988 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1153447573 132577100 231756373 1786294176 793331940 522553046 275266973 1069716895 1521083627 1770642014 945591847 328827614 109228794 561959774 2110756088 580871917 823723302 1714078840 1732502545 1051876890] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -8415 +7976 this -392684415 +1162918744 1 this.value --91 +-92 1 this.shift 5 @@ -44137,19 +44124,19 @@ this.heavy true 1 this.list1 -629715674 +1321530272 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[573673894 1226020905 156856360 1617550160 1325124186 461160828 1499867659 2012993836 1740797075 440938038 1922464006] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1536031937 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[798981583 1954406292 904058452 29183965 1427651360 1334042472 1827725498 131635550 319644606 1118078504 691690486] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44158,7 +44145,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 5 @@ -44167,31 +44154,31 @@ this.isHeavy() true 1 this.getNum() -709077176 +1052195003 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1073339829 +1541049864 1 this.scale(this.value) --546 +-552 1 this.scale(this.shift) --66 +-67 1 this.scale(this.getValue()) --546 +-552 1 this.scale(this.getShift()) --66 +-67 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 5 @@ -44199,36 +44186,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +1632682988 +1 +l[..] +[1153447573 132577100 231756373 1786294176 793331940 522553046 275266973 1069716895 1521083627 1770642014 945591847 328827614 109228794 561959774 2110756088 580871917 823723302 1714078840 1732502545 1051876890] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -8415 +8011 this -392684415 +1961945640 1 this.value --91 +-92 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -629715674 +258931371 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +2040467681 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44237,59 +44239,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -759871203 +511707818 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -70060112 +25536233 1 this.scale(this.value) --546 +-1012 1 this.scale(this.shift) --66 +8 1 this.scale(this.getValue()) --546 +-1012 1 this.scale(this.getShift()) --66 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -679263828 +l +1632682988 +1 +l[..] +[1153447573 132577100 231756373 1786294176 793331940 522553046 275266973 1069716895 1521083627 1770642014 945591847 328827614 109228794 561959774 2110756088 580871917 823723302 1714078840 1732502545 1051876890] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -8450 +8011 this -703668272 +1961945640 1 this.value --91 +-92 1 this.shift 10 @@ -44298,19 +44309,19 @@ this.heavy true 1 this.list1 -360203475 +258931371 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1008315045 860481979 1083962448 953742666 1239759990 891093184 708533063 1438030319 902830499 1754662105 403147759] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +2040467681 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1278677872 341796579 807657332 825936265 1164107853 711327356 68377659 1661123505 825249556 883151184 709865851] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44319,7 +44330,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --91 +-92 1 this.getShift() 10 @@ -44328,31 +44339,31 @@ this.isHeavy() true 1 this.getNum() -364089744 +116405378 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1075417105 +164974746 1 this.scale(this.value) --1001 +-1012 1 this.scale(this.shift) -9 +8 1 this.scale(this.getValue()) --1001 +-1012 1 this.scale(this.getShift()) -9 +8 1 this.sum(this.getNum()) --182 +-184 1 this.sum(this.getJWrap()) --182 +-184 1 this.retrieve(this.list1) 10 @@ -44360,36 +44371,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1632682988 +1 +l[..] +[1153447573 132577100 231756373 1786294176 793331940 522553046 275266973 1069716895 1521083627 1770642014 945591847 328827614 109228794 561959774 2110756088 580871917 823723302 1714078840 1732502545 1051876890] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -8450 +8046 +value +-91 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +8046 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44401,31 +44437,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1312910583 +1073763441 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -693695556 +752316209 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -44434,44 +44470,57 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -91 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -8485 +8064 +value +-91 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +8064 this -703668272 +914356853 1 this.value -91 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -360203475 +1229161065 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +710708543 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44483,31 +44532,31 @@ this.getValue() -91 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -252490129 +2014838114 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -173911631 +136936250 1 this.scale(this.value) --1001 +-546 1 this.scale(this.shift) -9 +-66 1 this.scale(this.getValue()) --1001 +-546 1 this.scale(this.getShift()) -9 +-66 1 this.sum(this.getNum()) -182 @@ -44516,17 +44565,33 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-91 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +8082 +value +-91 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -8485 +8082 this -703668272 +593687897 1 this.value -91 @@ -44538,19 +44603,19 @@ this.heavy true 1 this.list1 -360203475 +187472540 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +1101184763 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44568,13 +44633,13 @@ this.isHeavy() true 1 this.getNum() -207538650 +1644231115 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -588647822 +537066525 1 this.scale(this.value) -1001 @@ -44600,39 +44665,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-91 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -8520 +8100 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44644,31 +44712,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2094266272 +1766145591 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1076259174 +1867139015 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -44677,41 +44745,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -8520 +8100 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44723,31 +44791,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -433178737 +182531396 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -465469429 +1026871825 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -44756,44 +44824,44 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-91 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -8555 +8135 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44805,31 +44873,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2009250829 +2109798150 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -298333928 +1074389766 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -44838,41 +44906,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -8555 +8135 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44884,31 +44952,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1871495798 +1136768342 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -36899377 +1484673893 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -44917,47 +44985,44 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1692538903 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -8590 +8170 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -44969,31 +45034,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -932954559 +587003819 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1389166366 +769798433 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -45002,41 +45067,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -8590 +8170 this -703668272 +396283472 1 this.value -91 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -360203475 +989892772 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +428566321 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45048,31 +45113,31 @@ this.getValue() -91 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -276903178 +1665620686 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -314649597 +1233705144 1 this.scale(this.value) --1001 +-91 1 this.scale(this.shift) -9 +-91 1 this.scale(this.getValue()) --1001 +-91 1 this.scale(this.getShift()) -9 +-91 1 this.sum(this.getNum()) -182 @@ -45081,20 +45146,20 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1211037865 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -8625 +8205 this -887005329 +396283472 1 this.value -91 @@ -45106,19 +45171,19 @@ this.heavy false 1 this.list1 -67087029 +989892772 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +428566321 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45136,13 +45201,13 @@ this.isHeavy() false 1 this.getNum() -63390789 +202125197 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -257101811 +811301908 1 this.scale(this.value) -91 @@ -45168,15 +45233,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --91 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -8625 +8205 this -887005329 +396283472 1 this.value -91 @@ -45188,19 +45250,19 @@ this.heavy false 1 this.list1 -67087029 +989892772 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +428566321 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45218,13 +45280,13 @@ this.isHeavy() false 1 this.getNum() -373039713 +1762902523 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1173690798 +1725008249 1 this.scale(this.value) -91 @@ -45250,42 +45312,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --91 -1 return --91 +197964393 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -8660 +8240 this -392684415 +396283472 1 this.value -91 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -629715674 +989892772 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +428566321 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45297,31 +45359,31 @@ this.getValue() -91 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1583944291 +1620890840 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1144410625 +402115881 1 this.scale(this.value) --546 +-91 1 this.scale(this.shift) --66 +-91 1 this.scale(this.getValue()) --546 +-91 1 this.scale(this.getShift()) --66 +-91 1 this.sum(this.getNum()) -182 @@ -45330,44 +45392,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --91 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -8660 +8240 this -392684415 +396283472 1 this.value -91 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -629715674 +989892772 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +428566321 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45379,31 +45438,31 @@ this.getValue() -91 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1245831843 +2106000623 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -730227051 +330739404 1 this.scale(this.value) --546 +-91 1 this.scale(this.shift) --66 +-91 1 this.scale(this.getValue()) --546 +-91 1 this.scale(this.getShift()) --66 +-91 1 this.sum(this.getNum()) -182 @@ -45412,47 +45471,44 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --91 +0 1 return --546 +361398902 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -8695 +8275 this -703668272 +914356853 1 this.value -91 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -360203475 +1229161065 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +710708543 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45464,31 +45520,31 @@ this.getValue() -91 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -57003552 +1010670443 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -280991902 +2044215423 1 this.scale(this.value) --1001 +-546 1 this.scale(this.shift) -9 +-66 1 this.scale(this.getValue()) --1001 +-546 1 this.scale(this.getShift()) -9 +-66 1 this.sum(this.getNum()) -182 @@ -45497,44 +45553,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --91 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -8695 +8275 this -703668272 +914356853 1 this.value -91 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -360203475 +1229161065 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +710708543 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45546,31 +45599,31 @@ this.getValue() -91 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -314357161 +1606304070 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -591033307 +510063093 1 this.scale(this.value) --1001 +-546 1 this.scale(this.shift) -9 +-66 1 this.scale(this.getValue()) --1001 +-546 1 this.scale(this.getShift()) -9 +-66 1 this.sum(this.getNum()) -182 @@ -45579,47 +45632,44 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --91 +5 1 return --1001 +-91 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -8730 +8310 this -887005329 +914356853 1 this.value -91 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -67087029 +1229161065 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +710708543 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45631,31 +45681,31 @@ this.getValue() -91 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1384923374 +1313916817 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1979380632 +1966124444 1 this.scale(this.value) --91 +-546 1 this.scale(this.shift) --91 +-66 1 this.scale(this.getValue()) --91 +-546 1 this.scale(this.getShift()) --91 +-66 1 this.sum(this.getNum()) -182 @@ -45664,47 +45714,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -781106347 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -8730 +8310 this -887005329 +914356853 1 this.value -91 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -67087029 +1229161065 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +710708543 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45716,31 +45760,31 @@ this.getValue() -91 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -486839918 +1487500813 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -405806756 +1911152052 1 this.scale(this.value) --91 +-546 1 this.scale(this.shift) --91 +-66 1 this.scale(this.getValue()) --91 +-546 1 this.scale(this.getShift()) --91 +-66 1 this.sum(this.getNum()) -182 @@ -45749,26 +45793,20 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -781106347 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --182 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -8765 +8345 this -392684415 +914356853 1 this.value -91 @@ -45780,19 +45818,19 @@ this.heavy true 1 this.list1 -629715674 +1229161065 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +710708543 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45810,13 +45848,13 @@ this.isHeavy() true 1 this.getNum() -2133568867 +961409111 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -210010063 +1231156911 1 this.scale(this.value) -546 @@ -45842,18 +45880,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1323496820 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -8765 +8345 this -392684415 +914356853 1 this.value -91 @@ -45865,19 +45897,19 @@ this.heavy true 1 this.list1 -629715674 +1229161065 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +710708543 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45895,13 +45927,13 @@ this.isHeavy() true 1 this.getNum() -375438114 +1525409936 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -681427112 +1708169732 1 this.scale(this.value) -546 @@ -45927,45 +45959,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1323496820 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --182 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -8800 +8380 this -703668272 +914356853 1 this.value -91 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -360203475 +1229161065 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +710708543 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -45977,31 +46003,31 @@ this.getValue() -91 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -215181933 +868815265 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -200286383 +1977310713 1 this.scale(this.value) --1001 +-546 1 this.scale(this.shift) -9 +-66 1 this.scale(this.getValue()) --1001 +-546 1 this.scale(this.getShift()) -9 +-66 1 this.sum(this.getNum()) -182 @@ -46010,47 +46036,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1106364232 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -8800 +8380 this -703668272 +914356853 1 this.value -91 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -360203475 +1229161065 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +710708543 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46062,31 +46082,31 @@ this.getValue() -91 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1750231498 +1886491834 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2057273927 +294658058 1 this.scale(this.value) --1001 +-546 1 this.scale(this.shift) -9 +-66 1 this.scale(this.getValue()) --1001 +-546 1 this.scale(this.getShift()) -9 +-66 1 this.sum(this.getNum()) -182 @@ -46095,50 +46115,47 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -1106364232 +return +1781493632 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --182 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -8835 +8415 this -887005329 +914356853 1 this.value -91 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -67087029 +1229161065 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +710708543 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46150,31 +46167,31 @@ this.getValue() -91 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2116174389 +1169474473 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2066277956 +966544353 1 this.scale(this.value) --91 +-546 1 this.scale(this.shift) --91 +-66 1 this.scale(this.getValue()) --91 +-546 1 this.scale(this.getShift()) --91 +-66 1 this.sum(this.getNum()) -182 @@ -46183,53 +46200,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -975550855 -1 -l[..] -[45575140 1477199648 236040969 738269974 2090424299 928728373 1226618615 2083534752 1100228882 1712619104 1265960187 1872372080 1879669069 2113595313 1669420564 1077571093 1007764900 301150411 1963485345 2064473613] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -8835 +8415 this -887005329 +914356853 1 this.value -91 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -67087029 +1229161065 1 this.list1[..] -[102781728 875650308 349293665 1505820404 228750133 607757201 1143052075 2035002110 1455900648 893517018 2134861702] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -463851438 +710708543 1 this.list2[..] -[585479856 389869238 559676069 497317823 414297037 948317285 1892464608 272370939 1450720016 1869464521 256965190] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46241,31 +46246,31 @@ this.getValue() -91 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -714729112 +689745064 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1576147713 +945722724 1 this.scale(this.value) --91 +-546 1 this.scale(this.shift) --91 +-66 1 this.scale(this.getValue()) --91 +-546 1 this.scale(this.getShift()) --91 +-66 1 this.sum(this.getNum()) -182 @@ -46274,56 +46279,44 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -975550855 -1 -l[..] -[45575140 1477199648 236040969 738269974 2090424299 928728373 1226618615 2083534752 1100228882 1712619104 1265960187 1872372080 1879669069 2113595313 1669420564 1077571093 1007764900 301150411 1963485345 2064473613] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +1536471117 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -8870 +8450 this -392684415 +593687897 1 this.value -91 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -629715674 +187472540 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1101184763 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46335,31 +46328,31 @@ this.getValue() -91 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1103826646 +9190301 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2050696536 +1278852808 1 this.scale(this.value) --546 +-1001 1 this.scale(this.shift) --66 +9 1 this.scale(this.getValue()) --546 +-1001 1 this.scale(this.getShift()) --66 +9 1 this.sum(this.getNum()) -182 @@ -46368,53 +46361,41 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -975550855 -1 -l[..] -[45575140 1477199648 236040969 738269974 2090424299 928728373 1226618615 2083534752 1100228882 1712619104 1265960187 1872372080 1879669069 2113595313 1669420564 1077571093 1007764900 301150411 1963485345 2064473613] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -8870 +8450 this -392684415 +593687897 1 this.value -91 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -629715674 +187472540 1 this.list1[..] -[831920502 1969335144 1597797644 2049480620 2130566107 1282230271 445767052 1583882228 101317784 2040947264 444372517] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1768252600 +1101184763 1 this.list2[..] -[2142741014 1894945755 1170819275 566897464 1608219356 1113535150 2012766092 1397300700 1699184955 964000879 1346140385] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46426,31 +46407,31 @@ this.getValue() -91 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1091629849 +63390 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1070075822 +2129144075 1 this.scale(this.value) --546 +-1001 1 this.scale(this.shift) --66 +9 1 this.scale(this.getValue()) --546 +-1001 1 this.scale(this.getShift()) --66 +9 1 this.sum(this.getNum()) -182 @@ -46459,32 +46440,20 @@ this.sum(this.getJWrap()) -182 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -975550855 -1 -l[..] -[45575140 1477199648 236040969 738269974 2090424299 928728373 1226618615 2083534752 1100228882 1712619104 1265960187 1872372080 1879669069 2113595313 1669420564 1077571093 1007764900 301150411 1963485345 2064473613] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-91 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -8905 +8485 this -703668272 +593687897 1 this.value -91 @@ -46496,19 +46465,19 @@ this.heavy true 1 this.list1 -360203475 +187472540 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +1101184763 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46526,13 +46495,13 @@ this.isHeavy() true 1 this.getNum() -1736280376 +525968792 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1656483996 +504858437 1 this.scale(this.value) -1001 @@ -46558,24 +46527,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -975550855 -1 -l[..] -[45575140 1477199648 236040969 738269974 2090424299 928728373 1226618615 2083534752 1100228882 1712619104 1265960187 1872372080 1879669069 2113595313 1669420564 1077571093 1007764900 301150411 1963485345 2064473613] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -8905 +8485 this -703668272 +593687897 1 this.value -91 @@ -46587,19 +46544,19 @@ this.heavy true 1 this.list1 -360203475 +187472540 1 this.list1[..] -[183403432 822448179 1681792361 704449513 605619080 1714874427 516468202 152169840 2012960950 377311812 2107898340] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -409675821 +1101184763 1 this.list2[..] -[588951265 751781832 1550955123 746244975 834796345 911504564 1656353097 495985218 1639524919 1132638976 968222624] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46617,13 +46574,13 @@ this.isHeavy() true 1 this.getNum() -548521064 +422330142 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1993709724 +649329985 1 this.scale(this.value) -1001 @@ -46649,61 +46606,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -975550855 -1 -l[..] -[45575140 1477199648 236040969 738269974 2090424299 928728373 1226618615 2083534752 1100228882 1712619104 1265960187 1872372080 1879669069 2113595313 1669420564 1077571093 1007764900 301150411 1963485345 2064473613] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -8940 -value --90 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -8940 +8520 this -1091987127 +593687897 1 this.value --90 +-91 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -632396227 +187472540 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +1101184763 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46712,93 +46647,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1565473023 +1955920234 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2082938164 +1444635922 1 this.scale(this.value) --90 +-1001 1 this.scale(this.shift) --90 +9 1 this.scale(this.getValue()) --90 +-1001 1 this.scale(this.getShift()) --90 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --90 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -8958 -value --90 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -8958 +8520 this -1810792601 +593687897 1 this.value --90 +-91 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2000483370 +187472540 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +1101184763 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46807,72 +46726,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1168448192 +775386112 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1518294776 +391630194 1 this.scale(this.value) --540 +-1001 1 this.scale(this.shift) --65 +9 1 this.scale(this.getValue()) --540 +-1001 1 this.scale(this.getShift()) --65 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --90 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -8976 -value --90 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -8976 +8555 this -1579606578 +593687897 1 this.value --90 +-91 1 this.shift 10 @@ -46881,19 +46787,19 @@ this.heavy true 1 this.list1 -1254912232 +187472540 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +1101184763 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46902,7 +46808,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 10 @@ -46911,31 +46817,31 @@ this.isHeavy() true 1 this.getNum() -715429138 +1146825051 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -456582813 +1239807799 1 this.scale(this.value) --990 +-1001 1 this.scale(this.shift) -10 +9 1 this.scale(this.getValue()) --990 +-1001 1 this.scale(this.getShift()) -10 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 10 @@ -46943,42 +46849,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --90 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -8994 +8555 this -1091987127 +593687897 1 this.value --90 +-91 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -632396227 +187472540 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +1101184763 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -46987,77 +46887,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -828267360 +1550261631 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -700519666 +1970436060 1 this.scale(this.value) --90 +-1001 1 this.scale(this.shift) --90 +9 1 this.scale(this.getValue()) --90 +-1001 1 this.scale(this.getShift()) --90 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1753127384 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -8994 +8590 this -1091987127 +593687897 1 this.value --90 +-91 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -632396227 +187472540 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +1101184763 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47066,80 +46972,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1128673608 +239372207 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -894275705 +1789718525 1 this.scale(this.value) --90 +-1001 1 this.scale(this.shift) --90 +9 1 this.scale(this.getValue()) --90 +-1001 1 this.scale(this.getShift()) --90 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --90 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -9029 +8590 this -1091987127 +593687897 1 this.value --90 +-91 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -632396227 +187472540 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +1101184763 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47148,56 +47051,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2001212229 +210156003 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -485053489 +279593458 1 this.scale(this.value) --90 +-1001 1 this.scale(this.shift) --90 +9 1 this.scale(this.getValue()) --90 +-1001 1 this.scale(this.getShift()) --90 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +989447607 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -9029 +8625 this -1091987127 +396283472 1 this.value --90 +-91 1 this.shift 0 @@ -47206,19 +47112,19 @@ this.heavy false 1 this.list1 -632396227 +989892772 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +428566321 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47227,7 +47133,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 0 @@ -47236,31 +47142,31 @@ this.isHeavy() false 1 this.getNum() -446065611 +925308434 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -159312400 +249034932 1 this.scale(this.value) --90 +-91 1 this.scale(this.shift) --90 +-91 1 this.scale(this.getValue()) --90 +-91 1 this.scale(this.getShift()) --90 +-91 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 0 @@ -47268,18 +47174,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-91 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -9064 +8625 this -1091987127 +396283472 1 this.value --90 +-91 1 this.shift 0 @@ -47288,19 +47194,19 @@ this.heavy false 1 this.list1 -632396227 +989892772 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +428566321 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47309,7 +47215,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 0 @@ -47318,31 +47224,31 @@ this.isHeavy() false 1 this.getNum() -1798882638 +1278254413 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1545714400 +940584193 1 this.scale(this.value) --90 +-91 1 this.scale(this.shift) --90 +-91 1 this.scale(this.getValue()) --90 +-91 1 this.scale(this.getShift()) --90 +-91 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 0 @@ -47350,36 +47256,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-91 +1 +return +-91 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -9064 +8660 this -1091987127 +914356853 1 this.value --90 +-91 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -632396227 +1229161065 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +710708543 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47388,80 +47300,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -712243041 +931675031 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -594941709 +111900554 1 this.scale(this.value) --90 +-546 1 this.scale(this.shift) --90 +-66 1 this.scale(this.getValue()) --90 +-546 1 this.scale(this.getShift()) --90 +-66 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-91 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -9099 +8660 this -1091987127 +914356853 1 this.value --90 +-91 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -632396227 +1229161065 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +710708543 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47470,77 +47382,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -501442731 +1312381159 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1022149089 +2012744708 1 this.scale(this.value) --90 +-546 1 this.scale(this.shift) --90 +-66 1 this.scale(this.getValue()) --90 +-546 1 this.scale(this.getShift()) --90 +-66 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-91 +1 +return +-546 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -9099 +8695 this -1091987127 +593687897 1 this.value --90 +-91 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -632396227 +187472540 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +1101184763 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47549,83 +47467,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1538046470 +31114735 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -686362351 +1552999801 1 this.scale(this.value) --90 +-1001 1 this.scale(this.shift) --90 +9 1 this.scale(this.getValue()) --90 +-1001 1 this.scale(this.getShift()) --90 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1557365220 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-91 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -9134 +8695 this -1091987127 +593687897 1 this.value --90 +-91 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -632396227 +187472540 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +1101184763 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47634,56 +47549,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1106562904 +1491755116 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -794344508 +1866850137 1 this.scale(this.value) --90 +-1001 1 this.scale(this.shift) --90 +9 1 this.scale(this.getValue()) --90 +-1001 1 this.scale(this.getShift()) --90 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-91 +1 +return +-1001 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -9134 +8730 this -1091987127 +396283472 1 this.value --90 +-91 1 this.shift 0 @@ -47692,19 +47613,19 @@ this.heavy false 1 this.list1 -632396227 +989892772 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +428566321 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47713,7 +47634,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 0 @@ -47722,31 +47643,31 @@ this.isHeavy() false 1 this.getNum() -1789796204 +954702563 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1301357099 +1661406123 1 this.scale(this.value) --90 +-91 1 this.scale(this.shift) --90 +-91 1 this.scale(this.getValue()) --90 +-91 1 this.scale(this.getShift()) --90 +-91 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 0 @@ -47754,39 +47675,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -1935301845 +n +1759899303 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -9169 +8730 this -1810792601 +396283472 1 this.value --90 +-91 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2000483370 +989892772 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +428566321 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47795,56 +47719,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -830791453 +689654773 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -173277777 +758119607 1 this.scale(this.value) --540 +-91 1 this.scale(this.shift) --65 +-91 1 this.scale(this.getValue()) --540 +-91 1 this.scale(this.getShift()) --65 +-91 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1759899303 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-182 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -9169 +8765 this -1810792601 +914356853 1 this.value --90 +-91 1 this.shift 5 @@ -47853,19 +47786,19 @@ this.heavy true 1 this.list1 -2000483370 +1229161065 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +710708543 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47874,7 +47807,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 5 @@ -47883,31 +47816,31 @@ this.isHeavy() true 1 this.getNum() -291772707 +1982787818 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1118720448 +838449246 1 this.scale(this.value) --540 +-546 1 this.scale(this.shift) --65 +-66 1 this.scale(this.getValue()) --540 +-546 1 this.scale(this.getShift()) --65 +-66 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 5 @@ -47915,18 +47848,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --90 +n +1112414583 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -9204 +8765 this -1810792601 +914356853 1 this.value --90 +-91 1 this.shift 5 @@ -47935,19 +47871,19 @@ this.heavy true 1 this.list1 -2000483370 +1229161065 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +710708543 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -47956,7 +47892,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 5 @@ -47965,31 +47901,31 @@ this.isHeavy() true 1 this.getNum() -1115240051 +282496973 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -602266141 +293508253 1 this.scale(this.value) --540 +-546 1 this.scale(this.shift) --65 +-66 1 this.scale(this.getValue()) --540 +-546 1 this.scale(this.getShift()) --65 +-66 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 5 @@ -47997,36 +47933,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1112414583 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-182 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -9204 +8800 this -1810792601 +593687897 1 this.value --90 +-91 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2000483370 +187472540 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +1101184763 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48035,80 +47980,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1196603476 +1840903588 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -130266977 +1603198149 1 this.scale(this.value) --540 +-1001 1 this.scale(this.shift) --65 +9 1 this.scale(this.getValue()) --540 +-1001 1 this.scale(this.getShift()) --65 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +2063763486 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -9239 +8800 this -1810792601 +593687897 1 this.value --90 +-91 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2000483370 +187472540 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +1101184763 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48117,77 +48065,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1111246146 +515715487 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -48697863 +1007412025 1 this.scale(this.value) --540 +-1001 1 this.scale(this.shift) --65 +9 1 this.scale(this.getValue()) --540 +-1001 1 this.scale(this.getShift()) --65 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +2063763486 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-182 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -9239 +8835 this -1810792601 +396283472 1 this.value --90 +-91 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2000483370 +989892772 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +428566321 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48196,80 +48153,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -273713934 +365590665 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -400116864 +2053591126 1 this.scale(this.value) --540 +-91 1 this.scale(this.shift) --65 +-91 1 this.scale(this.getValue()) --540 +-91 1 this.scale(this.getShift()) --65 +-91 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +220309324 +1 +l[..] +[1850777594 681094281 1748876332 1747352992 40075281 1878169648 1781241150 825962150 793138072 1418620248 1648001170 169663597 391877669 815320891 101775274 1778629809 565372776 1462044018 1443435931 555273695] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -9274 +8835 this -1810792601 +396283472 1 this.value --90 +-91 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2000483370 +989892772 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[1020520290 530653666 2125238280 1092004553 1658699134 1961176822 1859374258 442987331 366873404 1217467887 945288723] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +428566321 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[2087258327 1016550616 1006094903 2030538903 1293680848 1261153343 1309176095 198099809 645482568 807752428 1026055550] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48278,56 +48244,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -992834491 +396883763 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -621353047 +1750498848 1 this.scale(this.value) --540 +-91 1 this.scale(this.shift) --65 +-91 1 this.scale(this.getValue()) --540 +-91 1 this.scale(this.getShift()) --65 +-91 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +220309324 +1 +l[..] +[1850777594 681094281 1748876332 1747352992 40075281 1878169648 1781241150 825962150 793138072 1418620248 1648001170 169663597 391877669 815320891 101775274 1778629809 565372776 1462044018 1443435931 555273695] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -9274 +8870 this -1810792601 +914356853 1 this.value --90 +-91 1 this.shift 5 @@ -48336,19 +48317,19 @@ this.heavy true 1 this.list1 -2000483370 +1229161065 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +710708543 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48357,7 +48338,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 5 @@ -48366,31 +48347,31 @@ this.isHeavy() true 1 this.getNum() -2015169215 +1995250556 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -984399668 +301749835 1 this.scale(this.value) --540 +-546 1 this.scale(this.shift) --65 +-66 1 this.scale(this.getValue()) --540 +-546 1 this.scale(this.getShift()) --65 +-66 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 5 @@ -48398,21 +48379,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -591203588 +l +220309324 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1850777594 681094281 1748876332 1747352992 40075281 1878169648 1781241150 825962150 793138072 1418620248 1648001170 169663597 391877669 815320891 101775274 1778629809 565372776 1462044018 1443435931 555273695] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -9309 +8870 this -1810792601 +914356853 1 this.value --90 +-91 1 this.shift 5 @@ -48421,19 +48408,19 @@ this.heavy true 1 this.list1 -2000483370 +1229161065 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[195228908 471579726 1442726378 16503286 484589713 1574598287 2056031695 606508809 718187988 615438348 978508707] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +710708543 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[1965237677 664792509 188523822 1170727939 690339675 1896828359 536122141 1709804316 1630678941 1792550665 1359953204] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48442,7 +48429,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 5 @@ -48451,31 +48438,31 @@ this.isHeavy() true 1 this.getNum() -2099352494 +961160488 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -661046448 +1647766367 1 this.scale(this.value) --540 +-546 1 this.scale(this.shift) --65 +-66 1 this.scale(this.getValue()) --540 +-546 1 this.scale(this.getShift()) --65 +-66 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 5 @@ -48483,97 +48470,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -9309 -this -1810792601 -1 -this.value --90 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -2000483370 -1 -this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -918426392 +l +220309324 1 -this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +l[..] +[1850777594 681094281 1748876332 1747352992 40075281 1878169648 1781241150 825962150 793138072 1418620248 1648001170 169663597 391877669 815320891 101775274 1778629809 565372776 1462044018 1443435931 555273695] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --90 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1274745605 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1352520763 -1 -this.scale(this.value) --540 -1 -this.scale(this.shift) --65 -1 -this.scale(this.getValue()) --540 -1 -this.scale(this.getShift()) --65 -1 -this.sum(this.getNum()) --180 -1 -this.sum(this.getJWrap()) --180 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -702060246 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -9344 +8905 this -1579606578 +593687897 1 this.value --90 +-91 1 this.shift 10 @@ -48582,19 +48502,19 @@ this.heavy true 1 this.list1 -1254912232 +187472540 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +1101184763 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48603,7 +48523,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 10 @@ -48612,31 +48532,31 @@ this.isHeavy() true 1 this.getNum() -1251397904 +2082351774 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1937217457 +262366552 1 this.scale(this.value) --990 +-1001 1 this.scale(this.shift) -10 +9 1 this.scale(this.getValue()) --990 +-1001 1 this.scale(this.getShift()) -10 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 10 @@ -48644,15 +48564,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +220309324 +1 +l[..] +[1850777594 681094281 1748876332 1747352992 40075281 1878169648 1781241150 825962150 793138072 1418620248 1648001170 169663597 391877669 815320891 101775274 1778629809 565372776 1462044018 1443435931 555273695] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -9344 +8905 this -1579606578 +593687897 1 this.value --90 +-91 1 this.shift 10 @@ -48661,19 +48593,19 @@ this.heavy true 1 this.list1 -1254912232 +187472540 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[1276611190 262457445 1004023029 1414506856 612097453 221634215 2003891312 1583159071 607207372 131206411 2012330741] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +1101184763 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[1816147548 2079179914 20049680 1437654187 951050903 770947228 590646109 1882349076 936292831 130668770 2151717] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48682,7 +48614,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --90 +-91 1 this.getShift() 10 @@ -48691,31 +48623,31 @@ this.isHeavy() true 1 this.getNum() -814227632 +1730704097 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -958012340 +848363848 1 this.scale(this.value) --990 +-1001 1 this.scale(this.shift) -10 +9 1 this.scale(this.getValue()) --990 +-1001 1 this.scale(this.getShift()) -10 +9 1 this.sum(this.getNum()) --180 +-182 1 this.sum(this.getJWrap()) --180 +-182 1 this.retrieve(this.list1) 10 @@ -48723,39 +48655,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +220309324 +1 +l[..] +[1850777594 681094281 1748876332 1747352992 40075281 1878169648 1781241150 825962150 793138072 1418620248 1648001170 169663597 391877669 815320891 101775274 1778629809 565372776 1462044018 1443435931 555273695] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +8940 +value -90 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -9379 +8940 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48767,31 +48721,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1628496821 +1970982267 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -466989532 +917831210 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -48800,41 +48754,57 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-90 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -9379 +8958 +value +-90 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +8958 this -1579606578 +1464555023 1 this.value -90 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1254912232 +195381554 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +57497692 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48846,31 +48816,31 @@ this.getValue() -90 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1787818186 +1403704789 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -269063278 +1190820921 1 this.scale(this.value) --990 +-540 1 this.scale(this.shift) -10 +-65 1 this.scale(this.getValue()) --990 +-540 1 this.scale(this.getShift()) -10 +-65 1 this.sum(this.getNum()) -180 @@ -48879,20 +48849,33 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-90 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +8976 +value +-90 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -9414 +8976 this -1579606578 +532087022 1 this.value -90 @@ -48904,19 +48887,19 @@ this.heavy true 1 this.list1 -1254912232 +1332210474 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +773662650 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -48934,13 +48917,13 @@ this.isHeavy() true 1 this.getNum() -1693436411 +737077247 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -984985986 +1362546706 1 this.scale(this.value) -990 @@ -48966,36 +48949,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-90 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -9414 +8994 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49007,31 +48996,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1855515626 +1496949625 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2041088095 +236840983 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -49040,44 +49029,41 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -9449 +8994 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49089,31 +49075,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -663835487 +1376790324 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -905483844 +893504292 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -49122,41 +49108,44 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-90 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -9449 +9029 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49168,31 +49157,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1397843466 +561480862 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -84034882 +1087081975 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -49201,47 +49190,41 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -1477505695 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -9484 +9029 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49253,31 +49236,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1084805604 +330382173 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -191623398 +680712932 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -49286,41 +49269,44 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -9484 +9064 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49332,31 +49318,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1536463333 +895281180 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1995866203 +694452085 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -49365,20 +49351,17 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -828707681 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -9519 +9064 this -1091987127 +1062635358 1 this.value -90 @@ -49390,19 +49373,19 @@ this.heavy false 1 this.list1 -632396227 +726379593 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +794075965 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49420,13 +49403,13 @@ this.isHeavy() false 1 this.getNum() -1658543772 +857068247 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -807437944 +225344427 1 this.scale(this.value) -90 @@ -49452,15 +49435,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --90 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -9519 +9099 this -1091987127 +1062635358 1 this.value -90 @@ -49472,19 +49455,19 @@ this.heavy false 1 this.list1 -632396227 +726379593 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +794075965 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49502,13 +49485,13 @@ this.isHeavy() false 1 this.getNum() -660359415 +1604353554 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -465200209 +1437941060 1 this.scale(this.value) -90 @@ -49534,42 +49517,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --90 -1 -return --90 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -9554 +9099 this -1810792601 +1062635358 1 this.value -90 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2000483370 +726379593 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +794075965 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49581,31 +49558,31 @@ this.getValue() -90 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1779437583 +1210830415 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1150189359 +912672706 1 this.scale(this.value) --540 +-90 1 this.scale(this.shift) --65 +-90 1 this.scale(this.getValue()) --540 +-90 1 this.scale(this.getShift()) --65 +-90 1 this.sum(this.getNum()) -180 @@ -49614,44 +49591,47 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --90 +return +1785397234 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -9554 +9134 this -1810792601 +1062635358 1 this.value -90 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2000483370 +726379593 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +794075965 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49663,31 +49643,31 @@ this.getValue() -90 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1732250066 +373928166 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -491056883 +8805846 1 this.scale(this.value) --540 +-90 1 this.scale(this.shift) --65 +-90 1 this.scale(this.getValue()) --540 +-90 1 this.scale(this.getShift()) --65 +-90 1 this.sum(this.getNum()) -180 @@ -49696,47 +49676,41 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --90 -1 -return --540 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -9589 +9134 this -1579606578 +1062635358 1 this.value -90 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1254912232 +726379593 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +794075965 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49748,31 +49722,31 @@ this.getValue() -90 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -413377160 +81412691 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -520330075 +963815509 1 this.scale(this.value) --990 +-90 1 this.scale(this.shift) -10 +-90 1 this.scale(this.getValue()) --990 +-90 1 this.scale(this.getShift()) -10 +-90 1 this.sum(this.getNum()) -180 @@ -49781,44 +49755,44 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --90 +return +1659367709 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -9589 +9169 this -1579606578 +1464555023 1 this.value -90 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1254912232 +195381554 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +57497692 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49830,31 +49804,31 @@ this.getValue() -90 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -634159941 +1346201722 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -364788326 +111374580 1 this.scale(this.value) --990 +-540 1 this.scale(this.shift) -10 +-65 1 this.scale(this.getValue()) --990 +-540 1 this.scale(this.getShift()) -10 +-65 1 this.sum(this.getNum()) -180 @@ -49863,47 +49837,41 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --90 -1 -return --990 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -9624 +9169 this -1091987127 +1464555023 1 this.value -90 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -632396227 +195381554 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +57497692 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -49915,31 +49883,31 @@ this.getValue() -90 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2079066544 +717176949 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1164984671 +1997353766 1 this.scale(this.value) --90 +-540 1 this.scale(this.shift) --90 +-65 1 this.scale(this.getValue()) --90 +-540 1 this.scale(this.getShift()) --90 +-65 1 this.sum(this.getNum()) -180 @@ -49948,47 +49916,44 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1288955798 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-90 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -9624 +9204 this -1091987127 +1464555023 1 this.value -90 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -632396227 +195381554 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +57497692 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50000,31 +49965,31 @@ this.getValue() -90 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1812549697 +1288235781 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1467224784 +1374754488 1 this.scale(this.value) --90 +-540 1 this.scale(this.shift) --90 +-65 1 this.scale(this.getValue()) --90 +-540 1 this.scale(this.getShift()) --90 +-65 1 this.sum(this.getNum()) -180 @@ -50033,26 +49998,17 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1288955798 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --180 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -9659 +9204 this -1810792601 +1464555023 1 this.value -90 @@ -50064,19 +50020,19 @@ this.heavy true 1 this.list1 -2000483370 +195381554 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +57497692 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50094,13 +50050,13 @@ this.isHeavy() true 1 this.getNum() -92226187 +27084827 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1709815422 +530042637 1 this.scale(this.value) -540 @@ -50126,18 +50082,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1389117047 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -9659 +9239 this -1810792601 +1464555023 1 this.value -90 @@ -50149,19 +50102,19 @@ this.heavy true 1 this.list1 -2000483370 +195381554 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +57497692 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50179,13 +50132,13 @@ this.isHeavy() true 1 this.getNum() -1595482392 +336371513 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1791745902 +1301352406 1 this.scale(this.value) -540 @@ -50211,45 +50164,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1389117047 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --180 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -9694 +9239 this -1579606578 +1464555023 1 this.value -90 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1254912232 +195381554 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +57497692 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50261,31 +50205,31 @@ this.getValue() -90 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1857676680 +640113647 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1854700674 +124323713 1 this.scale(this.value) --990 +-540 1 this.scale(this.shift) -10 +-65 1 this.scale(this.getValue()) --990 +-540 1 this.scale(this.getShift()) -10 +-65 1 this.sum(this.getNum()) -180 @@ -50294,47 +50238,44 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1229091713 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -9694 +9274 this -1579606578 +1464555023 1 this.value -90 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1254912232 +195381554 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +57497692 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50346,31 +50287,31 @@ this.getValue() -90 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -699219898 +2011997442 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -758309302 +843512726 1 this.scale(this.value) --990 +-540 1 this.scale(this.shift) -10 +-65 1 this.scale(this.getValue()) --990 +-540 1 this.scale(this.getShift()) -10 +-65 1 this.sum(this.getNum()) -180 @@ -50379,50 +50320,41 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1229091713 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --180 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -9729 +9274 this -1091987127 +1464555023 1 this.value -90 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -632396227 +195381554 1 this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2013915864 +57497692 1 this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50434,31 +50366,31 @@ this.getValue() -90 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1736477416 +773989906 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -673167982 +1631086936 1 this.scale(this.value) --90 +-540 1 this.scale(this.shift) --90 +-65 1 this.scale(this.getValue()) --90 +-540 1 this.scale(this.getShift()) --90 +-65 1 this.sum(this.getNum()) -180 @@ -50467,123 +50399,23 @@ this.sum(this.getJWrap()) -180 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -990421078 -1 -l[..] -[861310049 1998212763 1612635955 181386898 1290299593 775392145 1085011019 1496549656 1181594728 1281309687 5897293 331555689 1883884705 2098829214 456214076 1073355542 1023959594 1902432947 306520046 2016627616] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -9729 -this -1091987127 -1 -this.value --90 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -632396227 -1 -this.list1[..] -[786818186 1996437523 1840948333 2021730402 1736603580 646122683 1706613949 1269051511 141163373 1710863723 1828042778] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -2013915864 -1 -this.list2[..] -[1394165881 551889550 625795457 1516826440 523603543 1964245442 1954522010 1741557558 155768696 221907979 1575791861] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --90 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -1873425158 +return +1944978632 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -251398192 -1 -this.scale(this.value) --90 -1 -this.scale(this.shift) --90 -1 -this.scale(this.getValue()) --90 -1 -this.scale(this.getShift()) --90 -1 -this.sum(this.getNum()) --180 -1 -this.sum(this.getJWrap()) --180 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -990421078 -1 -l[..] -[861310049 1998212763 1612635955 181386898 1290299593 775392145 1085011019 1496549656 1181594728 1281309687 5897293 331555689 1883884705 2098829214 456214076 1073355542 1023959594 1902432947 306520046 2016627616] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -9764 +9309 this -1810792601 +1464555023 1 this.value -90 @@ -50595,19 +50427,19 @@ this.heavy true 1 this.list1 -2000483370 +195381554 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +57497692 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50625,13 +50457,13 @@ this.isHeavy() true 1 this.getNum() -1149079295 +1987169128 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -255273594 +1239183618 1 this.scale(this.value) -540 @@ -50657,24 +50489,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -990421078 -1 -l[..] -[861310049 1998212763 1612635955 181386898 1290299593 775392145 1085011019 1496549656 1181594728 1281309687 5897293 331555689 1883884705 2098829214 456214076 1073355542 1023959594 1902432947 306520046 2016627616] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -9764 +9309 this -1810792601 +1464555023 1 this.value -90 @@ -50686,19 +50506,19 @@ this.heavy true 1 this.list1 -2000483370 +195381554 1 this.list1[..] -[1120022158 1518243551 718668003 1205095693 1125037394 2057452770 827021396 1234439188 379919049 830574012 813714184] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -918426392 +57497692 1 this.list2[..] -[2027399355 377932536 1802988373 1831325841 1357780883 1062067559 285390249 1222931192 238558507 100858200 759169917] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50716,13 +50536,13 @@ this.isHeavy() true 1 this.getNum() -1858451299 +1804379080 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1988820325 +1757880885 1 this.scale(this.value) -540 @@ -50748,27 +50568,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -990421078 -1 -l[..] -[861310049 1998212763 1612635955 181386898 1290299593 775392145 1085011019 1496549656 1181594728 1281309687 5897293 331555689 1883884705 2098829214 456214076 1073355542 1023959594 1902432947 306520046 2016627616] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +278240974 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -9799 +9344 this -1579606578 +532087022 1 this.value -90 @@ -50780,19 +50588,19 @@ this.heavy true 1 this.list1 -1254912232 +1332210474 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +773662650 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50810,13 +50618,13 @@ this.isHeavy() true 1 this.getNum() -520236720 +980138431 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1212626103 +888655833 1 this.scale(this.value) -990 @@ -50842,24 +50650,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -990421078 -1 -l[..] -[861310049 1998212763 1612635955 181386898 1290299593 775392145 1085011019 1496549656 1181594728 1281309687 5897293 331555689 1883884705 2098829214 456214076 1073355542 1023959594 1902432947 306520046 2016627616] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -9799 +9344 this -1579606578 +532087022 1 this.value -90 @@ -50871,19 +50667,19 @@ this.heavy true 1 this.list1 -1254912232 +1332210474 1 this.list1[..] -[872986037 668047555 830750369 1630262636 80271179 497975137 724355200 153051557 1799593040 600538932 84689224] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1737613454 +773662650 1 this.list2[..] -[439205825 831006036 1632290611 1952192299 1240810427 87150572 155816350 1022828757 76324664 740890589 1037944017] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50901,13 +50697,13 @@ this.isHeavy() true 1 this.getNum() -987103091 +1710265848 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -930477362 +1504642150 1 this.scale(this.value) -990 @@ -50933,61 +50729,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -990421078 -1 -l[..] -[861310049 1998212763 1612635955 181386898 1290299593 775392145 1085011019 1496549656 1181594728 1281309687 5897293 331555689 1883884705 2098829214 456214076 1073355542 1023959594 1902432947 306520046 2016627616] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -9834 -value --89 -1 -shift -0 +-90 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -9834 +9379 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -50996,93 +50770,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1997726940 +1047460013 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2037343382 +879583678 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --89 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -9852 -value --89 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -9852 +9379 this -3469859 +532087022 1 this.value --89 +-90 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -335861744 +1332210474 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +773662650 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51091,72 +50849,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1719131927 +1431530910 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1205310351 +1954471782 1 this.scale(this.value) --534 +-990 1 this.scale(this.shift) --64 +10 1 this.scale(this.getValue()) --534 +-990 1 this.scale(this.getShift()) --64 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --89 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -9870 -value --89 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -9870 +9414 this -437827106 +532087022 1 this.value --89 +-90 1 this.shift 10 @@ -51165,19 +50910,19 @@ this.heavy true 1 this.list1 -1281195920 +1332210474 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +773662650 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51186,7 +50931,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 10 @@ -51195,31 +50940,31 @@ this.isHeavy() true 1 this.getNum() -1856257760 +1025309396 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1629232351 +1646464088 1 this.scale(this.value) --979 +-990 1 this.scale(this.shift) -11 +10 1 this.scale(this.getValue()) --979 +-990 1 this.scale(this.getShift()) -11 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 10 @@ -51227,42 +50972,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --89 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -9888 +9414 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51271,77 +51010,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2091624007 +752001567 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1764867906 +777379084 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -9888 +9449 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51350,80 +51092,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1090763778 +1950701640 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1546406054 +243194708 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --89 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -9923 +9449 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51432,77 +51171,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1599453584 +931480286 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1963576789 +926434463 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1776409896 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -9923 +9484 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51511,80 +51256,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1453889274 +297602875 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1448092552 +204684384 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -9958 +9484 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51593,56 +51335,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -659350013 +2044366277 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -680049971 +515184459 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1728579441 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -9958 +9519 this -557105680 +1062635358 1 this.value --89 +-90 1 this.shift 0 @@ -51651,19 +51396,19 @@ this.heavy false 1 this.list1 -246462840 +726379593 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +794075965 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51672,7 +51417,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 0 @@ -51681,31 +51426,31 @@ this.isHeavy() false 1 this.getNum() -691893263 +1926096844 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -26122736 +1607792885 1 this.scale(this.value) --89 +-90 1 this.scale(this.shift) --89 +-90 1 this.scale(this.getValue()) --89 +-90 1 this.scale(this.getShift()) --89 +-90 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 0 @@ -51713,18 +51458,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-90 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -9993 +9519 this -557105680 +1062635358 1 this.value --89 +-90 1 this.shift 0 @@ -51733,19 +51478,19 @@ this.heavy false 1 this.list1 -246462840 +726379593 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +794075965 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51754,7 +51499,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 0 @@ -51763,31 +51508,31 @@ this.isHeavy() false 1 this.getNum() -958159964 +1768792843 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1962129742 +1316557528 1 this.scale(this.value) --89 +-90 1 this.scale(this.shift) --89 +-90 1 this.scale(this.getValue()) --89 +-90 1 this.scale(this.getShift()) --89 +-90 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 0 @@ -51795,36 +51540,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-90 +1 +return +-90 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -9993 +9554 this -557105680 +1464555023 1 this.value --89 +-90 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -246462840 +195381554 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +57497692 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51833,83 +51584,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -755690462 +1402433372 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -671306476 +737945227 1 this.scale(this.value) --89 +-540 1 this.scale(this.shift) --89 +-65 1 this.scale(this.getValue()) --89 +-540 1 this.scale(this.getShift()) --89 +-65 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -1916344441 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-90 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -10028 +9554 this -557105680 +1464555023 1 this.value --89 +-90 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -246462840 +195381554 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +57497692 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51918,77 +51666,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -41282181 +797814020 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -192398086 +702846463 1 this.scale(this.value) --89 +-540 1 this.scale(this.shift) --89 +-65 1 this.scale(this.getValue()) --89 +-540 1 this.scale(this.getShift()) --89 +-65 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-90 +1 +return +-540 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -10028 +9589 this -557105680 +532087022 1 this.value --89 +-90 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -246462840 +1332210474 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +773662650 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -51997,80 +51751,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1671742667 +1105322512 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1450450568 +199449817 1 this.scale(this.value) --89 +-990 1 this.scale(this.shift) --89 +10 1 this.scale(this.getValue()) --89 +-990 1 this.scale(this.getShift()) --89 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -1635819279 +scale +-90 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -10063 +9589 this -3469859 +532087022 1 this.value --89 +-90 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -335861744 +1332210474 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +773662650 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52079,77 +51833,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1128973259 +1229202732 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1635542768 +1149377174 1 this.scale(this.value) --534 +-990 1 this.scale(this.shift) --64 +10 1 this.scale(this.getValue()) --534 +-990 1 this.scale(this.getShift()) --64 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-90 +1 +return +-990 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -10063 +9624 this -3469859 +1062635358 1 this.value --89 +-90 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -335861744 +726379593 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +794075965 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52158,80 +51918,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -776620176 +171802996 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -249691566 +464064894 1 this.scale(this.value) --534 +-90 1 this.scale(this.shift) --64 +-90 1 this.scale(this.getValue()) --534 +-90 1 this.scale(this.getShift()) --64 +-90 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --89 +n +1932274274 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -10098 +9624 this -3469859 +1062635358 1 this.value --89 +-90 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -335861744 +726379593 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +794075965 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52240,56 +52003,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -383103524 +657381435 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -664954162 +1107217291 1 this.scale(this.value) --534 +-90 1 this.scale(this.shift) --64 +-90 1 this.scale(this.getValue()) --534 +-90 1 this.scale(this.getShift()) --64 +-90 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1932274274 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-180 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -10098 +9659 this -3469859 +1464555023 1 this.value --89 +-90 1 this.shift 5 @@ -52298,19 +52070,19 @@ this.heavy true 1 this.list1 -335861744 +195381554 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +57497692 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52319,7 +52091,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 5 @@ -52328,31 +52100,31 @@ this.isHeavy() true 1 this.getNum() -379701746 +302977067 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1473329785 +6444850 1 this.scale(this.value) --534 +-540 1 this.scale(this.shift) --64 +-65 1 this.scale(this.getValue()) --534 +-540 1 this.scale(this.getShift()) --64 +-65 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 5 @@ -52360,18 +52132,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +1373419525 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -10133 +9659 this -3469859 +1464555023 1 this.value --89 +-90 1 this.shift 5 @@ -52380,19 +52155,19 @@ this.heavy true 1 this.list1 -335861744 +195381554 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +57497692 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52401,7 +52176,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 5 @@ -52410,31 +52185,31 @@ this.isHeavy() true 1 this.getNum() -1767246585 +1716093734 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -267032438 +212683148 1 this.scale(this.value) --534 +-540 1 this.scale(this.shift) --64 +-65 1 this.scale(this.getValue()) --534 +-540 1 this.scale(this.getShift()) --64 +-65 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 5 @@ -52442,36 +52217,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1373419525 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-180 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -10133 +9694 this -3469859 +532087022 1 this.value --89 +-90 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -335861744 +1332210474 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +773662650 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52480,80 +52264,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1920846883 +509891820 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -551897230 +718068661 1 this.scale(this.value) --534 +-990 1 this.scale(this.shift) --64 +10 1 this.scale(this.getValue()) --534 +-990 1 this.scale(this.getShift()) --64 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +11939193 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -10168 +9694 this -3469859 +532087022 1 this.value --89 +-90 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -335861744 +1332210474 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +773662650 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52562,77 +52349,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -754873217 +1714550218 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1968255290 +1523457748 1 this.scale(this.value) --534 +-990 1 this.scale(this.shift) --64 +10 1 this.scale(this.getValue()) --534 +-990 1 this.scale(this.getShift()) --64 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +11939193 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-180 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -10168 +9729 this -3469859 +1062635358 1 this.value --89 +-90 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -335861744 +726379593 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +794075965 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52641,83 +52437,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -628560642 +370370379 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -746650501 +671046933 1 this.scale(this.value) --534 +-90 1 this.scale(this.shift) --64 +-90 1 this.scale(this.getValue()) --534 +-90 1 this.scale(this.getShift()) --64 +-90 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -1208020886 +l +1309238149 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1687940142 1765795529 888473870 837108062 170144208 482052083 1720339 460201727 812586739 1881901842 585324508 1234250905 16868310 769530879 364639279 1427040229 1604002113 38262958 1217875525 1787079037] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -10203 +9729 this -3469859 +1062635358 1 this.value --89 +-90 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -335861744 +726379593 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[265321659 896644936 1050065615 1212772528 1148254374 2089016471 2001223946 1946645411 938545229 1433666880 1610702581] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +794075965 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[270056930 1706292388 254801937 90767234 1355457888 707161353 1522132780 409962262 495702238 73181251 298430307] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52726,56 +52528,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -896632264 +1813187653 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -805710049 +1353530305 1 this.scale(this.value) --534 +-90 1 this.scale(this.shift) --64 +-90 1 this.scale(this.getValue()) --534 +-90 1 this.scale(this.getShift()) --64 +-90 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1309238149 +1 +l[..] +[1687940142 1765795529 888473870 837108062 170144208 482052083 1720339 460201727 812586739 1881901842 585324508 1234250905 16868310 769530879 364639279 1427040229 1604002113 38262958 1217875525 1787079037] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -10203 +9764 this -3469859 +1464555023 1 this.value --89 +-90 1 this.shift 5 @@ -52784,19 +52601,19 @@ this.heavy true 1 this.list1 -335861744 +195381554 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +57497692 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52805,7 +52622,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 5 @@ -52814,31 +52631,31 @@ this.isHeavy() true 1 this.getNum() -1684399208 +574268151 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1568054102 +1832532108 1 this.scale(this.value) --534 +-540 1 this.scale(this.shift) --64 +-65 1 this.scale(this.getValue()) --534 +-540 1 this.scale(this.getShift()) --64 +-65 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 5 @@ -52846,39 +52663,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -365976330 +l +1309238149 +1 +l[..] +[1687940142 1765795529 888473870 837108062 170144208 482052083 1720339 460201727 812586739 1881901842 585324508 1234250905 16868310 769530879 364639279 1427040229 1604002113 38262958 1217875525 1787079037] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -10238 +9764 this -437827106 +1464555023 1 this.value --89 +-90 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1281195920 +195381554 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[681008168 960733886 875917495 360207322 119290689 594427726 1019298652 1810899357 231786897 1595282218 1778081847] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +57497692 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[142247393 1729779847 1431467659 1016363973 1620948027 1442191055 324457684 201576232 20094719 1687662712 1103243338] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52887,56 +52713,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -571013302 +423583818 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2063631918 +552936351 1 this.scale(this.value) --979 +-540 1 this.scale(this.shift) -11 +-65 1 this.scale(this.getValue()) --979 +-540 1 this.scale(this.getShift()) -11 +-65 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +1309238149 +1 +l[..] +[1687940142 1765795529 888473870 837108062 170144208 482052083 1720339 460201727 812586739 1881901842 585324508 1234250905 16868310 769530879 364639279 1427040229 1604002113 38262958 1217875525 1787079037] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -10238 +9799 this -437827106 +532087022 1 this.value --89 +-90 1 this.shift 10 @@ -52945,19 +52786,19 @@ this.heavy true 1 this.list1 -1281195920 +1332210474 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +773662650 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -52966,7 +52807,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 10 @@ -52975,31 +52816,31 @@ this.isHeavy() true 1 this.getNum() -1600746776 +1471086700 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -75934616 +1810742349 1 this.scale(this.value) --979 +-990 1 this.scale(this.shift) -11 +10 1 this.scale(this.getValue()) --979 +-990 1 this.scale(this.getShift()) -11 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 10 @@ -53007,18 +52848,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --89 +l +1309238149 +1 +l[..] +[1687940142 1765795529 888473870 837108062 170144208 482052083 1720339 460201727 812586739 1881901842 585324508 1234250905 16868310 769530879 364639279 1427040229 1604002113 38262958 1217875525 1787079037] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -10273 +9799 this -437827106 +532087022 1 this.value --89 +-90 1 this.shift 10 @@ -53027,19 +52877,19 @@ this.heavy true 1 this.list1 -1281195920 +1332210474 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[1248234350 1600667055 2030036700 137460818 1995619265 1760126453 1864869682 1819776360 255334292 752684363 2123444693] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +773662650 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1641415002 623247230 1380806038 355115154 1151844284 1324578393 2003534796 931496835 1311146128 464676531 812446698] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53048,7 +52898,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --89 +-90 1 this.getShift() 10 @@ -53057,31 +52907,31 @@ this.isHeavy() true 1 this.getNum() -627804794 +154319946 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -928015047 +13803304 1 this.scale(this.value) --979 +-990 1 this.scale(this.shift) -11 +10 1 this.scale(this.getValue()) --979 +-990 1 this.scale(this.getShift()) -11 +10 1 this.sum(this.getNum()) --178 +-180 1 this.sum(this.getJWrap()) --178 +-180 1 this.retrieve(this.list1) 10 @@ -53089,36 +52939,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1309238149 +1 +l[..] +[1687940142 1765795529 888473870 837108062 170144208 482052083 1720339 460201727 812586739 1881901842 585324508 1234250905 16868310 769530879 364639279 1427040229 1604002113 38262958 1217875525 1787079037] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -10273 +9834 +value +-89 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +9834 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53130,31 +53005,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2122650415 +2051120548 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1387180941 +341138954 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -53163,44 +53038,57 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-89 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -10308 +9852 +value +-89 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +9852 this -437827106 +1270038388 1 this.value -89 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1281195920 +1973233403 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +1212116343 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53212,31 +53100,31 @@ this.getValue() -89 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1267603555 +263885523 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1575170645 +1714113641 1 this.scale(this.value) --979 +-534 1 this.scale(this.shift) -11 +-64 1 this.scale(this.getValue()) --979 +-534 1 this.scale(this.getShift()) -11 +-64 1 this.sum(this.getNum()) -178 @@ -53245,17 +53133,33 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-89 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +9870 +value +-89 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -10308 +9870 this -437827106 +262445056 1 this.value -89 @@ -53267,19 +53171,19 @@ this.heavy true 1 this.list1 -1281195920 +1898155970 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +1910438136 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53297,13 +53201,13 @@ this.isHeavy() true 1 this.getNum() -1862113946 +259219561 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1269902691 +1839337592 1 this.scale(this.value) -979 @@ -53329,39 +53233,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-89 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -10343 +9888 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53373,31 +53280,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1562043751 +2146338580 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -281738482 +1110031167 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -53406,41 +53313,41 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -10343 +9888 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53452,31 +53359,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2124708986 +1456339771 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1625845386 +730923082 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -53485,47 +53392,44 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1001478074 -1 -return.getClass().getName() -"java.lang.Integer" +-89 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -10378 +9923 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53537,31 +53441,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2012648179 +550302731 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1563020556 +800281454 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -53570,41 +53474,41 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -10378 +9923 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53616,31 +53520,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1666514588 +379478400 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1628956342 +900636745 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -53649,20 +53553,20 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1747708038 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -10413 +9958 this -557105680 +802243390 1 this.value -89 @@ -53674,19 +53578,19 @@ this.heavy false 1 this.list1 -246462840 +702061917 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +270095066 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53704,13 +53608,13 @@ this.isHeavy() false 1 this.getNum() -447671000 +1912960603 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1371281559 +1201173334 1 this.scale(this.value) -89 @@ -53736,15 +53640,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --89 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -10413 +9958 this -557105680 +802243390 1 this.value -89 @@ -53756,19 +53657,19 @@ this.heavy false 1 this.list1 -246462840 +702061917 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +270095066 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53786,13 +53687,13 @@ this.isHeavy() false 1 this.getNum() -334662509 +586127428 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -413117270 +1652807864 1 this.scale(this.value) -89 @@ -53818,42 +53719,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --89 -1 return --89 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -10448 +9993 this -3469859 +802243390 1 this.value -89 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -335861744 +702061917 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +270095066 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53865,31 +53763,31 @@ this.getValue() -89 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -447326139 +997055773 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2017653673 +1063980005 1 this.scale(this.value) --534 +-89 1 this.scale(this.shift) --64 +-89 1 this.scale(this.getValue()) --534 +-89 1 this.scale(this.getShift()) --64 +-89 1 this.sum(this.getNum()) -178 @@ -53898,44 +53796,41 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --89 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -10448 +9993 this -3469859 +802243390 1 this.value -89 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -335861744 +702061917 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +270095066 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -53947,31 +53842,31 @@ this.getValue() -89 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1938495981 +1628998132 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -827544030 +497208183 1 this.scale(this.value) --534 +-89 1 this.scale(this.shift) --64 +-89 1 this.scale(this.getValue()) --534 +-89 1 this.scale(this.getShift()) --64 +-89 1 this.sum(this.getNum()) -178 @@ -53980,47 +53875,47 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --89 +0 1 return --534 +1223850219 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -10483 +10028 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54032,31 +53927,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1428414238 +790722099 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -638408253 +173214986 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -54065,44 +53960,41 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --89 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -10483 +10028 this -437827106 +802243390 1 this.value -89 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1281195920 +702061917 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +270095066 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54114,31 +54006,31 @@ this.getValue() -89 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -899207759 +27362884 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1142381574 +1523553211 1 this.scale(this.value) --979 +-89 1 this.scale(this.shift) -11 +-89 1 this.scale(this.getValue()) --979 +-89 1 this.scale(this.getShift()) -11 +-89 1 this.sum(this.getNum()) -178 @@ -54147,47 +54039,44 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --89 +0 1 return --979 +2122049087 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -10518 +10063 this -557105680 +1270038388 1 this.value -89 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -246462840 +1973233403 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +1212116343 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54199,31 +54088,31 @@ this.getValue() -89 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1503310038 +1825738663 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -986701711 +1632413663 1 this.scale(this.value) --89 +-534 1 this.scale(this.shift) --89 +-64 1 this.scale(this.getValue()) --89 +-534 1 this.scale(this.getShift()) --89 +-64 1 this.sum(this.getNum()) -178 @@ -54232,47 +54121,41 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -626934643 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -10518 +10063 this -557105680 +1270038388 1 this.value -89 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -246462840 +1973233403 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +1212116343 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54284,31 +54167,31 @@ this.getValue() -89 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1335772719 +1194893830 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -538042495 +1725165248 1 this.scale(this.value) --89 +-534 1 this.scale(this.shift) --89 +-64 1 this.scale(this.getValue()) --89 +-534 1 this.scale(this.getShift()) --89 +-64 1 this.sum(this.getNum()) -178 @@ -54317,26 +54200,99 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -626934643 +return +-89 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +10098 +this +1270038388 +1 +this.value +-89 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +1973233403 +1 +this.list1[..] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1212116343 +1 +this.list2[..] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-89 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +503642634 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +452121674 +1 +this.scale(this.value) +-534 +1 +this.scale(this.shift) +-64 +1 +this.scale(this.getValue()) +-534 +1 +this.scale(this.getShift()) +-64 +1 +this.sum(this.getNum()) +-178 +1 +this.sum(this.getJWrap()) -178 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -10553 +10098 this -3469859 +1270038388 1 this.value -89 @@ -54348,19 +54304,19 @@ this.heavy true 1 this.list1 -335861744 +1973233403 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +1212116343 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54378,13 +54334,13 @@ this.isHeavy() true 1 this.getNum() -1974059595 +416841088 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1544750662 +1636050357 1 this.scale(this.value) -534 @@ -54410,18 +54366,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1694567651 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -10553 +10133 this -3469859 +1270038388 1 this.value -89 @@ -54433,19 +54386,19 @@ this.heavy true 1 this.list1 -335861744 +1973233403 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +1212116343 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54463,13 +54416,13 @@ this.isHeavy() true 1 this.getNum() -670383843 +1483298597 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1442037139 +1412794598 1 this.scale(this.value) -534 @@ -54495,45 +54448,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1694567651 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --178 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -10588 +10133 this -437827106 +1270038388 1 this.value -89 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1281195920 +1973233403 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +1212116343 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54545,31 +54489,31 @@ this.getValue() -89 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1965238778 +257608605 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1469650986 +1337192014 1 this.scale(this.value) --979 +-534 1 this.scale(this.shift) -11 +-64 1 this.scale(this.getValue()) --979 +-534 1 this.scale(this.getShift()) -11 +-64 1 this.sum(this.getNum()) -178 @@ -54578,47 +54522,44 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -67213908 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -10588 +10168 this -437827106 +1270038388 1 this.value -89 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1281195920 +1973233403 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +1212116343 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54630,31 +54571,31 @@ this.getValue() -89 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -87753434 +1567705314 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1698183396 +637241618 1 this.scale(this.value) --979 +-534 1 this.scale(this.shift) -11 +-64 1 this.scale(this.getValue()) --979 +-534 1 this.scale(this.getShift()) -11 +-64 1 this.sum(this.getNum()) -178 @@ -54663,50 +54604,41 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -67213908 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --178 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -10623 +10168 this -557105680 +1270038388 1 this.value -89 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -246462840 +1973233403 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +1212116343 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54718,31 +54650,31 @@ this.getValue() -89 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1310667942 +2082781203 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1656333915 +741730375 1 this.scale(this.value) --89 +-534 1 this.scale(this.shift) --89 +-64 1 this.scale(this.getValue()) --89 +-534 1 this.scale(this.getShift()) --89 +-64 1 this.sum(this.getNum()) -178 @@ -54751,53 +54683,47 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -173593344 -1 -l[..] -[1300539982 1086918308 1340101174 271941682 678648558 760665089 528000232 697469820 1409519414 900681041 134028384 2052187832 386037957 591845712 6628680 1886558763 1944565433 1905092385 2054021572 1140935079] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +2077528955 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -10623 +10203 this -557105680 +1270038388 1 this.value -89 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -246462840 +1973233403 1 this.list1[..] -[1952480464 1789032288 1347122769 172288262 840863278 1946716086 1543895357 204358398 825243633 1420347505 352296483] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -434575002 +1212116343 1 this.list2[..] -[310175167 1171220500 867835098 2143045309 566780879 1796258908 398357230 1483436911 1986505154 263863369 197911728] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54809,31 +54735,31 @@ this.getValue() -89 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -814388690 +35534346 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1517430499 +1537471098 1 this.scale(this.value) --89 +-534 1 this.scale(this.shift) --89 +-64 1 this.scale(this.getValue()) --89 +-534 1 this.scale(this.getShift()) --89 +-64 1 this.sum(this.getNum()) -178 @@ -54842,32 +54768,17 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -173593344 -1 -l[..] -[1300539982 1086918308 1340101174 271941682 678648558 760665089 528000232 697469820 1409519414 900681041 134028384 2052187832 386037957 591845712 6628680 1886558763 1944565433 1905092385 2054021572 1140935079] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -10658 +10203 this -3469859 +1270038388 1 this.value -89 @@ -54879,19 +54790,19 @@ this.heavy true 1 this.list1 -335861744 +1973233403 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +1212116343 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54909,13 +54820,13 @@ this.isHeavy() true 1 this.getNum() -2086088568 +1490509465 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1072541454 +122114483 1 this.scale(this.value) -534 @@ -54941,48 +54852,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -173593344 -1 -l[..] -[1300539982 1086918308 1340101174 271941682 678648558 760665089 528000232 697469820 1409519414 900681041 134028384 2052187832 386037957 591845712 6628680 1886558763 1944565433 1905092385 2054021572 1140935079] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +1947896119 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -10658 +10238 this -3469859 +262445056 1 this.value -89 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -335861744 +1898155970 1 this.list1[..] -[1241307092 1992148286 618702425 415838201 1080856869 397227310 1820224294 1605157743 1196612987 290118354 1231296988] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1256054824 +1910438136 1 this.list2[..] -[749176958 720510745 2111289429 1569133822 1332961194 529382054 299432057 1000397078 1024217583 1943486776 955973362] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -54994,31 +54896,31 @@ this.getValue() -89 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -226484460 +812553708 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1183296736 +1387210478 1 this.scale(this.value) --534 +-979 1 this.scale(this.shift) --64 +11 1 this.scale(this.getValue()) --534 +-979 1 this.scale(this.getShift()) --64 +11 1 this.sum(this.getNum()) -178 @@ -55027,32 +54929,99 @@ this.sum(this.getJWrap()) -178 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -173593344 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +10238 +this +262445056 1 -l[..] -[1300539982 1086918308 1340101174 271941682 678648558 760665089 528000232 697469820 1409519414 900681041 134028384 2052187832 386037957 591845712 6628680 1886558763 1944565433 1905092385 2054021572 1140935079] +this.value +-89 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +1898155970 +1 +this.list1[..] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1910438136 +1 +this.list2[..] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 +this.getValue() +-89 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +1876443073 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +1328238652 +1 +this.scale(this.value) +-979 +1 +this.scale(this.shift) +11 +1 +this.scale(this.getValue()) +-979 +1 +this.scale(this.getShift()) +11 +1 +this.sum(this.getNum()) +-178 +1 +this.sum(this.getJWrap()) +-178 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 return -5 +-89 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -10693 +10273 this -437827106 +262445056 1 this.value -89 @@ -55064,19 +55033,19 @@ this.heavy true 1 this.list1 -1281195920 +1898155970 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +1910438136 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55094,13 +55063,13 @@ this.isHeavy() true 1 this.getNum() -1969670732 +195984832 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -795574219 +547201549 1 this.scale(this.value) -979 @@ -55126,24 +55095,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -173593344 -1 -l[..] -[1300539982 1086918308 1340101174 271941682 678648558 760665089 528000232 697469820 1409519414 900681041 134028384 2052187832 386037957 591845712 6628680 1886558763 1944565433 1905092385 2054021572 1140935079] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -10693 +10273 this -437827106 +262445056 1 this.value -89 @@ -55155,19 +55112,19 @@ this.heavy true 1 this.list1 -1281195920 +1898155970 1 this.list1[..] -[241298971 1062680061 1989776775 1562906341 1894386730 365220688 755840090 1038620625 1349761559 1572758852 2129298288] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1448832808 +1910438136 1 this.list2[..] -[215930723 2047781678 1493735324 1125757038 1267607596 1643087732 883294951 2131273393 284684191 93632621 1725431543] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55185,13 +55142,13 @@ this.isHeavy() true 1 this.getNum() -982712511 +236304360 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -152443300 +455785638 1 this.scale(this.value) -979 @@ -55217,61 +55174,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -173593344 -1 -l[..] -[1300539982 1086918308 1340101174 271941682 678648558 760665089 528000232 697469820 1409519414 900681041 134028384 2052187832 386037957 591845712 6628680 1886558763 1944565433 1905092385 2054021572 1140935079] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -10728 -value --88 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -10728 +10308 this -166552229 +262445056 1 this.value --88 +-89 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1072120762 +1898155970 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1910438136 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55280,93 +55215,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1546621533 +1670546046 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -926041843 +785570251 1 this.scale(this.value) --88 +-979 1 this.scale(this.shift) --88 +11 1 this.scale(this.getValue()) --88 +-979 1 this.scale(this.getShift()) --88 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --88 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -10746 -value --88 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -10746 +10308 this -1171265492 +262445056 1 this.value --88 +-89 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1624015642 +1898155970 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1910438136 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55375,72 +55294,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -699293407 +224100622 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1993775065 +1138410383 1 this.scale(this.value) --528 +-979 1 this.scale(this.shift) --63 +11 1 this.scale(this.getValue()) --528 +-979 1 this.scale(this.getShift()) --63 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --88 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -10764 -value --88 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -10764 +10343 this -42689667 +262445056 1 this.value --88 +-89 1 this.shift 10 @@ -55449,19 +55355,19 @@ this.heavy true 1 this.list1 -225695171 +1898155970 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1910438136 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55470,7 +55376,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 10 @@ -55479,31 +55385,31 @@ this.isHeavy() true 1 this.getNum() -1679839966 +875313400 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -102801453 +210281271 1 this.scale(this.value) --968 +-979 1 this.scale(this.shift) -12 +11 1 this.scale(this.getValue()) --968 +-979 1 this.scale(this.getShift()) -12 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 10 @@ -55511,42 +55417,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --88 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -10782 +10343 this -166552229 +262445056 1 this.value --88 +-89 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1072120762 +1898155970 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1910438136 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55555,77 +55455,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1207168383 +1560940633 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1600999872 +1213818572 1 this.scale(this.value) --88 +-979 1 this.scale(this.shift) --88 +11 1 this.scale(this.getValue()) --88 +-979 1 this.scale(this.getShift()) --88 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +501705927 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -10782 +10378 this -166552229 +262445056 1 this.value --88 +-89 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1072120762 +1898155970 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1910438136 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55634,80 +55540,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -34751794 +1421866327 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2105333421 +1497018177 1 this.scale(this.value) --88 +-979 1 this.scale(this.shift) --88 +11 1 this.scale(this.getValue()) --88 +-979 1 this.scale(this.getShift()) --88 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --88 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -10817 +10378 this -166552229 +262445056 1 this.value --88 +-89 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1072120762 +1898155970 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1910438136 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55716,56 +55619,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -250755128 +1515638188 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1078520882 +2087785333 1 this.scale(this.value) --88 +-979 1 this.scale(this.shift) --88 +11 1 this.scale(this.getValue()) --88 +-979 1 this.scale(this.getShift()) --88 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1473205473 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -10817 +10413 this -166552229 +802243390 1 this.value --88 +-89 1 this.shift 0 @@ -55774,19 +55680,19 @@ this.heavy false 1 this.list1 -1072120762 +702061917 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +270095066 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55795,7 +55701,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 0 @@ -55804,31 +55710,31 @@ this.isHeavy() false 1 this.getNum() -1938483094 +1526970878 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -610952221 +936653983 1 this.scale(this.value) --88 +-89 1 this.scale(this.shift) --88 +-89 1 this.scale(this.getValue()) --88 +-89 1 this.scale(this.getShift()) --88 +-89 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 0 @@ -55836,18 +55742,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-89 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -10852 +10413 this -166552229 +802243390 1 this.value --88 +-89 1 this.shift 0 @@ -55856,19 +55762,19 @@ this.heavy false 1 this.list1 -1072120762 +702061917 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +270095066 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55877,7 +55783,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 0 @@ -55886,31 +55792,31 @@ this.isHeavy() false 1 this.getNum() -1154662040 +1128948651 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1742671988 +1846501247 1 this.scale(this.value) --88 +-89 1 this.scale(this.shift) --88 +-89 1 this.scale(this.getValue()) --88 +-89 1 this.scale(this.getShift()) --88 +-89 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 0 @@ -55918,36 +55824,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-89 +1 +return +-89 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -10852 +10448 this -166552229 +1270038388 1 this.value --88 +-89 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1072120762 +1973233403 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1212116343 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -55956,80 +55868,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1706124530 +671471369 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1633320966 +1055096410 1 this.scale(this.value) --88 +-534 1 this.scale(this.shift) --88 +-64 1 this.scale(this.getValue()) --88 +-534 1 this.scale(this.getShift()) --88 +-64 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-89 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -10887 +10448 this -166552229 +1270038388 1 this.value --88 +-89 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1072120762 +1973233403 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1212116343 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56038,77 +55950,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2089499608 +782505238 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -419832265 +977552154 1 this.scale(this.value) --88 +-534 1 this.scale(this.shift) --88 +-64 1 this.scale(this.getValue()) --88 +-534 1 this.scale(this.getShift()) --88 +-64 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-89 +1 +return +-534 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -10887 +10483 this -166552229 +262445056 1 this.value --88 +-89 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1072120762 +1898155970 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1910438136 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56117,83 +56035,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1637097460 +1014982340 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1136524856 +424398527 1 this.scale(this.value) --88 +-979 1 this.scale(this.shift) --88 +11 1 this.scale(this.getValue()) --88 +-979 1 this.scale(this.getShift()) --88 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1853698374 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-89 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -10922 +10483 this -166552229 +262445056 1 this.value --88 +-89 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1072120762 +1898155970 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1910438136 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56202,56 +56117,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1563304789 +390689829 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1167678 +252553541 1 this.scale(this.value) --88 +-979 1 this.scale(this.shift) --88 +11 1 this.scale(this.getValue()) --88 +-979 1 this.scale(this.getShift()) --88 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-89 +1 +return +-979 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -10922 +10518 this -166552229 +802243390 1 this.value --88 +-89 1 this.shift 0 @@ -56260,19 +56181,19 @@ this.heavy false 1 this.list1 -1072120762 +702061917 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +270095066 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56281,7 +56202,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 0 @@ -56290,31 +56211,31 @@ this.isHeavy() false 1 this.getNum() -297811323 +1208203046 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1678008151 +268084911 1 this.scale(this.value) --88 +-89 1 this.scale(this.shift) --88 +-89 1 this.scale(this.getValue()) --88 +-89 1 this.scale(this.getShift()) --88 +-89 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 0 @@ -56322,39 +56243,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -1527741453 +n +1406014249 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -10957 +10518 this -1171265492 +802243390 1 this.value --88 +-89 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1624015642 +702061917 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +270095066 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56363,56 +56287,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1436117039 +829149076 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1250365840 +1678046232 1 this.scale(this.value) --528 +-89 1 this.scale(this.shift) --63 +-89 1 this.scale(this.getValue()) --528 +-89 1 this.scale(this.getShift()) --63 +-89 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1406014249 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-178 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -10957 +10553 this -1171265492 +1270038388 1 this.value --88 +-89 1 this.shift 5 @@ -56421,19 +56354,19 @@ this.heavy true 1 this.list1 -1624015642 +1973233403 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1212116343 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56442,7 +56375,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 5 @@ -56451,31 +56384,31 @@ this.isHeavy() true 1 this.getNum() -1771186985 +1041365481 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2068825828 +501609049 1 this.scale(this.value) --528 +-534 1 this.scale(this.shift) --63 +-64 1 this.scale(this.getValue()) --528 +-534 1 this.scale(this.getShift()) --63 +-64 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 5 @@ -56483,18 +56416,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --88 +n +1922930974 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -10992 +10553 this -1171265492 +1270038388 1 this.value --88 +-89 1 this.shift 5 @@ -56503,19 +56439,19 @@ this.heavy true 1 this.list1 -1624015642 +1973233403 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1212116343 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56524,7 +56460,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 5 @@ -56533,31 +56469,31 @@ this.isHeavy() true 1 this.getNum() -847962619 +838473569 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1006256041 +9797126 1 this.scale(this.value) --528 +-534 1 this.scale(this.shift) --63 +-64 1 this.scale(this.getValue()) --528 +-534 1 this.scale(this.getShift()) --63 +-64 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 5 @@ -56565,36 +56501,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1922930974 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-178 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -10992 +10588 this -1171265492 +262445056 1 this.value --88 +-89 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1624015642 +1898155970 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1910438136 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56603,80 +56548,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -711560962 +844112759 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2016141838 +739973450 1 this.scale(this.value) --528 +-979 1 this.scale(this.shift) --63 +11 1 this.scale(this.getValue()) --528 +-979 1 this.scale(this.getShift()) --63 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +1304117943 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -11027 +10588 this -1171265492 +262445056 1 this.value --88 +-89 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1624015642 +1898155970 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1910438136 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56685,77 +56633,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -151405253 +1727361096 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2047449123 +1426963578 1 this.scale(this.value) --528 +-979 1 this.scale(this.shift) --63 +11 1 this.scale(this.getValue()) --528 +-979 1 this.scale(this.getShift()) --63 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1304117943 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-178 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -11027 +10623 this -1171265492 +802243390 1 this.value --88 +-89 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1624015642 +702061917 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +270095066 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56764,80 +56721,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -199450733 +556281560 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2093980211 +915500720 1 this.scale(this.value) --528 +-89 1 this.scale(this.shift) --63 +-89 1 this.scale(this.getValue()) --528 +-89 1 this.scale(this.getShift()) --63 +-89 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +2074820378 +1 +l[..] +[1132307065 599984672 505021446 1022081840 313239742 688005825 1744189907 103103526 1225038340 1906879951 658909832 137225802 1704237553 1374066265 1206051975 538592647 1627396964 70323523 1420232606 652433136] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -11062 +10623 this -1171265492 +802243390 1 this.value --88 +-89 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1624015642 +702061917 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[890545344 556488341 71706941 1771667101 2033968586 48208774 929383713 363509958 865667596 1306834002 1354083458] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +270095066 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1806431167 50699452 2125062626 620557167 285133380 1068586139 245765246 1292040526 726181440 510147134 542365801] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56846,56 +56812,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -563399241 +1205445235 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -795643864 +1267655902 1 this.scale(this.value) --528 +-89 1 this.scale(this.shift) --63 +-89 1 this.scale(this.getValue()) --528 +-89 1 this.scale(this.getShift()) --63 +-89 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +2074820378 +1 +l[..] +[1132307065 599984672 505021446 1022081840 313239742 688005825 1744189907 103103526 1225038340 1906879951 658909832 137225802 1704237553 1374066265 1206051975 538592647 1627396964 70323523 1420232606 652433136] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -11062 +10658 this -1171265492 +1270038388 1 this.value --88 +-89 1 this.shift 5 @@ -56904,19 +56885,19 @@ this.heavy true 1 this.list1 -1624015642 +1973233403 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1212116343 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -56925,7 +56906,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 5 @@ -56934,31 +56915,31 @@ this.isHeavy() true 1 this.getNum() -5752379 +670663110 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -43469738 +454104863 1 this.scale(this.value) --528 +-534 1 this.scale(this.shift) --63 +-64 1 this.scale(this.getValue()) --528 +-534 1 this.scale(this.getShift()) --63 +-64 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 5 @@ -56966,21 +56947,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -451446586 +l +2074820378 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1132307065 599984672 505021446 1022081840 313239742 688005825 1744189907 103103526 1225038340 1906879951 658909832 137225802 1704237553 1374066265 1206051975 538592647 1627396964 70323523 1420232606 652433136] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -11097 +10658 this -1171265492 +1270038388 1 this.value --88 +-89 1 this.shift 5 @@ -56989,19 +56976,19 @@ this.heavy true 1 this.list1 -1624015642 +1973233403 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[63387985 1029472813 1866875501 1936722816 1237825806 282265585 1297836716 1048855692 1249875355 1117519786 1409545055] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1212116343 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[2119891622 1671507048 687059528 454305524 850551034 1478150312 1833848849 1473771722 1992550266 2014461570 1740846921] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57010,7 +56997,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 5 @@ -57019,31 +57006,31 @@ this.isHeavy() true 1 this.getNum() -403046051 +290579508 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -831556519 +767904468 1 this.scale(this.value) --528 +-534 1 this.scale(this.shift) --63 +-64 1 this.scale(this.getValue()) --528 +-534 1 this.scale(this.getShift()) --63 +-64 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 5 @@ -57051,36 +57038,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +2074820378 +1 +l[..] +[1132307065 599984672 505021446 1022081840 313239742 688005825 1744189907 103103526 1225038340 1906879951 658909832 137225802 1704237553 1374066265 1206051975 538592647 1627396964 70323523 1420232606 652433136] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -11097 +10693 this -1171265492 +262445056 1 this.value --88 +-89 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1624015642 +1898155970 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1910438136 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57089,59 +57091,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -146840157 +1180244251 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -483808296 +1432569632 1 this.scale(this.value) --528 +-979 1 this.scale(this.shift) --63 +11 1 this.scale(this.getValue()) --528 +-979 1 this.scale(this.getShift()) --63 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -992943330 +l +2074820378 +1 +l[..] +[1132307065 599984672 505021446 1022081840 313239742 688005825 1744189907 103103526 1225038340 1906879951 658909832 137225802 1704237553 1374066265 1206051975 538592647 1627396964 70323523 1420232606 652433136] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -11132 +10693 this -42689667 +262445056 1 this.value --88 +-89 1 this.shift 10 @@ -57150,19 +57161,19 @@ this.heavy true 1 this.list1 -225695171 +1898155970 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[710190911 379645464 1030684756 1348453796 1606286799 1325144078 198499365 621300254 359368949 1006227006 375457936] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1910438136 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[943454742 1296456465 1409154977 1432536094 854487022 1292838001 1899223686 842179210 1944201789 1207608476 686989583] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57171,7 +57182,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --88 +-89 1 this.getShift() 10 @@ -57180,31 +57191,31 @@ this.isHeavy() true 1 this.getNum() -303126473 +1259174396 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -815421027 +1276709283 1 this.scale(this.value) --968 +-979 1 this.scale(this.shift) -12 +11 1 this.scale(this.getValue()) --968 +-979 1 this.scale(this.getShift()) -12 +11 1 this.sum(this.getNum()) --176 +-178 1 this.sum(this.getJWrap()) --176 +-178 1 this.retrieve(this.list1) 10 @@ -57212,36 +57223,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +2074820378 +1 +l[..] +[1132307065 599984672 505021446 1022081840 313239742 688005825 1744189907 103103526 1225038340 1906879951 658909832 137225802 1704237553 1374066265 1206051975 538592647 1627396964 70323523 1420232606 652433136] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -11132 +10728 +value +-88 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +10728 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57253,31 +57289,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1688049282 +891786282 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -637822057 +155361948 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57286,44 +57322,57 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -88 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -11167 +10746 +value +-88 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +10746 this -42689667 +517355658 1 this.value -88 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -225695171 +1514476350 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +171493374 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57335,31 +57384,31 @@ this.getValue() -88 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1784429822 +1450652220 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1302887999 +417301556 1 this.scale(this.value) --968 +-528 1 this.scale(this.shift) -12 +-63 1 this.scale(this.getValue()) --968 +-528 1 this.scale(this.getShift()) -12 +-63 1 this.sum(this.getNum()) -176 @@ -57368,17 +57417,33 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-88 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +10764 +value +-88 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -11167 +10764 this -42689667 +1707582034 1 this.value -88 @@ -57390,19 +57455,19 @@ this.heavy true 1 this.list1 -225695171 +1293241549 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1158258131 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57420,13 +57485,13 @@ this.isHeavy() true 1 this.getNum() -1895334381 +1436633036 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1260005516 +1908043086 1 this.scale(this.value) -968 @@ -57452,39 +57517,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-88 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -11202 +10782 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57496,31 +57564,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -576464345 +121167003 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1337514798 +1014486152 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57529,41 +57597,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -11202 +10782 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57575,31 +57643,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1899876837 +1664576493 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -295652216 +1095088856 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57608,44 +57676,44 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-88 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -11237 +10817 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57657,31 +57725,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1897118801 +14183023 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1185981398 +42544488 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57690,41 +57758,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -11237 +10817 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57736,31 +57804,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1993628379 +1522095831 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1872305359 +910599202 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57769,47 +57837,44 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -758289222 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -11272 +10852 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57821,31 +57886,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1398992856 +1963862935 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -74479789 +1042786867 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57854,41 +57919,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -11272 +10852 this -42689667 +1116094714 1 this.value -88 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -225695171 +227755469 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1424082571 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57900,31 +57965,31 @@ this.getValue() -88 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1946331169 +775445710 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1517046279 +769432223 1 this.scale(this.value) --968 +-88 1 this.scale(this.shift) -12 +-88 1 this.scale(this.getValue()) --968 +-88 1 this.scale(this.getShift()) -12 +-88 1 this.sum(this.getNum()) -176 @@ -57933,20 +57998,20 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -2070953969 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -11307 +10887 this -166552229 +1116094714 1 this.value -88 @@ -57958,19 +58023,19 @@ this.heavy false 1 this.list1 -1072120762 +227755469 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1424082571 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -57988,13 +58053,13 @@ this.isHeavy() false 1 this.getNum() -108406407 +696933920 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -920349793 +712974096 1 this.scale(this.value) -88 @@ -58020,15 +58085,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --88 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -11307 +10887 this -166552229 +1116094714 1 this.value -88 @@ -58040,19 +58102,19 @@ this.heavy false 1 this.list1 -1072120762 +227755469 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +1424082571 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58070,13 +58132,13 @@ this.isHeavy() false 1 this.getNum() -2141745257 +1187903677 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -191643385 +252480153 1 this.scale(this.value) -88 @@ -58102,42 +58164,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --88 -1 return --88 +1946988038 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -11342 +10922 this -1171265492 +1116094714 1 this.value -88 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1624015642 +227755469 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1424082571 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58149,31 +58211,31 @@ this.getValue() -88 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1872384842 +651802632 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2094160003 +259564670 1 this.scale(this.value) --528 +-88 1 this.scale(this.shift) --63 +-88 1 this.scale(this.getValue()) --528 +-88 1 this.scale(this.getShift()) --63 +-88 1 this.sum(this.getNum()) -176 @@ -58182,44 +58244,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --88 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -11342 +10922 this -1171265492 +1116094714 1 this.value -88 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1624015642 +227755469 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1424082571 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58231,31 +58290,31 @@ this.getValue() -88 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1437679738 +1682681674 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1744844169 +1965445467 1 this.scale(this.value) --528 +-88 1 this.scale(this.shift) --63 +-88 1 this.scale(this.getValue()) --528 +-88 1 this.scale(this.getShift()) --63 +-88 1 this.sum(this.getNum()) -176 @@ -58264,47 +58323,44 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --88 +0 1 return --528 +517254671 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -11377 +10957 this -42689667 +517355658 1 this.value -88 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -225695171 +1514476350 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +171493374 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58316,31 +58372,31 @@ this.getValue() -88 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1706748598 +1422238463 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1384613607 +1833789138 1 this.scale(this.value) --968 +-528 1 this.scale(this.shift) -12 +-63 1 this.scale(this.getValue()) --968 +-528 1 this.scale(this.getShift()) -12 +-63 1 this.sum(this.getNum()) -176 @@ -58349,44 +58405,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --88 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -11377 +10957 this -42689667 +517355658 1 this.value -88 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -225695171 +1514476350 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +171493374 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58398,31 +58451,31 @@ this.getValue() -88 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1068093957 +707157673 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -639330026 +288958772 1 this.scale(this.value) --968 +-528 1 this.scale(this.shift) -12 +-63 1 this.scale(this.getValue()) --968 +-528 1 this.scale(this.getShift()) -12 +-63 1 this.sum(this.getNum()) -176 @@ -58431,47 +58484,44 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --88 +5 1 return --968 +-88 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -11412 +10992 this -166552229 +517355658 1 this.value -88 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1072120762 +1514476350 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +171493374 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58483,31 +58533,31 @@ this.getValue() -88 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1359061041 +1754444726 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1102846595 +1852777344 1 this.scale(this.value) --88 +-528 1 this.scale(this.shift) --88 +-63 1 this.scale(this.getValue()) --88 +-528 1 this.scale(this.getShift()) --88 +-63 1 this.sum(this.getNum()) -176 @@ -58516,47 +58566,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -611364908 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -11412 +10992 this -166552229 +517355658 1 this.value -88 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1072120762 +1514476350 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +171493374 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58568,31 +58612,31 @@ this.getValue() -88 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1648241508 +1990519794 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1603462303 +780934299 1 this.scale(this.value) --88 +-528 1 this.scale(this.shift) --88 +-63 1 this.scale(this.getValue()) --88 +-528 1 this.scale(this.getShift()) --88 +-63 1 this.sum(this.getNum()) -176 @@ -58601,26 +58645,20 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -611364908 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --176 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -11447 +11027 this -1171265492 +517355658 1 this.value -88 @@ -58632,19 +58670,19 @@ this.heavy true 1 this.list1 -1624015642 +1514476350 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +171493374 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58662,13 +58700,13 @@ this.isHeavy() true 1 this.getNum() -618640318 +1409160703 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1519489499 +1150963491 1 this.scale(this.value) -528 @@ -58694,18 +58732,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -184479569 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -11447 +11027 this -1171265492 +517355658 1 this.value -88 @@ -58717,19 +58749,19 @@ this.heavy true 1 this.list1 -1624015642 +1514476350 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +171493374 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58747,13 +58779,13 @@ this.isHeavy() true 1 this.getNum() -1729213562 +355518265 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -996141683 +1528195520 1 this.scale(this.value) -528 @@ -58779,45 +58811,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -184479569 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --176 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -11482 +11062 this -42689667 +517355658 1 this.value -88 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -225695171 +1514476350 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +171493374 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58829,31 +58855,31 @@ this.getValue() -88 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -370754169 +2028265136 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1415258436 +1855026648 1 this.scale(this.value) --968 +-528 1 this.scale(this.shift) -12 +-63 1 this.scale(this.getValue()) --968 +-528 1 this.scale(this.getShift()) -12 +-63 1 this.sum(this.getNum()) -176 @@ -58862,47 +58888,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -719659680 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -11482 +11062 this -42689667 +517355658 1 this.value -88 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -225695171 +1514476350 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +171493374 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -58914,31 +58934,31 @@ this.getValue() -88 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -692341856 +2097905212 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1123174346 +364597300 1 this.scale(this.value) --968 +-528 1 this.scale(this.shift) -12 +-63 1 this.scale(this.getValue()) --968 +-528 1 this.scale(this.getShift()) -12 +-63 1 this.sum(this.getNum()) -176 @@ -58947,50 +58967,47 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -719659680 +return +1265900909 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --176 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -11517 +11097 this -166552229 +517355658 1 this.value -88 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1072120762 +1514476350 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +171493374 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59002,31 +59019,31 @@ this.getValue() -88 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -809976092 +783191662 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -369339911 +150138649 1 this.scale(this.value) --88 +-528 1 this.scale(this.shift) --88 +-63 1 this.scale(this.getValue()) --88 +-528 1 this.scale(this.getShift()) --88 +-63 1 this.sum(this.getNum()) -176 @@ -59035,53 +59052,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1268144347 -1 -l[..] -[2074327201 967741809 1942925132 106357242 839771990 785307846 234473260 159588575 2145588569 361678759 1356181503 2098575310 483816842 1136575952 564985199 1681036206 880654310 699693046 120573150 1395852929] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -11517 +11097 this -166552229 +517355658 1 this.value -88 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1072120762 +1514476350 1 this.list1[..] -[1745848604 1408418467 1724417635 1995375180 1166018708 1488146481 1683353205 1167750857 535603666 1786849885 1174697547] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1324505558 +171493374 1 this.list2[..] -[149428504 1036483385 1936390878 1954299908 156172891 572762403 1396001367 1336131694 128884379 1496241677 300358969] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59093,31 +59098,31 @@ this.getValue() -88 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -988817875 +1191654595 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1833564639 +754177595 1 this.scale(this.value) --88 +-528 1 this.scale(this.shift) --88 +-63 1 this.scale(this.getValue()) --88 +-528 1 this.scale(this.getShift()) --88 +-63 1 this.sum(this.getNum()) -176 @@ -59126,56 +59131,44 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1268144347 -1 -l[..] -[2074327201 967741809 1942925132 106357242 839771990 785307846 234473260 159588575 2145588569 361678759 1356181503 2098575310 483816842 1136575952 564985199 1681036206 880654310 699693046 120573150 1395852929] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +1987375157 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -11552 +11132 this -1171265492 +1707582034 1 this.value -88 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1624015642 +1293241549 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1158258131 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59187,31 +59180,31 @@ this.getValue() -88 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -330553223 +1776374725 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -67824172 +389993238 1 this.scale(this.value) --528 +-968 1 this.scale(this.shift) --63 +12 1 this.scale(this.getValue()) --528 +-968 1 this.scale(this.getShift()) --63 +12 1 this.sum(this.getNum()) -176 @@ -59220,53 +59213,41 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1268144347 -1 -l[..] -[2074327201 967741809 1942925132 106357242 839771990 785307846 234473260 159588575 2145588569 361678759 1356181503 2098575310 483816842 1136575952 564985199 1681036206 880654310 699693046 120573150 1395852929] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -11552 +11132 this -1171265492 +1707582034 1 this.value -88 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1624015642 +1293241549 1 this.list1[..] -[313741724 984801883 908780152 964317200 220096491 1194884103 1297536024 2139003730 1359439330 1018298877 1252042796] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2038499066 +1158258131 1 this.list2[..] -[99698024 587444708 1200882097 1174089773 1847066175 1765085840 458613222 593613071 1793343982 799319829 1658154018] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59278,31 +59259,31 @@ this.getValue() -88 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1754525894 +634297796 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1218743501 +1961501712 1 this.scale(this.value) --528 +-968 1 this.scale(this.shift) --63 +12 1 this.scale(this.getValue()) --528 +-968 1 this.scale(this.getShift()) --63 +12 1 this.sum(this.getNum()) -176 @@ -59311,32 +59292,20 @@ this.sum(this.getJWrap()) -176 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1268144347 -1 -l[..] -[2074327201 967741809 1942925132 106357242 839771990 785307846 234473260 159588575 2145588569 361678759 1356181503 2098575310 483816842 1136575952 564985199 1681036206 880654310 699693046 120573150 1395852929] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-88 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -11587 +11167 this -42689667 +1707582034 1 this.value -88 @@ -59348,19 +59317,19 @@ this.heavy true 1 this.list1 -225695171 +1293241549 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1158258131 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59378,13 +59347,13 @@ this.isHeavy() true 1 this.getNum() -722996221 +402009651 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -935011621 +1991371192 1 this.scale(this.value) -968 @@ -59410,24 +59379,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1268144347 -1 -l[..] -[2074327201 967741809 1942925132 106357242 839771990 785307846 234473260 159588575 2145588569 361678759 1356181503 2098575310 483816842 1136575952 564985199 1681036206 880654310 699693046 120573150 1395852929] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -11587 +11167 this -42689667 +1707582034 1 this.value -88 @@ -59439,19 +59396,19 @@ this.heavy true 1 this.list1 -225695171 +1293241549 1 this.list1[..] -[802618395 1262577958 861824099 2047916525 1612625206 728455 1505724950 771938402 1020010887 2108507455 2057137038] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1962964613 +1158258131 1 this.list2[..] -[1902465477 853251756 1853952073 1532256588 12579692 973486038 1849417820 486994062 849021317 1619924151 267529191] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59469,13 +59426,13 @@ this.isHeavy() true 1 this.getNum() -1602469048 +658532887 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1104872709 +45023307 1 this.scale(this.value) -968 @@ -59501,61 +59458,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1268144347 -1 -l[..] -[2074327201 967741809 1942925132 106357242 839771990 785307846 234473260 159588575 2145588569 361678759 1356181503 2098575310 483816842 1136575952 564985199 1681036206 880654310 699693046 120573150 1395852929] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -11622 -value --87 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -11622 +11202 this -304524554 +1707582034 1 this.value --87 +-88 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -690648277 +1293241549 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1158258131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59564,93 +59499,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2022263922 +613298587 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2113539632 +1561063579 1 this.scale(this.value) --87 +-968 1 this.scale(this.shift) --87 +12 1 this.scale(this.getValue()) --87 +-968 1 this.scale(this.getShift()) --87 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --87 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -11640 -value --87 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -11640 +11202 this -733589997 +1707582034 1 this.value --87 +-88 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -743462152 +1293241549 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1158258131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59659,72 +59578,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1438134118 +2034182655 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -791674241 +65586123 1 this.scale(this.value) --522 +-968 1 this.scale(this.shift) --62 +12 1 this.scale(this.getValue()) --522 +-968 1 this.scale(this.getShift()) --62 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --87 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -11658 -value --87 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -11658 +11237 this -2007775322 +1707582034 1 this.value --87 +-88 1 this.shift 10 @@ -59733,19 +59639,19 @@ this.heavy true 1 this.list1 -1269291543 +1293241549 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1158258131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59754,7 +59660,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 10 @@ -59763,31 +59669,31 @@ this.isHeavy() true 1 this.getNum() -121523673 +1446983876 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -191423814 +1412601264 1 this.scale(this.value) --957 +-968 1 this.scale(this.shift) -13 +12 1 this.scale(this.getValue()) --957 +-968 1 this.scale(this.getShift()) -13 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 10 @@ -59795,42 +59701,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --87 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -11676 +11237 this -304524554 +1707582034 1 this.value --87 +-88 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -690648277 +1293241549 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1158258131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59839,77 +59739,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -329538692 +1413623320 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -196470831 +292641216 1 this.scale(this.value) --87 +-968 1 this.scale(this.shift) --87 +12 1 this.scale(this.getValue()) --87 +-968 1 this.scale(this.getShift()) --87 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1042790962 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -11676 +11272 this -304524554 +1707582034 1 this.value --87 +-88 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -690648277 +1293241549 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1158258131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -59918,80 +59824,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1402891178 +2130192211 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1169068233 +990897274 1 this.scale(this.value) --87 +-968 1 this.scale(this.shift) --87 +12 1 this.scale(this.getValue()) --87 +-968 1 this.scale(this.getShift()) --87 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --87 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -11711 +11272 this -304524554 +1707582034 1 this.value --87 +-88 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -690648277 +1293241549 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1158258131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60000,56 +59903,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1201905628 +539690370 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1196706114 +593415583 1 this.scale(this.value) --87 +-968 1 this.scale(this.shift) --87 +12 1 this.scale(this.getValue()) --87 +-968 1 this.scale(this.getShift()) --87 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +480490520 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -11711 +11307 this -304524554 +1116094714 1 this.value --87 +-88 1 this.shift 0 @@ -60058,19 +59964,19 @@ this.heavy false 1 this.list1 -690648277 +227755469 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1424082571 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60079,7 +59985,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 0 @@ -60088,31 +59994,31 @@ this.isHeavy() false 1 this.getNum() -1855303843 +1489743810 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -629134861 +540325452 1 this.scale(this.value) --87 +-88 1 this.scale(this.shift) --87 +-88 1 this.scale(this.getValue()) --87 +-88 1 this.scale(this.getShift()) --87 +-88 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 0 @@ -60120,18 +60026,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-88 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -11746 +11307 this -304524554 +1116094714 1 this.value --87 +-88 1 this.shift 0 @@ -60140,19 +60046,19 @@ this.heavy false 1 this.list1 -690648277 +227755469 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1424082571 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60161,7 +60067,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 0 @@ -60170,31 +60076,31 @@ this.isHeavy() false 1 this.getNum() -1807614646 +1976804832 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -128201213 +1959910454 1 this.scale(this.value) --87 +-88 1 this.scale(this.shift) --87 +-88 1 this.scale(this.getValue()) --87 +-88 1 this.scale(this.getShift()) --87 +-88 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 0 @@ -60202,36 +60108,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-88 +1 +return +-88 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -11746 +11342 this -304524554 +517355658 1 this.value --87 +-88 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -690648277 +1514476350 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +171493374 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60240,80 +60152,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -751688950 +1902237905 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2137370996 +1961002599 1 this.scale(this.value) --87 +-528 1 this.scale(this.shift) --87 +-63 1 this.scale(this.getValue()) --87 +-528 1 this.scale(this.getShift()) --87 +-63 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-88 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -11781 +11342 this -304524554 +517355658 1 this.value --87 +-88 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -690648277 +1514476350 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +171493374 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60322,77 +60234,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1835366403 +485937598 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -548029713 +1715248762 1 this.scale(this.value) --87 +-528 1 this.scale(this.shift) --87 +-63 1 this.scale(this.getValue()) --87 +-528 1 this.scale(this.getShift()) --87 +-63 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-88 +1 +return +-528 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -11781 +11377 this -304524554 +1707582034 1 this.value --87 +-88 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -690648277 +1293241549 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1158258131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60401,83 +60319,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -178024408 +434398524 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -611504985 +2035616217 1 this.scale(this.value) --87 +-968 1 this.scale(this.shift) --87 +12 1 this.scale(this.getValue()) --87 +-968 1 this.scale(this.getShift()) --87 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1855032000 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-88 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -11816 +11377 this -304524554 +1707582034 1 this.value --87 +-88 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -690648277 +1293241549 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1158258131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60486,56 +60401,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -355236854 +1392794732 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -461266518 +1363793720 1 this.scale(this.value) --87 +-968 1 this.scale(this.shift) --87 +12 1 this.scale(this.getValue()) --87 +-968 1 this.scale(this.getShift()) --87 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-88 +1 +return +-968 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -11816 +11412 this -304524554 +1116094714 1 this.value --87 +-88 1 this.shift 0 @@ -60544,19 +60465,19 @@ this.heavy false 1 this.list1 -690648277 +227755469 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1424082571 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60565,7 +60486,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 0 @@ -60574,31 +60495,31 @@ this.isHeavy() false 1 this.getNum() -90402356 +1807648168 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1121458863 +980697799 1 this.scale(this.value) --87 +-88 1 this.scale(this.shift) --87 +-88 1 this.scale(this.getValue()) --87 +-88 1 this.scale(this.getShift()) --87 +-88 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 0 @@ -60606,39 +60527,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -2042624369 +n +1273143001 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -11851 +11412 this -733589997 +1116094714 1 this.value --87 +-88 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -743462152 +227755469 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1424082571 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60647,56 +60571,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -714188841 +1418555530 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1085747604 +1258372214 1 this.scale(this.value) --522 +-88 1 this.scale(this.shift) --62 +-88 1 this.scale(this.getValue()) --522 +-88 1 this.scale(this.getShift()) --62 +-88 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1273143001 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-176 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -11851 +11447 this -733589997 +517355658 1 this.value --87 +-88 1 this.shift 5 @@ -60705,19 +60638,19 @@ this.heavy true 1 this.list1 -743462152 +1514476350 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +171493374 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60726,7 +60659,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 5 @@ -60735,31 +60668,31 @@ this.isHeavy() true 1 this.getNum() -991431869 +1408974251 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -669805210 +212890971 1 this.scale(this.value) --522 +-528 1 this.scale(this.shift) --62 +-63 1 this.scale(this.getValue()) --522 +-528 1 this.scale(this.getShift()) --62 +-63 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 5 @@ -60767,18 +60700,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --87 +n +856055143 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -11886 +11447 this -733589997 +517355658 1 this.value --87 +-88 1 this.shift 5 @@ -60787,19 +60723,19 @@ this.heavy true 1 this.list1 -743462152 +1514476350 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +171493374 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60808,7 +60744,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 5 @@ -60817,31 +60753,31 @@ this.isHeavy() true 1 this.getNum() -306886896 +1898325501 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1739824625 +2075809815 1 this.scale(this.value) --522 +-528 1 this.scale(this.shift) --62 +-63 1 this.scale(this.getValue()) --522 +-528 1 this.scale(this.getShift()) --62 +-63 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 5 @@ -60849,36 +60785,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +856055143 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-176 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -11886 +11482 this -733589997 +1707582034 1 this.value --87 +-88 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -743462152 +1293241549 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1158258131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60887,80 +60832,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1095134823 +1949298838 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1996115371 +1967355409 1 this.scale(this.value) --522 +-968 1 this.scale(this.shift) --62 +12 1 this.scale(this.getValue()) --522 +-968 1 this.scale(this.getShift()) --62 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +889891977 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -11921 +11482 this -733589997 +1707582034 1 this.value --87 +-88 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -743462152 +1293241549 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1158258131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -60969,77 +60917,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -721506963 +475603167 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1674856179 +402249858 1 this.scale(this.value) --522 +-968 1 this.scale(this.shift) --62 +12 1 this.scale(this.getValue()) --522 +-968 1 this.scale(this.getShift()) --62 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +889891977 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-176 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -11921 +11517 this -733589997 +1116094714 1 this.value --87 +-88 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -743462152 +227755469 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1424082571 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61048,80 +61005,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -92155577 +2045036434 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -523073152 +426394307 1 this.scale(this.value) --522 +-88 1 this.scale(this.shift) --62 +-88 1 this.scale(this.getValue()) --522 +-88 1 this.scale(this.getShift()) --62 +-88 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +1281414889 +1 +l[..] +[352598575 1250142026 20224131 1261031890 2135449562 673586830 225672073 139566260 903525611 764419760 1000966072 1058609221 1594138273 1926004335 95396809 1912821769 151593342 405215542 1617838096 138776324] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -11956 +11517 this -733589997 +1116094714 1 this.value --87 +-88 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -743462152 +227755469 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[762384154 690052870 1498438472 1325056130 1809194904 1219273867 335359181 194707680 1349182676 2102368942 120478350] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1424082571 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1403700359 1387380406 658404420 2108763062 2017085051 656479172 1944702768 124888672 760357227 37926966 1064265473] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61130,56 +61096,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1639898493 +1208442275 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -968846253 +1758008124 1 this.scale(this.value) --522 +-88 1 this.scale(this.shift) --62 +-88 1 this.scale(this.getValue()) --522 +-88 1 this.scale(this.getShift()) --62 +-88 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1281414889 +1 +l[..] +[352598575 1250142026 20224131 1261031890 2135449562 673586830 225672073 139566260 903525611 764419760 1000966072 1058609221 1594138273 1926004335 95396809 1912821769 151593342 405215542 1617838096 138776324] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -11956 +11552 this -733589997 +517355658 1 this.value --87 +-88 1 this.shift 5 @@ -61188,19 +61169,19 @@ this.heavy true 1 this.list1 -743462152 +1514476350 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +171493374 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61209,7 +61190,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 5 @@ -61218,31 +61199,31 @@ this.isHeavy() true 1 this.getNum() -1177962617 +2050339061 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -365962226 +1579957528 1 this.scale(this.value) --522 +-528 1 this.scale(this.shift) --62 +-63 1 this.scale(this.getValue()) --522 +-528 1 this.scale(this.getShift()) --62 +-63 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 5 @@ -61250,21 +61231,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -333967374 +l +1281414889 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[352598575 1250142026 20224131 1261031890 2135449562 673586830 225672073 139566260 903525611 764419760 1000966072 1058609221 1594138273 1926004335 95396809 1912821769 151593342 405215542 1617838096 138776324] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -11991 +11552 this -733589997 +517355658 1 this.value --87 +-88 1 this.shift 5 @@ -61273,19 +61260,19 @@ this.heavy true 1 this.list1 -743462152 +1514476350 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[1397381784 1333810223 1623009085 303240439 319558327 1583353301 1466785259 1565740893 775514090 1894369629 1297502382] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +171493374 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1876682596 1371957475 778731861 1646371921 1383178166 806511723 1250442005 627318073 2067180044 1478797373 1400856767] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61294,7 +61281,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 5 @@ -61303,31 +61290,31 @@ this.isHeavy() true 1 this.getNum() -1614885207 +750029115 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1477343263 +214187874 1 this.scale(this.value) --522 +-528 1 this.scale(this.shift) --62 +-63 1 this.scale(this.getValue()) --522 +-528 1 this.scale(this.getShift()) --62 +-63 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 5 @@ -61335,97 +61322,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -11991 -this -733589997 -1 -this.value --87 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -743462152 -1 -this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1635682869 +l +1281414889 1 -this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +l[..] +[352598575 1250142026 20224131 1261031890 2135449562 673586830 225672073 139566260 903525611 764419760 1000966072 1058609221 1594138273 1926004335 95396809 1912821769 151593342 405215542 1617838096 138776324] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --87 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -502294627 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -307579632 -1 -this.scale(this.value) --522 -1 -this.scale(this.shift) --62 -1 -this.scale(this.getValue()) --522 -1 -this.scale(this.getShift()) --62 -1 -this.sum(this.getNum()) --174 -1 -this.sum(this.getJWrap()) --174 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -497736695 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -12026 +11587 this -2007775322 +1707582034 1 this.value --87 +-88 1 this.shift 10 @@ -61434,19 +61354,19 @@ this.heavy true 1 this.list1 -1269291543 +1293241549 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1158258131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61455,7 +61375,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 10 @@ -61464,31 +61384,31 @@ this.isHeavy() true 1 this.getNum() -1011827800 +1528923159 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2014317654 +1683662486 1 this.scale(this.value) --957 +-968 1 this.scale(this.shift) -13 +12 1 this.scale(this.getValue()) --957 +-968 1 this.scale(this.getShift()) -13 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 10 @@ -61496,15 +61416,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1281414889 +1 +l[..] +[352598575 1250142026 20224131 1261031890 2135449562 673586830 225672073 139566260 903525611 764419760 1000966072 1058609221 1594138273 1926004335 95396809 1912821769 151593342 405215542 1617838096 138776324] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -12026 +11587 this -2007775322 +1707582034 1 this.value --87 +-88 1 this.shift 10 @@ -61513,19 +61445,19 @@ this.heavy true 1 this.list1 -1269291543 +1293241549 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[580673921 1183231938 504053874 2032079962 953082513 1262854901 252277567 238357312 1101048445 664070838 1665197552] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1158258131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[20853837 33533830 1702143276 1813666644 477533894 1611241809 538185145 510276116 914507705 443384617 445918232] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61534,7 +61466,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --87 +-88 1 this.getShift() 10 @@ -61543,31 +61475,31 @@ this.isHeavy() true 1 this.getNum() -1704599470 +1823409783 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1771441310 +1094523823 1 this.scale(this.value) --957 +-968 1 this.scale(this.shift) -13 +12 1 this.scale(this.getValue()) --957 +-968 1 this.scale(this.getShift()) -13 +12 1 this.sum(this.getNum()) --174 +-176 1 this.sum(this.getJWrap()) --174 +-176 1 this.retrieve(this.list1) 10 @@ -61575,39 +61507,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1281414889 +1 +l[..] +[352598575 1250142026 20224131 1261031890 2135449562 673586830 225672073 139566260 903525611 764419760 1000966072 1058609221 1594138273 1926004335 95396809 1912821769 151593342 405215542 1617838096 138776324] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +11622 +value -87 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -12061 +11622 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61619,31 +61573,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2048298809 +113411247 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1595221453 +1485891705 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -61652,41 +61606,57 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-87 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -12061 +11640 +value +-87 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +11640 this -2007775322 +1681920301 1 this.value -87 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1269291543 +837457281 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1574877131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61698,31 +61668,31 @@ this.getValue() -87 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1701111423 +1082309267 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1129893850 +402405659 1 this.scale(this.value) --957 +-522 1 this.scale(this.shift) -13 +-62 1 this.scale(this.getValue()) --957 +-522 1 this.scale(this.getShift()) -13 +-62 1 this.sum(this.getNum()) -174 @@ -61731,20 +61701,33 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-87 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +11658 +value +-87 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -12096 +11658 this -2007775322 +724608044 1 this.value -87 @@ -61756,19 +61739,19 @@ this.heavy true 1 this.list1 -1269291543 +1621002296 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +2061543916 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61786,13 +61769,13 @@ this.isHeavy() true 1 this.getNum() -2075530176 +1916575798 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1858789811 +633240419 1 this.scale(this.value) -957 @@ -61818,36 +61801,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-87 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -12096 +11676 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61859,31 +61848,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1235740568 +685558284 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -777376239 +1171802656 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -61892,44 +61881,41 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -12131 +11676 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -61941,31 +61927,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -71940525 +1391624125 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -71110414 +79782883 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -61974,41 +61960,44 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-87 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -12131 +11711 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62020,31 +62009,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1151820366 +1250121181 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1227297304 +1292738535 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -62053,47 +62042,41 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -605358893 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -12166 +11711 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62105,31 +62088,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1636878812 +205721196 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1756675214 +51554940 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -62138,41 +62121,44 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -12166 +11746 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62184,31 +62170,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -835142742 +1399794302 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -290948002 +1924949331 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -62217,20 +62203,17 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -142805395 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -12201 +11746 this -304524554 +384515747 1 this.value -87 @@ -62242,19 +62225,19 @@ this.heavy false 1 this.list1 -690648277 +657736958 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1896622931 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62272,13 +62255,13 @@ this.isHeavy() false 1 this.getNum() -1391040066 +1721246982 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1703408020 +1892627171 1 this.scale(this.value) -87 @@ -62304,15 +62287,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --87 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -12201 +11781 this -304524554 +384515747 1 this.value -87 @@ -62324,19 +62307,19 @@ this.heavy false 1 this.list1 -690648277 +657736958 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1896622931 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62354,13 +62337,13 @@ this.isHeavy() false 1 this.getNum() -1074093983 +1515833950 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -550035599 +1272883899 1 this.scale(this.value) -87 @@ -62386,42 +62369,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --87 -1 -return --87 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -12236 +11781 this -733589997 +384515747 1 this.value -87 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -743462152 +657736958 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1896622931 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62433,31 +62410,31 @@ this.getValue() -87 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1678695705 +1816725203 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -198559649 +1704491411 1 this.scale(this.value) --522 +-87 1 this.scale(this.shift) --62 +-87 1 this.scale(this.getValue()) --522 +-87 1 this.scale(this.getShift()) --62 +-87 1 this.sum(this.getNum()) -174 @@ -62466,44 +62443,47 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --87 +return +1896305732 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -12236 +11816 this -733589997 +384515747 1 this.value -87 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -743462152 +657736958 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1896622931 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62515,31 +62495,31 @@ this.getValue() -87 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -2433305 +1328718765 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -94367842 +1802066694 1 this.scale(this.value) --522 +-87 1 this.scale(this.shift) --62 +-87 1 this.scale(this.getValue()) --522 +-87 1 this.scale(this.getShift()) --62 +-87 1 this.sum(this.getNum()) -174 @@ -62548,47 +62528,41 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --87 -1 -return --522 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -12271 +11816 this -2007775322 +384515747 1 this.value -87 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1269291543 +657736958 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1896622931 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62600,31 +62574,31 @@ this.getValue() -87 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1197389008 +1293677337 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -447801419 +116734858 1 this.scale(this.value) --957 +-87 1 this.scale(this.shift) -13 +-87 1 this.scale(this.getValue()) --957 +-87 1 this.scale(this.getShift()) -13 +-87 1 this.sum(this.getNum()) -174 @@ -62633,44 +62607,44 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --87 +return +1551945522 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -12271 +11851 this -2007775322 +1681920301 1 this.value -87 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1269291543 +837457281 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1574877131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62682,31 +62656,31 @@ this.getValue() -87 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1415750045 +2106592975 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -392197555 +1862383967 1 this.scale(this.value) --957 +-522 1 this.scale(this.shift) -13 +-62 1 this.scale(this.getValue()) --957 +-522 1 this.scale(this.getShift()) -13 +-62 1 this.sum(this.getNum()) -174 @@ -62715,47 +62689,41 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --87 -1 -return --957 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -12306 +11851 this -304524554 +1681920301 1 this.value -87 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -690648277 +837457281 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1574877131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62767,31 +62735,31 @@ this.getValue() -87 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1036994242 +1074263646 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1932429889 +438589491 1 this.scale(this.value) --87 +-522 1 this.scale(this.shift) --87 +-62 1 this.scale(this.getValue()) --87 +-522 1 this.scale(this.getShift()) --87 +-62 1 this.sum(this.getNum()) -174 @@ -62800,47 +62768,44 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1953950842 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-87 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -12306 +11886 this -304524554 +1681920301 1 this.value -87 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -690648277 +837457281 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1574877131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62852,31 +62817,31 @@ this.getValue() -87 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -731871570 +1732238286 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1926630621 +93740343 1 this.scale(this.value) --87 +-522 1 this.scale(this.shift) --87 +-62 1 this.scale(this.getValue()) --87 +-522 1 this.scale(this.getShift()) --87 +-62 1 this.sum(this.getNum()) -174 @@ -62885,26 +62850,17 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1953950842 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --174 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -12341 +11886 this -733589997 +1681920301 1 this.value -87 @@ -62916,19 +62872,19 @@ this.heavy true 1 this.list1 -743462152 +837457281 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1574877131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -62946,13 +62902,13 @@ this.isHeavy() true 1 this.getNum() -1122417681 +2052910813 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -977609319 +1107412069 1 this.scale(this.value) -522 @@ -62978,18 +62934,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -282441236 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -12341 +11921 this -733589997 +1681920301 1 this.value -87 @@ -63001,19 +62954,19 @@ this.heavy true 1 this.list1 -743462152 +837457281 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1574877131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63031,13 +62984,13 @@ this.isHeavy() true 1 this.getNum() -1050993582 +1534694976 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -996136099 +1823541245 1 this.scale(this.value) -522 @@ -63063,45 +63016,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -282441236 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --174 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -12376 +11921 this -2007775322 +1681920301 1 this.value -87 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1269291543 +837457281 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1574877131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63113,31 +63057,31 @@ this.getValue() -87 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -276903881 +1896232624 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -326464918 +1038677529 1 this.scale(this.value) --957 +-522 1 this.scale(this.shift) -13 +-62 1 this.scale(this.getValue()) --957 +-522 1 this.scale(this.getShift()) -13 +-62 1 this.sum(this.getNum()) -174 @@ -63146,47 +63090,44 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -75158741 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -12376 +11956 this -2007775322 +1681920301 1 this.value -87 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1269291543 +837457281 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +1574877131 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63198,31 +63139,31 @@ this.getValue() -87 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -472575551 +716487794 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1182759051 +1314838582 1 this.scale(this.value) --957 +-522 1 this.scale(this.shift) -13 +-62 1 this.scale(this.getValue()) --957 +-522 1 this.scale(this.getShift()) -13 +-62 1 this.sum(this.getNum()) -174 @@ -63231,50 +63172,41 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -75158741 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --174 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -12411 +11956 this -304524554 +1681920301 1 this.value -87 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -690648277 +837457281 1 this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -889753471 +1574877131 1 this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63286,31 +63218,31 @@ this.getValue() -87 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1522733525 +246273275 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1019733376 +1947185929 1 this.scale(this.value) --87 +-522 1 this.scale(this.shift) --87 +-62 1 this.scale(this.getValue()) --87 +-522 1 this.scale(this.getShift()) --87 +-62 1 this.sum(this.getNum()) -174 @@ -63319,123 +63251,23 @@ this.sum(this.getJWrap()) -174 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1739347372 -1 -l[..] -[1663878240 269528446 921580399 1349703829 602490742 676505189 1244284305 490559649 646299910 390300844 1371227170 1568030233 2112293694 1267946501 896613126 484057683 889423345 2051976295 1125702892 357575774] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -12411 -this -304524554 -1 -this.value --87 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -690648277 -1 -this.list1[..] -[576479504 1592292111 1859784310 770416085 1204232832 1655318096 280592587 45520897 565537547 226930807 95116177] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -889753471 -1 -this.list2[..] -[1157953036 1219866938 277249057 1832870656 1551682824 91813800 1221278054 371555552 1999200635 1035931483 1250508552] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --87 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -1116789312 +return +2077742806 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -870892004 -1 -this.scale(this.value) --87 -1 -this.scale(this.shift) --87 -1 -this.scale(this.getValue()) --87 -1 -this.scale(this.getShift()) --87 -1 -this.sum(this.getNum()) --174 -1 -this.sum(this.getJWrap()) --174 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -1739347372 -1 -l[..] -[1663878240 269528446 921580399 1349703829 602490742 676505189 1244284305 490559649 646299910 390300844 1371227170 1568030233 2112293694 1267946501 896613126 484057683 889423345 2051976295 1125702892 357575774] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -12446 +11991 this -733589997 +1681920301 1 this.value -87 @@ -63447,19 +63279,19 @@ this.heavy true 1 this.list1 -743462152 +837457281 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1574877131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63477,13 +63309,13 @@ this.isHeavy() true 1 this.getNum() -1980856923 +1139814130 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1970809067 +597307515 1 this.scale(this.value) -522 @@ -63509,24 +63341,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1739347372 -1 -l[..] -[1663878240 269528446 921580399 1349703829 602490742 676505189 1244284305 490559649 646299910 390300844 1371227170 1568030233 2112293694 1267946501 896613126 484057683 889423345 2051976295 1125702892 357575774] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -12446 +11991 this -733589997 +1681920301 1 this.value -87 @@ -63538,19 +63358,19 @@ this.heavy true 1 this.list1 -743462152 +837457281 1 this.list1[..] -[1308530418 90706399 1936542270 203777958 1807206788 1863266395 1311760211 686746175 1565844247 1879648991 1776144367] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1635682869 +1574877131 1 this.list2[..] -[983814036 1485904799 514625830 1399678341 858007949 186909238 1762471152 1610708593 468469 1431107542 807611994] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63568,13 +63388,13 @@ this.isHeavy() true 1 this.getNum() -600217741 +713312506 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1128883028 +1864387098 1 this.scale(this.value) -522 @@ -63600,27 +63420,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1739347372 -1 -l[..] -[1663878240 269528446 921580399 1349703829 602490742 676505189 1244284305 490559649 646299910 390300844 1371227170 1568030233 2112293694 1267946501 896613126 484057683 889423345 2051976295 1125702892 357575774] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +770010802 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -12481 +12026 this -2007775322 +724608044 1 this.value -87 @@ -63632,19 +63440,19 @@ this.heavy true 1 this.list1 -1269291543 +1621002296 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +2061543916 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63662,13 +63470,13 @@ this.isHeavy() true 1 this.getNum() -119030351 +1603177117 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1235833900 +1464191502 1 this.scale(this.value) -957 @@ -63694,24 +63502,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1739347372 -1 -l[..] -[1663878240 269528446 921580399 1349703829 602490742 676505189 1244284305 490559649 646299910 390300844 1371227170 1568030233 2112293694 1267946501 896613126 484057683 889423345 2051976295 1125702892 357575774] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -12481 +12026 this -2007775322 +724608044 1 this.value -87 @@ -63723,19 +63519,19 @@ this.heavy true 1 this.list1 -1269291543 +1621002296 1 this.list1[..] -[2027897550 161161313 661308724 1387851043 1792589634 1005894875 1083894941 2065979533 254922788 257422151 1462026799] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -776521819 +2061543916 1 this.list2[..] -[744089114 1108462517 508885494 1558615304 641888222 1404988273 2055205546 1712633274 1504115377 1637132402 1723795050] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63753,13 +63549,13 @@ this.isHeavy() true 1 this.getNum() -198523516 +987249254 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1542629621 +1020154737 1 this.scale(this.value) -957 @@ -63785,61 +63581,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1739347372 -1 -l[..] -[1663878240 269528446 921580399 1349703829 602490742 676505189 1244284305 490559649 646299910 390300844 1371227170 1568030233 2112293694 1267946501 896613126 484057683 889423345 2051976295 1125702892 357575774] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -12516 -value --86 -1 -shift -0 +-87 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -12516 +12061 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63848,93 +63622,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -991593213 +398457879 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1234030171 +1850954068 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --86 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -12534 -value --86 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -12534 +12061 this -2095504918 +724608044 1 this.value --86 +-87 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -419346026 +1621002296 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +2061543916 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -63943,72 +63701,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1094104720 +363023858 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1863043426 +1530446316 1 this.scale(this.value) --516 +-957 1 this.scale(this.shift) --61 +13 1 this.scale(this.getValue()) --516 +-957 1 this.scale(this.getShift()) --61 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --86 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -12552 -value --86 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -12552 +12096 this -1859287522 +724608044 1 this.value --86 +-87 1 this.shift 10 @@ -64017,19 +63762,19 @@ this.heavy true 1 this.list1 -1010834757 +1621002296 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +2061543916 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64038,7 +63783,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 10 @@ -64047,31 +63792,31 @@ this.isHeavy() true 1 this.getNum() -111948293 +865059288 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -319285679 +1193471756 1 this.scale(this.value) --946 +-957 1 this.scale(this.shift) -14 +13 1 this.scale(this.getValue()) --946 +-957 1 this.scale(this.getShift()) -14 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 10 @@ -64079,42 +63824,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --86 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -12570 +12096 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64123,77 +63862,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1820256747 +1222768327 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -3111667 +1439394198 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -12570 +12131 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64202,80 +63944,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -758179741 +403170294 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1706429336 +1208825205 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --86 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -12605 +12131 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64284,77 +64023,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -313744467 +253601149 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1030903484 +26540753 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +648786246 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -12605 +12166 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64363,80 +64108,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -496791592 +120360571 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -159867208 +1710814638 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -12640 +12166 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64445,56 +64187,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -386122459 +1125964210 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2012070826 +944140566 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1534754611 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -12640 +12201 this -405969916 +384515747 1 this.value --86 +-87 1 this.shift 0 @@ -64503,19 +64248,19 @@ this.heavy false 1 this.list1 -580831693 +657736958 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +1896622931 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64524,7 +64269,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 0 @@ -64533,31 +64278,31 @@ this.isHeavy() false 1 this.getNum() -449383273 +2030937207 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -84682812 +1551446957 1 this.scale(this.value) --86 +-87 1 this.scale(this.shift) --86 +-87 1 this.scale(this.getValue()) --86 +-87 1 this.scale(this.getShift()) --86 +-87 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 0 @@ -64565,18 +64310,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-87 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -12675 +12201 this -405969916 +384515747 1 this.value --86 +-87 1 this.shift 0 @@ -64585,19 +64330,19 @@ this.heavy false 1 this.list1 -580831693 +657736958 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +1896622931 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64606,7 +64351,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 0 @@ -64615,31 +64360,31 @@ this.isHeavy() false 1 this.getNum() -1629846970 +1471948789 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1684107305 +1605851606 1 this.scale(this.value) --86 +-87 1 this.scale(this.shift) --86 +-87 1 this.scale(this.getValue()) --86 +-87 1 this.scale(this.getShift()) --86 +-87 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 0 @@ -64647,36 +64392,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-87 +1 +return +-87 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -12675 +12236 this -405969916 +1681920301 1 this.value --86 +-87 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -580831693 +837457281 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +1574877131 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64685,83 +64436,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -957007675 +1267556427 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1922961342 +1585239756 1 this.scale(this.value) --86 +-522 1 this.scale(this.shift) --86 +-62 1 this.scale(this.getValue()) --86 +-522 1 this.scale(this.getShift()) --86 +-62 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -1729871291 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-87 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -12710 +12236 this -405969916 +1681920301 1 this.value --86 +-87 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -580831693 +837457281 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +1574877131 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64770,77 +64518,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1313174751 +1758056825 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -838599838 +223693919 1 this.scale(this.value) --86 +-522 1 this.scale(this.shift) --86 +-62 1 this.scale(this.getValue()) --86 +-522 1 this.scale(this.getShift()) --86 +-62 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-87 +1 +return +-522 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -12710 +12271 this -405969916 +724608044 1 this.value --86 +-87 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -580831693 +1621002296 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +2061543916 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64849,80 +64603,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -412302005 +771418758 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1777552813 +361268035 1 this.scale(this.value) --86 +-957 1 this.scale(this.shift) --86 +13 1 this.scale(this.getValue()) --86 +-957 1 this.scale(this.getShift()) --86 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -1685114674 +scale +-87 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -12745 +12271 this -2095504918 +724608044 1 this.value --86 +-87 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -419346026 +1621002296 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +2061543916 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -64931,77 +64685,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -707989282 +871160466 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2116458194 +352083716 1 this.scale(this.value) --516 +-957 1 this.scale(this.shift) --61 +13 1 this.scale(this.getValue()) --516 +-957 1 this.scale(this.getShift()) --61 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-87 +1 +return +-957 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -12745 +12306 this -2095504918 +384515747 1 this.value --86 +-87 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -419346026 +657736958 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1896622931 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65010,80 +64770,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -393737650 +1848125895 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1151567143 +1072377306 1 this.scale(this.value) --516 +-87 1 this.scale(this.shift) --61 +-87 1 this.scale(this.getValue()) --516 +-87 1 this.scale(this.getShift()) --61 +-87 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --86 +n +1787189503 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -12780 +12306 this -2095504918 +384515747 1 this.value --86 +-87 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -419346026 +657736958 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1896622931 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65092,56 +64855,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1266345637 +477376212 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1908179289 +859654796 1 this.scale(this.value) --516 +-87 1 this.scale(this.shift) --61 +-87 1 this.scale(this.getValue()) --516 +-87 1 this.scale(this.getShift()) --61 +-87 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1787189503 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-174 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -12780 +12341 this -2095504918 +1681920301 1 this.value --86 +-87 1 this.shift 5 @@ -65150,19 +64922,19 @@ this.heavy true 1 this.list1 -419346026 +837457281 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1574877131 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65171,7 +64943,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 5 @@ -65180,31 +64952,31 @@ this.isHeavy() true 1 this.getNum() -248525925 +1440621772 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -119528060 +231202600 1 this.scale(this.value) --516 +-522 1 this.scale(this.shift) --61 +-62 1 this.scale(this.getValue()) --516 +-522 1 this.scale(this.getShift()) --61 +-62 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 5 @@ -65212,18 +64984,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +821576394 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -12815 +12341 this -2095504918 +1681920301 1 this.value --86 +-87 1 this.shift 5 @@ -65232,19 +65007,19 @@ this.heavy true 1 this.list1 -419346026 +837457281 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1574877131 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65253,7 +65028,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 5 @@ -65262,31 +65037,31 @@ this.isHeavy() true 1 this.getNum() -1010894475 +1774720883 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1360309908 +1293203138 1 this.scale(this.value) --516 +-522 1 this.scale(this.shift) --61 +-62 1 this.scale(this.getValue()) --516 +-522 1 this.scale(this.getShift()) --61 +-62 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 5 @@ -65294,36 +65069,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +821576394 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-174 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -12815 +12376 this -2095504918 +724608044 1 this.value --86 +-87 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -419346026 +1621002296 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +2061543916 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65332,80 +65116,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -617717794 +2123960023 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1047014160 +201719260 1 this.scale(this.value) --516 +-957 1 this.scale(this.shift) --61 +13 1 this.scale(this.getValue()) --516 +-957 1 this.scale(this.getShift()) --61 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +635371680 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -12850 +12376 this -2095504918 +724608044 1 this.value --86 +-87 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -419346026 +1621002296 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +2061543916 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65414,77 +65201,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -685983602 +1293226111 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1634181718 +2068598972 1 this.scale(this.value) --516 +-957 1 this.scale(this.shift) --61 +13 1 this.scale(this.getValue()) --516 +-957 1 this.scale(this.getShift()) --61 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +635371680 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-174 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -12850 +12411 this -2095504918 +384515747 1 this.value --86 +-87 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -419346026 +657736958 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1896622931 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65493,83 +65289,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1523772943 +1485089044 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1309362526 +84113572 1 this.scale(this.value) --516 +-87 1 this.scale(this.shift) --61 +-87 1 this.scale(this.getValue()) --516 +-87 1 this.scale(this.getShift()) --61 +-87 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -1191043673 +l +1626343059 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[2032169857 76659128 441001942 2053996178 11249189 159290353 1515877023 1263668904 370475881 1795816257 1649320501 959629210 125994398 603305436 884860061 454884231 136393487 116669570 1572256205 554348863] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -12885 +12411 this -2095504918 +384515747 1 this.value --86 +-87 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -419346026 +657736958 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[867988177 443934570 1428475041 1345483087 4766562 892555958 1182908789 91912419 1076641925 1873091796 661119548] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1896622931 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1401316767 335708295 216856121 480903748 2095064787 2095486832 391183339 1529115495 646910062 1855610584 2114289475] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65578,56 +65380,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1175938424 +548554586 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -705088827 +126189538 1 this.scale(this.value) --516 +-87 1 this.scale(this.shift) --61 +-87 1 this.scale(this.getValue()) --516 +-87 1 this.scale(this.getShift()) --61 +-87 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1626343059 +1 +l[..] +[2032169857 76659128 441001942 2053996178 11249189 159290353 1515877023 1263668904 370475881 1795816257 1649320501 959629210 125994398 603305436 884860061 454884231 136393487 116669570 1572256205 554348863] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -12885 +12446 this -2095504918 +1681920301 1 this.value --86 +-87 1 this.shift 5 @@ -65636,19 +65453,19 @@ this.heavy true 1 this.list1 -419346026 +837457281 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1574877131 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65657,7 +65474,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 5 @@ -65666,31 +65483,31 @@ this.isHeavy() true 1 this.getNum() -613151243 +1863702030 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1606402795 +467796378 1 this.scale(this.value) --516 +-522 1 this.scale(this.shift) --61 +-62 1 this.scale(this.getValue()) --516 +-522 1 this.scale(this.getShift()) --61 +-62 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 5 @@ -65698,39 +65515,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -647365481 +l +1626343059 +1 +l[..] +[2032169857 76659128 441001942 2053996178 11249189 159290353 1515877023 1263668904 370475881 1795816257 1649320501 959629210 125994398 603305436 884860061 454884231 136393487 116669570 1572256205 554348863] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -12920 +12446 this -1859287522 +1681920301 1 this.value --86 +-87 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1010834757 +837457281 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[589273327 2081652693 406765571 2107443224 572145572 1158676965 725680028 1040776996 1293680734 138817329 609656250] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1574877131 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[1894601438 1231799381 1497377679 1904783235 1810458830 2083999882 611520720 271800170 809300666 1984513847 1241529534] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65739,56 +65565,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1119483465 +702025003 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1054364888 +93199773 1 this.scale(this.value) --946 +-522 1 this.scale(this.shift) -14 +-62 1 this.scale(this.getValue()) --946 +-522 1 this.scale(this.getShift()) -14 +-62 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +1626343059 +1 +l[..] +[2032169857 76659128 441001942 2053996178 11249189 159290353 1515877023 1263668904 370475881 1795816257 1649320501 959629210 125994398 603305436 884860061 454884231 136393487 116669570 1572256205 554348863] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -12920 +12481 this -1859287522 +724608044 1 this.value --86 +-87 1 this.shift 10 @@ -65797,19 +65638,19 @@ this.heavy true 1 this.list1 -1010834757 +1621002296 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +2061543916 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65818,7 +65659,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 10 @@ -65827,31 +65668,31 @@ this.isHeavy() true 1 this.getNum() -1823101219 +1147805316 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -565512337 +1326393666 1 this.scale(this.value) --946 +-957 1 this.scale(this.shift) -14 +13 1 this.scale(this.getValue()) --946 +-957 1 this.scale(this.getShift()) -14 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 10 @@ -65859,18 +65700,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --86 +l +1626343059 +1 +l[..] +[2032169857 76659128 441001942 2053996178 11249189 159290353 1515877023 1263668904 370475881 1795816257 1649320501 959629210 125994398 603305436 884860061 454884231 136393487 116669570 1572256205 554348863] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -12955 +12481 this -1859287522 +724608044 1 this.value --86 +-87 1 this.shift 10 @@ -65879,19 +65729,19 @@ this.heavy true 1 this.list1 -1010834757 +1621002296 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[899543194 1138697171 1835073088 2032891036 602423811 429075478 1944798106 1363560175 811597470 808228639 426960147] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +2061543916 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[897848096 1640296160 1863374262 272678513 88646218 1128132589 711540569 1062186835 2144665602 1396431506 810267739] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65900,7 +65750,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --86 +-87 1 this.getShift() 10 @@ -65909,31 +65759,31 @@ this.isHeavy() true 1 this.getNum() -1950709984 +643290333 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2097345986 +1396721535 1 this.scale(this.value) --946 +-957 1 this.scale(this.shift) -14 +13 1 this.scale(this.getValue()) --946 +-957 1 this.scale(this.getShift()) -14 +13 1 this.sum(this.getNum()) --172 +-174 1 this.sum(this.getJWrap()) --172 +-174 1 this.retrieve(this.list1) 10 @@ -65941,36 +65791,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1626343059 +1 +l[..] +[2032169857 76659128 441001942 2053996178 11249189 159290353 1515877023 1263668904 370475881 1795816257 1649320501 959629210 125994398 603305436 884860061 454884231 136393487 116669570 1572256205 554348863] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -12955 +12516 +value +-86 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +12516 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -65982,31 +65857,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1297404844 +1651162064 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2081745117 +379303133 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66015,44 +65890,57 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-86 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -12990 +12534 +value +-86 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +12534 this -1859287522 +530486389 1 this.value -86 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1010834757 +983595261 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +221111433 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66064,31 +65952,31 @@ this.getValue() -86 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1086604495 +925973605 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -360813377 +1179792105 1 this.scale(this.value) --946 +-516 1 this.scale(this.shift) -14 +-61 1 this.scale(this.getValue()) --946 +-516 1 this.scale(this.getShift()) -14 +-61 1 this.sum(this.getNum()) -172 @@ -66097,17 +65985,33 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-86 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +12552 +value +-86 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -12990 +12552 this -1859287522 +2038522556 1 this.value -86 @@ -66119,19 +66023,19 @@ this.heavy true 1 this.list1 -1010834757 +502848122 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1848289347 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66149,13 +66053,13 @@ this.isHeavy() true 1 this.getNum() -1844091758 +795321555 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1166183202 +98826337 1 this.scale(this.value) -946 @@ -66181,39 +66085,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-86 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -13025 +12570 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66225,31 +66132,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2105313492 +800088638 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2063292072 +1236444285 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66258,41 +66165,41 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -13025 +12570 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66304,31 +66211,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -183922348 +1541525668 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -953934803 +1096485705 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66337,47 +66244,44 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1816809166 -1 -return.getClass().getName() -"java.lang.Integer" +-86 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -13060 +12605 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66389,31 +66293,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -41676269 +1834361038 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -373384161 +823914581 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66422,41 +66326,41 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -13060 +12605 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66468,31 +66372,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -520377393 +1680503330 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1429433567 +2100440237 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66501,20 +66405,20 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -590401580 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -13095 +12640 this -405969916 +1204481453 1 this.value -86 @@ -66526,19 +66430,19 @@ this.heavy false 1 this.list1 -580831693 +1899600175 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +1902671237 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66556,13 +66460,13 @@ this.isHeavy() false 1 this.getNum() -1504905920 +566113173 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2038886721 +1330247343 1 this.scale(this.value) -86 @@ -66588,15 +66492,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --86 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -13095 +12640 this -405969916 +1204481453 1 this.value -86 @@ -66608,19 +66509,19 @@ this.heavy false 1 this.list1 -580831693 +1899600175 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +1902671237 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66638,13 +66539,13 @@ this.isHeavy() false 1 this.getNum() -172564668 +2017797638 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1191451626 +343812839 1 this.scale(this.value) -86 @@ -66670,42 +66571,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --86 -1 return --86 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -13130 +12675 this -2095504918 +1204481453 1 this.value -86 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -419346026 +1899600175 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1902671237 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66717,31 +66615,31 @@ this.getValue() -86 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1589953554 +1150058854 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1210362457 +1148255190 1 this.scale(this.value) --516 +-86 1 this.scale(this.shift) --61 +-86 1 this.scale(this.getValue()) --516 +-86 1 this.scale(this.getShift()) --61 +-86 1 this.sum(this.getNum()) -172 @@ -66750,44 +66648,41 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --86 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -13130 +12675 this -2095504918 +1204481453 1 this.value -86 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -419346026 +1899600175 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1902671237 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66799,31 +66694,31 @@ this.getValue() -86 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1596710415 +366252104 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -956291993 +1889057031 1 this.scale(this.value) --516 +-86 1 this.scale(this.shift) --61 +-86 1 this.scale(this.getValue()) --516 +-86 1 this.scale(this.getShift()) --61 +-86 1 this.sum(this.getNum()) -172 @@ -66832,47 +66727,47 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --86 +0 1 return --516 +1346343363 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -13165 +12710 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66884,31 +66779,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -631912203 +324169305 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1241761406 +573958827 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66917,44 +66812,41 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --86 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -13165 +12710 this -1859287522 +1204481453 1 this.value -86 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1010834757 +1899600175 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1902671237 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -66966,31 +66858,31 @@ this.getValue() -86 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1037869096 +391135083 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1603715538 +1003292107 1 this.scale(this.value) --946 +-86 1 this.scale(this.shift) -14 +-86 1 this.scale(this.getValue()) --946 +-86 1 this.scale(this.getShift()) -14 +-86 1 this.sum(this.getNum()) -172 @@ -66999,47 +66891,44 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --86 +0 1 return --946 +997033037 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -13200 +12745 this -405969916 +530486389 1 this.value -86 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -580831693 +983595261 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +221111433 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67051,31 +66940,31 @@ this.getValue() -86 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -579793669 +914374969 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1458888444 +549293029 1 this.scale(this.value) --86 +-516 1 this.scale(this.shift) --86 +-61 1 this.scale(this.getValue()) --86 +-516 1 this.scale(this.getShift()) --86 +-61 1 this.sum(this.getNum()) -172 @@ -67084,47 +66973,41 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1717280509 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -13200 +12745 this -405969916 +530486389 1 this.value -86 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -580831693 +983595261 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +221111433 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67136,31 +67019,31 @@ this.getValue() -86 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -153299083 +1930240356 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1664795228 +613784740 1 this.scale(this.value) --86 +-516 1 this.scale(this.shift) --86 +-61 1 this.scale(this.getValue()) --86 +-516 1 this.scale(this.getShift()) --86 +-61 1 this.sum(this.getNum()) -172 @@ -67169,26 +67052,99 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -1717280509 +return +-86 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +12780 +this +530486389 +1 +this.value +-86 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +983595261 +1 +this.list1[..] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +221111433 +1 +this.list2[..] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-86 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +271095942 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +1552341957 +1 +this.scale(this.value) +-516 +1 +this.scale(this.shift) +-61 +1 +this.scale(this.getValue()) +-516 +1 +this.scale(this.getShift()) +-61 +1 +this.sum(this.getNum()) +-172 +1 +this.sum(this.getJWrap()) -172 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -13235 +12780 this -2095504918 +530486389 1 this.value -86 @@ -67200,19 +67156,19 @@ this.heavy true 1 this.list1 -419346026 +983595261 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +221111433 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67230,13 +67186,13 @@ this.isHeavy() true 1 this.getNum() -648960233 +1176164144 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -5192918 +1323434987 1 this.scale(this.value) -516 @@ -67262,18 +67218,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1378026946 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -13235 +12815 this -2095504918 +530486389 1 this.value -86 @@ -67285,19 +67238,19 @@ this.heavy true 1 this.list1 -419346026 +983595261 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +221111433 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67315,13 +67268,13 @@ this.isHeavy() true 1 this.getNum() -2035232174 +442125849 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1027619002 +1885922916 1 this.scale(this.value) -516 @@ -67347,45 +67300,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1378026946 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --172 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -13270 +12815 this -1859287522 +530486389 1 this.value -86 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1010834757 +983595261 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +221111433 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67397,31 +67341,31 @@ this.getValue() -86 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1129077440 +1624972302 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1239029188 +1048098469 1 this.scale(this.value) --946 +-516 1 this.scale(this.shift) -14 +-61 1 this.scale(this.getValue()) --946 +-516 1 this.scale(this.getShift()) -14 +-61 1 this.sum(this.getNum()) -172 @@ -67430,47 +67374,44 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -214637757 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -13270 +12850 this -1859287522 +530486389 1 this.value -86 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1010834757 +983595261 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +221111433 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67482,31 +67423,31 @@ this.getValue() -86 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1791738586 +1989811701 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1734716668 +1106681476 1 this.scale(this.value) --946 +-516 1 this.scale(this.shift) -14 +-61 1 this.scale(this.getValue()) --946 +-516 1 this.scale(this.getShift()) -14 +-61 1 this.sum(this.getNum()) -172 @@ -67515,50 +67456,41 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -214637757 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --172 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -13305 +12850 this -405969916 +530486389 1 this.value -86 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -580831693 +983595261 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +221111433 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67570,31 +67502,31 @@ this.getValue() -86 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1145047404 +2037764568 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1210758261 +37981645 1 this.scale(this.value) --86 +-516 1 this.scale(this.shift) --86 +-61 1 this.scale(this.getValue()) --86 +-516 1 this.scale(this.getShift()) --86 +-61 1 this.sum(this.getNum()) -172 @@ -67603,53 +67535,47 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1806537302 -1 -l[..] -[1348633428 1939613958 290030646 1904672279 1435750971 1540311905 106822750 73630358 554846234 926659564 815884104 881049833 904797166 594264555 2005417335 293309680 1180821895 1177207338 556889955 915740059] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +605052357 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -13305 +12885 this -405969916 +530486389 1 this.value -86 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -580831693 +983595261 1 this.list1[..] -[1725088636 387987105 1138921443 1330946790 1033032378 1917374698 176942404 1753616580 968288632 395961058 2013163400] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1632405315 +221111433 1 this.list2[..] -[1732538780 1048505787 2133438474 165978559 20383660 1138273747 1182538353 2108429533 747501984 486510138 1305645237] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67661,31 +67587,31 @@ this.getValue() -86 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1975357211 +1365767549 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1878946304 +105579928 1 this.scale(this.value) --86 +-516 1 this.scale(this.shift) --86 +-61 1 this.scale(this.getValue()) --86 +-516 1 this.scale(this.getShift()) --86 +-61 1 this.sum(this.getNum()) -172 @@ -67694,32 +67620,17 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1806537302 -1 -l[..] -[1348633428 1939613958 290030646 1904672279 1435750971 1540311905 106822750 73630358 554846234 926659564 815884104 881049833 904797166 594264555 2005417335 293309680 1180821895 1177207338 556889955 915740059] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -13340 +12885 this -2095504918 +530486389 1 this.value -86 @@ -67731,19 +67642,19 @@ this.heavy true 1 this.list1 -419346026 +983595261 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +221111433 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67761,13 +67672,13 @@ this.isHeavy() true 1 this.getNum() -703502193 +418958713 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1863881016 +1042306518 1 this.scale(this.value) -516 @@ -67793,48 +67704,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1806537302 -1 -l[..] -[1348633428 1939613958 290030646 1904672279 1435750971 1540311905 106822750 73630358 554846234 926659564 815884104 881049833 904797166 594264555 2005417335 293309680 1180821895 1177207338 556889955 915740059] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +1342346098 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -13340 +12920 this -2095504918 +2038522556 1 this.value -86 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -419346026 +502848122 1 this.list1[..] -[2054813175 1560504818 186695315 314550938 1700359699 1380570464 1834466260 451711841 566219542 951802537 339552856] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1000800713 +1848289347 1 this.list2[..] -[1365660087 343863073 428173834 99926941 139885433 1707362613 966945477 1443875090 643426530 1489527065 1264508376] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67846,31 +67748,31 @@ this.getValue() -86 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -904277123 +238762799 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -443836442 +1358343316 1 this.scale(this.value) --516 +-946 1 this.scale(this.shift) --61 +14 1 this.scale(this.getValue()) --516 +-946 1 this.scale(this.getShift()) --61 +14 1 this.sum(this.getNum()) -172 @@ -67879,32 +67781,99 @@ this.sum(this.getJWrap()) -172 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -1806537302 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +12920 +this +2038522556 1 -l[..] -[1348633428 1939613958 290030646 1904672279 1435750971 1540311905 106822750 73630358 554846234 926659564 815884104 881049833 904797166 594264555 2005417335 293309680 1180821895 1177207338 556889955 915740059] +this.value +-86 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +502848122 +1 +this.list1[..] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1848289347 +1 +this.list2[..] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 +this.getValue() +-86 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +1824837049 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +672746064 +1 +this.scale(this.value) +-946 +1 +this.scale(this.shift) +14 +1 +this.scale(this.getValue()) +-946 +1 +this.scale(this.getShift()) +14 +1 +this.sum(this.getNum()) +-172 +1 +this.sum(this.getJWrap()) +-172 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 return -5 +-86 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -13375 +12955 this -1859287522 +2038522556 1 this.value -86 @@ -67916,19 +67885,19 @@ this.heavy true 1 this.list1 -1010834757 +502848122 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1848289347 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -67946,13 +67915,13 @@ this.isHeavy() true 1 this.getNum() -1348374663 +2133655103 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1885517897 +442199874 1 this.scale(this.value) -946 @@ -67978,24 +67947,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1806537302 -1 -l[..] -[1348633428 1939613958 290030646 1904672279 1435750971 1540311905 106822750 73630358 554846234 926659564 815884104 881049833 904797166 594264555 2005417335 293309680 1180821895 1177207338 556889955 915740059] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -13375 +12955 this -1859287522 +2038522556 1 this.value -86 @@ -68007,19 +67964,19 @@ this.heavy true 1 this.list1 -1010834757 +502848122 1 this.list1[..] -[356629482 244845197 534558327 1397706488 2076812930 1943199819 428054357 239360649 697556912 725791011 662406917] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -517827971 +1848289347 1 this.list2[..] -[1530970953 2027232364 1866282093 456988969 1212080311 403911535 345360578 1974420252 1163861920 1746232564 1419183246] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68037,13 +67994,13 @@ this.isHeavy() true 1 this.getNum() -1630599747 +1345900725 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1451128462 +839998248 1 this.scale(this.value) -946 @@ -68069,61 +68026,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1806537302 -1 -l[..] -[1348633428 1939613958 290030646 1904672279 1435750971 1540311905 106822750 73630358 554846234 926659564 815884104 881049833 904797166 594264555 2005417335 293309680 1180821895 1177207338 556889955 915740059] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -13410 -value --85 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -13410 +12990 this -144281855 +2038522556 1 this.value --85 +-86 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -436099522 +502848122 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1848289347 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68132,93 +68067,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1293126184 +718571091 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1037266848 +1807015220 1 this.scale(this.value) --85 +-946 1 this.scale(this.shift) --85 +14 1 this.scale(this.getValue()) --85 +-946 1 this.scale(this.getShift()) --85 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --85 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -13428 -value --85 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -13428 +12990 this -71667990 +2038522556 1 this.value --85 +-86 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1933065610 +502848122 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1848289347 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68227,72 +68146,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -531071640 +2107577743 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -779016548 +1173346575 1 this.scale(this.value) --510 +-946 1 this.scale(this.shift) --60 +14 1 this.scale(this.getValue()) --510 +-946 1 this.scale(this.getShift()) --60 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --85 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -13446 -value --85 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -13446 +13025 this -1870810124 +2038522556 1 this.value --85 +-86 1 this.shift 10 @@ -68301,19 +68207,19 @@ this.heavy true 1 this.list1 -1397678341 +502848122 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1848289347 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68322,7 +68228,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 10 @@ -68331,31 +68237,31 @@ this.isHeavy() true 1 this.getNum() -766732945 +1267149311 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1578724615 +102174918 1 this.scale(this.value) --935 +-946 1 this.scale(this.shift) -15 +14 1 this.scale(this.getValue()) --935 +-946 1 this.scale(this.getShift()) -15 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 10 @@ -68363,42 +68269,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --85 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -13464 +13025 this -144281855 +2038522556 1 this.value --85 +-86 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -436099522 +502848122 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1848289347 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68407,77 +68307,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1464145620 +52514534 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2027808014 +943573036 1 this.scale(this.value) --85 +-946 1 this.scale(this.shift) --85 +14 1 this.scale(this.getValue()) --85 +-946 1 this.scale(this.getShift()) --85 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1242027525 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -13464 +13060 this -144281855 +2038522556 1 this.value --85 +-86 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -436099522 +502848122 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1848289347 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68486,80 +68392,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -803813408 +1948810915 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2019808626 +2104973502 1 this.scale(this.value) --85 +-946 1 this.scale(this.shift) --85 +14 1 this.scale(this.getValue()) --85 +-946 1 this.scale(this.getShift()) --85 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --85 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -13499 +13060 this -144281855 +2038522556 1 this.value --85 +-86 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -436099522 +502848122 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1848289347 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68568,56 +68471,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1649569053 +735937428 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -293191001 +1604247316 1 this.scale(this.value) --85 +-946 1 this.scale(this.shift) --85 +14 1 this.scale(this.getValue()) --85 +-946 1 this.scale(this.getShift()) --85 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1752461090 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -13499 +13095 this -144281855 +1204481453 1 this.value --85 +-86 1 this.shift 0 @@ -68626,19 +68532,19 @@ this.heavy false 1 this.list1 -436099522 +1899600175 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1902671237 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68647,7 +68553,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 0 @@ -68656,31 +68562,31 @@ this.isHeavy() false 1 this.getNum() -1333667589 +788625466 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1664344584 +1753714541 1 this.scale(this.value) --85 +-86 1 this.scale(this.shift) --85 +-86 1 this.scale(this.getValue()) --85 +-86 1 this.scale(this.getShift()) --85 +-86 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 0 @@ -68688,18 +68594,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-86 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -13534 +13095 this -144281855 +1204481453 1 this.value --85 +-86 1 this.shift 0 @@ -68708,19 +68614,19 @@ this.heavy false 1 this.list1 -436099522 +1899600175 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1902671237 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68729,7 +68635,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 0 @@ -68738,31 +68644,31 @@ this.isHeavy() false 1 this.getNum() -1664921113 +1095273238 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -617225781 +177140066 1 this.scale(this.value) --85 +-86 1 this.scale(this.shift) --85 +-86 1 this.scale(this.getValue()) --85 +-86 1 this.scale(this.getShift()) --85 +-86 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 0 @@ -68770,36 +68676,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-86 +1 +return +-86 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -13534 +13130 this -144281855 +530486389 1 this.value --85 +-86 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -436099522 +983595261 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +221111433 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68808,80 +68720,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1367686257 +787122337 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -37963911 +2059572982 1 this.scale(this.value) --85 +-516 1 this.scale(this.shift) --85 +-61 1 this.scale(this.getValue()) --85 +-516 1 this.scale(this.getShift()) --85 +-61 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-86 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -13569 +13130 this -144281855 +530486389 1 this.value --85 +-86 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -436099522 +983595261 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +221111433 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68890,77 +68802,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -256809018 +2144838275 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1894518703 +36657658 1 this.scale(this.value) --85 +-516 1 this.scale(this.shift) --85 +-61 1 this.scale(this.getValue()) --85 +-516 1 this.scale(this.getShift()) --85 +-61 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-86 +1 +return +-516 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -13569 +13165 this -144281855 +2038522556 1 this.value --85 +-86 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -436099522 +502848122 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1848289347 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -68969,83 +68887,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -435807252 +2029680286 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1693248094 +375466577 1 this.scale(this.value) --85 +-946 1 this.scale(this.shift) --85 +14 1 this.scale(this.getValue()) --85 +-946 1 this.scale(this.getShift()) --85 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -2114909461 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-86 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -13604 +13165 this -144281855 +2038522556 1 this.value --85 +-86 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -436099522 +502848122 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1848289347 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69054,56 +68969,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -133985883 +1423983012 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1337873525 +746074699 1 this.scale(this.value) --85 +-946 1 this.scale(this.shift) --85 +14 1 this.scale(this.getValue()) --85 +-946 1 this.scale(this.getShift()) --85 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-86 +1 +return +-946 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -13604 +13200 this -144281855 +1204481453 1 this.value --85 +-86 1 this.shift 0 @@ -69112,19 +69033,19 @@ this.heavy false 1 this.list1 -436099522 +1899600175 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1902671237 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69133,7 +69054,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 0 @@ -69142,31 +69063,31 @@ this.isHeavy() false 1 this.getNum() -1486550585 +127791068 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -630932897 +405896924 1 this.scale(this.value) --85 +-86 1 this.scale(this.shift) --85 +-86 1 this.scale(this.getValue()) --85 +-86 1 this.scale(this.getShift()) --85 +-86 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 0 @@ -69174,39 +69095,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -1962434640 +n +1309335839 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -13639 +13200 this -71667990 +1204481453 1 this.value --85 +-86 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1933065610 +1899600175 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1902671237 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69215,56 +69139,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1585143854 +596470015 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1978113143 +1267105885 1 this.scale(this.value) --510 +-86 1 this.scale(this.shift) --60 +-86 1 this.scale(this.getValue()) --510 +-86 1 this.scale(this.getShift()) --60 +-86 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1309335839 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-172 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -13639 +13235 this -71667990 +530486389 1 this.value --85 +-86 1 this.shift 5 @@ -69273,19 +69206,19 @@ this.heavy true 1 this.list1 -1933065610 +983595261 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +221111433 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69294,7 +69227,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 5 @@ -69303,31 +69236,31 @@ this.isHeavy() true 1 this.getNum() -953255194 +1481818223 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1132038938 +1095352419 1 this.scale(this.value) --510 +-516 1 this.scale(this.shift) --60 +-61 1 this.scale(this.getValue()) --510 +-516 1 this.scale(this.getShift()) --60 +-61 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 5 @@ -69335,18 +69268,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --85 +n +164332069 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -13674 +13235 this -71667990 +530486389 1 this.value --85 +-86 1 this.shift 5 @@ -69355,19 +69291,19 @@ this.heavy true 1 this.list1 -1933065610 +983595261 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +221111433 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69376,7 +69312,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 5 @@ -69385,31 +69321,31 @@ this.isHeavy() true 1 this.getNum() -1620802193 +1991278377 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2139879203 +951031848 1 this.scale(this.value) --510 +-516 1 this.scale(this.shift) --60 +-61 1 this.scale(this.getValue()) --510 +-516 1 this.scale(this.getShift()) --60 +-61 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 5 @@ -69417,36 +69353,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +164332069 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-172 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -13674 +13270 this -71667990 +2038522556 1 this.value --85 +-86 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1933065610 +502848122 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1848289347 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69455,80 +69400,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1041128512 +929697158 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -550145428 +1650813924 1 this.scale(this.value) --510 +-946 1 this.scale(this.shift) --60 +14 1 this.scale(this.getValue()) --510 +-946 1 this.scale(this.getShift()) --60 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +400103862 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -13709 +13270 this -71667990 +2038522556 1 this.value --85 +-86 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1933065610 +502848122 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1848289347 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69537,77 +69485,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1377108061 +1408482749 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1623917508 +873634936 1 this.scale(this.value) --510 +-946 1 this.scale(this.shift) --60 +14 1 this.scale(this.getValue()) --510 +-946 1 this.scale(this.getShift()) --60 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +400103862 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-172 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -13709 +13305 this -71667990 +1204481453 1 this.value --85 +-86 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1933065610 +1899600175 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1902671237 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69616,80 +69573,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -811887233 +2103569237 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -277631993 +573200870 1 this.scale(this.value) --510 +-86 1 this.scale(this.shift) --60 +-86 1 this.scale(this.getValue()) --510 +-86 1 this.scale(this.getShift()) --60 +-86 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +1819940427 +1 +l[..] +[1277933280 1046665075 1324829744 1921242091 1670313965 1275035040 1058876963 1399701152 1204296383 2003463579 567294307 527829831 418179060 1020155847 485845532 871790326 1281025083 40170008 896982466 901205084] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -13744 +13305 this -71667990 +1204481453 1 this.value --85 +-86 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1933065610 +1899600175 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[1766869737 947553027 684566052 352367347 2129442232 308433917 1473981203 1197251633 1552326679 1551629761 1383519982] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1902671237 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[403174823 462526099 2142565033 1304589447 1783568981 2113748097 629454893 2075952726 1764996806 2101249621 2113604623] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69698,56 +69664,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1826425067 +777457133 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -594850851 +193388045 1 this.scale(this.value) --510 +-86 1 this.scale(this.shift) --60 +-86 1 this.scale(this.getValue()) --510 +-86 1 this.scale(this.getShift()) --60 +-86 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1819940427 +1 +l[..] +[1277933280 1046665075 1324829744 1921242091 1670313965 1275035040 1058876963 1399701152 1204296383 2003463579 567294307 527829831 418179060 1020155847 485845532 871790326 1281025083 40170008 896982466 901205084] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -13744 +13340 this -71667990 +530486389 1 this.value --85 +-86 1 this.shift 5 @@ -69756,19 +69737,19 @@ this.heavy true 1 this.list1 -1933065610 +983595261 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +221111433 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69777,7 +69758,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 5 @@ -69786,31 +69767,31 @@ this.isHeavy() true 1 this.getNum() -1121875972 +136157810 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -463040744 +122155649 1 this.scale(this.value) --510 +-516 1 this.scale(this.shift) --60 +-61 1 this.scale(this.getValue()) --510 +-516 1 this.scale(this.getShift()) --60 +-61 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 5 @@ -69818,21 +69799,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1992531327 +l +1819940427 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1277933280 1046665075 1324829744 1921242091 1670313965 1275035040 1058876963 1399701152 1204296383 2003463579 567294307 527829831 418179060 1020155847 485845532 871790326 1281025083 40170008 896982466 901205084] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -13779 +13340 this -71667990 +530486389 1 this.value --85 +-86 1 this.shift 5 @@ -69841,19 +69828,19 @@ this.heavy true 1 this.list1 -1933065610 +983595261 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[220454978 1188401255 755210740 350059321 107915280 1825719826 1571798597 575935098 1367937032 798310141 258535644] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +221111433 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[347978868 307829448 1518331471 940857381 1093864783 459718907 1041109062 616674002 2109839984 1351478315 508512860] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69862,7 +69849,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 5 @@ -69871,31 +69858,31 @@ this.isHeavy() true 1 this.getNum() -614021571 +292138977 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1201619962 +748842359 1 this.scale(this.value) --510 +-516 1 this.scale(this.shift) --60 +-61 1 this.scale(this.getValue()) --510 +-516 1 this.scale(this.getShift()) --60 +-61 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 5 @@ -69903,36 +69890,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +1819940427 +1 +l[..] +[1277933280 1046665075 1324829744 1921242091 1670313965 1275035040 1058876963 1399701152 1204296383 2003463579 567294307 527829831 418179060 1020155847 485845532 871790326 1281025083 40170008 896982466 901205084] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -13779 +13375 this -71667990 +2038522556 1 this.value --85 +-86 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1933065610 +502848122 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1848289347 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -69941,59 +69943,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -690484946 +1208532123 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2126342681 +1893960929 1 this.scale(this.value) --510 +-946 1 this.scale(this.shift) --60 +14 1 this.scale(this.getValue()) --510 +-946 1 this.scale(this.getShift()) --60 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -1166069840 +l +1819940427 +1 +l[..] +[1277933280 1046665075 1324829744 1921242091 1670313965 1275035040 1058876963 1399701152 1204296383 2003463579 567294307 527829831 418179060 1020155847 485845532 871790326 1281025083 40170008 896982466 901205084] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -13814 +13375 this -1870810124 +2038522556 1 this.value --85 +-86 1 this.shift 10 @@ -70002,19 +70013,19 @@ this.heavy true 1 this.list1 -1397678341 +502848122 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[596910004 1954985045 106999035 1569754439 1593458942 530539368 479920916 1161322357 1237912220 757708014 1777238524] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1848289347 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[1865859824 257459516 304354378 704106237 1880078449 993370665 159475521 504807594 332873513 90567568 131872530] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70023,7 +70034,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --85 +-86 1 this.getShift() 10 @@ -70032,31 +70043,31 @@ this.isHeavy() true 1 this.getNum() -200038358 +749282235 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1232775351 +333392524 1 this.scale(this.value) --935 +-946 1 this.scale(this.shift) -15 +14 1 this.scale(this.getValue()) --935 +-946 1 this.scale(this.getShift()) -15 +14 1 this.sum(this.getNum()) --170 +-172 1 this.sum(this.getJWrap()) --170 +-172 1 this.retrieve(this.list1) 10 @@ -70064,36 +70075,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1819940427 +1 +l[..] +[1277933280 1046665075 1324829744 1921242091 1670313965 1275035040 1058876963 1399701152 1204296383 2003463579 567294307 527829831 418179060 1020155847 485845532 871790326 1281025083 40170008 896982466 901205084] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -13814 +13410 +value +-85 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +13410 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70105,31 +70141,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -333098001 +1871612052 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2035718725 +1023268896 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70138,44 +70174,57 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -85 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -13849 +13428 +value +-85 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +13428 this -1870810124 +153646652 1 this.value -85 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1397678341 +237344028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1697752980 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70187,31 +70236,31 @@ this.getValue() -85 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -615147071 +817299424 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -790545639 +2031951755 1 this.scale(this.value) --935 +-510 1 this.scale(this.shift) -15 +-60 1 this.scale(this.getValue()) --935 +-510 1 this.scale(this.getShift()) -15 +-60 1 this.sum(this.getNum()) -170 @@ -70220,17 +70269,33 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-85 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +13446 +value +-85 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -13849 +13446 this -1870810124 +605420629 1 this.value -85 @@ -70242,19 +70307,19 @@ this.heavy true 1 this.list1 -1397678341 +351417028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +859236022 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70272,13 +70337,13 @@ this.isHeavy() true 1 this.getNum() -219230684 +1153302647 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1675651383 +570794077 1 this.scale(this.value) -935 @@ -70304,39 +70369,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-85 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -13884 +13464 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70348,31 +70416,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -572247323 +1928301845 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1328986395 +1789452565 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70381,41 +70449,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -13884 +13464 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70427,31 +70495,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -296928318 +1579280783 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1869728645 +1370074462 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70460,44 +70528,44 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-85 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -13919 +13499 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70509,31 +70577,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -401129964 +1595938139 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -840137015 +1923999715 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70542,41 +70610,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -13919 +13499 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70588,31 +70656,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -477832080 +596706728 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1482412427 +1070501849 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70621,47 +70689,44 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1947871742 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -13954 +13534 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70673,31 +70738,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1639652926 +1620823990 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1136568978 +2106900153 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70706,41 +70771,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -13954 +13534 this -1870810124 +515809288 1 this.value -85 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1397678341 +1926673338 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1371376476 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70752,31 +70817,31 @@ this.getValue() -85 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -447773181 +1443055846 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -941153979 +502838712 1 this.scale(this.value) --935 +-85 1 this.scale(this.shift) -15 +-85 1 this.scale(this.getValue()) --935 +-85 1 this.scale(this.getShift()) -15 +-85 1 this.sum(this.getNum()) -170 @@ -70785,20 +70850,20 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1757864898 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -13989 +13569 this -144281855 +515809288 1 this.value -85 @@ -70810,19 +70875,19 @@ this.heavy false 1 this.list1 -436099522 +1926673338 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1371376476 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70840,13 +70905,13 @@ this.isHeavy() false 1 this.getNum() -1502808907 +589311950 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1154127582 +2073640037 1 this.scale(this.value) -85 @@ -70872,15 +70937,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --85 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -13989 +13569 this -144281855 +515809288 1 this.value -85 @@ -70892,19 +70954,19 @@ this.heavy false 1 this.list1 -436099522 +1926673338 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1371376476 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -70922,13 +70984,13 @@ this.isHeavy() false 1 this.getNum() -1349970970 +932257672 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -797362235 +1864116663 1 this.scale(this.value) -85 @@ -70954,42 +71016,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --85 -1 return --85 +1298146757 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -14024 +13604 this -71667990 +515809288 1 this.value -85 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1933065610 +1926673338 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1371376476 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71001,31 +71063,31 @@ this.getValue() -85 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -969126365 +2133344792 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1590837707 +1081769770 1 this.scale(this.value) --510 +-85 1 this.scale(this.shift) --60 +-85 1 this.scale(this.getValue()) --510 +-85 1 this.scale(this.getShift()) --60 +-85 1 this.sum(this.getNum()) -170 @@ -71034,44 +71096,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --85 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -14024 +13604 this -71667990 +515809288 1 this.value -85 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1933065610 +1926673338 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1371376476 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71083,31 +71142,31 @@ this.getValue() -85 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1037936399 +1319483139 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -587393412 +44559647 1 this.scale(this.value) --510 +-85 1 this.scale(this.shift) --60 +-85 1 this.scale(this.getValue()) --510 +-85 1 this.scale(this.getShift()) --60 +-85 1 this.sum(this.getNum()) -170 @@ -71116,47 +71175,44 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --85 +0 1 return --510 +1067599825 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -14059 +13639 this -1870810124 +153646652 1 this.value -85 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1397678341 +237344028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1697752980 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71168,31 +71224,31 @@ this.getValue() -85 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -338750225 +749927456 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -395883378 +1330400026 1 this.scale(this.value) --935 +-510 1 this.scale(this.shift) -15 +-60 1 this.scale(this.getValue()) --935 +-510 1 this.scale(this.getShift()) -15 +-60 1 this.sum(this.getNum()) -170 @@ -71201,44 +71257,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --85 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -14059 +13639 this -1870810124 +153646652 1 this.value -85 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1397678341 +237344028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1697752980 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71250,31 +71303,31 @@ this.getValue() -85 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -707595640 +1916700921 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1942968041 +1594873248 1 this.scale(this.value) --935 +-510 1 this.scale(this.shift) -15 +-60 1 this.scale(this.getValue()) --935 +-510 1 this.scale(this.getShift()) -15 +-60 1 this.sum(this.getNum()) -170 @@ -71283,47 +71336,44 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --85 +5 1 return --935 +-85 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -14094 +13674 this -144281855 +153646652 1 this.value -85 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -436099522 +237344028 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1697752980 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71335,31 +71385,31 @@ this.getValue() -85 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -827528805 +1692885405 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1172527663 +1230955136 1 this.scale(this.value) --85 +-510 1 this.scale(this.shift) --85 +-60 1 this.scale(this.getValue()) --85 +-510 1 this.scale(this.getShift()) --85 +-60 1 this.sum(this.getNum()) -170 @@ -71368,47 +71418,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1362487169 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -14094 +13674 this -144281855 +153646652 1 this.value -85 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -436099522 +237344028 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1697752980 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71420,31 +71464,31 @@ this.getValue() -85 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -703721422 +1336001042 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1253495525 +1856158867 1 this.scale(this.value) --85 +-510 1 this.scale(this.shift) --85 +-60 1 this.scale(this.getValue()) --85 +-510 1 this.scale(this.getShift()) --85 +-60 1 this.sum(this.getNum()) -170 @@ -71453,26 +71497,20 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1362487169 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --170 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -14129 +13709 this -71667990 +153646652 1 this.value -85 @@ -71484,19 +71522,19 @@ this.heavy true 1 this.list1 -1933065610 +237344028 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1697752980 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71514,13 +71552,13 @@ this.isHeavy() true 1 this.getNum() -684711605 +823575379 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1730564609 +258112787 1 this.scale(this.value) -510 @@ -71546,18 +71584,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -80868495 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -14129 +13709 this -71667990 +153646652 1 this.value -85 @@ -71569,19 +71601,19 @@ this.heavy true 1 this.list1 -1933065610 +237344028 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +1697752980 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71599,13 +71631,13 @@ this.isHeavy() true 1 this.getNum() -1947130561 +1318227903 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2067525741 +892335322 1 this.scale(this.value) -510 @@ -71631,45 +71663,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -80868495 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --170 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -14164 +13744 this -1870810124 +153646652 1 this.value -85 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1397678341 +237344028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1697752980 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71681,31 +71707,31 @@ this.getValue() -85 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -472236880 +841262455 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1933166495 +775081157 1 this.scale(this.value) --935 +-510 1 this.scale(this.shift) -15 +-60 1 this.scale(this.getValue()) --935 +-510 1 this.scale(this.getShift()) -15 +-60 1 this.sum(this.getNum()) -170 @@ -71714,47 +71740,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1449186002 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -14164 +13744 this -1870810124 +153646652 1 this.value -85 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1397678341 +237344028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +1697752980 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71766,31 +71786,31 @@ this.getValue() -85 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1857094987 +1955021259 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -668121011 +1044705957 1 this.scale(this.value) --935 +-510 1 this.scale(this.shift) -15 +-60 1 this.scale(this.getValue()) --935 +-510 1 this.scale(this.getShift()) -15 +-60 1 this.sum(this.getNum()) -170 @@ -71799,50 +71819,47 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -1449186002 +return +693958407 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --170 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -14199 +13779 this -144281855 +153646652 1 this.value -85 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -436099522 +237344028 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1697752980 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71854,31 +71871,31 @@ this.getValue() -85 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2065325361 +288379405 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2145155866 +1601687801 1 this.scale(this.value) --85 +-510 1 this.scale(this.shift) --85 +-60 1 this.scale(this.getValue()) --85 +-510 1 this.scale(this.getShift()) --85 +-60 1 this.sum(this.getNum()) -170 @@ -71887,53 +71904,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1679174026 -1 -l[..] -[1795249755 617391935 2012752888 1175381072 2075091998 936783106 1311046385 1574374475 1365786638 323322083 940622071 1408021730 1498909817 46631362 2049253626 462961596 662290891 715262636 1953150993 173711309] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -14199 +13779 this -144281855 +153646652 1 this.value -85 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -436099522 +237344028 1 this.list1[..] -[162979043 1147125776 1782218113 637916835 1229880021 1063410572 1382573270 1135888350 1893360267 293326223 1458860096] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1240835673 +1697752980 1 this.list2[..] -[511460094 1880244564 1048521543 250765919 1259885219 702116313 46232326 1785106515 1938649015 1252102821 899855594] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -71945,31 +71950,31 @@ this.getValue() -85 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1135694090 +1178587240 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -775916094 +144040807 1 this.scale(this.value) --85 +-510 1 this.scale(this.shift) --85 +-60 1 this.scale(this.getValue()) --85 +-510 1 this.scale(this.getShift()) --85 +-60 1 this.sum(this.getNum()) -170 @@ -71978,56 +71983,44 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1679174026 -1 -l[..] -[1795249755 617391935 2012752888 1175381072 2075091998 936783106 1311046385 1574374475 1365786638 323322083 940622071 1408021730 1498909817 46631362 2049253626 462961596 662290891 715262636 1953150993 173711309] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +455501890 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -14234 +13814 this -71667990 +605420629 1 this.value -85 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1933065610 +351417028 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +859236022 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72039,31 +72032,31 @@ this.getValue() -85 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1301087274 +2050462663 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1695320364 +1119072377 1 this.scale(this.value) --510 +-935 1 this.scale(this.shift) --60 +15 1 this.scale(this.getValue()) --510 +-935 1 this.scale(this.getShift()) --60 +15 1 this.sum(this.getNum()) -170 @@ -72072,53 +72065,41 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1679174026 -1 -l[..] -[1795249755 617391935 2012752888 1175381072 2075091998 936783106 1311046385 1574374475 1365786638 323322083 940622071 1408021730 1498909817 46631362 2049253626 462961596 662290891 715262636 1953150993 173711309] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -14234 +13814 this -71667990 +605420629 1 this.value -85 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1933065610 +351417028 1 this.list1[..] -[1901095454 1449595312 146433569 92734721 1666811772 181276889 1588861977 44096994 256319943 117086119 771381381] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -248093528 +859236022 1 this.list2[..] -[1442166269 1988043041 341326414 744218961 1143317399 51851637 1739586024 1379935110 1893489817 323189426 858539519] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72130,31 +72111,31 @@ this.getValue() -85 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -436329352 +1696263571 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1878248206 +1305935114 1 this.scale(this.value) --510 +-935 1 this.scale(this.shift) --60 +15 1 this.scale(this.getValue()) --510 +-935 1 this.scale(this.getShift()) --60 +15 1 this.sum(this.getNum()) -170 @@ -72163,32 +72144,20 @@ this.sum(this.getJWrap()) -170 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1679174026 -1 -l[..] -[1795249755 617391935 2012752888 1175381072 2075091998 936783106 1311046385 1574374475 1365786638 323322083 940622071 1408021730 1498909817 46631362 2049253626 462961596 662290891 715262636 1953150993 173711309] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-85 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -14269 +13849 this -1870810124 +605420629 1 this.value -85 @@ -72200,19 +72169,19 @@ this.heavy true 1 this.list1 -1397678341 +351417028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +859236022 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72230,13 +72199,13 @@ this.isHeavy() true 1 this.getNum() -1855470989 +196732636 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1290874036 +1414967210 1 this.scale(this.value) -935 @@ -72262,24 +72231,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1679174026 -1 -l[..] -[1795249755 617391935 2012752888 1175381072 2075091998 936783106 1311046385 1574374475 1365786638 323322083 940622071 1408021730 1498909817 46631362 2049253626 462961596 662290891 715262636 1953150993 173711309] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -14269 +13849 this -1870810124 +605420629 1 this.value -85 @@ -72291,19 +72248,19 @@ this.heavy true 1 this.list1 -1397678341 +351417028 1 this.list1[..] -[1603746301 1096827410 378654022 1044101693 1128274614 630834488 308474577 506691781 1196102912 307222417 936475131] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -429877854 +859236022 1 this.list2[..] -[822103670 186596892 807839224 962221434 1503779328 284124153 1418492190 1382271983 367125035 549945414 162956410] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72321,13 +72278,13 @@ this.isHeavy() true 1 this.getNum() -1840121058 +1720891078 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1002621359 +483797427 1 this.scale(this.value) -935 @@ -72353,61 +72310,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1679174026 -1 -l[..] -[1795249755 617391935 2012752888 1175381072 2075091998 936783106 1311046385 1574374475 1365786638 323322083 940622071 1408021730 1498909817 46631362 2049253626 462961596 662290891 715262636 1953150993 173711309] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -14304 -value --84 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -14304 +13884 this -1900486351 +605420629 1 this.value --84 +-85 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1949819426 +351417028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +859236022 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72416,93 +72351,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -171056538 +1486726131 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1614114480 +970419381 1 this.scale(this.value) --84 +-935 1 this.scale(this.shift) --84 +15 1 this.scale(this.getValue()) --84 +-935 1 this.scale(this.getShift()) --84 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --84 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -14322 -value --84 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -14322 +13884 this -1408636456 +605420629 1 this.value --84 +-85 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1093191464 +351417028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +859236022 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72511,72 +72430,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1783563097 +1241569743 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1768226453 +1731656333 1 this.scale(this.value) --504 +-935 1 this.scale(this.shift) --59 +15 1 this.scale(this.getValue()) --504 +-935 1 this.scale(this.getShift()) --59 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --84 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -14340 -value --84 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -14340 +13919 this -1703288385 +605420629 1 this.value --84 +-85 1 this.shift 10 @@ -72585,19 +72491,19 @@ this.heavy true 1 this.list1 -1210872185 +351417028 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +859236022 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72606,7 +72512,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 10 @@ -72615,31 +72521,31 @@ this.isHeavy() true 1 this.getNum() -804917908 +1384210339 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1255787303 +1345401730 1 this.scale(this.value) --924 +-935 1 this.scale(this.shift) -16 +15 1 this.scale(this.getValue()) --924 +-935 1 this.scale(this.getShift()) -16 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 10 @@ -72647,42 +72553,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --84 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -14358 +13919 this -1900486351 +605420629 1 this.value --84 +-85 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1949819426 +351417028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +859236022 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72691,77 +72591,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -547918805 +481511146 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -461477299 +1275143523 1 this.scale(this.value) --84 +-935 1 this.scale(this.shift) --84 +15 1 this.scale(this.getValue()) --84 +-935 1 this.scale(this.getShift()) --84 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +346359559 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -14358 +13954 this -1900486351 +605420629 1 this.value --84 +-85 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1949819426 +351417028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +859236022 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72770,80 +72676,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1485514976 +1297189682 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -405321610 +1272123492 1 this.scale(this.value) --84 +-935 1 this.scale(this.shift) --84 +15 1 this.scale(this.getValue()) --84 +-935 1 this.scale(this.getShift()) --84 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --84 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -14393 +13954 this -1900486351 +605420629 1 this.value --84 +-85 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1949819426 +351417028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +859236022 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72852,56 +72755,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -422170986 +238816832 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -141792014 +849198527 1 this.scale(this.value) --84 +-935 1 this.scale(this.shift) --84 +15 1 this.scale(this.getValue()) --84 +-935 1 this.scale(this.getShift()) --84 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1934932165 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -14393 +13989 this -1900486351 +515809288 1 this.value --84 +-85 1 this.shift 0 @@ -72910,19 +72816,19 @@ this.heavy false 1 this.list1 -1949819426 +1926673338 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1371376476 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -72931,7 +72837,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 0 @@ -72940,31 +72846,31 @@ this.isHeavy() false 1 this.getNum() -1539014775 +551016187 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1928278957 +1324843695 1 this.scale(this.value) --84 +-85 1 this.scale(this.shift) --84 +-85 1 this.scale(this.getValue()) --84 +-85 1 this.scale(this.getShift()) --84 +-85 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 0 @@ -72972,18 +72878,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-85 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -14428 +13989 this -1900486351 +515809288 1 this.value --84 +-85 1 this.shift 0 @@ -72992,19 +72898,19 @@ this.heavy false 1 this.list1 -1949819426 +1926673338 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1371376476 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73013,7 +72919,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 0 @@ -73022,31 +72928,31 @@ this.isHeavy() false 1 this.getNum() -908713422 +299413131 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1990269737 +1201454821 1 this.scale(this.value) --84 +-85 1 this.scale(this.shift) --84 +-85 1 this.scale(this.getValue()) --84 +-85 1 this.scale(this.getShift()) --84 +-85 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 0 @@ -73054,36 +72960,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-85 +1 +return +-85 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -14428 +14024 this -1900486351 +153646652 1 this.value --84 +-85 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1949819426 +237344028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1697752980 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73092,80 +73004,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1258184087 +1508038883 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -28478200 +728943498 1 this.scale(this.value) --84 +-510 1 this.scale(this.shift) --84 +-60 1 this.scale(this.getValue()) --84 +-510 1 this.scale(this.getShift()) --84 +-60 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-85 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -14463 +14024 this -1900486351 +153646652 1 this.value --84 +-85 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1949819426 +237344028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1697752980 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73174,77 +73086,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1891737766 +2139788441 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -941239327 +1564698139 1 this.scale(this.value) --84 +-510 1 this.scale(this.shift) --84 +-60 1 this.scale(this.getValue()) --84 +-510 1 this.scale(this.getShift()) --84 +-60 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-85 +1 +return +-510 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -14463 +14059 this -1900486351 +605420629 1 this.value --84 +-85 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1949819426 +351417028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +859236022 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73253,83 +73171,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1044825087 +304715920 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -401455690 +800735172 1 this.scale(this.value) --84 +-935 1 this.scale(this.shift) --84 +15 1 this.scale(this.getValue()) --84 +-935 1 this.scale(this.getShift()) --84 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -2019646603 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-85 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -14498 +14059 this -1900486351 +605420629 1 this.value --84 +-85 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1949819426 +351417028 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +859236022 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73338,56 +73253,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1073932139 +79644918 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2124890785 +1107985860 1 this.scale(this.value) --84 +-935 1 this.scale(this.shift) --84 +15 1 this.scale(this.getValue()) --84 +-935 1 this.scale(this.getShift()) --84 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-85 +1 +return +-935 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -14498 +14094 this -1900486351 +515809288 1 this.value --84 +-85 1 this.shift 0 @@ -73396,19 +73317,19 @@ this.heavy false 1 this.list1 -1949819426 +1926673338 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1371376476 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73417,7 +73338,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 0 @@ -73426,31 +73347,31 @@ this.isHeavy() false 1 this.getNum() -386373885 +473524237 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1942820314 +1652764753 1 this.scale(this.value) --84 +-85 1 this.scale(this.shift) --84 +-85 1 this.scale(this.getValue()) --84 +-85 1 this.scale(this.getShift()) --84 +-85 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 0 @@ -73458,39 +73379,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -492164763 +n +478489615 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -14533 +14094 this -1408636456 +515809288 1 this.value --84 +-85 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1093191464 +1926673338 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1371376476 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73499,56 +73423,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1853647144 +171421438 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -702282179 +1570358965 1 this.scale(this.value) --504 +-85 1 this.scale(this.shift) --59 +-85 1 this.scale(this.getValue()) --504 +-85 1 this.scale(this.getShift()) --59 +-85 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +478489615 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-170 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -14533 +14129 this -1408636456 +153646652 1 this.value --84 +-85 1 this.shift 5 @@ -73557,19 +73490,19 @@ this.heavy true 1 this.list1 -1093191464 +237344028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1697752980 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73578,7 +73511,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 5 @@ -73587,31 +73520,31 @@ this.isHeavy() true 1 this.getNum() -686458541 +644052207 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1026546903 +330551672 1 this.scale(this.value) --504 +-510 1 this.scale(this.shift) --59 +-60 1 this.scale(this.getValue()) --504 +-510 1 this.scale(this.getShift()) --59 +-60 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 5 @@ -73619,18 +73552,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --84 +n +616881582 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -14568 +14129 this -1408636456 +153646652 1 this.value --84 +-85 1 this.shift 5 @@ -73639,19 +73575,19 @@ this.heavy true 1 this.list1 -1093191464 +237344028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1697752980 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73660,7 +73596,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 5 @@ -73669,31 +73605,31 @@ this.isHeavy() true 1 this.getNum() -290178723 +939199469 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -98435124 +176342513 1 this.scale(this.value) --504 +-510 1 this.scale(this.shift) --59 +-60 1 this.scale(this.getValue()) --504 +-510 1 this.scale(this.getShift()) --59 +-60 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 5 @@ -73701,36 +73637,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +616881582 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-170 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -14568 +14164 this -1408636456 +605420629 1 this.value --84 +-85 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1093191464 +351417028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +859236022 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73739,80 +73684,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -836720878 +129498568 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1044875990 +85748029 1 this.scale(this.value) --504 +-935 1 this.scale(this.shift) --59 +15 1 this.scale(this.getValue()) --504 +-935 1 this.scale(this.getShift()) --59 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +1784131088 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -14603 +14164 this -1408636456 +605420629 1 this.value --84 +-85 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1093191464 +351417028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +859236022 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73821,77 +73769,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1256982411 +1986417638 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1306746138 +1309129055 1 this.scale(this.value) --504 +-935 1 this.scale(this.shift) --59 +15 1 this.scale(this.getValue()) --504 +-935 1 this.scale(this.getShift()) --59 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1784131088 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-170 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -14603 +14199 this -1408636456 +515809288 1 this.value --84 +-85 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1093191464 +1926673338 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1371376476 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73900,80 +73857,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -167083497 +682910755 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1411207450 +2143582219 1 this.scale(this.value) --504 +-85 1 this.scale(this.shift) --59 +-85 1 this.scale(this.getValue()) --504 +-85 1 this.scale(this.getShift()) --59 +-85 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +997850486 +1 +l[..] +[1221027335 1129944640 528591360 1801942731 409195262 394771492 88397182 1438988851 1404565079 2038105753 1513608173 652176954 1245065720 1800976873 253011924 1390913202 698741991 127702987 765242091 1117871068] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -14638 +14199 this -1408636456 +515809288 1 this.value --84 +-85 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1093191464 +1926673338 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[394785440 2112233878 372469954 1371495133 2030411960 899929247 949684105 333040629 1200470358 1822525972 208043846] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1371376476 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[2068897588 457247584 610454273 431506362 1693226694 2003147568 1164799006 504582810 516537656 1160649162 1796047085] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -73982,56 +73948,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1354214682 +1151704483 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1254469468 +669284403 1 this.scale(this.value) --504 +-85 1 this.scale(this.shift) --59 +-85 1 this.scale(this.getValue()) --504 +-85 1 this.scale(this.getShift()) --59 +-85 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +997850486 +1 +l[..] +[1221027335 1129944640 528591360 1801942731 409195262 394771492 88397182 1438988851 1404565079 2038105753 1513608173 652176954 1245065720 1800976873 253011924 1390913202 698741991 127702987 765242091 1117871068] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -14638 +14234 this -1408636456 +153646652 1 this.value --84 +-85 1 this.shift 5 @@ -74040,19 +74021,19 @@ this.heavy true 1 this.list1 -1093191464 +237344028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1697752980 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74061,7 +74042,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 5 @@ -74070,31 +74051,31 @@ this.isHeavy() true 1 this.getNum() -2021386077 +1869039062 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -244500599 +659590237 1 this.scale(this.value) --504 +-510 1 this.scale(this.shift) --59 +-60 1 this.scale(this.getValue()) --504 +-510 1 this.scale(this.getShift()) --59 +-60 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 5 @@ -74102,21 +74083,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1185350682 +l +997850486 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1221027335 1129944640 528591360 1801942731 409195262 394771492 88397182 1438988851 1404565079 2038105753 1513608173 652176954 1245065720 1800976873 253011924 1390913202 698741991 127702987 765242091 1117871068] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -14673 +14234 this -1408636456 +153646652 1 this.value --84 +-85 1 this.shift 5 @@ -74125,19 +74112,19 @@ this.heavy true 1 this.list1 -1093191464 +237344028 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[368342628 1192923170 231311211 795242171 429353573 169833205 1261198850 1470358122 1975873209 79438382 768192757] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1697752980 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[996125997 1578587450 1052317717 1457263953 271379554 1962329560 41489123 884603232 1124162665 26970580 1270836494] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74146,7 +74133,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 5 @@ -74155,31 +74142,31 @@ this.isHeavy() true 1 this.getNum() -2130602802 +1332757905 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1898963136 +1263634860 1 this.scale(this.value) --504 +-510 1 this.scale(this.shift) --59 +-60 1 this.scale(this.getValue()) --504 +-510 1 this.scale(this.getShift()) --59 +-60 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 5 @@ -74187,97 +74174,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -14673 -this -1408636456 -1 -this.value --84 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1093191464 -1 -this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -443532592 +l +997850486 1 -this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +l[..] +[1221027335 1129944640 528591360 1801942731 409195262 394771492 88397182 1438988851 1404565079 2038105753 1513608173 652176954 1245065720 1800976873 253011924 1390913202 698741991 127702987 765242091 1117871068] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --84 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -2118948685 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1449230594 -1 -this.scale(this.value) --504 -1 -this.scale(this.shift) --59 -1 -this.scale(this.getValue()) --504 -1 -this.scale(this.getShift()) --59 -1 -this.sum(this.getNum()) --168 -1 -this.sum(this.getJWrap()) --168 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -459069084 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -14708 +14269 this -1703288385 +605420629 1 this.value --84 +-85 1 this.shift 10 @@ -74286,19 +74206,19 @@ this.heavy true 1 this.list1 -1210872185 +351417028 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +859236022 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74307,7 +74227,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 10 @@ -74316,31 +74236,31 @@ this.isHeavy() true 1 this.getNum() -1812834764 +508378341 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1963378559 +1037854997 1 this.scale(this.value) --924 +-935 1 this.scale(this.shift) -16 +15 1 this.scale(this.getValue()) --924 +-935 1 this.scale(this.getShift()) -16 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 10 @@ -74348,15 +74268,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +997850486 +1 +l[..] +[1221027335 1129944640 528591360 1801942731 409195262 394771492 88397182 1438988851 1404565079 2038105753 1513608173 652176954 1245065720 1800976873 253011924 1390913202 698741991 127702987 765242091 1117871068] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -14708 +14269 this -1703288385 +605420629 1 this.value --84 +-85 1 this.shift 10 @@ -74365,19 +74297,19 @@ this.heavy true 1 this.list1 -1210872185 +351417028 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[331122245 38544126 154173878 215082566 2074658615 412111214 362827515 381708767 736920911 837659261 648936749] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +859236022 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[2084559714 542980314 1766911337 1842853283 1865516976 644082020 1219916644 412925308 2079565272 1122130699 968113504] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74386,7 +74318,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --84 +-85 1 this.getShift() 10 @@ -74395,31 +74327,31 @@ this.isHeavy() true 1 this.getNum() -269721311 +1884155890 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2015578807 +932582590 1 this.scale(this.value) --924 +-935 1 this.scale(this.shift) -16 +15 1 this.scale(this.getValue()) --924 +-935 1 this.scale(this.getShift()) -16 +15 1 this.sum(this.getNum()) --168 +-170 1 this.sum(this.getJWrap()) --168 +-170 1 this.retrieve(this.list1) 10 @@ -74427,39 +74359,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +997850486 +1 +l[..] +[1221027335 1129944640 528591360 1801942731 409195262 394771492 88397182 1438988851 1404565079 2038105753 1513608173 652176954 1245065720 1800976873 253011924 1390913202 698741991 127702987 765242091 1117871068] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +14304 +value -84 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -14743 +14304 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74471,31 +74425,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1425961471 +1368173251 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -216942577 +1745043985 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -74504,41 +74458,57 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-84 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -14743 +14322 +value +-84 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +14322 this -1703288385 +1333041165 1 this.value -84 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1210872185 +1815556070 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +130764844 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74550,31 +74520,31 @@ this.getValue() -84 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1874142680 +706895319 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1573372211 +1642785848 1 this.scale(this.value) --924 +-504 1 this.scale(this.shift) -16 +-59 1 this.scale(this.getValue()) --924 +-504 1 this.scale(this.getShift()) -16 +-59 1 this.sum(this.getNum()) -168 @@ -74583,20 +74553,33 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-84 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +14340 +value +-84 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -14778 +14340 this -1703288385 +307400933 1 this.value -84 @@ -74608,19 +74591,19 @@ this.heavy true 1 this.list1 -1210872185 +1872973138 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +684822005 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74638,13 +74621,13 @@ this.isHeavy() true 1 this.getNum() -1700604766 +451460284 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1204444239 +1826334428 1 this.scale(this.value) -924 @@ -74670,36 +74653,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-84 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -14778 +14358 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74711,31 +74700,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -913468251 +2101153819 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -300302154 +51152513 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -74744,44 +74733,41 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -14813 +14358 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74793,31 +74779,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -591731828 +1558103808 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -240063939 +1828873985 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -74826,41 +74812,44 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-84 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -14813 +14393 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74872,31 +74861,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1780333707 +2024415090 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1178959898 +527804008 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -74905,47 +74894,41 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -2094878464 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -14848 +14393 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -74957,31 +74940,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -627951883 +892965953 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1252656223 +1266534280 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -74990,41 +74973,44 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -14848 +14428 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75036,31 +75022,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1610948420 +1661210650 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1883757211 +1366342900 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -75069,20 +75055,17 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -2103521203 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -14883 +14428 this -1900486351 +1078705341 1 this.value -84 @@ -75094,19 +75077,19 @@ this.heavy false 1 this.list1 -1949819426 +511832416 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1070044969 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75124,13 +75107,13 @@ this.isHeavy() false 1 this.getNum() -2005061907 +672313607 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -762082225 +234250762 1 this.scale(this.value) -84 @@ -75156,15 +75139,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --84 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -14883 +14463 this -1900486351 +1078705341 1 this.value -84 @@ -75176,19 +75159,19 @@ this.heavy false 1 this.list1 -1949819426 +511832416 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +1070044969 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75206,13 +75189,13 @@ this.isHeavy() false 1 this.getNum() -723484867 +1311844206 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -557750355 +443721024 1 this.scale(this.value) -84 @@ -75238,42 +75221,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --84 -1 -return --84 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -14918 +14463 this -1408636456 +1078705341 1 this.value -84 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1093191464 +511832416 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1070044969 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75285,31 +75262,31 @@ this.getValue() -84 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -344097330 +668312960 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -70363939 +428696898 1 this.scale(this.value) --504 +-84 1 this.scale(this.shift) --59 +-84 1 this.scale(this.getValue()) --504 +-84 1 this.scale(this.getShift()) --59 +-84 1 this.sum(this.getNum()) -168 @@ -75318,44 +75295,47 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --84 +return +1581267786 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -14918 +14498 this -1408636456 +1078705341 1 this.value -84 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1093191464 +511832416 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +1070044969 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75367,31 +75347,31 @@ this.getValue() -84 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1490716923 +1360518503 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1935098959 +1541708640 1 this.scale(this.value) --504 +-84 1 this.scale(this.shift) --59 +-84 1 this.scale(this.getValue()) --504 +-84 1 this.scale(this.getShift()) --59 +-84 1 this.sum(this.getNum()) -168 @@ -75400,47 +75380,41 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --84 -1 -return --504 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -14953 +14498 this -1703288385 +1078705341 1 this.value -84 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1210872185 +511832416 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +1070044969 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75452,31 +75426,31 @@ this.getValue() -84 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1715853745 +691098155 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1943480299 +1987360300 1 this.scale(this.value) --924 +-84 1 this.scale(this.shift) -16 +-84 1 this.scale(this.getValue()) --924 +-84 1 this.scale(this.getShift()) -16 +-84 1 this.sum(this.getNum()) -168 @@ -75485,44 +75459,44 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --84 +return +434610528 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -14953 +14533 this -1703288385 +1333041165 1 this.value -84 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1210872185 +1815556070 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +130764844 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75534,31 +75508,31 @@ this.getValue() -84 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -847114423 +1713833639 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1783011398 +1168420930 1 this.scale(this.value) --924 +-504 1 this.scale(this.shift) -16 +-59 1 this.scale(this.getValue()) --924 +-504 1 this.scale(this.getShift()) -16 +-59 1 this.sum(this.getNum()) -168 @@ -75567,47 +75541,41 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --84 -1 -return --924 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -14988 +14533 this -1900486351 +1333041165 1 this.value -84 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1949819426 +1815556070 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +130764844 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75619,31 +75587,31 @@ this.getValue() -84 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1085755948 +380812044 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1131669477 +846918683 1 this.scale(this.value) --84 +-504 1 this.scale(this.shift) --84 +-59 1 this.scale(this.getValue()) --84 +-504 1 this.scale(this.getShift()) --84 +-59 1 this.sum(this.getNum()) -168 @@ -75652,47 +75620,44 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1853722107 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-84 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -14988 +14568 this -1900486351 +1333041165 1 this.value -84 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1949819426 +1815556070 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +130764844 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75704,31 +75669,31 @@ this.getValue() -84 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1962185320 +1823923917 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1689789908 +208684473 1 this.scale(this.value) --84 +-504 1 this.scale(this.shift) --84 +-59 1 this.scale(this.getValue()) --84 +-504 1 this.scale(this.getShift()) --84 +-59 1 this.sum(this.getNum()) -168 @@ -75737,26 +75702,17 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1853722107 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --168 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -15023 +14568 this -1408636456 +1333041165 1 this.value -84 @@ -75768,19 +75724,19 @@ this.heavy true 1 this.list1 -1093191464 +1815556070 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +130764844 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75798,13 +75754,13 @@ this.isHeavy() true 1 this.getNum() -1975235828 +261748192 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1986345870 +1789268516 1 this.scale(this.value) -504 @@ -75830,18 +75786,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1881744475 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -15023 +14603 this -1408636456 +1333041165 1 this.value -84 @@ -75853,19 +75806,19 @@ this.heavy true 1 this.list1 -1093191464 +1815556070 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +130764844 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75883,13 +75836,13 @@ this.isHeavy() true 1 this.getNum() -487721956 +817686795 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -197833893 +1047478056 1 this.scale(this.value) -504 @@ -75915,45 +75868,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1881744475 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --168 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -15058 +14603 this -1703288385 +1333041165 1 this.value -84 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1210872185 +1815556070 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +130764844 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -75965,31 +75909,31 @@ this.getValue() -84 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -689554095 +2115628016 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1513915453 +611643685 1 this.scale(this.value) --924 +-504 1 this.scale(this.shift) -16 +-59 1 this.scale(this.getValue()) --924 +-504 1 this.scale(this.getShift()) -16 +-59 1 this.sum(this.getNum()) -168 @@ -75998,47 +75942,44 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -990768915 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -15058 +14638 this -1703288385 +1333041165 1 this.value -84 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1210872185 +1815556070 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +130764844 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76050,31 +75991,31 @@ this.getValue() -84 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -264955567 +1935122449 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1374614338 +872826668 1 this.scale(this.value) --924 +-504 1 this.scale(this.shift) -16 +-59 1 this.scale(this.getValue()) --924 +-504 1 this.scale(this.getShift()) -16 +-59 1 this.sum(this.getNum()) -168 @@ -76083,50 +76024,41 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -990768915 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --168 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -15093 +14638 this -1900486351 +1333041165 1 this.value -84 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1949819426 +1815556070 1 this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -946055886 +130764844 1 this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76138,31 +76070,31 @@ this.getValue() -84 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -514104340 +91323447 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1224930499 +110053477 1 this.scale(this.value) --84 +-504 1 this.scale(this.shift) --84 +-59 1 this.scale(this.getValue()) --84 +-504 1 this.scale(this.getShift()) --84 +-59 1 this.sum(this.getNum()) -168 @@ -76171,123 +76103,23 @@ this.sum(this.getJWrap()) -168 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1628656551 -1 -l[..] -[1004087995 780433839 2068899844 2091949531 793498833 461438361 831084010 795315982 937490546 316088583 1773755450 139860496 1288246454 628023324 305881463 2021381370 165390050 866731132 768557923 38875156] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -15093 -this -1900486351 -1 -this.value --84 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -1949819426 -1 -this.list1[..] -[14639562 1233982776 1298937153 2065458716 91486057 7868747 1253528362 1236603064 240960982 1824549879 1290820840] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -946055886 -1 -this.list2[..] -[392353614 1512394208 1193007964 1977522556 1764677720 41791323 159613092 410162141 172596917 1733460569 1508627981] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --84 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -539718204 +return +1209411469 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -72929700 -1 -this.scale(this.value) --84 -1 -this.scale(this.shift) --84 -1 -this.scale(this.getValue()) --84 -1 -this.scale(this.getShift()) --84 -1 -this.sum(this.getNum()) --168 -1 -this.sum(this.getJWrap()) --168 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -1628656551 -1 -l[..] -[1004087995 780433839 2068899844 2091949531 793498833 461438361 831084010 795315982 937490546 316088583 1773755450 139860496 1288246454 628023324 305881463 2021381370 165390050 866731132 768557923 38875156] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -15128 +14673 this -1408636456 +1333041165 1 this.value -84 @@ -76299,19 +76131,19 @@ this.heavy true 1 this.list1 -1093191464 +1815556070 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +130764844 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76329,13 +76161,13 @@ this.isHeavy() true 1 this.getNum() -1663789110 +1320105604 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -919004183 +1076984738 1 this.scale(this.value) -504 @@ -76361,24 +76193,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1628656551 -1 -l[..] -[1004087995 780433839 2068899844 2091949531 793498833 461438361 831084010 795315982 937490546 316088583 1773755450 139860496 1288246454 628023324 305881463 2021381370 165390050 866731132 768557923 38875156] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -15128 +14673 this -1408636456 +1333041165 1 this.value -84 @@ -76390,19 +76210,19 @@ this.heavy true 1 this.list1 -1093191464 +1815556070 1 this.list1[..] -[1546335363 411349947 808699536 389099689 510767908 984092697 1874392932 1484390281 829925568 652734111 1155734701] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -443532592 +130764844 1 this.list2[..] -[536535007 260028896 176433427 1789174729 1593645009 975620879 1222468508 1052163107 1324989951 1848170714 1001719990] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76420,13 +76240,13 @@ this.isHeavy() true 1 this.getNum() -1000914457 +1006751649 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1129871848 +1171434979 1 this.scale(this.value) -504 @@ -76452,27 +76272,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1628656551 -1 -l[..] -[1004087995 780433839 2068899844 2091949531 793498833 461438361 831084010 795315982 937490546 316088583 1773755450 139860496 1288246454 628023324 305881463 2021381370 165390050 866731132 768557923 38875156] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +1920907467 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -15163 +14708 this -1703288385 +307400933 1 this.value -84 @@ -76484,19 +76292,19 @@ this.heavy true 1 this.list1 -1210872185 +1872973138 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +684822005 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76514,13 +76322,13 @@ this.isHeavy() true 1 this.getNum() -1705742562 +970535245 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1656035731 +194481424 1 this.scale(this.value) -924 @@ -76546,24 +76354,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1628656551 -1 -l[..] -[1004087995 780433839 2068899844 2091949531 793498833 461438361 831084010 795315982 937490546 316088583 1773755450 139860496 1288246454 628023324 305881463 2021381370 165390050 866731132 768557923 38875156] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -15163 +14708 this -1703288385 +307400933 1 this.value -84 @@ -76575,19 +76371,19 @@ this.heavy true 1 this.list1 -1210872185 +1872973138 1 this.list1[..] -[1573774323 2016450209 1039229356 843285241 1850458934 805127884 489886641 72472689 425256174 454939202 1121384694] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -796065986 +684822005 1 this.list2[..] -[657905892 31028441 1803965313 1070887245 341481208 1198358072 1702474538 417447538 211696417 1748761087 966396367] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76605,13 +76401,13 @@ this.isHeavy() true 1 this.getNum() -1604465797 +1534755892 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -304494800 +1548081008 1 this.scale(this.value) -924 @@ -76637,61 +76433,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1628656551 -1 -l[..] -[1004087995 780433839 2068899844 2091949531 793498833 461438361 831084010 795315982 937490546 316088583 1773755450 139860496 1288246454 628023324 305881463 2021381370 165390050 866731132 768557923 38875156] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -15198 -value --83 -1 -shift -0 +-84 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -15198 +14743 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76700,93 +76474,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1600616816 +753321708 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -39180543 +464400749 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --83 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -15216 -value --83 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -15216 +14743 this -1377390219 +307400933 1 this.value --83 +-84 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2071179720 +1872973138 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +684822005 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76795,72 +76553,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1348946934 +343563528 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -766258359 +1719072416 1 this.scale(this.value) --498 +-924 1 this.scale(this.shift) --58 +16 1 this.scale(this.getValue()) --498 +-924 1 this.scale(this.getShift()) --58 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --83 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -15234 -value --83 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -15234 +14778 this -44808654 +307400933 1 this.value --83 +-84 1 this.shift 10 @@ -76869,19 +76614,19 @@ this.heavy true 1 this.list1 -1479771328 +1872973138 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +684822005 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76890,7 +76635,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 10 @@ -76899,31 +76644,31 @@ this.isHeavy() true 1 this.getNum() -908502687 +2092801316 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -595930239 +376635015 1 this.scale(this.value) --913 +-924 1 this.scale(this.shift) -17 +16 1 this.scale(this.getValue()) --913 +-924 1 this.scale(this.getShift()) -17 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 10 @@ -76931,42 +76676,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --83 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -15252 +14778 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -76975,77 +76714,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2083280912 +1344697180 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1128907296 +28597262 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -15252 +14813 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77054,80 +76796,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -526902627 +300983713 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1577375408 +284686302 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --83 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -15287 +14813 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77136,77 +76875,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -262860041 +1940445711 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -514847208 +1356840024 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1142347343 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -15287 +14848 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77215,80 +76960,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -825411093 +1810923540 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2087364078 +1581078471 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -15322 +14848 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77297,56 +77039,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1035201554 +1932332324 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1867493731 +33233312 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1860491691 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -15322 +14883 this -190572799 +1078705341 1 this.value --83 +-84 1 this.shift 0 @@ -77355,19 +77100,19 @@ this.heavy false 1 this.list1 -1058915116 +511832416 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1070044969 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77376,7 +77121,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 0 @@ -77385,31 +77130,31 @@ this.isHeavy() false 1 this.getNum() -1493636012 +1515403487 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1604103901 +1099717276 1 this.scale(this.value) --83 +-84 1 this.scale(this.shift) --83 +-84 1 this.scale(this.getValue()) --83 +-84 1 this.scale(this.getShift()) --83 +-84 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 0 @@ -77417,18 +77162,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-84 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -15357 +14883 this -190572799 +1078705341 1 this.value --83 +-84 1 this.shift 0 @@ -77437,19 +77182,19 @@ this.heavy false 1 this.list1 -1058915116 +511832416 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1070044969 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77458,7 +77203,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 0 @@ -77467,31 +77212,31 @@ this.isHeavy() false 1 this.getNum() -664559669 +417557780 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -191908836 +1350751778 1 this.scale(this.value) --83 +-84 1 this.scale(this.shift) --83 +-84 1 this.scale(this.getValue()) --83 +-84 1 this.scale(this.getShift()) --83 +-84 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 0 @@ -77499,36 +77244,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-84 +1 +return +-84 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -15357 +14918 this -190572799 +1333041165 1 this.value --83 +-84 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1058915116 +1815556070 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +130764844 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77537,83 +77288,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2038852505 +332699949 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1744980003 +808417649 1 this.scale(this.value) --83 +-504 1 this.scale(this.shift) --83 +-59 1 this.scale(this.getValue()) --83 +-504 1 this.scale(this.getShift()) --83 +-59 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -1842226989 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-84 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -15392 +14918 this -190572799 +1333041165 1 this.value --83 +-84 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1058915116 +1815556070 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +130764844 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77622,77 +77370,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2037265324 +858204589 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -839032700 +1976752685 1 this.scale(this.value) --83 +-504 1 this.scale(this.shift) --83 +-59 1 this.scale(this.getValue()) --83 +-504 1 this.scale(this.getShift()) --83 +-59 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-84 +1 +return +-504 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -15392 +14953 this -190572799 +307400933 1 this.value --83 +-84 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1058915116 +1872973138 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +684822005 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77701,80 +77455,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1244962698 +1115170891 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1154892565 +156710276 1 this.scale(this.value) --83 +-924 1 this.scale(this.shift) --83 +16 1 this.scale(this.getValue()) --83 +-924 1 this.scale(this.getShift()) --83 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -1322138369 +scale +-84 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -15427 +14953 this -1377390219 +307400933 1 this.value --83 +-84 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2071179720 +1872973138 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +684822005 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77783,77 +77537,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1166272274 +53940034 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1454862949 +1616359099 1 this.scale(this.value) --498 +-924 1 this.scale(this.shift) --58 +16 1 this.scale(this.getValue()) --498 +-924 1 this.scale(this.getShift()) --58 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-84 +1 +return +-924 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -15427 +14988 this -1377390219 +1078705341 1 this.value --83 +-84 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2071179720 +511832416 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1070044969 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77862,80 +77622,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -632779101 +1676605578 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -779330563 +1394940518 1 this.scale(this.value) --498 +-84 1 this.scale(this.shift) --58 +-84 1 this.scale(this.getValue()) --498 +-84 1 this.scale(this.getShift()) --58 +-84 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --83 +n +1750286943 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -15462 +14988 this -1377390219 +1078705341 1 this.value --83 +-84 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2071179720 +511832416 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1070044969 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -77944,56 +77707,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -706009288 +892083096 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1050953741 +554868511 1 this.scale(this.value) --498 +-84 1 this.scale(this.shift) --58 +-84 1 this.scale(this.getValue()) --498 +-84 1 this.scale(this.getShift()) --58 +-84 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1750286943 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-168 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -15462 +15023 this -1377390219 +1333041165 1 this.value --83 +-84 1 this.shift 5 @@ -78002,19 +77774,19 @@ this.heavy true 1 this.list1 -2071179720 +1815556070 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +130764844 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78023,7 +77795,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 5 @@ -78032,31 +77804,31 @@ this.isHeavy() true 1 this.getNum() -326528412 +1520387953 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1142302399 +674019271 1 this.scale(this.value) --498 +-504 1 this.scale(this.shift) --58 +-59 1 this.scale(this.getValue()) --498 +-504 1 this.scale(this.getShift()) --58 +-59 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 5 @@ -78064,18 +77836,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +2106165633 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -15497 +15023 this -1377390219 +1333041165 1 this.value --83 +-84 1 this.shift 5 @@ -78084,19 +77859,19 @@ this.heavy true 1 this.list1 -2071179720 +1815556070 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +130764844 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78105,7 +77880,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 5 @@ -78114,31 +77889,31 @@ this.isHeavy() true 1 this.getNum() -172615813 +1221991240 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2051045641 +1758624236 1 this.scale(this.value) --498 +-504 1 this.scale(this.shift) --58 +-59 1 this.scale(this.getValue()) --498 +-504 1 this.scale(this.getShift()) --58 +-59 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 5 @@ -78146,36 +77921,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +2106165633 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-168 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -15497 +15058 this -1377390219 +307400933 1 this.value --83 +-84 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2071179720 +1872973138 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +684822005 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78184,80 +77968,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -516586643 +630028734 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2142807727 +351877391 1 this.scale(this.value) --498 +-924 1 this.scale(this.shift) --58 +16 1 this.scale(this.getValue()) --498 +-924 1 this.scale(this.getShift()) --58 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +1812823171 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -15532 +15058 this -1377390219 +307400933 1 this.value --83 +-84 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2071179720 +1872973138 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +684822005 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78266,77 +78053,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -868707499 +392918519 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1773103387 +1499840045 1 this.scale(this.value) --498 +-924 1 this.scale(this.shift) --58 +16 1 this.scale(this.getValue()) --498 +-924 1 this.scale(this.getShift()) --58 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +1812823171 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-168 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -15532 +15093 this -1377390219 +1078705341 1 this.value --83 +-84 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2071179720 +511832416 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1070044969 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78345,83 +78141,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -2065539537 +67749199 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1449844604 +65488937 1 this.scale(this.value) --498 +-84 1 this.scale(this.shift) --58 +-84 1 this.scale(this.getValue()) --498 +-84 1 this.scale(this.getShift()) --58 +-84 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -41316919 +l +1332691311 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[999230073 1910936570 1215904751 2099802038 1052212904 2072724423 2058135834 1153907750 1090541608 1622458036 2144284609 34871826 1100399456 68326648 35984028 541285440 1463355115 1201466784 1829217853 1461474945] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -15567 +15093 this -1377390219 +1078705341 1 this.value --83 +-84 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2071179720 +511832416 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[28094269 110651474 464224872 170949260 1845623216 731829978 1818339587 1703696921 69329761 1507118393 949767857] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1070044969 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[888557915 1261764601 294111720 310016558 335580595 2024240125 1472216456 380274260 114818087 1168924571 324404955] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78430,56 +78232,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -776239652 +1217207511 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -296675639 +1759250827 1 this.scale(this.value) --498 +-84 1 this.scale(this.shift) --58 +-84 1 this.scale(this.getValue()) --498 +-84 1 this.scale(this.getShift()) --58 +-84 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1332691311 +1 +l[..] +[999230073 1910936570 1215904751 2099802038 1052212904 2072724423 2058135834 1153907750 1090541608 1622458036 2144284609 34871826 1100399456 68326648 35984028 541285440 1463355115 1201466784 1829217853 1461474945] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -15567 +15128 this -1377390219 +1333041165 1 this.value --83 +-84 1 this.shift 5 @@ -78488,19 +78305,19 @@ this.heavy true 1 this.list1 -2071179720 +1815556070 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +130764844 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78509,7 +78326,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 5 @@ -78518,31 +78335,31 @@ this.isHeavy() true 1 this.getNum() -1917919986 +951741667 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -751663232 +220695851 1 this.scale(this.value) --498 +-504 1 this.scale(this.shift) --58 +-59 1 this.scale(this.getValue()) --498 +-504 1 this.scale(this.getShift()) --58 +-59 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 5 @@ -78550,39 +78367,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1705128570 +l +1332691311 +1 +l[..] +[999230073 1910936570 1215904751 2099802038 1052212904 2072724423 2058135834 1153907750 1090541608 1622458036 2144284609 34871826 1100399456 68326648 35984028 541285440 1463355115 1201466784 1829217853 1461474945] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -15602 +15128 this -44808654 +1333041165 1 this.value --83 +-84 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1479771328 +1815556070 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1482246673 708348097 1097324923 351962798 115433442 1760670079 388104475 1470966439 1530880511 1042307502 965586344] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +130764844 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[660339123 462039519 1337866219 313082880 1783083399 541698497 519492428 1176968662 297490204 2085745483 1419064126] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78591,56 +78417,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -2074090422 +762074108 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1283164450 +636782475 1 this.scale(this.value) --913 +-504 1 this.scale(this.shift) -17 +-59 1 this.scale(this.getValue()) --913 +-504 1 this.scale(this.getShift()) -17 +-59 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +1332691311 +1 +l[..] +[999230073 1910936570 1215904751 2099802038 1052212904 2072724423 2058135834 1153907750 1090541608 1622458036 2144284609 34871826 1100399456 68326648 35984028 541285440 1463355115 1201466784 1829217853 1461474945] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -15602 +15163 this -44808654 +307400933 1 this.value --83 +-84 1 this.shift 10 @@ -78649,19 +78490,19 @@ this.heavy true 1 this.list1 -1479771328 +1872973138 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +684822005 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78670,7 +78511,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 10 @@ -78679,31 +78520,31 @@ this.isHeavy() true 1 this.getNum() -1114127976 +1312963234 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1238974439 +2143139988 1 this.scale(this.value) --913 +-924 1 this.scale(this.shift) -17 +16 1 this.scale(this.getValue()) --913 +-924 1 this.scale(this.getShift()) -17 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 10 @@ -78711,18 +78552,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --83 +l +1332691311 +1 +l[..] +[999230073 1910936570 1215904751 2099802038 1052212904 2072724423 2058135834 1153907750 1090541608 1622458036 2144284609 34871826 1100399456 68326648 35984028 541285440 1463355115 1201466784 1829217853 1461474945] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -15637 +15163 this -44808654 +307400933 1 this.value --83 +-84 1 this.shift 10 @@ -78731,19 +78581,19 @@ this.heavy true 1 this.list1 -1479771328 +1872973138 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1465346452 1634387050 1740223770 302366050 2129821055 1225568095 1664598529 1550228904 831654622 491273700 1077072774] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +684822005 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[154449611 1439632660 62343880 665698670 193178046 638169719 533810548 1446922577 1080476785 722951168 1052253947] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78752,7 +78602,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --83 +-84 1 this.getShift() 10 @@ -78761,31 +78611,31 @@ this.isHeavy() true 1 this.getNum() -1441954961 +813823788 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -584073132 +826865256 1 this.scale(this.value) --913 +-924 1 this.scale(this.shift) -17 +16 1 this.scale(this.getValue()) --913 +-924 1 this.scale(this.getShift()) -17 +16 1 this.sum(this.getNum()) --166 +-168 1 this.sum(this.getJWrap()) --166 +-168 1 this.retrieve(this.list1) 10 @@ -78793,36 +78643,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1332691311 +1 +l[..] +[999230073 1910936570 1215904751 2099802038 1052212904 2072724423 2058135834 1153907750 1090541608 1622458036 2144284609 34871826 1100399456 68326648 35984028 541285440 1463355115 1201466784 1829217853 1461474945] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -15637 +15198 +value +-83 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +15198 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78834,31 +78709,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -369379087 +447767121 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1926575379 +68857875 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -78867,44 +78742,57 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-83 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -15672 +15216 +value +-83 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +15216 this -44808654 +348055829 1 this.value -83 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1479771328 +286649365 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1667305539 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -78916,31 +78804,31 @@ this.getValue() -83 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -193965387 +100929741 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -96083163 +1154821602 1 this.scale(this.value) --913 +-498 1 this.scale(this.shift) -17 +-58 1 this.scale(this.getValue()) --913 +-498 1 this.scale(this.getShift()) -17 +-58 1 this.sum(this.getNum()) -166 @@ -78949,17 +78837,33 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-83 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +15234 +value +-83 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -15672 +15234 this -44808654 +157168588 1 this.value -83 @@ -78971,19 +78875,19 @@ this.heavy true 1 this.list1 -1479771328 +945834881 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1356732524 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79001,13 +78905,13 @@ this.isHeavy() true 1 this.getNum() -2109501644 +895766599 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1586602385 +1866768727 1 this.scale(this.value) -913 @@ -79033,39 +78937,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-83 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -15707 +15252 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79077,31 +78984,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -721839896 +1808009213 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -828010169 +2694936 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -79110,41 +79017,41 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -15707 +15252 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79156,31 +79063,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -672877823 +400064818 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -408686059 +1574749319 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -79189,47 +79096,44 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1133890507 -1 -return.getClass().getName() -"java.lang.Integer" +-83 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -15742 +15287 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79241,31 +79145,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -527867671 +384617262 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -617000740 +1593165620 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -79274,41 +79178,41 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -15742 +15287 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79320,31 +79224,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1880389464 +225909961 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1336372196 +917768476 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -79353,20 +79257,20 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -2023517846 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -15777 +15322 this -190572799 +1845517769 1 this.value -83 @@ -79378,19 +79282,19 @@ this.heavy false 1 this.list1 -1058915116 +2095788421 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1134013833 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79408,13 +79312,13 @@ this.isHeavy() false 1 this.getNum() -1713403830 +1181815135 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1569948187 +919446210 1 this.scale(this.value) -83 @@ -79440,15 +79344,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --83 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -15777 +15322 this -190572799 +1845517769 1 this.value -83 @@ -79460,19 +79361,19 @@ this.heavy false 1 this.list1 -1058915116 +2095788421 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1134013833 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79490,13 +79391,13 @@ this.isHeavy() false 1 this.getNum() -2135091867 +57241990 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -37267299 +360936478 1 this.scale(this.value) -83 @@ -79522,42 +79423,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --83 -1 return --83 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -15812 +15357 this -1377390219 +1845517769 1 this.value -83 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2071179720 +2095788421 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1134013833 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79569,31 +79467,31 @@ this.getValue() -83 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1433753016 +1530295320 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -172936925 +3540494 1 this.scale(this.value) --498 +-83 1 this.scale(this.shift) --58 +-83 1 this.scale(this.getValue()) --498 +-83 1 this.scale(this.getShift()) --58 +-83 1 this.sum(this.getNum()) -166 @@ -79602,44 +79500,41 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --83 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -15812 +15357 this -1377390219 +1845517769 1 this.value -83 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -2071179720 +2095788421 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1134013833 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79651,31 +79546,31 @@ this.getValue() -83 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1005524084 +1209770703 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1294461545 +1186339926 1 this.scale(this.value) --498 +-83 1 this.scale(this.shift) --58 +-83 1 this.scale(this.getValue()) --498 +-83 1 this.scale(this.getShift()) --58 +-83 1 this.sum(this.getNum()) -166 @@ -79684,47 +79579,47 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --83 +0 1 return --498 +776484396 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -15847 +15392 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79736,31 +79631,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2005842705 +519979933 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1000052329 +199657303 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -79769,44 +79664,41 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --83 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -15847 +15392 this -44808654 +1845517769 1 this.value -83 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1479771328 +2095788421 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1134013833 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79818,31 +79710,31 @@ this.getValue() -83 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1672472081 +2101636817 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -824809784 +315805187 1 this.scale(this.value) --913 +-83 1 this.scale(this.shift) -17 +-83 1 this.scale(this.getValue()) --913 +-83 1 this.scale(this.getShift()) -17 +-83 1 this.sum(this.getNum()) -166 @@ -79851,47 +79743,44 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --83 +0 1 return --913 +2119992687 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -15882 +15427 this -190572799 +348055829 1 this.value -83 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1058915116 +286649365 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1667305539 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79903,31 +79792,31 @@ this.getValue() -83 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -571098303 +1094674892 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1344760078 +525575644 1 this.scale(this.value) --83 +-498 1 this.scale(this.shift) --83 +-58 1 this.scale(this.getValue()) --83 +-498 1 this.scale(this.getShift()) --83 +-58 1 this.sum(this.getNum()) -166 @@ -79936,47 +79825,41 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1264729918 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -15882 +15427 this -190572799 +348055829 1 this.value -83 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1058915116 +286649365 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1667305539 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -79988,31 +79871,31 @@ this.getValue() -83 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -522593820 +460702435 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -26216510 +26757919 1 this.scale(this.value) --83 +-498 1 this.scale(this.shift) --83 +-58 1 this.scale(this.getValue()) --83 +-498 1 this.scale(this.getShift()) --83 +-58 1 this.sum(this.getNum()) -166 @@ -80021,26 +79904,99 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -1264729918 +return +-83 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +15462 +this +348055829 +1 +this.value +-83 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +286649365 +1 +this.list1[..] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1667305539 +1 +this.list2[..] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-83 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +1003693033 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +967576586 +1 +this.scale(this.value) +-498 +1 +this.scale(this.shift) +-58 +1 +this.scale(this.getValue()) +-498 +1 +this.scale(this.getShift()) +-58 +1 +this.sum(this.getNum()) +-166 +1 +this.sum(this.getJWrap()) -166 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -15917 +15462 this -1377390219 +348055829 1 this.value -83 @@ -80052,19 +80008,19 @@ this.heavy true 1 this.list1 -2071179720 +286649365 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1667305539 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80082,13 +80038,13 @@ this.isHeavy() true 1 this.getNum() -386735935 +209429254 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1585343723 +1341706533 1 this.scale(this.value) -498 @@ -80114,18 +80070,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1042344132 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -15917 +15497 this -1377390219 +348055829 1 this.value -83 @@ -80137,19 +80090,19 @@ this.heavy true 1 this.list1 -2071179720 +286649365 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1667305539 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80167,13 +80120,13 @@ this.isHeavy() true 1 this.getNum() -1653717945 +1830190936 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1304142141 +872669868 1 this.scale(this.value) -498 @@ -80199,45 +80152,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1042344132 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --166 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -15952 +15497 this -44808654 +348055829 1 this.value -83 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1479771328 +286649365 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1667305539 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80249,31 +80193,31 @@ this.getValue() -83 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1498862505 +1706099897 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1398942225 +1816756435 1 this.scale(this.value) --913 +-498 1 this.scale(this.shift) -17 +-58 1 this.scale(this.getValue()) --913 +-498 1 this.scale(this.getShift()) -17 +-58 1 this.sum(this.getNum()) -166 @@ -80282,47 +80226,44 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1371008219 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -15952 +15532 this -44808654 +348055829 1 this.value -83 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1479771328 +286649365 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1667305539 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80334,31 +80275,31 @@ this.getValue() -83 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -35604423 +846974653 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1403083495 +432430300 1 this.scale(this.value) --913 +-498 1 this.scale(this.shift) -17 +-58 1 this.scale(this.getValue()) --913 +-498 1 this.scale(this.getShift()) -17 +-58 1 this.sum(this.getNum()) -166 @@ -80367,50 +80308,41 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1371008219 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --166 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -15987 +15532 this -190572799 +348055829 1 this.value -83 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1058915116 +286649365 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1667305539 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80422,31 +80354,31 @@ this.getValue() -83 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -106372758 +1958680465 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1100549402 +1414549197 1 this.scale(this.value) --83 +-498 1 this.scale(this.shift) --83 +-58 1 this.scale(this.getValue()) --83 +-498 1 this.scale(this.getShift()) --83 +-58 1 this.sum(this.getNum()) -166 @@ -80455,53 +80387,47 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -657147803 -1 -l[..] -[174728500 1051754051 892436700 1157826252 1236491897 520060860 404430730 481536355 1463136589 101409526 1435371411 1603497926 1217356079 1026914784 30703749 641834163 496418660 334450025 1136865976 1144451273] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +951221468 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -15987 +15567 this -190572799 +348055829 1 this.value -83 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1058915116 +286649365 1 this.list1[..] -[989371923 408031140 864085109 1394005949 11396073 407754328 506673119 882450678 826478964 707719152 1871350578] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1891154131 +1667305539 1 this.list2[..] -[1869504117 922455162 1019460041 1440373321 1918737063 1599374489 634227124 1493933007 153247925 804982722 197632554] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80513,31 +80439,31 @@ this.getValue() -83 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1929002779 +322561962 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -189087894 +532048323 1 this.scale(this.value) --83 +-498 1 this.scale(this.shift) --83 +-58 1 this.scale(this.getValue()) --83 +-498 1 this.scale(this.getShift()) --83 +-58 1 this.sum(this.getNum()) -166 @@ -80546,32 +80472,17 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -657147803 -1 -l[..] -[174728500 1051754051 892436700 1157826252 1236491897 520060860 404430730 481536355 1463136589 101409526 1435371411 1603497926 1217356079 1026914784 30703749 641834163 496418660 334450025 1136865976 1144451273] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -16022 +15567 this -1377390219 +348055829 1 this.value -83 @@ -80583,19 +80494,19 @@ this.heavy true 1 this.list1 -2071179720 +286649365 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1667305539 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80613,13 +80524,13 @@ this.isHeavy() true 1 this.getNum() -1871920545 +1237740254 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -733171265 +1647946662 1 this.scale(this.value) -498 @@ -80645,48 +80556,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -657147803 -1 -l[..] -[174728500 1051754051 892436700 1157826252 1236491897 520060860 404430730 481536355 1463136589 101409526 1435371411 1603497926 1217356079 1026914784 30703749 641834163 496418660 334450025 1136865976 1144451273] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +1046545660 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -16022 +15602 this -1377390219 +157168588 1 this.value -83 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -2071179720 +945834881 1 this.list1[..] -[1755119817 463389127 1405353467 1750570163 1306765641 494870418 82950495 432082562 1369409027 1075271890 1019765725] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -135553368 +1356732524 1 this.list2[..] -[1912790156 433956302 649102502 248824354 840256969 346415311 373964960 1691931598 1463397659 194245722 512706214] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80698,31 +80600,31 @@ this.getValue() -83 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -148284369 +305502850 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1134359263 +1759482496 1 this.scale(this.value) --498 +-913 1 this.scale(this.shift) --58 +17 1 this.scale(this.getValue()) --498 +-913 1 this.scale(this.getShift()) --58 +17 1 this.sum(this.getNum()) -166 @@ -80731,32 +80633,99 @@ this.sum(this.getJWrap()) -166 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -657147803 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +15602 +this +157168588 1 -l[..] -[174728500 1051754051 892436700 1157826252 1236491897 520060860 404430730 481536355 1463136589 101409526 1435371411 1603497926 1217356079 1026914784 30703749 641834163 496418660 334450025 1136865976 1144451273] +this.value +-83 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +945834881 +1 +this.list1[..] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1356732524 +1 +this.list2[..] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 +this.getValue() +-83 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +1200906406 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +1902430796 +1 +this.scale(this.value) +-913 +1 +this.scale(this.shift) +17 +1 +this.scale(this.getValue()) +-913 +1 +this.scale(this.getShift()) +17 +1 +this.sum(this.getNum()) +-166 +1 +this.sum(this.getJWrap()) +-166 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 return -5 +-83 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -16057 +15637 this -44808654 +157168588 1 this.value -83 @@ -80768,19 +80737,19 @@ this.heavy true 1 this.list1 -1479771328 +945834881 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1356732524 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80798,13 +80767,13 @@ this.isHeavy() true 1 this.getNum() -1963798822 +1329315688 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -890630611 +1541697437 1 this.scale(this.value) -913 @@ -80830,24 +80799,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -657147803 -1 -l[..] -[174728500 1051754051 892436700 1157826252 1236491897 520060860 404430730 481536355 1463136589 101409526 1435371411 1603497926 1217356079 1026914784 30703749 641834163 496418660 334450025 1136865976 1144451273] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -16057 +15637 this -44808654 +157168588 1 this.value -83 @@ -80859,19 +80816,19 @@ this.heavy true 1 this.list1 -1479771328 +945834881 1 this.list1[..] -[508593789 950896663 146914067 1726013666 902580786 1998271541 453034154 1315497663 1225076176 1929566243 1069292754] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1460158382 +1356732524 1 this.list2[..] -[1586292005 1947734177 1475081618 1145532758 778168351 500065027 1489398078 1244107514 1814200606 1296764936 2064229596] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80889,13 +80846,13 @@ this.isHeavy() true 1 this.getNum() -867659487 +1066513687 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1339034879 +1752182275 1 this.scale(this.value) -913 @@ -80921,61 +80878,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -657147803 -1 -l[..] -[174728500 1051754051 892436700 1157826252 1236491897 520060860 404430730 481536355 1463136589 101409526 1435371411 1603497926 1217356079 1026914784 30703749 641834163 496418660 334450025 1136865976 1144451273] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -16092 -value --82 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -16092 +15672 this -1678074440 +157168588 1 this.value --82 +-83 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -494377029 +945834881 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1356732524 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -80984,93 +80919,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2011579990 +2049051802 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -789837209 +37887172 1 this.scale(this.value) --82 +-913 1 this.scale(this.shift) --82 +17 1 this.scale(this.getValue()) --82 +-913 1 this.scale(this.getShift()) --82 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --82 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -16110 -value --82 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -16110 +15672 this -1197549556 +157168588 1 this.value --82 +-83 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -998648008 +945834881 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1356732524 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81079,72 +80998,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -65374112 +818493590 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1378556767 +1503660218 1 this.scale(this.value) --492 +-913 1 this.scale(this.shift) --57 +17 1 this.scale(this.getValue()) --492 +-913 1 this.scale(this.getShift()) --57 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --82 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -16128 -value --82 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -16128 +15707 this -202515486 +157168588 1 this.value --82 +-83 1 this.shift 10 @@ -81153,19 +81059,19 @@ this.heavy true 1 this.list1 -2063676354 +945834881 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +1356732524 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81174,7 +81080,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 10 @@ -81183,31 +81089,31 @@ this.isHeavy() true 1 this.getNum() -147000507 +864852424 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1031327099 +565839681 1 this.scale(this.value) --902 +-913 1 this.scale(this.shift) -18 +17 1 this.scale(this.getValue()) --902 +-913 1 this.scale(this.getShift()) -18 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 10 @@ -81215,42 +81121,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --82 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -16146 +15707 this -1678074440 +157168588 1 this.value --82 +-83 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -494377029 +945834881 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1356732524 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81259,77 +81159,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1174037956 +1489933928 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -976177856 +24293395 1 this.scale(this.value) --82 +-913 1 this.scale(this.shift) --82 +17 1 this.scale(this.getValue()) --82 +-913 1 this.scale(this.getShift()) --82 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1449605932 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -16146 +15742 this -1678074440 +157168588 1 this.value --82 +-83 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -494377029 +945834881 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1356732524 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81338,80 +81244,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1665581595 +664186542 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -980528520 +189207010 1 this.scale(this.value) --82 +-913 1 this.scale(this.shift) --82 +17 1 this.scale(this.getValue()) --82 +-913 1 this.scale(this.getShift()) --82 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --82 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -16181 +15742 this -1678074440 +157168588 1 this.value --82 +-83 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -494377029 +945834881 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1356732524 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81420,56 +81323,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2100812209 +530696881 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1572156336 +1894788146 1 this.scale(this.value) --82 +-913 1 this.scale(this.shift) --82 +17 1 this.scale(this.getValue()) --82 +-913 1 this.scale(this.getShift()) --82 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1644236636 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -16181 +15777 this -1678074440 +1845517769 1 this.value --82 +-83 1 this.shift 0 @@ -81478,19 +81384,19 @@ this.heavy false 1 this.list1 -494377029 +2095788421 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1134013833 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81499,7 +81405,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 0 @@ -81508,31 +81414,31 @@ this.isHeavy() false 1 this.getNum() -592746464 +1375394559 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -113182015 +1075803699 1 this.scale(this.value) --82 +-83 1 this.scale(this.shift) --82 +-83 1 this.scale(this.getValue()) --82 +-83 1 this.scale(this.getShift()) --82 +-83 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 0 @@ -81540,18 +81446,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-83 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -16216 +15777 this -1678074440 +1845517769 1 this.value --82 +-83 1 this.shift 0 @@ -81560,19 +81466,19 @@ this.heavy false 1 this.list1 -494377029 +2095788421 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1134013833 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81581,7 +81487,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 0 @@ -81590,31 +81496,31 @@ this.isHeavy() false 1 this.getNum() -1727098510 +838812606 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1955684718 +1533985074 1 this.scale(this.value) --82 +-83 1 this.scale(this.shift) --82 +-83 1 this.scale(this.getValue()) --82 +-83 1 this.scale(this.getShift()) --82 +-83 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 0 @@ -81622,36 +81528,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-83 +1 +return +-83 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -16216 +15812 this -1678074440 +348055829 1 this.value --82 +-83 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -494377029 +286649365 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1667305539 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81660,80 +81572,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1955838091 +1548010882 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -238610808 +1741786839 1 this.scale(this.value) --82 +-498 1 this.scale(this.shift) --82 +-58 1 this.scale(this.getValue()) --82 +-498 1 this.scale(this.getShift()) --82 +-58 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-83 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -16251 +15812 this -1678074440 +348055829 1 this.value --82 +-83 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -494377029 +286649365 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1667305539 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81742,77 +81654,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -979881107 +746115872 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1957160153 +20111564 1 this.scale(this.value) --82 +-498 1 this.scale(this.shift) --82 +-58 1 this.scale(this.getValue()) --82 +-498 1 this.scale(this.getShift()) --82 +-58 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-83 +1 +return +-498 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -16251 +15847 this -1678074440 +157168588 1 this.value --82 +-83 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -494377029 +945834881 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1356732524 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81821,83 +81739,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -983670372 +2065718717 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1218827598 +275563320 1 this.scale(this.value) --82 +-913 1 this.scale(this.shift) --82 +17 1 this.scale(this.getValue()) --82 +-913 1 this.scale(this.getShift()) --82 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -2136414500 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-83 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -16286 +15847 this -1678074440 +157168588 1 this.value --82 +-83 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -494377029 +945834881 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1356732524 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81906,56 +81821,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -791923660 +2053628870 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1904793161 +1824872646 1 this.scale(this.value) --82 +-913 1 this.scale(this.shift) --82 +17 1 this.scale(this.getValue()) --82 +-913 1 this.scale(this.getShift()) --82 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-83 +1 +return +-913 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -16286 +15882 this -1678074440 +1845517769 1 this.value --82 +-83 1 this.shift 0 @@ -81964,19 +81885,19 @@ this.heavy false 1 this.list1 -494377029 +2095788421 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +1134013833 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -81985,7 +81906,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 0 @@ -81994,31 +81915,31 @@ this.isHeavy() false 1 this.getNum() -1319931098 +359742806 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -575890576 +1676827075 1 this.scale(this.value) --82 +-83 1 this.scale(this.shift) --82 +-83 1 this.scale(this.getValue()) --82 +-83 1 this.scale(this.getShift()) --82 +-83 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 0 @@ -82026,39 +81947,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -284113803 +n +651100072 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -16321 +15882 this -1197549556 +1845517769 1 this.value --82 +-83 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -998648008 +2095788421 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1134013833 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82067,56 +81991,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1244539740 +1611370719 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -488688400 +2089589253 1 this.scale(this.value) --492 +-83 1 this.scale(this.shift) --57 +-83 1 this.scale(this.getValue()) --492 +-83 1 this.scale(this.getShift()) --57 +-83 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +651100072 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-166 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -16321 +15917 this -1197549556 +348055829 1 this.value --82 +-83 1 this.shift 5 @@ -82125,19 +82058,19 @@ this.heavy true 1 this.list1 -998648008 +286649365 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1667305539 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82146,7 +82079,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 5 @@ -82155,31 +82088,31 @@ this.isHeavy() true 1 this.getNum() -1408472672 +222427158 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -487957423 +1545827753 1 this.scale(this.value) --492 +-498 1 this.scale(this.shift) --57 +-58 1 this.scale(this.getValue()) --492 +-498 1 this.scale(this.getShift()) --57 +-58 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 5 @@ -82187,18 +82120,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --82 +n +1611832218 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -16356 +15917 this -1197549556 +348055829 1 this.value --82 +-83 1 this.shift 5 @@ -82207,19 +82143,19 @@ this.heavy true 1 this.list1 -998648008 +286649365 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1667305539 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82228,7 +82164,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 5 @@ -82237,31 +82173,31 @@ this.isHeavy() true 1 this.getNum() -2007844115 +2027317551 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -278011847 +2052435819 1 this.scale(this.value) --492 +-498 1 this.scale(this.shift) --57 +-58 1 this.scale(this.getValue()) --492 +-498 1 this.scale(this.getShift()) --57 +-58 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 5 @@ -82269,36 +82205,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1611832218 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-166 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -16356 +15952 this -1197549556 +157168588 1 this.value --82 +-83 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -998648008 +945834881 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1356732524 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82307,80 +82252,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1768180304 +1033638837 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -927662142 +1227264471 1 this.scale(this.value) --492 +-913 1 this.scale(this.shift) --57 +17 1 this.scale(this.getValue()) --492 +-913 1 this.scale(this.getShift()) --57 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +41031373 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -16391 +15952 this -1197549556 +157168588 1 this.value --82 +-83 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -998648008 +945834881 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1356732524 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82389,77 +82337,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -486343374 +1435229983 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -650326336 +139947936 1 this.scale(this.value) --492 +-913 1 this.scale(this.shift) --57 +17 1 this.scale(this.getValue()) --492 +-913 1 this.scale(this.getShift()) --57 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +41031373 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-166 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -16391 +15987 this -1197549556 +1845517769 1 this.value --82 +-83 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -998648008 +2095788421 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1134013833 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82468,80 +82425,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1490449569 +1971519316 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1736647575 +1733581655 1 this.scale(this.value) --492 +-83 1 this.scale(this.shift) --57 +-83 1 this.scale(this.getValue()) --492 +-83 1 this.scale(this.getShift()) --57 +-83 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +1814827909 +1 +l[..] +[1597328335 1034909474 2019826979 1951963537 21422054 1192672907 532885071 795326519 409598930 1794768050 1825445620 2130357594 689602108 212011969 273077527 998062648 1097619701 1426435610 1942828992 557023099] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -16426 +15987 this -1197549556 +1845517769 1 this.value --82 +-83 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -998648008 +2095788421 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[1131184547 895599632 1508059488 2082557120 1533524862 1620948294 552937500 1455695758 807328355 1025797795 873993427] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1134013833 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[94157402 466853180 1863953433 295485334 1899141525 1989132530 1414845278 549496397 1163619825 1306246648 1063737662] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82550,56 +82516,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1385546648 +45822040 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1717328515 +2050370411 1 this.scale(this.value) --492 +-83 1 this.scale(this.shift) --57 +-83 1 this.scale(this.getValue()) --492 +-83 1 this.scale(this.getShift()) --57 +-83 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1814827909 +1 +l[..] +[1597328335 1034909474 2019826979 1951963537 21422054 1192672907 532885071 795326519 409598930 1794768050 1825445620 2130357594 689602108 212011969 273077527 998062648 1097619701 1426435610 1942828992 557023099] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -16426 +16022 this -1197549556 +348055829 1 this.value --82 +-83 1 this.shift 5 @@ -82608,19 +82589,19 @@ this.heavy true 1 this.list1 -998648008 +286649365 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1667305539 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82629,7 +82610,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 5 @@ -82638,31 +82619,31 @@ this.isHeavy() true 1 this.getNum() -960135925 +1625252058 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -812367917 +1512903453 1 this.scale(this.value) --492 +-498 1 this.scale(this.shift) --57 +-58 1 this.scale(this.getValue()) --492 +-498 1 this.scale(this.getShift()) --57 +-58 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 5 @@ -82670,21 +82651,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1914037040 +l +1814827909 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1597328335 1034909474 2019826979 1951963537 21422054 1192672907 532885071 795326519 409598930 1794768050 1825445620 2130357594 689602108 212011969 273077527 998062648 1097619701 1426435610 1942828992 557023099] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -16461 +16022 this -1197549556 +348055829 1 this.value --82 +-83 1 this.shift 5 @@ -82693,19 +82680,19 @@ this.heavy true 1 this.list1 -998648008 +286649365 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[137275020 1508181426 988850650 71016405 2044482328 149225732 937744315 1870209957 1957099969 1424698224 1168340825] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1667305539 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[550147359 762809053 1932536213 406375608 1815007437 2107543287 252738640 1360215046 1260467793 1111613684 1321203216] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82714,7 +82701,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 5 @@ -82723,31 +82710,31 @@ this.isHeavy() true 1 this.getNum() -2062982867 +22004208 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1429564854 +1256837057 1 this.scale(this.value) --492 +-498 1 this.scale(this.shift) --57 +-58 1 this.scale(this.getValue()) --492 +-498 1 this.scale(this.getShift()) --57 +-58 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 5 @@ -82755,36 +82742,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +1814827909 +1 +l[..] +[1597328335 1034909474 2019826979 1951963537 21422054 1192672907 532885071 795326519 409598930 1794768050 1825445620 2130357594 689602108 212011969 273077527 998062648 1097619701 1426435610 1942828992 557023099] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -16461 +16057 this -1197549556 +157168588 1 this.value --82 +-83 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -998648008 +945834881 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +1356732524 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82793,59 +82795,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -649458542 +1361817590 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1937821340 +1663888181 1 this.scale(this.value) --492 +-913 1 this.scale(this.shift) --57 +17 1 this.scale(this.getValue()) --492 +-913 1 this.scale(this.getShift()) --57 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -226270978 +l +1814827909 +1 +l[..] +[1597328335 1034909474 2019826979 1951963537 21422054 1192672907 532885071 795326519 409598930 1794768050 1825445620 2130357594 689602108 212011969 273077527 998062648 1097619701 1426435610 1942828992 557023099] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -16496 +16057 this -202515486 +157168588 1 this.value --82 +-83 1 this.shift 10 @@ -82854,19 +82865,19 @@ this.heavy true 1 this.list1 -2063676354 +945834881 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[507819576 1939022383 195801026 833474933 182670350 1611373863 914942811 1777443462 2032326802 1165791284 878668275] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +1356732524 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1062714541 512456259 1364497552 1911155630 1943634922 916835004 1126185196 2108297149 1112737073 1513867245 404648734] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82875,7 +82886,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --82 +-83 1 this.getShift() 10 @@ -82884,31 +82895,31 @@ this.isHeavy() true 1 this.getNum() -1890272056 +479459041 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2076855121 +402695541 1 this.scale(this.value) --902 +-913 1 this.scale(this.shift) -18 +17 1 this.scale(this.getValue()) --902 +-913 1 this.scale(this.getShift()) -18 +17 1 this.sum(this.getNum()) --164 +-166 1 this.sum(this.getJWrap()) --164 +-166 1 this.retrieve(this.list1) 10 @@ -82916,36 +82927,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1814827909 +1 +l[..] +[1597328335 1034909474 2019826979 1951963537 21422054 1192672907 532885071 795326519 409598930 1794768050 1825445620 2130357594 689602108 212011969 273077527 998062648 1097619701 1426435610 1942828992 557023099] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -16496 +16092 +value +-82 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +16092 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -82957,31 +82993,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -504820309 +1560702077 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1954527713 +507911745 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -82990,44 +83026,57 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -82 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -16531 +16110 +value +-82 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +16110 this -202515486 +1537772520 1 this.value -82 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2063676354 +1452442375 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +473153915 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83039,31 +83088,31 @@ this.getValue() -82 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1837407879 +1690101810 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -499378493 +124058278 1 this.scale(this.value) --902 +-492 1 this.scale(this.shift) -18 +-57 1 this.scale(this.getValue()) --902 +-492 1 this.scale(this.getShift()) -18 +-57 1 this.sum(this.getNum()) -164 @@ -83072,17 +83121,33 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-82 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +16128 +value +-82 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -16531 +16128 this -202515486 +1277108979 1 this.value -82 @@ -83094,19 +83159,19 @@ this.heavy true 1 this.list1 -2063676354 +1502335674 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +885002305 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83124,13 +83189,13 @@ this.isHeavy() true 1 this.getNum() -688239375 +49222910 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -892252883 +1997548433 1 this.scale(this.value) -902 @@ -83156,39 +83221,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-82 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -16566 +16146 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83200,31 +83268,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -215897580 +1160850402 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1490747277 +2142852357 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -83233,41 +83301,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -16566 +16146 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83279,31 +83347,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -297774990 +93054696 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1067359420 +1932597611 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -83312,44 +83380,44 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-82 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -16601 +16181 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83361,31 +83429,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1178868549 +1066615508 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -559575821 +179779934 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -83394,41 +83462,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -16601 +16181 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83440,31 +83508,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -959933334 +1355887174 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1702388274 +735085430 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -83473,47 +83541,44 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1115092137 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -16636 +16216 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83525,31 +83590,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -263759190 +242282810 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -594458922 +1027495011 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -83558,41 +83623,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -16636 +16216 this -202515486 +341372316 1 this.value -82 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2063676354 +279566689 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +6422064 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83604,31 +83669,31 @@ this.getValue() -82 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -977176210 +1688470144 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1593112861 +1262548561 1 this.scale(this.value) --902 +-82 1 this.scale(this.shift) -18 +-82 1 this.scale(this.getValue()) --902 +-82 1 this.scale(this.getShift()) -18 +-82 1 this.sum(this.getNum()) -164 @@ -83637,20 +83702,20 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -621744031 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -16671 +16251 this -1678074440 +341372316 1 this.value -82 @@ -83662,19 +83727,19 @@ this.heavy false 1 this.list1 -494377029 +279566689 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +6422064 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83692,13 +83757,13 @@ this.isHeavy() false 1 this.getNum() -2143986362 +1118840610 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1350673121 +224591451 1 this.scale(this.value) -82 @@ -83724,15 +83789,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --82 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -16671 +16251 this -1678074440 +341372316 1 this.value -82 @@ -83744,19 +83806,19 @@ this.heavy false 1 this.list1 -494377029 +279566689 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +6422064 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83774,13 +83836,13 @@ this.isHeavy() false 1 this.getNum() -1860995857 +1234586997 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1805533691 +86558824 1 this.scale(this.value) -82 @@ -83806,42 +83868,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --82 -1 return --82 +1180858072 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -16706 +16286 this -1197549556 +341372316 1 this.value -82 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -998648008 +279566689 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +6422064 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83853,31 +83915,31 @@ this.getValue() -82 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1660812527 +1558763625 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -283697583 +669965156 1 this.scale(this.value) --492 +-82 1 this.scale(this.shift) --57 +-82 1 this.scale(this.getValue()) --492 +-82 1 this.scale(this.getShift()) --57 +-82 1 this.sum(this.getNum()) -164 @@ -83886,44 +83948,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --82 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -16706 +16286 this -1197549556 +341372316 1 this.value -82 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -998648008 +279566689 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +6422064 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -83935,31 +83994,31 @@ this.getValue() -82 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -691581141 +1690713209 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1222739223 +835146383 1 this.scale(this.value) --492 +-82 1 this.scale(this.shift) --57 +-82 1 this.scale(this.getValue()) --492 +-82 1 this.scale(this.getShift()) --57 +-82 1 this.sum(this.getNum()) -164 @@ -83968,47 +84027,44 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --82 +0 1 return --492 +729218894 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -16741 +16321 this -202515486 +1537772520 1 this.value -82 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2063676354 +1452442375 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +473153915 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84020,31 +84076,31 @@ this.getValue() -82 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1307102818 +2048013503 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1866836963 +795011696 1 this.scale(this.value) --902 +-492 1 this.scale(this.shift) -18 +-57 1 this.scale(this.getValue()) --902 +-492 1 this.scale(this.getShift()) -18 +-57 1 this.sum(this.getNum()) -164 @@ -84053,44 +84109,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --82 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -16741 +16321 this -202515486 +1537772520 1 this.value -82 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2063676354 +1452442375 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +473153915 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84102,31 +84155,31 @@ this.getValue() -82 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1192754471 +616207929 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2012032999 +950698351 1 this.scale(this.value) --902 +-492 1 this.scale(this.shift) -18 +-57 1 this.scale(this.getValue()) --902 +-492 1 this.scale(this.getShift()) -18 +-57 1 this.sum(this.getNum()) -164 @@ -84135,47 +84188,44 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --82 +5 1 return --902 +-82 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -16776 +16356 this -1678074440 +1537772520 1 this.value -82 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -494377029 +1452442375 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +473153915 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84187,31 +84237,31 @@ this.getValue() -82 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1961108531 +1408695561 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -772066361 +1811922029 1 this.scale(this.value) --82 +-492 1 this.scale(this.shift) --82 +-57 1 this.scale(this.getValue()) --82 +-492 1 this.scale(this.getShift()) --82 +-57 1 this.sum(this.getNum()) -164 @@ -84220,47 +84270,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1023134153 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -16776 +16356 this -1678074440 +1537772520 1 this.value -82 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -494377029 +1452442375 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +473153915 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84272,31 +84316,31 @@ this.getValue() -82 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -914147942 +461698165 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -986450556 +2001321875 1 this.scale(this.value) --82 +-492 1 this.scale(this.shift) --82 +-57 1 this.scale(this.getValue()) --82 +-492 1 this.scale(this.getShift()) --82 +-57 1 this.sum(this.getNum()) -164 @@ -84305,26 +84349,20 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1023134153 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --164 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -16811 +16391 this -1197549556 +1537772520 1 this.value -82 @@ -84336,19 +84374,19 @@ this.heavy true 1 this.list1 -998648008 +1452442375 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +473153915 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84366,13 +84404,13 @@ this.isHeavy() true 1 this.getNum() -700739852 +322112198 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -534372416 +87674905 1 this.scale(this.value) -492 @@ -84398,18 +84436,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -420583958 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -16811 +16391 this -1197549556 +1537772520 1 this.value -82 @@ -84421,19 +84453,19 @@ this.heavy true 1 this.list1 -998648008 +1452442375 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +473153915 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84451,13 +84483,13 @@ this.isHeavy() true 1 this.getNum() -1385899829 +966966167 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1210790641 +61681175 1 this.scale(this.value) -492 @@ -84483,45 +84515,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -420583958 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --164 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -16846 +16426 this -202515486 +1537772520 1 this.value -82 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2063676354 +1452442375 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +473153915 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84533,31 +84559,31 @@ this.getValue() -82 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -203264315 +147022238 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1764343475 +1127338375 1 this.scale(this.value) --902 +-492 1 this.scale(this.shift) -18 +-57 1 this.scale(this.getValue()) --902 +-492 1 this.scale(this.getShift()) -18 +-57 1 this.sum(this.getNum()) -164 @@ -84566,47 +84592,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -866586549 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -16846 +16426 this -202515486 +1537772520 1 this.value -82 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2063676354 +1452442375 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +473153915 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84618,31 +84638,31 @@ this.getValue() -82 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -486035089 +1868805237 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1911431282 +89448984 1 this.scale(this.value) --902 +-492 1 this.scale(this.shift) -18 +-57 1 this.scale(this.getValue()) --902 +-492 1 this.scale(this.getShift()) -18 +-57 1 this.sum(this.getNum()) -164 @@ -84651,50 +84671,47 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -866586549 +return +369671357 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --164 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -16881 +16461 this -1678074440 +1537772520 1 this.value -82 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -494377029 +1452442375 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +473153915 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84706,31 +84723,31 @@ this.getValue() -82 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1217681101 +1543043602 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -47108597 +701119748 1 this.scale(this.value) --82 +-492 1 this.scale(this.shift) --82 +-57 1 this.scale(this.getValue()) --82 +-492 1 this.scale(this.getShift()) --82 +-57 1 this.sum(this.getNum()) -164 @@ -84739,53 +84756,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1480207683 -1 -l[..] -[1399961333 1319287199 491298318 176207911 146410964 1860296133 782690658 1344551131 2047924983 1754778812 1174569033 1312054407 1336331053 1332027445 2015731787 1849612684 1614589663 805102549 64081296 1125034725] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -16881 +16461 this -1678074440 +1537772520 1 this.value -82 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -494377029 +1452442375 1 this.list1[..] -[380496160 1940144001 608528759 1225725499 2105319669 19625264 1276814057 1757255175 1992612681 1981338249 1470520561] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1797259051 +473153915 1 this.list2[..] -[27891455 620249139 641656635 1807672858 1106570297 918598659 627723530 1709694646 1506718462 290025410 1816670827] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84797,31 +84802,31 @@ this.getValue() -82 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2012594887 +187457031 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -667341912 +1477637771 1 this.scale(this.value) --82 +-492 1 this.scale(this.shift) --82 +-57 1 this.scale(this.getValue()) --82 +-492 1 this.scale(this.getShift()) --82 +-57 1 this.sum(this.getNum()) -164 @@ -84830,56 +84835,44 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1480207683 -1 -l[..] -[1399961333 1319287199 491298318 176207911 146410964 1860296133 782690658 1344551131 2047924983 1754778812 1174569033 1312054407 1336331053 1332027445 2015731787 1849612684 1614589663 805102549 64081296 1125034725] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +1143390193 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -16916 +16496 this -1197549556 +1277108979 1 this.value -82 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -998648008 +1502335674 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +885002305 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84891,31 +84884,31 @@ this.getValue() -82 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1855910350 +1014794348 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -85279775 +1430861186 1 this.scale(this.value) --492 +-902 1 this.scale(this.shift) --57 +18 1 this.scale(this.getValue()) --492 +-902 1 this.scale(this.getShift()) --57 +18 1 this.sum(this.getNum()) -164 @@ -84924,53 +84917,41 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1480207683 -1 -l[..] -[1399961333 1319287199 491298318 176207911 146410964 1860296133 782690658 1344551131 2047924983 1754778812 1174569033 1312054407 1336331053 1332027445 2015731787 1849612684 1614589663 805102549 64081296 1125034725] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -16916 +16496 this -1197549556 +1277108979 1 this.value -82 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -998648008 +1502335674 1 this.list1[..] -[1692369151 227416342 1813051981 1319177384 793121260 558019891 579221588 433857665 1138794090 1338008566 1608701025] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619011445 +885002305 1 this.list2[..] -[1314570047 667019593 733662211 1957162850 1028998851 697879466 1851988795 747697947 1632576632 316896305 316753575] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -84982,31 +84963,31 @@ this.getValue() -82 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -925585876 +438314766 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2097762711 +1804126860 1 this.scale(this.value) --492 +-902 1 this.scale(this.shift) --57 +18 1 this.scale(this.getValue()) --492 +-902 1 this.scale(this.getShift()) --57 +18 1 this.sum(this.getNum()) -164 @@ -85015,32 +84996,20 @@ this.sum(this.getJWrap()) -164 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -1480207683 -1 -l[..] -[1399961333 1319287199 491298318 176207911 146410964 1860296133 782690658 1344551131 2047924983 1754778812 1174569033 1312054407 1336331053 1332027445 2015731787 1849612684 1614589663 805102549 64081296 1125034725] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-82 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -16951 +16531 this -202515486 +1277108979 1 this.value -82 @@ -85052,19 +85021,19 @@ this.heavy true 1 this.list1 -2063676354 +1502335674 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +885002305 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85082,13 +85051,13 @@ this.isHeavy() true 1 this.getNum() -1858850978 +862916729 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -116290690 +790021811 1 this.scale(this.value) -902 @@ -85114,24 +85083,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1480207683 -1 -l[..] -[1399961333 1319287199 491298318 176207911 146410964 1860296133 782690658 1344551131 2047924983 1754778812 1174569033 1312054407 1336331053 1332027445 2015731787 1849612684 1614589663 805102549 64081296 1125034725] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -16951 +16531 this -202515486 +1277108979 1 this.value -82 @@ -85143,19 +85100,19 @@ this.heavy true 1 this.list1 -2063676354 +1502335674 1 this.list1[..] -[200098981 104182465 795516950 20192428 71721170 679378223 139242862 1645090051 176532032 1298945317 55187417] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1969465662 +885002305 1 this.list2[..] -[1643930023 7294259 188043134 1492508401 1979698647 1831017158 464712996 33299633 1321183611 152040097 1979853996] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85173,13 +85130,13 @@ this.isHeavy() true 1 this.getNum() -287508060 +873827336 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -309758670 +434437292 1 this.scale(this.value) -902 @@ -85205,61 +85162,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1480207683 -1 -l[..] -[1399961333 1319287199 491298318 176207911 146410964 1860296133 782690658 1344551131 2047924983 1754778812 1174569033 1312054407 1336331053 1332027445 2015731787 1849612684 1614589663 805102549 64081296 1125034725] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -16986 -value --81 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -16986 +16566 this -613606362 +1277108979 1 this.value --81 +-82 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -665653240 +1502335674 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +885002305 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85268,93 +85203,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -708278331 +1388563249 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -532053796 +1266265220 1 this.scale(this.value) --81 +-902 1 this.scale(this.shift) --81 +18 1 this.scale(this.getValue()) --81 +-902 1 this.scale(this.getShift()) --81 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --81 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -17004 -value --81 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -17004 +16566 this -106243264 +1277108979 1 this.value --81 +-82 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1071627391 +1502335674 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +885002305 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85363,72 +85282,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -722330636 +1402215471 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -485942761 +1839962989 1 this.scale(this.value) --486 +-902 1 this.scale(this.shift) --56 +18 1 this.scale(this.getValue()) --486 +-902 1 this.scale(this.getShift()) --56 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --81 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -17022 -value --81 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -17022 +16601 this -359674586 +1277108979 1 this.value --81 +-82 1 this.shift 10 @@ -85437,19 +85343,19 @@ this.heavy true 1 this.list1 -2031784244 +1502335674 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +885002305 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85458,7 +85364,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 10 @@ -85467,31 +85373,31 @@ this.isHeavy() true 1 this.getNum() -65666438 +570253226 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1996712555 +661047965 1 this.scale(this.value) --891 +-902 1 this.scale(this.shift) -19 +18 1 this.scale(this.getValue()) --891 +-902 1 this.scale(this.getShift()) -19 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 10 @@ -85499,42 +85405,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --81 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -17040 +16601 this -613606362 +1277108979 1 this.value --81 +-82 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -665653240 +1502335674 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +885002305 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85543,77 +85443,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -20960216 +1415630650 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -91032204 +1705072168 1 this.scale(this.value) --81 +-902 1 this.scale(this.shift) --81 +18 1 this.scale(this.getValue()) --81 +-902 1 this.scale(this.getShift()) --81 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +778720569 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -17040 +16636 this -613606362 +1277108979 1 this.value --81 +-82 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -665653240 +1502335674 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +885002305 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85622,80 +85528,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -969895964 +1070157899 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1640586218 +1828868503 1 this.scale(this.value) --81 +-902 1 this.scale(this.shift) --81 +18 1 this.scale(this.getValue()) --81 +-902 1 this.scale(this.getShift()) --81 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --81 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -17075 +16636 this -613606362 +1277108979 1 this.value --81 +-82 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -665653240 +1502335674 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +885002305 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85704,56 +85607,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1790022093 +41765385 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -802906228 +2118255842 1 this.scale(this.value) --81 +-902 1 this.scale(this.shift) --81 +18 1 this.scale(this.getValue()) --81 +-902 1 this.scale(this.getShift()) --81 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +192694377 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -17075 +16671 this -613606362 +341372316 1 this.value --81 +-82 1 this.shift 0 @@ -85762,19 +85668,19 @@ this.heavy false 1 this.list1 -665653240 +279566689 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +6422064 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85783,7 +85689,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 0 @@ -85792,31 +85698,31 @@ this.isHeavy() false 1 this.getNum() -1805219895 +1947020920 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -681810449 +474488818 1 this.scale(this.value) --81 +-82 1 this.scale(this.shift) --81 +-82 1 this.scale(this.getValue()) --81 +-82 1 this.scale(this.getShift()) --81 +-82 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 0 @@ -85824,18 +85730,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-82 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -17110 +16671 this -613606362 +341372316 1 this.value --81 +-82 1 this.shift 0 @@ -85844,19 +85750,19 @@ this.heavy false 1 this.list1 -665653240 +279566689 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +6422064 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85865,7 +85771,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 0 @@ -85874,31 +85780,31 @@ this.isHeavy() false 1 this.getNum() -215475951 +1917025677 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -846879615 +462773420 1 this.scale(this.value) --81 +-82 1 this.scale(this.shift) --81 +-82 1 this.scale(this.getValue()) --81 +-82 1 this.scale(this.getShift()) --81 +-82 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 0 @@ -85906,36 +85812,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-82 +1 +return +-82 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -17110 +16706 this -613606362 +1537772520 1 this.value --81 +-82 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -665653240 +1452442375 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +473153915 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -85944,80 +85856,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2131560636 +108449608 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -817409998 +1511909371 1 this.scale(this.value) --81 +-492 1 this.scale(this.shift) --81 +-57 1 this.scale(this.getValue()) --81 +-492 1 this.scale(this.getShift()) --81 +-57 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-82 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -17145 +16706 this -613606362 +1537772520 1 this.value --81 +-82 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -665653240 +1452442375 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +473153915 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86026,77 +85938,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -756946527 +861623840 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -307154461 +43650267 1 this.scale(this.value) --81 +-492 1 this.scale(this.shift) --81 +-57 1 this.scale(this.getValue()) --81 +-492 1 this.scale(this.getShift()) --81 +-57 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-82 +1 +return +-492 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -17145 +16741 this -613606362 +1277108979 1 this.value --81 +-82 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -665653240 +1502335674 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +885002305 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86105,83 +86023,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1941822286 +849776463 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -898177343 +120689887 1 this.scale(this.value) --81 +-902 1 this.scale(this.shift) --81 +18 1 this.scale(this.getValue()) --81 +-902 1 this.scale(this.getShift()) --81 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1004049038 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-82 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -17180 +16741 this -613606362 +1277108979 1 this.value --81 +-82 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -665653240 +1502335674 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +885002305 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86190,56 +86105,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -125683540 +1857173583 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1386831779 +1016860054 1 this.scale(this.value) --81 +-902 1 this.scale(this.shift) --81 +18 1 this.scale(this.getValue()) --81 +-902 1 this.scale(this.getShift()) --81 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-82 +1 +return +-902 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -17180 +16776 this -613606362 +341372316 1 this.value --81 +-82 1 this.shift 0 @@ -86248,19 +86169,19 @@ this.heavy false 1 this.list1 -665653240 +279566689 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +6422064 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86269,7 +86190,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 0 @@ -86278,31 +86199,31 @@ this.isHeavy() false 1 this.getNum() -1841688762 +977674685 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1581218723 +836427078 1 this.scale(this.value) --81 +-82 1 this.scale(this.shift) --81 +-82 1 this.scale(this.getValue()) --81 +-82 1 this.scale(this.getShift()) --81 +-82 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 0 @@ -86310,39 +86231,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -432945836 +n +1322642290 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -17215 +16776 this -106243264 +341372316 1 this.value --81 +-82 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1071627391 +279566689 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +6422064 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86351,56 +86275,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -846069616 +318353283 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1402809325 +431570856 1 this.scale(this.value) --486 +-82 1 this.scale(this.shift) --56 +-82 1 this.scale(this.getValue()) --486 +-82 1 this.scale(this.getShift()) --56 +-82 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +1322642290 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-164 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -17215 +16811 this -106243264 +1537772520 1 this.value --81 +-82 1 this.shift 5 @@ -86409,19 +86342,19 @@ this.heavy true 1 this.list1 -1071627391 +1452442375 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +473153915 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86430,7 +86363,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 5 @@ -86439,31 +86372,31 @@ this.isHeavy() true 1 this.getNum() -1940848509 +2121199924 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1711776480 +520162288 1 this.scale(this.value) --486 +-492 1 this.scale(this.shift) --56 +-57 1 this.scale(this.getValue()) --486 +-492 1 this.scale(this.getShift()) --56 +-57 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 5 @@ -86471,18 +86404,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --81 +n +1088104996 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -17250 +16811 this -106243264 +1537772520 1 this.value --81 +-82 1 this.shift 5 @@ -86491,19 +86427,19 @@ this.heavy true 1 this.list1 -1071627391 +1452442375 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +473153915 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86512,7 +86448,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 5 @@ -86521,31 +86457,31 @@ this.isHeavy() true 1 this.getNum() -2136364148 +282003944 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2093141243 +421637524 1 this.scale(this.value) --486 +-492 1 this.scale(this.shift) --56 +-57 1 this.scale(this.getValue()) --486 +-492 1 this.scale(this.getShift()) --56 +-57 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 5 @@ -86553,36 +86489,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1088104996 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-164 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -17250 +16846 this -106243264 +1277108979 1 this.value --81 +-82 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1071627391 +1502335674 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +885002305 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86591,80 +86536,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1495249594 +250112971 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -806289164 +393996856 1 this.scale(this.value) --486 +-902 1 this.scale(this.shift) --56 +18 1 this.scale(this.getValue()) --486 +-902 1 this.scale(this.getShift()) --56 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +2131960182 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -17285 +16846 this -106243264 +1277108979 1 this.value --81 +-82 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -1071627391 +1502335674 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +885002305 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86673,77 +86621,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -680166778 +1808432653 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -507584865 +640808588 1 this.scale(this.value) --486 +-902 1 this.scale(this.shift) --56 +18 1 this.scale(this.getValue()) --486 +-902 1 this.scale(this.getShift()) --56 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +2131960182 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-164 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -17285 +16881 this -106243264 +341372316 1 this.value --81 +-82 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1071627391 +279566689 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +6422064 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86752,80 +86709,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1173780171 +1859383896 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -938552655 +145581669 1 this.scale(this.value) --486 +-82 1 this.scale(this.shift) --56 +-82 1 this.scale(this.getValue()) --486 +-82 1 this.scale(this.getShift()) --56 +-82 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +816798571 +1 +l[..] +[428039780 1756573246 198112003 1097897234 1107530534 858818438 1335503880 176683244 1413730361 1668837760 2099051403 1223240796 48361312 573926093 946802083 962944318 888287133 1025001676 2111457497 1850042097] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -17320 +16881 this -106243264 +341372316 1 this.value --81 +-82 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1071627391 +279566689 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[319689067 238564722 1574898980 56861999 1619356001 802771878 172678484 337533935 1604052588 985324122 1724256292] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +6422064 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[13226198 1825419935 987547666 893591815 2067925017 2048529572 643489709 171809144 1632914150 1262607708 999736366] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86834,56 +86800,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -987085370 +1265508963 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -632640515 +877612522 1 this.scale(this.value) --486 +-82 1 this.scale(this.shift) --56 +-82 1 this.scale(this.getValue()) --486 +-82 1 this.scale(this.getShift()) --56 +-82 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +816798571 +1 +l[..] +[428039780 1756573246 198112003 1097897234 1107530534 858818438 1335503880 176683244 1413730361 1668837760 2099051403 1223240796 48361312 573926093 946802083 962944318 888287133 1025001676 2111457497 1850042097] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -17320 +16916 this -106243264 +1537772520 1 this.value --81 +-82 1 this.shift 5 @@ -86892,19 +86873,19 @@ this.heavy true 1 this.list1 -1071627391 +1452442375 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +473153915 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86913,7 +86894,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 5 @@ -86922,31 +86903,31 @@ this.isHeavy() true 1 this.getNum() -597599308 +461129530 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -70552537 +1582028874 1 this.scale(this.value) --486 +-492 1 this.scale(this.shift) --56 +-57 1 this.scale(this.getValue()) --486 +-492 1 this.scale(this.getShift()) --56 +-57 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 5 @@ -86954,21 +86935,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -365516215 +l +816798571 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[428039780 1756573246 198112003 1097897234 1107530534 858818438 1335503880 176683244 1413730361 1668837760 2099051403 1223240796 48361312 573926093 946802083 962944318 888287133 1025001676 2111457497 1850042097] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -17355 +16916 this -106243264 +1537772520 1 this.value --81 +-82 1 this.shift 5 @@ -86977,19 +86964,19 @@ this.heavy true 1 this.list1 -1071627391 +1452442375 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[949581868 369347944 166454155 1260634890 940087898 820537534 1724457619 858232531 1325465767 1021258849 330128595] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +473153915 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1542520418 503938393 1731977615 1703009290 970865974 1827171553 1424482154 1072506992 1997702454 1479696465 851765426] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -86998,7 +86985,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 5 @@ -87007,31 +86994,31 @@ this.isHeavy() true 1 this.getNum() -1427795085 +1686934746 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -969722017 +711112124 1 this.scale(this.value) --486 +-492 1 this.scale(this.shift) --56 +-57 1 this.scale(this.getValue()) --486 +-492 1 this.scale(this.getShift()) --56 +-57 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 5 @@ -87039,97 +87026,30 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 - -misc.Purity.getJWrap():::EXIT43 -this_invocation_nonce -17355 -this -106243264 -1 -this.value --81 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -1071627391 -1 -this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -1378399798 +l +816798571 1 -this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +l[..] +[428039780 1756573246 198112003 1097897234 1107530534 858818438 1335503880 176683244 1413730361 1668837760 2099051403 1223240796 48361312 573926093 946802083 962944318 888287133 1025001676 2111457497 1850042097] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --81 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -864542636 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -493727650 -1 -this.scale(this.value) --486 -1 -this.scale(this.shift) --56 -1 -this.scale(this.getValue()) --486 -1 -this.scale(this.getShift()) --56 -1 -this.sum(this.getNum()) --162 -1 -this.sum(this.getJWrap()) --162 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) -5 -1 return -203801542 +5 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -17390 +16951 this -359674586 +1277108979 1 this.value --81 +-82 1 this.shift 10 @@ -87138,19 +87058,19 @@ this.heavy true 1 this.list1 -2031784244 +1502335674 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +885002305 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87159,7 +87079,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 10 @@ -87168,31 +87088,31 @@ this.isHeavy() true 1 this.getNum() -56099429 +1407083101 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -117782170 +1398241764 1 this.scale(this.value) --891 +-902 1 this.scale(this.shift) -19 +18 1 this.scale(this.getValue()) --891 +-902 1 this.scale(this.getShift()) -19 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 10 @@ -87200,15 +87120,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +816798571 +1 +l[..] +[428039780 1756573246 198112003 1097897234 1107530534 858818438 1335503880 176683244 1413730361 1668837760 2099051403 1223240796 48361312 573926093 946802083 962944318 888287133 1025001676 2111457497 1850042097] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -17390 +16951 this -359674586 +1277108979 1 this.value --81 +-82 1 this.shift 10 @@ -87217,19 +87149,19 @@ this.heavy true 1 this.list1 -2031784244 +1502335674 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1517640897 2061774051 1331270134 1212191909 941836856 1677458155 1613627715 738677855 240630125 851912430 586358252] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +885002305 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[124734309 211090736 909282611 46453164 2131597042 1415289182 1990385139 1380924218 1105628551 1241480588 693267461] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87238,7 +87170,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --81 +-82 1 this.getShift() 10 @@ -87247,31 +87179,31 @@ this.isHeavy() true 1 this.getNum() -1732492303 +1409092880 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -267366848 +1812831622 1 this.scale(this.value) --891 +-902 1 this.scale(this.shift) -19 +18 1 this.scale(this.getValue()) --891 +-902 1 this.scale(this.getShift()) -19 +18 1 this.sum(this.getNum()) --162 +-164 1 this.sum(this.getJWrap()) --162 +-164 1 this.retrieve(this.list1) 10 @@ -87279,39 +87211,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +816798571 +1 +l[..] +[428039780 1756573246 198112003 1097897234 1107530534 858818438 1335503880 176683244 1413730361 1668837760 2099051403 1223240796 48361312 573926093 946802083 962944318 888287133 1025001676 2111457497 1850042097] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 return +10 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +16986 +value -81 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -17425 +16986 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87323,31 +87277,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1098824812 +1962266146 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1736734731 +632071960 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -87356,41 +87310,57 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +value +-81 +1 +shift +0 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -17425 +17004 +value +-81 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +17004 this -359674586 +385739920 1 this.value -81 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2031784244 +452842611 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +680988889 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87402,31 +87372,31 @@ this.getValue() -81 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -702893893 +1528741718 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -230117504 +692743054 1 this.scale(this.value) --891 +-486 1 this.scale(this.shift) -19 +-56 1 this.scale(this.getValue()) --891 +-486 1 this.scale(this.getShift()) -19 +-56 1 this.sum(this.getNum()) -162 @@ -87435,20 +87405,33 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -return +value +-81 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +17022 +value +-81 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -17460 +17022 this -359674586 +1260217713 1 this.value -81 @@ -87460,19 +87443,19 @@ this.heavy true 1 this.list1 -2031784244 +461591680 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +1406919011 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87490,13 +87473,13 @@ this.isHeavy() true 1 this.getNum() -2114325128 +1109113497 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1050519387 +1561502550 1 this.scale(this.value) -891 @@ -87522,36 +87505,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +value +-81 +1 +shift +10 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::ENTER this_invocation_nonce -17460 +17040 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87563,31 +87552,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1616275322 +323823279 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1218685951 +1722570594 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -87596,44 +87585,41 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -17495 +17040 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87645,31 +87631,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1903237018 +2038232668 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -935639461 +834466358 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -87678,41 +87664,44 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +-81 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::ENTER this_invocation_nonce -17495 +17075 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87724,31 +87713,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1417157693 +1262408432 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -428217374 +1336777650 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -87757,47 +87746,41 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -831703721 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -17530 +17075 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87809,31 +87792,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -473380524 +1367165453 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1827038380 +126234454 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -87842,41 +87825,44 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -17530 +17110 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87888,31 +87874,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -165384207 +974308356 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -768527831 +423733503 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -87921,20 +87907,17 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -return -1680602559 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -17565 +17110 this -613606362 +1289869008 1 this.value -81 @@ -87946,19 +87929,19 @@ this.heavy false 1 this.list1 -665653240 +605101809 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +782689036 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -87976,13 +87959,13 @@ this.isHeavy() false 1 this.getNum() -34800122 +584561912 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -770098470 +345887595 1 this.scale(this.value) -81 @@ -88008,15 +87991,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --81 +return +false 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::ENTER this_invocation_nonce -17565 +17145 this -613606362 +1289869008 1 this.value -81 @@ -88028,19 +88011,19 @@ this.heavy false 1 this.list1 -665653240 +605101809 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +782689036 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88058,13 +88041,13 @@ this.isHeavy() false 1 this.getNum() -161044821 +948115224 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -850911327 +739333799 1 this.scale(this.value) -81 @@ -88090,42 +88073,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --81 -1 -return --81 -1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -17600 +17145 this -106243264 +1289869008 1 this.value -81 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1071627391 +605101809 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +782689036 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88137,31 +88114,31 @@ this.getValue() -81 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1173067516 +872306601 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1845861952 +1233308726 1 this.scale(this.value) --486 +-81 1 this.scale(this.shift) --56 +-81 1 this.scale(this.getValue()) --486 +-81 1 this.scale(this.getShift()) --56 +-81 1 this.sum(this.getNum()) -162 @@ -88170,44 +88147,47 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -scale --81 +return +1763260873 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -17600 +17180 this -106243264 +1289869008 1 this.value -81 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -1071627391 +605101809 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +782689036 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88219,31 +88199,31 @@ this.getValue() -81 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -853062702 +1327234595 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -824005142 +236567414 1 this.scale(this.value) --486 +-81 1 this.scale(this.shift) --56 +-81 1 this.scale(this.getValue()) --486 +-81 1 this.scale(this.getShift()) --56 +-81 1 this.sum(this.getNum()) -162 @@ -88252,47 +88232,41 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --81 -1 -return --486 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -17635 +17180 this -359674586 +1289869008 1 this.value -81 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -2031784244 +605101809 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +782689036 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88304,31 +88278,31 @@ this.getValue() -81 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -2079865738 +1361393151 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1712136347 +1901238627 1 this.scale(this.value) --891 +-81 1 this.scale(this.shift) -19 +-81 1 this.scale(this.getValue()) --891 +-81 1 this.scale(this.getShift()) -19 +-81 1 this.sum(this.getNum()) -162 @@ -88337,44 +88311,44 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -scale --81 +return +1638435724 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::ENTER this_invocation_nonce -17635 +17215 this -359674586 +385739920 1 this.value -81 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2031784244 +452842611 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +680988889 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88386,31 +88360,31 @@ this.getValue() -81 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1742197876 +573136580 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -180175087 +1524305331 1 this.scale(this.value) --891 +-486 1 this.scale(this.shift) -19 +-56 1 this.scale(this.getValue()) --891 +-486 1 this.scale(this.getShift()) -19 +-56 1 this.sum(this.getNum()) -162 @@ -88419,47 +88393,41 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --81 -1 -return --891 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::EXIT27 this_invocation_nonce -17670 +17215 this -613606362 +385739920 1 this.value -81 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -665653240 +452842611 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +680988889 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88471,31 +88439,31 @@ this.getValue() -81 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -250744939 +1059524106 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -907274359 +443942537 1 this.scale(this.value) --81 +-486 1 this.scale(this.shift) --81 +-56 1 this.scale(this.getValue()) --81 +-486 1 this.scale(this.getShift()) --81 +-56 1 this.sum(this.getNum()) -162 @@ -88504,47 +88472,44 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1426258013 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +-81 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::ENTER this_invocation_nonce -17670 +17250 this -613606362 +385739920 1 this.value -81 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -665653240 +452842611 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +680988889 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88556,31 +88521,31 @@ this.getValue() -81 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -905956677 +1916904573 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -754813109 +1895143699 1 this.scale(this.value) --81 +-486 1 this.scale(this.shift) --81 +-56 1 this.scale(this.getValue()) --81 +-486 1 this.scale(this.getShift()) --81 +-56 1 this.sum(this.getNum()) -162 @@ -88589,26 +88554,17 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -1426258013 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --162 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -17705 +17250 this -106243264 +385739920 1 this.value -81 @@ -88620,19 +88576,19 @@ this.heavy true 1 this.list1 -1071627391 +452842611 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +680988889 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88650,13 +88606,13 @@ this.isHeavy() true 1 this.getNum() -958020134 +1998949977 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1759490579 +1573751930 1 this.scale(this.value) -486 @@ -88682,18 +88638,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -908342063 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -17705 +17285 this -106243264 +385739920 1 this.value -81 @@ -88705,19 +88658,19 @@ this.heavy true 1 this.list1 -1071627391 +452842611 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +680988889 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88735,13 +88688,13 @@ this.isHeavy() true 1 this.getNum() -43806318 +575715826 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1813379352 +2117173674 1 this.scale(this.value) -486 @@ -88767,45 +88720,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -908342063 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --162 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -17740 +17285 this -359674586 +385739920 1 this.value -81 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2031784244 +452842611 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +680988889 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88817,31 +88761,31 @@ this.getValue() -81 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -378850840 +624795507 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -57054525 +337799666 1 this.scale(this.value) --891 +-486 1 this.scale(this.shift) -19 +-56 1 this.scale(this.getValue()) --891 +-486 1 this.scale(this.getShift()) -19 +-56 1 this.sum(this.getNum()) -162 @@ -88850,47 +88794,44 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1137695113 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -17740 +17320 this -359674586 +385739920 1 this.value -81 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -2031784244 +452842611 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +680988889 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88902,31 +88843,31 @@ this.getValue() -81 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -47371303 +857394605 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1600540131 +1104422581 1 this.scale(this.value) --891 +-486 1 this.scale(this.shift) -19 +-56 1 this.scale(this.getValue()) --891 +-486 1 this.scale(this.getShift()) -19 +-56 1 this.sum(this.getNum()) -162 @@ -88935,50 +88876,41 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1137695113 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --162 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -17775 +17320 this -613606362 +385739920 1 this.value -81 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -665653240 +452842611 1 this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2096114670 +680988889 1 this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -88990,31 +88922,31 @@ this.getValue() -81 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -897819395 +148635643 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1430467943 +254896875 1 this.scale(this.value) --81 +-486 1 this.scale(this.shift) --81 +-56 1 this.scale(this.getValue()) --81 +-486 1 this.scale(this.getShift()) --81 +-56 1 this.sum(this.getNum()) -162 @@ -89023,123 +88955,23 @@ this.sum(this.getJWrap()) -162 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -795289836 -1 -l[..] -[498054724 2061973909 1651876924 426873252 1863365384 827984687 244601849 739575785 414869659 1982440651 671238152 768022973 1785388741 239570456 2076299514 1904151695 1276230271 535498461 18669450 244833688] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 - -misc.Purity.retrieve(java.util.List):::EXIT55 -this_invocation_nonce -17775 -this -613606362 -1 -this.value --81 -1 -this.shift -0 -1 -this.heavy -false -1 -this.list1 -665653240 -1 -this.list1[..] -[1391687457 1846690322 1890575410 732874858 1609022861 1733141803 446095113 655152514 999644629 1262709122 918813800] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -2096114670 -1 -this.list2[..] -[2077513302 829450141 1252167110 1980360817 75206466 1274689626 411681710 2089672983 1186262243 271339353 1292723290] -1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2.getClass().getName() -"java.util.ArrayList" -1 -this.getValue() --81 -1 -this.getShift() -0 -1 -this.isHeavy() -false +5 1 -this.getNum() -341126564 +return +1789110533 1 -this.getNum().getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -this.getJWrap() -1680307305 -1 -this.scale(this.value) --81 -1 -this.scale(this.shift) --81 -1 -this.scale(this.getValue()) --81 -1 -this.scale(this.getShift()) --81 -1 -this.sum(this.getNum()) --162 -1 -this.sum(this.getJWrap()) --162 -1 -this.retrieve(this.list1) -0 -1 -this.retrieve(this.list2) -0 -1 -l -795289836 -1 -l[..] -[498054724 2061973909 1651876924 426873252 1863365384 827984687 244601849 739575785 414869659 1982440651 671238152 768022973 1785388741 239570456 2076299514 1904151695 1276230271 535498461 18669450 244833688] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -17810 +17355 this -106243264 +385739920 1 this.value -81 @@ -89151,19 +88983,19 @@ this.heavy true 1 this.list1 -1071627391 +452842611 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +680988889 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89181,13 +89013,13 @@ this.isHeavy() true 1 this.getNum() -1514917085 +170052458 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -645328763 +1574029810 1 this.scale(this.value) -486 @@ -89213,24 +89045,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -795289836 -1 -l[..] -[498054724 2061973909 1651876924 426873252 1863365384 827984687 244601849 739575785 414869659 1982440651 671238152 768022973 1785388741 239570456 2076299514 1904151695 1276230271 535498461 18669450 244833688] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -17810 +17355 this -106243264 +385739920 1 this.value -81 @@ -89242,19 +89062,19 @@ this.heavy true 1 this.list1 -1071627391 +452842611 1 this.list1[..] -[2043696795 1558583447 106467623 547461810 1370696922 1246086685 718389251 815078123 219829048 994936896 1596735530] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1378399798 +680988889 1 this.list2[..] -[1859304797 1301175682 1033709973 420811981 923315096 439985250 1045900129 1289817408 1261243438 2054866576 310531778] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89272,13 +89092,13 @@ this.isHeavy() true 1 this.getNum() -1248102391 +1504937617 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -236621641 +774895395 1 this.scale(this.value) -486 @@ -89304,27 +89124,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -795289836 -1 -l[..] -[498054724 2061973909 1651876924 426873252 1863365384 827984687 244601849 739575785 414869659 1982440651 671238152 768022973 1785388741 239570456 2076299514 1904151695 1276230271 535498461 18669450 244833688] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -5 +843710487 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -17845 +17390 this -359674586 +1260217713 1 this.value -81 @@ -89336,19 +89144,19 @@ this.heavy true 1 this.list1 -2031784244 +461591680 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +1406919011 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89366,13 +89174,13 @@ this.isHeavy() true 1 this.getNum() -1907689690 +1636291061 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -609770120 +608519258 1 this.scale(this.value) -891 @@ -89398,24 +89206,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -795289836 -1 -l[..] -[498054724 2061973909 1651876924 426873252 1863365384 827984687 244601849 739575785 414869659 1982440651 671238152 768022973 1785388741 239570456 2076299514 1904151695 1276230271 535498461 18669450 244833688] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -17845 +17390 this -359674586 +1260217713 1 this.value -81 @@ -89427,19 +89223,19 @@ this.heavy true 1 this.list1 -2031784244 +461591680 1 this.list1[..] -[1060317961 944667721 683784576 1182373735 1489178454 1847854240 2125192413 1160868387 826047314 2042912190 1256629094] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -1810998260 +1406919011 1 this.list2[..] -[1162026889 969637605 1593313799 1851425350 2015296067 968917585 229355894 51364093 2135368604 393418764 87017435] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89457,13 +89253,13 @@ this.isHeavy() true 1 this.getNum() -614443356 +1963075870 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1848109516 +397071633 1 this.scale(this.value) -891 @@ -89489,61 +89285,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -795289836 -1 -l[..] -[498054724 2061973909 1651876924 426873252 1863365384 827984687 244601849 739575785 414869659 1982440651 671238152 768022973 1785388741 239570456 2076299514 1904151695 1276230271 535498461 18669450 244833688] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return -10 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -17880 -value --80 -1 -shift -0 +-81 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::ENTER this_invocation_nonce -17880 +17425 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89552,93 +89326,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -238903492 +1216198248 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1604053801 +1184124073 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --80 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -17898 -value --80 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -17898 +17425 this -1970012616 +1260217713 1 this.value --80 +-81 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -99167666 +461591680 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1406919011 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89647,72 +89405,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1166898457 +582666172 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1241702395 +1668910247 1 this.scale(this.value) --480 +-891 1 this.scale(this.shift) --55 +19 1 this.scale(this.getValue()) --480 +-891 1 this.scale(this.getShift()) --55 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --80 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -17916 -value --80 +10 1 -shift +return 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -17916 +17460 this -46071219 +1260217713 1 this.value --80 +-81 1 this.shift 10 @@ -89721,19 +89466,19 @@ this.heavy true 1 this.list1 -1224864813 +461591680 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +1406919011 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89742,7 +89487,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 10 @@ -89751,31 +89496,31 @@ this.isHeavy() true 1 this.getNum() -264504460 +1175631958 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -235309930 +579294521 1 this.scale(this.value) --880 +-891 1 this.scale(this.shift) -20 +19 1 this.scale(this.getValue()) --880 +-891 1 this.scale(this.getShift()) -20 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 10 @@ -89783,42 +89528,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --80 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -17934 +17460 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89827,77 +89566,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1336599383 +1450500594 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1546882461 +2043106095 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +true 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getNum():::ENTER this_invocation_nonce -17934 +17495 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89906,80 +89648,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1016491445 +709133385 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -939304230 +854733477 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --80 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -17969 +17495 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -89988,77 +89727,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -733904513 +1140338296 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1734565270 +15024899 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +244185498 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -17969 +17530 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90067,80 +89812,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -747984865 +768185844 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -12356517 +792782299 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -0 +10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -18004 +17530 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90149,56 +89891,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1517551107 +85415531 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1965663577 +1689730682 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +87060781 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -18004 +17565 this -2120648851 +1289869008 1 this.value --80 +-81 1 this.shift 0 @@ -90207,19 +89952,19 @@ this.heavy false 1 this.list1 -2106633145 +605101809 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +782689036 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90228,7 +89973,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 0 @@ -90237,31 +89982,31 @@ this.isHeavy() false 1 this.getNum() -19313191 +771105389 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -326770440 +317562294 1 this.scale(this.value) --80 +-81 1 this.scale(this.shift) --80 +-81 1 this.scale(this.getValue()) --80 +-81 1 this.scale(this.getShift()) --80 +-81 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 0 @@ -90269,18 +90014,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -false +scale +-81 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -18039 +17565 this -2120648851 +1289869008 1 this.value --80 +-81 1 this.shift 0 @@ -90289,19 +90034,19 @@ this.heavy false 1 this.list1 -2106633145 +605101809 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +782689036 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90310,7 +90055,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 0 @@ -90319,31 +90064,31 @@ this.isHeavy() false 1 this.getNum() -915099701 +1341404543 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1950278540 +1238080693 1 this.scale(this.value) --80 +-81 1 this.scale(this.shift) --80 +-81 1 this.scale(this.getValue()) --80 +-81 1 this.scale(this.getShift()) --80 +-81 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 0 @@ -90351,36 +90096,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-81 +1 +return +-81 +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -18039 +17600 this -2120648851 +385739920 1 this.value --80 +-81 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -2106633145 +452842611 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +680988889 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90389,83 +90140,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1288517619 +1429351083 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -890526185 +726408598 1 this.scale(this.value) --80 +-486 1 this.scale(this.shift) --80 +-56 1 this.scale(this.getValue()) --80 +-486 1 this.scale(this.getShift()) --80 +-56 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -return -1260055352 +5 1 -return.getClass().getName() -"java.lang.Integer" +scale +-81 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -18074 +17600 this -2120648851 +385739920 1 this.value --80 +-81 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -2106633145 +452842611 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +680988889 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90474,77 +90222,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1414057997 +1174248013 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2018717877 +1346799731 1 this.scale(this.value) --80 +-486 1 this.scale(this.shift) --80 +-56 1 this.scale(this.getValue()) --80 +-486 1 this.scale(this.getShift()) --80 +-56 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-81 +1 +return +-486 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.scale(int):::ENTER this_invocation_nonce -18074 +17635 this -2120648851 +1260217713 1 this.value --80 +-81 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -2106633145 +461591680 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1406919011 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90553,80 +90307,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -497219786 +342198178 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -914072825 +1594791957 1 this.scale(this.value) --80 +-891 1 this.scale(this.shift) --80 +19 1 this.scale(this.getValue()) --80 +-891 1 this.scale(this.getShift()) --80 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -1871442784 +scale +-81 1 -misc.Purity.getValue():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -18109 +17635 this -1970012616 +1260217713 1 this.value --80 +-81 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -99167666 +461591680 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1406919011 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90635,77 +90389,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1293376726 +1988644427 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -953158948 +308889081 1 this.scale(this.value) --480 +-891 1 this.scale(this.shift) --55 +19 1 this.scale(this.getValue()) --480 +-891 1 this.scale(this.getShift()) --55 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +scale +-81 +1 +return +-891 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -18109 +17670 this -1970012616 +1289869008 1 this.value --80 +-81 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -99167666 +605101809 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +782689036 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90714,80 +90474,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1661916063 +713656449 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1650957959 +23880693 1 this.scale(this.value) --480 +-81 1 this.scale(this.shift) --55 +-81 1 this.scale(this.getValue()) --480 +-81 1 this.scale(this.getShift()) --55 +-81 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return --80 +n +891461509 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -18144 +17670 this -1970012616 +1289869008 1 this.value --80 +-81 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -99167666 +605101809 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +782689036 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90796,56 +90559,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -14214026 +1832669781 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -524450165 +186061555 1 this.scale(this.value) --480 +-81 1 this.scale(this.shift) --55 +-81 1 this.scale(this.getValue()) --480 +-81 1 this.scale(this.getShift()) --55 +-81 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +891461509 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-162 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -18144 +17705 this -1970012616 +385739920 1 this.value --80 +-81 1 this.shift 5 @@ -90854,19 +90626,19 @@ this.heavy true 1 this.list1 -99167666 +452842611 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +680988889 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90875,7 +90647,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 5 @@ -90884,31 +90656,31 @@ this.isHeavy() true 1 this.getNum() -1161035867 +1770437551 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1493400027 +1215946669 1 this.scale(this.value) --480 +-486 1 this.scale(this.shift) --55 +-56 1 this.scale(this.getValue()) --480 +-486 1 this.scale(this.getShift()) --55 +-56 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 5 @@ -90916,18 +90688,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -5 +n +1196982797 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -18179 +17705 this -1970012616 +385739920 1 this.value --80 +-81 1 this.shift 5 @@ -90936,19 +90711,19 @@ this.heavy true 1 this.list1 -99167666 +452842611 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +680988889 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -90957,7 +90732,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 5 @@ -90966,31 +90741,31 @@ this.isHeavy() true 1 this.getNum() -1932871300 +1961595039 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -782810931 +686560878 1 this.scale(this.value) --480 +-486 1 this.scale(this.shift) --55 +-56 1 this.scale(this.getValue()) --480 +-486 1 this.scale(this.getShift()) --55 +-56 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 5 @@ -90998,36 +90773,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1196982797 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-162 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -18179 +17740 this -1970012616 +1260217713 1 this.value --80 +-81 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -99167666 +461591680 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1406919011 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91036,80 +90820,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1218495795 +787361897 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -854768773 +765826899 1 this.scale(this.value) --480 +-891 1 this.scale(this.shift) --55 +19 1 this.scale(this.getValue()) --480 +-891 1 this.scale(this.getShift()) --55 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -true +n +90346768 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getNum():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -18214 +17740 this -1970012616 +1260217713 1 this.value --80 +-81 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -99167666 +461591680 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1406919011 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91118,77 +90905,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1580653028 +1307950260 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1662728206 +315072539 1 this.scale(this.value) --480 +-891 1 this.scale(this.shift) --55 +19 1 this.scale(this.getValue()) --480 +-891 1 this.scale(this.getShift()) --55 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +90346768 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-162 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -18214 +17775 this -1970012616 +1289869008 1 this.value --80 +-81 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -99167666 +605101809 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +782689036 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91197,83 +90993,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -268259831 +333034015 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1074804564 +42102625 1 this.scale(this.value) --480 +-81 1 this.scale(this.shift) --55 +-81 1 this.scale(this.getValue()) --480 +-81 1 this.scale(this.getShift()) --55 +-81 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -1755352231 +l +1651667865 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[1301987508 319670866 40191541 1937380187 1753150176 366803687 1033917063 509832867 18179709 1936502650 1290272762 1232373427 1677207406 1979274004 101874302 1807623441 1231006815 1979787155 1666544295 2044282225] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -18249 +17775 this -1970012616 +1289869008 1 this.value --80 +-81 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -99167666 +605101809 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[524223214 534666530 1573605215 1904288897 382627885 2073299099 2090991873 75470648 1633013890 979291363 1444440224] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +782689036 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1631119258 768415370 948250363 564272228 125844477 1119622337 1394557075 1659840424 1681303515 1175371136 1866229258] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91282,56 +91084,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -74603931 +1305486145 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1885302116 +840083671 1 this.scale(this.value) --480 +-81 1 this.scale(this.shift) --55 +-81 1 this.scale(this.getValue()) --480 +-81 1 this.scale(this.getShift()) --55 +-81 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1651667865 +1 +l[..] +[1301987508 319670866 40191541 1937380187 1753150176 366803687 1033917063 509832867 18179709 1936502650 1290272762 1232373427 1677207406 1979274004 101874302 1807623441 1231006815 1979787155 1666544295 2044282225] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -18249 +17810 this -1970012616 +385739920 1 this.value --80 +-81 1 this.shift 5 @@ -91340,19 +91157,19 @@ this.heavy true 1 this.list1 -99167666 +452842611 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +680988889 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91361,7 +91178,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 5 @@ -91370,31 +91187,31 @@ this.isHeavy() true 1 this.getNum() -151452127 +2048537720 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -687776794 +1230701703 1 this.scale(this.value) --480 +-486 1 this.scale(this.shift) --55 +-56 1 this.scale(this.getValue()) --480 +-486 1 this.scale(this.getShift()) --55 +-56 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 5 @@ -91402,39 +91219,48 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -1707588604 +l +1651667865 +1 +l[..] +[1301987508 319670866 40191541 1937380187 1753150176 366803687 1033917063 509832867 18179709 1936502650 1290272762 1232373427 1677207406 1979274004 101874302 1807623441 1231006815 1979787155 1666544295 2044282225] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -18284 +17810 this -46071219 +385739920 1 this.value --80 +-81 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1224864813 +452842611 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1076071888 7829163 2031588185 230526532 1370283822 1783966110 790487766 1320388319 2035381640 973843173 2059461664] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +680988889 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1511574902 1034094674 1077873186 1346292516 1280429864 1771421544 1363396194 2005028997 896072146 1908571880 1048434276] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91443,56 +91269,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -470208920 +90045638 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -61497480 +573487274 1 this.scale(this.value) --880 +-486 1 this.scale(this.shift) -20 +-56 1 this.scale(this.getValue()) --880 +-486 1 this.scale(this.getShift()) -20 +-56 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 +1 +l +1651667865 +1 +l[..] +[1301987508 319670866 40191541 1937380187 1753150176 366803687 1033917063 509832867 18179709 1936502650 1290272762 1232373427 1677207406 1979274004 101874302 1807623441 1231006815 1979787155 1666544295 2044282225] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -18284 +17845 this -46071219 +1260217713 1 this.value --80 +-81 1 this.shift 10 @@ -91501,19 +91342,19 @@ this.heavy true 1 this.list1 -1224864813 +461591680 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +1406919011 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91522,7 +91363,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 10 @@ -91531,31 +91372,31 @@ this.isHeavy() true 1 this.getNum() -648512153 +154988899 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1064246946 +408069119 1 this.scale(this.value) --880 +-891 1 this.scale(this.shift) -20 +19 1 this.scale(this.getValue()) --880 +-891 1 this.scale(this.getShift()) -20 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 10 @@ -91563,18 +91404,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return --80 +l +1651667865 +1 +l[..] +[1301987508 319670866 40191541 1937380187 1753150176 366803687 1033917063 509832867 18179709 1936502650 1290272762 1232373427 1677207406 1979274004 101874302 1807623441 1231006815 1979787155 1666544295 2044282225] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getShift():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -18319 +17845 this -46071219 +1260217713 1 this.value --80 +-81 1 this.shift 10 @@ -91583,19 +91433,19 @@ this.heavy true 1 this.list1 -1224864813 +461591680 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[894024873 1327871893 1874028013 1855261647 373378624 1958402562 5395829 1189084611 1517328406 2016949136 1792227359] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +1406919011 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[229995302 883455411 1195942137 1259639178 1830745997 443290224 413218476 2010545395 1844334363 392904516 116289363] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91604,7 +91454,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --80 +-81 1 this.getShift() 10 @@ -91613,31 +91463,31 @@ this.isHeavy() true 1 this.getNum() -407125559 +1912850431 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -676370771 +633326333 1 this.scale(this.value) --880 +-891 1 this.scale(this.shift) -20 +19 1 this.scale(this.getValue()) --880 +-891 1 this.scale(this.getShift()) -20 +19 1 this.sum(this.getNum()) --160 +-162 1 this.sum(this.getJWrap()) --160 +-162 1 this.retrieve(this.list1) 10 @@ -91645,36 +91495,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1651667865 +1 +l[..] +[1301987508 319670866 40191541 1937380187 1753150176 366803687 1033917063 509832867 18179709 1936502650 1290272762 1232373427 1677207406 1979274004 101874302 1807623441 1231006815 1979787155 1666544295 2044282225] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -18319 +17880 +value +-80 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +17880 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91686,31 +91561,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1132604626 +1404932042 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -390902174 +1984094095 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -91719,44 +91594,57 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return -10 +value +-80 +1 +shift +0 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -18354 +17898 +value +-80 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +17898 this -46071219 +1043358826 1 this.value -80 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1224864813 +1558079303 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +1757317128 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91768,31 +91656,31 @@ this.getValue() -80 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -740362245 +107994825 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -748000997 +1470868839 1 this.scale(this.value) --880 +-480 1 this.scale(this.shift) -20 +-55 1 this.scale(this.getValue()) --880 +-480 1 this.scale(this.getShift()) -20 +-55 1 this.sum(this.getNum()) -160 @@ -91801,17 +91689,33 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-80 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +17916 +value +-80 +1 +shift 10 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -18354 +17916 this -46071219 +1426725223 1 this.value -80 @@ -91823,19 +91727,19 @@ this.heavy true 1 this.list1 -1224864813 +711197015 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +484199463 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91853,13 +91757,13 @@ this.isHeavy() true 1 this.getNum() -283487041 +1792384402 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1447969041 +1458621573 1 this.scale(this.value) -880 @@ -91885,39 +91789,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return -true +value +-80 +1 +shift +10 1 -misc.Purity.getNum():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -18389 +17934 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -91929,31 +91836,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -730984283 +1658980982 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2046383541 +46941357 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -91962,41 +91869,41 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -18389 +17934 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92008,31 +91915,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1617566882 +1152606315 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1451098401 +343345308 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -92041,47 +91948,44 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -1786530275 -1 -return.getClass().getName() -"java.lang.Integer" +-80 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -18424 +17969 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92093,31 +91997,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -97979571 +1714688478 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1770176195 +104716441 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -92126,41 +92030,41 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -18424 +17969 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92172,31 +92076,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -112863827 +1506951181 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -674280088 +1976401987 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -92205,20 +92109,20 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -354233797 +0 1 -misc.Purity.scale(int):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -18459 +18004 this -2120648851 +1265012928 1 this.value -80 @@ -92230,19 +92134,19 @@ this.heavy false 1 this.list1 -2106633145 +1176932104 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +761750706 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92260,13 +92164,13 @@ this.isHeavy() false 1 this.getNum() -782756695 +867288517 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -306951343 +1528834618 1 this.scale(this.value) -80 @@ -92292,15 +92196,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --80 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -18459 +18004 this -2120648851 +1265012928 1 this.value -80 @@ -92312,19 +92213,19 @@ this.heavy false 1 this.list1 -2106633145 +1176932104 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +761750706 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92342,13 +92243,13 @@ this.isHeavy() false 1 this.getNum() -675501707 +280615803 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1558631507 +166694583 1 this.scale(this.value) -80 @@ -92374,42 +92275,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --80 -1 return --80 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -18494 +18039 this -1970012616 +1265012928 1 this.value -80 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -99167666 +1176932104 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +761750706 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92421,31 +92319,31 @@ this.getValue() -80 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -914212043 +885910946 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2063796063 +1860591867 1 this.scale(this.value) --480 +-80 1 this.scale(this.shift) --55 +-80 1 this.scale(this.getValue()) --480 +-80 1 this.scale(this.getShift()) --55 +-80 1 this.sum(this.getNum()) -160 @@ -92454,44 +92352,41 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --80 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -18494 +18039 this -1970012616 +1265012928 1 this.value -80 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -99167666 +1176932104 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +761750706 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92503,31 +92398,31 @@ this.getValue() -80 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -64564497 +811207775 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -656259344 +1161148117 1 this.scale(this.value) --480 +-80 1 this.scale(this.shift) --55 +-80 1 this.scale(this.getValue()) --480 +-80 1 this.scale(this.getShift()) --55 +-80 1 this.sum(this.getNum()) -160 @@ -92536,47 +92431,47 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --80 +0 1 return --480 +516875052 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -18529 +18074 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92588,31 +92483,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -274783616 +1131592118 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1198393062 +589987187 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -92621,44 +92516,41 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --80 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -18529 +18074 this -46071219 +1265012928 1 this.value -80 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -1224864813 +1176932104 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +761750706 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92670,31 +92562,31 @@ this.getValue() -80 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -143067821 +1262609629 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1506666554 +587180314 1 this.scale(this.value) --880 +-80 1 this.scale(this.shift) -20 +-80 1 this.scale(this.getValue()) --880 +-80 1 this.scale(this.getShift()) -20 +-80 1 this.sum(this.getNum()) -160 @@ -92703,47 +92595,44 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 -1 -scale --80 +0 1 return --880 +1955990522 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -18564 +18109 this -2120648851 +1043358826 1 this.value -80 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -2106633145 +1558079303 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1757317128 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92755,31 +92644,31 @@ this.getValue() -80 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1565091301 +69673470 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2109787451 +1082411691 1 this.scale(this.value) --80 +-480 1 this.scale(this.shift) --80 +-55 1 this.scale(this.getValue()) --80 +-480 1 this.scale(this.getShift()) --80 +-55 1 this.sum(this.getNum()) -160 @@ -92788,47 +92677,41 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -2095193340 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -18564 +18109 this -2120648851 +1043358826 1 this.value -80 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -2106633145 +1558079303 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1757317128 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92840,31 +92723,31 @@ this.getValue() -80 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1625105521 +527211736 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1451468901 +1533123860 1 this.scale(this.value) --80 +-480 1 this.scale(this.shift) --80 +-55 1 this.scale(this.getValue()) --80 +-480 1 this.scale(this.getShift()) --80 +-55 1 this.sum(this.getNum()) -160 @@ -92873,26 +92756,99 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -n -2095193340 +return +-80 1 -n.getClass().getName() + +misc.Purity.getShift():::ENTER +this_invocation_nonce +18144 +this +1043358826 +1 +this.value +-80 +1 +this.shift +5 +1 +this.heavy +true +1 +this.list1 +1558079303 +1 +this.list1[..] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +1757317128 +1 +this.list2[..] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() +"java.util.ArrayList" +1 +this.getValue() +-80 +1 +this.getShift() +5 +1 +this.isHeavy() +true +1 +this.getNum() +1718906711 +1 +this.getNum().getClass().getName() "java.lang.Integer" 1 -return +this.getJWrap() +71802912 +1 +this.scale(this.value) +-480 +1 +this.scale(this.shift) +-55 +1 +this.scale(this.getValue()) +-480 +1 +this.scale(this.getShift()) +-55 +1 +this.sum(this.getNum()) +-160 +1 +this.sum(this.getJWrap()) -160 1 +this.retrieve(this.list1) +5 +1 +this.retrieve(this.list2) +5 +1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::EXIT31 this_invocation_nonce -18599 +18144 this -1970012616 +1043358826 1 this.value -80 @@ -92904,19 +92860,19 @@ this.heavy true 1 this.list1 -99167666 +1558079303 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1757317128 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -92934,13 +92890,13 @@ this.isHeavy() true 1 this.getNum() -1571072834 +2134271532 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1709681173 +686349795 1 this.scale(this.value) -480 @@ -92966,18 +92922,15 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1280277751 -1 -n.getClass().getName() -"java.lang.Integer" +return +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -18599 +18179 this -1970012616 +1043358826 1 this.value -80 @@ -92989,19 +92942,19 @@ this.heavy true 1 this.list1 -99167666 +1558079303 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1757317128 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93019,13 +92972,13 @@ this.isHeavy() true 1 this.getNum() -1989501764 +1831010686 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1235763758 +1423768154 1 this.scale(this.value) -480 @@ -93051,45 +93004,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -1280277751 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --160 -1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -18634 +18179 this -46071219 +1043358826 1 this.value -80 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1224864813 +1558079303 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +1757317128 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93101,31 +93045,31 @@ this.getValue() -80 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1167130569 +404222443 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -847841485 +1987977423 1 this.scale(this.value) --880 +-480 1 this.scale(this.shift) -20 +-55 1 this.scale(this.getValue()) --880 +-480 1 this.scale(this.getShift()) -20 +-55 1 this.sum(this.getNum()) -160 @@ -93134,47 +93078,44 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1117840550 +5 1 -n.getClass().getName() -"java.lang.Integer" +return +true 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::ENTER this_invocation_nonce -18634 +18214 this -46071219 +1043358826 1 this.value -80 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -1224864813 +1558079303 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +1757317128 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93186,31 +93127,31 @@ this.getValue() -80 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1359179894 +61073295 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -952925319 +807322507 1 this.scale(this.value) --880 +-480 1 this.scale(this.shift) -20 +-55 1 this.scale(this.getValue()) --880 +-480 1 this.scale(this.getShift()) -20 +-55 1 this.sum(this.getNum()) -160 @@ -93219,50 +93160,41 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -1117840550 -1 -n.getClass().getName() -"java.lang.Integer" -1 -return --160 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -18669 +18214 this -2120648851 +1043358826 1 this.value -80 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -2106633145 +1558079303 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1757317128 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93274,31 +93206,31 @@ this.getValue() -80 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2030280754 +396485834 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1560965295 +283039401 1 this.scale(this.value) --80 +-480 1 this.scale(this.shift) --80 +-55 1 this.scale(this.getValue()) --80 +-480 1 this.scale(this.getShift()) --80 +-55 1 this.sum(this.getNum()) -160 @@ -93307,53 +93239,47 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1483481313 -1 -l[..] -[585285921 1425370987 1030096224 1961558301 1888899810 488353069 67531849 1136420527 100240871 1121139649 972561965 1350908438 1521001382 1972377033 1183218539 655413753 1095321208 833720772 14218329 596770686] +5 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +return +207471778 1 -l.getClass().getName() -"java.util.ArrayList" +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -18669 +18249 this -2120648851 +1043358826 1 this.value -80 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -2106633145 +1558079303 1 this.list1[..] -[620379926 692310097 589400833 1865220267 1938232210 689312127 1742126571 1129235599 1749723854 2115235807 1323915811] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -974968910 +1757317128 1 this.list2[..] -[1002243760 1996630899 796051471 413952287 1596554976 491312367 412329454 91404509 784775158 2019004279 1015810906] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93365,31 +93291,31 @@ this.getValue() -80 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1176288112 +1243171897 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -139844102 +1376151044 1 this.scale(this.value) --80 +-480 1 this.scale(this.shift) --80 +-55 1 this.scale(this.getValue()) --80 +-480 1 this.scale(this.getShift()) --80 +-55 1 this.sum(this.getNum()) -160 @@ -93398,32 +93324,17 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -1483481313 -1 -l[..] -[585285921 1425370987 1030096224 1961558301 1888899810 488353069 67531849 1136420527 100240871 1121139649 972561965 1350908438 1521001382 1972377033 1183218539 655413753 1095321208 833720772 14218329 596770686] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -return -0 +5 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -18704 +18249 this -1970012616 +1043358826 1 this.value -80 @@ -93435,19 +93346,19 @@ this.heavy true 1 this.list1 -99167666 +1558079303 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +1757317128 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93465,13 +93376,13 @@ this.isHeavy() true 1 this.getNum() -1012712496 +873175411 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1851017797 +1443967876 1 this.scale(this.value) -480 @@ -93497,48 +93408,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -l -1483481313 -1 -l[..] -[585285921 1425370987 1030096224 1961558301 1888899810 488353069 67531849 1136420527 100240871 1121139649 972561965 1350908438 1521001382 1972377033 1183218539 655413753 1095321208 833720772 14218329 596770686] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +return +1449772539 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::ENTER this_invocation_nonce -18704 +18284 this -1970012616 +1426725223 1 this.value -80 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -99167666 +711197015 1 this.list1[..] -[263652390 946954969 470856066 200662067 978034279 982293015 1691908616 1077139185 191138085 1969742330 1998921805] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -644602967 +484199463 1 this.list2[..] -[1934550901 1094577527 1219576087 1831367241 2053590683 341434597 414966995 1470883156 1448942275 2055742592 1347161] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93550,31 +93452,31 @@ this.getValue() -80 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1608003737 +926859124 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1784593911 +1603696865 1 this.scale(this.value) --480 +-880 1 this.scale(this.shift) --55 +20 1 this.scale(this.getValue()) --480 +-880 1 this.scale(this.getShift()) --55 +20 1 this.sum(this.getNum()) -160 @@ -93583,32 +93485,99 @@ this.sum(this.getJWrap()) -160 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -l -1483481313 + +misc.Purity.getValue():::EXIT27 +this_invocation_nonce +18284 +this +1426725223 1 -l[..] -[585285921 1425370987 1030096224 1961558301 1888899810 488353069 67531849 1136420527 100240871 1121139649 972561965 1350908438 1521001382 1972377033 1183218539 655413753 1095321208 833720772 14218329 596770686] +this.value +-80 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.shift +10 1 -l.getClass().getName() +this.heavy +true +1 +this.list1 +711197015 +1 +this.list1[..] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +484199463 +1 +this.list2[..] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 +this.getValue() +-80 +1 +this.getShift() +10 +1 +this.isHeavy() +true +1 +this.getNum() +12905860 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +412788346 +1 +this.scale(this.value) +-880 +1 +this.scale(this.shift) +20 +1 +this.scale(this.getValue()) +-880 +1 +this.scale(this.getShift()) +20 +1 +this.sum(this.getNum()) +-160 +1 +this.sum(this.getJWrap()) +-160 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 +1 return -5 +-80 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -18739 +18319 this -46071219 +1426725223 1 this.value -80 @@ -93620,19 +93589,19 @@ this.heavy true 1 this.list1 -1224864813 +711197015 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +484199463 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93650,13 +93619,13 @@ this.isHeavy() true 1 this.getNum() -1913248175 +1520267010 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1689430694 +908084672 1 this.scale(this.value) -880 @@ -93682,24 +93651,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1483481313 -1 -l[..] -[585285921 1425370987 1030096224 1961558301 1888899810 488353069 67531849 1136420527 100240871 1121139649 972561965 1350908438 1521001382 1972377033 1183218539 655413753 1095321208 833720772 14218329 596770686] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -18739 +18319 this -46071219 +1426725223 1 this.value -80 @@ -93711,19 +93668,19 @@ this.heavy true 1 this.list1 -1224864813 +711197015 1 this.list1[..] -[524671949 593592261 1443590312 152129978 1343000316 1753181042 90652407 1029098726 228994944 427328384 922834320] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -949517606 +484199463 1 this.list2[..] -[591423185 1495151979 1313157506 548763123 1767028043 888964338 779896587 1629240068 73839979 1930462734 1104231462] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93741,13 +93698,13 @@ this.isHeavy() true 1 this.getNum() -232893424 +288306765 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1524572334 +1556867940 1 this.scale(this.value) -880 @@ -93773,61 +93730,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -1483481313 -1 -l[..] -[585285921 1425370987 1030096224 1961558301 1888899810 488353069 67531849 1136420527 100240871 1121139649 972561965 1350908438 1521001382 1972377033 1183218539 655413753 1095321208 833720772 14218329 596770686] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 return 10 1 -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -18774 -value --79 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::ENTER this_invocation_nonce -18774 +18354 this -1859825181 +1426725223 1 this.value --79 +-80 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1457334982 +711197015 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +484199463 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93836,93 +93771,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -636329330 +1839168128 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -318487250 +1495608502 1 this.scale(this.value) --79 +-880 1 this.scale(this.shift) --79 +20 1 this.scale(this.getValue()) --79 +-880 1 this.scale(this.getShift()) --79 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --79 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -18792 -value --79 -1 -shift -5 +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -18792 +18354 this -1285962426 +1426725223 1 this.value --79 +-80 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -895070374 +711197015 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +484199463 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -93931,72 +93850,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -685650491 +835773569 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -330552435 +843299092 1 this.scale(this.value) --474 +-880 1 this.scale(this.shift) --54 +20 1 this.scale(this.getValue()) --474 +-880 1 this.scale(this.getShift()) --54 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --79 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -18810 -value --79 -1 -shift 10 1 +return +true +1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -18810 +18389 this -54580256 +1426725223 1 this.value --79 +-80 1 this.shift 10 @@ -94005,19 +93911,19 @@ this.heavy true 1 this.list1 -354845323 +711197015 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +484199463 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94026,7 +93932,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 10 @@ -94035,31 +93941,31 @@ this.isHeavy() true 1 this.getNum() -1079501125 +605982374 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1233558019 +1412322831 1 this.scale(this.value) --869 +-880 1 this.scale(this.shift) -21 +20 1 this.scale(this.getValue()) --869 +-880 1 this.scale(this.getShift()) -21 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 10 @@ -94067,42 +93973,36 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --79 -1 -shift -10 -1 -misc.Purity.getValue():::ENTER +misc.Purity.getNum():::EXIT39 this_invocation_nonce -18828 +18389 this -1859825181 +1426725223 1 this.value --79 +-80 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1457334982 +711197015 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +484199463 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94111,77 +94011,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -602497195 +1651262695 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -784960760 +1305004711 1 this.scale(this.value) --79 +-880 1 this.scale(this.shift) --79 +20 1 this.scale(this.getValue()) --79 +-880 1 this.scale(this.getShift()) --79 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +494077446 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::ENTER this_invocation_nonce -18828 +18424 this -1859825181 +1426725223 1 this.value --79 +-80 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1457334982 +711197015 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +484199463 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94190,80 +94096,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -843449799 +1003206025 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -321217946 +989889899 1 this.scale(this.value) --79 +-880 1 this.scale(this.shift) --79 +20 1 this.scale(this.getValue()) --79 +-880 1 this.scale(this.getShift()) --79 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return --79 +10 1 -misc.Purity.getShift():::ENTER +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -18863 +18424 this -1859825181 +1426725223 1 this.value --79 +-80 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1457334982 +711197015 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +484199463 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94272,56 +94175,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -2083613511 +806813022 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -276447748 +902860396 1 this.scale(this.value) --79 +-880 1 this.scale(this.shift) --79 +20 1 this.scale(this.getValue()) --79 +-880 1 this.scale(this.getShift()) --79 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +return +1406206626 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::ENTER this_invocation_nonce -18863 +18459 this -1859825181 +1265012928 1 this.value --79 +-80 1 this.shift 0 @@ -94330,19 +94236,19 @@ this.heavy false 1 this.list1 -1457334982 +1176932104 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +761750706 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94351,7 +94257,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 0 @@ -94360,31 +94266,31 @@ this.isHeavy() false 1 this.getNum() -1250172175 +1816522350 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -663742977 +1799230133 1 this.scale(this.value) --79 +-80 1 this.scale(this.shift) --79 +-80 1 this.scale(this.getValue()) --79 +-80 1 this.scale(this.getShift()) --79 +-80 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 0 @@ -94392,18 +94298,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -0 +scale +-80 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -18898 +18459 this -1859825181 +1265012928 1 this.value --79 +-80 1 this.shift 0 @@ -94412,19 +94318,19 @@ this.heavy false 1 this.list1 -1457334982 +1176932104 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +761750706 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94433,7 +94339,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 0 @@ -94442,31 +94348,31 @@ this.isHeavy() false 1 this.getNum() -1498151921 +1521238608 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -193575172 +20156341 1 this.scale(this.value) --79 +-80 1 this.scale(this.shift) --79 +-80 1 this.scale(this.getValue()) --79 +-80 1 this.scale(this.getShift()) --79 +-80 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 0 @@ -94474,36 +94380,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-80 +1 +return +-80 +1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::ENTER this_invocation_nonce -18898 +18494 this -1859825181 +1043358826 1 this.value --79 +-80 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1457334982 +1558079303 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +1757317128 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94512,80 +94424,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2127674246 +1111897955 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2070846325 +1509309988 1 this.scale(this.value) --79 +-480 1 this.scale(this.shift) --79 +-55 1 this.scale(this.getValue()) --79 +-480 1 this.scale(this.getShift()) --79 +-55 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 1 -return -false +scale +-80 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -18933 +18494 this -1859825181 +1043358826 1 this.value --79 +-80 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1457334982 +1558079303 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +1757317128 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94594,77 +94506,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -446717346 +1643141512 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -375604310 +2091072548 1 this.scale(this.value) --79 +-480 1 this.scale(this.shift) --79 +-55 1 this.scale(this.getValue()) --79 +-480 1 this.scale(this.getShift()) --79 +-55 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-80 +1 +return +-480 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::ENTER this_invocation_nonce -18933 +18529 this -1859825181 +1426725223 1 this.value --79 +-80 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1457334982 +711197015 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +484199463 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94673,83 +94591,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1327199637 +263053820 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -331657670 +1740826931 1 this.scale(this.value) --79 +-880 1 this.scale(this.shift) --79 +20 1 this.scale(this.getValue()) --79 +-880 1 this.scale(this.getShift()) --79 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -return -1450395725 +10 1 -return.getClass().getName() -"java.lang.Integer" +scale +-80 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -18968 +18529 this -1859825181 +1426725223 1 this.value --79 +-80 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -1457334982 +711197015 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +484199463 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94758,56 +94673,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -714072978 +69062746 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1285921810 +1631227617 1 this.scale(this.value) --79 +-880 1 this.scale(this.shift) --79 +20 1 this.scale(this.getValue()) --79 +-880 1 this.scale(this.getShift()) --79 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-80 +1 +return +-880 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -18968 +18564 this -1859825181 +1265012928 1 this.value --79 +-80 1 this.shift 0 @@ -94816,19 +94737,19 @@ this.heavy false 1 this.list1 -1457334982 +1176932104 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +761750706 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94837,7 +94758,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 0 @@ -94846,31 +94767,31 @@ this.isHeavy() false 1 this.getNum() -212437262 +24650043 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1315241120 +1896074070 1 this.scale(this.value) --79 +-80 1 this.scale(this.shift) --79 +-80 1 this.scale(this.getValue()) --79 +-80 1 this.scale(this.getShift()) --79 +-80 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 0 @@ -94878,39 +94799,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -return -1208325269 +n +460741164 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -19003 +18564 this -1285962426 +1265012928 1 this.value --79 +-80 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -895070374 +1176932104 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +761750706 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94919,56 +94843,65 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1717430051 +781091365 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -519167830 +1858015030 1 this.scale(this.value) --474 +-80 1 this.scale(this.shift) --54 +-80 1 this.scale(this.getValue()) --474 +-80 1 this.scale(this.getShift()) --54 +-80 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +n +460741164 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-160 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -19003 +18599 this -1285962426 +1043358826 1 this.value --79 +-80 1 this.shift 5 @@ -94977,19 +94910,19 @@ this.heavy true 1 this.list1 -895070374 +1558079303 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +1757317128 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -94998,7 +94931,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 5 @@ -95007,31 +94940,31 @@ this.isHeavy() true 1 this.getNum() -427661049 +25764044 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -71484034 +671596011 1 this.scale(this.value) --474 +-480 1 this.scale(this.shift) --54 +-55 1 this.scale(this.getValue()) --474 +-480 1 this.scale(this.getShift()) --54 +-55 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 5 @@ -95039,18 +94972,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return --79 +n +1925352804 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -19038 +18599 this -1285962426 +1043358826 1 this.value --79 +-80 1 this.shift 5 @@ -95059,19 +94995,19 @@ this.heavy true 1 this.list1 -895070374 +1558079303 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +1757317128 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95080,7 +95016,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 5 @@ -95089,31 +95025,31 @@ this.isHeavy() true 1 this.getNum() -988800765 +1687354037 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1545996869 +743778731 1 this.scale(this.value) --474 +-480 1 this.scale(this.shift) --54 +-55 1 this.scale(this.getValue()) --474 +-480 1 this.scale(this.getShift()) --54 +-55 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 5 @@ -95121,36 +95057,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +1925352804 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-160 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -19038 +18634 this -1285962426 +1426725223 1 this.value --79 +-80 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -895070374 +711197015 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +484199463 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95159,80 +95104,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1164732230 +967323951 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1341147205 +1600594643 1 this.scale(this.value) --474 +-880 1 this.scale(this.shift) --54 +20 1 this.scale(this.getValue()) --474 +-880 1 this.scale(this.getShift()) --54 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -5 +n +743648472 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -19073 +18634 this -1285962426 +1426725223 1 this.value --79 +-80 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -895070374 +711197015 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +484199463 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95241,77 +95189,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -672715523 +692998280 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1975877253 +1368862151 1 this.scale(this.value) --474 +-880 1 this.scale(this.shift) --54 +20 1 this.scale(this.getValue()) --474 +-880 1 this.scale(this.getShift()) --54 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +743648472 +1 +n.getClass().getName() +"java.lang.Integer" +1 +return +-160 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -19073 +18669 this -1285962426 +1265012928 1 this.value --79 +-80 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -895070374 +1176932104 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +761750706 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95320,80 +95277,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -2029357610 +922807452 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1078069616 +33563464 1 this.scale(this.value) --474 +-80 1 this.scale(this.shift) --54 +-80 1 this.scale(this.getValue()) --474 +-80 1 this.scale(this.getShift()) --54 +-80 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 1 -return -true +l +1494346128 +1 +l[..] +[822087264 30699728 38603201 1422273905 1694784135 1207231495 756936249 1221981006 264394929 1878413714 769132147 1257299717 1474957626 181252244 1733022752 722417467 753631393 1262869688 1914108708 544386226] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -19108 +18669 this -1285962426 +1265012928 1 this.value --79 +-80 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -895070374 +1176932104 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[712410124 1900366749 249177573 2096539129 1648232591 972865270 1716932897 801569151 1026483832 1635378213 905080434] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +761750706 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[1731217984 1237762639 1877062907 2033524545 473053293 1670993182 20804602 1344519051 1566511282 1959239586 504336483] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95402,56 +95368,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -796506373 +1357700757 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1617039260 +900298796 1 this.scale(this.value) --474 +-80 1 this.scale(this.shift) --54 +-80 1 this.scale(this.getValue()) --474 +-80 1 this.scale(this.getShift()) --54 +-80 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +1494346128 +1 +l[..] +[822087264 30699728 38603201 1422273905 1694784135 1207231495 756936249 1221981006 264394929 1878413714 769132147 1257299717 1474957626 181252244 1733022752 722417467 753631393 1262869688 1914108708 544386226] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -19108 +18704 this -1285962426 +1043358826 1 this.value --79 +-80 1 this.shift 5 @@ -95460,19 +95441,19 @@ this.heavy true 1 this.list1 -895070374 +1558079303 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +1757317128 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95481,7 +95462,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 5 @@ -95490,31 +95471,31 @@ this.isHeavy() true 1 this.getNum() -1173290035 +1889757798 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1290771491 +1166106620 1 this.scale(this.value) --474 +-480 1 this.scale(this.shift) --54 +-55 1 this.scale(this.getValue()) --474 +-480 1 this.scale(this.getShift()) --54 +-55 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 5 @@ -95522,21 +95503,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -116647243 +l +1494346128 1 -return.getClass().getName() -"java.lang.Integer" +l[..] +[822087264 30699728 38603201 1422273905 1694784135 1207231495 756936249 1221981006 264394929 1878413714 769132147 1257299717 1474957626 181252244 1733022752 722417467 753631393 1262869688 1914108708 544386226] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -19143 +18704 this -1285962426 +1043358826 1 this.value --79 +-80 1 this.shift 5 @@ -95545,19 +95532,19 @@ this.heavy true 1 this.list1 -895070374 +1558079303 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1671590089 58488213 1053967012 295304806 1632497828 33419717 764826684 1940055334 2103763750 335107734 215078753] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +1757317128 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[840514538 1804441305 1768242710 1971783162 247113419 151442075 1238616099 70695990 1608633989 1615617512 923341586] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95566,7 +95553,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 5 @@ -95575,31 +95562,31 @@ this.isHeavy() true 1 this.getNum() -1985127037 +1932470703 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -724171067 +221861886 1 this.scale(this.value) --474 +-480 1 this.scale(this.shift) --54 +-55 1 this.scale(this.getValue()) --474 +-480 1 this.scale(this.getShift()) --54 +-55 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 5 @@ -95607,36 +95594,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +1494346128 +1 +l[..] +[822087264 30699728 38603201 1422273905 1694784135 1207231495 756936249 1221981006 264394929 1878413714 769132147 1257299717 1474957626 181252244 1733022752 722417467 753631393 1262869688 1914108708 544386226] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +5 +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -19143 +18739 this -1285962426 +1426725223 1 this.value --79 +-80 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -895070374 +711197015 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +484199463 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95645,59 +95647,68 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1353295520 +1713568869 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -838499263 +697508322 1 this.scale(this.value) --474 +-880 1 this.scale(this.shift) --54 +20 1 this.scale(this.getValue()) --474 +-880 1 this.scale(this.getShift()) --54 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -869421627 +l +1494346128 +1 +l[..] +[822087264 30699728 38603201 1422273905 1694784135 1207231495 756936249 1221981006 264394929 1878413714 769132147 1257299717 1474957626 181252244 1733022752 722417467 753631393 1262869688 1914108708 544386226] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.getValue():::ENTER +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -19178 +18739 this -54580256 +1426725223 1 this.value --79 +-80 1 this.shift 10 @@ -95706,19 +95717,19 @@ this.heavy true 1 this.list1 -354845323 +711197015 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1384454980 1481594086 1569435561 1466917878 768216420 260084831 267814113 598357562 1593224710 1440738283 1849015357] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +484199463 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[2008106788 1570470538 512549200 1615801298 490391704 460570271 1653361344 2072313080 816944408 909132503 912966811] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95727,7 +95738,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --79 +-80 1 this.getShift() 10 @@ -95736,31 +95747,31 @@ this.isHeavy() true 1 this.getNum() -890550801 +603658030 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1673776464 +1689924104 1 this.scale(this.value) --869 +-880 1 this.scale(this.shift) -21 +20 1 this.scale(this.getValue()) --869 +-880 1 this.scale(this.getShift()) -21 +20 1 this.sum(this.getNum()) --158 +-160 1 this.sum(this.getJWrap()) --158 +-160 1 this.retrieve(this.list1) 10 @@ -95768,36 +95779,61 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 +l +1494346128 +1 +l[..] +[822087264 30699728 38603201 1422273905 1694784135 1207231495 756936249 1221981006 264394929 1878413714 769132147 1257299717 1474957626 181252244 1733022752 722417467 753631393 1262869688 1914108708 544386226] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 +return +10 +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -19178 +18774 +value +-79 +1 +shift +0 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +18774 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95809,31 +95845,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1272738395 +1233595751 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1977080645 +1446001495 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -95842,44 +95878,57 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -return +value -79 1 +shift +0 +1 -misc.Purity.getShift():::ENTER +misc.Purity.Purity(int, int):::ENTER this_invocation_nonce -19213 +18792 +value +-79 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::EXIT24 +this_invocation_nonce +18792 this -54580256 +1261044180 1 this.value -79 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -354845323 +141110631 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +1711185459 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95891,31 +95940,31 @@ this.getValue() -79 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -779930484 +589363823 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -51463300 +2052457859 1 this.scale(this.value) --869 +-474 1 this.scale(this.shift) -21 +-54 1 this.scale(this.getValue()) --869 +-474 1 this.scale(this.getShift()) -21 +-54 1 this.sum(this.getNum()) -158 @@ -95924,17 +95973,33 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) +5 +1 +value +-79 +1 +shift +5 +1 + +misc.Purity.Purity(int, int):::ENTER +this_invocation_nonce +18810 +value +-79 +1 +shift 10 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.Purity(int, int):::EXIT24 this_invocation_nonce -19213 +18810 this -54580256 +1299327689 1 this.value -79 @@ -95946,19 +96011,19 @@ this.heavy true 1 this.list1 -354845323 +1408279755 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +768776793 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -95976,13 +96041,13 @@ this.isHeavy() true 1 this.getNum() -1655257006 +50503805 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1401336604 +1557989809 1 this.scale(this.value) -869 @@ -96008,39 +96073,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -return +value +-79 +1 +shift 10 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -19248 +18828 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96052,31 +96120,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -811146779 +146874094 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -717723497 +2123222442 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -96085,41 +96153,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -19248 +18828 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96131,31 +96199,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -363168880 +1746570062 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -630841386 +1555990397 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -96164,44 +96232,44 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -true +-79 1 -misc.Purity.getNum():::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -19283 +18863 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96213,31 +96281,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -424409263 +1544078442 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1253291554 +1291367132 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -96246,41 +96314,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -19283 +18863 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96292,31 +96360,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1551538302 +1887699190 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1957799840 +1479140596 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -96325,47 +96393,44 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -997471546 -1 -return.getClass().getName() -"java.lang.Integer" +0 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -19318 +18898 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96377,31 +96442,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1246925140 +1108889615 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1925400554 +1275028674 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -96410,41 +96475,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -19318 +18898 this -54580256 +361380654 1 this.value -79 1 this.shift -10 +0 1 this.heavy -true +false 1 this.list1 -354845323 +631673932 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +426019904 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96456,31 +96521,31 @@ this.getValue() -79 1 this.getShift() -10 +0 1 this.isHeavy() -true +false 1 this.getNum() -1923518082 +455888635 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -349582236 +204805934 1 this.scale(this.value) --869 +-79 1 this.scale(this.shift) -21 +-79 1 this.scale(this.getValue()) --869 +-79 1 this.scale(this.getShift()) -21 +-79 1 this.sum(this.getNum()) -158 @@ -96489,20 +96554,20 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +0 1 this.retrieve(this.list2) -10 +0 1 return -2060865907 +false 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -19353 +18933 this -1859825181 +361380654 1 this.value -79 @@ -96514,19 +96579,19 @@ this.heavy false 1 this.list1 -1457334982 +631673932 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +426019904 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96544,13 +96609,13 @@ this.isHeavy() false 1 this.getNum() -209556486 +204322447 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -142679122 +1019484860 1 this.scale(this.value) -79 @@ -96576,15 +96641,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --79 -1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -19353 +18933 this -1859825181 +361380654 1 this.value -79 @@ -96596,19 +96658,19 @@ this.heavy false 1 this.list1 -1457334982 +631673932 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +426019904 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96626,13 +96688,13 @@ this.isHeavy() false 1 this.getNum() -1416253402 +1164365897 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -262184066 +1640899500 1 this.scale(this.value) -79 @@ -96658,42 +96720,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 -scale --79 -1 return --79 +3565780 +1 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -19388 +18968 this -1285962426 +361380654 1 this.value -79 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -895070374 +631673932 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +426019904 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96705,31 +96767,31 @@ this.getValue() -79 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -2038637265 +473666452 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -274924970 +1865219266 1 this.scale(this.value) --474 +-79 1 this.scale(this.shift) --54 +-79 1 this.scale(this.getValue()) --474 +-79 1 this.scale(this.getShift()) --54 +-79 1 this.sum(this.getNum()) -158 @@ -96738,44 +96800,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --79 +0 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -19388 +18968 this -1285962426 +361380654 1 this.value -79 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -895070374 +631673932 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +426019904 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96787,31 +96846,31 @@ this.getValue() -79 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1426646093 +2138005960 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -985966296 +1278002745 1 this.scale(this.value) --474 +-79 1 this.scale(this.shift) --54 +-79 1 this.scale(this.getValue()) --474 +-79 1 this.scale(this.getShift()) --54 +-79 1 this.sum(this.getNum()) -158 @@ -96820,47 +96879,44 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 -1 -scale --79 +0 1 return --474 +214649627 1 -misc.Purity.scale(int):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -19423 +19003 this -54580256 +1261044180 1 this.value -79 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -354845323 +141110631 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +1711185459 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96872,31 +96928,31 @@ this.getValue() -79 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1151716620 +67730604 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1631121929 +15477956 1 this.scale(this.value) --869 +-474 1 this.scale(this.shift) -21 +-54 1 this.scale(this.getValue()) --869 +-474 1 this.scale(this.getShift()) -21 +-54 1 this.sum(this.getNum()) -158 @@ -96905,44 +96961,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --79 +5 1 -misc.Purity.scale(int):::EXIT47 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -19423 +19003 this -54580256 +1261044180 1 this.value -79 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -354845323 +141110631 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +1711185459 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -96954,31 +97007,31 @@ this.getValue() -79 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -1637506748 +710623214 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1572977331 +2082351661 1 this.scale(this.value) --869 +-474 1 this.scale(this.shift) -21 +-54 1 this.scale(this.getValue()) --869 +-474 1 this.scale(this.getShift()) -21 +-54 1 this.sum(this.getNum()) -158 @@ -96987,47 +97040,44 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -scale --79 +5 1 return --869 +-79 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -19458 +19038 this -1859825181 +1261044180 1 this.value -79 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1457334982 +141110631 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +1711185459 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97039,31 +97089,31 @@ this.getValue() -79 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1506307547 +859690270 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1973711593 +1389774257 1 this.scale(this.value) --79 +-474 1 this.scale(this.shift) --79 +-54 1 this.scale(this.getValue()) --79 +-474 1 this.scale(this.getShift()) --79 +-54 1 this.sum(this.getNum()) -158 @@ -97072,47 +97122,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -2138331989 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -19458 +19038 this -1859825181 +1261044180 1 this.value -79 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1457334982 +141110631 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +1711185459 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97124,31 +97168,31 @@ this.getValue() -79 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -806906578 +553759818 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -319625641 +751021317 1 this.scale(this.value) --79 +-474 1 this.scale(this.shift) --79 +-54 1 this.scale(this.getValue()) --79 +-474 1 this.scale(this.getShift()) --79 +-54 1 this.sum(this.getNum()) -158 @@ -97157,26 +97201,20 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -n -2138331989 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 return --158 +5 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.isHeavy():::ENTER this_invocation_nonce -19493 +19073 this -1285962426 +1261044180 1 this.value -79 @@ -97188,19 +97226,19 @@ this.heavy true 1 this.list1 -895070374 +141110631 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +1711185459 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97218,13 +97256,13 @@ this.isHeavy() true 1 this.getNum() -1091547140 +1896552614 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1827469306 +294658299 1 this.scale(this.value) -474 @@ -97250,18 +97288,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -965506548 -1 -n.getClass().getName() -"java.lang.Integer" -1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -19493 +19073 this -1285962426 +1261044180 1 this.value -79 @@ -97273,19 +97305,19 @@ this.heavy true 1 this.list1 -895070374 +141110631 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +1711185459 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97303,13 +97335,13 @@ this.isHeavy() true 1 this.getNum() -882115504 +1033856359 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1635660487 +201677908 1 this.scale(this.value) -474 @@ -97335,45 +97367,39 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -n -965506548 -1 -n.getClass().getName() -"java.lang.Integer" -1 return --158 +true 1 -misc.Purity.sum(java.lang.Number):::ENTER +misc.Purity.getNum():::ENTER this_invocation_nonce -19528 +19108 this -54580256 +1261044180 1 this.value -79 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -354845323 +141110631 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +1711185459 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97385,31 +97411,31 @@ this.getValue() -79 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -607639762 +635611994 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1316738449 +904253669 1 this.scale(this.value) --869 +-474 1 this.scale(this.shift) -21 +-54 1 this.scale(this.getValue()) --869 +-474 1 this.scale(this.getShift()) -21 +-54 1 this.sum(this.getNum()) -158 @@ -97418,47 +97444,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 -1 -n -604130008 -1 -n.getClass().getName() -"java.lang.Integer" +5 1 -misc.Purity.sum(java.lang.Number):::EXIT51 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -19528 +19108 this -54580256 +1261044180 1 this.value -79 1 this.shift -10 +5 1 this.heavy true 1 this.list1 -354845323 +141110631 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +1711185459 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97470,31 +97490,31 @@ this.getValue() -79 1 this.getShift() -10 +5 1 this.isHeavy() true 1 this.getNum() -310361440 +1930903395 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -6943517 +1431710377 1 this.scale(this.value) --869 +-474 1 this.scale(this.shift) -21 +-54 1 this.scale(this.getValue()) --869 +-474 1 this.scale(this.getShift()) -21 +-54 1 this.sum(this.getNum()) -158 @@ -97503,50 +97523,47 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -10 +5 1 this.retrieve(this.list2) -10 +5 1 -n -604130008 +return +1700721442 1 -n.getClass().getName() +return.getClass().getName() "java.lang.Integer" 1 -return --158 -1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -19563 +19143 this -1859825181 +1261044180 1 this.value -79 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1457334982 +141110631 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +1711185459 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97558,31 +97575,31 @@ this.getValue() -79 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -735573281 +2116511124 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1864261635 +872522004 1 this.scale(this.value) --79 +-474 1 this.scale(this.shift) --79 +-54 1 this.scale(this.getValue()) --79 +-474 1 this.scale(this.getShift()) --79 +-54 1 this.sum(this.getNum()) -158 @@ -97591,53 +97608,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -858889715 -1 -l[..] -[2121848518 794599944 1787941762 198521463 1508124850 304868409 27368321 417870589 879463633 15337530 79829070 1657383762 638502697 339044420 1045451449 191303589 456400764 2063537111 7325527 713564410] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -19563 +19143 this -1859825181 +1261044180 1 this.value -79 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -1457334982 +141110631 1 this.list1[..] -[1378048439 248981378 1331875690 1612669149 739278456 1860112097 1984564900 2013752743 800074881 1463411100 420148609] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -511440127 +1711185459 1 this.list2[..] -[1544659195 157281782 2030024264 1545105159 1210147789 136268986 1055280000 23519427 154018541 871823952 464237783] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97649,31 +97654,31 @@ this.getValue() -79 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1328354022 +1348916831 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -406053542 +1110698130 1 this.scale(this.value) --79 +-474 1 this.scale(this.shift) --79 +-54 1 this.scale(this.getValue()) --79 +-474 1 this.scale(this.getShift()) --79 +-54 1 this.sum(this.getNum()) -158 @@ -97682,56 +97687,44 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 -1 -l -858889715 -1 -l[..] -[2121848518 794599944 1787941762 198521463 1508124850 304868409 27368321 417870589 879463633 15337530 79829070 1657383762 638502697 339044420 1045451449 191303589 456400764 2063537111 7325527 713564410] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +5 1 return -0 +125644421 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getValue():::ENTER this_invocation_nonce -19598 +19178 this -1285962426 +1299327689 1 this.value -79 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -895070374 +1408279755 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +768776793 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97743,31 +97736,31 @@ this.getValue() -79 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -1986333875 +1053632127 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1680144510 +1493158871 1 this.scale(this.value) --474 +-869 1 this.scale(this.shift) --54 +21 1 this.scale(this.getValue()) --474 +-869 1 this.scale(this.getShift()) --54 +21 1 this.sum(this.getNum()) -158 @@ -97776,53 +97769,41 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -858889715 -1 -l[..] -[2121848518 794599944 1787941762 198521463 1508124850 304868409 27368321 417870589 879463633 15337530 79829070 1657383762 638502697 339044420 1045451449 191303589 456400764 2063537111 7325527 713564410] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getValue():::EXIT27 this_invocation_nonce -19598 +19178 this -1285962426 +1299327689 1 this.value -79 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -895070374 +1408279755 1 this.list1[..] -[324828583 490563807 716183416 248831277 956611830 1712445368 493462882 48813060 62346266 2029156573 1994208051] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -877434428 +768776793 1 this.list2[..] -[270227447 1932271971 1447306663 335815472 463613588 882902200 1972758277 1148335506 639313753 1085560730 2145607845] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97834,31 +97815,31 @@ this.getValue() -79 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -926305167 +89509666 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1301984666 +1806880779 1 this.scale(this.value) --474 +-869 1 this.scale(this.shift) --54 +21 1 this.scale(this.getValue()) --474 +-869 1 this.scale(this.getShift()) --54 +21 1 this.sum(this.getNum()) -158 @@ -97867,32 +97848,20 @@ this.sum(this.getJWrap()) -158 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -l -858889715 -1 -l[..] -[2121848518 794599944 1787941762 198521463 1508124850 304868409 27368321 417870589 879463633 15337530 79829070 1657383762 638502697 339044420 1045451449 191303589 456400764 2063537111 7325527 713564410] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" +10 1 return -5 +-79 1 -misc.Purity.retrieve(java.util.List):::ENTER +misc.Purity.getShift():::ENTER this_invocation_nonce -19633 +19213 this -54580256 +1299327689 1 this.value -79 @@ -97904,19 +97873,19 @@ this.heavy true 1 this.list1 -354845323 +1408279755 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +768776793 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -97934,13 +97903,13 @@ this.isHeavy() true 1 this.getNum() -1745402179 +1016856028 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -347804433 +446445803 1 this.scale(this.value) -869 @@ -97966,24 +97935,12 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -858889715 -1 -l[..] -[2121848518 794599944 1787941762 198521463 1508124850 304868409 27368321 417870589 879463633 15337530 79829070 1657383762 638502697 339044420 1045451449 191303589 456400764 2063537111 7325527 713564410] -1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -l.getClass().getName() -"java.util.ArrayList" -1 -misc.Purity.retrieve(java.util.List):::EXIT55 +misc.Purity.getShift():::EXIT31 this_invocation_nonce -19633 +19213 this -54580256 +1299327689 1 this.value -79 @@ -97995,19 +97952,19 @@ this.heavy true 1 this.list1 -354845323 +1408279755 1 this.list1[..] -[323255942 1976473931 1320306521 443173996 952062976 421783835 77396098 1568612651 1163574785 1215321913 1198425174] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -682774205 +768776793 1 this.list2[..] -[1380937514 1561024669 333896484 423436977 2091949928 800171212 934962570 778068891 975924454 2029686239 158886278] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98025,13 +97982,13 @@ this.isHeavy() true 1 this.getNum() -98618297 +832292933 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1767825842 +1280603381 1 this.scale(this.value) -869 @@ -98057,61 +98014,118 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -l -858889715 +return +10 1 -l[..] -[2121848518 794599944 1787941762 198521463 1508124850 304868409 27368321 417870589 879463633 15337530 79829070 1657383762 638502697 339044420 1045451449 191303589 456400764 2063537111 7325527 713564410] + +misc.Purity.isHeavy():::ENTER +this_invocation_nonce +19248 +this +1299327689 1 -l[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +this.value +-79 1 -l.getClass().getName() +this.shift +10 +1 +this.heavy +true +1 +this.list1 +1408279755 +1 +this.list1[..] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] +1 +this.list1[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2 +768776793 +1 +this.list2[..] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] +1 +this.list2[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +this.list2.getClass().getName() "java.util.ArrayList" 1 -return +this.getValue() +-79 +1 +this.getShift() 10 1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -19668 -value --78 +this.isHeavy() +true 1 -shift -0 +this.getNum() +792855998 +1 +this.getNum().getClass().getName() +"java.lang.Integer" +1 +this.getJWrap() +1424108509 +1 +this.scale(this.value) +-869 +1 +this.scale(this.shift) +21 +1 +this.scale(this.getValue()) +-869 +1 +this.scale(this.getShift()) +21 +1 +this.sum(this.getNum()) +-158 +1 +this.sum(this.getJWrap()) +-158 +1 +this.retrieve(this.list1) +10 +1 +this.retrieve(this.list2) +10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.isHeavy():::EXIT35 this_invocation_nonce -19668 +19248 this -1412670249 +1299327689 1 this.value --78 +-79 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -169673711 +1408279755 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +768776793 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98120,93 +98134,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1954857663 +1003755748 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -940426588 +1414013111 1 this.scale(this.value) --78 +-869 1 this.scale(this.shift) --78 +21 1 this.scale(this.getValue()) --78 +-869 1 this.scale(this.getShift()) --78 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 -1 -value --78 -1 -shift -0 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -19686 -value --78 +10 1 -shift -5 +return +true 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::ENTER this_invocation_nonce -19686 +19283 this -270022596 +1299327689 1 this.value --78 +-79 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -636824861 +1408279755 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +768776793 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98215,72 +98216,56 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -911333300 +1805164661 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -925402696 +778162712 1 this.scale(this.value) --468 +-869 1 this.scale(this.shift) --53 +21 1 this.scale(this.getValue()) --468 +-869 1 this.scale(this.getShift()) --53 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 -1 -value --78 -1 -shift -5 -1 - -misc.Purity.Purity(int, int):::ENTER -this_invocation_nonce -19704 -value --78 -1 -shift 10 1 -misc.Purity.Purity(int, int):::EXIT24 +misc.Purity.getNum():::EXIT39 this_invocation_nonce -19704 +19283 this -1166540098 +1299327689 1 this.value --78 +-79 1 this.shift 10 @@ -98289,19 +98274,19 @@ this.heavy true 1 this.list1 -1661213623 +1408279755 1 this.list1[..] -[582467114 1294321972 1807522941 734398925 1454213166 449294455 739402333 1794629189 924957408 125035623 1234708995] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -619598004 +768776793 1 this.list2[..] -[435448925 2113297146 953095089 588637850 1926666868 1731621010 655930926 1197513231 388133733 1455814592 1594657473] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98310,7 +98295,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 10 @@ -98319,31 +98304,31 @@ this.isHeavy() true 1 this.getNum() -812234151 +896138248 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1813315525 +548482954 1 this.scale(this.value) --858 +-869 1 this.scale(this.shift) -22 +21 1 this.scale(this.getValue()) --858 +-869 1 this.scale(this.getShift()) -22 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 10 @@ -98351,42 +98336,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 10 1 -value --78 +return +243575009 1 -shift -10 +return.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getValue():::ENTER +misc.Purity.getJWrap():::ENTER this_invocation_nonce -19722 +19318 this -1412670249 +1299327689 1 this.value --78 +-79 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -169673711 +1408279755 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +768776793 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98395,77 +98380,77 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1453594098 +777341499 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -782036814 +1420196421 1 this.scale(this.value) --78 +-869 1 this.scale(this.shift) --78 +21 1 this.scale(this.getValue()) --78 +-869 1 this.scale(this.getShift()) --78 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -misc.Purity.getValue():::EXIT27 +misc.Purity.getJWrap():::EXIT43 this_invocation_nonce -19722 +19318 this -1412670249 +1299327689 1 this.value --78 +-79 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -169673711 +1408279755 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +768776793 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98474,59 +98459,59 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1092813258 +2101527076 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1632278062 +1454026445 1 this.scale(this.value) --78 +-869 1 this.scale(this.shift) --78 +21 1 this.scale(this.getValue()) --78 +-869 1 this.scale(this.getShift()) --78 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 return --78 +1378497201 1 -misc.Purity.getShift():::ENTER +misc.Purity.scale(int):::ENTER this_invocation_nonce -19757 +19353 this -1412670249 +361380654 1 this.value --78 +-79 1 this.shift 0 @@ -98535,19 +98520,19 @@ this.heavy false 1 this.list1 -169673711 +631673932 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +426019904 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98556,7 +98541,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 0 @@ -98565,31 +98550,31 @@ this.isHeavy() false 1 this.getNum() -1741281256 +892931811 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1954411923 +1577167234 1 this.scale(this.value) --78 +-79 1 this.scale(this.shift) --78 +-79 1 this.scale(this.getValue()) --78 +-79 1 this.scale(this.getShift()) --78 +-79 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 0 @@ -98597,15 +98582,18 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-79 +1 -misc.Purity.getShift():::EXIT31 +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -19757 +19353 this -1412670249 +361380654 1 this.value --78 +-79 1 this.shift 0 @@ -98614,19 +98602,19 @@ this.heavy false 1 this.list1 -169673711 +631673932 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +426019904 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98635,7 +98623,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 0 @@ -98644,31 +98632,31 @@ this.isHeavy() false 1 this.getNum() -2038808996 +1574873161 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1013724240 +1591916281 1 this.scale(this.value) --78 +-79 1 this.scale(this.shift) --78 +-79 1 this.scale(this.getValue()) --78 +-79 1 this.scale(this.getShift()) --78 +-79 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 0 @@ -98676,39 +98664,42 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +scale +-79 +1 return -0 +-79 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.scale(int):::ENTER this_invocation_nonce -19792 +19388 this -1412670249 +1261044180 1 this.value --78 +-79 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -169673711 +141110631 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +1711185459 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98717,77 +98708,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -1675530029 +600958416 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -680134292 +1884231057 1 this.scale(this.value) --78 +-474 1 this.scale(this.shift) --78 +-54 1 this.scale(this.getValue()) --78 +-474 1 this.scale(this.getShift()) --78 +-54 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-79 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -19792 +19388 this -1412670249 +1261044180 1 this.value --78 +-79 1 this.shift -0 +5 1 this.heavy -false +true 1 this.list1 -169673711 +141110631 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +1711185459 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98796,80 +98790,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +5 1 this.isHeavy() -false +true 1 this.getNum() -2109076310 +1492875057 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -880464788 +333793193 1 this.scale(this.value) --78 +-474 1 this.scale(this.shift) --78 +-54 1 this.scale(this.getValue()) --78 +-474 1 this.scale(this.getShift()) --78 +-54 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +5 1 this.retrieve(this.list2) -0 +5 +1 +scale +-79 1 return -false +-474 1 -misc.Purity.getNum():::ENTER +misc.Purity.scale(int):::ENTER this_invocation_nonce -19827 +19423 this -1412670249 +1299327689 1 this.value --78 +-79 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -169673711 +1408279755 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +768776793 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98878,77 +98875,80 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1809364086 +1068945248 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1613751882 +937277082 1 this.scale(this.value) --78 +-869 1 this.scale(this.shift) --78 +21 1 this.scale(this.getValue()) --78 +-869 1 this.scale(this.getShift()) --78 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 +1 +scale +-79 1 -misc.Purity.getNum():::EXIT39 +misc.Purity.scale(int):::EXIT47 this_invocation_nonce -19827 +19423 this -1412670249 +1299327689 1 this.value --78 +-79 1 this.shift -0 +10 1 this.heavy -false +true 1 this.list1 -169673711 +1408279755 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +768776793 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -98957,62 +98957,62 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -0 +10 1 this.isHeavy() -false +true 1 this.getNum() -1756902811 +882646447 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -365398227 +234740890 1 this.scale(this.value) --78 +-869 1 this.scale(this.shift) --78 +21 1 this.scale(this.getValue()) --78 +-869 1 this.scale(this.getShift()) --78 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -0 +10 1 this.retrieve(this.list2) -0 +10 1 -return -1592254416 +scale +-79 1 -return.getClass().getName() -"java.lang.Integer" +return +-869 1 -misc.Purity.getJWrap():::ENTER +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -19862 +19458 this -1412670249 +361380654 1 this.value --78 +-79 1 this.shift 0 @@ -99021,19 +99021,19 @@ this.heavy false 1 this.list1 -169673711 +631673932 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +426019904 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99042,7 +99042,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 0 @@ -99051,31 +99051,31 @@ this.isHeavy() false 1 this.getNum() -1226244445 +79290250 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -89826856 +1586151649 1 this.scale(this.value) --78 +-79 1 this.scale(this.shift) --78 +-79 1 this.scale(this.getValue()) --78 +-79 1 this.scale(this.getShift()) --78 +-79 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 0 @@ -99083,15 +99083,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +n +179294202 +1 +n.getClass().getName() +"java.lang.Integer" +1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -19862 +19458 this -1412670249 +361380654 1 this.value --78 +-79 1 this.shift 0 @@ -99100,19 +99106,19 @@ this.heavy false 1 this.list1 -169673711 +631673932 1 this.list1[..] -[1995261208 1397974951 146419630 2005945595 581840912 1507163193 1322168386 1670767993 101490179 643422735 1425744500] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -865278274 +426019904 1 this.list2[..] -[2120177281 623407096 30348759 1117968174 1356672815 1766121506 685182508 1055096742 1238469515 1545631881 1472829855] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99121,7 +99127,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 0 @@ -99130,31 +99136,31 @@ this.isHeavy() false 1 this.getNum() -38964951 +1767230265 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2048902769 +593103894 1 this.scale(this.value) --78 +-79 1 this.scale(this.shift) --78 +-79 1 this.scale(this.getValue()) --78 +-79 1 this.scale(this.getShift()) --78 +-79 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 0 @@ -99162,18 +99168,24 @@ this.retrieve(this.list1) this.retrieve(this.list2) 0 1 +n +179294202 +1 +n.getClass().getName() +"java.lang.Integer" +1 return -1008558938 +-158 1 -misc.Purity.getValue():::ENTER +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -19897 +19493 this -270022596 +1261044180 1 this.value --78 +-79 1 this.shift 5 @@ -99182,19 +99194,19 @@ this.heavy true 1 this.list1 -636824861 +141110631 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +1711185459 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99203,7 +99215,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 5 @@ -99212,31 +99224,31 @@ this.isHeavy() true 1 this.getNum() -761645195 +727666004 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1968256245 +1601935322 1 this.scale(this.value) --468 +-474 1 this.scale(this.shift) --53 +-54 1 this.scale(this.getValue()) --468 +-474 1 this.scale(this.getShift()) --53 +-54 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 5 @@ -99244,15 +99256,21 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +414225167 +1 +n.getClass().getName() +"java.lang.Integer" +1 -misc.Purity.getValue():::EXIT27 +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -19897 +19493 this -270022596 +1261044180 1 this.value --78 +-79 1 this.shift 5 @@ -99261,19 +99279,19 @@ this.heavy true 1 this.list1 -636824861 +141110631 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +1711185459 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99282,7 +99300,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 5 @@ -99291,31 +99309,31 @@ this.isHeavy() true 1 this.getNum() -644611327 +1803093683 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -2075057421 +975033189 1 this.scale(this.value) --468 +-474 1 this.scale(this.shift) --53 +-54 1 this.scale(this.getValue()) --468 +-474 1 this.scale(this.getShift()) --53 +-54 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 5 @@ -99323,39 +99341,45 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +n +414225167 +1 +n.getClass().getName() +"java.lang.Integer" +1 return --78 +-158 1 -misc.Purity.getShift():::ENTER +misc.Purity.sum(java.lang.Number):::ENTER this_invocation_nonce -19932 +19528 this -270022596 +1299327689 1 this.value --78 +-79 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -636824861 +1408279755 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +768776793 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99364,77 +99388,83 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -355647467 +962287291 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -919988268 +628064884 1 this.scale(this.value) --468 +-869 1 this.scale(this.shift) --53 +21 1 this.scale(this.getValue()) --468 +-869 1 this.scale(this.getShift()) --53 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +109069556 +1 +n.getClass().getName() +"java.lang.Integer" 1 -misc.Purity.getShift():::EXIT31 +misc.Purity.sum(java.lang.Number):::EXIT51 this_invocation_nonce -19932 +19528 this -270022596 +1299327689 1 this.value --78 +-79 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -636824861 +1408279755 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +768776793 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99443,80 +99473,86 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -360561876 +1389509050 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1912081745 +828326869 1 this.scale(this.value) --468 +-869 1 this.scale(this.shift) --53 +21 1 this.scale(this.getValue()) --468 +-869 1 this.scale(this.getShift()) --53 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 +1 +n +109069556 +1 +n.getClass().getName() +"java.lang.Integer" 1 return -5 +-158 1 -misc.Purity.isHeavy():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -19967 +19563 this -270022596 +361380654 1 this.value --78 +-79 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -636824861 +631673932 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +426019904 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99525,77 +99561,89 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -1412594507 +1761217448 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1044161564 +1817789863 1 this.scale(this.value) --468 +-79 1 this.scale(this.shift) --53 +-79 1 this.scale(this.getValue()) --468 +-79 1 this.scale(this.getShift()) --53 +-79 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +788905599 +1 +l[..] +[1678709153 1544614339 2059592603 2016828666 1688782916 1064154107 1390301622 415565467 973936431 1756207614 1214133948 2015301874 712627377 782228073 399373008 391506011 1936550492 594651850 1532139270 1677568775] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 -misc.Purity.isHeavy():::EXIT35 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -19967 +19563 this -270022596 +361380654 1 this.value --78 +-79 1 this.shift -5 +0 1 this.heavy -true +false 1 this.list1 -636824861 +631673932 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[1579132337 1795225096 790094605 1048712791 487792155 1909398279 1632670136 1338905451 1252540239 1136005694 638486177] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +426019904 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[314411620 1642679791 855700733 247162961 1890266440 1527152775 1863655430 976827477 324112183 2092709730 980364771] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99604,59 +99652,71 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -5 +0 1 this.isHeavy() -true +false 1 this.getNum() -2134526511 +2069500590 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -1272747242 +1431556341 1 this.scale(this.value) --468 +-79 1 this.scale(this.shift) --53 +-79 1 this.scale(this.getValue()) --468 +-79 1 this.scale(this.getShift()) --53 +-79 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -5 +0 1 this.retrieve(this.list2) -5 +0 +1 +l +788905599 +1 +l[..] +[1678709153 1544614339 2059592603 2016828666 1688782916 1064154107 1390301622 415565467 973936431 1756207614 1214133948 2015301874 712627377 782228073 399373008 391506011 1936550492 594651850 1532139270 1677568775] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 return -true +0 1 -misc.Purity.getNum():::ENTER +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -20002 +19598 this -270022596 +1261044180 1 this.value --78 +-79 1 this.shift 5 @@ -99665,19 +99725,19 @@ this.heavy true 1 this.list1 -636824861 +141110631 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +1711185459 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99686,7 +99746,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 5 @@ -99695,31 +99755,31 @@ this.isHeavy() true 1 this.getNum() -2125772174 +452364286 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -167493279 +350069300 1 this.scale(this.value) --468 +-474 1 this.scale(this.shift) --53 +-54 1 this.scale(this.getValue()) --468 +-474 1 this.scale(this.getShift()) --53 +-54 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 5 @@ -99727,15 +99787,27 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 +l +788905599 +1 +l[..] +[1678709153 1544614339 2059592603 2016828666 1688782916 1064154107 1390301622 415565467 973936431 1756207614 1214133948 2015301874 712627377 782228073 399373008 391506011 1936550492 594651850 1532139270 1677568775] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" +1 -misc.Purity.getNum():::EXIT39 +misc.Purity.retrieve(java.util.List):::EXIT55 this_invocation_nonce -20002 +19598 this -270022596 +1261044180 1 this.value --78 +-79 1 this.shift 5 @@ -99744,19 +99816,19 @@ this.heavy true 1 this.list1 -636824861 +141110631 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2029372696 793293778 888611662 1966355106 599782425 1233327519 1155769010 269892014 1280641161 489411441 1141113940] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +1711185459 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[25936709 1123559518 649769713 925150995 1760219993 1800649922 403547747 172215878 873309260 1112456099 923083575] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99765,7 +99837,7 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() 5 @@ -99774,31 +99846,31 @@ this.isHeavy() true 1 this.getNum() -1855962583 +1060703587 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -963159806 +1957078537 1 this.scale(this.value) --468 +-474 1 this.scale(this.shift) --53 +-54 1 this.scale(this.getValue()) --468 +-474 1 this.scale(this.getShift()) --53 +-54 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) 5 @@ -99806,121 +99878,51 @@ this.retrieve(this.list1) this.retrieve(this.list2) 5 1 -return -95128356 -1 -return.getClass().getName() -"java.lang.Integer" -1 - -misc.Purity.getJWrap():::ENTER -this_invocation_nonce -20037 -this -270022596 -1 -this.value --78 -1 -this.shift -5 -1 -this.heavy -true -1 -this.list1 -636824861 -1 -this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] -1 -this.list1[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] -1 -this.list2 -2025720139 +l +788905599 1 -this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +l[..] +[1678709153 1544614339 2059592603 2016828666 1688782916 1064154107 1390301622 415565467 973936431 1756207614 1214133948 2015301874 712627377 782228073 399373008 391506011 1936550492 594651850 1532139270 1677568775] 1 -this.list2[..].getClass().getName() -["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 -this.list2.getClass().getName() +l.getClass().getName() "java.util.ArrayList" 1 -this.getValue() --78 -1 -this.getShift() -5 -1 -this.isHeavy() -true -1 -this.getNum() -1094445924 -1 -this.getNum().getClass().getName() -"java.lang.Integer" -1 -this.getJWrap() -1155208113 -1 -this.scale(this.value) --468 -1 -this.scale(this.shift) --53 -1 -this.scale(this.getValue()) --468 -1 -this.scale(this.getShift()) --53 -1 -this.sum(this.getNum()) --156 -1 -this.sum(this.getJWrap()) --156 -1 -this.retrieve(this.list1) -5 -1 -this.retrieve(this.list2) +return 5 1 -misc.Purity.getJWrap():::EXIT43 +misc.Purity.retrieve(java.util.List):::ENTER this_invocation_nonce -20037 +19633 this -270022596 +1299327689 1 this.value --78 +-79 1 this.shift -5 +10 1 this.heavy true 1 this.list1 -636824861 +1408279755 1 this.list1[..] -[56942179 1396979538 596382515 1094749056 1954980343 854825701 389958277 2056154542 482539870 1149344018 409505761] +[2007486296 1033348658 1634723627 938463537 2121995675 2120063568 1620409359 691691381 264978436 500618423 1458091526] 1 this.list1[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] 1 this.list2 -2025720139 +768776793 1 this.list2[..] -[72636635 1033212949 657264201 2131029686 483667936 781396457 1067751394 1324324626 1403471674 188046270 1545215153] +[2018260103 1393828949 1088417975 2036775591 1620529408 307488715 758572926 1640612861 990679445 913065088 746280996] 1 this.list2[..].getClass().getName() ["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] @@ -99929,48 +99931,57 @@ this.list2.getClass().getName() "java.util.ArrayList" 1 this.getValue() --78 +-79 1 this.getShift() -5 +10 1 this.isHeavy() true 1 this.getNum() -183102664 +1514214932 1 this.getNum().getClass().getName() "java.lang.Integer" 1 this.getJWrap() -62407697 +594858858 1 this.scale(this.value) --468 +-869 1 this.scale(this.shift) --53 +21 1 this.scale(this.getValue()) --468 +-869 1 this.scale(this.getShift()) --53 +21 1 this.sum(this.getNum()) --156 +-158 1 this.sum(this.getJWrap()) --156 +-158 1 this.retrieve(this.list1) -5 +10 1 this.retrieve(this.list2) -5 +10 1 -return -914143743 +l +788905599 +1 +l[..] +[1678709153 1544614339 2059592603 2016828666 1688782916 1064154107 1390301622 415565467 973936431 1756207614 1214133948 2015301874 712627377 782228073 399373008 391506011 1936550492 594651850 1532139270 1677568775] +1 +l[..].getClass().getName() +["java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer" "java.lang.Integer"] +1 +l.getClass().getName() +"java.util.ArrayList" 1 diff --git a/tests/daikon-tests/purity/purity.txt-jml.goal b/tests/daikon-tests/purity/purity.txt-jml.goal index db7488b9fa..9ce7fb9683 100644 --- a/tests/daikon-tests/purity/purity.txt-jml.goal +++ b/tests/daikon-tests/purity/purity.txt-jml.goal @@ -3,10 +3,10 @@ misc.Purity:::OBJECT Variables: this this.value this.shift this.heavy this.list1 this.list1[] this.list1[].getClass().getName() this.list2 this.list2[] this.list2[].getClass().getName() this.list2.getClass().getName() this.getValue() this.getShift() this.isHeavy() this.getNum() this.getNum().getClass().getName() this.getJWrap() this.scale(this.value) this.scale(this.shift) this.scale(this.getValue()) this.scale(this.getShift()) this.sum(this.getNum()) this.sum(this.getJWrap()) this.retrieve(this.list1) this.retrieve(this.list2) size(this.list1[]) size(this.list1[])-1 size(this.list2[]) size(this.list2[])-1 this.list1[this.value] this.list1[this.value-1] this.list1[this.value..] this.list1[this.value+1..] this.list1[0..this.value] this.list1[0..this.value-1] this.list2[this.value] this.list2[this.value-1] this.list2[this.value..] this.list2[this.value+1..] this.list2[0..this.value] this.list2[0..this.value-1] this.list1[this.shift] this.list1[this.shift-1] this.list1[this.shift..] this.list1[this.shift+1..] this.list1[0..this.shift] this.list1[0..this.shift-1] this.list2[this.shift] this.list2[this.shift-1] this.list2[this.shift..] this.list2[this.shift+1..] this.list2[0..this.shift] this.list2[0..this.shift-1] this.list1[this.getValue()] this.list1[this.getValue()-1] this.list1[this.getValue()..] this.list1[this.getValue()+1..] this.list1[0..this.getValue()] this.list1[0..this.getValue()-1] this.list1[this.getShift()] this.list1[this.getShift()-1] this.list1[this.getShift()..] this.list1[this.getShift()+1..] this.list1[0..this.getShift()] this.list1[0..this.getShift()-1] this.list1[this.scale(this.value)] this.list1[this.scale(this.value)-1] this.list1[this.scale(this.value)..] this.list1[this.scale(this.value)+1..] this.list1[0..this.scale(this.value)] this.list1[0..this.scale(this.value)-1] this.list1[this.scale(this.shift)] this.list1[this.scale(this.shift)-1] this.list1[this.scale(this.shift)..] this.list1[this.scale(this.shift)+1..] this.list1[0..this.scale(this.shift)] this.list1[0..this.scale(this.shift)-1] this.list1[this.scale(this.getValue())] this.list1[this.scale(this.getValue())-1] this.list1[this.scale(this.getValue())..] this.list1[this.scale(this.getValue())+1..] this.list1[0..this.scale(this.getValue())] this.list1[0..this.scale(this.getValue())-1] this.list1[this.scale(this.getShift())] this.list1[this.scale(this.getShift())-1] this.list1[this.scale(this.getShift())..] this.list1[this.scale(this.getShift())+1..] this.list1[0..this.scale(this.getShift())] this.list1[0..this.scale(this.getShift())-1] this.list1[this.sum(this.getNum())] this.list1[this.sum(this.getNum())-1] this.list1[this.sum(this.getNum())..] this.list1[this.sum(this.getNum())+1..] this.list1[0..this.sum(this.getNum())] this.list1[0..this.sum(this.getNum())-1] this.list1[this.sum(this.getJWrap())] this.list1[this.sum(this.getJWrap())-1] this.list1[this.sum(this.getJWrap())..] this.list1[this.sum(this.getJWrap())+1..] this.list1[0..this.sum(this.getJWrap())] this.list1[0..this.sum(this.getJWrap())-1] this.list1[this.retrieve(this.list1)] this.list1[this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list1)..] this.list1[this.retrieve(this.list1)+1..] this.list1[0..this.retrieve(this.list1)] this.list1[0..this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list2)] this.list1[this.retrieve(this.list2)-1] this.list1[this.retrieve(this.list2)..] this.list1[this.retrieve(this.list2)+1..] this.list1[0..this.retrieve(this.list2)] this.list1[0..this.retrieve(this.list2)-1] this.list2[this.getValue()] this.list2[this.getValue()-1] this.list2[this.getValue()..] this.list2[this.getValue()+1..] this.list2[0..this.getValue()] this.list2[0..this.getValue()-1] this.list2[this.getShift()] this.list2[this.getShift()-1] this.list2[this.getShift()..] this.list2[this.getShift()+1..] this.list2[0..this.getShift()] this.list2[0..this.getShift()-1] this.list2[this.scale(this.value)] this.list2[this.scale(this.value)-1] this.list2[this.scale(this.value)..] this.list2[this.scale(this.value)+1..] this.list2[0..this.scale(this.value)] this.list2[0..this.scale(this.value)-1] this.list2[this.scale(this.shift)] this.list2[this.scale(this.shift)-1] this.list2[this.scale(this.shift)..] this.list2[this.scale(this.shift)+1..] this.list2[0..this.scale(this.shift)] this.list2[0..this.scale(this.shift)-1] this.list2[this.scale(this.getValue())] this.list2[this.scale(this.getValue())-1] this.list2[this.scale(this.getValue())..] this.list2[this.scale(this.getValue())+1..] this.list2[0..this.scale(this.getValue())] this.list2[0..this.scale(this.getValue())-1] this.list2[this.scale(this.getShift())] this.list2[this.scale(this.getShift())-1] this.list2[this.scale(this.getShift())..] this.list2[this.scale(this.getShift())+1..] this.list2[0..this.scale(this.getShift())] this.list2[0..this.scale(this.getShift())-1] this.list2[this.sum(this.getNum())] this.list2[this.sum(this.getNum())-1] this.list2[this.sum(this.getNum())..] this.list2[this.sum(this.getNum())+1..] this.list2[0..this.sum(this.getNum())] this.list2[0..this.sum(this.getNum())-1] this.list2[this.sum(this.getJWrap())] this.list2[this.sum(this.getJWrap())-1] this.list2[this.sum(this.getJWrap())..] this.list2[this.sum(this.getJWrap())+1..] this.list2[0..this.sum(this.getJWrap())] this.list2[0..this.sum(this.getJWrap())-1] this.list2[this.retrieve(this.list1)] this.list2[this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list1)..] this.list2[this.retrieve(this.list1)+1..] this.list2[0..this.retrieve(this.list1)] this.list2[0..this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list2)] this.list2[this.retrieve(this.list2)-1] this.list2[this.retrieve(this.list2)..] this.list2[this.retrieve(this.list2)+1..] this.list2[0..this.retrieve(this.list2)] this.list2[0..this.retrieve(this.list2)-1] this.value == this.getValue() this.shift == this.getShift() -this.shift == this.retrieve() -this.shift == this.retrieve() +this.shift == this.retrieve(this.list1) +this.shift == this.retrieve(this.list2) this.heavy == this.isHeavy() -this.sum() == this.sum() +this.sum(this.getNum()) == this.sum(this.getJWrap()) daikon.Quant.size(this.list1) == daikon.Quant.size(this.list2) this.shift == 0 || this.shift == 5 || this.shift == 10 this.list1 != null @@ -21,20 +21,20 @@ this.list2.getClass().getName() == java.util.ArrayList.class.getName() this.getNum() != null this.getNum().getClass().getName() == java.lang.Integer.class.getName() this.getJWrap() != null -this.sum() % 2 == 0 +this.sum(this.getNum()) % 2 == 0 daikon.Quant.size(this.list1) == 11 -(!(this.scale() == 0)) || (this.value == 0) -(!(this.value == 0)) || (this.scale() == 0) -this.value <= this.scale() -(!(this.sum() == 0)) || (this.value == 0) -(!(this.value == 0)) || (this.sum() == 0) -2 * this.value - this.sum() == 0 +(!(this.scale(this.value) == 0)) || (this.value == 0) +(!(this.value == 0)) || (this.scale(this.value) == 0) +this.value <= this.scale(this.shift) +(!(this.sum(this.getNum()) == 0)) || (this.value == 0) +(!(this.value == 0)) || (this.sum(this.getNum()) == 0) +2 * this.value - this.sum(this.getNum()) == 0 this.shift <= daikon.Quant.size(this.list1)-1 daikon.Quant.memberOf(this.getNum().getClass().getName() , daikon.Quant.typeArray(this.list1) ) this.list2.getClass().getName() != this.getNum().getClass().getName() -(!(this.scale() == 0)) || (this.sum() == 0) -(!(this.sum() == 0)) || (this.scale() == 0) -this.sum() != daikon.Quant.size(this.list1) +(!(this.scale(this.value) == 0)) || (this.sum(this.getNum()) == 0) +(!(this.sum(this.getNum()) == 0)) || (this.scale(this.value) == 0) +this.sum(this.getNum()) != daikon.Quant.size(this.list1) =========================================================================== misc.Purity.Purity(int, int):::ENTER Variables: value shift @@ -58,8 +58,8 @@ this.value == \old(this.value) this.value == \old(this.getValue()) this.shift == \old(this.shift) this.shift == \old(this.getShift()) -this.shift == \old(this.retrieve()) -this.shift == \old(this.retrieve()) +this.shift == \old(this.retrieve(this.list1)) +this.shift == \old(this.retrieve(this.list2)) this.heavy == \old(this.heavy) this.heavy == \old(this.isHeavy()) this.list1 == \old(this.list1) @@ -68,7 +68,7 @@ this.list2 == \old(this.list2) daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) -this.sum() == \old(this.sum()) +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) this.shift % 5 == 0 \result != null @@ -84,8 +84,8 @@ this.value == \old(this.value) this.value == \old(this.getValue()) this.shift == \old(this.shift) this.shift == \old(this.getShift()) -this.shift == \old(this.retrieve()) -this.shift == \old(this.retrieve()) +this.shift == \old(this.retrieve(this.list1)) +this.shift == \old(this.retrieve(this.list2)) this.heavy == \old(this.heavy) this.heavy == \old(this.isHeavy()) this.list1 == \old(this.list1) @@ -94,7 +94,7 @@ this.list2 == \old(this.list2) daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.getNum().getClass().getName() == \result.getClass().getName() -this.sum() == \old(this.sum()) +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) \result.getClass().getName() == \old(this.getNum().getClass().getName()) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) this.shift % 5 == 0 @@ -122,13 +122,13 @@ daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.getShift() == \result this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) -this.sum() == \old(this.sum()) -this.retrieve() == \result -this.retrieve() == \result +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) +this.retrieve(this.list1) == \result +this.retrieve(this.list2) == \result \result == \old(this.shift) \result == \old(this.getShift()) -\result == \old(this.retrieve()) -\result == \old(this.retrieve()) +\result == \old(this.retrieve(this.list1)) +\result == \old(this.retrieve(this.list2)) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) \result == 0 || \result == 5 || \result == 10 \result % 5 == 0 @@ -144,8 +144,8 @@ assignable this.getNum(), this.getJWrap(), this.list1[this.value], this.list1[th this.value == \result this.shift == \old(this.shift) this.shift == \old(this.getShift()) -this.shift == \old(this.retrieve()) -this.shift == \old(this.retrieve()) +this.shift == \old(this.retrieve(this.list1)) +this.shift == \old(this.retrieve(this.list2)) this.heavy == \old(this.heavy) this.heavy == \old(this.isHeavy()) this.list1 == \old(this.list1) @@ -155,16 +155,16 @@ daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.getValue() == \result this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) -this.sum() == \old(this.sum()) +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) \result == \old(this.value) \result == \old(this.getValue()) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) this.shift % 5 == 0 -(!(\result == 0)) || (this.scale() == 0) -(!(this.scale() == 0)) || (\result == 0) -this.scale() >= \result -(!(\result == 0)) || (this.sum() == 0) -(!(this.sum() == 0)) || (\result == 0) +(!(\result == 0)) || (this.scale(this.value) == 0) +(!(this.scale(this.value) == 0)) || (\result == 0) +this.scale(this.shift) >= \result +(!(\result == 0)) || (this.sum(this.getNum()) == 0) +(!(this.sum(this.getNum()) == 0)) || (\result == 0) =========================================================================== misc.Purity.isHeavy():::ENTER Variables: this this.value this.shift this.heavy this.list1 this.list1[] this.list1[].getClass().getName() this.list2 this.list2[] this.list2[].getClass().getName() this.list2.getClass().getName() this.getValue() this.getShift() this.isHeavy() this.getNum() this.getNum().getClass().getName() this.getJWrap() this.scale(this.value) this.scale(this.shift) this.scale(this.getValue()) this.scale(this.getShift()) this.sum(this.getNum()) this.sum(this.getJWrap()) this.retrieve(this.list1) this.retrieve(this.list2) size(this.list1[]) size(this.list1[])-1 size(this.list2[]) size(this.list2[])-1 this.list1[this.value] this.list1[this.value-1] this.list1[this.value..] this.list1[this.value+1..] this.list1[0..this.value] this.list1[0..this.value-1] this.list2[this.value] this.list2[this.value-1] this.list2[this.value..] this.list2[this.value+1..] this.list2[0..this.value] this.list2[0..this.value-1] this.list1[this.shift] this.list1[this.shift-1] this.list1[this.shift..] this.list1[this.shift+1..] this.list1[0..this.shift] this.list1[0..this.shift-1] this.list2[this.shift] this.list2[this.shift-1] this.list2[this.shift..] this.list2[this.shift+1..] this.list2[0..this.shift] this.list2[0..this.shift-1] this.list1[this.getValue()] this.list1[this.getValue()-1] this.list1[this.getValue()..] this.list1[this.getValue()+1..] this.list1[0..this.getValue()] this.list1[0..this.getValue()-1] this.list1[this.getShift()] this.list1[this.getShift()-1] this.list1[this.getShift()..] this.list1[this.getShift()+1..] this.list1[0..this.getShift()] this.list1[0..this.getShift()-1] this.list1[this.scale(this.value)] this.list1[this.scale(this.value)-1] this.list1[this.scale(this.value)..] this.list1[this.scale(this.value)+1..] this.list1[0..this.scale(this.value)] this.list1[0..this.scale(this.value)-1] this.list1[this.scale(this.shift)] this.list1[this.scale(this.shift)-1] this.list1[this.scale(this.shift)..] this.list1[this.scale(this.shift)+1..] this.list1[0..this.scale(this.shift)] this.list1[0..this.scale(this.shift)-1] this.list1[this.scale(this.getValue())] this.list1[this.scale(this.getValue())-1] this.list1[this.scale(this.getValue())..] this.list1[this.scale(this.getValue())+1..] this.list1[0..this.scale(this.getValue())] this.list1[0..this.scale(this.getValue())-1] this.list1[this.scale(this.getShift())] this.list1[this.scale(this.getShift())-1] this.list1[this.scale(this.getShift())..] this.list1[this.scale(this.getShift())+1..] this.list1[0..this.scale(this.getShift())] this.list1[0..this.scale(this.getShift())-1] this.list1[this.sum(this.getNum())] this.list1[this.sum(this.getNum())-1] this.list1[this.sum(this.getNum())..] this.list1[this.sum(this.getNum())+1..] this.list1[0..this.sum(this.getNum())] this.list1[0..this.sum(this.getNum())-1] this.list1[this.sum(this.getJWrap())] this.list1[this.sum(this.getJWrap())-1] this.list1[this.sum(this.getJWrap())..] this.list1[this.sum(this.getJWrap())+1..] this.list1[0..this.sum(this.getJWrap())] this.list1[0..this.sum(this.getJWrap())-1] this.list1[this.retrieve(this.list1)] this.list1[this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list1)..] this.list1[this.retrieve(this.list1)+1..] this.list1[0..this.retrieve(this.list1)] this.list1[0..this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list2)] this.list1[this.retrieve(this.list2)-1] this.list1[this.retrieve(this.list2)..] this.list1[this.retrieve(this.list2)+1..] this.list1[0..this.retrieve(this.list2)] this.list1[0..this.retrieve(this.list2)-1] this.list2[this.getValue()] this.list2[this.getValue()-1] this.list2[this.getValue()..] this.list2[this.getValue()+1..] this.list2[0..this.getValue()] this.list2[0..this.getValue()-1] this.list2[this.getShift()] this.list2[this.getShift()-1] this.list2[this.getShift()..] this.list2[this.getShift()+1..] this.list2[0..this.getShift()] this.list2[0..this.getShift()-1] this.list2[this.scale(this.value)] this.list2[this.scale(this.value)-1] this.list2[this.scale(this.value)..] this.list2[this.scale(this.value)+1..] this.list2[0..this.scale(this.value)] this.list2[0..this.scale(this.value)-1] this.list2[this.scale(this.shift)] this.list2[this.scale(this.shift)-1] this.list2[this.scale(this.shift)..] this.list2[this.scale(this.shift)+1..] this.list2[0..this.scale(this.shift)] this.list2[0..this.scale(this.shift)-1] this.list2[this.scale(this.getValue())] this.list2[this.scale(this.getValue())-1] this.list2[this.scale(this.getValue())..] this.list2[this.scale(this.getValue())+1..] this.list2[0..this.scale(this.getValue())] this.list2[0..this.scale(this.getValue())-1] this.list2[this.scale(this.getShift())] this.list2[this.scale(this.getShift())-1] this.list2[this.scale(this.getShift())..] this.list2[this.scale(this.getShift())+1..] this.list2[0..this.scale(this.getShift())] this.list2[0..this.scale(this.getShift())-1] this.list2[this.sum(this.getNum())] this.list2[this.sum(this.getNum())-1] this.list2[this.sum(this.getNum())..] this.list2[this.sum(this.getNum())+1..] this.list2[0..this.sum(this.getNum())] this.list2[0..this.sum(this.getNum())-1] this.list2[this.sum(this.getJWrap())] this.list2[this.sum(this.getJWrap())-1] this.list2[this.sum(this.getJWrap())..] this.list2[this.sum(this.getJWrap())+1..] this.list2[0..this.sum(this.getJWrap())] this.list2[0..this.sum(this.getJWrap())-1] this.list2[this.retrieve(this.list1)] this.list2[this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list1)..] this.list2[this.retrieve(this.list1)+1..] this.list2[0..this.retrieve(this.list1)] this.list2[0..this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list2)] this.list2[this.retrieve(this.list2)-1] this.list2[this.retrieve(this.list2)..] this.list2[this.retrieve(this.list2)+1..] this.list2[0..this.retrieve(this.list2)] this.list2[0..this.retrieve(this.list2)-1] @@ -176,8 +176,8 @@ this.value == \old(this.value) this.value == \old(this.getValue()) this.shift == \old(this.shift) this.shift == \old(this.getShift()) -this.shift == \old(this.retrieve()) -this.shift == \old(this.retrieve()) +this.shift == \old(this.retrieve(this.list1)) +this.shift == \old(this.retrieve(this.list2)) this.heavy == \result this.list1 == \old(this.list1) daikon.Quant.pairwiseEqual(this.list1, \old(this.list1)) @@ -186,30 +186,30 @@ daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.isHeavy() == \result this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) -this.sum() == \old(this.sum()) +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) \result == \old(this.heavy) \result == \old(this.isHeavy()) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) (this.shift == 0) <==> (\result == false) -(this.shift == 0) <==> (this.value == this.scale()) -(this.shift == 0) ==> ((!(this.scale() == 0)) || (this.sum() == 0)) -(this.shift == 0) ==> ((!(this.sum() == 0)) || (this.scale() == 0)) -(this.shift == 0) ==> (2 * this.scale() - this.sum() == 0) -(this.shift == 0) ==> (2 * this.scale() - this.sum() == 0) +(this.shift == 0) <==> (this.value == this.scale(this.shift)) +(this.shift == 0) ==> ((!(this.scale(this.shift) == 0)) || (this.sum(this.getNum()) == 0)) +(this.shift == 0) ==> ((!(this.sum(this.getNum()) == 0)) || (this.scale(this.shift) == 0)) +(this.shift == 0) ==> (2 * this.scale(this.shift) - this.sum(this.getNum()) == 0) +(this.shift == 0) ==> (2 * this.scale(this.value) - this.sum(this.getNum()) == 0) (this.shift == 0) ==> (("oneOf.java.jpp: SEQUENCE unimplemented" != null)) (this.shift == 0) ==> (daikon.Quant.eltsEqual(daikon.Quant.slice(this.list1, 0, this.shift), daikon.Quant.getElement_Object(this.list1, this.shift))) (this.shift == 0) ==> (("oneOf.java.jpp: SEQUENCE unimplemented" != null)) (this.shift == 0) ==> (daikon.Quant.eltsEqual(daikon.Quant.slice(this.list2, 0, this.shift), daikon.Quant.getElement_Object(this.list2, this.shift))) (this.shift == 0) ==> (this.shift < daikon.Quant.size(this.list1)-1) (this.shift == 0) ==> (this.shift is a pointer) -(this.shift == 0) ==> (this.value == this.scale()) +(this.shift == 0) ==> (this.value == this.scale(this.value)) (this.shift == 5 || this.shift == 10) <==> (\result == true) -(this.shift == 5 || this.shift == 10) <==> (this.value < this.scale()) -(this.shift == 5 || this.shift == 10) ==> (30 * this.shift - 2 * this.scale() + this.sum() - 100 == 0) -(this.shift == 5 || this.shift == 10) ==> (this.scale() != daikon.Quant.size(this.list1)-1) -(this.shift == 5 || this.shift == 10) ==> (this.shift != this.scale()) +(this.shift == 5 || this.shift == 10) <==> (this.value < this.scale(this.shift)) +(this.shift == 5 || this.shift == 10) ==> (30 * this.shift - 2 * this.scale(this.shift) + this.sum(this.getNum()) - 100 == 0) +(this.shift == 5 || this.shift == 10) ==> (this.scale(this.value) != daikon.Quant.size(this.list1)-1) +(this.shift == 5 || this.shift == 10) ==> (this.shift != this.scale(this.value)) (this.shift == 5 || this.shift == 10) ==> (this.shift % 5 == 0) -(this.shift == 5 || this.shift == 10) ==> (this.value + 15 * this.shift - this.scale() - 50 == 0) +(this.shift == 5 || this.shift == 10) ==> (this.value + 15 * this.shift - this.scale(this.shift) - 50 == 0) =========================================================================== misc.Purity.retrieve(java.util.List):::ENTER Variables: this this.value this.shift this.heavy this.list1 this.list1[] this.list1[].getClass().getName() this.list2 this.list2[] this.list2[].getClass().getName() this.list2.getClass().getName() this.getValue() this.getShift() this.isHeavy() this.getNum() this.getNum().getClass().getName() this.getJWrap() this.scale(this.value) this.scale(this.shift) this.scale(this.getValue()) this.scale(this.getShift()) this.sum(this.getNum()) this.sum(this.getJWrap()) this.retrieve(this.list1) this.retrieve(this.list2) l l[] l[].getClass().getName() l.getClass().getName() size(this.list1[]) size(this.list1[])-1 size(this.list2[]) size(this.list2[])-1 size(l[]) size(l[])-1 this.list1[this.value] this.list1[this.value-1] this.list1[this.value..] this.list1[this.value+1..] this.list1[0..this.value] this.list1[0..this.value-1] this.list2[this.value] this.list2[this.value-1] this.list2[this.value..] this.list2[this.value+1..] this.list2[0..this.value] this.list2[0..this.value-1] l[this.value] l[this.value-1] l[this.value..] l[this.value+1..] l[0..this.value] l[0..this.value-1] this.list1[this.shift] this.list1[this.shift-1] this.list1[this.shift..] this.list1[this.shift+1..] this.list1[0..this.shift] this.list1[0..this.shift-1] this.list2[this.shift] this.list2[this.shift-1] this.list2[this.shift..] this.list2[this.shift+1..] this.list2[0..this.shift] this.list2[0..this.shift-1] l[this.shift] l[this.shift-1] l[this.shift..] l[this.shift+1..] l[0..this.shift] l[0..this.shift-1] this.list1[this.getValue()] this.list1[this.getValue()-1] this.list1[this.getValue()..] this.list1[this.getValue()+1..] this.list1[0..this.getValue()] this.list1[0..this.getValue()-1] this.list1[this.getShift()] this.list1[this.getShift()-1] this.list1[this.getShift()..] this.list1[this.getShift()+1..] this.list1[0..this.getShift()] this.list1[0..this.getShift()-1] this.list1[this.scale(this.value)] this.list1[this.scale(this.value)-1] this.list1[this.scale(this.value)..] this.list1[this.scale(this.value)+1..] this.list1[0..this.scale(this.value)] this.list1[0..this.scale(this.value)-1] this.list1[this.scale(this.shift)] this.list1[this.scale(this.shift)-1] this.list1[this.scale(this.shift)..] this.list1[this.scale(this.shift)+1..] this.list1[0..this.scale(this.shift)] this.list1[0..this.scale(this.shift)-1] this.list1[this.scale(this.getValue())] this.list1[this.scale(this.getValue())-1] this.list1[this.scale(this.getValue())..] this.list1[this.scale(this.getValue())+1..] this.list1[0..this.scale(this.getValue())] this.list1[0..this.scale(this.getValue())-1] this.list1[this.scale(this.getShift())] this.list1[this.scale(this.getShift())-1] this.list1[this.scale(this.getShift())..] this.list1[this.scale(this.getShift())+1..] this.list1[0..this.scale(this.getShift())] this.list1[0..this.scale(this.getShift())-1] this.list1[this.sum(this.getNum())] this.list1[this.sum(this.getNum())-1] this.list1[this.sum(this.getNum())..] this.list1[this.sum(this.getNum())+1..] this.list1[0..this.sum(this.getNum())] this.list1[0..this.sum(this.getNum())-1] this.list1[this.sum(this.getJWrap())] this.list1[this.sum(this.getJWrap())-1] this.list1[this.sum(this.getJWrap())..] this.list1[this.sum(this.getJWrap())+1..] this.list1[0..this.sum(this.getJWrap())] this.list1[0..this.sum(this.getJWrap())-1] this.list1[this.retrieve(this.list1)] this.list1[this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list1)..] this.list1[this.retrieve(this.list1)+1..] this.list1[0..this.retrieve(this.list1)] this.list1[0..this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list2)] this.list1[this.retrieve(this.list2)-1] this.list1[this.retrieve(this.list2)..] this.list1[this.retrieve(this.list2)+1..] this.list1[0..this.retrieve(this.list2)] this.list1[0..this.retrieve(this.list2)-1] this.list2[this.getValue()] this.list2[this.getValue()-1] this.list2[this.getValue()..] this.list2[this.getValue()+1..] this.list2[0..this.getValue()] this.list2[0..this.getValue()-1] this.list2[this.getShift()] this.list2[this.getShift()-1] this.list2[this.getShift()..] this.list2[this.getShift()+1..] this.list2[0..this.getShift()] this.list2[0..this.getShift()-1] this.list2[this.scale(this.value)] this.list2[this.scale(this.value)-1] this.list2[this.scale(this.value)..] this.list2[this.scale(this.value)+1..] this.list2[0..this.scale(this.value)] this.list2[0..this.scale(this.value)-1] this.list2[this.scale(this.shift)] this.list2[this.scale(this.shift)-1] this.list2[this.scale(this.shift)..] this.list2[this.scale(this.shift)+1..] this.list2[0..this.scale(this.shift)] this.list2[0..this.scale(this.shift)-1] this.list2[this.scale(this.getValue())] this.list2[this.scale(this.getValue())-1] this.list2[this.scale(this.getValue())..] this.list2[this.scale(this.getValue())+1..] this.list2[0..this.scale(this.getValue())] this.list2[0..this.scale(this.getValue())-1] this.list2[this.scale(this.getShift())] this.list2[this.scale(this.getShift())-1] this.list2[this.scale(this.getShift())..] this.list2[this.scale(this.getShift())+1..] this.list2[0..this.scale(this.getShift())] this.list2[0..this.scale(this.getShift())-1] this.list2[this.sum(this.getNum())] this.list2[this.sum(this.getNum())-1] this.list2[this.sum(this.getNum())..] this.list2[this.sum(this.getNum())+1..] this.list2[0..this.sum(this.getNum())] this.list2[0..this.sum(this.getNum())-1] this.list2[this.sum(this.getJWrap())] this.list2[this.sum(this.getJWrap())-1] this.list2[this.sum(this.getJWrap())..] this.list2[this.sum(this.getJWrap())+1..] this.list2[0..this.sum(this.getJWrap())] this.list2[0..this.sum(this.getJWrap())-1] this.list2[this.retrieve(this.list1)] this.list2[this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list1)..] this.list2[this.retrieve(this.list1)+1..] this.list2[0..this.retrieve(this.list1)] this.list2[0..this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list2)] this.list2[this.retrieve(this.list2)-1] this.list2[this.retrieve(this.list2)..] this.list2[this.retrieve(this.list2)+1..] this.list2[0..this.retrieve(this.list2)] this.list2[0..this.retrieve(this.list2)-1] l[this.getValue()] l[this.getValue()-1] l[this.getValue()..] l[this.getValue()+1..] l[0..this.getValue()] l[0..this.getValue()-1] l[this.getShift()] l[this.getShift()-1] l[this.getShift()..] l[this.getShift()+1..] l[0..this.getShift()] l[0..this.getShift()-1] l[this.scale(this.value)] l[this.scale(this.value)-1] l[this.scale(this.value)..] l[this.scale(this.value)+1..] l[0..this.scale(this.value)] l[0..this.scale(this.value)-1] l[this.scale(this.shift)] l[this.scale(this.shift)-1] l[this.scale(this.shift)..] l[this.scale(this.shift)+1..] l[0..this.scale(this.shift)] l[0..this.scale(this.shift)-1] l[this.scale(this.getValue())] l[this.scale(this.getValue())-1] l[this.scale(this.getValue())..] l[this.scale(this.getValue())+1..] l[0..this.scale(this.getValue())] l[0..this.scale(this.getValue())-1] l[this.scale(this.getShift())] l[this.scale(this.getShift())-1] l[this.scale(this.getShift())..] l[this.scale(this.getShift())+1..] l[0..this.scale(this.getShift())] l[0..this.scale(this.getShift())-1] l[this.sum(this.getNum())] l[this.sum(this.getNum())-1] l[this.sum(this.getNum())..] l[this.sum(this.getNum())+1..] l[0..this.sum(this.getNum())] l[0..this.sum(this.getNum())-1] l[this.sum(this.getJWrap())] l[this.sum(this.getJWrap())-1] l[this.sum(this.getJWrap())..] l[this.sum(this.getJWrap())+1..] l[0..this.sum(this.getJWrap())] l[0..this.sum(this.getJWrap())-1] l[this.retrieve(this.list1)] l[this.retrieve(this.list1)-1] l[this.retrieve(this.list1)..] l[this.retrieve(this.list1)+1..] l[0..this.retrieve(this.list1)] l[0..this.retrieve(this.list1)-1] l[this.retrieve(this.list2)] l[this.retrieve(this.list2)-1] l[this.retrieve(this.list2)..] l[this.retrieve(this.list2)+1..] l[0..this.retrieve(this.list2)] l[0..this.retrieve(this.list2)-1] @@ -223,7 +223,7 @@ daikon.Quant.eltsEqual(daikon.Quant.typeArray(l), "java.lang.Integer") daikon.Quant.size(l) == 20 this.shift < daikon.Quant.size(l)-1 daikon.Quant.memberOf(this.getNum().getClass().getName() , daikon.Quant.typeArray(l) ) -this.sum() != daikon.Quant.size(l)-1 +this.sum(this.getNum()) != daikon.Quant.size(l)-1 =========================================================================== misc.Purity.retrieve(java.util.List):::EXIT Variables: this this.value this.shift this.heavy this.list1 this.list1[] this.list1[].getClass().getName() this.list2 this.list2[] this.list2[].getClass().getName() this.list2.getClass().getName() this.getValue() this.getShift() this.isHeavy() this.getNum() this.getNum().getClass().getName() this.getJWrap() this.scale(this.value) this.scale(this.shift) this.scale(this.getValue()) this.scale(this.getShift()) this.sum(this.getNum()) this.sum(this.getJWrap()) this.retrieve(this.list1) this.retrieve(this.list2) l l[] l[].getClass().getName() l.getClass().getName() return orig(this) orig(this.value) orig(this.shift) orig(this.heavy) orig(this.list1) orig(this.list1[]) orig(this.list1[].getClass().getName()) orig(this.list2) orig(this.list2[]) orig(this.list2[].getClass().getName()) orig(this.list2.getClass().getName()) orig(this.getValue()) orig(this.getShift()) orig(this.isHeavy()) orig(this.getNum()) orig(this.getNum().getClass().getName()) orig(this.getJWrap()) orig(this.scale(this.value)) orig(this.scale(this.shift)) orig(this.scale(this.getValue())) orig(this.scale(this.getShift())) orig(this.sum(this.getNum())) orig(this.sum(this.getJWrap())) orig(this.retrieve(this.list1)) orig(this.retrieve(this.list2)) orig(l) orig(l[]) orig(l[].getClass().getName()) orig(l.getClass().getName()) size(this.list1[]) size(this.list1[])-1 size(this.list2[]) size(this.list2[])-1 size(l[]) size(l[])-1 orig(size(this.list1[])) orig(size(this.list1[]))-1 orig(size(this.list2[])) orig(size(this.list2[]))-1 orig(size(l[])) orig(size(l[]))-1 this.list1[this.value] this.list1[this.value-1] this.list1[this.value..] this.list1[this.value+1..] this.list1[0..this.value] this.list1[0..this.value-1] this.list2[this.value] this.list2[this.value-1] this.list2[this.value..] this.list2[this.value+1..] this.list2[0..this.value] this.list2[0..this.value-1] l[this.value] l[this.value-1] l[this.value..] l[this.value+1..] l[0..this.value] l[0..this.value-1] orig(this.list1[post(this.value)]) orig(this.list1[post(this.value)-1]) orig(this.list1[post(this.value)..]) orig(this.list1[post(this.value)+1..]) orig(this.list1[0..post(this.value)]) orig(this.list1[0..post(this.value)-1]) orig(this.list2[post(this.value)]) orig(this.list2[post(this.value)-1]) orig(this.list2[post(this.value)..]) orig(this.list2[post(this.value)+1..]) orig(this.list2[0..post(this.value)]) orig(this.list2[0..post(this.value)-1]) orig(l[post(this.value)]) orig(l[post(this.value)-1]) orig(l[post(this.value)..]) orig(l[post(this.value)+1..]) orig(l[0..post(this.value)]) orig(l[0..post(this.value)-1]) this.list1[this.shift] this.list1[this.shift-1] this.list1[this.shift..] this.list1[this.shift+1..] this.list1[0..this.shift] this.list1[0..this.shift-1] this.list2[this.shift] this.list2[this.shift-1] this.list2[this.shift..] this.list2[this.shift+1..] this.list2[0..this.shift] this.list2[0..this.shift-1] l[this.shift] l[this.shift-1] l[this.shift..] l[this.shift+1..] l[0..this.shift] l[0..this.shift-1] orig(this.list1[post(this.shift)]) orig(this.list1[post(this.shift)-1]) orig(this.list1[post(this.shift)..]) orig(this.list1[post(this.shift)+1..]) orig(this.list1[0..post(this.shift)]) orig(this.list1[0..post(this.shift)-1]) orig(this.list2[post(this.shift)]) orig(this.list2[post(this.shift)-1]) orig(this.list2[post(this.shift)..]) orig(this.list2[post(this.shift)+1..]) orig(this.list2[0..post(this.shift)]) orig(this.list2[0..post(this.shift)-1]) orig(l[post(this.shift)]) orig(l[post(this.shift)-1]) orig(l[post(this.shift)..]) orig(l[post(this.shift)+1..]) orig(l[0..post(this.shift)]) orig(l[0..post(this.shift)-1]) this.list1[this.getValue()] this.list1[this.getValue()-1] this.list1[this.getValue()..] this.list1[this.getValue()+1..] this.list1[0..this.getValue()] this.list1[0..this.getValue()-1] this.list1[this.getShift()] this.list1[this.getShift()-1] this.list1[this.getShift()..] this.list1[this.getShift()+1..] this.list1[0..this.getShift()] this.list1[0..this.getShift()-1] this.list1[this.scale(this.value)] this.list1[this.scale(this.value)-1] this.list1[this.scale(this.value)..] this.list1[this.scale(this.value)+1..] this.list1[0..this.scale(this.value)] this.list1[0..this.scale(this.value)-1] this.list1[this.scale(this.shift)] this.list1[this.scale(this.shift)-1] this.list1[this.scale(this.shift)..] this.list1[this.scale(this.shift)+1..] this.list1[0..this.scale(this.shift)] this.list1[0..this.scale(this.shift)-1] this.list1[this.scale(this.getValue())] this.list1[this.scale(this.getValue())-1] this.list1[this.scale(this.getValue())..] this.list1[this.scale(this.getValue())+1..] this.list1[0..this.scale(this.getValue())] this.list1[0..this.scale(this.getValue())-1] this.list1[this.scale(this.getShift())] this.list1[this.scale(this.getShift())-1] this.list1[this.scale(this.getShift())..] this.list1[this.scale(this.getShift())+1..] this.list1[0..this.scale(this.getShift())] this.list1[0..this.scale(this.getShift())-1] this.list1[this.sum(this.getNum())] this.list1[this.sum(this.getNum())-1] this.list1[this.sum(this.getNum())..] this.list1[this.sum(this.getNum())+1..] this.list1[0..this.sum(this.getNum())] this.list1[0..this.sum(this.getNum())-1] this.list1[this.sum(this.getJWrap())] this.list1[this.sum(this.getJWrap())-1] this.list1[this.sum(this.getJWrap())..] this.list1[this.sum(this.getJWrap())+1..] this.list1[0..this.sum(this.getJWrap())] this.list1[0..this.sum(this.getJWrap())-1] this.list1[this.retrieve(this.list1)] this.list1[this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list1)..] this.list1[this.retrieve(this.list1)+1..] this.list1[0..this.retrieve(this.list1)] this.list1[0..this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list2)] this.list1[this.retrieve(this.list2)-1] this.list1[this.retrieve(this.list2)..] this.list1[this.retrieve(this.list2)+1..] this.list1[0..this.retrieve(this.list2)] this.list1[0..this.retrieve(this.list2)-1] this.list1[return] this.list1[return-1] this.list1[return..] this.list1[return+1..] this.list1[0..return] this.list1[0..return-1] this.list1[orig(this.value)] this.list1[orig(this.value)-1] this.list1[orig(this.value)..] this.list1[orig(this.value)+1..] this.list1[0..orig(this.value)] this.list1[0..orig(this.value)-1] this.list1[orig(this.shift)] this.list1[orig(this.shift)-1] this.list1[orig(this.shift)..] this.list1[orig(this.shift)+1..] this.list1[0..orig(this.shift)] this.list1[0..orig(this.shift)-1] this.list1[orig(this.getValue())] this.list1[orig(this.getValue())-1] this.list1[orig(this.getValue())..] this.list1[orig(this.getValue())+1..] this.list1[0..orig(this.getValue())] this.list1[0..orig(this.getValue())-1] this.list1[orig(this.getShift())] this.list1[orig(this.getShift())-1] this.list1[orig(this.getShift())..] this.list1[orig(this.getShift())+1..] this.list1[0..orig(this.getShift())] this.list1[0..orig(this.getShift())-1] this.list1[orig(this.scale(this.value))] this.list1[orig(this.scale(this.value))-1] this.list1[orig(this.scale(this.value))..] this.list1[orig(this.scale(this.value))+1..] this.list1[0..orig(this.scale(this.value))] this.list1[0..orig(this.scale(this.value))-1] this.list1[orig(this.scale(this.shift))] this.list1[orig(this.scale(this.shift))-1] this.list1[orig(this.scale(this.shift))..] this.list1[orig(this.scale(this.shift))+1..] this.list1[0..orig(this.scale(this.shift))] this.list1[0..orig(this.scale(this.shift))-1] this.list1[orig(this.scale(this.getValue()))] this.list1[orig(this.scale(this.getValue()))-1] this.list1[orig(this.scale(this.getValue()))..] this.list1[orig(this.scale(this.getValue()))+1..] this.list1[0..orig(this.scale(this.getValue()))] this.list1[0..orig(this.scale(this.getValue()))-1] this.list1[orig(this.scale(this.getShift()))] this.list1[orig(this.scale(this.getShift()))-1] this.list1[orig(this.scale(this.getShift()))..] this.list1[orig(this.scale(this.getShift()))+1..] this.list1[0..orig(this.scale(this.getShift()))] this.list1[0..orig(this.scale(this.getShift()))-1] this.list1[orig(this.sum(this.getNum()))] this.list1[orig(this.sum(this.getNum()))-1] this.list1[orig(this.sum(this.getNum()))..] this.list1[orig(this.sum(this.getNum()))+1..] this.list1[0..orig(this.sum(this.getNum()))] this.list1[0..orig(this.sum(this.getNum()))-1] this.list1[orig(this.sum(this.getJWrap()))] this.list1[orig(this.sum(this.getJWrap()))-1] this.list1[orig(this.sum(this.getJWrap()))..] this.list1[orig(this.sum(this.getJWrap()))+1..] this.list1[0..orig(this.sum(this.getJWrap()))] this.list1[0..orig(this.sum(this.getJWrap()))-1] this.list1[orig(this.retrieve(this.list1))] this.list1[orig(this.retrieve(this.list1))-1] this.list1[orig(this.retrieve(this.list1))..] this.list1[orig(this.retrieve(this.list1))+1..] this.list1[0..orig(this.retrieve(this.list1))] this.list1[0..orig(this.retrieve(this.list1))-1] this.list1[orig(this.retrieve(this.list2))] this.list1[orig(this.retrieve(this.list2))-1] this.list1[orig(this.retrieve(this.list2))..] this.list1[orig(this.retrieve(this.list2))+1..] this.list1[0..orig(this.retrieve(this.list2))] this.list1[0..orig(this.retrieve(this.list2))-1] this.list2[this.getValue()] this.list2[this.getValue()-1] this.list2[this.getValue()..] this.list2[this.getValue()+1..] this.list2[0..this.getValue()] this.list2[0..this.getValue()-1] this.list2[this.getShift()] this.list2[this.getShift()-1] this.list2[this.getShift()..] this.list2[this.getShift()+1..] this.list2[0..this.getShift()] this.list2[0..this.getShift()-1] this.list2[this.scale(this.value)] this.list2[this.scale(this.value)-1] this.list2[this.scale(this.value)..] this.list2[this.scale(this.value)+1..] this.list2[0..this.scale(this.value)] this.list2[0..this.scale(this.value)-1] this.list2[this.scale(this.shift)] this.list2[this.scale(this.shift)-1] this.list2[this.scale(this.shift)..] this.list2[this.scale(this.shift)+1..] this.list2[0..this.scale(this.shift)] this.list2[0..this.scale(this.shift)-1] this.list2[this.scale(this.getValue())] this.list2[this.scale(this.getValue())-1] this.list2[this.scale(this.getValue())..] this.list2[this.scale(this.getValue())+1..] this.list2[0..this.scale(this.getValue())] this.list2[0..this.scale(this.getValue())-1] this.list2[this.scale(this.getShift())] this.list2[this.scale(this.getShift())-1] this.list2[this.scale(this.getShift())..] this.list2[this.scale(this.getShift())+1..] this.list2[0..this.scale(this.getShift())] this.list2[0..this.scale(this.getShift())-1] this.list2[this.sum(this.getNum())] this.list2[this.sum(this.getNum())-1] this.list2[this.sum(this.getNum())..] this.list2[this.sum(this.getNum())+1..] this.list2[0..this.sum(this.getNum())] this.list2[0..this.sum(this.getNum())-1] this.list2[this.sum(this.getJWrap())] this.list2[this.sum(this.getJWrap())-1] this.list2[this.sum(this.getJWrap())..] this.list2[this.sum(this.getJWrap())+1..] this.list2[0..this.sum(this.getJWrap())] this.list2[0..this.sum(this.getJWrap())-1] this.list2[this.retrieve(this.list1)] this.list2[this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list1)..] this.list2[this.retrieve(this.list1)+1..] this.list2[0..this.retrieve(this.list1)] this.list2[0..this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list2)] this.list2[this.retrieve(this.list2)-1] this.list2[this.retrieve(this.list2)..] this.list2[this.retrieve(this.list2)+1..] this.list2[0..this.retrieve(this.list2)] this.list2[0..this.retrieve(this.list2)-1] this.list2[return] this.list2[return-1] this.list2[return..] this.list2[return+1..] this.list2[0..return] this.list2[0..return-1] this.list2[orig(this.value)] this.list2[orig(this.value)-1] this.list2[orig(this.value)..] this.list2[orig(this.value)+1..] this.list2[0..orig(this.value)] this.list2[0..orig(this.value)-1] this.list2[orig(this.shift)] this.list2[orig(this.shift)-1] this.list2[orig(this.shift)..] this.list2[orig(this.shift)+1..] this.list2[0..orig(this.shift)] this.list2[0..orig(this.shift)-1] this.list2[orig(this.getValue())] this.list2[orig(this.getValue())-1] this.list2[orig(this.getValue())..] this.list2[orig(this.getValue())+1..] this.list2[0..orig(this.getValue())] this.list2[0..orig(this.getValue())-1] this.list2[orig(this.getShift())] this.list2[orig(this.getShift())-1] this.list2[orig(this.getShift())..] this.list2[orig(this.getShift())+1..] this.list2[0..orig(this.getShift())] this.list2[0..orig(this.getShift())-1] this.list2[orig(this.scale(this.value))] this.list2[orig(this.scale(this.value))-1] this.list2[orig(this.scale(this.value))..] this.list2[orig(this.scale(this.value))+1..] this.list2[0..orig(this.scale(this.value))] this.list2[0..orig(this.scale(this.value))-1] this.list2[orig(this.scale(this.shift))] this.list2[orig(this.scale(this.shift))-1] this.list2[orig(this.scale(this.shift))..] this.list2[orig(this.scale(this.shift))+1..] this.list2[0..orig(this.scale(this.shift))] this.list2[0..orig(this.scale(this.shift))-1] this.list2[orig(this.scale(this.getValue()))] this.list2[orig(this.scale(this.getValue()))-1] this.list2[orig(this.scale(this.getValue()))..] this.list2[orig(this.scale(this.getValue()))+1..] this.list2[0..orig(this.scale(this.getValue()))] this.list2[0..orig(this.scale(this.getValue()))-1] this.list2[orig(this.scale(this.getShift()))] this.list2[orig(this.scale(this.getShift()))-1] this.list2[orig(this.scale(this.getShift()))..] this.list2[orig(this.scale(this.getShift()))+1..] this.list2[0..orig(this.scale(this.getShift()))] this.list2[0..orig(this.scale(this.getShift()))-1] this.list2[orig(this.sum(this.getNum()))] this.list2[orig(this.sum(this.getNum()))-1] this.list2[orig(this.sum(this.getNum()))..] this.list2[orig(this.sum(this.getNum()))+1..] this.list2[0..orig(this.sum(this.getNum()))] this.list2[0..orig(this.sum(this.getNum()))-1] this.list2[orig(this.sum(this.getJWrap()))] this.list2[orig(this.sum(this.getJWrap()))-1] this.list2[orig(this.sum(this.getJWrap()))..] this.list2[orig(this.sum(this.getJWrap()))+1..] this.list2[0..orig(this.sum(this.getJWrap()))] this.list2[0..orig(this.sum(this.getJWrap()))-1] this.list2[orig(this.retrieve(this.list1))] this.list2[orig(this.retrieve(this.list1))-1] this.list2[orig(this.retrieve(this.list1))..] this.list2[orig(this.retrieve(this.list1))+1..] this.list2[0..orig(this.retrieve(this.list1))] this.list2[0..orig(this.retrieve(this.list1))-1] this.list2[orig(this.retrieve(this.list2))] this.list2[orig(this.retrieve(this.list2))-1] this.list2[orig(this.retrieve(this.list2))..] this.list2[orig(this.retrieve(this.list2))+1..] this.list2[0..orig(this.retrieve(this.list2))] this.list2[0..orig(this.retrieve(this.list2))-1] l[this.getValue()] l[this.getValue()-1] l[this.getValue()..] l[this.getValue()+1..] l[0..this.getValue()] l[0..this.getValue()-1] orig(this.list1[post(this.getValue())]) orig(this.list1[post(this.getValue())-1]) orig(this.list1[post(this.getValue())..]) orig(this.list1[post(this.getValue())+1..]) orig(this.list1[0..post(this.getValue())]) orig(this.list1[0..post(this.getValue())-1]) orig(this.list2[post(this.getValue())]) orig(this.list2[post(this.getValue())-1]) orig(this.list2[post(this.getValue())..]) orig(this.list2[post(this.getValue())+1..]) orig(this.list2[0..post(this.getValue())]) orig(this.list2[0..post(this.getValue())-1]) orig(l[post(this.getValue())]) orig(l[post(this.getValue())-1]) orig(l[post(this.getValue())..]) orig(l[post(this.getValue())+1..]) orig(l[0..post(this.getValue())]) orig(l[0..post(this.getValue())-1]) l[this.getShift()] l[this.getShift()-1] l[this.getShift()..] l[this.getShift()+1..] l[0..this.getShift()] l[0..this.getShift()-1] orig(this.list1[post(this.getShift())]) orig(this.list1[post(this.getShift())-1]) orig(this.list1[post(this.getShift())..]) orig(this.list1[post(this.getShift())+1..]) orig(this.list1[0..post(this.getShift())]) orig(this.list1[0..post(this.getShift())-1]) orig(this.list2[post(this.getShift())]) orig(this.list2[post(this.getShift())-1]) orig(this.list2[post(this.getShift())..]) orig(this.list2[post(this.getShift())+1..]) orig(this.list2[0..post(this.getShift())]) orig(this.list2[0..post(this.getShift())-1]) orig(l[post(this.getShift())]) orig(l[post(this.getShift())-1]) orig(l[post(this.getShift())..]) orig(l[post(this.getShift())+1..]) orig(l[0..post(this.getShift())]) orig(l[0..post(this.getShift())-1]) l[this.scale(this.value)] l[this.scale(this.value)-1] l[this.scale(this.value)..] l[this.scale(this.value)+1..] l[0..this.scale(this.value)] l[0..this.scale(this.value)-1] orig(this.list1[post(this.scale(this.value))]) orig(this.list1[post(this.scale(this.value))-1]) orig(this.list1[post(this.scale(this.value))..]) orig(this.list1[post(this.scale(this.value))+1..]) orig(this.list1[0..post(this.scale(this.value))]) orig(this.list1[0..post(this.scale(this.value))-1]) orig(this.list2[post(this.scale(this.value))]) orig(this.list2[post(this.scale(this.value))-1]) orig(this.list2[post(this.scale(this.value))..]) orig(this.list2[post(this.scale(this.value))+1..]) orig(this.list2[0..post(this.scale(this.value))]) orig(this.list2[0..post(this.scale(this.value))-1]) orig(l[post(this.scale(this.value))]) orig(l[post(this.scale(this.value))-1]) orig(l[post(this.scale(this.value))..]) orig(l[post(this.scale(this.value))+1..]) orig(l[0..post(this.scale(this.value))]) orig(l[0..post(this.scale(this.value))-1]) l[this.scale(this.shift)] l[this.scale(this.shift)-1] l[this.scale(this.shift)..] l[this.scale(this.shift)+1..] l[0..this.scale(this.shift)] l[0..this.scale(this.shift)-1] orig(this.list1[post(this.scale(this.shift))]) orig(this.list1[post(this.scale(this.shift))-1]) orig(this.list1[post(this.scale(this.shift))..]) orig(this.list1[post(this.scale(this.shift))+1..]) orig(this.list1[0..post(this.scale(this.shift))]) orig(this.list1[0..post(this.scale(this.shift))-1]) orig(this.list2[post(this.scale(this.shift))]) orig(this.list2[post(this.scale(this.shift))-1]) orig(this.list2[post(this.scale(this.shift))..]) orig(this.list2[post(this.scale(this.shift))+1..]) orig(this.list2[0..post(this.scale(this.shift))]) orig(this.list2[0..post(this.scale(this.shift))-1]) orig(l[post(this.scale(this.shift))]) orig(l[post(this.scale(this.shift))-1]) orig(l[post(this.scale(this.shift))..]) orig(l[post(this.scale(this.shift))+1..]) orig(l[0..post(this.scale(this.shift))]) orig(l[0..post(this.scale(this.shift))-1]) l[this.scale(this.getValue())] l[this.scale(this.getValue())-1] l[this.scale(this.getValue())..] l[this.scale(this.getValue())+1..] l[0..this.scale(this.getValue())] l[0..this.scale(this.getValue())-1] orig(this.list1[post(this.scale(this.getValue()))]) orig(this.list1[post(this.scale(this.getValue()))-1]) orig(this.list1[post(this.scale(this.getValue()))..]) orig(this.list1[post(this.scale(this.getValue()))+1..]) orig(this.list1[0..post(this.scale(this.getValue()))]) orig(this.list1[0..post(this.scale(this.getValue()))-1]) orig(this.list2[post(this.scale(this.getValue()))]) orig(this.list2[post(this.scale(this.getValue()))-1]) orig(this.list2[post(this.scale(this.getValue()))..]) orig(this.list2[post(this.scale(this.getValue()))+1..]) orig(this.list2[0..post(this.scale(this.getValue()))]) orig(this.list2[0..post(this.scale(this.getValue()))-1]) orig(l[post(this.scale(this.getValue()))]) orig(l[post(this.scale(this.getValue()))-1]) orig(l[post(this.scale(this.getValue()))..]) orig(l[post(this.scale(this.getValue()))+1..]) orig(l[0..post(this.scale(this.getValue()))]) orig(l[0..post(this.scale(this.getValue()))-1]) l[this.scale(this.getShift())] l[this.scale(this.getShift())-1] l[this.scale(this.getShift())..] l[this.scale(this.getShift())+1..] l[0..this.scale(this.getShift())] l[0..this.scale(this.getShift())-1] orig(this.list1[post(this.scale(this.getShift()))]) orig(this.list1[post(this.scale(this.getShift()))-1]) orig(this.list1[post(this.scale(this.getShift()))..]) orig(this.list1[post(this.scale(this.getShift()))+1..]) orig(this.list1[0..post(this.scale(this.getShift()))]) orig(this.list1[0..post(this.scale(this.getShift()))-1]) orig(this.list2[post(this.scale(this.getShift()))]) orig(this.list2[post(this.scale(this.getShift()))-1]) orig(this.list2[post(this.scale(this.getShift()))..]) orig(this.list2[post(this.scale(this.getShift()))+1..]) orig(this.list2[0..post(this.scale(this.getShift()))]) orig(this.list2[0..post(this.scale(this.getShift()))-1]) orig(l[post(this.scale(this.getShift()))]) orig(l[post(this.scale(this.getShift()))-1]) orig(l[post(this.scale(this.getShift()))..]) orig(l[post(this.scale(this.getShift()))+1..]) orig(l[0..post(this.scale(this.getShift()))]) orig(l[0..post(this.scale(this.getShift()))-1]) l[this.sum(this.getNum())] l[this.sum(this.getNum())-1] l[this.sum(this.getNum())..] l[this.sum(this.getNum())+1..] l[0..this.sum(this.getNum())] l[0..this.sum(this.getNum())-1] orig(this.list1[post(this.sum(this.getNum()))]) orig(this.list1[post(this.sum(this.getNum()))-1]) orig(this.list1[post(this.sum(this.getNum()))..]) orig(this.list1[post(this.sum(this.getNum()))+1..]) orig(this.list1[0..post(this.sum(this.getNum()))]) orig(this.list1[0..post(this.sum(this.getNum()))-1]) orig(this.list2[post(this.sum(this.getNum()))]) orig(this.list2[post(this.sum(this.getNum()))-1]) orig(this.list2[post(this.sum(this.getNum()))..]) orig(this.list2[post(this.sum(this.getNum()))+1..]) orig(this.list2[0..post(this.sum(this.getNum()))]) orig(this.list2[0..post(this.sum(this.getNum()))-1]) orig(l[post(this.sum(this.getNum()))]) orig(l[post(this.sum(this.getNum()))-1]) orig(l[post(this.sum(this.getNum()))..]) orig(l[post(this.sum(this.getNum()))+1..]) orig(l[0..post(this.sum(this.getNum()))]) orig(l[0..post(this.sum(this.getNum()))-1]) l[this.sum(this.getJWrap())] l[this.sum(this.getJWrap())-1] l[this.sum(this.getJWrap())..] l[this.sum(this.getJWrap())+1..] l[0..this.sum(this.getJWrap())] l[0..this.sum(this.getJWrap())-1] orig(this.list1[post(this.sum(this.getJWrap()))]) orig(this.list1[post(this.sum(this.getJWrap()))-1]) orig(this.list1[post(this.sum(this.getJWrap()))..]) orig(this.list1[post(this.sum(this.getJWrap()))+1..]) orig(this.list1[0..post(this.sum(this.getJWrap()))]) orig(this.list1[0..post(this.sum(this.getJWrap()))-1]) orig(this.list2[post(this.sum(this.getJWrap()))]) orig(this.list2[post(this.sum(this.getJWrap()))-1]) orig(this.list2[post(this.sum(this.getJWrap()))..]) orig(this.list2[post(this.sum(this.getJWrap()))+1..]) orig(this.list2[0..post(this.sum(this.getJWrap()))]) orig(this.list2[0..post(this.sum(this.getJWrap()))-1]) orig(l[post(this.sum(this.getJWrap()))]) orig(l[post(this.sum(this.getJWrap()))-1]) orig(l[post(this.sum(this.getJWrap()))..]) orig(l[post(this.sum(this.getJWrap()))+1..]) orig(l[0..post(this.sum(this.getJWrap()))]) orig(l[0..post(this.sum(this.getJWrap()))-1]) l[this.retrieve(this.list1)] l[this.retrieve(this.list1)-1] l[this.retrieve(this.list1)..] l[this.retrieve(this.list1)+1..] l[0..this.retrieve(this.list1)] l[0..this.retrieve(this.list1)-1] orig(this.list1[post(this.retrieve(this.list1))]) orig(this.list1[post(this.retrieve(this.list1))-1]) orig(this.list1[post(this.retrieve(this.list1))..]) orig(this.list1[post(this.retrieve(this.list1))+1..]) orig(this.list1[0..post(this.retrieve(this.list1))]) orig(this.list1[0..post(this.retrieve(this.list1))-1]) orig(this.list2[post(this.retrieve(this.list1))]) orig(this.list2[post(this.retrieve(this.list1))-1]) orig(this.list2[post(this.retrieve(this.list1))..]) orig(this.list2[post(this.retrieve(this.list1))+1..]) orig(this.list2[0..post(this.retrieve(this.list1))]) orig(this.list2[0..post(this.retrieve(this.list1))-1]) orig(l[post(this.retrieve(this.list1))]) orig(l[post(this.retrieve(this.list1))-1]) orig(l[post(this.retrieve(this.list1))..]) orig(l[post(this.retrieve(this.list1))+1..]) orig(l[0..post(this.retrieve(this.list1))]) orig(l[0..post(this.retrieve(this.list1))-1]) l[this.retrieve(this.list2)] l[this.retrieve(this.list2)-1] l[this.retrieve(this.list2)..] l[this.retrieve(this.list2)+1..] l[0..this.retrieve(this.list2)] l[0..this.retrieve(this.list2)-1] orig(this.list1[post(this.retrieve(this.list2))]) orig(this.list1[post(this.retrieve(this.list2))-1]) orig(this.list1[post(this.retrieve(this.list2))..]) orig(this.list1[post(this.retrieve(this.list2))+1..]) orig(this.list1[0..post(this.retrieve(this.list2))]) orig(this.list1[0..post(this.retrieve(this.list2))-1]) orig(this.list2[post(this.retrieve(this.list2))]) orig(this.list2[post(this.retrieve(this.list2))-1]) orig(this.list2[post(this.retrieve(this.list2))..]) orig(this.list2[post(this.retrieve(this.list2))+1..]) orig(this.list2[0..post(this.retrieve(this.list2))]) orig(this.list2[0..post(this.retrieve(this.list2))-1]) orig(l[post(this.retrieve(this.list2))]) orig(l[post(this.retrieve(this.list2))-1]) orig(l[post(this.retrieve(this.list2))..]) orig(l[post(this.retrieve(this.list2))+1..]) orig(l[0..post(this.retrieve(this.list2))]) orig(l[0..post(this.retrieve(this.list2))-1]) l[return] l[return-1] l[return..] l[return+1..] l[0..return] l[0..return-1] l[orig(this.value)] l[orig(this.value)-1] l[orig(this.value)..] l[orig(this.value)+1..] l[0..orig(this.value)] l[0..orig(this.value)-1] l[orig(this.shift)] l[orig(this.shift)-1] l[orig(this.shift)..] l[orig(this.shift)+1..] l[0..orig(this.shift)] l[0..orig(this.shift)-1] l[orig(this.getValue())] l[orig(this.getValue())-1] l[orig(this.getValue())..] l[orig(this.getValue())+1..] l[0..orig(this.getValue())] l[0..orig(this.getValue())-1] l[orig(this.getShift())] l[orig(this.getShift())-1] l[orig(this.getShift())..] l[orig(this.getShift())+1..] l[0..orig(this.getShift())] l[0..orig(this.getShift())-1] l[orig(this.scale(this.value))] l[orig(this.scale(this.value))-1] l[orig(this.scale(this.value))..] l[orig(this.scale(this.value))+1..] l[0..orig(this.scale(this.value))] l[0..orig(this.scale(this.value))-1] l[orig(this.scale(this.shift))] l[orig(this.scale(this.shift))-1] l[orig(this.scale(this.shift))..] l[orig(this.scale(this.shift))+1..] l[0..orig(this.scale(this.shift))] l[0..orig(this.scale(this.shift))-1] l[orig(this.scale(this.getValue()))] l[orig(this.scale(this.getValue()))-1] l[orig(this.scale(this.getValue()))..] l[orig(this.scale(this.getValue()))+1..] l[0..orig(this.scale(this.getValue()))] l[0..orig(this.scale(this.getValue()))-1] l[orig(this.scale(this.getShift()))] l[orig(this.scale(this.getShift()))-1] l[orig(this.scale(this.getShift()))..] l[orig(this.scale(this.getShift()))+1..] l[0..orig(this.scale(this.getShift()))] l[0..orig(this.scale(this.getShift()))-1] l[orig(this.sum(this.getNum()))] l[orig(this.sum(this.getNum()))-1] l[orig(this.sum(this.getNum()))..] l[orig(this.sum(this.getNum()))+1..] l[0..orig(this.sum(this.getNum()))] l[0..orig(this.sum(this.getNum()))-1] l[orig(this.sum(this.getJWrap()))] l[orig(this.sum(this.getJWrap()))-1] l[orig(this.sum(this.getJWrap()))..] l[orig(this.sum(this.getJWrap()))+1..] l[0..orig(this.sum(this.getJWrap()))] l[0..orig(this.sum(this.getJWrap()))-1] l[orig(this.retrieve(this.list1))] l[orig(this.retrieve(this.list1))-1] l[orig(this.retrieve(this.list1))..] l[orig(this.retrieve(this.list1))+1..] l[0..orig(this.retrieve(this.list1))] l[0..orig(this.retrieve(this.list1))-1] l[orig(this.retrieve(this.list2))] l[orig(this.retrieve(this.list2))-1] l[orig(this.retrieve(this.list2))..] l[orig(this.retrieve(this.list2))+1..] l[0..orig(this.retrieve(this.list2))] l[0..orig(this.retrieve(this.list2))-1] orig(this.list1[post(return)]) orig(this.list1[post(return)-1]) orig(this.list1[post(return)..]) orig(this.list1[post(return)+1..]) orig(this.list1[0..post(return)]) orig(this.list1[0..post(return)-1]) orig(this.list2[post(return)]) orig(this.list2[post(return)-1]) orig(this.list2[post(return)..]) orig(this.list2[post(return)+1..]) orig(this.list2[0..post(return)]) orig(this.list2[0..post(return)-1]) orig(l[post(return)]) orig(l[post(return)-1]) orig(l[post(return)..]) orig(l[post(return)+1..]) orig(l[0..post(return)]) orig(l[0..post(return)-1]) orig(this.list1[this.value]) orig(this.list1[this.value-1]) orig(this.list1[this.value..]) orig(this.list1[this.value+1..]) orig(this.list1[0..this.value]) orig(this.list1[0..this.value-1]) orig(this.list2[this.value]) orig(this.list2[this.value-1]) orig(this.list2[this.value..]) orig(this.list2[this.value+1..]) orig(this.list2[0..this.value]) orig(this.list2[0..this.value-1]) orig(l[this.value]) orig(l[this.value-1]) orig(l[this.value..]) orig(l[this.value+1..]) orig(l[0..this.value]) orig(l[0..this.value-1]) orig(this.list1[this.shift]) orig(this.list1[this.shift-1]) orig(this.list1[this.shift..]) orig(this.list1[this.shift+1..]) orig(this.list1[0..this.shift]) orig(this.list1[0..this.shift-1]) orig(this.list2[this.shift]) orig(this.list2[this.shift-1]) orig(this.list2[this.shift..]) orig(this.list2[this.shift+1..]) orig(this.list2[0..this.shift]) orig(this.list2[0..this.shift-1]) orig(l[this.shift]) orig(l[this.shift-1]) orig(l[this.shift..]) orig(l[this.shift+1..]) orig(l[0..this.shift]) orig(l[0..this.shift-1]) orig(this.list1[this.getValue()]) orig(this.list1[this.getValue()-1]) orig(this.list1[this.getValue()..]) orig(this.list1[this.getValue()+1..]) orig(this.list1[0..this.getValue()]) orig(this.list1[0..this.getValue()-1]) orig(this.list1[this.getShift()]) orig(this.list1[this.getShift()-1]) orig(this.list1[this.getShift()..]) orig(this.list1[this.getShift()+1..]) orig(this.list1[0..this.getShift()]) orig(this.list1[0..this.getShift()-1]) orig(this.list1[this.scale(this.value)]) orig(this.list1[this.scale(this.value)-1]) orig(this.list1[this.scale(this.value)..]) orig(this.list1[this.scale(this.value)+1..]) orig(this.list1[0..this.scale(this.value)]) orig(this.list1[0..this.scale(this.value)-1]) orig(this.list1[this.scale(this.shift)]) orig(this.list1[this.scale(this.shift)-1]) orig(this.list1[this.scale(this.shift)..]) orig(this.list1[this.scale(this.shift)+1..]) orig(this.list1[0..this.scale(this.shift)]) orig(this.list1[0..this.scale(this.shift)-1]) orig(this.list1[this.scale(this.getValue())]) orig(this.list1[this.scale(this.getValue())-1]) orig(this.list1[this.scale(this.getValue())..]) orig(this.list1[this.scale(this.getValue())+1..]) orig(this.list1[0..this.scale(this.getValue())]) orig(this.list1[0..this.scale(this.getValue())-1]) orig(this.list1[this.scale(this.getShift())]) orig(this.list1[this.scale(this.getShift())-1]) orig(this.list1[this.scale(this.getShift())..]) orig(this.list1[this.scale(this.getShift())+1..]) orig(this.list1[0..this.scale(this.getShift())]) orig(this.list1[0..this.scale(this.getShift())-1]) orig(this.list1[this.sum(this.getNum())]) orig(this.list1[this.sum(this.getNum())-1]) orig(this.list1[this.sum(this.getNum())..]) orig(this.list1[this.sum(this.getNum())+1..]) orig(this.list1[0..this.sum(this.getNum())]) orig(this.list1[0..this.sum(this.getNum())-1]) orig(this.list1[this.sum(this.getJWrap())]) orig(this.list1[this.sum(this.getJWrap())-1]) orig(this.list1[this.sum(this.getJWrap())..]) orig(this.list1[this.sum(this.getJWrap())+1..]) orig(this.list1[0..this.sum(this.getJWrap())]) orig(this.list1[0..this.sum(this.getJWrap())-1]) orig(this.list1[this.retrieve(this.list1)]) orig(this.list1[this.retrieve(this.list1)-1]) orig(this.list1[this.retrieve(this.list1)..]) orig(this.list1[this.retrieve(this.list1)+1..]) orig(this.list1[0..this.retrieve(this.list1)]) orig(this.list1[0..this.retrieve(this.list1)-1]) orig(this.list1[this.retrieve(this.list2)]) orig(this.list1[this.retrieve(this.list2)-1]) orig(this.list1[this.retrieve(this.list2)..]) orig(this.list1[this.retrieve(this.list2)+1..]) orig(this.list1[0..this.retrieve(this.list2)]) orig(this.list1[0..this.retrieve(this.list2)-1]) orig(this.list2[this.getValue()]) orig(this.list2[this.getValue()-1]) orig(this.list2[this.getValue()..]) orig(this.list2[this.getValue()+1..]) orig(this.list2[0..this.getValue()]) orig(this.list2[0..this.getValue()-1]) orig(this.list2[this.getShift()]) orig(this.list2[this.getShift()-1]) orig(this.list2[this.getShift()..]) orig(this.list2[this.getShift()+1..]) orig(this.list2[0..this.getShift()]) orig(this.list2[0..this.getShift()-1]) orig(this.list2[this.scale(this.value)]) orig(this.list2[this.scale(this.value)-1]) orig(this.list2[this.scale(this.value)..]) orig(this.list2[this.scale(this.value)+1..]) orig(this.list2[0..this.scale(this.value)]) orig(this.list2[0..this.scale(this.value)-1]) orig(this.list2[this.scale(this.shift)]) orig(this.list2[this.scale(this.shift)-1]) orig(this.list2[this.scale(this.shift)..]) orig(this.list2[this.scale(this.shift)+1..]) orig(this.list2[0..this.scale(this.shift)]) orig(this.list2[0..this.scale(this.shift)-1]) orig(this.list2[this.scale(this.getValue())]) orig(this.list2[this.scale(this.getValue())-1]) orig(this.list2[this.scale(this.getValue())..]) orig(this.list2[this.scale(this.getValue())+1..]) orig(this.list2[0..this.scale(this.getValue())]) orig(this.list2[0..this.scale(this.getValue())-1]) orig(this.list2[this.scale(this.getShift())]) orig(this.list2[this.scale(this.getShift())-1]) orig(this.list2[this.scale(this.getShift())..]) orig(this.list2[this.scale(this.getShift())+1..]) orig(this.list2[0..this.scale(this.getShift())]) orig(this.list2[0..this.scale(this.getShift())-1]) orig(this.list2[this.sum(this.getNum())]) orig(this.list2[this.sum(this.getNum())-1]) orig(this.list2[this.sum(this.getNum())..]) orig(this.list2[this.sum(this.getNum())+1..]) orig(this.list2[0..this.sum(this.getNum())]) orig(this.list2[0..this.sum(this.getNum())-1]) orig(this.list2[this.sum(this.getJWrap())]) orig(this.list2[this.sum(this.getJWrap())-1]) orig(this.list2[this.sum(this.getJWrap())..]) orig(this.list2[this.sum(this.getJWrap())+1..]) orig(this.list2[0..this.sum(this.getJWrap())]) orig(this.list2[0..this.sum(this.getJWrap())-1]) orig(this.list2[this.retrieve(this.list1)]) orig(this.list2[this.retrieve(this.list1)-1]) orig(this.list2[this.retrieve(this.list1)..]) orig(this.list2[this.retrieve(this.list1)+1..]) orig(this.list2[0..this.retrieve(this.list1)]) orig(this.list2[0..this.retrieve(this.list1)-1]) orig(this.list2[this.retrieve(this.list2)]) orig(this.list2[this.retrieve(this.list2)-1]) orig(this.list2[this.retrieve(this.list2)..]) orig(this.list2[this.retrieve(this.list2)+1..]) orig(this.list2[0..this.retrieve(this.list2)]) orig(this.list2[0..this.retrieve(this.list2)-1]) orig(l[this.getValue()]) orig(l[this.getValue()-1]) orig(l[this.getValue()..]) orig(l[this.getValue()+1..]) orig(l[0..this.getValue()]) orig(l[0..this.getValue()-1]) orig(l[this.getShift()]) orig(l[this.getShift()-1]) orig(l[this.getShift()..]) orig(l[this.getShift()+1..]) orig(l[0..this.getShift()]) orig(l[0..this.getShift()-1]) orig(l[this.scale(this.value)]) orig(l[this.scale(this.value)-1]) orig(l[this.scale(this.value)..]) orig(l[this.scale(this.value)+1..]) orig(l[0..this.scale(this.value)]) orig(l[0..this.scale(this.value)-1]) orig(l[this.scale(this.shift)]) orig(l[this.scale(this.shift)-1]) orig(l[this.scale(this.shift)..]) orig(l[this.scale(this.shift)+1..]) orig(l[0..this.scale(this.shift)]) orig(l[0..this.scale(this.shift)-1]) orig(l[this.scale(this.getValue())]) orig(l[this.scale(this.getValue())-1]) orig(l[this.scale(this.getValue())..]) orig(l[this.scale(this.getValue())+1..]) orig(l[0..this.scale(this.getValue())]) orig(l[0..this.scale(this.getValue())-1]) orig(l[this.scale(this.getShift())]) orig(l[this.scale(this.getShift())-1]) orig(l[this.scale(this.getShift())..]) orig(l[this.scale(this.getShift())+1..]) orig(l[0..this.scale(this.getShift())]) orig(l[0..this.scale(this.getShift())-1]) orig(l[this.sum(this.getNum())]) orig(l[this.sum(this.getNum())-1]) orig(l[this.sum(this.getNum())..]) orig(l[this.sum(this.getNum())+1..]) orig(l[0..this.sum(this.getNum())]) orig(l[0..this.sum(this.getNum())-1]) orig(l[this.sum(this.getJWrap())]) orig(l[this.sum(this.getJWrap())-1]) orig(l[this.sum(this.getJWrap())..]) orig(l[this.sum(this.getJWrap())+1..]) orig(l[0..this.sum(this.getJWrap())]) orig(l[0..this.sum(this.getJWrap())-1]) orig(l[this.retrieve(this.list1)]) orig(l[this.retrieve(this.list1)-1]) orig(l[this.retrieve(this.list1)..]) orig(l[this.retrieve(this.list1)+1..]) orig(l[0..this.retrieve(this.list1)]) orig(l[0..this.retrieve(this.list1)-1]) orig(l[this.retrieve(this.list2)]) orig(l[this.retrieve(this.list2)-1]) orig(l[this.retrieve(this.list2)..]) orig(l[this.retrieve(this.list2)+1..]) orig(l[0..this.retrieve(this.list2)]) orig(l[0..this.retrieve(this.list2)-1]) @@ -241,14 +241,14 @@ this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.list2.getClass().getName() == \old(l.getClass().getName()) this.getShift() == \result this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) -this.sum() == \old(this.sum()) -this.retrieve() == \result -this.retrieve() == \result +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) +this.retrieve(this.list1) == \result +this.retrieve(this.list2) == \result daikon.Quant.pairwiseEqual(l, \old(l)) \result == \old(this.shift) \result == \old(this.getShift()) -\result == \old(this.retrieve()) -\result == \old(this.retrieve()) +\result == \old(this.retrieve(this.list1)) +\result == \old(this.retrieve(this.list2)) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) daikon.Quant.noDups(l) daikon.Quant.eltsNotEqual(l, null) @@ -257,7 +257,7 @@ daikon.Quant.eltsEqual(daikon.Quant.typeArray(l), "java.lang.Integer") \result == 0 || \result == 5 || \result == 10 \result % 5 == 0 daikon.Quant.memberOf(this.getNum().getClass().getName() , daikon.Quant.typeArray(l) ) -this.sum() != daikon.Quant.size(l)-1 +this.sum(this.getNum()) != daikon.Quant.size(l)-1 \result <= daikon.Quant.size(this.list1)-1 \result < daikon.Quant.size(l)-1 =========================================================================== @@ -274,8 +274,8 @@ this.value == \old(this.getValue()) this.value == \old(scale) this.shift == \old(this.shift) this.shift == \old(this.getShift()) -this.shift == \old(this.retrieve()) -this.shift == \old(this.retrieve()) +this.shift == \old(this.retrieve(this.list1)) +this.shift == \old(this.retrieve(this.list2)) this.heavy == \old(this.heavy) this.heavy == \old(this.isHeavy()) this.list1 == \old(this.list1) @@ -284,17 +284,17 @@ this.list2 == \old(this.list2) daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) -this.scale() == \result -this.scale() == \result -this.sum() == \old(this.sum()) -\result == \old(this.scale()) -\result == \old(this.scale()) +this.scale(this.value) == \result +this.scale(this.getValue()) == \result +this.sum(this.getNum()) == \old(this.sum(this.getJWrap())) +\result == \old(this.scale(this.value)) +\result == \old(this.scale(this.getValue())) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) this.shift % 5 == 0 (!(\result == 0)) || (this.value == 0) (!(this.value == 0)) || (\result == 0) -(!(\result == 0)) || (this.sum() == 0) -(!(this.sum() == 0)) || (\result == 0) +(!(\result == 0)) || (this.sum(this.getNum()) == 0) +(!(this.sum(this.getNum()) == 0)) || (\result == 0) =========================================================================== misc.Purity.sum(java.lang.Number):::ENTER Variables: this this.value this.shift this.heavy this.list1 this.list1[] this.list1[].getClass().getName() this.list2 this.list2[] this.list2[].getClass().getName() this.list2.getClass().getName() this.getValue() this.getShift() this.isHeavy() this.getNum() this.getNum().getClass().getName() this.getJWrap() this.scale(this.value) this.scale(this.shift) this.scale(this.getValue()) this.scale(this.getShift()) this.sum(this.getNum()) this.sum(this.getJWrap()) this.retrieve(this.list1) this.retrieve(this.list2) n n.getClass().getName() size(this.list1[]) size(this.list1[])-1 size(this.list2[]) size(this.list2[])-1 this.list1[this.value] this.list1[this.value-1] this.list1[this.value..] this.list1[this.value+1..] this.list1[0..this.value] this.list1[0..this.value-1] this.list2[this.value] this.list2[this.value-1] this.list2[this.value..] this.list2[this.value+1..] this.list2[0..this.value] this.list2[0..this.value-1] this.list1[this.shift] this.list1[this.shift-1] this.list1[this.shift..] this.list1[this.shift+1..] this.list1[0..this.shift] this.list1[0..this.shift-1] this.list2[this.shift] this.list2[this.shift-1] this.list2[this.shift..] this.list2[this.shift+1..] this.list2[0..this.shift] this.list2[0..this.shift-1] this.list1[this.getValue()] this.list1[this.getValue()-1] this.list1[this.getValue()..] this.list1[this.getValue()+1..] this.list1[0..this.getValue()] this.list1[0..this.getValue()-1] this.list1[this.getShift()] this.list1[this.getShift()-1] this.list1[this.getShift()..] this.list1[this.getShift()+1..] this.list1[0..this.getShift()] this.list1[0..this.getShift()-1] this.list1[this.scale(this.value)] this.list1[this.scale(this.value)-1] this.list1[this.scale(this.value)..] this.list1[this.scale(this.value)+1..] this.list1[0..this.scale(this.value)] this.list1[0..this.scale(this.value)-1] this.list1[this.scale(this.shift)] this.list1[this.scale(this.shift)-1] this.list1[this.scale(this.shift)..] this.list1[this.scale(this.shift)+1..] this.list1[0..this.scale(this.shift)] this.list1[0..this.scale(this.shift)-1] this.list1[this.scale(this.getValue())] this.list1[this.scale(this.getValue())-1] this.list1[this.scale(this.getValue())..] this.list1[this.scale(this.getValue())+1..] this.list1[0..this.scale(this.getValue())] this.list1[0..this.scale(this.getValue())-1] this.list1[this.scale(this.getShift())] this.list1[this.scale(this.getShift())-1] this.list1[this.scale(this.getShift())..] this.list1[this.scale(this.getShift())+1..] this.list1[0..this.scale(this.getShift())] this.list1[0..this.scale(this.getShift())-1] this.list1[this.sum(this.getNum())] this.list1[this.sum(this.getNum())-1] this.list1[this.sum(this.getNum())..] this.list1[this.sum(this.getNum())+1..] this.list1[0..this.sum(this.getNum())] this.list1[0..this.sum(this.getNum())-1] this.list1[this.sum(this.getJWrap())] this.list1[this.sum(this.getJWrap())-1] this.list1[this.sum(this.getJWrap())..] this.list1[this.sum(this.getJWrap())+1..] this.list1[0..this.sum(this.getJWrap())] this.list1[0..this.sum(this.getJWrap())-1] this.list1[this.retrieve(this.list1)] this.list1[this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list1)..] this.list1[this.retrieve(this.list1)+1..] this.list1[0..this.retrieve(this.list1)] this.list1[0..this.retrieve(this.list1)-1] this.list1[this.retrieve(this.list2)] this.list1[this.retrieve(this.list2)-1] this.list1[this.retrieve(this.list2)..] this.list1[this.retrieve(this.list2)+1..] this.list1[0..this.retrieve(this.list2)] this.list1[0..this.retrieve(this.list2)-1] this.list2[this.getValue()] this.list2[this.getValue()-1] this.list2[this.getValue()..] this.list2[this.getValue()+1..] this.list2[0..this.getValue()] this.list2[0..this.getValue()-1] this.list2[this.getShift()] this.list2[this.getShift()-1] this.list2[this.getShift()..] this.list2[this.getShift()+1..] this.list2[0..this.getShift()] this.list2[0..this.getShift()-1] this.list2[this.scale(this.value)] this.list2[this.scale(this.value)-1] this.list2[this.scale(this.value)..] this.list2[this.scale(this.value)+1..] this.list2[0..this.scale(this.value)] this.list2[0..this.scale(this.value)-1] this.list2[this.scale(this.shift)] this.list2[this.scale(this.shift)-1] this.list2[this.scale(this.shift)..] this.list2[this.scale(this.shift)+1..] this.list2[0..this.scale(this.shift)] this.list2[0..this.scale(this.shift)-1] this.list2[this.scale(this.getValue())] this.list2[this.scale(this.getValue())-1] this.list2[this.scale(this.getValue())..] this.list2[this.scale(this.getValue())+1..] this.list2[0..this.scale(this.getValue())] this.list2[0..this.scale(this.getValue())-1] this.list2[this.scale(this.getShift())] this.list2[this.scale(this.getShift())-1] this.list2[this.scale(this.getShift())..] this.list2[this.scale(this.getShift())+1..] this.list2[0..this.scale(this.getShift())] this.list2[0..this.scale(this.getShift())-1] this.list2[this.sum(this.getNum())] this.list2[this.sum(this.getNum())-1] this.list2[this.sum(this.getNum())..] this.list2[this.sum(this.getNum())+1..] this.list2[0..this.sum(this.getNum())] this.list2[0..this.sum(this.getNum())-1] this.list2[this.sum(this.getJWrap())] this.list2[this.sum(this.getJWrap())-1] this.list2[this.sum(this.getJWrap())..] this.list2[this.sum(this.getJWrap())+1..] this.list2[0..this.sum(this.getJWrap())] this.list2[0..this.sum(this.getJWrap())-1] this.list2[this.retrieve(this.list1)] this.list2[this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list1)..] this.list2[this.retrieve(this.list1)+1..] this.list2[0..this.retrieve(this.list1)] this.list2[0..this.retrieve(this.list1)-1] this.list2[this.retrieve(this.list2)] this.list2[this.retrieve(this.list2)-1] this.list2[this.retrieve(this.list2)..] this.list2[this.retrieve(this.list2)+1..] this.list2[0..this.retrieve(this.list2)] this.list2[0..this.retrieve(this.list2)-1] @@ -309,8 +309,8 @@ this.value == \old(this.value) this.value == \old(this.getValue()) this.shift == \old(this.shift) this.shift == \old(this.getShift()) -this.shift == \old(this.retrieve()) -this.shift == \old(this.retrieve()) +this.shift == \old(this.retrieve(this.list1)) +this.shift == \old(this.retrieve(this.list2)) this.heavy == \old(this.heavy) this.heavy == \old(this.isHeavy()) this.list1 == \old(this.list1) @@ -320,16 +320,16 @@ daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)) this.list2.getClass().getName() == \old(this.list2.getClass().getName()) this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()) this.getNum().getClass().getName() == \old(n.getClass().getName()) -this.sum() == \result -this.sum() == \result -\result == \old(this.sum()) -\result == \old(this.sum()) +this.sum(this.getNum()) == \result +this.sum(this.getJWrap()) == \result +\result == \old(this.sum(this.getNum())) +\result == \old(this.sum(this.getJWrap())) daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)) this.shift % 5 == 0 \result % 2 == 0 (!(\result == 0)) || (this.value == 0) (!(this.value == 0)) || (\result == 0) 2 * this.value - \result == 0 -(!(\result == 0)) || (this.scale() == 0) -(!(this.scale() == 0)) || (\result == 0) +(!(\result == 0)) || (this.scale(this.value) == 0) +(!(this.scale(this.value) == 0)) || (\result == 0) \result != daikon.Quant.size(this.list1) diff --git a/tests/daikon-tests/purity/purity.txt-merge-jml.goal b/tests/daikon-tests/purity/purity.txt-merge-jml.goal index 00c0c3d68c..cc76fb8908 100644 --- a/tests/daikon-tests/purity/purity.txt-merge-jml.goal +++ b/tests/daikon-tests/purity/purity.txt-merge-jml.goal @@ -7,10 +7,10 @@ import java.util.List; public class Purity { /*@ invariant this.value == this.getValue(); */ /*@ invariant this.shift == this.getShift(); */ - /*@ invariant this.shift == this.retrieve(); */ - /*@ invariant this.shift == this.retrieve(); */ + /*@ invariant this.shift == this.retrieve(this.list1); */ + /*@ invariant this.shift == this.retrieve(this.list2); */ /*@ invariant this.heavy == this.isHeavy(); */ - /*@ invariant this.sum() == this.sum(); */ + /*@ invariant this.sum(this.getNum()) == this.sum(this.getJWrap()); */ /*@ invariant daikon.Quant.size(this.list1) == daikon.Quant.size(this.list2); */ /*@ invariant this.shift == 0 || this.shift == 5 || this.shift == 10; */ /*@ invariant this.list1 != null; */ @@ -23,19 +23,19 @@ public class Purity { /*@ invariant this.getNum() != null; */ /*@ invariant this.getNum().getClass().getName() == java.lang.Integer.class.getName(); */ /*@ invariant this.getJWrap() != null; */ - /*@ invariant this.sum() % 2 == 0; */ + /*@ invariant this.sum(this.getNum()) % 2 == 0; */ /*@ invariant daikon.Quant.size(this.list1) == 11; */ - /*@ invariant (!(this.scale() == 0)) || (this.value == 0); */ - /*@ invariant (!(this.value == 0)) || (this.scale() == 0); */ - /*@ invariant this.value <= this.scale(); */ - /*@ invariant (!(this.sum() == 0)) || (this.value == 0); */ - /*@ invariant (!(this.value == 0)) || (this.sum() == 0); */ - /*@ invariant 2 * this.value - this.sum() == 0; */ + /*@ invariant (!(this.scale(this.value) == 0)) || (this.value == 0); */ + /*@ invariant (!(this.value == 0)) || (this.scale(this.value) == 0); */ + /*@ invariant this.value <= this.scale(this.shift); */ + /*@ invariant (!(this.sum(this.getNum()) == 0)) || (this.value == 0); */ + /*@ invariant (!(this.value == 0)) || (this.sum(this.getNum()) == 0); */ + /*@ invariant 2 * this.value - this.sum(this.getNum()) == 0; */ /*@ invariant this.shift <= daikon.Quant.size(this.list1)-1; */ /*@ invariant this.list2.getClass().getName() != this.getNum().getClass().getName(); */ - /*@ invariant (!(this.scale() == 0)) || (this.sum() == 0); */ - /*@ invariant (!(this.sum() == 0)) || (this.scale() == 0); */ - /*@ invariant this.sum() != daikon.Quant.size(this.list1); */ + /*@ invariant (!(this.scale(this.value) == 0)) || (this.sum(this.getNum()) == 0); */ + /*@ invariant (!(this.sum(this.getNum()) == 0)) || (this.scale(this.value) == 0); */ + /*@ invariant this.sum(this.getNum()) != daikon.Quant.size(this.list1); */ /*@ spec_public */ private int value; /*@ spec_public */ private int shift; /*@ spec_public */ private boolean heavy; @@ -68,8 +68,8 @@ public class Purity { @ ensures this.value == \result; @ ensures this.shift == \old(this.shift); @ ensures this.shift == \old(this.getShift()); - @ ensures this.shift == \old(this.retrieve()); - @ ensures this.shift == \old(this.retrieve()); + @ ensures this.shift == \old(this.retrieve(this.list1)); + @ ensures this.shift == \old(this.retrieve(this.list2)); @ ensures this.heavy == \old(this.heavy); @ ensures this.heavy == \old(this.isHeavy()); @ ensures this.list1 == \old(this.list1); @@ -79,16 +79,16 @@ public class Purity { @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.getValue() == \result; @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); - @ ensures this.sum() == \old(this.sum()); + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); @ ensures \result == \old(this.value); @ ensures \result == \old(this.getValue()); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures this.shift % 5 == 0; - @ ensures (!(\result == 0)) || (this.scale() == 0); - @ ensures (!(this.scale() == 0)) || (\result == 0); - @ ensures this.scale() >= \result; - @ ensures (!(\result == 0)) || (this.sum() == 0); - @ ensures (!(this.sum() == 0)) || (\result == 0); + @ ensures (!(\result == 0)) || (this.scale(this.value) == 0); + @ ensures (!(this.scale(this.value) == 0)) || (\result == 0); + @ ensures this.scale(this.shift) >= \result; + @ ensures (!(\result == 0)) || (this.sum(this.getNum()) == 0); + @ ensures (!(this.sum(this.getNum()) == 0)) || (\result == 0); @*/ public int getValue() { return value; @@ -109,13 +109,13 @@ public class Purity { @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.getShift() == \result; @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); - @ ensures this.sum() == \old(this.sum()); - @ ensures this.retrieve() == \result; - @ ensures this.retrieve() == \result; + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); + @ ensures this.retrieve(this.list1) == \result; + @ ensures this.retrieve(this.list2) == \result; @ ensures \result == \old(this.shift); @ ensures \result == \old(this.getShift()); - @ ensures \result == \old(this.retrieve()); - @ ensures \result == \old(this.retrieve()); + @ ensures \result == \old(this.retrieve(this.list1)); + @ ensures \result == \old(this.retrieve(this.list2)); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures \result == 0 || \result == 5 || \result == 10; @ ensures \result % 5 == 0; @@ -131,8 +131,8 @@ public class Purity { @ ensures this.value == \old(this.getValue()); @ ensures this.shift == \old(this.shift); @ ensures this.shift == \old(this.getShift()); - @ ensures this.shift == \old(this.retrieve()); - @ ensures this.shift == \old(this.retrieve()); + @ ensures this.shift == \old(this.retrieve(this.list1)); + @ ensures this.shift == \old(this.retrieve(this.list2)); @ ensures this.heavy == \result; @ ensures this.list1 == \old(this.list1); @ ensures daikon.Quant.pairwiseEqual(this.list1, \old(this.list1)); @@ -141,28 +141,28 @@ public class Purity { @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.isHeavy() == \result; @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); - @ ensures this.sum() == \old(this.sum()); + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); @ ensures \result == \old(this.heavy); @ ensures \result == \old(this.isHeavy()); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures (this.shift == 0) <==> (\result == false); - @ ensures (this.shift == 0) <==> (this.value == this.scale()); - @ ensures (this.shift == 0) ==> ((!(this.scale() == 0)) || (this.sum() == 0)); - @ ensures (this.shift == 0) ==> ((!(this.sum() == 0)) || (this.scale() == 0)); - @ ensures (this.shift == 0) ==> (2 * this.scale() - this.sum() == 0); - @ ensures (this.shift == 0) ==> (2 * this.scale() - this.sum() == 0); + @ ensures (this.shift == 0) <==> (this.value == this.scale(this.shift)); + @ ensures (this.shift == 0) ==> ((!(this.scale(this.shift) == 0)) || (this.sum(this.getNum()) == 0)); + @ ensures (this.shift == 0) ==> ((!(this.sum(this.getNum()) == 0)) || (this.scale(this.shift) == 0)); + @ ensures (this.shift == 0) ==> (2 * this.scale(this.shift) - this.sum(this.getNum()) == 0); + @ ensures (this.shift == 0) ==> (2 * this.scale(this.value) - this.sum(this.getNum()) == 0); @ ensures (this.shift == 0) ==> (daikon.Quant.eltsEqual(daikon.Quant.slice(this.list1, 0, this.shift), daikon.Quant.getElement_Object(this.list1, this.shift))); @ ensures (this.shift == 0) ==> (daikon.Quant.eltsEqual(daikon.Quant.slice(this.list2, 0, this.shift), daikon.Quant.getElement_Object(this.list2, this.shift))); @ ensures (this.shift == 0) ==> (this.shift < daikon.Quant.size(this.list1)-1); @ ensures (this.shift == 0) ==> (this.shift is a pointer); - @ ensures (this.shift == 0) ==> (this.value == this.scale()); + @ ensures (this.shift == 0) ==> (this.value == this.scale(this.value)); @ ensures (this.shift == 5 || this.shift == 10) <==> (\result == true); - @ ensures (this.shift == 5 || this.shift == 10) <==> (this.value < this.scale()); - @ ensures (this.shift == 5 || this.shift == 10) ==> (30 * this.shift - 2 * this.scale() + this.sum() - 100 == 0); - @ ensures (this.shift == 5 || this.shift == 10) ==> (this.scale() != daikon.Quant.size(this.list1)-1); - @ ensures (this.shift == 5 || this.shift == 10) ==> (this.shift != this.scale()); + @ ensures (this.shift == 5 || this.shift == 10) <==> (this.value < this.scale(this.shift)); + @ ensures (this.shift == 5 || this.shift == 10) ==> (30 * this.shift - 2 * this.scale(this.shift) + this.sum(this.getNum()) - 100 == 0); + @ ensures (this.shift == 5 || this.shift == 10) ==> (this.scale(this.value) != daikon.Quant.size(this.list1)-1); + @ ensures (this.shift == 5 || this.shift == 10) ==> (this.shift != this.scale(this.value)); @ ensures (this.shift == 5 || this.shift == 10) ==> (this.shift % 5 == 0); - @ ensures (this.shift == 5 || this.shift == 10) ==> (this.value + 15 * this.shift - this.scale() - 50 == 0); + @ ensures (this.shift == 5 || this.shift == 10) ==> (this.value + 15 * this.shift - this.scale(this.shift) - 50 == 0); @*/ public boolean isHeavy() { return heavy; @@ -175,8 +175,8 @@ public class Purity { @ ensures this.value == \old(this.getValue()); @ ensures this.shift == \old(this.shift); @ ensures this.shift == \old(this.getShift()); - @ ensures this.shift == \old(this.retrieve()); - @ ensures this.shift == \old(this.retrieve()); + @ ensures this.shift == \old(this.retrieve(this.list1)); + @ ensures this.shift == \old(this.retrieve(this.list2)); @ ensures this.heavy == \old(this.heavy); @ ensures this.heavy == \old(this.isHeavy()); @ ensures this.list1 == \old(this.list1); @@ -185,7 +185,7 @@ public class Purity { @ ensures daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)); @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.getNum().getClass().getName() == \result.getClass().getName(); - @ ensures this.sum() == \old(this.sum()); + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); @ ensures \result.getClass().getName() == \old(this.getNum().getClass().getName()); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures this.shift % 5 == 0; @@ -204,8 +204,8 @@ public class Purity { @ ensures this.value == \old(this.getValue()); @ ensures this.shift == \old(this.shift); @ ensures this.shift == \old(this.getShift()); - @ ensures this.shift == \old(this.retrieve()); - @ ensures this.shift == \old(this.retrieve()); + @ ensures this.shift == \old(this.retrieve(this.list1)); + @ ensures this.shift == \old(this.retrieve(this.list2)); @ ensures this.heavy == \old(this.heavy); @ ensures this.heavy == \old(this.isHeavy()); @ ensures this.list1 == \old(this.list1); @@ -214,7 +214,7 @@ public class Purity { @ ensures daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)); @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); - @ ensures this.sum() == \old(this.sum()); + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures this.shift % 5 == 0; @ ensures \result != null; @@ -232,8 +232,8 @@ public class Purity { @ ensures this.value == \old(scale); @ ensures this.shift == \old(this.shift); @ ensures this.shift == \old(this.getShift()); - @ ensures this.shift == \old(this.retrieve()); - @ ensures this.shift == \old(this.retrieve()); + @ ensures this.shift == \old(this.retrieve(this.list1)); + @ ensures this.shift == \old(this.retrieve(this.list2)); @ ensures this.heavy == \old(this.heavy); @ ensures this.heavy == \old(this.isHeavy()); @ ensures this.list1 == \old(this.list1); @@ -242,17 +242,17 @@ public class Purity { @ ensures daikon.Quant.pairwiseEqual(this.list2, \old(this.list2)); @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); - @ ensures this.scale() == \result; - @ ensures this.scale() == \result; - @ ensures this.sum() == \old(this.sum()); - @ ensures \result == \old(this.scale()); - @ ensures \result == \old(this.scale()); + @ ensures this.scale(this.value) == \result; + @ ensures this.scale(this.getValue()) == \result; + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); + @ ensures \result == \old(this.scale(this.value)); + @ ensures \result == \old(this.scale(this.getValue())); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures this.shift % 5 == 0; @ ensures (!(\result == 0)) || (this.value == 0); @ ensures (!(this.value == 0)) || (\result == 0); - @ ensures (!(\result == 0)) || (this.sum() == 0); - @ ensures (!(this.sum() == 0)) || (\result == 0); + @ ensures (!(\result == 0)) || (this.sum(this.getNum()) == 0); + @ ensures (!(this.sum(this.getNum()) == 0)) || (\result == 0); @*/ public int scale(int scale) { return value + shift * scale; @@ -267,8 +267,8 @@ public class Purity { @ ensures this.value == \old(this.getValue()); @ ensures this.shift == \old(this.shift); @ ensures this.shift == \old(this.getShift()); - @ ensures this.shift == \old(this.retrieve()); - @ ensures this.shift == \old(this.retrieve()); + @ ensures this.shift == \old(this.retrieve(this.list1)); + @ ensures this.shift == \old(this.retrieve(this.list2)); @ ensures this.heavy == \old(this.heavy); @ ensures this.heavy == \old(this.isHeavy()); @ ensures this.list1 == \old(this.list1); @@ -278,18 +278,18 @@ public class Purity { @ ensures this.list2.getClass().getName() == \old(this.list2.getClass().getName()); @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); @ ensures this.getNum().getClass().getName() == \old(n.getClass().getName()); - @ ensures this.sum() == \result; - @ ensures this.sum() == \result; - @ ensures \result == \old(this.sum()); - @ ensures \result == \old(this.sum()); + @ ensures this.sum(this.getNum()) == \result; + @ ensures this.sum(this.getJWrap()) == \result; + @ ensures \result == \old(this.sum(this.getNum())); + @ ensures \result == \old(this.sum(this.getJWrap())); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures this.shift % 5 == 0; @ ensures \result % 2 == 0; @ ensures (!(\result == 0)) || (this.value == 0); @ ensures (!(this.value == 0)) || (\result == 0); @ ensures 2 * this.value - \result == 0; - @ ensures (!(\result == 0)) || (this.scale() == 0); - @ ensures (!(this.scale() == 0)) || (\result == 0); + @ ensures (!(\result == 0)) || (this.scale(this.value) == 0); + @ ensures (!(this.scale(this.value) == 0)) || (\result == 0); @ ensures \result != daikon.Quant.size(this.list1); @*/ public int sum(Number n) { @@ -305,7 +305,7 @@ public class Purity { @ requires daikon.Quant.eltsNotEqual(l, null); @ requires daikon.Quant.size(l) == 20; @ requires this.shift < daikon.Quant.size(l)-1; - @ requires this.sum() != daikon.Quant.size(l)-1; + @ requires this.sum(this.getNum()) != daikon.Quant.size(l)-1; @ ensures this.value == \old(this.value); @ ensures this.value == \old(this.getValue()); @ ensures this.shift == \result; @@ -319,20 +319,20 @@ public class Purity { @ ensures this.list2.getClass().getName() == \old(l.getClass().getName()); @ ensures this.getShift() == \result; @ ensures this.getNum().getClass().getName() == \old(this.getNum().getClass().getName()); - @ ensures this.sum() == \old(this.sum()); - @ ensures this.retrieve() == \result; - @ ensures this.retrieve() == \result; + @ ensures this.sum(this.getNum()) == \old(this.sum(this.getJWrap())); + @ ensures this.retrieve(this.list1) == \result; + @ ensures this.retrieve(this.list2) == \result; @ ensures daikon.Quant.pairwiseEqual(l, \old(l)); @ ensures \result == \old(this.shift); @ ensures \result == \old(this.getShift()); - @ ensures \result == \old(this.retrieve()); - @ ensures \result == \old(this.retrieve()); + @ ensures \result == \old(this.retrieve(this.list1)); + @ ensures \result == \old(this.retrieve(this.list2)); @ ensures daikon.Quant.size(this.list1) == \old(daikon.Quant.size(this.list2)); @ ensures daikon.Quant.noDups(l); @ ensures daikon.Quant.eltsNotEqual(l, null); @ ensures \result == 0 || \result == 5 || \result == 10; @ ensures \result % 5 == 0; - @ ensures this.sum() != daikon.Quant.size(l)-1; + @ ensures this.sum(this.getNum()) != daikon.Quant.size(l)-1; @ ensures \result <= daikon.Quant.size(this.list1)-1; @ ensures \result < daikon.Quant.size(l)-1; @*/ diff --git a/tests/daikon-tests/redblack/rbt.txt-chicory.goal b/tests/daikon-tests/redblack/rbt.txt-chicory.goal index 3a2224190d..eb3d3b77e6 100644 --- a/tests/daikon-tests/redblack/rbt.txt-chicory.goal +++ b/tests/daikon-tests/redblack/rbt.txt-chicory.goal @@ -1,5 +1,5 @@ // Declarations for DataStructures.RedBlackTree -// Declarations written Thu Jun 04 13:16:17 PDT 2015 +// Declarations written Mon Jul 31 13:02:35 PDT 2017 decl-version 2.0 var-comparability none @@ -7,7 +7,7 @@ var-comparability none ppt DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::ENTER ppt-type enter variable negInf - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param @@ -18,17 +18,17 @@ variable negInf.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args negInf - flags synthetic classname + flags synthetic classname non_null comparability 22 ppt DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::EXIT32 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param + flags is_param non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -51,7 +51,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -74,7 +74,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -118,7 +118,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -150,7 +150,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode comparability 22 @@ -168,7 +168,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -191,7 +191,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -235,7 +235,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags synthetic classname + flags synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -267,7 +267,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -275,7 +275,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -283,7 +283,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -303,7 +303,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -328,7 +328,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -377,7 +377,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -413,7 +413,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -433,7 +433,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -458,7 +458,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -507,7 +507,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -543,7 +543,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -563,7 +563,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -588,7 +588,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -637,7 +637,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -673,7 +673,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -693,7 +693,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -718,7 +718,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -767,7 +767,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -803,7 +803,7 @@ variable DataStructures.RedBlackTree.great.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable negInf - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod @@ -814,17 +814,17 @@ variable negInf.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args negInf - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -849,7 +849,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -874,7 +874,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -923,7 +923,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -959,7 +959,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -979,7 +979,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -1004,7 +1004,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -1053,7 +1053,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -1089,7 +1089,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -1097,7 +1097,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -1105,7 +1105,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -1125,7 +1125,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -1150,7 +1150,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -1199,7 +1199,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -1235,7 +1235,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -1255,7 +1255,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -1280,7 +1280,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -1329,7 +1329,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -1365,7 +1365,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -1385,7 +1385,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -1410,7 +1410,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -1459,7 +1459,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -1495,7 +1495,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -1515,7 +1515,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -1540,7 +1540,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -1589,7 +1589,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -1624,29 +1624,42 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable item - var-kind variable +variable negInf + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod comparability 22 -variable item.getClass().getName() +variable negInf.getClass().getName() var-kind function getClass().getName() - enclosing-var item + enclosing-var negInf dec-type java.lang.Class rep-type java.lang.String - function-args item - flags nomod synthetic classname + function-args negInf + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -ppt-type subexit +ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -1671,7 +1684,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -1696,7 +1709,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -1745,7 +1758,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -1781,7 +1794,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -1801,7 +1814,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -1826,7 +1839,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -1875,7 +1888,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -1911,7 +1924,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -1919,7 +1932,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -1927,7 +1940,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -1947,7 +1960,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -1972,7 +1985,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -2021,7 +2034,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -2057,7 +2070,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -2077,7 +2090,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -2102,7 +2115,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -2151,7 +2164,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -2187,7 +2200,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -2207,7 +2220,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -2232,7 +2245,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -2281,7 +2294,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -2317,7 +2330,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -2337,7 +2350,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -2362,7 +2375,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -2411,7 +2424,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -2447,7 +2460,7 @@ variable DataStructures.RedBlackTree.great.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable item - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod @@ -2458,17 +2471,17 @@ variable item.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args item - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT56 +ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -2493,7 +2506,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -2518,7 +2531,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -2567,7 +2580,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -2603,7 +2616,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -2623,7 +2636,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -2648,7 +2661,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -2697,7 +2710,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -2733,7 +2746,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -2741,7 +2754,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -2749,7 +2762,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -2769,7 +2782,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -2794,7 +2807,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -2843,7 +2856,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -2879,7 +2892,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -2899,7 +2912,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -2924,7 +2937,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -2973,7 +2986,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -3009,7 +3022,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3029,7 +3042,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -3054,7 +3067,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -3103,7 +3116,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -3139,7 +3152,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3159,7 +3172,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -3184,7 +3197,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -3233,7 +3246,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -3269,7 +3282,7 @@ variable DataStructures.RedBlackTree.great.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable item - var-kind variable + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod @@ -3280,17 +3293,17 @@ variable item.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args item - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.remove(DataStructures.Comparable):::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT56 +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -3315,7 +3328,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -3340,7 +3353,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -3389,7 +3402,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -3425,7 +3438,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3445,7 +3458,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -3470,7 +3483,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -3519,7 +3532,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -3555,7 +3568,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -3563,7 +3576,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -3571,7 +3584,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3591,7 +3604,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -3616,7 +3629,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -3665,7 +3678,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -3701,7 +3714,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3721,7 +3734,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -3746,7 +3759,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -3795,7 +3808,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -3831,7 +3844,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3851,7 +3864,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -3876,7 +3889,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -3925,7 +3938,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -3961,7 +3974,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -3981,7 +3994,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -4006,7 +4019,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -4055,7 +4068,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -4090,29 +4103,29 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable x - var-kind variable +variable item + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod comparability 22 -variable x.getClass().getName() +variable item.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var item dec-type java.lang.Class rep-type java.lang.String - function-args x - flags nomod synthetic classname + function-args item + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.remove(DataStructures.Comparable):::EXIT75 +ppt DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -4137,7 +4150,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -4162,7 +4175,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -4211,7 +4224,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -4247,7 +4260,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -4267,7 +4280,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -4292,7 +4305,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -4341,7 +4354,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -4377,7 +4390,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -4385,7 +4398,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -4393,7 +4406,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -4413,7 +4426,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -4438,7 +4451,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -4487,7 +4500,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -4523,7 +4536,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -4543,7 +4556,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -4568,7 +4581,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -4617,7 +4630,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -4653,7 +4666,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -4673,7 +4686,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -4698,7 +4711,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -4747,7 +4760,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -4783,7 +4796,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -4803,7 +4816,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -4828,7 +4841,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -4877,7 +4890,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -4912,29 +4925,42 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable x - var-kind variable +variable item + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod comparability 22 -variable x.getClass().getName() +variable item.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var item dec-type java.lang.Class rep-type java.lang.String - function-args x - flags nomod synthetic classname + function-args item + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.findMin():::ENTER +ppt DataStructures.RedBlackTree.remove(DataStructures.Comparable):::ENTER ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -4959,7 +4985,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -4984,7 +5010,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -5033,7 +5059,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -5069,7 +5095,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -5089,7 +5115,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -5114,7 +5140,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -5163,7 +5189,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -5199,7 +5225,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -5207,7 +5233,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -5215,7 +5241,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -5235,7 +5261,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -5260,7 +5286,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -5309,7 +5335,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -5345,7 +5371,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -5365,7 +5391,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -5390,7 +5416,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -5439,7 +5465,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -5475,7 +5501,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -5495,7 +5521,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -5520,7 +5546,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -5569,7 +5595,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -5605,7 +5631,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -5625,7 +5651,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -5650,7 +5676,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -5699,7 +5725,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -5734,15 +5760,29 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.findMin():::EXIT84 +ppt DataStructures.RedBlackTree.remove(DataStructures.Comparable):::EXIT75 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -5767,7 +5807,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -5792,7 +5832,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -5841,7 +5881,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -5877,7 +5917,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -5897,7 +5937,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -5922,7 +5962,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -5971,7 +6011,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -6007,7 +6047,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -6015,7 +6055,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -6023,7 +6063,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6043,7 +6083,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -6068,7 +6108,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -6117,7 +6157,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -6153,7 +6193,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6173,7 +6213,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -6198,7 +6238,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -6247,7 +6287,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -6283,7 +6323,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6303,7 +6343,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -6328,7 +6368,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -6377,7 +6417,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -6413,7 +6453,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6433,7 +6473,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -6458,7 +6498,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -6507,7 +6547,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -6542,29 +6582,29 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable return - var-kind return +variable x + var-kind variable dec-type DataStructures.Comparable rep-type hashcode - flags nomod + flags is_param nomod comparability 22 -variable return.getClass().getName() +variable x.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var x dec-type java.lang.Class rep-type java.lang.String - function-args return - flags nomod synthetic classname + function-args x + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.findMin():::EXIT91 +ppt DataStructures.RedBlackTree.remove(DataStructures.Comparable):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -6589,7 +6629,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -6614,7 +6654,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -6663,7 +6703,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -6699,7 +6739,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6719,7 +6759,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -6744,7 +6784,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -6793,7 +6833,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -6829,7 +6869,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -6837,7 +6877,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -6845,7 +6885,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6865,7 +6905,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -6890,7 +6930,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -6939,7 +6979,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -6975,7 +7015,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -6995,7 +7035,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -7020,7 +7060,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -7069,7 +7109,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -7105,7 +7145,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -7125,7 +7165,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -7150,7 +7190,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -7199,7 +7239,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -7235,7 +7275,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -7255,7 +7295,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -7280,7 +7320,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -7329,7 +7369,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -7364,29 +7404,42 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable return - var-kind return +variable x + var-kind variable dec-type DataStructures.Comparable rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode flags nomod comparability 22 -variable return.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.findMax():::ENTER +ppt DataStructures.RedBlackTree.findMin():::ENTER ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -7411,7 +7464,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -7436,7 +7489,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -7485,7 +7538,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -7521,7 +7574,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -7541,7 +7594,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -7566,7 +7619,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -7615,7 +7668,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -7651,7 +7704,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -7659,7 +7712,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -7667,7 +7720,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -7687,7 +7740,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -7712,7 +7765,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -7761,7 +7814,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -7797,7 +7850,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -7817,7 +7870,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -7842,7 +7895,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -7891,7 +7944,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -7927,7 +7980,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -7947,7 +8000,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -7972,7 +8025,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -8021,7 +8074,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -8057,7 +8110,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -8077,7 +8130,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -8102,7 +8155,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -8151,7 +8204,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -8187,14 +8240,14 @@ variable DataStructures.RedBlackTree.great.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -ppt DataStructures.RedBlackTree.findMax():::EXIT101 +ppt DataStructures.RedBlackTree.findMin():::EXIT84 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -8219,7 +8272,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -8244,7 +8297,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -8293,7 +8346,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -8329,7 +8382,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -8349,7 +8402,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -8374,7 +8427,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -8423,7 +8476,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -8459,7 +8512,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -8467,7 +8520,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -8475,7 +8528,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -8495,7 +8548,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -8520,7 +8573,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -8569,7 +8622,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -8605,7 +8658,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -8625,7 +8678,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -8650,7 +8703,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -8699,7 +8752,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -8735,7 +8788,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -8755,7 +8808,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -8780,7 +8833,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -8829,7 +8882,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -8865,7 +8918,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -8885,7 +8938,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -8910,7 +8963,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -8959,7 +9012,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -8995,7 +9048,7 @@ variable DataStructures.RedBlackTree.great.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -9006,17 +9059,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.findMax():::EXIT108 +ppt DataStructures.RedBlackTree.findMin():::EXIT91 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -9041,7 +9094,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -9066,7 +9119,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -9115,7 +9168,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -9151,7 +9204,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -9171,7 +9224,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -9196,7 +9249,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -9245,7 +9298,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -9281,7 +9334,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -9289,7 +9342,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -9297,7 +9350,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -9317,7 +9370,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -9342,7 +9395,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -9391,7 +9444,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -9427,7 +9480,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -9447,7 +9500,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -9472,7 +9525,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -9521,7 +9574,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -9557,7 +9610,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -9577,7 +9630,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -9602,7 +9655,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -9651,7 +9704,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -9687,7 +9740,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -9707,7 +9760,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -9732,7 +9785,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -9781,7 +9834,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -9817,7 +9870,7 @@ variable DataStructures.RedBlackTree.great.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -9828,17 +9881,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.findMin():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -9863,7 +9916,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -9888,7 +9941,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -9937,7 +9990,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -9973,7 +10026,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -9993,7 +10046,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -10018,7 +10071,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -10067,7 +10120,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -10103,7 +10156,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -10111,7 +10164,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -10119,7 +10172,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -10139,7 +10192,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -10164,7 +10217,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -10213,7 +10266,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -10249,7 +10302,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -10269,7 +10322,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -10294,7 +10347,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -10343,7 +10396,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -10379,7 +10432,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -10399,7 +10452,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -10424,7 +10477,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -10473,7 +10526,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -10509,7 +10562,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -10529,7 +10582,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -10554,7 +10607,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -10603,7 +10656,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -10638,29 +10691,28 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable x - var-kind variable - dec-type DataStructures.Comparable +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable x.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var x + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args x - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::EXIT128 -ppt-type subexit +ppt DataStructures.RedBlackTree.findMax():::ENTER +ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -10685,7 +10737,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -10710,7 +10762,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -10759,7 +10811,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -10795,7 +10847,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -10815,7 +10867,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -10840,7 +10892,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -10889,7 +10941,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -10925,7 +10977,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -10933,7 +10985,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -10941,7 +10993,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -10961,7 +11013,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -10986,7 +11038,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -11035,7 +11087,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -11071,7 +11123,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -11091,7 +11143,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -11116,7 +11168,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -11165,7 +11217,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -11201,7 +11253,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -11221,7 +11273,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -11246,7 +11298,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -11295,7 +11347,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -11331,7 +11383,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -11351,7 +11403,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -11376,7 +11428,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -11425,7 +11477,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -11460,43 +11512,15 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable x - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable x.getClass().getName() - var-kind function getClass().getName() - enclosing-var x - dec-type java.lang.Class - rep-type java.lang.String - function-args x - flags nomod synthetic classname - comparability 22 -variable return - var-kind return - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable return.getClass().getName() - var-kind function getClass().getName() - enclosing-var return - dec-type java.lang.Class - rep-type java.lang.String - function-args return - flags nomod synthetic classname - comparability 22 -ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::EXIT130 +ppt DataStructures.RedBlackTree.findMax():::EXIT101 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -11521,7 +11545,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -11546,7 +11570,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -11595,7 +11619,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -11631,7 +11655,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -11651,7 +11675,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -11676,7 +11700,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -11725,7 +11749,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -11761,7 +11785,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -11769,7 +11793,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -11777,7 +11801,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -11797,7 +11821,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -11822,7 +11846,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -11871,7 +11895,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -11907,7 +11931,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -11927,7 +11951,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -11952,7 +11976,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -12001,7 +12025,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -12037,7 +12061,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -12057,7 +12081,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -12082,7 +12106,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -12131,7 +12155,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -12167,7 +12191,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -12187,7 +12211,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -12212,7 +12236,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -12261,7 +12285,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -12296,22 +12320,8 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable x - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable x.getClass().getName() - var-kind function getClass().getName() - enclosing-var x - dec-type java.lang.Class - rep-type java.lang.String - function-args x - flags nomod synthetic classname - comparability 22 variable return - var-kind return + var-kind return dec-type DataStructures.Comparable rep-type hashcode flags nomod @@ -12322,17 +12332,17 @@ variable return.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args return - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.makeEmpty():::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.findMax():::EXIT108 +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -12357,7 +12367,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -12382,7 +12392,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -12431,7 +12441,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -12467,7 +12477,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -12487,7 +12497,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -12512,7 +12522,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -12561,7 +12571,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -12597,7 +12607,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -12605,7 +12615,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -12613,7 +12623,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -12633,7 +12643,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -12658,7 +12668,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -12707,7 +12717,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -12743,7 +12753,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -12763,7 +12773,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -12788,7 +12798,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -12837,7 +12847,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -12873,7 +12883,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -12893,7 +12903,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -12918,7 +12928,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -12967,7 +12977,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -13003,7 +13013,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -13023,7 +13033,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -13048,7 +13058,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -13097,7 +13107,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -13132,15 +13142,29 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable return + var-kind return + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.makeEmpty():::EXIT140 +ppt DataStructures.RedBlackTree.findMax():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -13165,7 +13189,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -13190,7 +13214,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -13239,7 +13263,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -13275,7 +13299,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -13295,7 +13319,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -13320,7 +13344,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -13369,7 +13393,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -13405,7 +13429,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -13413,7 +13437,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -13421,7 +13445,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -13441,7 +13465,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -13466,7 +13490,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -13515,7 +13539,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -13551,7 +13575,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -13571,7 +13595,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -13596,7 +13620,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -13645,7 +13669,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -13681,7 +13705,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -13701,7 +13725,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -13726,7 +13750,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -13775,7 +13799,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -13811,7 +13835,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -13831,7 +13855,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -13856,7 +13880,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -13905,7 +13929,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -13940,15 +13964,28 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.isEmpty():::ENTER +ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::ENTER ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -13973,7 +14010,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -13998,7 +14035,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -14047,7 +14084,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -14083,7 +14120,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -14103,7 +14140,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -14128,7 +14165,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -14177,7 +14214,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -14213,7 +14250,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -14221,7 +14258,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -14229,7 +14266,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -14249,7 +14286,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -14274,7 +14311,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -14323,7 +14360,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -14359,7 +14396,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -14379,7 +14416,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -14404,7 +14441,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -14453,7 +14490,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -14489,7 +14526,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -14509,7 +14546,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -14534,7 +14571,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -14583,7 +14620,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -14619,7 +14656,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -14639,7 +14676,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -14664,7 +14701,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -14713,7 +14750,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -14748,15 +14785,29 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.isEmpty():::EXIT148 +ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::EXIT128 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -14781,7 +14832,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -14806,7 +14857,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -14855,7 +14906,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -14891,7 +14942,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -14911,7 +14962,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -14936,7 +14987,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -14985,7 +15036,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -15021,7 +15072,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -15029,7 +15080,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -15037,7 +15088,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -15057,7 +15108,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -15082,7 +15133,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -15131,7 +15182,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -15167,7 +15218,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -15187,7 +15238,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -15212,7 +15263,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -15261,7 +15312,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -15297,7 +15348,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -15317,7 +15368,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -15342,7 +15393,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -15391,7 +15442,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -15427,7 +15478,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -15447,7 +15498,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -15472,7 +15523,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -15521,7 +15572,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -15556,21 +15607,43 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 variable return - var-kind return - dec-type boolean - rep-type boolean + var-kind return + dec-type DataStructures.Comparable + rep-type hashcode flags nomod comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.printTree():::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::EXIT130 +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -15595,7 +15668,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -15620,7 +15693,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -15669,7 +15742,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -15705,7 +15778,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -15725,7 +15798,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -15750,7 +15823,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -15799,7 +15872,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -15835,7 +15908,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -15843,7 +15916,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -15851,7 +15924,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -15871,7 +15944,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -15896,7 +15969,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -15945,7 +16018,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -15981,7 +16054,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16001,7 +16074,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -16026,7 +16099,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -16075,7 +16148,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -16111,7 +16184,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16131,7 +16204,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -16156,7 +16229,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -16205,7 +16278,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -16241,7 +16314,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16261,7 +16334,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -16286,7 +16359,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -16335,7 +16408,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -16370,15 +16443,43 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable return + var-kind return + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.getClass().getName() + var-kind function getClass().getName() + enclosing-var return + dec-type java.lang.Class + rep-type java.lang.String + function-args return + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.printTree():::EXIT160 +ppt DataStructures.RedBlackTree.find(DataStructures.Comparable):::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -16403,7 +16504,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -16428,7 +16529,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -16477,7 +16578,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -16513,7 +16614,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16533,7 +16634,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -16558,7 +16659,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -16607,7 +16708,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -16643,7 +16744,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -16651,7 +16752,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -16659,7 +16760,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16679,7 +16780,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -16704,7 +16805,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -16753,7 +16854,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -16789,7 +16890,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16809,7 +16910,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -16834,7 +16935,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -16883,7 +16984,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -16919,7 +17020,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -16939,7 +17040,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -16964,7 +17065,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -17013,7 +17114,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -17049,7 +17150,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -17069,7 +17170,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -17094,7 +17195,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -17143,7 +17244,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -17178,15 +17279,42 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 +variable x + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable x.getClass().getName() + var-kind function getClass().getName() + enclosing-var x + dec-type java.lang.Class + rep-type java.lang.String + function-args x + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree.printTree(DataStructures.RedBlackNode):::ENTER +ppt DataStructures.RedBlackTree.makeEmpty():::ENTER ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -17211,7 +17339,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -17236,7 +17364,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -17285,7 +17413,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -17321,7 +17449,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -17341,7 +17469,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -17366,7 +17494,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -17415,7 +17543,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -17451,7 +17579,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -17459,7 +17587,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -17467,7 +17595,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -17487,7 +17615,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -17512,7 +17640,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -17561,7 +17689,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -17597,7 +17725,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -17617,7 +17745,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -17642,7 +17770,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -17691,7 +17819,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -17727,7 +17855,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -17747,7 +17875,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -17772,7 +17900,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -17821,7 +17949,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -17857,7 +17985,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -17877,7 +18005,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -17902,7 +18030,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -17951,7 +18079,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -17986,129 +18114,15 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable t - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable t.element - var-kind field element - enclosing-var t - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable t.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var t.element - dec-type java.lang.Class - rep-type java.lang.String - function-args t.element - flags nomod synthetic classname - comparability 22 -variable t.left - var-kind field left - enclosing-var t - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.left.element - var-kind field element - enclosing-var t.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable t.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var t.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args t.left.element - flags nomod synthetic classname - comparability 22 -variable t.left.left - var-kind field left - enclosing-var t.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.left.right - var-kind field right - enclosing-var t.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.left.color - var-kind field color - enclosing-var t.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable t.right - var-kind field right - enclosing-var t - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.right.element - var-kind field element - enclosing-var t.right - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable t.right.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var t.right.element - dec-type java.lang.Class - rep-type java.lang.String - function-args t.right.element - flags nomod synthetic classname - comparability 22 -variable t.right.left - var-kind field left - enclosing-var t.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.right.right - var-kind field right - enclosing-var t.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.right.color - var-kind field color - enclosing-var t.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable t.color - var-kind field color - enclosing-var t - dec-type int - rep-type int - flags nomod - comparability 22 -ppt DataStructures.RedBlackTree.printTree(DataStructures.RedBlackNode):::EXIT174 +ppt DataStructures.RedBlackTree.makeEmpty():::EXIT140 ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -18133,7 +18147,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -18158,7 +18172,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -18207,7 +18221,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -18243,7 +18257,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -18263,7 +18277,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -18288,7 +18302,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -18337,7 +18351,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -18373,7 +18387,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -18381,7 +18395,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -18389,7 +18403,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -18409,7 +18423,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -18434,7 +18448,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -18483,7 +18497,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -18519,7 +18533,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -18539,7 +18553,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -18564,7 +18578,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -18613,7 +18627,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -18649,7 +18663,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -18669,7 +18683,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -18694,7 +18708,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -18743,7 +18757,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -18779,7 +18793,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -18799,7 +18813,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -18824,7 +18838,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -18873,7 +18887,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -18908,129 +18922,15 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable t - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable t.element - var-kind field element - enclosing-var t - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable t.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var t.element - dec-type java.lang.Class - rep-type java.lang.String - function-args t.element - flags nomod synthetic classname - comparability 22 -variable t.left - var-kind field left - enclosing-var t - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.left.element - var-kind field element - enclosing-var t.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable t.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var t.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args t.left.element - flags nomod synthetic classname - comparability 22 -variable t.left.left - var-kind field left - enclosing-var t.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.left.right - var-kind field right - enclosing-var t.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.left.color - var-kind field color - enclosing-var t.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable t.right - var-kind field right - enclosing-var t - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.right.element - var-kind field element - enclosing-var t.right - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable t.right.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var t.right.element - dec-type java.lang.Class - rep-type java.lang.String - function-args t.right.element - flags nomod synthetic classname - comparability 22 -variable t.right.left - var-kind field left - enclosing-var t.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.right.right - var-kind field right - enclosing-var t.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable t.right.color - var-kind field color - enclosing-var t.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable t.color - var-kind field color - enclosing-var t - dec-type int - rep-type int - flags nomod - comparability 22 -ppt DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.makeEmpty():::EXCEPTIONUNCAUGHT +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -19055,7 +18955,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -19080,7 +18980,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -19129,7 +19029,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -19165,7 +19065,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -19185,7 +19085,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -19210,7 +19110,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -19259,7 +19159,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -19295,7 +19195,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -19303,7 +19203,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -19311,7 +19211,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -19331,7 +19231,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -19356,7 +19256,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -19405,7 +19305,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -19441,7 +19341,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -19461,7 +19361,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -19486,7 +19386,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -19535,7 +19435,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -19571,7 +19471,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -19591,7 +19491,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -19616,7 +19516,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -19665,7 +19565,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -19701,7 +19601,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -19721,7 +19621,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -19746,7 +19646,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -19795,7 +19695,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -19830,29 +19730,28 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable item - var-kind variable - dec-type DataStructures.Comparable +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable item.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var item + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args item - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -ppt-type subexit +ppt DataStructures.RedBlackTree.isEmpty():::ENTER +ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -19877,7 +19776,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -19902,7 +19801,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -19951,7 +19850,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -19987,7 +19886,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20007,7 +19906,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -20032,7 +19931,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -20081,7 +19980,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -20117,7 +20016,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -20125,7 +20024,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -20133,7 +20032,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20153,7 +20052,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -20178,7 +20077,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -20227,7 +20126,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -20263,7 +20162,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20283,7 +20182,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -20308,7 +20207,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -20357,7 +20256,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -20393,7 +20292,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20413,7 +20312,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -20438,7 +20337,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -20487,7 +20386,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -20523,7 +20422,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20543,7 +20442,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -20568,7 +20467,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -20617,7 +20516,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -20652,29 +20551,15 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable item - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable item.getClass().getName() - var-kind function getClass().getName() - enclosing-var item - dec-type java.lang.Class - rep-type java.lang.String - function-args item - flags nomod synthetic classname - comparability 22 -ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::ENTER -ppt-type enter +ppt DataStructures.RedBlackTree.isEmpty():::EXIT148 +ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -20699,7 +20584,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -20724,7 +20609,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -20773,7 +20658,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -20809,7 +20694,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20829,7 +20714,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -20854,7 +20739,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -20903,7 +20788,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -20939,7 +20824,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -20947,7 +20832,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -20955,7 +20840,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -20975,7 +20860,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -21000,7 +20885,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -21049,7 +20934,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -21085,7 +20970,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -21105,7 +20990,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -21130,7 +21015,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -21179,7 +21064,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -21215,7 +21100,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -21235,7 +21120,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -21260,7 +21145,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -21309,7 +21194,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -21345,7 +21230,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -21365,7 +21250,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -21390,7 +21275,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -21439,7 +21324,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -21474,143 +21359,21 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable item - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable item.getClass().getName() - var-kind function getClass().getName() - enclosing-var item - dec-type java.lang.Class - rep-type java.lang.String - function-args item - flags nomod synthetic classname - comparability 22 -variable parent - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable parent.element - var-kind field element - enclosing-var parent - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.element - flags nomod synthetic classname - comparability 22 -variable parent.left - var-kind field left - enclosing-var parent - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.element - var-kind field element - enclosing-var parent.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.left.element - flags nomod synthetic classname - comparability 22 -variable parent.left.left - var-kind field left - enclosing-var parent.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.right - var-kind field right - enclosing-var parent.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.color - var-kind field color - enclosing-var parent.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable parent.right - var-kind field right - enclosing-var parent - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.element - var-kind field element - enclosing-var parent.right - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.right.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.right.element - flags nomod synthetic classname - comparability 22 -variable parent.right.left - var-kind field left - enclosing-var parent.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.right - var-kind field right - enclosing-var parent.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.color - var-kind field color - enclosing-var parent.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable parent.color - var-kind field color - enclosing-var parent - dec-type int - rep-type int +variable return + var-kind return + dec-type boolean + rep-type boolean flags nomod comparability 22 -ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::EXIT215 +ppt DataStructures.RedBlackTree.isEmpty():::EXCEPTIONUNCAUGHT ppt-type subexit parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -21635,7 +21398,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -21660,7 +21423,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -21709,7 +21472,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -21745,7 +21508,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -21765,7 +21528,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -21790,7 +21553,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -21839,7 +21602,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -21875,7 +21638,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -21883,7 +21646,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -21891,7 +21654,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -21911,7 +21674,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -21936,7 +21699,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -21985,7 +21748,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -22021,7 +21784,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -22041,7 +21804,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -22066,7 +21829,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -22115,7 +21878,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -22151,7 +21914,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -22171,7 +21934,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -22196,7 +21959,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -22245,7 +22008,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -22281,7 +22044,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -22301,7 +22064,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -22326,7 +22089,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -22375,7 +22138,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -22410,257 +22173,28 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable item - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable item.getClass().getName() - var-kind function getClass().getName() - enclosing-var item - dec-type java.lang.Class - rep-type java.lang.String - function-args item - flags nomod synthetic classname - comparability 22 -variable parent - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable parent.element - var-kind field element - enclosing-var parent - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.element - flags nomod synthetic classname - comparability 22 -variable parent.left - var-kind field left - enclosing-var parent - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.element - var-kind field element - enclosing-var parent.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.left.element - flags nomod synthetic classname - comparability 22 -variable parent.left.left - var-kind field left - enclosing-var parent.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.right - var-kind field right - enclosing-var parent.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.color - var-kind field color - enclosing-var parent.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable parent.right - var-kind field right - enclosing-var parent - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.element - var-kind field element - enclosing-var parent.right - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.right.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.right.element - flags nomod synthetic classname - comparability 22 -variable parent.right.left - var-kind field left - enclosing-var parent.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.right - var-kind field right - enclosing-var parent.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.color - var-kind field color - enclosing-var parent.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable parent.color - var-kind field color - enclosing-var parent - dec-type int - rep-type int - flags nomod - comparability 22 -variable return - var-kind return - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.element - var-kind field element - enclosing-var return - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable return.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var return.element - dec-type java.lang.Class - rep-type java.lang.String - function-args return.element - flags nomod synthetic classname - comparability 22 -variable return.left - var-kind field left - enclosing-var return - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.left.element - var-kind field element - enclosing-var return.left - dec-type DataStructures.Comparable +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable return.left.element.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var return.left.element + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args return.left.element - flags nomod synthetic classname - comparability 22 -variable return.left.left - var-kind field left - enclosing-var return.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.left.right - var-kind field right - enclosing-var return.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.left.color - var-kind field color - enclosing-var return.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable return.right - var-kind field right - enclosing-var return - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.right.element - var-kind field element - enclosing-var return.right - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable return.right.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var return.right.element - dec-type java.lang.Class - rep-type java.lang.String - function-args return.right.element - flags nomod synthetic classname - comparability 22 -variable return.right.left - var-kind field left - enclosing-var return.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.right.right - var-kind field right - enclosing-var return.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable return.right.color - var-kind field color - enclosing-var return.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable return.color - var-kind field color - enclosing-var return - dec-type int - rep-type int - flags nomod + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::EXIT211 -ppt-type subexit +ppt DataStructures.RedBlackTree.printTree():::ENTER +ppt-type enter parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header @@ -22685,7 +22219,7 @@ variable this.header.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left @@ -22710,7 +22244,7 @@ variable this.header.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left @@ -22759,7 +22293,7 @@ variable this.header.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left @@ -22795,7 +22329,7 @@ variable this.header.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -22815,7 +22349,7 @@ variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left @@ -22840,7 +22374,7 @@ variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left @@ -22889,7 +22423,7 @@ variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left @@ -22925,7 +22459,7 @@ variable DataStructures.RedBlackTree.nullNode.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 @@ -22933,7 +22467,7 @@ variable DataStructures.RedBlackTree.BLACK comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 @@ -22941,7 +22475,7 @@ variable DataStructures.RedBlackTree.RED comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -22961,7 +22495,7 @@ variable DataStructures.RedBlackTree.current.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left @@ -22986,7 +22520,7 @@ variable DataStructures.RedBlackTree.current.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left @@ -23035,7 +22569,7 @@ variable DataStructures.RedBlackTree.current.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left @@ -23071,7 +22605,7 @@ variable DataStructures.RedBlackTree.current.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -23091,7 +22625,7 @@ variable DataStructures.RedBlackTree.parent.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left @@ -23116,7 +22650,7 @@ variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left @@ -23165,7 +22699,7 @@ variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left @@ -23201,7 +22735,7 @@ variable DataStructures.RedBlackTree.parent.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -23221,7 +22755,7 @@ variable DataStructures.RedBlackTree.grand.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left @@ -23246,7 +22780,7 @@ variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left @@ -23295,7 +22829,7 @@ variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left @@ -23331,7 +22865,7 @@ variable DataStructures.RedBlackTree.grand.color comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod @@ -23351,7 +22885,7 @@ variable DataStructures.RedBlackTree.great.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left @@ -23376,7 +22910,7 @@ variable DataStructures.RedBlackTree.great.left.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left @@ -23425,7 +22959,7 @@ variable DataStructures.RedBlackTree.great.right.element.getClass().getName() dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left @@ -23460,259 +22994,155 @@ variable DataStructures.RedBlackTree.great.color flags nomod comparability 22 parent DataStructures.RedBlackTree:::OBJECT 1 -variable item - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable item.getClass().getName() - var-kind function getClass().getName() - enclosing-var item - dec-type java.lang.Class - rep-type java.lang.String - function-args item - flags nomod synthetic classname - comparability 22 -variable parent - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable parent.element - var-kind field element - enclosing-var parent - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.element - flags nomod synthetic classname - comparability 22 -variable parent.left - var-kind field left - enclosing-var parent - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.element - var-kind field element - enclosing-var parent.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.left.element - flags nomod synthetic classname - comparability 22 -variable parent.left.left - var-kind field left - enclosing-var parent.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.right - var-kind field right - enclosing-var parent.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.left.color - var-kind field color - enclosing-var parent.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable parent.right - var-kind field right - enclosing-var parent - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.element - var-kind field element - enclosing-var parent.right - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var parent.right.element - dec-type java.lang.Class - rep-type java.lang.String - function-args parent.right.element - flags nomod synthetic classname - comparability 22 -variable parent.right.left - var-kind field left - enclosing-var parent.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable parent.right.right - var-kind field right - enclosing-var parent.right - dec-type DataStructures.RedBlackNode + +ppt DataStructures.RedBlackTree.printTree():::EXIT160 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree rep-type hashcode - flags nomod + flags is_param nomod non_null comparability 22 -variable parent.right.color - var-kind field color - enclosing-var parent.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable parent.color - var-kind field color - enclosing-var parent - dec-type int - rep-type int - flags nomod - comparability 22 -variable return - var-kind return + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var return + enclosing-var this.header dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args return.element - flags nomod synthetic classname + function-args this.header.element + flags nomod synthetic classname non_null comparability 22 -variable return.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left var-kind field left - enclosing-var return + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element var-kind field element - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.left.element + enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String - function-args return.left.element - flags nomod synthetic classname + function-args this.header.left.element + flags nomod synthetic classname non_null comparability 22 -variable return.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left var-kind field left - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right var-kind field right - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color var-kind field color - enclosing-var return.left + enclosing-var this.header.left dec-type int rep-type int flags nomod comparability 22 -variable return.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right var-kind field right - enclosing-var return + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element var-kind field element - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.right.element + enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String - function-args return.right.element - flags nomod synthetic classname + function-args this.header.right.element + flags nomod synthetic classname non_null comparability 22 -variable return.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left var-kind field left - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right var-kind field right - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color var-kind field color - enclosing-var return.right + enclosing-var this.header.right dec-type int rep-type int flags nomod comparability 22 -variable return.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color var-kind field color - enclosing-var return + enclosing-var this.header dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.RedBlackTree.rotateWithLeftChild(DataStructures.RedBlackNode):::ENTER -ppt-type enter -parent parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -23720,16 +23150,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -23737,7 +23167,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -23745,16 +23175,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -23762,7 +23192,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -23770,7 +23200,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -23778,7 +23208,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -23786,7 +23216,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -23794,16 +23224,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -23811,7 +23241,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -23819,7 +23249,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -23827,7 +23257,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -23835,30 +23265,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -23866,16 +23296,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -23883,7 +23313,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -23891,16 +23321,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -23908,7 +23338,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -23916,7 +23346,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -23924,7 +23354,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -23932,7 +23362,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -23940,16 +23370,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -23957,7 +23387,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -23965,7 +23395,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -23973,7 +23403,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -23981,14 +23411,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -23996,16 +23426,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -24013,7 +23443,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -24021,16 +23451,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -24038,7 +23468,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -24046,7 +23476,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -24054,7 +23484,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -24062,7 +23492,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -24070,16 +23500,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -24087,7 +23517,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -24095,7 +23525,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -24103,7 +23533,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -24111,14 +23541,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -24126,16 +23556,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -24143,7 +23573,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -24151,16 +23581,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -24168,7 +23598,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -24176,7 +23606,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -24184,7 +23614,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -24192,7 +23622,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -24200,16 +23630,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -24217,7 +23647,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -24225,7 +23655,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -24233,7 +23663,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -24241,14 +23671,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -24256,16 +23686,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -24273,7 +23703,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -24281,16 +23711,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -24298,7 +23728,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -24306,7 +23736,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -24314,7 +23744,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -24322,7 +23752,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -24330,16 +23760,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -24347,7 +23777,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -24355,7 +23785,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -24363,7 +23793,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -24371,132 +23801,156 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 -variable k2 - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 + +ppt DataStructures.RedBlackTree.printTree():::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.RedBlackNode rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable k2.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var k2 + enclosing-var this.header dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k2.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k2.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args k2.element - flags nomod synthetic classname + function-args this.header.element + flags nomod synthetic classname non_null comparability 22 -variable k2.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left var-kind field left - enclosing-var k2 + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k2.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element var-kind field element - enclosing-var k2.left + enclosing-var this.header.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k2.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k2.left.element + enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String - function-args k2.left.element - flags nomod synthetic classname + function-args this.header.left.element + flags nomod synthetic classname non_null comparability 22 -variable k2.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left var-kind field left - enclosing-var k2.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k2.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right var-kind field right - enclosing-var k2.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k2.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color var-kind field color - enclosing-var k2.left + enclosing-var this.header.left dec-type int rep-type int flags nomod comparability 22 -variable k2.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right var-kind field right - enclosing-var k2 + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k2.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element var-kind field element - enclosing-var k2.right + enclosing-var this.header.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k2.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k2.right.element + enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String - function-args k2.right.element - flags nomod synthetic classname + function-args this.header.right.element + flags nomod synthetic classname non_null comparability 22 -variable k2.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left var-kind field left - enclosing-var k2.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k2.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right var-kind field right - enclosing-var k2.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k2.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color var-kind field color - enclosing-var k2.right + enclosing-var this.header.right dec-type int rep-type int flags nomod comparability 22 -variable k2.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color var-kind field color - enclosing-var k2 + enclosing-var this.header dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.RedBlackTree.rotateWithLeftChild(DataStructures.RedBlackNode):::EXIT228 -ppt-type subexit -parent parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -24504,16 +23958,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -24521,7 +23975,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -24529,16 +23983,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -24546,7 +24000,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -24554,7 +24008,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -24562,7 +24016,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -24570,7 +24024,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -24578,16 +24032,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -24595,7 +24049,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -24603,7 +24057,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -24611,7 +24065,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -24619,30 +24073,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -24650,16 +24104,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -24667,7 +24121,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -24675,16 +24129,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -24692,7 +24146,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -24700,7 +24154,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -24708,7 +24162,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -24716,7 +24170,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -24724,16 +24178,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -24741,7 +24195,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -24749,7 +24203,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -24757,7 +24211,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -24765,14 +24219,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -24780,16 +24234,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -24797,7 +24251,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -24805,16 +24259,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -24822,7 +24276,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -24830,7 +24284,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -24838,7 +24292,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -24846,7 +24300,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -24854,16 +24308,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -24871,7 +24325,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -24879,7 +24333,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -24887,7 +24341,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -24895,14 +24349,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -24910,16 +24364,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -24927,7 +24381,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -24935,16 +24389,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -24952,7 +24406,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -24960,7 +24414,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -24968,7 +24422,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -24976,7 +24430,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -24984,16 +24438,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -25001,7 +24455,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -25009,7 +24463,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -25017,7 +24471,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -25025,14 +24479,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -25040,16 +24494,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -25057,7 +24511,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -25065,16 +24519,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -25082,7 +24536,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -25090,7 +24544,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -25098,7 +24552,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -25106,7 +24560,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -25114,16 +24568,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -25131,7 +24585,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -25139,7 +24593,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -25147,7 +24601,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -25155,246 +24609,169 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 -variable k2 - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable k2.element - var-kind field element - enclosing-var k2 - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable k2.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var k2.element - dec-type java.lang.Class - rep-type java.lang.String - function-args k2.element - flags nomod synthetic classname - comparability 22 -variable k2.left - var-kind field left - enclosing-var k2 - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable k2.left.element - var-kind field element - enclosing-var k2.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable k2.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var k2.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args k2.left.element - flags nomod synthetic classname - comparability 22 -variable k2.left.left - var-kind field left - enclosing-var k2.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable k2.left.right - var-kind field right - enclosing-var k2.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable k2.left.color - var-kind field color - enclosing-var k2.left - dec-type int - rep-type int - flags nomod - comparability 22 -variable k2.right - var-kind field right - enclosing-var k2 - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable k2.right.element - var-kind field element - enclosing-var k2.right - dec-type DataStructures.Comparable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 -variable k2.right.element.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var k2.right.element + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args k2.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 -variable k2.right.left - var-kind field left - enclosing-var k2.right - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 -variable k2.right.right - var-kind field right - enclosing-var k2.right - dec-type DataStructures.RedBlackNode + +ppt DataStructures.RedBlackTree.printTree(DataStructures.RedBlackNode):::ENTER +ppt-type enter +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree rep-type hashcode - flags nomod - comparability 22 -variable k2.right.color - var-kind field color - enclosing-var k2.right - dec-type int - rep-type int - flags nomod - comparability 22 -variable k2.color - var-kind field color - enclosing-var k2 - dec-type int - rep-type int - flags nomod + flags is_param nomod non_null comparability 22 -variable return - var-kind return + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var return + enclosing-var this.header dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args return.element - flags nomod synthetic classname + function-args this.header.element + flags nomod synthetic classname non_null comparability 22 -variable return.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left var-kind field left - enclosing-var return + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element var-kind field element - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.left.element + enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String - function-args return.left.element - flags nomod synthetic classname + function-args this.header.left.element + flags nomod synthetic classname non_null comparability 22 -variable return.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left var-kind field left - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right var-kind field right - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color var-kind field color - enclosing-var return.left + enclosing-var this.header.left dec-type int rep-type int flags nomod comparability 22 -variable return.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right var-kind field right - enclosing-var return + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element var-kind field element - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.right.element + enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String - function-args return.right.element - flags nomod synthetic classname + function-args this.header.right.element + flags nomod synthetic classname non_null comparability 22 -variable return.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left var-kind field left - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right var-kind field right - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color var-kind field color - enclosing-var return.right + enclosing-var this.header.right dec-type int rep-type int flags nomod comparability 22 -variable return.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color var-kind field color - enclosing-var return + enclosing-var this.header dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER -ppt-type enter -parent parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -25402,16 +24779,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -25419,7 +24796,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -25427,16 +24804,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -25444,7 +24821,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -25452,7 +24829,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -25460,7 +24837,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -25468,7 +24845,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -25476,16 +24853,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -25493,7 +24870,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -25501,7 +24878,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -25509,7 +24886,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -25517,30 +24894,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -25548,16 +24925,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -25565,7 +24942,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -25573,16 +24950,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -25590,7 +24967,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -25598,7 +24975,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -25606,7 +24983,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -25614,7 +24991,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -25622,16 +24999,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -25639,7 +25016,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -25647,7 +25024,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -25655,7 +25032,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -25663,14 +25040,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -25678,16 +25055,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -25695,7 +25072,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -25703,16 +25080,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -25720,7 +25097,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -25728,7 +25105,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -25736,7 +25113,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -25744,7 +25121,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -25752,16 +25129,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -25769,7 +25146,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -25777,7 +25154,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -25785,7 +25162,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -25793,14 +25170,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -25808,16 +25185,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -25825,7 +25202,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -25833,16 +25210,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -25850,7 +25227,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -25858,7 +25235,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -25866,7 +25243,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -25874,7 +25251,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -25882,16 +25259,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -25899,7 +25276,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -25907,7 +25284,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -25915,7 +25292,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -25923,14 +25300,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -25938,16 +25315,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -25955,7 +25332,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -25963,16 +25340,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -25980,7 +25357,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -25988,7 +25365,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -25996,7 +25373,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -26004,7 +25381,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -26012,16 +25389,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -26029,7 +25406,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -26037,7 +25414,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -26045,7 +25422,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -26053,132 +25430,270 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 -variable k1 - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable t + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags is_param nomod comparability 22 -variable k1.element +variable t.element var-kind field element - enclosing-var k1 + enclosing-var t dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k1.element.getClass().getName() +variable t.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k1.element + enclosing-var t.element dec-type java.lang.Class rep-type java.lang.String - function-args k1.element - flags nomod synthetic classname + function-args t.element + flags nomod synthetic classname non_null comparability 22 -variable k1.left +variable t.left var-kind field left - enclosing-var k1 + enclosing-var t dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.left.element +variable t.left.element var-kind field element - enclosing-var k1.left + enclosing-var t.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k1.left.element.getClass().getName() +variable t.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k1.left.element + enclosing-var t.left.element dec-type java.lang.Class rep-type java.lang.String - function-args k1.left.element - flags nomod synthetic classname + function-args t.left.element + flags nomod synthetic classname non_null comparability 22 -variable k1.left.left +variable t.left.left var-kind field left - enclosing-var k1.left + enclosing-var t.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.left.right +variable t.left.right var-kind field right - enclosing-var k1.left + enclosing-var t.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.left.color +variable t.left.color var-kind field color - enclosing-var k1.left + enclosing-var t.left dec-type int rep-type int flags nomod comparability 22 -variable k1.right +variable t.right var-kind field right - enclosing-var k1 + enclosing-var t dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.right.element +variable t.right.element var-kind field element - enclosing-var k1.right + enclosing-var t.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k1.right.element.getClass().getName() +variable t.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k1.right.element + enclosing-var t.right.element dec-type java.lang.Class rep-type java.lang.String - function-args k1.right.element - flags nomod synthetic classname + function-args t.right.element + flags nomod synthetic classname non_null comparability 22 -variable k1.right.left +variable t.right.left var-kind field left - enclosing-var k1.right + enclosing-var t.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.right.right +variable t.right.right var-kind field right - enclosing-var k1.right + enclosing-var t.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.right.color +variable t.right.color var-kind field color - enclosing-var k1.right + enclosing-var t.right dec-type int rep-type int flags nomod comparability 22 -variable k1.color +variable t.color var-kind field color - enclosing-var k1 + enclosing-var t dec-type int rep-type int flags nomod comparability 22 -ppt DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +ppt DataStructures.RedBlackTree.printTree(DataStructures.RedBlackNode):::EXIT174 ppt-type subexit -parent parent DataStructures.RedBlackTree:::CLASS 1 +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left + var-kind field left + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element + var-kind field element + enclosing-var this.header.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left + var-kind field left + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right + var-kind field right + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color + var-kind field color + enclosing-var this.header.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right + var-kind field right + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element + var-kind field element + enclosing-var this.header.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left + var-kind field left + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right + var-kind field right + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color + var-kind field color + enclosing-var this.header.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color + var-kind field color + enclosing-var this.header + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -26186,16 +25701,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -26203,7 +25718,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -26211,16 +25726,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -26228,7 +25743,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -26236,7 +25751,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -26244,7 +25759,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -26252,7 +25767,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -26260,16 +25775,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -26277,7 +25792,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -26285,7 +25800,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -26293,7 +25808,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -26301,30 +25816,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -26332,16 +25847,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -26349,7 +25864,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -26357,16 +25872,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -26374,7 +25889,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -26382,7 +25897,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -26390,7 +25905,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -26398,7 +25913,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -26406,16 +25921,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -26423,7 +25938,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -26431,7 +25946,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -26439,7 +25954,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -26447,14 +25962,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -26462,16 +25977,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -26479,7 +25994,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -26487,16 +26002,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -26504,7 +26019,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -26512,7 +26027,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -26520,7 +26035,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -26528,7 +26043,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -26536,16 +26051,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -26553,7 +26068,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -26561,7 +26076,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -26569,7 +26084,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -26577,14 +26092,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -26592,16 +26107,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -26609,7 +26124,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -26617,16 +26132,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -26634,7 +26149,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -26642,7 +26157,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -26650,7 +26165,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -26658,7 +26173,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -26666,16 +26181,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -26683,7 +26198,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -26691,7 +26206,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -26699,7 +26214,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -26707,14 +26222,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -26722,16 +26237,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -26739,7 +26254,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -26747,16 +26262,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -26764,7 +26279,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -26772,7 +26287,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -26780,7 +26295,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -26788,7 +26303,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -26796,16 +26311,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -26813,7 +26328,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -26821,7 +26336,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -26829,7 +26344,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -26837,246 +26352,270 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 -variable k1 - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable t + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags is_param nomod comparability 22 -variable k1.element +variable t.element var-kind field element - enclosing-var k1 + enclosing-var t dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k1.element.getClass().getName() +variable t.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k1.element + enclosing-var t.element dec-type java.lang.Class rep-type java.lang.String - function-args k1.element - flags nomod synthetic classname + function-args t.element + flags nomod synthetic classname non_null comparability 22 -variable k1.left +variable t.left var-kind field left - enclosing-var k1 + enclosing-var t dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.left.element +variable t.left.element var-kind field element - enclosing-var k1.left + enclosing-var t.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k1.left.element.getClass().getName() +variable t.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k1.left.element + enclosing-var t.left.element dec-type java.lang.Class rep-type java.lang.String - function-args k1.left.element - flags nomod synthetic classname + function-args t.left.element + flags nomod synthetic classname non_null comparability 22 -variable k1.left.left +variable t.left.left var-kind field left - enclosing-var k1.left + enclosing-var t.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.left.right +variable t.left.right var-kind field right - enclosing-var k1.left + enclosing-var t.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.left.color +variable t.left.color var-kind field color - enclosing-var k1.left + enclosing-var t.left dec-type int rep-type int flags nomod comparability 22 -variable k1.right +variable t.right var-kind field right - enclosing-var k1 + enclosing-var t dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.right.element +variable t.right.element var-kind field element - enclosing-var k1.right + enclosing-var t.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable k1.right.element.getClass().getName() +variable t.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var k1.right.element + enclosing-var t.right.element dec-type java.lang.Class rep-type java.lang.String - function-args k1.right.element - flags nomod synthetic classname + function-args t.right.element + flags nomod synthetic classname non_null comparability 22 -variable k1.right.left +variable t.right.left var-kind field left - enclosing-var k1.right + enclosing-var t.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.right.right +variable t.right.right var-kind field right - enclosing-var k1.right + enclosing-var t.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable k1.right.color +variable t.right.color var-kind field color - enclosing-var k1.right + enclosing-var t.right dec-type int rep-type int flags nomod comparability 22 -variable k1.color +variable t.color var-kind field color - enclosing-var k1 + enclosing-var t dec-type int rep-type int flags nomod comparability 22 -variable return - var-kind return + +ppt DataStructures.RedBlackTree.printTree(DataStructures.RedBlackNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var return + enclosing-var this.header dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args return.element - flags nomod synthetic classname + function-args this.header.element + flags nomod synthetic classname non_null comparability 22 -variable return.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left var-kind field left - enclosing-var return + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element var-kind field element - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.left.element + enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String - function-args return.left.element - flags nomod synthetic classname + function-args this.header.left.element + flags nomod synthetic classname non_null comparability 22 -variable return.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left var-kind field left - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right var-kind field right - enclosing-var return.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color var-kind field color - enclosing-var return.left + enclosing-var this.header.left dec-type int rep-type int flags nomod comparability 22 -variable return.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right var-kind field right - enclosing-var return + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element var-kind field element - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable return.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var return.right.element + enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String - function-args return.right.element - flags nomod synthetic classname + function-args this.header.right.element + flags nomod synthetic classname non_null comparability 22 -variable return.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left var-kind field left - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right var-kind field right - enclosing-var return.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable return.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color var-kind field color - enclosing-var return.right + enclosing-var this.header.right dec-type int rep-type int flags nomod comparability 22 -variable return.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color var-kind field color - enclosing-var return + enclosing-var this.header dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.RedBlackTree.main(java.lang.String[]):::ENTER -ppt-type enter -parent parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -27084,16 +26623,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -27101,7 +26640,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27109,16 +26648,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27126,7 +26665,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27134,7 +26673,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27142,7 +26681,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -27150,7 +26689,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27158,16 +26697,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27175,7 +26714,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27183,7 +26722,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27191,7 +26730,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -27199,30 +26738,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -27230,16 +26769,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -27247,7 +26786,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -27255,16 +26794,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -27272,7 +26811,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -27280,7 +26819,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -27288,7 +26827,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -27296,7 +26835,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -27304,16 +26843,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -27321,7 +26860,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -27329,7 +26868,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -27337,7 +26876,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -27345,14 +26884,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -27360,16 +26899,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -27377,7 +26916,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -27385,16 +26924,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -27402,7 +26941,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -27410,7 +26949,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -27418,7 +26957,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -27426,7 +26965,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -27434,16 +26973,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -27451,7 +26990,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -27459,7 +26998,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -27467,7 +27006,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -27475,14 +27014,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -27490,16 +27029,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -27507,7 +27046,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -27515,16 +27054,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -27532,7 +27071,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -27540,7 +27079,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -27548,7 +27087,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -27556,7 +27095,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -27564,16 +27103,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -27581,7 +27120,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -27589,7 +27128,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -27597,7 +27136,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -27605,14 +27144,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -27620,16 +27159,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -27637,7 +27176,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -27645,16 +27184,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -27662,7 +27201,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -27670,7 +27209,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -27678,7 +27217,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -27686,7 +27225,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -27694,16 +27233,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -27711,7 +27250,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -27719,7 +27258,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -27727,7 +27266,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -27735,49 +27274,283 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 -variable args - var-kind variable - dec-type java.lang.String[] + parent DataStructures.RedBlackTree:::OBJECT 1 +variable t + var-kind variable + dec-type DataStructures.RedBlackNode rep-type hashcode flags is_param nomod comparability 22 -variable args.getClass().getName() +variable t.element + var-kind field element + enclosing-var t + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable t.element.getClass().getName() var-kind function getClass().getName() - enclosing-var args + enclosing-var t.element dec-type java.lang.Class rep-type java.lang.String - function-args args - flags nomod synthetic classname + function-args t.element + flags nomod synthetic classname non_null comparability 22 -variable args[..] - var-kind array - enclosing-var args - array 1 - dec-type java.lang.String[] - rep-type hashcode[] +variable t.left + var-kind field left + enclosing-var t + dec-type DataStructures.RedBlackNode + rep-type hashcode flags nomod comparability 22 -variable args[..].toString - var-kind function toString() - enclosing-var args[..] - array 1 - dec-type java.lang.String[] - rep-type java.lang.String[] - function-args args[] - flags nomod synthetic to_string +variable t.left.element + var-kind field element + enclosing-var t.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable t.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var t.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args t.left.element + flags nomod synthetic classname non_null + comparability 22 +variable t.left.left + var-kind field left + enclosing-var t.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable t.left.right + var-kind field right + enclosing-var t.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable t.left.color + var-kind field color + enclosing-var t.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable t.right + var-kind field right + enclosing-var t + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable t.right.element + var-kind field element + enclosing-var t.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable t.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var t.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args t.right.element + flags nomod synthetic classname non_null + comparability 22 +variable t.right.left + var-kind field left + enclosing-var t.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable t.right.right + var-kind field right + enclosing-var t.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable t.right.color + var-kind field color + enclosing-var t.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable t.color + var-kind field color + enclosing-var t + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null comparability 22 -ppt DataStructures.RedBlackTree.main(java.lang.String[]):::EXIT279 -ppt-type subexit -parent parent DataStructures.RedBlackTree:::CLASS 1 +ppt DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +ppt-type enter +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left + var-kind field left + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element + var-kind field element + enclosing-var this.header.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left + var-kind field left + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right + var-kind field right + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color + var-kind field color + enclosing-var this.header.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right + var-kind field right + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element + var-kind field element + enclosing-var this.header.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left + var-kind field left + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right + var-kind field right + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color + var-kind field color + enclosing-var this.header.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color + var-kind field color + enclosing-var this.header + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -27785,16 +27558,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -27802,7 +27575,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27810,16 +27583,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27827,7 +27600,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27835,7 +27608,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -27843,7 +27616,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -27851,7 +27624,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27859,16 +27632,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27876,7 +27649,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27884,7 +27657,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -27892,7 +27665,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -27900,30 +27673,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -27931,16 +27704,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -27948,7 +27721,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -27956,16 +27729,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -27973,7 +27746,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -27981,7 +27754,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -27989,7 +27762,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -27997,7 +27770,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -28005,16 +27778,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -28022,7 +27795,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -28030,7 +27803,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -28038,7 +27811,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -28046,14 +27819,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -28061,16 +27834,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -28078,7 +27851,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -28086,16 +27859,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -28103,7 +27876,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -28111,7 +27884,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -28119,7 +27892,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -28127,7 +27900,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -28135,16 +27908,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -28152,7 +27925,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -28160,7 +27933,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -28168,7 +27941,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -28176,14 +27949,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -28191,16 +27964,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -28208,7 +27981,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -28216,16 +27989,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -28233,7 +28006,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -28241,7 +28014,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -28249,7 +28022,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -28257,7 +28030,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -28265,16 +28038,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -28282,7 +28055,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -28290,7 +28063,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -28298,7 +28071,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -28306,14 +28079,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -28321,16 +28094,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -28338,7 +28111,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -28346,16 +28119,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -28363,7 +28136,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -28371,7 +28144,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -28379,7 +28152,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -28387,7 +28160,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -28395,16 +28168,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -28412,7 +28185,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -28420,7 +28193,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -28428,7 +28201,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -28436,47 +28209,170 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 -variable args - var-kind variable - dec-type java.lang.String[] + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable + dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod comparability 22 -variable args.getClass().getName() +variable item.getClass().getName() var-kind function getClass().getName() - enclosing-var args + enclosing-var item dec-type java.lang.Class rep-type java.lang.String - function-args args - flags nomod synthetic classname + function-args item + flags nomod synthetic classname non_null comparability 22 -variable args[..] - var-kind array - enclosing-var args - array 1 - dec-type java.lang.String[] - rep-type hashcode[] + +ppt DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode flags nomod comparability 22 -variable args[..].toString - var-kind function toString() - enclosing-var args[..] - array 1 - dec-type java.lang.String[] - rep-type java.lang.String[] - function-args args[] - flags nomod synthetic to_string + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod comparability 22 - -ppt DataStructures.RedBlackTree:::CLASS -ppt-type class + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left + var-kind field left + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element + var-kind field element + enclosing-var this.header.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left + var-kind field left + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right + var-kind field right + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color + var-kind field color + enclosing-var this.header.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right + var-kind field right + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element + var-kind field element + enclosing-var this.header.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left + var-kind field left + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right + var-kind field right + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color + var-kind field color + enclosing-var this.header.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color + var-kind field color + enclosing-var this.header + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -28484,14 +28380,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -28499,6 +28397,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -28506,14 +28405,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -28521,6 +28422,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -28528,6 +28430,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -28535,6 +28438,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -28542,6 +28446,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -28549,14 +28454,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -28564,6 +28471,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -28571,6 +28479,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -28578,6 +28487,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -28585,26 +28495,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -28612,14 +28526,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -28627,6 +28543,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -28634,14 +28551,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -28649,6 +28568,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -28656,6 +28576,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -28663,6 +28584,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -28670,6 +28592,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -28677,14 +28600,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -28692,6 +28617,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -28699,6 +28625,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -28706,6 +28633,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -28713,12 +28641,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -28726,14 +28656,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -28741,6 +28673,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -28748,14 +28681,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -28763,6 +28698,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -28770,6 +28706,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -28777,6 +28714,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -28784,6 +28722,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -28791,14 +28730,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -28806,6 +28747,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -28813,6 +28755,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -28820,6 +28763,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -28827,12 +28771,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -28840,14 +28786,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -28855,6 +28803,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -28862,14 +28811,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -28877,6 +28828,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -28884,6 +28836,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -28891,6 +28844,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -28898,6 +28852,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -28905,14 +28860,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -28920,6 +28877,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -28927,6 +28885,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -28934,6 +28893,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -28941,12 +28901,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -28954,14 +28916,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -28969,6 +28933,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -28976,14 +28941,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -28991,6 +28958,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -28998,6 +28966,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -29005,6 +28974,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -29012,6 +28982,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -29019,14 +28990,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -29034,6 +29007,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -29041,6 +29015,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -29048,6 +29023,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -29055,16 +29031,32 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable item.getClass().getName() + var-kind function getClass().getName() + enclosing-var item + dec-type java.lang.Class + rep-type java.lang.String + function-args item + flags nomod synthetic classname non_null + comparability 22 -ppt DataStructures.RedBlackTree:::OBJECT -ppt-type object -parent parent DataStructures.RedBlackTree:::CLASS 1 +ppt DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 variable this - var-kind variable + var-kind variable dec-type DataStructures.RedBlackTree rep-type hashcode - flags is_param nomod + flags is_param nomod non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header var-kind field header enclosing-var this @@ -29072,6 +29064,7 @@ variable this.header rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.element var-kind field element enclosing-var this.header @@ -29079,14 +29072,16 @@ variable this.header.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String function-args this.header.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left var-kind field left enclosing-var this.header @@ -29094,6 +29089,7 @@ variable this.header.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.element var-kind field element enclosing-var this.header.left @@ -29101,14 +29097,16 @@ variable this.header.left.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String function-args this.header.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.left var-kind field left enclosing-var this.header.left @@ -29116,6 +29114,7 @@ variable this.header.left.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.right var-kind field right enclosing-var this.header.left @@ -29123,6 +29122,7 @@ variable this.header.left.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.left.color var-kind field color enclosing-var this.header.left @@ -29130,6 +29130,7 @@ variable this.header.left.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right var-kind field right enclosing-var this.header @@ -29137,6 +29138,7 @@ variable this.header.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.element var-kind field element enclosing-var this.header.right @@ -29144,14 +29146,16 @@ variable this.header.right.element rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String function-args this.header.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.left var-kind field left enclosing-var this.header.right @@ -29159,6 +29163,7 @@ variable this.header.right.left rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.right var-kind field right enclosing-var this.header.right @@ -29166,6 +29171,7 @@ variable this.header.right.right rep-type hashcode flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.right.color var-kind field color enclosing-var this.header.right @@ -29173,6 +29179,7 @@ variable this.header.right.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable this.header.color var-kind field color enclosing-var this.header @@ -29180,13 +29187,14 @@ variable this.header.color rep-type int flags nomod comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode @@ -29194,16 +29202,16 @@ variable DataStructures.RedBlackTree.nullNode.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode @@ -29211,7 +29219,7 @@ variable DataStructures.RedBlackTree.nullNode.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -29219,16 +29227,16 @@ variable DataStructures.RedBlackTree.nullNode.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -29236,7 +29244,7 @@ variable DataStructures.RedBlackTree.nullNode.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -29244,7 +29252,7 @@ variable DataStructures.RedBlackTree.nullNode.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.left @@ -29252,7 +29260,7 @@ variable DataStructures.RedBlackTree.nullNode.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode @@ -29260,7 +29268,7 @@ variable DataStructures.RedBlackTree.nullNode.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -29268,16 +29276,16 @@ variable DataStructures.RedBlackTree.nullNode.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.nullNode.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -29285,7 +29293,7 @@ variable DataStructures.RedBlackTree.nullNode.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -29293,7 +29301,7 @@ variable DataStructures.RedBlackTree.nullNode.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode.right @@ -29301,7 +29309,7 @@ variable DataStructures.RedBlackTree.nullNode.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.nullNode.color var-kind field color enclosing-var DataStructures.RedBlackTree.nullNode @@ -29309,30 +29317,30 @@ variable DataStructures.RedBlackTree.nullNode.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.BLACK - var-kind variable + var-kind variable dec-type int rep-type int constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.RED - var-kind variable + var-kind variable dec-type int rep-type int constant 0 flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element var-kind field element enclosing-var DataStructures.RedBlackTree.current @@ -29340,16 +29348,16 @@ variable DataStructures.RedBlackTree.current.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left var-kind field left enclosing-var DataStructures.RedBlackTree.current @@ -29357,7 +29365,7 @@ variable DataStructures.RedBlackTree.current.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.left @@ -29365,16 +29373,16 @@ variable DataStructures.RedBlackTree.current.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.left @@ -29382,7 +29390,7 @@ variable DataStructures.RedBlackTree.current.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.left @@ -29390,7 +29398,7 @@ variable DataStructures.RedBlackTree.current.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.left @@ -29398,7 +29406,7 @@ variable DataStructures.RedBlackTree.current.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right var-kind field right enclosing-var DataStructures.RedBlackTree.current @@ -29406,7 +29414,7 @@ variable DataStructures.RedBlackTree.current.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.current.right @@ -29414,16 +29422,16 @@ variable DataStructures.RedBlackTree.current.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.current.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.current.right @@ -29431,7 +29439,7 @@ variable DataStructures.RedBlackTree.current.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.current.right @@ -29439,7 +29447,7 @@ variable DataStructures.RedBlackTree.current.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.current.right @@ -29447,7 +29455,7 @@ variable DataStructures.RedBlackTree.current.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.current.color var-kind field color enclosing-var DataStructures.RedBlackTree.current @@ -29455,14 +29463,14 @@ variable DataStructures.RedBlackTree.current.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent @@ -29470,16 +29478,16 @@ variable DataStructures.RedBlackTree.parent.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent @@ -29487,7 +29495,7 @@ variable DataStructures.RedBlackTree.parent.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.left @@ -29495,16 +29503,16 @@ variable DataStructures.RedBlackTree.parent.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.left @@ -29512,7 +29520,7 @@ variable DataStructures.RedBlackTree.parent.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.left @@ -29520,7 +29528,7 @@ variable DataStructures.RedBlackTree.parent.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.left @@ -29528,7 +29536,7 @@ variable DataStructures.RedBlackTree.parent.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent @@ -29536,7 +29544,7 @@ variable DataStructures.RedBlackTree.parent.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.parent.right @@ -29544,16 +29552,16 @@ variable DataStructures.RedBlackTree.parent.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.parent.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.parent.right @@ -29561,7 +29569,7 @@ variable DataStructures.RedBlackTree.parent.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.parent.right @@ -29569,7 +29577,7 @@ variable DataStructures.RedBlackTree.parent.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent.right @@ -29577,7 +29585,7 @@ variable DataStructures.RedBlackTree.parent.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.parent.color var-kind field color enclosing-var DataStructures.RedBlackTree.parent @@ -29585,14 +29593,14 @@ variable DataStructures.RedBlackTree.parent.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand @@ -29600,16 +29608,16 @@ variable DataStructures.RedBlackTree.grand.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand @@ -29617,7 +29625,7 @@ variable DataStructures.RedBlackTree.grand.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.left @@ -29625,16 +29633,16 @@ variable DataStructures.RedBlackTree.grand.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.left @@ -29642,7 +29650,7 @@ variable DataStructures.RedBlackTree.grand.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.left @@ -29650,7 +29658,7 @@ variable DataStructures.RedBlackTree.grand.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.left @@ -29658,7 +29666,7 @@ variable DataStructures.RedBlackTree.grand.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand @@ -29666,7 +29674,7 @@ variable DataStructures.RedBlackTree.grand.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.grand.right @@ -29674,16 +29682,16 @@ variable DataStructures.RedBlackTree.grand.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.grand.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.grand.right @@ -29691,7 +29699,7 @@ variable DataStructures.RedBlackTree.grand.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.grand.right @@ -29699,7 +29707,7 @@ variable DataStructures.RedBlackTree.grand.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand.right @@ -29707,7 +29715,7 @@ variable DataStructures.RedBlackTree.grand.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.grand.color var-kind field color enclosing-var DataStructures.RedBlackTree.grand @@ -29715,14 +29723,14 @@ variable DataStructures.RedBlackTree.grand.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great - var-kind variable + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element var-kind field element enclosing-var DataStructures.RedBlackTree.great @@ -29730,16 +29738,16 @@ variable DataStructures.RedBlackTree.great.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left var-kind field left enclosing-var DataStructures.RedBlackTree.great @@ -29747,7 +29755,7 @@ variable DataStructures.RedBlackTree.great.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.left @@ -29755,16 +29763,16 @@ variable DataStructures.RedBlackTree.great.left.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.left.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.left @@ -29772,7 +29780,7 @@ variable DataStructures.RedBlackTree.great.left.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.left @@ -29780,7 +29788,7 @@ variable DataStructures.RedBlackTree.great.left.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.left.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.left @@ -29788,7 +29796,7 @@ variable DataStructures.RedBlackTree.great.left.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right var-kind field right enclosing-var DataStructures.RedBlackTree.great @@ -29796,7 +29804,7 @@ variable DataStructures.RedBlackTree.great.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element var-kind field element enclosing-var DataStructures.RedBlackTree.great.right @@ -29804,16 +29812,16 @@ variable DataStructures.RedBlackTree.great.right.element rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String function-args DataStructures.RedBlackTree.great.right.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.left var-kind field left enclosing-var DataStructures.RedBlackTree.great.right @@ -29821,7 +29829,7 @@ variable DataStructures.RedBlackTree.great.right.left rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.right var-kind field right enclosing-var DataStructures.RedBlackTree.great.right @@ -29829,7 +29837,7 @@ variable DataStructures.RedBlackTree.great.right.right rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.right.color var-kind field color enclosing-var DataStructures.RedBlackTree.great.right @@ -29837,7 +29845,7 @@ variable DataStructures.RedBlackTree.great.right.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 + parent DataStructures.RedBlackTree:::OBJECT 1 variable DataStructures.RedBlackTree.great.color var-kind field color enclosing-var DataStructures.RedBlackTree.great @@ -29845,17265 +29853,15217 @@ variable DataStructures.RedBlackTree.great.color rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackTree:::CLASS 1 - -ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::ENTER -ppt-type enter -variable theElement - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod comparability 22 -variable theElement.getClass().getName() +variable item.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var item dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags nomod synthetic classname - comparability 22 - -ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXIT13 -ppt-type subexit -parent parent DataStructures.RedBlackNode:::OBJECT 1 -variable this - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod + function-args item + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.element - var-kind field element - enclosing-var this - dec-type DataStructures.Comparable +variable exception + var-kind return + dec-type java.lang.Throwable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.element.getClass().getName() +variable exception.getClass().getName() var-kind function getClass().getName() - enclosing-var this.element + enclosing-var exception dec-type java.lang.Class rep-type java.lang.String - function-args this.element - flags nomod synthetic classname + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left - var-kind field left + +ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::ENTER +ppt-type enter +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header enclosing-var this dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var this.left + enclosing-var this.header dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.element - flags nomod synthetic classname + function-args this.header.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left var-kind field left - enclosing-var this.left + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element var-kind field element - enclosing-var this.left.left + enclosing-var this.header.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.left.element + enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.left.element - flags nomod synthetic classname + function-args this.header.left.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left var-kind field left - enclosing-var this.left.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right var-kind field right - enclosing-var this.left.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color var-kind field color - enclosing-var this.left.left + enclosing-var this.header.left dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right var-kind field right - enclosing-var this.left + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element var-kind field element - enclosing-var this.left.right + enclosing-var this.header.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.right.element + enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.right.element - flags nomod synthetic classname + function-args this.header.right.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left var-kind field left - enclosing-var this.left.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right var-kind field right - enclosing-var this.left.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color var-kind field color - enclosing-var this.left.right + enclosing-var this.header.right dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color var-kind field color - enclosing-var this.left + enclosing-var this.header dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right - var-kind field right - enclosing-var this + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element var-kind field element - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.nullNode dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.element + enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left var-kind field left - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.nullNode dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.left.element + enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right var-kind field right - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.nullNode dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.right.element + enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.color var-kind field color - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.nullNode dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.color - var-kind field color - enclosing-var this + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable dec-type int rep-type int + constant 1 flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable theElement - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable theElement.getClass().getName() - var-kind function getClass().getName() - enclosing-var theElement - dec-type java.lang.Class - rep-type java.lang.String - function-args theElement - flags nomod synthetic classname - comparability 22 - -ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable,\_DataStructures.RedBlackNode,\_DataStructures.RedBlackNode):::ENTER -ppt-type enter -variable theElement - var-kind variable - dec-type DataStructures.Comparable - rep-type hashcode - flags is_param nomod - comparability 22 -variable theElement.getClass().getName() - var-kind function getClass().getName() - enclosing-var theElement - dec-type java.lang.Class - rep-type java.lang.String - function-args theElement - flags nomod synthetic classname + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod comparability 22 -variable lt - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable lt.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element var-kind field element - enclosing-var lt + enclosing-var DataStructures.RedBlackTree.current dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable lt.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var lt.element + enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String - function-args lt.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null comparability 22 -variable lt.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left var-kind field left - enclosing-var lt + enclosing-var DataStructures.RedBlackTree.current dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element var-kind field element - enclosing-var lt.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable lt.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var lt.left.element + enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String - function-args lt.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null comparability 22 -variable lt.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.left var-kind field left - enclosing-var lt.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.right var-kind field right - enclosing-var lt.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.color var-kind field color - enclosing-var lt.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type int rep-type int flags nomod comparability 22 -variable lt.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right var-kind field right - enclosing-var lt + enclosing-var DataStructures.RedBlackTree.current dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element var-kind field element - enclosing-var lt.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable lt.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var lt.right.element + enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String - function-args lt.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null comparability 22 -variable lt.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.left var-kind field left - enclosing-var lt.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.right var-kind field right - enclosing-var lt.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.color var-kind field color - enclosing-var lt.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type int rep-type int flags nomod comparability 22 -variable lt.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.color var-kind field color - enclosing-var lt + enclosing-var DataStructures.RedBlackTree.current dec-type int rep-type int flags nomod comparability 22 -variable rt - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable rt.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element var-kind field element - enclosing-var rt + enclosing-var DataStructures.RedBlackTree.parent dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable rt.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() var-kind function getClass().getName() - enclosing-var rt.element + enclosing-var DataStructures.RedBlackTree.parent.element dec-type java.lang.Class rep-type java.lang.String - function-args rt.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null comparability 22 -variable rt.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left var-kind field left - enclosing-var rt + enclosing-var DataStructures.RedBlackTree.parent dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element var-kind field element - enclosing-var rt.left + enclosing-var DataStructures.RedBlackTree.parent.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable rt.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var rt.left.element + enclosing-var DataStructures.RedBlackTree.parent.left.element dec-type java.lang.Class rep-type java.lang.String - function-args rt.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null comparability 22 -variable rt.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.left var-kind field left - enclosing-var rt.left + enclosing-var DataStructures.RedBlackTree.parent.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.right var-kind field right - enclosing-var rt.left + enclosing-var DataStructures.RedBlackTree.parent.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.color var-kind field color - enclosing-var rt.left + enclosing-var DataStructures.RedBlackTree.parent.left dec-type int rep-type int flags nomod comparability 22 -variable rt.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right var-kind field right - enclosing-var rt + enclosing-var DataStructures.RedBlackTree.parent dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element var-kind field element - enclosing-var rt.right + enclosing-var DataStructures.RedBlackTree.parent.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable rt.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var rt.right.element + enclosing-var DataStructures.RedBlackTree.parent.right.element dec-type java.lang.Class rep-type java.lang.String - function-args rt.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null comparability 22 -variable rt.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.left var-kind field left - enclosing-var rt.right + enclosing-var DataStructures.RedBlackTree.parent.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.right var-kind field right - enclosing-var rt.right + enclosing-var DataStructures.RedBlackTree.parent.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.color var-kind field color - enclosing-var rt.right + enclosing-var DataStructures.RedBlackTree.parent.right dec-type int rep-type int flags nomod comparability 22 -variable rt.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.color var-kind field color - enclosing-var rt + enclosing-var DataStructures.RedBlackTree.parent dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable,\_DataStructures.RedBlackNode,\_DataStructures.RedBlackNode):::EXIT21 -ppt-type subexit -parent parent DataStructures.RedBlackNode:::OBJECT 1 -variable this - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode - flags is_param nomod + flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element var-kind field element - enclosing-var this + enclosing-var DataStructures.RedBlackTree.grand dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.element + enclosing-var DataStructures.RedBlackTree.grand.element dec-type java.lang.Class rep-type java.lang.String - function-args this.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left var-kind field left - enclosing-var this + enclosing-var DataStructures.RedBlackTree.grand dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element var-kind field element - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.grand.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.element + enclosing-var DataStructures.RedBlackTree.grand.left.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left - var-kind field left - enclosing-var this.left - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags nomod - comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.element - var-kind field element - enclosing-var this.left.left - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var this.left.left.element - dec-type java.lang.Class - rep-type java.lang.String - function-args this.left.left.element - flags nomod synthetic classname - comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.left var-kind field left - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.grand.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.right var-kind field right - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.grand.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.color var-kind field color - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.grand.left dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right var-kind field right - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.grand dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element var-kind field element - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.grand.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.right.element + enclosing-var DataStructures.RedBlackTree.grand.right.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.left var-kind field left - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.grand.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.right var-kind field right - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.grand.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.color var-kind field color - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.grand.right dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.color var-kind field color - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.grand dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right - var-kind field right - enclosing-var this + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element var-kind field element - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.great dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.element + enclosing-var DataStructures.RedBlackTree.great.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left var-kind field left - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.great dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element var-kind field element - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.great.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.left.element + enclosing-var DataStructures.RedBlackTree.great.left.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.left var-kind field left - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.great.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.right var-kind field right - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.great.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.color var-kind field color - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.great.left dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right var-kind field right - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.great dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element var-kind field element - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.great.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.right.element + enclosing-var DataStructures.RedBlackTree.great.right.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.left var-kind field left - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.great.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.right var-kind field right - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.great.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.right.color - var-kind field color - enclosing-var this.right.right - dec-type int - rep-type int - flags nomod - comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.color var-kind field color - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.great.right dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable this.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.color var-kind field color - enclosing-var this + enclosing-var DataStructures.RedBlackTree.great dec-type int rep-type int flags nomod comparability 22 - parent DataStructures.RedBlackNode:::OBJECT 1 -variable theElement - var-kind variable + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable dec-type DataStructures.Comparable rep-type hashcode flags is_param nomod comparability 22 -variable theElement.getClass().getName() +variable item.getClass().getName() var-kind function getClass().getName() - enclosing-var theElement + enclosing-var item dec-type java.lang.Class rep-type java.lang.String - function-args theElement - flags nomod synthetic classname + function-args item + flags nomod synthetic classname non_null comparability 22 -variable lt - var-kind variable +variable parent + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags is_param nomod comparability 22 -variable lt.element +variable parent.element var-kind field element - enclosing-var lt + enclosing-var parent dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable lt.element.getClass().getName() +variable parent.element.getClass().getName() var-kind function getClass().getName() - enclosing-var lt.element + enclosing-var parent.element dec-type java.lang.Class rep-type java.lang.String - function-args lt.element - flags nomod synthetic classname + function-args parent.element + flags nomod synthetic classname non_null comparability 22 -variable lt.left +variable parent.left var-kind field left - enclosing-var lt + enclosing-var parent dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.left.element +variable parent.left.element var-kind field element - enclosing-var lt.left + enclosing-var parent.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable lt.left.element.getClass().getName() +variable parent.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var lt.left.element + enclosing-var parent.left.element dec-type java.lang.Class rep-type java.lang.String - function-args lt.left.element - flags nomod synthetic classname + function-args parent.left.element + flags nomod synthetic classname non_null comparability 22 -variable lt.left.left +variable parent.left.left var-kind field left - enclosing-var lt.left + enclosing-var parent.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.left.right +variable parent.left.right var-kind field right - enclosing-var lt.left + enclosing-var parent.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.left.color +variable parent.left.color var-kind field color - enclosing-var lt.left + enclosing-var parent.left dec-type int rep-type int flags nomod comparability 22 -variable lt.right +variable parent.right var-kind field right - enclosing-var lt + enclosing-var parent dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.right.element +variable parent.right.element var-kind field element - enclosing-var lt.right + enclosing-var parent.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable lt.right.element.getClass().getName() +variable parent.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var lt.right.element + enclosing-var parent.right.element dec-type java.lang.Class rep-type java.lang.String - function-args lt.right.element - flags nomod synthetic classname + function-args parent.right.element + flags nomod synthetic classname non_null comparability 22 -variable lt.right.left +variable parent.right.left var-kind field left - enclosing-var lt.right + enclosing-var parent.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.right.right +variable parent.right.right var-kind field right - enclosing-var lt.right + enclosing-var parent.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable lt.right.color +variable parent.right.color var-kind field color - enclosing-var lt.right + enclosing-var parent.right dec-type int rep-type int flags nomod comparability 22 -variable lt.color +variable parent.color var-kind field color - enclosing-var lt + enclosing-var parent dec-type int rep-type int flags nomod comparability 22 -variable rt - var-kind variable + +ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::EXIT211 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this dec-type DataStructures.RedBlackNode rep-type hashcode - flags is_param nomod + flags nomod comparability 22 -variable rt.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element var-kind field element - enclosing-var rt + enclosing-var this.header dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable rt.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() var-kind function getClass().getName() - enclosing-var rt.element + enclosing-var this.header.element dec-type java.lang.Class rep-type java.lang.String - function-args rt.element - flags nomod synthetic classname + function-args this.header.element + flags nomod synthetic classname non_null comparability 22 -variable rt.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left var-kind field left - enclosing-var rt + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element var-kind field element - enclosing-var rt.left + enclosing-var this.header.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable rt.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var rt.left.element + enclosing-var this.header.left.element dec-type java.lang.Class rep-type java.lang.String - function-args rt.left.element - flags nomod synthetic classname + function-args this.header.left.element + flags nomod synthetic classname non_null comparability 22 -variable rt.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left var-kind field left - enclosing-var rt.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right var-kind field right - enclosing-var rt.left + enclosing-var this.header.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color var-kind field color - enclosing-var rt.left + enclosing-var this.header.left dec-type int rep-type int flags nomod comparability 22 -variable rt.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right var-kind field right - enclosing-var rt + enclosing-var this.header dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element var-kind field element - enclosing-var rt.right + enclosing-var this.header.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable rt.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var rt.right.element + enclosing-var this.header.right.element dec-type java.lang.Class rep-type java.lang.String - function-args rt.right.element - flags nomod synthetic classname + function-args this.header.right.element + flags nomod synthetic classname non_null comparability 22 -variable rt.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left var-kind field left - enclosing-var rt.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right var-kind field right - enclosing-var rt.right + enclosing-var this.header.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable rt.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color var-kind field color - enclosing-var rt.right + enclosing-var this.header.right dec-type int rep-type int flags nomod comparability 22 -variable rt.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color var-kind field color - enclosing-var rt + enclosing-var this.header dec-type int rep-type int flags nomod comparability 22 - -ppt DataStructures.RedBlackNode:::OBJECT -ppt-type object -variable this - var-kind variable - dec-type DataStructures.RedBlackNode - rep-type hashcode - flags is_param nomod - comparability 22 -variable this.element - var-kind field element - enclosing-var this - dec-type DataStructures.Comparable - rep-type hashcode - flags nomod - comparability 22 -variable this.element.getClass().getName() - var-kind function getClass().getName() - enclosing-var this.element - dec-type java.lang.Class - rep-type java.lang.String - function-args this.element - flags nomod synthetic classname - comparability 22 -variable this.left - var-kind field left - enclosing-var this + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element var-kind field element - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.nullNode dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable this.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.element + enclosing-var DataStructures.RedBlackTree.nullNode.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null comparability 22 -variable this.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left var-kind field left - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.nullNode dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element var-kind field element - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable this.left.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.left.element + enclosing-var DataStructures.RedBlackTree.nullNode.left.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null comparability 22 -variable this.left.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.left var-kind field left - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.right var-kind field right - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.color var-kind field color - enclosing-var this.left.left + enclosing-var DataStructures.RedBlackTree.nullNode.left dec-type int rep-type int flags nomod comparability 22 -variable this.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right var-kind field right - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.nullNode dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element var-kind field element - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable this.left.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.left.right.element + enclosing-var DataStructures.RedBlackTree.nullNode.right.element dec-type java.lang.Class rep-type java.lang.String - function-args this.left.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null comparability 22 -variable this.left.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.left var-kind field left - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.right var-kind field right - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.left.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.color var-kind field color - enclosing-var this.left.right + enclosing-var DataStructures.RedBlackTree.nullNode.right dec-type int rep-type int flags nomod comparability 22 -variable this.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.color var-kind field color - enclosing-var this.left + enclosing-var DataStructures.RedBlackTree.nullNode dec-type int rep-type int flags nomod comparability 22 -variable this.right - var-kind field right - enclosing-var this + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current + var-kind variable dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element var-kind field element - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.current dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable this.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.element + enclosing-var DataStructures.RedBlackTree.current.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null comparability 22 -variable this.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left var-kind field left - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.current dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.left.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element var-kind field element - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable this.right.left.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.left.element + enclosing-var DataStructures.RedBlackTree.current.left.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.left.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null comparability 22 -variable this.right.left.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.left var-kind field left - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.left.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.right var-kind field right - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.left.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.color var-kind field color - enclosing-var this.right.left + enclosing-var DataStructures.RedBlackTree.current.left dec-type int rep-type int flags nomod comparability 22 -variable this.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right var-kind field right - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.current dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.right.element + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element var-kind field element - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type DataStructures.Comparable rep-type hashcode flags nomod comparability 22 -variable this.right.right.element.getClass().getName() + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() var-kind function getClass().getName() - enclosing-var this.right.right.element + enclosing-var DataStructures.RedBlackTree.current.right.element dec-type java.lang.Class rep-type java.lang.String - function-args this.right.right.element - flags nomod synthetic classname + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null comparability 22 -variable this.right.right.left + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.left var-kind field left - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.right.right + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.right var-kind field right - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type DataStructures.RedBlackNode rep-type hashcode flags nomod comparability 22 -variable this.right.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.color var-kind field color - enclosing-var this.right.right + enclosing-var DataStructures.RedBlackTree.current.right dec-type int rep-type int flags nomod comparability 22 -variable this.right.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.color var-kind field color - enclosing-var this.right + enclosing-var DataStructures.RedBlackTree.current dec-type int rep-type int flags nomod comparability 22 -variable this.color + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.color var-kind field color - enclosing-var this + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable item.getClass().getName() + var-kind function getClass().getName() + enclosing-var item + dec-type java.lang.Class + rep-type java.lang.String + function-args item + flags nomod synthetic classname non_null + comparability 22 +variable parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable parent.element + var-kind field element + enclosing-var parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.left + var-kind field left + enclosing-var parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.element + var-kind field element + enclosing-var parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.left.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.left.left + var-kind field left + enclosing-var parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.right + var-kind field right + enclosing-var parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.color + var-kind field color + enclosing-var parent.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable parent.right + var-kind field right + enclosing-var parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.element + var-kind field element + enclosing-var parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.right.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.right.left + var-kind field left + enclosing-var parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.right + var-kind field right + enclosing-var parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.color + var-kind field color + enclosing-var parent.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable parent.color + var-kind field color + enclosing-var parent + dec-type int + rep-type int + flags nomod + comparability 22 +variable return + var-kind return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.element + var-kind field element + enclosing-var return + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left + var-kind field left + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element + var-kind field element + enclosing-var return.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.left.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left.left + var-kind field left + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.right + var-kind field right + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.color + var-kind field color + enclosing-var return.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.right + var-kind field right + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element + var-kind field element + enclosing-var return.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.right.element + flags nomod synthetic classname non_null + comparability 22 +variable return.right.left + var-kind field left + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.right + var-kind field right + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.color + var-kind field color + enclosing-var return.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.color + var-kind field color + enclosing-var return + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::EXIT215 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left + var-kind field left + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element + var-kind field element + enclosing-var this.header.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left + var-kind field left + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right + var-kind field right + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color + var-kind field color + enclosing-var this.header.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right + var-kind field right + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element + var-kind field element + enclosing-var this.header.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left + var-kind field left + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right + var-kind field right + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color + var-kind field color + enclosing-var this.header.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color + var-kind field color + enclosing-var this.header + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable item.getClass().getName() + var-kind function getClass().getName() + enclosing-var item + dec-type java.lang.Class + rep-type java.lang.String + function-args item + flags nomod synthetic classname non_null + comparability 22 +variable parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable parent.element + var-kind field element + enclosing-var parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.left + var-kind field left + enclosing-var parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.element + var-kind field element + enclosing-var parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.left.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.left.left + var-kind field left + enclosing-var parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.right + var-kind field right + enclosing-var parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.color + var-kind field color + enclosing-var parent.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable parent.right + var-kind field right + enclosing-var parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.element + var-kind field element + enclosing-var parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.right.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.right.left + var-kind field left + enclosing-var parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.right + var-kind field right + enclosing-var parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.color + var-kind field color + enclosing-var parent.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable parent.color + var-kind field color + enclosing-var parent + dec-type int + rep-type int + flags nomod + comparability 22 +variable return + var-kind return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.element + var-kind field element + enclosing-var return + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left + var-kind field left + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element + var-kind field element + enclosing-var return.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.left.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left.left + var-kind field left + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.right + var-kind field right + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.color + var-kind field color + enclosing-var return.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.right + var-kind field right + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element + var-kind field element + enclosing-var return.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.right.element + flags nomod synthetic classname non_null + comparability 22 +variable return.right.left + var-kind field left + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.right + var-kind field right + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.color + var-kind field color + enclosing-var return.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.color + var-kind field color + enclosing-var return dec-type int rep-type int flags nomod comparability 22 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::ENTER -this_invocation_nonce -0 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -1 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 -lt -null -1 -lt.element -nonsensical -2 -lt.element.getClass().getName() -nonsensical -2 -lt.left -nonsensical -2 -lt.left.element -nonsensical -2 -lt.left.element.getClass().getName() -nonsensical -2 -lt.left.left -nonsensical -2 -lt.left.right -nonsensical -2 -lt.left.color -nonsensical -2 -lt.right -nonsensical -2 -lt.right.element -nonsensical -2 -lt.right.element.getClass().getName() -nonsensical -2 -lt.right.left -nonsensical -2 -lt.right.right -nonsensical -2 -lt.right.color -nonsensical -2 -lt.color -nonsensical -2 -rt -null -1 -rt.element -nonsensical -2 -rt.element.getClass().getName() -nonsensical -2 -rt.left -nonsensical -2 -rt.left.element -nonsensical -2 -rt.left.element.getClass().getName() -nonsensical -2 -rt.left.left -nonsensical -2 -rt.left.right -nonsensical -2 -rt.left.color -nonsensical -2 -rt.right -nonsensical -2 -rt.right.element -nonsensical -2 -rt.right.element.getClass().getName() -nonsensical -2 -rt.right.left -nonsensical -2 -rt.right.right -nonsensical -2 -rt.right.color -nonsensical -2 -rt.color -nonsensical -2 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -1 -this -42247872 -1 -this.element -null -1 -this.element.getClass().getName() -nonsensical -2 -this.left -null -1 -this.left.element -nonsensical -2 -this.left.element.getClass().getName() -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.element -nonsensical -2 -this.left.left.element.getClass().getName() -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.left.color -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.element -nonsensical -2 -this.left.right.element.getClass().getName() -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.left.right.color -nonsensical -2 -this.left.color -nonsensical -2 -this.right -null -1 -this.right.element -nonsensical -2 -this.right.element.getClass().getName() -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.element -nonsensical -2 -this.right.left.element.getClass().getName() -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.left.color -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.element -nonsensical -2 -this.right.right.element.getClass().getName() -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -this.right.right.color -nonsensical -2 -this.right.color -nonsensical -2 -this.color -1 -1 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 -lt -null -1 -lt.element -nonsensical -2 -lt.element.getClass().getName() -nonsensical -2 -lt.left -nonsensical -2 -lt.left.element -nonsensical -2 -lt.left.element.getClass().getName() -nonsensical -2 -lt.left.left -nonsensical -2 -lt.left.right -nonsensical -2 -lt.left.color -nonsensical -2 -lt.right -nonsensical -2 -lt.right.element -nonsensical -2 -lt.right.element.getClass().getName() -nonsensical -2 -lt.right.left -nonsensical -2 -lt.right.right -nonsensical -2 -lt.right.color -nonsensical -2 -lt.color -nonsensical -2 -rt -null -1 -rt.element -nonsensical -2 -rt.element.getClass().getName() -nonsensical -2 -rt.left -nonsensical -2 -rt.left.element -nonsensical -2 -rt.left.element.getClass().getName() -nonsensical -2 -rt.left.left -nonsensical -2 -rt.left.right -nonsensical -2 -rt.left.color -nonsensical -2 -rt.right -nonsensical -2 -rt.right.element -nonsensical -2 -rt.right.element.getClass().getName() -nonsensical -2 -rt.right.left -nonsensical -2 -rt.right.right -nonsensical -2 -rt.right.color -nonsensical -2 -rt.color -nonsensical -2 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXIT13 -this_invocation_nonce -0 -this -42247872 -1 -this.element -null -1 -this.element.getClass().getName() -nonsensical -2 -this.left -null -1 -this.left.element -nonsensical -2 -this.left.element.getClass().getName() -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.element -nonsensical -2 -this.left.left.element.getClass().getName() -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.left.color -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.element -nonsensical -2 -this.left.right.element.getClass().getName() -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.left.right.color -nonsensical -2 -this.left.color -nonsensical -2 -this.right -null -1 -this.right.element -nonsensical -2 -this.right.element.getClass().getName() -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.element -nonsensical -2 -this.right.left.element.getClass().getName() -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.left.color -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.element -nonsensical -2 -this.right.right.element.getClass().getName() -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -this.right.right.color -nonsensical -2 -this.right.color -nonsensical -2 -this.color -1 -1 -theElement -null -1 -theElement.getClass().getName() -nonsensical -2 - -DataStructures.RedBlackTree.main(java.lang.String[]):::ENTER -this_invocation_nonce -2 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -null -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -null -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -null -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -null -1 -DataStructures.RedBlackTree.current.element -nonsensical -2 -DataStructures.RedBlackTree.current.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.left -nonsensical -2 -DataStructures.RedBlackTree.current.left.element -nonsensical -2 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.left.left -nonsensical -2 -DataStructures.RedBlackTree.current.left.right -nonsensical -2 -DataStructures.RedBlackTree.current.left.color -nonsensical -2 -DataStructures.RedBlackTree.current.right -nonsensical -2 -DataStructures.RedBlackTree.current.right.element -nonsensical -2 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.right.left -nonsensical -2 -DataStructures.RedBlackTree.current.right.right -nonsensical -2 -DataStructures.RedBlackTree.current.right.color -nonsensical -2 -DataStructures.RedBlackTree.current.color -nonsensical -2 -DataStructures.RedBlackTree.parent -null -1 -DataStructures.RedBlackTree.parent.element -nonsensical -2 -DataStructures.RedBlackTree.parent.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.left -nonsensical -2 -DataStructures.RedBlackTree.parent.left.element -nonsensical -2 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.left.left -nonsensical -2 -DataStructures.RedBlackTree.parent.left.right -nonsensical -2 -DataStructures.RedBlackTree.parent.left.color -nonsensical -2 -DataStructures.RedBlackTree.parent.right -nonsensical -2 -DataStructures.RedBlackTree.parent.right.element -nonsensical -2 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.right.left -nonsensical -2 -DataStructures.RedBlackTree.parent.right.right -nonsensical -2 -DataStructures.RedBlackTree.parent.right.color -nonsensical -2 -DataStructures.RedBlackTree.parent.color -nonsensical -2 -DataStructures.RedBlackTree.grand -null -1 -DataStructures.RedBlackTree.grand.element -nonsensical -2 -DataStructures.RedBlackTree.grand.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.left -nonsensical -2 -DataStructures.RedBlackTree.grand.left.element -nonsensical -2 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.left.left -nonsensical -2 -DataStructures.RedBlackTree.grand.left.right -nonsensical -2 -DataStructures.RedBlackTree.grand.left.color -nonsensical -2 -DataStructures.RedBlackTree.grand.right -nonsensical -2 -DataStructures.RedBlackTree.grand.right.element -nonsensical -2 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.right.left -nonsensical -2 -DataStructures.RedBlackTree.grand.right.right -nonsensical -2 -DataStructures.RedBlackTree.grand.right.color -nonsensical -2 -DataStructures.RedBlackTree.grand.color -nonsensical -2 -DataStructures.RedBlackTree.great -null -1 -DataStructures.RedBlackTree.great.element -nonsensical -2 -DataStructures.RedBlackTree.great.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.left -nonsensical -2 -DataStructures.RedBlackTree.great.left.element -nonsensical -2 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.left.left -nonsensical -2 -DataStructures.RedBlackTree.great.left.right -nonsensical -2 -DataStructures.RedBlackTree.great.left.color -nonsensical -2 -DataStructures.RedBlackTree.great.right -nonsensical -2 -DataStructures.RedBlackTree.great.right.element -nonsensical -2 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.right.left -nonsensical -2 -DataStructures.RedBlackTree.great.right.right -nonsensical -2 -DataStructures.RedBlackTree.great.right.color -nonsensical -2 -DataStructures.RedBlackTree.great.color -nonsensical -2 -args -1463565218 -1 -args.getClass().getName() -"java.lang.String[]" -1 -args[..] -[] -1 -args[..].toString -[] -1 - -DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::ENTER -this_invocation_nonce -3 -negInf -1246233263 -1 -negInf.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::ENTER -this_invocation_nonce -4 -theElement -1246233263 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -5 -theElement -1246233263 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -null -1 -lt.element -nonsensical -2 -lt.element.getClass().getName() -nonsensical -2 -lt.left -nonsensical -2 -lt.left.element -nonsensical -2 -lt.left.element.getClass().getName() -nonsensical -2 -lt.left.left -nonsensical -2 -lt.left.right -nonsensical -2 -lt.left.color -nonsensical -2 -lt.right -nonsensical -2 -lt.right.element -nonsensical -2 -lt.right.element.getClass().getName() -nonsensical -2 -lt.right.left -nonsensical -2 -lt.right.right -nonsensical -2 -lt.right.color -nonsensical -2 -lt.color -nonsensical -2 -rt -null -1 -rt.element -nonsensical -2 -rt.element.getClass().getName() -nonsensical -2 -rt.left -nonsensical -2 -rt.left.element -nonsensical -2 -rt.left.element.getClass().getName() -nonsensical -2 -rt.left.left -nonsensical -2 -rt.left.right -nonsensical -2 -rt.left.color -nonsensical -2 -rt.right -nonsensical -2 -rt.right.element -nonsensical -2 -rt.right.element.getClass().getName() -nonsensical -2 -rt.right.left -nonsensical -2 -rt.right.right -nonsensical -2 -rt.right.color -nonsensical -2 -rt.color -nonsensical -2 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -5 -this -1034442050 -1 -this.element -1246233263 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -null -1 -this.left.element -nonsensical -2 -this.left.element.getClass().getName() -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.element -nonsensical -2 -this.left.left.element.getClass().getName() -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.left.color -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.element -nonsensical -2 -this.left.right.element.getClass().getName() -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.left.right.color -nonsensical -2 -this.left.color -nonsensical -2 -this.right -null -1 -this.right.element -nonsensical -2 -this.right.element.getClass().getName() -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.element -nonsensical -2 -this.right.left.element.getClass().getName() -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.left.color -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.element -nonsensical -2 -this.right.right.element.getClass().getName() -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -this.right.right.color -nonsensical -2 -this.right.color -nonsensical -2 -this.color -1 -1 -theElement -1246233263 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -null -1 -lt.element -nonsensical -2 -lt.element.getClass().getName() -nonsensical -2 -lt.left -nonsensical -2 -lt.left.element -nonsensical -2 -lt.left.element.getClass().getName() -nonsensical -2 -lt.left.left -nonsensical -2 -lt.left.right -nonsensical -2 -lt.left.color -nonsensical -2 -lt.right -nonsensical -2 -lt.right.element -nonsensical -2 -lt.right.element.getClass().getName() -nonsensical -2 -lt.right.left -nonsensical -2 -lt.right.right -nonsensical -2 -lt.right.color -nonsensical -2 -lt.color -nonsensical -2 -rt -null -1 -rt.element -nonsensical -2 -rt.element.getClass().getName() -nonsensical -2 -rt.left -nonsensical -2 -rt.left.element -nonsensical -2 -rt.left.element.getClass().getName() -nonsensical -2 -rt.left.left -nonsensical -2 -rt.left.right -nonsensical -2 -rt.left.color -nonsensical -2 -rt.right -nonsensical -2 -rt.right.element -nonsensical -2 -rt.right.element.getClass().getName() -nonsensical -2 -rt.right.left -nonsensical -2 -rt.right.right -nonsensical -2 -rt.right.color -nonsensical -2 -rt.color -nonsensical -2 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXIT13 -this_invocation_nonce -4 -this -1034442050 -1 -this.element -1246233263 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -null -1 -this.left.element -nonsensical -2 -this.left.element.getClass().getName() -nonsensical -2 -this.left.left -nonsensical -2 -this.left.left.element -nonsensical -2 -this.left.left.element.getClass().getName() -nonsensical -2 -this.left.left.left -nonsensical -2 -this.left.left.right -nonsensical -2 -this.left.left.color -nonsensical -2 -this.left.right -nonsensical -2 -this.left.right.element -nonsensical -2 -this.left.right.element.getClass().getName() -nonsensical -2 -this.left.right.left -nonsensical -2 -this.left.right.right -nonsensical -2 -this.left.right.color -nonsensical -2 -this.left.color -nonsensical -2 -this.right -null -1 -this.right.element -nonsensical -2 -this.right.element.getClass().getName() -nonsensical -2 -this.right.left -nonsensical -2 -this.right.left.element -nonsensical -2 -this.right.left.element.getClass().getName() -nonsensical -2 -this.right.left.left -nonsensical -2 -this.right.left.right -nonsensical -2 -this.right.left.color -nonsensical -2 -this.right.right -nonsensical -2 -this.right.right.element -nonsensical -2 -this.right.right.element.getClass().getName() -nonsensical -2 -this.right.right.left -nonsensical -2 -this.right.right.right -nonsensical -2 -this.right.right.color -nonsensical -2 -this.right.color -nonsensical -2 -this.color -1 -1 -theElement -1246233263 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::EXIT32 -this_invocation_nonce -3 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -null -1 -this.header.left.element.getClass().getName() -nonsensical -2 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -42247872 -1 -this.header.right.element -null -1 -this.header.right.element.getClass().getName() -nonsensical -2 -this.header.right.left -42247872 -1 -this.header.right.right -42247872 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -null -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -null -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -null -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -null -1 -DataStructures.RedBlackTree.current.element -nonsensical -2 -DataStructures.RedBlackTree.current.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.left -nonsensical -2 -DataStructures.RedBlackTree.current.left.element -nonsensical -2 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.left.left -nonsensical -2 -DataStructures.RedBlackTree.current.left.right -nonsensical -2 -DataStructures.RedBlackTree.current.left.color -nonsensical -2 -DataStructures.RedBlackTree.current.right -nonsensical -2 -DataStructures.RedBlackTree.current.right.element -nonsensical -2 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.right.left -nonsensical -2 -DataStructures.RedBlackTree.current.right.right -nonsensical -2 -DataStructures.RedBlackTree.current.right.color -nonsensical -2 -DataStructures.RedBlackTree.current.color -nonsensical -2 -DataStructures.RedBlackTree.parent -null -1 -DataStructures.RedBlackTree.parent.element -nonsensical -2 -DataStructures.RedBlackTree.parent.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.left -nonsensical -2 -DataStructures.RedBlackTree.parent.left.element -nonsensical -2 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.left.left -nonsensical -2 -DataStructures.RedBlackTree.parent.left.right -nonsensical -2 -DataStructures.RedBlackTree.parent.left.color -nonsensical -2 -DataStructures.RedBlackTree.parent.right -nonsensical -2 -DataStructures.RedBlackTree.parent.right.element -nonsensical -2 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.right.left -nonsensical -2 -DataStructures.RedBlackTree.parent.right.right -nonsensical -2 -DataStructures.RedBlackTree.parent.right.color -nonsensical -2 -DataStructures.RedBlackTree.parent.color -nonsensical -2 -DataStructures.RedBlackTree.grand -null -1 -DataStructures.RedBlackTree.grand.element -nonsensical -2 -DataStructures.RedBlackTree.grand.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.left -nonsensical -2 -DataStructures.RedBlackTree.grand.left.element -nonsensical -2 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.left.left -nonsensical -2 -DataStructures.RedBlackTree.grand.left.right -nonsensical -2 -DataStructures.RedBlackTree.grand.left.color -nonsensical -2 -DataStructures.RedBlackTree.grand.right -nonsensical -2 -DataStructures.RedBlackTree.grand.right.element -nonsensical -2 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.right.left -nonsensical -2 -DataStructures.RedBlackTree.grand.right.right -nonsensical -2 -DataStructures.RedBlackTree.grand.right.color -nonsensical -2 -DataStructures.RedBlackTree.grand.color -nonsensical -2 -DataStructures.RedBlackTree.great -null -1 -DataStructures.RedBlackTree.great.element -nonsensical -2 -DataStructures.RedBlackTree.great.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.left -nonsensical -2 -DataStructures.RedBlackTree.great.left.element -nonsensical -2 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.left.left -nonsensical -2 -DataStructures.RedBlackTree.great.left.right -nonsensical -2 -DataStructures.RedBlackTree.great.left.color -nonsensical -2 -DataStructures.RedBlackTree.great.right -nonsensical -2 -DataStructures.RedBlackTree.great.right.element -nonsensical -2 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.right.left -nonsensical -2 -DataStructures.RedBlackTree.great.right.right -nonsensical -2 -DataStructures.RedBlackTree.great.right.color -nonsensical -2 -DataStructures.RedBlackTree.great.color -nonsensical -2 -negInf -1246233263 -1 -negInf.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -6 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -null -1 -this.header.left.element.getClass().getName() -nonsensical -2 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -42247872 -1 -this.header.right.element -null -1 -this.header.right.element.getClass().getName() -nonsensical -2 -this.header.right.left -42247872 -1 -this.header.right.right -42247872 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -null -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -null -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -null -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -null -1 -DataStructures.RedBlackTree.current.element -nonsensical -2 -DataStructures.RedBlackTree.current.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.left -nonsensical -2 -DataStructures.RedBlackTree.current.left.element -nonsensical -2 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.left.left -nonsensical -2 -DataStructures.RedBlackTree.current.left.right -nonsensical -2 -DataStructures.RedBlackTree.current.left.color -nonsensical -2 -DataStructures.RedBlackTree.current.right -nonsensical -2 -DataStructures.RedBlackTree.current.right.element -nonsensical -2 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.current.right.left -nonsensical -2 -DataStructures.RedBlackTree.current.right.right -nonsensical -2 -DataStructures.RedBlackTree.current.right.color -nonsensical -2 -DataStructures.RedBlackTree.current.color -nonsensical -2 -DataStructures.RedBlackTree.parent -null -1 -DataStructures.RedBlackTree.parent.element -nonsensical -2 -DataStructures.RedBlackTree.parent.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.left -nonsensical -2 -DataStructures.RedBlackTree.parent.left.element -nonsensical -2 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.left.left -nonsensical -2 -DataStructures.RedBlackTree.parent.left.right -nonsensical -2 -DataStructures.RedBlackTree.parent.left.color -nonsensical -2 -DataStructures.RedBlackTree.parent.right -nonsensical -2 -DataStructures.RedBlackTree.parent.right.element -nonsensical -2 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.parent.right.left -nonsensical -2 -DataStructures.RedBlackTree.parent.right.right -nonsensical -2 -DataStructures.RedBlackTree.parent.right.color -nonsensical -2 -DataStructures.RedBlackTree.parent.color -nonsensical -2 -DataStructures.RedBlackTree.grand -null -1 -DataStructures.RedBlackTree.grand.element -nonsensical -2 -DataStructures.RedBlackTree.grand.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.left -nonsensical -2 -DataStructures.RedBlackTree.grand.left.element -nonsensical -2 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.left.left -nonsensical -2 -DataStructures.RedBlackTree.grand.left.right -nonsensical -2 -DataStructures.RedBlackTree.grand.left.color -nonsensical -2 -DataStructures.RedBlackTree.grand.right -nonsensical -2 -DataStructures.RedBlackTree.grand.right.element -nonsensical -2 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.grand.right.left -nonsensical -2 -DataStructures.RedBlackTree.grand.right.right -nonsensical -2 -DataStructures.RedBlackTree.grand.right.color -nonsensical -2 -DataStructures.RedBlackTree.grand.color -nonsensical -2 -DataStructures.RedBlackTree.great -null -1 -DataStructures.RedBlackTree.great.element -nonsensical -2 -DataStructures.RedBlackTree.great.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.left -nonsensical -2 -DataStructures.RedBlackTree.great.left.element -nonsensical -2 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.left.left -nonsensical -2 -DataStructures.RedBlackTree.great.left.right -nonsensical -2 -DataStructures.RedBlackTree.great.left.color -nonsensical -2 -DataStructures.RedBlackTree.great.right -nonsensical -2 -DataStructures.RedBlackTree.great.right.element -nonsensical -2 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -nonsensical -2 -DataStructures.RedBlackTree.great.right.left -nonsensical -2 -DataStructures.RedBlackTree.great.right.right -nonsensical -2 -DataStructures.RedBlackTree.great.right.color -nonsensical -2 -DataStructures.RedBlackTree.great.color -nonsensical -2 -item -470905757 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -7 -theElement -470905757 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -470905757 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -470905757 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -470905757 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -470905757 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -470905757 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -470905757 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -7 -this -1035818704 -1 -this.element -470905757 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -470905757 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -470905757 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -470905757 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -470905757 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -470905757 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -470905757 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -470905757 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -470905757 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -470905757 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -470905757 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -470905757 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -470905757 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -470905757 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -8 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -470905757 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -42247872 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1035818704 -1 -DataStructures.RedBlackTree.current.element -470905757 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -470905757 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1034442050 -1 -DataStructures.RedBlackTree.parent.element -1246233263 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1035818704 -1 -DataStructures.RedBlackTree.parent.right.element -470905757 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -470905757 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -8 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -470905757 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -42247872 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1035818704 -1 -DataStructures.RedBlackTree.current.element -470905757 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -470905757 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1034442050 -1 -DataStructures.RedBlackTree.parent.element -1246233263 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1035818704 -1 -DataStructures.RedBlackTree.parent.right.element -470905757 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -470905757 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -6 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -470905757 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -42247872 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1035818704 -1 -DataStructures.RedBlackTree.current.element -470905757 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -470905757 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1034442050 -1 -DataStructures.RedBlackTree.parent.element -1246233263 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1035818704 -1 -DataStructures.RedBlackTree.parent.right.element -470905757 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -470905757 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -9 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -470905757 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -42247872 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -470905757 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1035818704 -1 -DataStructures.RedBlackTree.current.element -470905757 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -470905757 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1034442050 -1 -DataStructures.RedBlackTree.parent.element -1246233263 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1035818704 -1 -DataStructures.RedBlackTree.parent.right.element -470905757 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1502515546 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -10 -theElement -1502515546 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1502515546 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1502515546 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1502515546 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1502515546 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1502515546 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1502515546 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -10 -this -518576549 -1 -this.element -1502515546 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -1502515546 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -1502515546 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -1502515546 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -1502515546 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -1502515546 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -1502515546 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -1502515546 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1502515546 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1502515546 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1502515546 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1502515546 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1502515546 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1502515546 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -11 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1502515546 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -518576549 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1502515546 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1502515546 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1035818704 -1 -DataStructures.RedBlackTree.parent.element -470905757 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1502515546 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -518576549 -1 -DataStructures.RedBlackTree.parent.right.element -1502515546 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1502515546 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1502515546 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1502515546 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -11 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1502515546 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -518576549 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1502515546 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1502515546 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1035818704 -1 -DataStructures.RedBlackTree.parent.element -470905757 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1502515546 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -518576549 -1 -DataStructures.RedBlackTree.parent.right.element -1502515546 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1502515546 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1502515546 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1502515546 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -9 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1502515546 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -518576549 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1502515546 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1502515546 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1035818704 -1 -DataStructures.RedBlackTree.parent.element -470905757 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1502515546 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -518576549 -1 -DataStructures.RedBlackTree.parent.right.element -1502515546 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1502515546 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1502515546 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1502515546 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -12 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1502515546 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -518576549 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1502515546 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1502515546 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1502515546 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1035818704 -1 -DataStructures.RedBlackTree.parent.element -470905757 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1502515546 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -518576549 -1 -DataStructures.RedBlackTree.parent.right.element -1502515546 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1502515546 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1035818704 -1 -DataStructures.RedBlackTree.grand.right.element -470905757 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1502515546 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1227419517 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -13 -theElement -1227419517 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1227419517 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1227419517 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1227419517 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1227419517 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1227419517 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1227419517 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -13 -this -511909137 -1 -this.element -1227419517 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -1227419517 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -1227419517 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -1227419517 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -1227419517 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -1227419517 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -1227419517 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -1227419517 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1227419517 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1227419517 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1227419517 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1227419517 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1227419517 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1227419517 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -14 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1227419517 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -518576549 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -511909137 -1 -DataStructures.RedBlackTree.current.element -1227419517 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1227419517 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -15 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1227419517 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1035818704 -1 -this.header.right.element -470905757 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -42247872 -1 -this.header.right.right -518576549 -1 -this.header.right.color -0 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -511909137 -1 -DataStructures.RedBlackTree.current.element -1227419517 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1227419517 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 -parent -1034442050 -1 -parent.element -1246233263 -1 -parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left -42247872 -1 -parent.left.element -1227419517 -1 -parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left.left -42247872 -1 -parent.left.right -42247872 -1 -parent.left.color -1 -1 -parent.right -1035818704 -1 -parent.right.element -470905757 -1 -parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.right.left -42247872 -1 -parent.right.right -518576549 -1 -parent.right.color -0 -1 -parent.color -1 -1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -16 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -511909137 -1 -DataStructures.RedBlackTree.current.element -1227419517 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -518576549 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -1035818704 -1 -k1.element -470905757 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -42247872 -1 -k1.left.element -1227419517 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -518576549 -1 -k1.right.element -1502515546 -1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -42247872 -1 -k1.right.right -511909137 -1 -k1.right.color -0 -1 -k1.color -0 -1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 -this_invocation_nonce -16 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -511909137 -1 -DataStructures.RedBlackTree.current.element -1227419517 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1035818704 -1 -DataStructures.RedBlackTree.great.right.element -470905757 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -1035818704 -1 -k1.element -470905757 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -42247872 -1 -k1.left.element -1227419517 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -42247872 -1 -k1.right.element -1227419517 -1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -42247872 -1 -k1.right.right -42247872 -1 -k1.right.color -1 -1 -k1.color -0 -1 -return -518576549 -1 -return.element -1502515546 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -1035818704 -1 -return.left.element -470905757 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -42247872 -1 -return.left.right -42247872 -1 -return.left.color -0 -1 -return.right -511909137 -1 -return.right.element -1227419517 -1 -return.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.right.left -42247872 -1 -return.right.right -42247872 -1 -return.right.color -0 -1 -return.color -0 -1 - -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 -this_invocation_nonce -15 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1227419517 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -0 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -511909137 -1 -DataStructures.RedBlackTree.current.element -1227419517 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1227419517 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 -parent -1034442050 -1 -parent.element -1246233263 -1 -parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left -42247872 -1 -parent.left.element -1227419517 -1 -parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left.left -42247872 -1 -parent.left.right -42247872 -1 -parent.left.color -1 -1 -parent.right -518576549 -1 -parent.right.element -1502515546 -1 -parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.right.left -1035818704 -1 -parent.right.right -511909137 -1 -parent.right.color -0 -1 -parent.color -1 -1 -return -518576549 -1 -return.element -1502515546 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -1035818704 -1 -return.left.element -470905757 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -42247872 -1 -return.left.right -42247872 -1 -return.left.color -0 -1 -return.right -511909137 -1 -return.right.element -1227419517 -1 -return.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.right.left -42247872 -1 -return.right.right -42247872 -1 -return.right.color -0 -1 -return.color -0 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -14 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1227419517 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -1035818704 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -511909137 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1227419517 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -12 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1227419517 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -1035818704 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -511909137 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1227419517 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -17 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1227419517 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1227419517 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -1035818704 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -511909137 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.element -1227419517 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -837375677 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -18 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -837375677 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -1035818704 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -511909137 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1034442050 -1 -DataStructures.RedBlackTree.parent.element -1246233263 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -837375677 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -518576549 -1 -DataStructures.RedBlackTree.parent.right.element -1502515546 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -1035818704 -1 -DataStructures.RedBlackTree.parent.right.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -837375677 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -1035818704 -1 -DataStructures.RedBlackTree.grand.right.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -837375677 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -837375677 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -18 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -837375677 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -1035818704 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -511909137 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1034442050 -1 -DataStructures.RedBlackTree.parent.element -1246233263 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -837375677 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -518576549 -1 -DataStructures.RedBlackTree.parent.right.element -1502515546 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -1035818704 -1 -DataStructures.RedBlackTree.parent.right.right -511909137 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -837375677 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -1035818704 -1 -DataStructures.RedBlackTree.grand.right.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -837375677 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -837375677 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -19 -theElement -837375677 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -837375677 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -837375677 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -837375677 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -837375677 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -837375677 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -837375677 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -19 -this -1312664548 -1 -this.element -837375677 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -837375677 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -837375677 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -837375677 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -837375677 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -837375677 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -837375677 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -837375677 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -837375677 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -837375677 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -837375677 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -837375677 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -837375677 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -837375677 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -20 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -837375677 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -837375677 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -837375677 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -511909137 -1 -DataStructures.RedBlackTree.parent.element -1227419517 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -837375677 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1312664548 -1 -DataStructures.RedBlackTree.parent.right.element -837375677 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -518576549 -1 -DataStructures.RedBlackTree.grand.element -1502515546 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1035818704 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -837375677 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -837375677 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -20 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -837375677 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -837375677 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -837375677 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -511909137 -1 -DataStructures.RedBlackTree.parent.element -1227419517 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -837375677 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1312664548 -1 -DataStructures.RedBlackTree.parent.right.element -837375677 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -518576549 -1 -DataStructures.RedBlackTree.grand.element -1502515546 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1035818704 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -837375677 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -837375677 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -17 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -837375677 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -837375677 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -837375677 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -511909137 -1 -DataStructures.RedBlackTree.parent.element -1227419517 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -837375677 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1312664548 -1 -DataStructures.RedBlackTree.parent.right.element -837375677 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -518576549 -1 -DataStructures.RedBlackTree.grand.element -1502515546 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1035818704 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -837375677 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -837375677 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -21 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -837375677 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -837375677 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -837375677 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -837375677 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -511909137 -1 -DataStructures.RedBlackTree.parent.element -1227419517 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -837375677 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1312664548 -1 -DataStructures.RedBlackTree.parent.right.element -837375677 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -518576549 -1 -DataStructures.RedBlackTree.grand.element -1502515546 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1035818704 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -837375677 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -511909137 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -853552605 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -22 -theElement -853552605 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -853552605 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -853552605 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -853552605 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -853552605 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -853552605 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -853552605 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -22 -this -467870275 -1 -this.element -853552605 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -853552605 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -853552605 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -853552605 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -853552605 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -853552605 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -853552605 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -853552605 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -853552605 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -853552605 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -853552605 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -853552605 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -853552605 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -853552605 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -23 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -853552605 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -467870275 -1 -DataStructures.RedBlackTree.current.element -853552605 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -853552605 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -853552605 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.element -837375677 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -853552605 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -24 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -853552605 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -511909137 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -467870275 -1 -DataStructures.RedBlackTree.current.element -853552605 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -853552605 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -853552605 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.element -837375677 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -853552605 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 -parent -518576549 -1 -parent.element -1502515546 -1 -parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left -1035818704 -1 -parent.left.element -470905757 -1 -parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left.left -42247872 -1 -parent.left.right -42247872 -1 -parent.left.color -1 -1 -parent.right -511909137 -1 -parent.right.element -1227419517 -1 -parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.right.left -42247872 -1 -parent.right.right -1312664548 -1 -parent.right.color -0 -1 -parent.color -1 -1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -25 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -467870275 -1 -DataStructures.RedBlackTree.current.element -853552605 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -853552605 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -853552605 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.element -837375677 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -511909137 -1 -k1.element -1227419517 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -42247872 -1 -k1.left.element -853552605 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -1312664548 -1 -k1.right.element -837375677 -1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -42247872 -1 -k1.right.right -467870275 -1 -k1.right.color -0 -1 -k1.color -0 -1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 -this_invocation_nonce -25 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -467870275 -1 -DataStructures.RedBlackTree.current.element -853552605 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -853552605 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -511909137 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -511909137 -1 -k1.element -1227419517 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -42247872 -1 -k1.left.element -853552605 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -42247872 -1 -k1.right.element -853552605 -1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -42247872 -1 -k1.right.right -42247872 -1 -k1.right.color -1 -1 -k1.color -0 -1 -return -1312664548 -1 -return.element -837375677 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -511909137 -1 -return.left.element -1227419517 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -42247872 -1 -return.left.right -42247872 -1 -return.left.color -0 -1 -return.right -467870275 -1 -return.right.element -853552605 -1 -return.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.right.left -42247872 -1 -return.right.right -42247872 -1 -return.right.color -0 -1 -return.color -0 -1 - -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 -this_invocation_nonce -24 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -853552605 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -467870275 -1 -DataStructures.RedBlackTree.current.element -853552605 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -853552605 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -511909137 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -853552605 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 -parent -518576549 -1 -parent.element -1502515546 -1 -parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left -1035818704 -1 -parent.left.element -470905757 -1 -parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left.left -42247872 -1 -parent.left.right -42247872 -1 -parent.left.color -1 -1 -parent.right -1312664548 -1 -parent.right.element -837375677 -1 -parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.right.left -511909137 -1 -parent.right.right -467870275 -1 -parent.right.color -0 -1 -parent.color -1 -1 -return -1312664548 -1 -return.element -837375677 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -511909137 -1 -return.left.element -1227419517 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -42247872 -1 -return.left.right -42247872 -1 -return.left.color -0 -1 -return.right -467870275 -1 -return.right.element -853552605 -1 -return.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.right.left -42247872 -1 -return.right.right -42247872 -1 -return.right.color -0 -1 -return.color -0 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -23 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -853552605 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -511909137 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -467870275 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -511909137 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -853552605 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -21 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -853552605 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -511909137 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -467870275 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -511909137 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -853552605 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -26 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -853552605 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -853552605 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -511909137 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -467870275 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -511909137 -1 -DataStructures.RedBlackTree.parent.left.element -1227419517 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.element -853552605 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1558080258 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackTree.rotate(DataStructures.Comparable,\_DataStructures.RedBlackNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left + var-kind field left + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element + var-kind field element + enclosing-var this.header.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.left + var-kind field left + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.right + var-kind field right + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.left.color + var-kind field color + enclosing-var this.header.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right + var-kind field right + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element + var-kind field element + enclosing-var this.header.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.left + var-kind field left + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.right + var-kind field right + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.right.color + var-kind field color + enclosing-var this.header.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable this.header.color + var-kind field color + enclosing-var this.header + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::OBJECT 1 +variable item + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable item.getClass().getName() + var-kind function getClass().getName() + enclosing-var item + dec-type java.lang.Class + rep-type java.lang.String + function-args item + flags nomod synthetic classname non_null + comparability 22 +variable parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable parent.element + var-kind field element + enclosing-var parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.left + var-kind field left + enclosing-var parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.element + var-kind field element + enclosing-var parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.left.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.left.left + var-kind field left + enclosing-var parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.right + var-kind field right + enclosing-var parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.left.color + var-kind field color + enclosing-var parent.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable parent.right + var-kind field right + enclosing-var parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.element + var-kind field element + enclosing-var parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args parent.right.element + flags nomod synthetic classname non_null + comparability 22 +variable parent.right.left + var-kind field left + enclosing-var parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.right + var-kind field right + enclosing-var parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable parent.right.color + var-kind field color + enclosing-var parent.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable parent.color + var-kind field color + enclosing-var parent + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -27 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1558080258 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -511909137 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -467870275 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1312664548 -1 -DataStructures.RedBlackTree.parent.right.element -837375677 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -511909137 -1 -DataStructures.RedBlackTree.parent.right.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1558080258 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -1035818704 -1 -DataStructures.RedBlackTree.grand.right.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1558080258 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1558080258 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackTree.rotateWithLeftChild(DataStructures.RedBlackNode):::ENTER +ppt-type enter +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable k2 + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable k2.element + var-kind field element + enclosing-var k2 + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.left + var-kind field left + enclosing-var k2 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.element + var-kind field element + enclosing-var k2.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.left.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.left.left + var-kind field left + enclosing-var k2.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.right + var-kind field right + enclosing-var k2.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.color + var-kind field color + enclosing-var k2.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable k2.right + var-kind field right + enclosing-var k2 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.element + var-kind field element + enclosing-var k2.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.right.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.right.left + var-kind field left + enclosing-var k2.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.right + var-kind field right + enclosing-var k2.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.color + var-kind field color + enclosing-var k2.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable k2.color + var-kind field color + enclosing-var k2 + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.RedBlackTree.rotateWithLeftChild(DataStructures.RedBlackNode):::EXIT228 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable k2 + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable k2.element + var-kind field element + enclosing-var k2 + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.left + var-kind field left + enclosing-var k2 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.element + var-kind field element + enclosing-var k2.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.left.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.left.left + var-kind field left + enclosing-var k2.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.right + var-kind field right + enclosing-var k2.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.color + var-kind field color + enclosing-var k2.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable k2.right + var-kind field right + enclosing-var k2 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.element + var-kind field element + enclosing-var k2.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.right.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.right.left + var-kind field left + enclosing-var k2.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.right + var-kind field right + enclosing-var k2.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.color + var-kind field color + enclosing-var k2.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable k2.color + var-kind field color + enclosing-var k2 + dec-type int + rep-type int + flags nomod + comparability 22 +variable return + var-kind return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.element + var-kind field element + enclosing-var return + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left + var-kind field left + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element + var-kind field element + enclosing-var return.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.left.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left.left + var-kind field left + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.right + var-kind field right + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.color + var-kind field color + enclosing-var return.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.right + var-kind field right + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element + var-kind field element + enclosing-var return.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.right.element + flags nomod synthetic classname non_null + comparability 22 +variable return.right.left + var-kind field left + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.right + var-kind field right + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.color + var-kind field color + enclosing-var return.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.color + var-kind field color + enclosing-var return + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.RedBlackTree.rotateWithLeftChild(DataStructures.RedBlackNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable k2 + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable k2.element + var-kind field element + enclosing-var k2 + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.left + var-kind field left + enclosing-var k2 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.element + var-kind field element + enclosing-var k2.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.left.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.left.left + var-kind field left + enclosing-var k2.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.right + var-kind field right + enclosing-var k2.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.left.color + var-kind field color + enclosing-var k2.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable k2.right + var-kind field right + enclosing-var k2 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.element + var-kind field element + enclosing-var k2.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k2.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k2.right.element + flags nomod synthetic classname non_null + comparability 22 +variable k2.right.left + var-kind field left + enclosing-var k2.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.right + var-kind field right + enclosing-var k2.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k2.right.color + var-kind field color + enclosing-var k2.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable k2.color + var-kind field color + enclosing-var k2 + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -27 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1558080258 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -1312664548 -1 -DataStructures.RedBlackTree.current.element -837375677 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -511909137 -1 -DataStructures.RedBlackTree.current.left.element -1227419517 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -467870275 -1 -DataStructures.RedBlackTree.current.right.element -853552605 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -518576549 -1 -DataStructures.RedBlackTree.parent.element -1502515546 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.element -470905757 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -1312664548 -1 -DataStructures.RedBlackTree.parent.right.element -837375677 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -511909137 -1 -DataStructures.RedBlackTree.parent.right.right -467870275 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1034442050 -1 -DataStructures.RedBlackTree.grand.element -1246233263 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1558080258 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -518576549 -1 -DataStructures.RedBlackTree.grand.right.element -1502515546 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -1035818704 -1 -DataStructures.RedBlackTree.grand.right.right -1312664548 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1034442050 -1 -DataStructures.RedBlackTree.great.element -1246233263 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -42247872 -1 -DataStructures.RedBlackTree.great.left.element -1558080258 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -518576549 -1 -DataStructures.RedBlackTree.great.right.element -1502515546 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -1035818704 -1 -DataStructures.RedBlackTree.great.right.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1558080258 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +ppt-type enter +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable k1 + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable k1.element + var-kind field element + enclosing-var k1 + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.left + var-kind field left + enclosing-var k1 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.element + var-kind field element + enclosing-var k1.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.left.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.left.left + var-kind field left + enclosing-var k1.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.right + var-kind field right + enclosing-var k1.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.color + var-kind field color + enclosing-var k1.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable k1.right + var-kind field right + enclosing-var k1 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.element + var-kind field element + enclosing-var k1.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.right.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.right.left + var-kind field left + enclosing-var k1.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.right + var-kind field right + enclosing-var k1.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.color + var-kind field color + enclosing-var k1.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable k1.color + var-kind field color + enclosing-var k1 + dec-type int + rep-type int + flags nomod + comparability 22 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -28 -theElement -1558080258 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1558080258 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1558080258 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1558080258 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1558080258 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1558080258 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1558080258 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 +ppt DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable k1 + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable k1.element + var-kind field element + enclosing-var k1 + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.left + var-kind field left + enclosing-var k1 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.element + var-kind field element + enclosing-var k1.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.left.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.left.left + var-kind field left + enclosing-var k1.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.right + var-kind field right + enclosing-var k1.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.color + var-kind field color + enclosing-var k1.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable k1.right + var-kind field right + enclosing-var k1 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.element + var-kind field element + enclosing-var k1.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.right.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.right.left + var-kind field left + enclosing-var k1.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.right + var-kind field right + enclosing-var k1.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.color + var-kind field color + enclosing-var k1.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable k1.color + var-kind field color + enclosing-var k1 + dec-type int + rep-type int + flags nomod + comparability 22 +variable return + var-kind return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.element + var-kind field element + enclosing-var return + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left + var-kind field left + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element + var-kind field element + enclosing-var return.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.left.element + flags nomod synthetic classname non_null + comparability 22 +variable return.left.left + var-kind field left + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.right + var-kind field right + enclosing-var return.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.left.color + var-kind field color + enclosing-var return.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.right + var-kind field right + enclosing-var return + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element + var-kind field element + enclosing-var return.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable return.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var return.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args return.right.element + flags nomod synthetic classname non_null + comparability 22 +variable return.right.left + var-kind field left + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.right + var-kind field right + enclosing-var return.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable return.right.color + var-kind field color + enclosing-var return.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable return.color + var-kind field color + enclosing-var return + dec-type int + rep-type int + flags nomod + comparability 22 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -28 -this -239304688 -1 -this.element -1558080258 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -1558080258 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -1558080258 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -1558080258 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -1558080258 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -1558080258 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -1558080258 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -1558080258 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1558080258 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1558080258 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1558080258 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1558080258 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1558080258 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1558080258 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 +ppt DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable k1 + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable k1.element + var-kind field element + enclosing-var k1 + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.left + var-kind field left + enclosing-var k1 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.element + var-kind field element + enclosing-var k1.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.left.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.left.left + var-kind field left + enclosing-var k1.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.right + var-kind field right + enclosing-var k1.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.left.color + var-kind field color + enclosing-var k1.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable k1.right + var-kind field right + enclosing-var k1 + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.element + var-kind field element + enclosing-var k1.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var k1.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args k1.right.element + flags nomod synthetic classname non_null + comparability 22 +variable k1.right.left + var-kind field left + enclosing-var k1.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.right + var-kind field right + enclosing-var k1.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable k1.right.color + var-kind field color + enclosing-var k1.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable k1.color + var-kind field color + enclosing-var k1 + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.RedBlackTree.main(java.lang.String[]):::ENTER +ppt-type enter +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable args + var-kind variable + dec-type java.lang.String[] + rep-type hashcode + flags is_param nomod + comparability 22 +variable args.getClass().getName() + var-kind function getClass().getName() + enclosing-var args + dec-type java.lang.Class + rep-type java.lang.String + function-args args + flags nomod synthetic classname non_null + comparability 22 +variable args[..] + var-kind array + enclosing-var args + array 1 + dec-type java.lang.String[] + rep-type hashcode[] + flags nomod + comparability 22 +variable args[..].toString + var-kind function toString() + enclosing-var args[..] + array 1 + dec-type java.lang.String[] + rep-type java.lang.String[] + function-args args[] + flags nomod synthetic to_string + comparability 22 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -29 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1558080258 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -239304688 -1 -DataStructures.RedBlackTree.current.element -1558080258 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1558080258 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1558080258 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -467870275 -1 -DataStructures.RedBlackTree.parent.element -853552605 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1558080258 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -239304688 -1 -DataStructures.RedBlackTree.parent.right.element -1558080258 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1312664548 -1 -DataStructures.RedBlackTree.grand.element -837375677 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -511909137 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -239304688 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1558080258 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackTree.main(java.lang.String[]):::EXIT279 +ppt-type subexit +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable args + var-kind variable + dec-type java.lang.String[] + rep-type hashcode + flags is_param nomod + comparability 22 +variable args.getClass().getName() + var-kind function getClass().getName() + enclosing-var args + dec-type java.lang.Class + rep-type java.lang.String + function-args args + flags nomod synthetic classname non_null + comparability 22 +variable args[..] + var-kind array + enclosing-var args + array 1 + dec-type java.lang.String[] + rep-type hashcode[] + flags nomod + comparability 22 +variable args[..].toString + var-kind function toString() + enclosing-var args[..] + array 1 + dec-type java.lang.String[] + rep-type java.lang.String[] + function-args args[] + flags nomod synthetic to_string + comparability 22 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -29 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1558080258 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -239304688 -1 -DataStructures.RedBlackTree.current.element -1558080258 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1558080258 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1558080258 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -467870275 -1 -DataStructures.RedBlackTree.parent.element -853552605 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1558080258 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -239304688 -1 -DataStructures.RedBlackTree.parent.right.element -1558080258 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1312664548 -1 -DataStructures.RedBlackTree.grand.element -837375677 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -511909137 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -239304688 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1558080258 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackTree.main(java.lang.String[]):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable args + var-kind variable + dec-type java.lang.String[] + rep-type hashcode + flags is_param nomod + comparability 22 +variable args.getClass().getName() + var-kind function getClass().getName() + enclosing-var args + dec-type java.lang.Class + rep-type java.lang.String + function-args args + flags nomod synthetic classname non_null + comparability 22 +variable args[..] + var-kind array + enclosing-var args + array 1 + dec-type java.lang.String[] + rep-type hashcode[] + flags nomod + comparability 22 +variable args[..].toString + var-kind function toString() + enclosing-var args[..] + array 1 + dec-type java.lang.String[] + rep-type java.lang.String[] + function-args args[] + flags nomod synthetic to_string + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 + +ppt DataStructures.RedBlackTree:::CLASS +ppt-type class +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -26 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1558080258 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -239304688 -1 -DataStructures.RedBlackTree.current.element -1558080258 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1558080258 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1558080258 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -467870275 -1 -DataStructures.RedBlackTree.parent.element -853552605 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1558080258 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -239304688 -1 -DataStructures.RedBlackTree.parent.right.element -1558080258 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1312664548 -1 -DataStructures.RedBlackTree.grand.element -837375677 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -511909137 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -239304688 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1558080258 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackTree:::OBJECT +ppt-type object +parent parent DataStructures.RedBlackTree:::CLASS 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackTree + rep-type hashcode + flags is_param nomod non_null + comparability 22 +variable this.header + var-kind field header + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.element + var-kind field element + enclosing-var this.header + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.header.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.element + flags nomod synthetic classname non_null + comparability 22 +variable this.header.left + var-kind field left + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.left.element + var-kind field element + enclosing-var this.header.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.header.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.left.element + flags nomod synthetic classname non_null + comparability 22 +variable this.header.left.left + var-kind field left + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.left.right + var-kind field right + enclosing-var this.header.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.left.color + var-kind field color + enclosing-var this.header.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.header.right + var-kind field right + enclosing-var this.header + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.right.element + var-kind field element + enclosing-var this.header.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.header.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.header.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.header.right.element + flags nomod synthetic classname non_null + comparability 22 +variable this.header.right.left + var-kind field left + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.right.right + var-kind field right + enclosing-var this.header.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.header.right.color + var-kind field color + enclosing-var this.header.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.header.color + var-kind field color + enclosing-var this.header + dec-type int + rep-type int + flags nomod + comparability 22 +variable DataStructures.RedBlackTree.nullNode + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.nullNode.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.nullNode.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.nullNode.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.nullNode + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.BLACK + var-kind variable + dec-type int + rep-type int + constant 1 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.RED + var-kind variable + dec-type int + rep-type int + constant 0 + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.current.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.current.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.current.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.current.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.current + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.parent.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.parent.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.parent.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.parent + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.grand.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.grand.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.grand.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.grand + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.left.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element + var-kind field element + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var DataStructures.RedBlackTree.great.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args DataStructures.RedBlackTree.great.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.left + var-kind field left + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.right + var-kind field right + enclosing-var DataStructures.RedBlackTree.great.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.right.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 +variable DataStructures.RedBlackTree.great.color + var-kind field color + enclosing-var DataStructures.RedBlackTree.great + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackTree:::CLASS 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -30 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1558080258 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1558080258 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -239304688 -1 -DataStructures.RedBlackTree.current.element -1558080258 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1558080258 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1558080258 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -467870275 -1 -DataStructures.RedBlackTree.parent.element -853552605 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1558080258 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -239304688 -1 -DataStructures.RedBlackTree.parent.right.element -1558080258 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1312664548 -1 -DataStructures.RedBlackTree.grand.element -837375677 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -511909137 -1 -DataStructures.RedBlackTree.grand.left.element -1227419517 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -467870275 -1 -DataStructures.RedBlackTree.grand.right.element -853552605 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -239304688 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -1312664548 -1 -DataStructures.RedBlackTree.great.right.element -837375677 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -511909137 -1 -DataStructures.RedBlackTree.great.right.right -467870275 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1904504032 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::ENTER +ppt-type enter +variable theElement + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -31 -theElement -1904504032 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1904504032 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1904504032 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1904504032 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1904504032 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1904504032 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1904504032 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 +ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXIT13 +ppt-type subexit +parent parent DataStructures.RedBlackNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element + var-kind field element + enclosing-var this.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element + var-kind field element + enclosing-var this.left.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.color + var-kind field color + enclosing-var this.left.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element + var-kind field element + enclosing-var this.left.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.color + var-kind field color + enclosing-var this.left.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.color + var-kind field color + enclosing-var this.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element + var-kind field element + enclosing-var this.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element + var-kind field element + enclosing-var this.right.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.color + var-kind field color + enclosing-var this.right.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element + var-kind field element + enclosing-var this.right.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.color + var-kind field color + enclosing-var this.right.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.color + var-kind field color + enclosing-var this.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.color + var-kind field color + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -31 -this -755507289 -1 -this.element -1904504032 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -1904504032 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -1904504032 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -1904504032 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -1904504032 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -1904504032 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -1904504032 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -1904504032 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1904504032 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1904504032 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1904504032 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1904504032 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1904504032 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1904504032 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 +ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element + var-kind field element + enclosing-var this.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element + var-kind field element + enclosing-var this.left.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.color + var-kind field color + enclosing-var this.left.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element + var-kind field element + enclosing-var this.left.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.color + var-kind field color + enclosing-var this.left.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.color + var-kind field color + enclosing-var this.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element + var-kind field element + enclosing-var this.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element + var-kind field element + enclosing-var this.right.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.color + var-kind field color + enclosing-var this.right.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element + var-kind field element + enclosing-var this.right.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.color + var-kind field color + enclosing-var this.right.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.color + var-kind field color + enclosing-var this.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.color + var-kind field color + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -32 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1904504032 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -755507289 -1 -DataStructures.RedBlackTree.current.element -1904504032 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1904504032 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1904504032 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -239304688 -1 -DataStructures.RedBlackTree.parent.element -1558080258 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1904504032 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -755507289 -1 -DataStructures.RedBlackTree.parent.right.element -1904504032 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -467870275 -1 -DataStructures.RedBlackTree.grand.element -853552605 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1904504032 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -239304688 -1 -DataStructures.RedBlackTree.grand.right.element -1558080258 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -755507289 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1312664548 -1 -DataStructures.RedBlackTree.great.element -837375677 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -511909137 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -467870275 -1 -DataStructures.RedBlackTree.great.right.element -853552605 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -239304688 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -0 -1 -item -1904504032 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 +ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable,\_DataStructures.RedBlackNode,\_DataStructures.RedBlackNode):::ENTER +ppt-type enter +variable theElement + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable lt + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable lt.element + var-kind field element + enclosing-var lt + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.left + var-kind field left + enclosing-var lt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.element + var-kind field element + enclosing-var lt.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.left.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.left.left + var-kind field left + enclosing-var lt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.right + var-kind field right + enclosing-var lt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.color + var-kind field color + enclosing-var lt.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable lt.right + var-kind field right + enclosing-var lt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.element + var-kind field element + enclosing-var lt.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.right.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.right.left + var-kind field left + enclosing-var lt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.right + var-kind field right + enclosing-var lt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.color + var-kind field color + enclosing-var lt.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable lt.color + var-kind field color + enclosing-var lt + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable rt.element + var-kind field element + enclosing-var rt + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.left + var-kind field left + enclosing-var rt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.element + var-kind field element + enclosing-var rt.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.left.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.left.left + var-kind field left + enclosing-var rt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.right + var-kind field right + enclosing-var rt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.color + var-kind field color + enclosing-var rt.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt.right + var-kind field right + enclosing-var rt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.element + var-kind field element + enclosing-var rt.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.right.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.right.left + var-kind field left + enclosing-var rt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.right + var-kind field right + enclosing-var rt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.color + var-kind field color + enclosing-var rt.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt.color + var-kind field color + enclosing-var rt + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable,\_DataStructures.RedBlackNode,\_DataStructures.RedBlackNode):::EXIT21 +ppt-type subexit +parent parent DataStructures.RedBlackNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element + var-kind field element + enclosing-var this.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element + var-kind field element + enclosing-var this.left.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.color + var-kind field color + enclosing-var this.left.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element + var-kind field element + enclosing-var this.left.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.color + var-kind field color + enclosing-var this.left.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.color + var-kind field color + enclosing-var this.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element + var-kind field element + enclosing-var this.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element + var-kind field element + enclosing-var this.right.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.color + var-kind field color + enclosing-var this.right.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element + var-kind field element + enclosing-var this.right.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.color + var-kind field color + enclosing-var this.right.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.color + var-kind field color + enclosing-var this.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.color + var-kind field color + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable lt + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable lt.element + var-kind field element + enclosing-var lt + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.left + var-kind field left + enclosing-var lt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.element + var-kind field element + enclosing-var lt.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.left.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.left.left + var-kind field left + enclosing-var lt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.right + var-kind field right + enclosing-var lt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.color + var-kind field color + enclosing-var lt.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable lt.right + var-kind field right + enclosing-var lt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.element + var-kind field element + enclosing-var lt.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.right.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.right.left + var-kind field left + enclosing-var lt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.right + var-kind field right + enclosing-var lt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.color + var-kind field color + enclosing-var lt.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable lt.color + var-kind field color + enclosing-var lt + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable rt.element + var-kind field element + enclosing-var rt + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.left + var-kind field left + enclosing-var rt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.element + var-kind field element + enclosing-var rt.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.left.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.left.left + var-kind field left + enclosing-var rt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.right + var-kind field right + enclosing-var rt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.color + var-kind field color + enclosing-var rt.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt.right + var-kind field right + enclosing-var rt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.element + var-kind field element + enclosing-var rt.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.right.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.right.left + var-kind field left + enclosing-var rt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.right + var-kind field right + enclosing-var rt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.color + var-kind field color + enclosing-var rt.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt.color + var-kind field color + enclosing-var rt + dec-type int + rep-type int + flags nomod + comparability 22 + +ppt DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable,\_DataStructures.RedBlackNode,\_DataStructures.RedBlackNode):::EXCEPTIONUNCAUGHT +ppt-type subexit +parent parent DataStructures.RedBlackNode:::OBJECT 1 +variable this + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element + var-kind field element + enclosing-var this + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left + var-kind field left + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element + var-kind field element + enclosing-var this.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element + var-kind field element + enclosing-var this.left.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.left.color + var-kind field color + enclosing-var this.left.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element + var-kind field element + enclosing-var this.left.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.right.color + var-kind field color + enclosing-var this.left.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.left.color + var-kind field color + enclosing-var this.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right + var-kind field right + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element + var-kind field element + enclosing-var this.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element + var-kind field element + enclosing-var this.right.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.left.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.left.color + var-kind field color + enclosing-var this.right.left + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element + var-kind field element + enclosing-var this.right.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.right.element + flags nomod synthetic classname non_null + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.right.color + var-kind field color + enclosing-var this.right.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.right.color + var-kind field color + enclosing-var this.right + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable this.color + var-kind field color + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + parent DataStructures.RedBlackNode:::OBJECT 1 +variable theElement + var-kind variable + dec-type DataStructures.Comparable + rep-type hashcode + flags is_param nomod + comparability 22 +variable theElement.getClass().getName() + var-kind function getClass().getName() + enclosing-var theElement + dec-type java.lang.Class + rep-type java.lang.String + function-args theElement + flags nomod synthetic classname non_null + comparability 22 +variable lt + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable lt.element + var-kind field element + enclosing-var lt + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.left + var-kind field left + enclosing-var lt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.element + var-kind field element + enclosing-var lt.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.left.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.left.left + var-kind field left + enclosing-var lt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.right + var-kind field right + enclosing-var lt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.left.color + var-kind field color + enclosing-var lt.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable lt.right + var-kind field right + enclosing-var lt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.element + var-kind field element + enclosing-var lt.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var lt.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args lt.right.element + flags nomod synthetic classname non_null + comparability 22 +variable lt.right.left + var-kind field left + enclosing-var lt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.right + var-kind field right + enclosing-var lt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable lt.right.color + var-kind field color + enclosing-var lt.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable lt.color + var-kind field color + enclosing-var lt + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod + comparability 22 +variable rt.element + var-kind field element + enclosing-var rt + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.left + var-kind field left + enclosing-var rt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.element + var-kind field element + enclosing-var rt.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.left.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.left.left + var-kind field left + enclosing-var rt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.right + var-kind field right + enclosing-var rt.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.left.color + var-kind field color + enclosing-var rt.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt.right + var-kind field right + enclosing-var rt + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.element + var-kind field element + enclosing-var rt.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var rt.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args rt.right.element + flags nomod synthetic classname non_null + comparability 22 +variable rt.right.left + var-kind field left + enclosing-var rt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.right + var-kind field right + enclosing-var rt.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable rt.right.color + var-kind field color + enclosing-var rt.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable rt.color + var-kind field color + enclosing-var rt + dec-type int + rep-type int + flags nomod + comparability 22 +variable exception + var-kind return + dec-type java.lang.Throwable + rep-type hashcode + flags nomod + comparability 22 +variable exception.getClass().getName() + var-kind function getClass().getName() + enclosing-var exception + dec-type java.lang.Class + rep-type java.lang.String + flags nomod synthetic classname non_null + comparability 22 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -33 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1904504032 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -755507289 -1 -DataStructures.RedBlackTree.current.element -1904504032 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1904504032 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1904504032 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -239304688 -1 -DataStructures.RedBlackTree.parent.element -1558080258 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1904504032 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -755507289 -1 -DataStructures.RedBlackTree.parent.right.element -1904504032 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -0 -1 -DataStructures.RedBlackTree.grand -467870275 -1 -DataStructures.RedBlackTree.grand.element -853552605 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1904504032 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -239304688 -1 -DataStructures.RedBlackTree.grand.right.element -1558080258 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -755507289 -1 -DataStructures.RedBlackTree.grand.right.color -0 -1 -DataStructures.RedBlackTree.grand.color +ppt DataStructures.RedBlackNode:::OBJECT +ppt-type object +variable this + var-kind variable + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags is_param nomod non_null + comparability 22 +variable this.element + var-kind field element + enclosing-var this + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.element + flags nomod synthetic classname non_null + comparability 22 +variable this.left + var-kind field left + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.element + var-kind field element + enclosing-var this.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.element + flags nomod synthetic classname non_null + comparability 22 +variable this.left.left + var-kind field left + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.left.element + var-kind field element + enclosing-var this.left.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.left.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.left.element + flags nomod synthetic classname non_null + comparability 22 +variable this.left.left.left + var-kind field left + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.left.right + var-kind field right + enclosing-var this.left.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.left.color + var-kind field color + enclosing-var this.left.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.left.right + var-kind field right + enclosing-var this.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.right.element + var-kind field element + enclosing-var this.left.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.left.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.left.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.left.right.element + flags nomod synthetic classname non_null + comparability 22 +variable this.left.right.left + var-kind field left + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.right.right + var-kind field right + enclosing-var this.left.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.left.right.color + var-kind field color + enclosing-var this.left.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.left.color + var-kind field color + enclosing-var this.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.right + var-kind field right + enclosing-var this + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.element + var-kind field element + enclosing-var this.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.element + flags nomod synthetic classname non_null + comparability 22 +variable this.right.left + var-kind field left + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.left.element + var-kind field element + enclosing-var this.right.left + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.right.left.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.left.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.left.element + flags nomod synthetic classname non_null + comparability 22 +variable this.right.left.left + var-kind field left + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.left.right + var-kind field right + enclosing-var this.right.left + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.left.color + var-kind field color + enclosing-var this.right.left + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.right.right + var-kind field right + enclosing-var this.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.right.element + var-kind field element + enclosing-var this.right.right + dec-type DataStructures.Comparable + rep-type hashcode + flags nomod + comparability 22 +variable this.right.right.element.getClass().getName() + var-kind function getClass().getName() + enclosing-var this.right.right.element + dec-type java.lang.Class + rep-type java.lang.String + function-args this.right.right.element + flags nomod synthetic classname non_null + comparability 22 +variable this.right.right.left + var-kind field left + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.right.right + var-kind field right + enclosing-var this.right.right + dec-type DataStructures.RedBlackNode + rep-type hashcode + flags nomod + comparability 22 +variable this.right.right.color + var-kind field color + enclosing-var this.right.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.right.color + var-kind field color + enclosing-var this.right + dec-type int + rep-type int + flags nomod + comparability 22 +variable this.color + var-kind field color + enclosing-var this + dec-type int + rep-type int + flags nomod + comparability 22 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::ENTER +this_invocation_nonce 0 +theElement +null 1 -DataStructures.RedBlackTree.great -1312664548 -1 -DataStructures.RedBlackTree.great.element -837375677 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" +theElement.getClass().getName() +nonsensical +2 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce 1 -DataStructures.RedBlackTree.great.left -511909137 +theElement +null 1 -DataStructures.RedBlackTree.great.left.element -1227419517 +theElement.getClass().getName() +nonsensical +2 +lt +null 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" +lt.element +nonsensical +2 +lt.element.getClass().getName() +nonsensical +2 +lt.left +nonsensical +2 +lt.left.element +nonsensical +2 +lt.left.element.getClass().getName() +nonsensical +2 +lt.left.left +nonsensical +2 +lt.left.right +nonsensical +2 +lt.left.color +nonsensical +2 +lt.right +nonsensical +2 +lt.right.element +nonsensical +2 +lt.right.element.getClass().getName() +nonsensical +2 +lt.right.left +nonsensical +2 +lt.right.right +nonsensical +2 +lt.right.color +nonsensical +2 +lt.color +nonsensical +2 +rt +null 1 -DataStructures.RedBlackTree.great.left.left -42247872 +rt.element +nonsensical +2 +rt.element.getClass().getName() +nonsensical +2 +rt.left +nonsensical +2 +rt.left.element +nonsensical +2 +rt.left.element.getClass().getName() +nonsensical +2 +rt.left.left +nonsensical +2 +rt.left.right +nonsensical +2 +rt.left.color +nonsensical +2 +rt.right +nonsensical +2 +rt.right.element +nonsensical +2 +rt.right.element.getClass().getName() +nonsensical +2 +rt.right.left +nonsensical +2 +rt.right.right +nonsensical +2 +rt.right.color +nonsensical +2 +rt.color +nonsensical +2 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce 1 -DataStructures.RedBlackTree.great.left.right -42247872 +this +940060004 1 -DataStructures.RedBlackTree.great.left.color +this.element +null 1 +this.element.getClass().getName() +nonsensical +2 +this.left +null 1 -DataStructures.RedBlackTree.great.right -467870275 +this.left.element +nonsensical +2 +this.left.element.getClass().getName() +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.element +nonsensical +2 +this.left.left.element.getClass().getName() +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.left.color +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.element +nonsensical +2 +this.left.right.element.getClass().getName() +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.left.right.color +nonsensical +2 +this.left.color +nonsensical +2 +this.right +null 1 -DataStructures.RedBlackTree.great.right.element -853552605 +this.right.element +nonsensical +2 +this.right.element.getClass().getName() +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.element +nonsensical +2 +this.right.left.element.getClass().getName() +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.left.color +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.element +nonsensical +2 +this.right.right.element.getClass().getName() +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +this.right.right.color +nonsensical +2 +this.right.color +nonsensical +2 +this.color 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -42247872 +theElement +null 1 -DataStructures.RedBlackTree.great.right.right -239304688 +theElement.getClass().getName() +nonsensical +2 +lt +null 1 -DataStructures.RedBlackTree.great.right.color -0 +lt.element +nonsensical +2 +lt.element.getClass().getName() +nonsensical +2 +lt.left +nonsensical +2 +lt.left.element +nonsensical +2 +lt.left.element.getClass().getName() +nonsensical +2 +lt.left.left +nonsensical +2 +lt.left.right +nonsensical +2 +lt.left.color +nonsensical +2 +lt.right +nonsensical +2 +lt.right.element +nonsensical +2 +lt.right.element.getClass().getName() +nonsensical +2 +lt.right.left +nonsensical +2 +lt.right.right +nonsensical +2 +lt.right.color +nonsensical +2 +lt.color +nonsensical +2 +rt +null 1 -DataStructures.RedBlackTree.great.color +rt.element +nonsensical +2 +rt.element.getClass().getName() +nonsensical +2 +rt.left +nonsensical +2 +rt.left.element +nonsensical +2 +rt.left.element.getClass().getName() +nonsensical +2 +rt.left.left +nonsensical +2 +rt.left.right +nonsensical +2 +rt.left.color +nonsensical +2 +rt.right +nonsensical +2 +rt.right.element +nonsensical +2 +rt.right.element.getClass().getName() +nonsensical +2 +rt.right.left +nonsensical +2 +rt.right.right +nonsensical +2 +rt.right.color +nonsensical +2 +rt.color +nonsensical +2 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXIT13 +this_invocation_nonce 0 +this +940060004 1 -item -1904504032 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 -parent -1312664548 -1 -parent.element -837375677 -1 -parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left -511909137 -1 -parent.left.element -1227419517 -1 -parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left.left -42247872 -1 -parent.left.right -42247872 -1 -parent.left.color -1 -1 -parent.right -467870275 -1 -parent.right.element -853552605 +this.element +null 1 -parent.right.element.getClass().getName() -"DataStructures.MyInteger" +this.element.getClass().getName() +nonsensical +2 +this.left +null 1 -parent.right.left -42247872 +this.left.element +nonsensical +2 +this.left.element.getClass().getName() +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.element +nonsensical +2 +this.left.left.element.getClass().getName() +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.left.color +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.element +nonsensical +2 +this.left.right.element.getClass().getName() +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.left.right.color +nonsensical +2 +this.left.color +nonsensical +2 +this.right +null 1 -parent.right.right -239304688 +this.right.element +nonsensical +2 +this.right.element.getClass().getName() +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.element +nonsensical +2 +this.right.left.element.getClass().getName() +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.left.color +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.element +nonsensical +2 +this.right.right.element.getClass().getName() +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +this.right.right.color +nonsensical +2 +this.right.color +nonsensical +2 +this.color 1 -parent.right.color -0 1 -parent.color -0 +theElement +null 1 +theElement.getClass().getName() +nonsensical +2 -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.main(java.lang.String[]):::ENTER this_invocation_nonce -34 +2 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -47112,290 +45072,763 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -755507289 +null 1 DataStructures.RedBlackTree.current.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.current.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.current.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.parent -239304688 +null 1 DataStructures.RedBlackTree.parent.element -1558080258 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right -755507289 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.grand -467870275 +null 1 DataStructures.RedBlackTree.grand.element -853552605 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.color +nonsensical +2 +DataStructures.RedBlackTree.grand.right +nonsensical +2 +DataStructures.RedBlackTree.grand.right.element +nonsensical +2 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.grand.right.left +nonsensical +2 +DataStructures.RedBlackTree.grand.right.right +nonsensical +2 +DataStructures.RedBlackTree.grand.right.color +nonsensical +2 +DataStructures.RedBlackTree.grand.color +nonsensical +2 +DataStructures.RedBlackTree.great +null +1 +DataStructures.RedBlackTree.great.element +nonsensical +2 +DataStructures.RedBlackTree.great.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.great.left +nonsensical +2 +DataStructures.RedBlackTree.great.left.element +nonsensical +2 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.great.left.left +nonsensical +2 +DataStructures.RedBlackTree.great.left.right +nonsensical +2 +DataStructures.RedBlackTree.great.left.color +nonsensical +2 +DataStructures.RedBlackTree.great.right +nonsensical +2 +DataStructures.RedBlackTree.great.right.element +nonsensical +2 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.great.right.left +nonsensical +2 +DataStructures.RedBlackTree.great.right.right +nonsensical +2 +DataStructures.RedBlackTree.great.right.color +nonsensical +2 +DataStructures.RedBlackTree.great.color +nonsensical +2 +args +234698513 1 +args.getClass().getName() +"java.lang.String[]" 1 -DataStructures.RedBlackTree.grand.right -239304688 +args[..] +[] 1 -DataStructures.RedBlackTree.grand.right.element -1558080258 +args[..].toString +[] 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() + +DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::ENTER +this_invocation_nonce +3 +negInf +745160567 +1 +negInf.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::ENTER +this_invocation_nonce +4 +theElement +745160567 1 -DataStructures.RedBlackTree.grand.right.right -755507289 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.color -0 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +5 +theElement +745160567 1 -DataStructures.RedBlackTree.grand.color -0 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great -1312664548 +lt +null 1 -DataStructures.RedBlackTree.great.element -837375677 +lt.element +nonsensical +2 +lt.element.getClass().getName() +nonsensical +2 +lt.left +nonsensical +2 +lt.left.element +nonsensical +2 +lt.left.element.getClass().getName() +nonsensical +2 +lt.left.left +nonsensical +2 +lt.left.right +nonsensical +2 +lt.left.color +nonsensical +2 +lt.right +nonsensical +2 +lt.right.element +nonsensical +2 +lt.right.element.getClass().getName() +nonsensical +2 +lt.right.left +nonsensical +2 +lt.right.right +nonsensical +2 +lt.right.color +nonsensical +2 +lt.color +nonsensical +2 +rt +null 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element +nonsensical +2 +rt.element.getClass().getName() +nonsensical +2 +rt.left +nonsensical +2 +rt.left.element +nonsensical +2 +rt.left.element.getClass().getName() +nonsensical +2 +rt.left.left +nonsensical +2 +rt.left.right +nonsensical +2 +rt.left.color +nonsensical +2 +rt.right +nonsensical +2 +rt.right.element +nonsensical +2 +rt.right.element.getClass().getName() +nonsensical +2 +rt.right.left +nonsensical +2 +rt.right.right +nonsensical +2 +rt.right.color +nonsensical +2 +rt.color +nonsensical +2 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +5 +this +610984013 +1 +this.element +745160567 +1 +this.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left +null +1 +this.left.element +nonsensical +2 +this.left.element.getClass().getName() +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.element +nonsensical +2 +this.left.left.element.getClass().getName() +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.left.color +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.element +nonsensical +2 +this.left.right.element.getClass().getName() +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.left.right.color +nonsensical +2 +this.left.color +nonsensical +2 +this.right +null +1 +this.right.element +nonsensical +2 +this.right.element.getClass().getName() +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.element +nonsensical +2 +this.right.left.element.getClass().getName() +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.left.color +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.element +nonsensical +2 +this.right.right.element.getClass().getName() +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +this.right.right.color +nonsensical +2 +this.right.color +nonsensical +2 +this.color +1 +1 +theElement +745160567 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -511909137 +lt +null +1 +lt.element +nonsensical +2 +lt.element.getClass().getName() +nonsensical +2 +lt.left +nonsensical +2 +lt.left.element +nonsensical +2 +lt.left.element.getClass().getName() +nonsensical +2 +lt.left.left +nonsensical +2 +lt.left.right +nonsensical +2 +lt.left.color +nonsensical +2 +lt.right +nonsensical +2 +lt.right.element +nonsensical +2 +lt.right.element.getClass().getName() +nonsensical +2 +lt.right.left +nonsensical +2 +lt.right.right +nonsensical +2 +lt.right.color +nonsensical +2 +lt.color +nonsensical +2 +rt +null +1 +rt.element +nonsensical +2 +rt.element.getClass().getName() +nonsensical +2 +rt.left +nonsensical +2 +rt.left.element +nonsensical +2 +rt.left.element.getClass().getName() +nonsensical +2 +rt.left.left +nonsensical +2 +rt.left.right +nonsensical +2 +rt.left.color +nonsensical +2 +rt.right +nonsensical +2 +rt.right.element +nonsensical +2 +rt.right.element.getClass().getName() +nonsensical +2 +rt.right.left +nonsensical +2 +rt.right.right +nonsensical +2 +rt.right.color +nonsensical +2 +rt.color +nonsensical +2 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable):::EXIT13 +this_invocation_nonce +4 +this +610984013 1 -DataStructures.RedBlackTree.great.left.element -1227419517 +this.element +745160567 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 +this.left +null 1 -DataStructures.RedBlackTree.great.left.color +this.left.element +nonsensical +2 +this.left.element.getClass().getName() +nonsensical +2 +this.left.left +nonsensical +2 +this.left.left.element +nonsensical +2 +this.left.left.element.getClass().getName() +nonsensical +2 +this.left.left.left +nonsensical +2 +this.left.left.right +nonsensical +2 +this.left.left.color +nonsensical +2 +this.left.right +nonsensical +2 +this.left.right.element +nonsensical +2 +this.left.right.element.getClass().getName() +nonsensical +2 +this.left.right.left +nonsensical +2 +this.left.right.right +nonsensical +2 +this.left.right.color +nonsensical +2 +this.left.color +nonsensical +2 +this.right +null 1 +this.right.element +nonsensical +2 +this.right.element.getClass().getName() +nonsensical +2 +this.right.left +nonsensical +2 +this.right.left.element +nonsensical +2 +this.right.left.element.getClass().getName() +nonsensical +2 +this.right.left.left +nonsensical +2 +this.right.left.right +nonsensical +2 +this.right.left.color +nonsensical +2 +this.right.right +nonsensical +2 +this.right.right.element +nonsensical +2 +this.right.right.element.getClass().getName() +nonsensical +2 +this.right.right.left +nonsensical +2 +this.right.right.right +nonsensical +2 +this.right.right.color +nonsensical +2 +this.right.color +nonsensical +2 +this.color 1 -DataStructures.RedBlackTree.great.right -467870275 1 -DataStructures.RedBlackTree.great.right.element -853552605 +theElement +745160567 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -239304688 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -0 + +DataStructures.RedBlackTree.RedBlackTree(DataStructures.Comparable):::EXIT32 +this_invocation_nonce +3 +this +1644443712 1 -k1 -467870275 +this.header +610984013 1 -k1.element -853552605 +this.header.element +745160567 1 -k1.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left -42247872 +this.header.left +940060004 1 -k1.left.element -1904504032 +this.header.left.element +null 1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" +this.header.left.element.getClass().getName() +nonsensical +2 +this.header.left.left +940060004 1 -k1.left.left -42247872 +this.header.left.right +940060004 1 -k1.left.right -42247872 +this.header.left.color 1 -k1.left.color 1 +this.header.right +940060004 1 -k1.right -239304688 +this.header.right.element +null 1 -k1.right.element -1558080258 +this.header.right.element.getClass().getName() +nonsensical +2 +this.header.right.left +940060004 1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" +this.header.right.right +940060004 1 -k1.right.left -42247872 +this.header.right.color 1 -k1.right.right -755507289 1 -k1.right.color -0 +this.header.color 1 -k1.color -0 1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 -this_invocation_nonce -34 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -47404,341 +45837,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -755507289 +null 1 DataStructures.RedBlackTree.current.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.current.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.left.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.current.right.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.current.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.parent -239304688 +null 1 DataStructures.RedBlackTree.parent.element -1558080258 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left -467870275 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.element -853552605 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.left.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right -755507289 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.right.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.parent.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.grand -467870275 +null 1 DataStructures.RedBlackTree.grand.element -853552605 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.left.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.right.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.grand.right.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.right.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.right.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.grand.color -0 -1 +nonsensical +2 DataStructures.RedBlackTree.great -1312664548 +null 1 DataStructures.RedBlackTree.great.element -837375677 -1 +nonsensical +2 DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.great.left -511909137 -1 +nonsensical +2 DataStructures.RedBlackTree.great.left.element -1227419517 -1 +nonsensical +2 DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.great.left.left -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.great.left.right -42247872 -1 +nonsensical +2 DataStructures.RedBlackTree.great.left.color -1 -1 +nonsensical +2 DataStructures.RedBlackTree.great.right -467870275 -1 +nonsensical +2 DataStructures.RedBlackTree.great.right.element -853552605 -1 +nonsensical +2 DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -42247872 -1 -DataStructures.RedBlackTree.great.right.right -42247872 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -0 -1 -k1 -467870275 -1 -k1.element -853552605 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -42247872 -1 -k1.left.element -1904504032 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -42247872 -1 -k1.right.element -1904504032 -1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -42247872 -1 -k1.right.right -42247872 -1 -k1.right.color -1 -1 -k1.color -0 -1 -return -239304688 -1 -return.element -1558080258 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -467870275 -1 -return.left.element -853552605 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -42247872 -1 -return.left.right -42247872 -1 -return.left.color -0 -1 -return.right -755507289 -1 -return.right.element -1904504032 +nonsensical +2 +DataStructures.RedBlackTree.great.right.left +nonsensical +2 +DataStructures.RedBlackTree.great.right.right +nonsensical +2 +DataStructures.RedBlackTree.great.right.color +nonsensical +2 +DataStructures.RedBlackTree.great.color +nonsensical +2 +negInf +745160567 1 -return.right.element.getClass().getName() +negInf.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -42247872 -1 -return.right.right -42247872 -1 -return.right.color -0 -1 -return.color -0 -1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -33 +6 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1904504032 +null 1 this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -518576549 +940060004 1 this.header.right.element -1502515546 +null 1 this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 this.header.right.left -1035818704 +940060004 1 this.header.right.right -1312664548 +940060004 1 this.header.right.color 1 @@ -47747,46 +46090,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1904504032 +null 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 +nonsensical +2 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -47795,347 +46138,571 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -755507289 +null 1 DataStructures.RedBlackTree.current.element -1904504032 -1 +nonsensical +2 DataStructures.RedBlackTree.current.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.current.left +nonsensical +2 +DataStructures.RedBlackTree.current.left.element +nonsensical +2 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.current.left.left +nonsensical +2 +DataStructures.RedBlackTree.current.left.right +nonsensical +2 +DataStructures.RedBlackTree.current.left.color +nonsensical +2 +DataStructures.RedBlackTree.current.right +nonsensical +2 +DataStructures.RedBlackTree.current.right.element +nonsensical +2 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.current.right.left +nonsensical +2 +DataStructures.RedBlackTree.current.right.right +nonsensical +2 +DataStructures.RedBlackTree.current.right.color +nonsensical +2 +DataStructures.RedBlackTree.current.color +nonsensical +2 +DataStructures.RedBlackTree.parent +null +1 +DataStructures.RedBlackTree.parent.element +nonsensical +2 +DataStructures.RedBlackTree.parent.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.parent.left +nonsensical +2 +DataStructures.RedBlackTree.parent.left.element +nonsensical +2 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.parent.left.left +nonsensical +2 +DataStructures.RedBlackTree.parent.left.right +nonsensical +2 +DataStructures.RedBlackTree.parent.left.color +nonsensical +2 +DataStructures.RedBlackTree.parent.right +nonsensical +2 +DataStructures.RedBlackTree.parent.right.element +nonsensical +2 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.parent.right.left +nonsensical +2 +DataStructures.RedBlackTree.parent.right.right +nonsensical +2 +DataStructures.RedBlackTree.parent.right.color +nonsensical +2 +DataStructures.RedBlackTree.parent.color +nonsensical +2 +DataStructures.RedBlackTree.grand +null +1 +DataStructures.RedBlackTree.grand.element +nonsensical +2 +DataStructures.RedBlackTree.grand.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.grand.left +nonsensical +2 +DataStructures.RedBlackTree.grand.left.element +nonsensical +2 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.grand.left.left +nonsensical +2 +DataStructures.RedBlackTree.grand.left.right +nonsensical +2 +DataStructures.RedBlackTree.grand.left.color +nonsensical +2 +DataStructures.RedBlackTree.grand.right +nonsensical +2 +DataStructures.RedBlackTree.grand.right.element +nonsensical +2 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.grand.right.left +nonsensical +2 +DataStructures.RedBlackTree.grand.right.right +nonsensical +2 +DataStructures.RedBlackTree.grand.right.color +nonsensical +2 +DataStructures.RedBlackTree.grand.color +nonsensical +2 +DataStructures.RedBlackTree.great +null +1 +DataStructures.RedBlackTree.great.element +nonsensical +2 +DataStructures.RedBlackTree.great.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.great.left +nonsensical +2 +DataStructures.RedBlackTree.great.left.element +nonsensical +2 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.great.left.left +nonsensical +2 +DataStructures.RedBlackTree.great.left.right +nonsensical +2 +DataStructures.RedBlackTree.great.left.color +nonsensical +2 +DataStructures.RedBlackTree.great.right +nonsensical +2 +DataStructures.RedBlackTree.great.right.element +nonsensical +2 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +nonsensical +2 +DataStructures.RedBlackTree.great.right.left +nonsensical +2 +DataStructures.RedBlackTree.great.right.right +nonsensical +2 +DataStructures.RedBlackTree.great.right.color +nonsensical +2 +DataStructures.RedBlackTree.great.color +nonsensical +2 +item +1393931310 +1 +item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +7 +theElement +1393931310 1 -DataStructures.RedBlackTree.current.left.element -1904504032 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +lt +940060004 +1 +lt.element +1393931310 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +lt.left.element +1393931310 1 -DataStructures.RedBlackTree.current.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -1904504032 +lt.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +1393931310 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +lt.color 1 -DataStructures.RedBlackTree.parent -239304688 1 -DataStructures.RedBlackTree.parent.element -1558080258 +rt +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +rt.element +1393931310 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -467870275 +rt.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -853552605 +rt.left.element +1393931310 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color -0 +rt.left.color 1 -DataStructures.RedBlackTree.parent.right -755507289 1 -DataStructures.RedBlackTree.parent.right.element -1904504032 +rt.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +rt.right.element +1393931310 +1 +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +rt.right.color 1 -DataStructures.RedBlackTree.parent.color -0 1 -DataStructures.RedBlackTree.grand -467870275 +rt.color 1 -DataStructures.RedBlackTree.grand.element -853552605 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +7 +this +788117692 +1 +this.element +1393931310 +1 +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1904504032 +this.left.element +1393931310 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -42247872 +this.left.left.element +1393931310 1 -DataStructures.RedBlackTree.grand.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1904504032 +this.left.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +1393931310 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.grand.color -0 +this.left.color 1 -DataStructures.RedBlackTree.great -1312664548 1 -DataStructures.RedBlackTree.great.element -837375677 +this.right +940060004 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +this.right.element +1393931310 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -511909137 +this.right.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1227419517 +this.right.left.element +1393931310 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.great.right -239304688 +this.right.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1558080258 +this.right.right.element +1393931310 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -467870275 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.right -755507289 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.great.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.great.color -0 1 -item -1904504032 +this.right.color 1 -item.getClass().getName() +1 +this.color +1 +1 +theElement +1393931310 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -parent -1312664548 +lt +940060004 1 -parent.element -837375677 +lt.element +1393931310 1 -parent.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left -511909137 +lt.left +940060004 1 -parent.left.element -1227419517 +lt.left.element +1393931310 1 -parent.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left.left -42247872 +lt.left.left +940060004 1 -parent.left.right -42247872 +lt.left.right +940060004 1 -parent.left.color +lt.left.color 1 1 -parent.right -239304688 +lt.right +940060004 1 -parent.right.element -1558080258 +lt.right.element +1393931310 1 -parent.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.right.left -467870275 +lt.right.left +940060004 1 -parent.right.right -755507289 +lt.right.right +940060004 1 -parent.right.color -0 +lt.right.color 1 -parent.color -0 1 -return -239304688 +lt.color 1 -return.element -1558080258 1 -return.element.getClass().getName() +rt +940060004 +1 +rt.element +1393931310 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left -467870275 +rt.left +940060004 1 -return.left.element -853552605 +rt.left.element +1393931310 1 -return.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left.left -42247872 +rt.left.left +940060004 1 -return.left.right -42247872 +rt.left.right +940060004 1 -return.left.color -0 +rt.left.color 1 -return.right -755507289 1 -return.right.element -1904504032 +rt.right +940060004 1 -return.right.element.getClass().getName() +rt.right.element +1393931310 +1 +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -42247872 +rt.right.left +940060004 1 -return.right.right -42247872 +rt.right.right +940060004 1 -return.right.color -0 +rt.right.color +1 +1 +rt.color 1 -return.color -0 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -32 +8 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1904504032 +1393931310 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -518576549 +788117692 1 this.header.right.element -1502515546 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -1035818704 +940060004 1 this.header.right.right -1312664548 +940060004 1 this.header.right.color 1 @@ -48144,46 +46711,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -48192,251 +46759,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +788117692 1 DataStructures.RedBlackTree.current.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -239304688 +610984013 1 DataStructures.RedBlackTree.parent.element -1558080258 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -755507289 +788117692 1 DataStructures.RedBlackTree.parent.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +610984013 1 DataStructures.RedBlackTree.grand.element -853552605 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -42247872 +788117692 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +788117692 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -1904504032 +1393931310 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -30 +8 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1904504032 +1393931310 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -518576549 +788117692 1 this.header.right.element -1502515546 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -1035818704 +940060004 1 this.header.right.right -1312664548 +940060004 1 this.header.right.color 1 @@ -48445,46 +47012,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -48493,552 +47060,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +788117692 1 DataStructures.RedBlackTree.current.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -755507289 -1 -DataStructures.RedBlackTree.current.right.element -1904504032 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -239304688 -1 -DataStructures.RedBlackTree.parent.element -1558080258 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -467870275 -1 -DataStructures.RedBlackTree.parent.left.element -853552605 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -0 -1 -DataStructures.RedBlackTree.parent.right -755507289 -1 -DataStructures.RedBlackTree.parent.right.element -1904504032 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -467870275 -1 -DataStructures.RedBlackTree.grand.element -853552605 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1904504032 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.element -1904504032 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -1312664548 -1 -DataStructures.RedBlackTree.great.element -837375677 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -511909137 -1 -DataStructures.RedBlackTree.great.left.element -1227419517 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -239304688 -1 -DataStructures.RedBlackTree.great.right.element -1558080258 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -467870275 -1 -DataStructures.RedBlackTree.great.right.right -755507289 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -0 -1 -item -1904504032 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -35 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1904504032 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -518576549 -1 -this.header.right.element -1502515546 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -1035818704 -1 -this.header.right.right -1312664548 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1904504032 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -239304688 -1 -DataStructures.RedBlackTree.current.element -1558080258 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -467870275 -1 -DataStructures.RedBlackTree.current.left.element -853552605 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -239304688 +610984013 1 DataStructures.RedBlackTree.parent.element -1558080258 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -755507289 +788117692 1 DataStructures.RedBlackTree.parent.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +610984013 1 DataStructures.RedBlackTree.grand.element -853552605 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -42247872 +788117692 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +788117692 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -1887685159 +1393931310 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -36 +6 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1887685159 +1393931310 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -518576549 +788117692 1 this.header.right.element -1502515546 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -1035818704 +940060004 1 this.header.right.right -1312664548 +940060004 1 this.header.right.color 1 @@ -49047,46 +47313,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -49095,190 +47361,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +788117692 1 DataStructures.RedBlackTree.current.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1312664548 +610984013 1 DataStructures.RedBlackTree.parent.element -837375677 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -239304688 +788117692 1 DataStructures.RedBlackTree.parent.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +788117692 1 DataStructures.RedBlackTree.grand.right.element -837375677 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.right -239304688 +940060004 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -518576549 +788117692 1 DataStructures.RedBlackTree.great.right.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.right.right -1312664548 +940060004 1 DataStructures.RedBlackTree.great.right.color 1 @@ -49287,107 +47553,107 @@ DataStructures.RedBlackTree.great.color 1 1 item -1887685159 +1393931310 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -37 +9 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1887685159 +1393931310 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -518576549 +788117692 1 this.header.right.element -1502515546 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -1035818704 +940060004 1 this.header.right.right -1312664548 +940060004 1 this.header.right.color -0 +1 1 this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -49396,588 +47662,619 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +788117692 1 DataStructures.RedBlackTree.current.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1312664548 +610984013 1 DataStructures.RedBlackTree.parent.element -837375677 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -239304688 +788117692 1 DataStructures.RedBlackTree.parent.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +788117692 1 DataStructures.RedBlackTree.grand.right.element -837375677 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.right -239304688 +940060004 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -518576549 +788117692 1 DataStructures.RedBlackTree.great.right.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.right.right -1312664548 +940060004 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1887685159 +1566723494 1 item.getClass().getName() "DataStructures.MyInteger" 1 -parent -1034442050 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +10 +theElement +1566723494 1 -parent.element -1246233263 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -parent.element.getClass().getName() +lt +940060004 +1 +lt.element +1566723494 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left -42247872 +lt.left +940060004 1 -parent.left.element -1887685159 +lt.left.element +1566723494 1 -parent.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left.left -42247872 +lt.left.left +940060004 1 -parent.left.right -42247872 +lt.left.right +940060004 1 -parent.left.color +lt.left.color 1 1 -parent.right -518576549 +lt.right +940060004 1 -parent.right.element -1502515546 +lt.right.element +1566723494 1 -parent.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.right.left -1035818704 +lt.right.left +940060004 1 -parent.right.right -1312664548 +lt.right.right +940060004 1 -parent.right.color -0 +lt.right.color 1 -parent.color 1 +lt.color 1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -38 -DataStructures.RedBlackTree.nullNode -42247872 1 -DataStructures.RedBlackTree.nullNode.element -1887685159 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element +1566723494 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -1887685159 +rt.left.element +1566723494 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -1887685159 +rt.right.element +1566723494 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -239304688 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +10 +this +510113906 1 -DataStructures.RedBlackTree.current.element -1558080258 +this.element +1566723494 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -467870275 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -853552605 +this.left.element +1566723494 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +1566723494 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -755507289 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -1904504032 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +1566723494 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -1312664548 1 -DataStructures.RedBlackTree.parent.element -837375677 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +1566723494 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -511909137 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1227419517 +this.right.left.element +1566723494 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.parent.right -239304688 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element -1558080258 +this.right.right.element +1566723494 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -467870275 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -755507289 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color -0 1 -DataStructures.RedBlackTree.grand -518576549 +this.right.color 1 -DataStructures.RedBlackTree.grand.element -1502515546 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +this.color +1 +1 +theElement +1566723494 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -1035818704 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -470905757 +lt.element +1566723494 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -42247872 +lt.left.element +1566723494 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -1312664548 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -837375677 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +1566723494 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -511909137 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -239304688 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color -0 +lt.right.color 1 -DataStructures.RedBlackTree.grand.color -0 1 -DataStructures.RedBlackTree.great -1034442050 +lt.color 1 -DataStructures.RedBlackTree.great.element -1246233263 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt +940060004 +1 +rt.element +1566723494 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1887685159 +rt.left.element +1566723494 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -518576549 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1502515546 +rt.right.element +1566723494 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -1035818704 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.right -1312664548 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.right.color -0 +rt.right.color 1 -DataStructures.RedBlackTree.great.color 1 +rt.color 1 -k1 -518576549 1 -k1.element -1502515546 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +this_invocation_nonce +11 +this +1644443712 1 -k1.element.getClass().getName() +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left -1035818704 +this.header.left +940060004 1 -k1.left.element -470905757 +this.header.left.element +1566723494 1 -k1.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left.left -42247872 +this.header.left.left +940060004 1 -k1.left.right -42247872 +this.header.left.right +940060004 1 -k1.left.color +this.header.left.color 1 1 -k1.right -1312664548 +this.header.right +788117692 1 -k1.right.element -837375677 +this.header.right.element +1393931310 1 -k1.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.right.left -511909137 +this.header.right.left +940060004 1 -k1.right.right -239304688 +this.header.right.right +510113906 1 -k1.right.color -0 +this.header.right.color +1 +1 +this.header.color 1 -k1.color -0 1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 -this_invocation_nonce -38 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -49986,389 +48283,299 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +510113906 1 DataStructures.RedBlackTree.current.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1312664548 +788117692 1 DataStructures.RedBlackTree.parent.element -837375677 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.parent.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -239304688 +510113906 1 DataStructures.RedBlackTree.parent.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +788117692 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -518576549 +788117692 1 DataStructures.RedBlackTree.great.right.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.right.right -511909137 +510113906 1 DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -518576549 -1 -k1.element -1502515546 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -1035818704 -1 -k1.left.element -470905757 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -511909137 -1 -k1.right.element -1227419517 1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -42247872 -1 -k1.right.right -42247872 -1 -k1.right.color -1 -1 -k1.color -0 -1 -return -1312664548 -1 -return.element -837375677 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -518576549 -1 -return.left.element -1502515546 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -1035818704 -1 -return.left.right -511909137 1 -return.left.color -0 +DataStructures.RedBlackTree.great.color 1 -return.right -239304688 1 -return.right.element -1558080258 +item +1566723494 1 -return.right.element.getClass().getName() +item.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -467870275 -1 -return.right.right -755507289 -1 -return.right.color -0 -1 -return.color -0 -1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -37 +11 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1887685159 +1566723494 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +788117692 1 this.header.right.element -837375677 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +940060004 1 this.header.right.right -239304688 +510113906 1 this.header.right.color -0 +1 1 this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -50377,46 +48584,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +510113906 1 DataStructures.RedBlackTree.current.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -50425,299 +48632,203 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1312664548 +788117692 1 DataStructures.RedBlackTree.parent.element -837375677 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.parent.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -239304688 +510113906 1 DataStructures.RedBlackTree.parent.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +788117692 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +788117692 1 DataStructures.RedBlackTree.great.right.element -837375677 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.right.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1887685159 +1566723494 1 item.getClass().getName() "DataStructures.MyInteger" 1 -parent -1034442050 -1 -parent.element -1246233263 -1 -parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left -42247872 -1 -parent.left.element -1887685159 -1 -parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.left.left -42247872 -1 -parent.left.right -42247872 -1 -parent.left.color -1 -1 -parent.right -1312664548 -1 -parent.right.element -837375677 -1 -parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -parent.right.left -518576549 -1 -parent.right.right -239304688 -1 -parent.right.color -0 -1 -parent.color -1 -1 -return -1312664548 -1 -return.element -837375677 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -518576549 -1 -return.left.element -1502515546 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left.left -1035818704 -1 -return.left.right -511909137 -1 -return.left.color -0 -1 -return.right -239304688 -1 -return.right.element -1558080258 -1 -return.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.right.left -467870275 -1 -return.right.right -755507289 -1 -return.right.color -0 -1 -return.color -0 -1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -36 +9 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1887685159 +1566723494 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +788117692 1 this.header.right.element -837375677 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +940060004 1 this.header.right.right -239304688 +510113906 1 this.header.right.color 1 @@ -50726,46 +48837,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -50774,94 +48885,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1312664548 +510113906 1 DataStructures.RedBlackTree.current.element -837375677 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -518576549 +940060004 1 DataStructures.RedBlackTree.current.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.current.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -239304688 +940060004 1 DataStructures.RedBlackTree.current.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -1312664548 +788117692 1 DataStructures.RedBlackTree.parent.element -837375677 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.parent.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -239304688 +510113906 1 DataStructures.RedBlackTree.parent.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -50870,94 +48981,395 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +788117692 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1393931310 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +610984013 +1 +DataStructures.RedBlackTree.great.element +745160567 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +940060004 +1 +DataStructures.RedBlackTree.great.left.element +1566723494 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +940060004 +1 +DataStructures.RedBlackTree.great.left.right +940060004 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +788117692 +1 +DataStructures.RedBlackTree.great.right.element +1393931310 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +940060004 +1 +DataStructures.RedBlackTree.great.right.right +510113906 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +1566723494 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +this_invocation_nonce +12 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +1566723494 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +788117692 +1 +this.header.right.element +1393931310 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +940060004 +1 +this.header.right.right +510113906 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +1566723494 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +1566723494 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +1566723494 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +510113906 +1 +DataStructures.RedBlackTree.current.element +1566723494 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +1566723494 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +1566723494 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color 0 1 +DataStructures.RedBlackTree.parent +788117692 +1 +DataStructures.RedBlackTree.parent.element +1393931310 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.element +1566723494 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +1 +1 +DataStructures.RedBlackTree.parent.right +510113906 +1 +DataStructures.RedBlackTree.parent.right.element +1566723494 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +0 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +610984013 +1 +DataStructures.RedBlackTree.grand.element +745160567 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +940060004 +1 +DataStructures.RedBlackTree.grand.left.element +1566723494 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +940060004 +1 +DataStructures.RedBlackTree.grand.left.right +940060004 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +788117692 +1 +DataStructures.RedBlackTree.grand.right.element +1393931310 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +940060004 +1 +DataStructures.RedBlackTree.grand.right.right +510113906 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +788117692 1 DataStructures.RedBlackTree.great.right.element -837375677 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.right.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.color 1 @@ -50966,7 +49378,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1887685159 +1622006612 1 item.getClass().getName() "DataStructures.MyInteger" @@ -50974,54 +49386,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -39 +13 theElement -1887685159 +1622006612 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1887685159 +1622006612 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1887685159 +1622006612 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1887685159 +1622006612 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -51030,46 +49442,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1887685159 +1622006612 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1887685159 +1622006612 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1887685159 +1622006612 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -51080,57 +49492,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -39 +13 this -1548550182 +66233253 1 this.element -1887685159 +1622006612 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -1887685159 +1622006612 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -1887685159 +1622006612 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -1887685159 +1622006612 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -51139,46 +49551,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -1887685159 +1622006612 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -1887685159 +1622006612 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -1887685159 +1622006612 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -51190,52 +49602,52 @@ this.color 1 1 theElement -1887685159 +1622006612 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1887685159 +1622006612 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1887685159 +1622006612 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1887685159 +1622006612 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -51244,46 +49656,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1887685159 +1622006612 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1887685159 +1622006612 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1887685159 +1622006612 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -51294,51 +49706,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -40 +14 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1887685159 +1622006612 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +788117692 1 this.header.right.element -837375677 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +940060004 1 this.header.right.right -239304688 +510113906 1 this.header.right.color 1 @@ -51347,46 +49759,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -51395,46 +49807,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +66233253 1 DataStructures.RedBlackTree.current.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -51443,251 +49855,251 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -755507289 +510113906 1 DataStructures.RedBlackTree.parent.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -239304688 +788117692 1 DataStructures.RedBlackTree.grand.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -239304688 +788117692 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1887685159 +1622006612 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -40 +15 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1887685159 +1622006612 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +788117692 1 this.header.right.element -837375677 +1393931310 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +940060004 1 this.header.right.right -239304688 +510113906 1 this.header.right.color -1 +0 1 this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -51696,46 +50108,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +66233253 1 DataStructures.RedBlackTree.current.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -51744,142 +50156,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -755507289 +510113906 1 DataStructures.RedBlackTree.parent.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -239304688 +788117692 1 DataStructures.RedBlackTree.grand.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -239304688 +788117692 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.color 0 @@ -51888,107 +50300,104 @@ DataStructures.RedBlackTree.great.color 1 1 item -1887685159 +1622006612 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -35 -this -1987411885 -1 -this.header -1034442050 +parent +610984013 1 -this.header.element -1246233263 +parent.element +745160567 1 -this.header.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +parent.left +940060004 1 -this.header.left.element -1887685159 +parent.left.element +1622006612 1 -this.header.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +parent.left.left +940060004 1 -this.header.left.right -42247872 +parent.left.right +940060004 1 -this.header.left.color +parent.left.color 1 1 -this.header.right -1312664548 +parent.right +788117692 1 -this.header.right.element -837375677 +parent.right.element +1393931310 1 -this.header.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 +parent.right.left +940060004 1 -this.header.right.color +parent.right.right +510113906 1 +parent.right.color +0 1 -this.header.color +parent.color 1 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +16 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -51997,46 +50406,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +66233253 1 DataStructures.RedBlackTree.current.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -52045,142 +50454,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -755507289 +510113906 1 DataStructures.RedBlackTree.parent.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -239304688 +788117692 1 DataStructures.RedBlackTree.grand.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -239304688 +788117692 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.color 0 @@ -52188,108 +50597,99 @@ DataStructures.RedBlackTree.great.right.color DataStructures.RedBlackTree.great.color 1 1 -item -1887685159 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -41 -this -1987411885 -1 -this.header -1034442050 +k1 +788117692 1 -this.header.element -1246233263 +k1.element +1393931310 1 -this.header.element.getClass().getName() +k1.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +k1.left +940060004 1 -this.header.left.element -1887685159 +k1.left.element +1622006612 1 -this.header.left.element.getClass().getName() +k1.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +k1.left.left +940060004 1 -this.header.left.right -42247872 +k1.left.right +940060004 1 -this.header.left.color +k1.left.color 1 1 -this.header.right -1312664548 +k1.right +510113906 1 -this.header.right.element -837375677 +k1.right.element +1566723494 1 -this.header.right.element.getClass().getName() +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color +k1.right.left +940060004 1 +k1.right.right +66233253 1 -this.header.color +k1.right.color +0 1 +k1.color +0 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +this_invocation_nonce +16 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -52298,46 +50698,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +66233253 1 DataStructures.RedBlackTree.current.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -52346,94 +50746,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -755507289 +510113906 1 DataStructures.RedBlackTree.parent.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -239304688 +788117692 1 DataStructures.RedBlackTree.grand.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -52442,46 +50842,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -239304688 +788117692 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.color 0 @@ -52489,108 +50889,198 @@ DataStructures.RedBlackTree.great.right.color DataStructures.RedBlackTree.great.color 1 1 -item -1128590881 +k1 +788117692 1 -item.getClass().getName() +k1.element +1393931310 +1 +k1.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left +940060004 +1 +k1.left.element +1622006612 +1 +k1.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left.left +940060004 +1 +k1.left.right +940060004 +1 +k1.left.color +1 +1 +k1.right +940060004 +1 +k1.right.element +1622006612 +1 +k1.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.right.left +940060004 +1 +k1.right.right +940060004 +1 +k1.right.color +1 +1 +k1.color +0 +1 +return +510113906 +1 +return.element +1566723494 +1 +return.element.getClass().getName() "DataStructures.MyInteger" 1 +return.left +788117692 +1 +return.left.element +1393931310 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +940060004 +1 +return.left.right +940060004 +1 +return.left.color +0 +1 +return.right +66233253 +1 +return.right.element +1622006612 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 this_invocation_nonce -42 +15 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1622006612 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color -1 +0 1 this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -52599,251 +51089,347 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1312664548 +66233253 1 DataStructures.RedBlackTree.current.element -837375677 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -518576549 +940060004 1 DataStructures.RedBlackTree.current.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.current.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -239304688 +940060004 1 DataStructures.RedBlackTree.current.right.element -1558080258 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -1034442050 +510113906 1 DataStructures.RedBlackTree.parent.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1312664548 +66233253 1 DataStructures.RedBlackTree.parent.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.right.right -239304688 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1034442050 +788117692 1 DataStructures.RedBlackTree.grand.element -1246233263 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +940060004 1 DataStructures.RedBlackTree.grand.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.grand.right.right -239304688 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +510113906 1 DataStructures.RedBlackTree.great.right.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.right.right -239304688 +66233253 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1622006612 1 item.getClass().getName() "DataStructures.MyInteger" 1 +parent +610984013 +1 +parent.element +745160567 +1 +parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left +940060004 +1 +parent.left.element +1622006612 +1 +parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left.left +940060004 +1 +parent.left.right +940060004 +1 +parent.left.color +1 +1 +parent.right +510113906 +1 +parent.right.element +1566723494 +1 +parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.right.left +788117692 +1 +parent.right.right +66233253 +1 +parent.right.color +0 +1 +parent.color +1 +1 +return +510113906 +1 +return.element +1566723494 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +788117692 +1 +return.left.element +1393931310 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +940060004 +1 +return.left.right +940060004 +1 +return.left.color +0 +1 +return.right +66233253 +1 +return.right.element +1622006612 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 +1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -42 +14 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1622006612 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -52852,46 +51438,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -52900,190 +51486,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1312664548 +510113906 1 DataStructures.RedBlackTree.current.element -837375677 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -518576549 +788117692 1 DataStructures.RedBlackTree.current.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.current.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -239304688 +66233253 1 DataStructures.RedBlackTree.current.right.element -1558080258 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.right.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1034442050 +510113906 1 DataStructures.RedBlackTree.parent.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1312664548 +66233253 1 DataStructures.RedBlackTree.parent.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.right.right -239304688 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +788117692 1 DataStructures.RedBlackTree.grand.element -1246233263 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +940060004 1 DataStructures.RedBlackTree.grand.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.grand.right.right -239304688 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +610984013 1 DataStructures.RedBlackTree.great.element -1246233263 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +510113906 1 DataStructures.RedBlackTree.great.right.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.right.right -239304688 +66233253 1 DataStructures.RedBlackTree.great.right.color 1 @@ -53092,379 +51678,360 @@ DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1622006612 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -43 -theElement -1128590881 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +12 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -1128590881 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -1128590881 +this.header.left.element +1622006612 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +510113906 1 -lt.right.element -1128590881 +this.header.right.element +1566723494 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +788117692 1 -lt.right.right -42247872 +this.header.right.right +66233253 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1128590881 +DataStructures.RedBlackTree.nullNode.element +1622006612 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1128590881 +DataStructures.RedBlackTree.nullNode.left.element +1622006612 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1128590881 +DataStructures.RedBlackTree.nullNode.right.element +1622006612 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -43 -this -1651366663 1 -this.element -1128590881 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +510113906 1 -this.left.element -1128590881 +DataStructures.RedBlackTree.current.element +1566723494 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +788117692 1 -this.left.left.element -1128590881 +DataStructures.RedBlackTree.current.left.element +1393931310 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.right +940060004 1 +DataStructures.RedBlackTree.current.left.color +0 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +66233253 1 -this.left.right.element -1128590881 +DataStructures.RedBlackTree.current.right.element +1622006612 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color +0 1 -this.left.color +DataStructures.RedBlackTree.current.color 1 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +510113906 1 -this.right.element -1128590881 +DataStructures.RedBlackTree.parent.element +1566723494 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +788117692 1 -this.right.left.element -1128590881 +DataStructures.RedBlackTree.parent.left.element +1393931310 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.right +940060004 1 +DataStructures.RedBlackTree.parent.left.color +0 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +66233253 1 -this.right.right.element -1128590881 +DataStructures.RedBlackTree.parent.right.element +1622006612 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 +DataStructures.RedBlackTree.parent.right.left +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.right +940060004 1 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement -1128590881 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +788117692 1 -lt.element -1128590881 +DataStructures.RedBlackTree.grand.element +1393931310 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +940060004 1 -lt.left.element -1128590881 +DataStructures.RedBlackTree.grand.left.element +1622006612 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +940060004 1 -lt.right.element -1128590881 +DataStructures.RedBlackTree.grand.right.element +1622006612 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.right +940060004 1 +DataStructures.RedBlackTree.grand.right.color 1 -lt.color 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +610984013 1 -rt.element -1128590881 +DataStructures.RedBlackTree.great.element +745160567 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +940060004 1 -rt.left.element -1128590881 +DataStructures.RedBlackTree.great.left.element +1622006612 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +510113906 1 -rt.right.element -1128590881 +DataStructures.RedBlackTree.great.right.element +1566723494 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +788117692 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +66233253 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color +1 +1 +item +1622006612 1 +item.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -44 +17 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1622006612 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -53473,46 +52040,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -53521,190 +52088,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +510113906 1 DataStructures.RedBlackTree.current.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1548550182 +510113906 1 DataStructures.RedBlackTree.parent.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1651366663 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -755507289 +788117692 1 DataStructures.RedBlackTree.grand.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.color 1 @@ -53713,59 +52280,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1286783232 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -45 +18 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1286783232 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -53774,46 +52341,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -53822,296 +52389,299 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +510113906 1 DataStructures.RedBlackTree.current.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1548550182 +610984013 1 DataStructures.RedBlackTree.parent.element -1887685159 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1651366663 +510113906 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.right.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -755507289 +610984013 1 DataStructures.RedBlackTree.grand.element -1904504032 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +66233253 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +1286783232 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1286783232 1 item.getClass().getName() "DataStructures.MyInteger" 1 -parent -239304688 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +this_invocation_nonce +18 +this +1644443712 1 -parent.element -1558080258 +this.header +610984013 1 -parent.element.getClass().getName() +this.header.element +745160567 +1 +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left -467870275 +this.header.left +940060004 1 -parent.left.element -853552605 +this.header.left.element +1286783232 1 -parent.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left.left -42247872 +this.header.left.left +940060004 1 -parent.left.right -42247872 +this.header.left.right +940060004 1 -parent.left.color +this.header.left.color 1 1 -parent.right -755507289 +this.header.right +510113906 1 -parent.right.element -1904504032 +this.header.right.element +1566723494 1 -parent.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.right.left -42247872 +this.header.right.left +788117692 1 -parent.right.right -1548550182 +this.header.right.right +66233253 1 -parent.right.color -0 +this.header.right.color 1 -parent.color +1 +this.header.color 1 1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -46 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -54120,633 +52690,571 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +510113906 1 DataStructures.RedBlackTree.current.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1548550182 +610984013 1 DataStructures.RedBlackTree.parent.element -1887685159 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1651366663 +510113906 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.right.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -755507289 +610984013 1 DataStructures.RedBlackTree.grand.element -1904504032 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +66233253 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +1286783232 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -755507289 1 -k1.element -1904504032 1 -k1.element.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.great.color 1 -k1.left -42247872 1 -k1.left.element -1128590881 +item +1286783232 1 -k1.left.element.getClass().getName() +item.getClass().getName() "DataStructures.MyInteger" 1 -k1.left.left -42247872 -1 -k1.left.right -42247872 -1 -k1.left.color -1 -1 -k1.right -1548550182 -1 -k1.right.element -1887685159 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +19 +theElement +1286783232 1 -k1.right.element.getClass().getName() +theElement.getClass().getName() "DataStructures.MyInteger" 1 -k1.right.left -42247872 -1 -k1.right.right -1651366663 -1 -k1.right.color -0 -1 -k1.color -0 -1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 -this_invocation_nonce -46 -DataStructures.RedBlackTree.nullNode -42247872 +lt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -1128590881 +lt.element +1286783232 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -1128590881 +lt.left.element +1286783232 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +lt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +lt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -1128590881 +lt.right.element +1286783232 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +lt.color 1 1 -DataStructures.RedBlackTree.current -1651366663 +rt +940060004 1 -DataStructures.RedBlackTree.current.element -1128590881 +rt.element +1286783232 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -1128590881 +rt.left.element +1286783232 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.current.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.current.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -1128590881 +rt.right.element +1286783232 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color +rt.right.left +940060004 1 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.current.color -0 +rt.right.color 1 -DataStructures.RedBlackTree.parent -1548550182 1 -DataStructures.RedBlackTree.parent.element -1887685159 +rt.color 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -755507289 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +19 +this +1874154700 1 -DataStructures.RedBlackTree.parent.left.element -1904504032 +this.element +1286783232 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.left.element +1286783232 1 -DataStructures.RedBlackTree.parent.left.color -0 +this.left.element.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right -1651366663 +this.left.left +940060004 1 -DataStructures.RedBlackTree.parent.right.element -1128590881 +this.left.left.element +1286783232 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.left.left.color 1 -DataStructures.RedBlackTree.parent.color -0 1 -DataStructures.RedBlackTree.grand -755507289 +this.left.right +940060004 1 -DataStructures.RedBlackTree.grand.element -1904504032 +this.left.right.element +1286783232 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.element -1128590881 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +this.left.right.color 1 -DataStructures.RedBlackTree.grand.left.right -42247872 1 -DataStructures.RedBlackTree.grand.left.color +this.left.color 1 1 -DataStructures.RedBlackTree.grand.right -42247872 +this.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1128590881 +this.right.element +1286783232 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 +this.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.color +this.right.left.element +1286783232 1 +this.right.left.element.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.color -0 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.great -239304688 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.great.element -1558080258 +this.right.left.color 1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -467870275 +this.right.right +940060004 1 -DataStructures.RedBlackTree.great.left.element -853552605 +this.right.right.element +1286783232 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -42247872 -1 -DataStructures.RedBlackTree.great.left.right -42247872 -1 -DataStructures.RedBlackTree.great.left.color +this.right.right.left +940060004 1 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.great.right -755507289 +this.right.right.color 1 -DataStructures.RedBlackTree.great.right.element -1904504032 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" +this.right.color 1 -DataStructures.RedBlackTree.great.right.left -42247872 1 -DataStructures.RedBlackTree.great.right.right -42247872 +this.color 1 -DataStructures.RedBlackTree.great.right.color -0 1 -DataStructures.RedBlackTree.great.color +theElement +1286783232 1 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -k1 -755507289 +lt +940060004 1 -k1.element -1904504032 +lt.element +1286783232 1 -k1.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left -42247872 +lt.left +940060004 1 -k1.left.element -1128590881 +lt.left.element +1286783232 1 -k1.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left.left -42247872 +lt.left.left +940060004 1 -k1.left.right -42247872 +lt.left.right +940060004 1 -k1.left.color +lt.left.color 1 1 -k1.right -42247872 +lt.right +940060004 1 -k1.right.element -1128590881 +lt.right.element +1286783232 1 -k1.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.right.left -42247872 +lt.right.left +940060004 1 -k1.right.right -42247872 +lt.right.right +940060004 1 -k1.right.color +lt.right.color 1 1 -k1.color -0 +lt.color 1 -return -1548550182 1 -return.element -1887685159 +rt +940060004 1 -return.element.getClass().getName() +rt.element +1286783232 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left -755507289 +rt.left +940060004 1 -return.left.element -1904504032 +rt.left.element +1286783232 1 -return.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left.left -42247872 +rt.left.left +940060004 1 -return.left.right -42247872 +rt.left.right +940060004 1 -return.left.color -0 +rt.left.color 1 -return.right -1651366663 1 -return.right.element -1128590881 +rt.right +940060004 1 -return.right.element.getClass().getName() +rt.right.element +1286783232 +1 +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -42247872 +rt.right.left +940060004 1 -return.right.right -42247872 +rt.right.right +940060004 1 -return.right.color -0 +rt.right.color +1 +1 +rt.color 1 -return.color -0 1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -45 +20 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1286783232 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -54755,46 +53263,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -54803,347 +53311,552 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +1874154700 1 DataStructures.RedBlackTree.current.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -755507289 +510113906 1 DataStructures.RedBlackTree.grand.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -42247872 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1874154700 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +1286783232 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +510113906 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +788117692 1 DataStructures.RedBlackTree.great.right.right -1651366663 +66233253 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1286783232 1 item.getClass().getName() "DataStructures.MyInteger" 1 -parent -239304688 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +this_invocation_nonce +20 +this +1644443712 1 -parent.element -1558080258 +this.header +610984013 1 -parent.element.getClass().getName() +this.header.element +745160567 +1 +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left -467870275 +this.header.left +940060004 1 -parent.left.element -853552605 +this.header.left.element +1286783232 1 -parent.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left.left -42247872 +this.header.left.left +940060004 1 -parent.left.right -42247872 +this.header.left.right +940060004 1 -parent.left.color +this.header.left.color 1 1 -parent.right -1548550182 +this.header.right +510113906 1 -parent.right.element -1887685159 +this.header.right.element +1566723494 1 -parent.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.right.left -755507289 +this.header.right.left +788117692 1 -parent.right.right -1651366663 +this.header.right.right +66233253 1 -parent.right.color -0 +this.header.right.color 1 -parent.color 1 +this.header.color 1 -return -1548550182 1 -return.element -1887685159 +DataStructures.RedBlackTree.nullNode +940060004 1 -return.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element +1286783232 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left -755507289 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -return.left.element -1904504032 +DataStructures.RedBlackTree.nullNode.left.element +1286783232 1 -return.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -return.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -return.left.color -0 +DataStructures.RedBlackTree.nullNode.left.color 1 -return.right -1651366663 1 -return.right.element -1128590881 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -return.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element +1286783232 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -42247872 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -return.right.right -42247872 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -return.right.color +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +1874154700 +1 +DataStructures.RedBlackTree.current.element +1286783232 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +1286783232 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +1286783232 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color 0 1 -return.color +DataStructures.RedBlackTree.parent +66233253 +1 +DataStructures.RedBlackTree.parent.element +1622006612 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.element +1286783232 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +1 +1 +DataStructures.RedBlackTree.parent.right +1874154700 +1 +DataStructures.RedBlackTree.parent.right.element +1286783232 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color 0 1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +510113906 +1 +DataStructures.RedBlackTree.grand.element +1566723494 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +788117692 +1 +DataStructures.RedBlackTree.grand.left.element +1393931310 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +940060004 +1 +DataStructures.RedBlackTree.grand.left.right +940060004 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +66233253 +1 +DataStructures.RedBlackTree.grand.right.element +1622006612 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +940060004 +1 +DataStructures.RedBlackTree.grand.right.right +1874154700 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +610984013 +1 +DataStructures.RedBlackTree.great.element +745160567 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +940060004 +1 +DataStructures.RedBlackTree.great.left.element +1286783232 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +940060004 +1 +DataStructures.RedBlackTree.great.left.right +940060004 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +510113906 +1 +DataStructures.RedBlackTree.great.right.element +1566723494 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +788117692 +1 +DataStructures.RedBlackTree.great.right.right +66233253 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +1286783232 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -44 +17 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1286783232 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -55152,46 +53865,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -55200,94 +53913,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +1874154700 1 DataStructures.RedBlackTree.current.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -55296,94 +54009,94 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +510113906 1 DataStructures.RedBlackTree.grand.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -42247872 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1874154700 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +1286783232 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +510113906 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +788117692 1 DataStructures.RedBlackTree.great.right.right -1651366663 +66233253 1 DataStructures.RedBlackTree.great.right.color 1 @@ -55392,59 +54105,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1286783232 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -41 +21 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1128590881 +1286783232 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -55453,46 +54166,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -55501,94 +54214,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +1874154700 1 DataStructures.RedBlackTree.current.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -1548550182 +66233253 1 DataStructures.RedBlackTree.parent.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -55597,94 +54310,94 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +510113906 1 DataStructures.RedBlackTree.grand.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -42247872 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1874154700 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +1286783232 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +510113906 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +788117692 1 DataStructures.RedBlackTree.great.right.right -1651366663 +66233253 1 DataStructures.RedBlackTree.great.right.color 1 @@ -55693,360 +54406,379 @@ DataStructures.RedBlackTree.great.color 1 1 item -1128590881 +1632392469 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -47 -this -1987411885 +22 +theElement +1632392469 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +1632392469 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -1128590881 +lt.left.element +1632392469 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +1632392469 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -239304688 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -1128590881 +rt.element +1632392469 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -1128590881 +rt.left.element +1632392469 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -1128590881 +rt.right.element +1632392469 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -1548550182 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +22 +this +2008362258 1 -DataStructures.RedBlackTree.current.element -1887685159 +this.element +1632392469 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -755507289 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -1904504032 +this.left.element +1632392469 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +1632392469 1 -DataStructures.RedBlackTree.current.left.color -0 +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right -1651366663 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right.element -1128590881 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +this.left.left.color +1 +1 +this.left.right +940060004 +1 +this.left.right.element +1632392469 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color -0 +this.left.right.color 1 -DataStructures.RedBlackTree.current.color 1 +this.left.color 1 -DataStructures.RedBlackTree.parent -1548550182 1 -DataStructures.RedBlackTree.parent.element -1887685159 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +1632392469 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -755507289 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1904504032 +this.right.left.element +1632392469 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color -0 +this.right.left.color 1 -DataStructures.RedBlackTree.parent.right -1651366663 1 -DataStructures.RedBlackTree.parent.right.element -1128590881 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element +1632392469 +1 +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color 1 +this.right.color 1 -DataStructures.RedBlackTree.grand -755507289 1 -DataStructures.RedBlackTree.grand.element -1904504032 +this.color 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +1 +theElement +1632392469 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -42247872 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1128590881 +lt.element +1632392469 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -42247872 +lt.left.element +1632392469 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -42247872 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1128590881 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +1632392469 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -42247872 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color -0 +lt.color 1 -DataStructures.RedBlackTree.great -239304688 1 -DataStructures.RedBlackTree.great.element -1558080258 +rt +940060004 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element +1632392469 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -467870275 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -853552605 +rt.left.element +1632392469 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -1548550182 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1887685159 +rt.right.element +1632392469 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -755507289 -1 -DataStructures.RedBlackTree.great.right.right -1651366663 -1 -DataStructures.RedBlackTree.great.right.color +rt.right.left +940060004 1 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -440851213 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -48 +23 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -440851213 +1632392469 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -56055,46 +54787,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -56103,190 +54835,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +2008362258 1 DataStructures.RedBlackTree.current.element -1887685159 +1632392469 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.element -1904504032 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -239304688 +1874154700 1 DataStructures.RedBlackTree.parent.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +1632392469 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1312664548 +66233253 1 DataStructures.RedBlackTree.grand.element -837375677 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -239304688 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +510113906 1 DataStructures.RedBlackTree.great.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.element -440851213 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +66233253 1 DataStructures.RedBlackTree.great.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.right.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.color 1 @@ -56295,59 +55027,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -440851213 +1632392469 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -48 +24 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -440851213 +1632392469 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +66233253 1 this.header.right.color 1 @@ -56356,46 +55088,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -56404,46 +55136,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +2008362258 1 DataStructures.RedBlackTree.current.element -1887685159 +1632392469 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.element -1904504032 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -56452,571 +55184,540 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -239304688 +1874154700 1 DataStructures.RedBlackTree.parent.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +1632392469 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1312664548 +66233253 1 DataStructures.RedBlackTree.grand.element -837375677 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -239304688 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +510113906 1 DataStructures.RedBlackTree.great.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.element -440851213 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +66233253 1 DataStructures.RedBlackTree.great.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.right.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -440851213 +1632392469 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -49 -theElement -440851213 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 +parent +510113906 1 -lt.element -440851213 +parent.element +1566723494 1 -lt.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +parent.left +788117692 1 -lt.left.element -440851213 +parent.left.element +1393931310 1 -lt.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +parent.left.left +940060004 1 -lt.left.right -42247872 +parent.left.right +940060004 1 -lt.left.color +parent.left.color 1 1 -lt.right -42247872 +parent.right +66233253 1 -lt.right.element -440851213 +parent.right.element +1622006612 1 -lt.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +parent.right.left +940060004 1 -lt.right.color +parent.right.right +1874154700 1 +parent.right.color +0 1 -lt.color +parent.color 1 1 -rt -42247872 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +25 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -440851213 +DataStructures.RedBlackTree.nullNode.element +1632392469 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -440851213 +DataStructures.RedBlackTree.nullNode.left.element +1632392469 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -440851213 +DataStructures.RedBlackTree.nullNode.right.element +1632392469 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -49 -this -567754741 -1 -this.element -440851213 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +2008362258 1 -this.left.element -440851213 +DataStructures.RedBlackTree.current.element +1632392469 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -440851213 +DataStructures.RedBlackTree.current.left.element +1632392469 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -440851213 +DataStructures.RedBlackTree.current.right.element +1632392469 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1874154700 1 -this.right.element -440851213 +DataStructures.RedBlackTree.parent.element +1286783232 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -440851213 +DataStructures.RedBlackTree.parent.left.element +1632392469 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +2008362258 1 -this.right.right.element -440851213 +DataStructures.RedBlackTree.parent.right.element +1632392469 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color +DataStructures.RedBlackTree.parent.right.left +940060004 1 +DataStructures.RedBlackTree.parent.right.right +940060004 1 -theElement -440851213 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.parent.color +0 1 -lt -42247872 +DataStructures.RedBlackTree.grand +66233253 1 -lt.element -440851213 +DataStructures.RedBlackTree.grand.element +1622006612 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +940060004 1 -lt.left.element -440851213 +DataStructures.RedBlackTree.grand.left.element +1632392469 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1874154700 1 -lt.right.element -440851213 +DataStructures.RedBlackTree.grand.right.element +1286783232 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color +DataStructures.RedBlackTree.grand.right.left +940060004 1 +DataStructures.RedBlackTree.grand.right.right +2008362258 1 -lt.color +DataStructures.RedBlackTree.grand.right.color +0 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -440851213 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -440851213 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +66233253 1 -rt.right.element -440851213 +DataStructures.RedBlackTree.great.right.element +1622006612 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.great.right.left +940060004 1 +DataStructures.RedBlackTree.great.right.right +1874154700 1 -rt.color +DataStructures.RedBlackTree.great.right.color +0 1 +DataStructures.RedBlackTree.great.color 1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -50 -this -1987411885 1 -this.header -1034442050 +k1 +66233253 1 -this.header.element -1246233263 +k1.element +1622006612 1 -this.header.element.getClass().getName() +k1.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +k1.left +940060004 1 -this.header.left.element -440851213 +k1.left.element +1632392469 1 -this.header.left.element.getClass().getName() +k1.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +k1.left.left +940060004 1 -this.header.left.right -42247872 +k1.left.right +940060004 1 -this.header.left.color +k1.left.color 1 1 -this.header.right -1312664548 +k1.right +1874154700 1 -this.header.right.element -837375677 +k1.right.element +1286783232 1 -this.header.right.element.getClass().getName() +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color +k1.right.left +940060004 1 +k1.right.right +2008362258 1 -this.header.color +k1.right.color +0 1 +k1.color +0 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +this_invocation_nonce +25 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -57025,142 +55726,142 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -567754741 +2008362258 1 DataStructures.RedBlackTree.current.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -567754741 +2008362258 1 DataStructures.RedBlackTree.parent.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -57169,46 +55870,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.great.right.color 0 @@ -57216,60 +55917,150 @@ DataStructures.RedBlackTree.great.right.color DataStructures.RedBlackTree.great.color 1 1 -item -440851213 +k1 +66233253 1 -item.getClass().getName() +k1.element +1622006612 +1 +k1.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left +940060004 +1 +k1.left.element +1632392469 +1 +k1.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left.left +940060004 +1 +k1.left.right +940060004 +1 +k1.left.color +1 +1 +k1.right +940060004 +1 +k1.right.element +1632392469 +1 +k1.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.right.left +940060004 +1 +k1.right.right +940060004 +1 +k1.right.color +1 +1 +k1.color +0 +1 +return +1874154700 +1 +return.element +1286783232 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +66233253 +1 +return.left.element +1622006612 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +940060004 +1 +return.left.right +940060004 +1 +return.left.color +0 +1 +return.right +2008362258 +1 +return.right.element +1632392469 +1 +return.right.element.getClass().getName() "DataStructures.MyInteger" 1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 this_invocation_nonce -50 +24 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -440851213 +1632392469 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -57278,46 +56069,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -57326,46 +56117,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -567754741 +2008362258 1 DataStructures.RedBlackTree.current.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -57374,94 +56165,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -567754741 +2008362258 1 DataStructures.RedBlackTree.parent.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -57470,46 +56261,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.right -1651366663 +2008362258 1 DataStructures.RedBlackTree.great.right.color 0 @@ -57518,59 +56309,155 @@ DataStructures.RedBlackTree.great.color 1 1 item -440851213 +1632392469 1 item.getClass().getName() "DataStructures.MyInteger" 1 +parent +510113906 +1 +parent.element +1566723494 +1 +parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left +788117692 +1 +parent.left.element +1393931310 +1 +parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left.left +940060004 +1 +parent.left.right +940060004 +1 +parent.left.color +1 +1 +parent.right +1874154700 +1 +parent.right.element +1286783232 +1 +parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.right.left +66233253 +1 +parent.right.right +2008362258 +1 +parent.right.color +0 +1 +parent.color +1 +1 +return +1874154700 +1 +return.element +1286783232 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +66233253 +1 +return.left.element +1622006612 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +940060004 +1 +return.left.right +940060004 +1 +return.left.color +0 +1 +return.right +2008362258 +1 +return.right.element +1632392469 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -47 +23 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -440851213 +1632392469 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -57579,46 +56466,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -57627,94 +56514,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -567754741 +1874154700 1 DataStructures.RedBlackTree.current.element -440851213 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.element -440851213 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +2008362258 1 DataStructures.RedBlackTree.current.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -567754741 +2008362258 1 DataStructures.RedBlackTree.parent.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -57723,46 +56610,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -57771,107 +56658,107 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.right -1651366663 +2008362258 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -440851213 +1632392469 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -51 +21 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -440851213 +1632392469 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -57880,46 +56767,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -57928,94 +56815,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -567754741 +1874154700 1 DataStructures.RedBlackTree.current.element -440851213 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.element -440851213 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +2008362258 1 DataStructures.RedBlackTree.current.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1651366663 +1874154700 1 DataStructures.RedBlackTree.parent.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -567754741 +2008362258 1 DataStructures.RedBlackTree.parent.right.element -440851213 +1632392469 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -58024,46 +56911,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -58072,427 +56959,408 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.right -1651366663 +2008362258 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -984088366 +1632392469 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -52 -theElement -984088366 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +26 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -984088366 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -984088366 +this.header.left.element +1632392469 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +510113906 1 -lt.right.element -984088366 +this.header.right.element +1566723494 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +788117692 1 -lt.right.right -42247872 +this.header.right.right +1874154700 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -984088366 +DataStructures.RedBlackTree.nullNode.element +1632392469 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -984088366 +DataStructures.RedBlackTree.nullNode.left.element +1632392469 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -984088366 +DataStructures.RedBlackTree.nullNode.right.element +1632392469 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -52 -this -1801601815 1 -this.element -984088366 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +1874154700 1 -this.left.element -984088366 +DataStructures.RedBlackTree.current.element +1286783232 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +66233253 1 -this.left.left.element -984088366 +DataStructures.RedBlackTree.current.left.element +1622006612 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.right +940060004 1 +DataStructures.RedBlackTree.current.left.color +0 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +2008362258 1 -this.left.right.element -984088366 +DataStructures.RedBlackTree.current.right.element +1632392469 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color +0 1 -this.left.color +DataStructures.RedBlackTree.current.color 1 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1874154700 1 -this.right.element -984088366 +DataStructures.RedBlackTree.parent.element +1286783232 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +66233253 1 -this.right.left.element -984088366 +DataStructures.RedBlackTree.parent.left.element +1622006612 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.right +940060004 1 +DataStructures.RedBlackTree.parent.left.color +0 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +2008362258 1 -this.right.right.element -984088366 +DataStructures.RedBlackTree.parent.right.element +1632392469 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 +DataStructures.RedBlackTree.parent.right.left +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.right +940060004 1 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement -984088366 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +66233253 1 -lt.element -984088366 +DataStructures.RedBlackTree.grand.element +1622006612 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +940060004 1 -lt.left.element -984088366 +DataStructures.RedBlackTree.grand.left.element +1632392469 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +940060004 1 -lt.right.element -984088366 +DataStructures.RedBlackTree.grand.right.element +1632392469 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.right +940060004 1 +DataStructures.RedBlackTree.grand.right.color 1 -lt.color 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -984088366 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -984088366 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +1874154700 1 -rt.right.element -984088366 +DataStructures.RedBlackTree.great.right.element +1286783232 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +66233253 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +2008362258 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color +1 +1 +item +760563749 1 +item.getClass().getName() +"DataStructures.MyInteger" 1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -53 +27 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -984088366 +760563749 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -58501,46 +57369,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -58549,94 +57417,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1801601815 +1874154700 1 DataStructures.RedBlackTree.current.element -984088366 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.element -984088366 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +2008362258 1 DataStructures.RedBlackTree.current.right.element -984088366 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1035818704 +510113906 1 DataStructures.RedBlackTree.parent.element -470905757 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +788117692 1 DataStructures.RedBlackTree.parent.left.element -984088366 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -42247872 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -984088366 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +66233253 1 DataStructures.RedBlackTree.parent.right.right -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -58645,46 +57513,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1874154700 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -58693,46 +57561,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.color 1 @@ -58741,7 +57609,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -984088366 +760563749 1 item.getClass().getName() "DataStructures.MyInteger" @@ -58749,51 +57617,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -53 +27 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -984088366 +760563749 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -58802,46 +57670,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -58850,46 +57718,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1801601815 +1874154700 1 DataStructures.RedBlackTree.current.element -984088366 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.element -984088366 +1622006612 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +2008362258 1 DataStructures.RedBlackTree.current.right.element -984088366 +1632392469 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -58898,94 +57766,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1035818704 +510113906 1 DataStructures.RedBlackTree.parent.element -470905757 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +788117692 1 DataStructures.RedBlackTree.parent.left.element -984088366 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -42247872 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -984088366 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +66233253 1 DataStructures.RedBlackTree.parent.right.right -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +610984013 1 DataStructures.RedBlackTree.grand.element -1502515546 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +510113906 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1566723494 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1874154700 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -58994,46 +57862,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.color 1 @@ -59042,59 +57910,379 @@ DataStructures.RedBlackTree.great.color 1 1 item -984088366 +760563749 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -51 +28 +theElement +760563749 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +lt +940060004 +1 +lt.element +760563749 +1 +lt.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left +940060004 +1 +lt.left.element +760563749 +1 +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 +1 +lt.left.right +940060004 +1 +lt.left.color +1 +1 +lt.right +940060004 +1 +lt.right.element +760563749 +1 +lt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.right.left +940060004 +1 +lt.right.right +940060004 +1 +lt.right.color +1 +1 +lt.color +1 +1 +rt +940060004 +1 +rt.element +760563749 +1 +rt.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left +940060004 +1 +rt.left.element +760563749 +1 +rt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left.left +940060004 +1 +rt.left.right +940060004 +1 +rt.left.color +1 +1 +rt.right +940060004 +1 +rt.right.element +760563749 +1 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.right.left +940060004 +1 +rt.right.right +940060004 +1 +rt.right.color +1 +1 +rt.color +1 +1 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +28 +this +1753447031 +1 +this.element +760563749 +1 +this.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left +940060004 +1 +this.left.element +760563749 +1 +this.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.left +940060004 +1 +this.left.left.element +760563749 +1 +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.left.left +940060004 +1 +this.left.left.right +940060004 +1 +this.left.left.color +1 +1 +this.left.right +940060004 +1 +this.left.right.element +760563749 +1 +this.left.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.right.left +940060004 +1 +this.left.right.right +940060004 +1 +this.left.right.color +1 +1 +this.left.color +1 +1 +this.right +940060004 +1 +this.right.element +760563749 +1 +this.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.left +940060004 +1 +this.right.left.element +760563749 +1 +this.right.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.left.left +940060004 +1 +this.right.left.right +940060004 +1 +this.right.left.color +1 +1 +this.right.right +940060004 +1 +this.right.right.element +760563749 +1 +this.right.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.right.left +940060004 +1 +this.right.right.right +940060004 +1 +this.right.right.color +1 +1 +this.right.color +1 +1 +this.color +1 +1 +theElement +760563749 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +lt +940060004 +1 +lt.element +760563749 +1 +lt.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left +940060004 +1 +lt.left.element +760563749 +1 +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 +1 +lt.left.right +940060004 +1 +lt.left.color +1 +1 +lt.right +940060004 +1 +lt.right.element +760563749 +1 +lt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.right.left +940060004 +1 +lt.right.right +940060004 +1 +lt.right.color +1 +1 +lt.color +1 +1 +rt +940060004 +1 +rt.element +760563749 +1 +rt.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left +940060004 +1 +rt.left.element +760563749 +1 +rt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left.left +940060004 +1 +rt.left.right +940060004 +1 +rt.left.color +1 +1 +rt.right +940060004 +1 +rt.right.element +760563749 +1 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.right.left +940060004 +1 +rt.right.right +940060004 +1 +rt.right.color +1 +1 +rt.color +1 +1 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +this_invocation_nonce +29 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -984088366 +760563749 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -59103,46 +58291,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -59151,94 +58339,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1801601815 +1753447031 1 DataStructures.RedBlackTree.current.element -984088366 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1035818704 +2008362258 1 DataStructures.RedBlackTree.parent.element -470905757 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -59247,155 +58435,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +1874154700 1 DataStructures.RedBlackTree.grand.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +66233253 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +2008362258 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1753447031 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +510113906 1 DataStructures.RedBlackTree.great.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +66233253 1 DataStructures.RedBlackTree.great.right.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -984088366 +760563749 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -54 +29 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -984088366 +760563749 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -59404,46 +58592,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -59452,46 +58640,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1801601815 +1753447031 1 DataStructures.RedBlackTree.current.element -984088366 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -59500,523 +58688,504 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1035818704 +2008362258 1 DataStructures.RedBlackTree.parent.element -470905757 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -984088366 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +1874154700 1 DataStructures.RedBlackTree.grand.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +66233253 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +2008362258 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1753447031 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +510113906 1 DataStructures.RedBlackTree.great.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +66233253 1 DataStructures.RedBlackTree.great.right.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -2282005 +760563749 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -55 -theElement -2282005 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +26 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -2282005 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -2282005 +this.header.left.element +760563749 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +510113906 1 -lt.right.element -2282005 +this.header.right.element +1566723494 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +788117692 1 -lt.right.right -42247872 +this.header.right.right +1874154700 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -2282005 +DataStructures.RedBlackTree.nullNode.element +760563749 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -2282005 +DataStructures.RedBlackTree.nullNode.left.element +760563749 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -2282005 +DataStructures.RedBlackTree.nullNode.right.element +760563749 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -55 -this -1846436036 1 -this.element -2282005 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +1753447031 1 -this.left.element -2282005 +DataStructures.RedBlackTree.current.element +760563749 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -2282005 +DataStructures.RedBlackTree.current.left.element +760563749 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -2282005 +DataStructures.RedBlackTree.current.right.element +760563749 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +2008362258 1 -this.right.element -2282005 +DataStructures.RedBlackTree.parent.element +1632392469 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -2282005 +DataStructures.RedBlackTree.parent.left.element +760563749 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +1753447031 1 -this.right.right.element -2282005 +DataStructures.RedBlackTree.parent.right.element +760563749 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 +DataStructures.RedBlackTree.parent.right.left +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.right +940060004 1 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement -2282005 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +1874154700 1 -lt.element -2282005 +DataStructures.RedBlackTree.grand.element +1286783232 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +66233253 1 -lt.left.element -2282005 +DataStructures.RedBlackTree.grand.left.element +1622006612 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +2008362258 1 -lt.right.element -2282005 +DataStructures.RedBlackTree.grand.right.element +1632392469 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.right +1753447031 1 +DataStructures.RedBlackTree.grand.right.color 1 -lt.color 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -2282005 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -2282005 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +1874154700 1 -rt.right.element -2282005 +DataStructures.RedBlackTree.great.right.element +1286783232 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +66233253 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +2008362258 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color +0 1 +DataStructures.RedBlackTree.great.color 1 -rt.color 1 +item +760563749 +1 +item.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -56 +30 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -2282005 +760563749 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -60025,46 +59194,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -2282005 +760563749 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -2282005 +760563749 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -2282005 +760563749 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -60073,552 +59242,571 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1846436036 +1753447031 1 DataStructures.RedBlackTree.current.element -2282005 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -2282005 +760563749 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -2282005 +760563749 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -1035818704 +2008362258 1 DataStructures.RedBlackTree.parent.element -470905757 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.element -984088366 +760563749 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1846436036 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -2282005 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +1874154700 1 DataStructures.RedBlackTree.grand.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +66233253 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1622006612 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +2008362258 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1632392469 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1753447031 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +510113906 1 DataStructures.RedBlackTree.great.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +66233253 1 DataStructures.RedBlackTree.great.right.right -1548550182 +2008362258 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -2282005 +1810132623 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -56 -this -1987411885 +31 +theElement +1810132623 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +1810132623 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -2282005 +lt.left.element +1810132623 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +1810132623 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -239304688 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -2282005 +rt.element +1810132623 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -2282005 +rt.left.element +1810132623 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -2282005 +rt.right.element +1810132623 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -1846436036 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +31 +this +895947612 1 -DataStructures.RedBlackTree.current.element -2282005 +this.element +1810132623 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -2282005 +this.left.element +1810132623 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +1810132623 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -2282005 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +1810132623 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -1035818704 1 -DataStructures.RedBlackTree.parent.element -470905757 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +1810132623 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -1801601815 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -984088366 +this.right.left.element +1810132623 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color -0 +this.right.left.color 1 -DataStructures.RedBlackTree.parent.right -1846436036 1 -DataStructures.RedBlackTree.parent.right.element -2282005 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element +1810132623 +1 +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color 1 +this.right.color 1 -DataStructures.RedBlackTree.grand -518576549 1 -DataStructures.RedBlackTree.grand.element -1502515546 +this.color 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +1 +theElement +1810132623 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -1035818704 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -470905757 +lt.element +1810132623 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -1801601815 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -1846436036 +lt.left.element +1810132623 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -511909137 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1227419517 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +1810132623 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -42247872 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color +lt.color 1 1 -DataStructures.RedBlackTree.great -1312664548 +rt +940060004 1 -DataStructures.RedBlackTree.great.element -837375677 +rt.element +1810132623 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -518576549 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1502515546 +rt.left.element +1810132623 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -1035818704 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -511909137 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -239304688 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1558080258 +rt.right.element +1810132623 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -467870275 -1 -DataStructures.RedBlackTree.great.right.right -1548550182 -1 -DataStructures.RedBlackTree.great.right.color +rt.right.left +940060004 1 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -2282005 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -54 +32 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -2282005 +1810132623 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -60627,46 +59815,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -2282005 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -2282005 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -2282005 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -60675,251 +59863,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1846436036 +895947612 1 DataStructures.RedBlackTree.current.element -2282005 +1810132623 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -2282005 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -2282005 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1035818704 +1753447031 1 DataStructures.RedBlackTree.parent.element -470905757 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.element -984088366 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1846436036 +895947612 1 DataStructures.RedBlackTree.parent.right.element -2282005 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 1 -DataStructures.RedBlackTree.parent.color 1 +DataStructures.RedBlackTree.parent.color +0 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +1753447031 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +2008362258 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1632392469 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -1 +0 1 item -2282005 +1810132623 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -57 +33 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -2282005 +1810132623 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -60928,46 +60116,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -2282005 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -2282005 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -2282005 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -60976,46 +60164,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1846436036 +895947612 1 DataStructures.RedBlackTree.current.element -2282005 +1810132623 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -2282005 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -2282005 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -61024,571 +60212,540 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1035818704 +1753447031 1 DataStructures.RedBlackTree.parent.element -470905757 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.element -984088366 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1846436036 +895947612 1 DataStructures.RedBlackTree.parent.right.element -2282005 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +1753447031 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +2008362258 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1632392469 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color -1 +0 1 item -1911757902 +1810132623 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -58 -theElement -1911757902 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 +parent +1874154700 1 -lt.element -1911757902 +parent.element +1286783232 1 -lt.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +parent.left +66233253 1 -lt.left.element -1911757902 +parent.left.element +1622006612 1 -lt.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +parent.left.left +940060004 1 -lt.left.right -42247872 +parent.left.right +940060004 1 -lt.left.color +parent.left.color 1 1 -lt.right -42247872 +parent.right +2008362258 1 -lt.right.element -1911757902 +parent.right.element +1632392469 1 -lt.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color +parent.right.left +940060004 1 +parent.right.right +1753447031 1 -lt.color +parent.right.color +0 1 +parent.color +0 1 -rt -42247872 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +34 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1911757902 +DataStructures.RedBlackTree.nullNode.element +1810132623 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1911757902 +DataStructures.RedBlackTree.nullNode.left.element +1810132623 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1911757902 +DataStructures.RedBlackTree.nullNode.right.element +1810132623 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -58 -this -264732500 +DataStructures.RedBlackTree.nullNode.color 1 -this.element -1911757902 1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 +DataStructures.RedBlackTree.current +895947612 1 -this.left.element -1911757902 +DataStructures.RedBlackTree.current.element +1810132623 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -1911757902 +DataStructures.RedBlackTree.current.left.element +1810132623 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -1911757902 +DataStructures.RedBlackTree.current.right.element +1810132623 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1753447031 1 -this.right.element -1911757902 +DataStructures.RedBlackTree.parent.element +760563749 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -1911757902 +DataStructures.RedBlackTree.parent.left.element +1810132623 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +895947612 1 -this.right.right.element -1911757902 +DataStructures.RedBlackTree.parent.right.element +1810132623 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color +DataStructures.RedBlackTree.parent.right.left +940060004 1 +DataStructures.RedBlackTree.parent.right.right +940060004 1 -theElement -1911757902 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.parent.color +0 1 -lt -42247872 +DataStructures.RedBlackTree.grand +2008362258 1 -lt.element -1911757902 +DataStructures.RedBlackTree.grand.element +1632392469 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +940060004 1 -lt.left.element -1911757902 +DataStructures.RedBlackTree.grand.left.element +1810132623 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1753447031 1 -lt.right.element -1911757902 +DataStructures.RedBlackTree.grand.right.element +760563749 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color +DataStructures.RedBlackTree.grand.right.left +940060004 1 +DataStructures.RedBlackTree.grand.right.right +895947612 1 -lt.color +DataStructures.RedBlackTree.grand.right.color +0 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +1874154700 1 -rt.element -1911757902 +DataStructures.RedBlackTree.great.element +1286783232 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +66233253 1 -rt.left.element -1911757902 +DataStructures.RedBlackTree.great.left.element +1622006612 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +2008362258 1 -rt.right.element -1911757902 +DataStructures.RedBlackTree.great.right.element +1632392469 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.great.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.great.right.right +1753447031 1 +DataStructures.RedBlackTree.great.right.color +0 1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -59 -this -1987411885 +DataStructures.RedBlackTree.great.color +0 1 -this.header -1034442050 +k1 +2008362258 1 -this.header.element -1246233263 +k1.element +1632392469 1 -this.header.element.getClass().getName() +k1.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +k1.left +940060004 1 -this.header.left.element -1911757902 +k1.left.element +1810132623 1 -this.header.left.element.getClass().getName() +k1.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +k1.left.left +940060004 1 -this.header.left.right -42247872 +k1.left.right +940060004 1 -this.header.left.color +k1.left.color 1 1 -this.header.right -1312664548 +k1.right +1753447031 1 -this.header.right.element -837375677 +k1.right.element +760563749 1 -this.header.right.element.getClass().getName() +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color +k1.right.left +940060004 1 +k1.right.right +895947612 1 -this.header.color +k1.right.color +0 1 +k1.color +0 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +this_invocation_nonce +34 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -61597,251 +60754,341 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -264732500 +895947612 1 DataStructures.RedBlackTree.current.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -511909137 +1753447031 1 DataStructures.RedBlackTree.parent.element -1227419517 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +2008362258 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1632392469 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.right.right -1548550182 +940060004 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color +0 1 +k1 +2008362258 1 -item -1911757902 +k1.element +1632392469 1 -item.getClass().getName() +k1.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left +940060004 +1 +k1.left.element +1810132623 +1 +k1.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left.left +940060004 +1 +k1.left.right +940060004 +1 +k1.left.color +1 +1 +k1.right +940060004 +1 +k1.right.element +1810132623 +1 +k1.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.right.left +940060004 +1 +k1.right.right +940060004 +1 +k1.right.color +1 +1 +k1.color +0 +1 +return +1753447031 +1 +return.element +760563749 +1 +return.element.getClass().getName() "DataStructures.MyInteger" 1 +return.left +2008362258 +1 +return.left.element +1632392469 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +940060004 +1 +return.left.right +940060004 +1 +return.left.color +0 +1 +return.right +895947612 +1 +return.right.element +1810132623 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 this_invocation_nonce -59 +33 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1911757902 +1810132623 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -61850,46 +61097,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -61898,46 +61145,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -264732500 +895947612 1 DataStructures.RedBlackTree.current.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -61946,504 +61193,299 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -511909137 +1753447031 1 DataStructures.RedBlackTree.parent.element -1227419517 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color -1 +0 1 item -1911757902 +1810132623 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -57 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1911757902 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1911757902 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1911757902 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1911757902 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -264732500 +parent +1874154700 1 -DataStructures.RedBlackTree.current.element -1911757902 +parent.element +1286783232 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +parent.left +66233253 1 -DataStructures.RedBlackTree.current.left.element -1911757902 +parent.left.element +1622006612 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +parent.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +parent.left.right +940060004 1 -DataStructures.RedBlackTree.current.left.color +parent.left.color 1 1 -DataStructures.RedBlackTree.current.right -42247872 +parent.right +1753447031 1 -DataStructures.RedBlackTree.current.right.element -1911757902 +parent.right.element +760563749 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color +parent.right.left +2008362258 1 +parent.right.right +895947612 1 -DataStructures.RedBlackTree.current.color +parent.right.color 0 1 -DataStructures.RedBlackTree.parent -511909137 -1 -DataStructures.RedBlackTree.parent.element -1227419517 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -264732500 -1 -DataStructures.RedBlackTree.parent.left.element -1911757902 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color +parent.color 0 1 -DataStructures.RedBlackTree.parent.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.element -1911757902 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -518576549 -1 -DataStructures.RedBlackTree.grand.element -1502515546 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1035818704 -1 -DataStructures.RedBlackTree.grand.left.element -470905757 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -1801601815 -1 -DataStructures.RedBlackTree.grand.left.right -1846436036 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -511909137 -1 -DataStructures.RedBlackTree.grand.right.element -1227419517 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -264732500 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1312664548 +return +1753447031 1 -DataStructures.RedBlackTree.great.element -837375677 +return.element +760563749 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +return.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -518576549 +return.left +2008362258 1 -DataStructures.RedBlackTree.great.left.element -1502515546 +return.left.element +1632392469 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +return.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.right -511909137 +return.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.color +return.left.right +940060004 1 +return.left.color +0 1 -DataStructures.RedBlackTree.great.right -239304688 +return.right +895947612 1 -DataStructures.RedBlackTree.great.right.element -1558080258 +return.right.element +1810132623 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +return.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -467870275 -1 -DataStructures.RedBlackTree.great.right.right -1548550182 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color +return.right.left +940060004 1 +return.right.right +940060004 1 -item -1911757902 +return.right.color +0 1 -item.getClass().getName() -"DataStructures.MyInteger" +return.color +0 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -60 +32 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1911757902 +1810132623 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -62452,46 +61494,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -62500,571 +61542,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -264732500 +1753447031 1 DataStructures.RedBlackTree.current.element -1911757902 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -1911757902 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -511909137 +1753447031 1 DataStructures.RedBlackTree.parent.element -1227419517 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -1 +0 1 item -1920494563 +1810132623 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -61 -theElement -1920494563 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1920494563 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1920494563 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1920494563 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1920494563 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1920494563 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1920494563 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -61 -this -1072905931 -1 -this.element -1920494563 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -1920494563 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -1920494563 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -1920494563 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -1920494563 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -1920494563 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -1920494563 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -1920494563 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -1920494563 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -1920494563 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -1920494563 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -1920494563 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -1920494563 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -1920494563 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -62 +30 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1920494563 +1810132623 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -63073,46 +61795,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -63121,251 +61843,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1072905931 +1753447031 1 DataStructures.RedBlackTree.current.element -1920494563 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -1920494563 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -511909137 +1753447031 1 DataStructures.RedBlackTree.parent.element -1227419517 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1072905931 +895947612 1 DataStructures.RedBlackTree.parent.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -1 +0 1 item -1920494563 +1810132623 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -62 +35 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1920494563 +1810132623 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -63374,46 +62096,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -63422,94 +62144,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1072905931 +1753447031 1 DataStructures.RedBlackTree.current.element -1920494563 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -1920494563 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -511909137 +1753447031 1 DataStructures.RedBlackTree.parent.element -1227419517 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1072905931 +895947612 1 DataStructures.RedBlackTree.parent.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -63518,155 +62240,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +66233253 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -1 +0 1 item -1920494563 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -60 +36 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1920494563 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color 1 @@ -63675,46 +62397,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1920494563 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1920494563 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1920494563 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -63723,190 +62445,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1072905931 +1753447031 1 DataStructures.RedBlackTree.current.element -1920494563 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -1920494563 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -511909137 +1874154700 1 DataStructures.RedBlackTree.parent.element -1227419517 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +66233253 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1072905931 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -1920494563 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.color -0 1 -DataStructures.RedBlackTree.parent.color 1 +DataStructures.RedBlackTree.parent.color +0 1 DataStructures.RedBlackTree.grand -518576549 +510113906 1 DataStructures.RedBlackTree.grand.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +788117692 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +66233253 1 DataStructures.RedBlackTree.grand.right.right -1072905931 +1753447031 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +846492085 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.color 1 @@ -63915,107 +62637,107 @@ DataStructures.RedBlackTree.great.color 1 1 item -1920494563 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -63 +37 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1920494563 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +510113906 1 this.header.right.element -837375677 +1566723494 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +788117692 1 this.header.right.right -239304688 +1874154700 1 this.header.right.color -1 +0 1 this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1920494563 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1920494563 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1920494563 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -64024,46 +62746,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1072905931 +1753447031 1 DataStructures.RedBlackTree.current.element -1920494563 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -1920494563 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -64072,571 +62794,540 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -511909137 +1874154700 1 DataStructures.RedBlackTree.parent.element -1227419517 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -264732500 +66233253 1 DataStructures.RedBlackTree.parent.left.element -1911757902 +1622006612 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1072905931 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -1920494563 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -518576549 +510113906 1 DataStructures.RedBlackTree.grand.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1035818704 +788117692 1 DataStructures.RedBlackTree.grand.left.element -470905757 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -511909137 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1227419517 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -264732500 +66233253 1 DataStructures.RedBlackTree.grand.right.right -1072905931 +1753447031 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +846492085 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -2057282105 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -64 -theElement -2057282105 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 +parent +610984013 1 -lt.element -2057282105 +parent.element +745160567 1 -lt.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +parent.left +940060004 1 -lt.left.element -2057282105 +parent.left.element +846492085 1 -lt.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +parent.left.left +940060004 1 -lt.left.right -42247872 +parent.left.right +940060004 1 -lt.left.color +parent.left.color 1 1 -lt.right -42247872 +parent.right +510113906 1 -lt.right.element -2057282105 +parent.right.element +1566723494 1 -lt.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +parent.right.left +788117692 1 -lt.right.color +parent.right.right +1874154700 1 +parent.right.color +0 1 -lt.color +parent.color 1 1 -rt -42247872 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +38 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -2057282105 +DataStructures.RedBlackTree.nullNode.element +846492085 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -2057282105 +DataStructures.RedBlackTree.nullNode.left.element +846492085 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -2057282105 +DataStructures.RedBlackTree.nullNode.right.element +846492085 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -64 -this -106138388 1 -this.element -2057282105 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +1753447031 1 -this.left.element -2057282105 +DataStructures.RedBlackTree.current.element +760563749 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +2008362258 1 -this.left.left.element -2057282105 +DataStructures.RedBlackTree.current.left.element +1632392469 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +895947612 1 -this.left.right.element -2057282105 +DataStructures.RedBlackTree.current.right.element +1810132623 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1874154700 1 -this.right.element -2057282105 +DataStructures.RedBlackTree.parent.element +1286783232 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +66233253 1 -this.right.left.element -2057282105 +DataStructures.RedBlackTree.parent.left.element +1622006612 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +1753447031 1 -this.right.right.element -2057282105 +DataStructures.RedBlackTree.parent.right.element +760563749 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color +DataStructures.RedBlackTree.parent.right.left +2008362258 1 +DataStructures.RedBlackTree.parent.right.right +895947612 1 -theElement -2057282105 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.parent.color +0 1 -lt -42247872 +DataStructures.RedBlackTree.grand +510113906 1 -lt.element -2057282105 +DataStructures.RedBlackTree.grand.element +1566723494 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +788117692 1 -lt.left.element -2057282105 +DataStructures.RedBlackTree.grand.left.element +1393931310 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1874154700 1 -lt.right.element -2057282105 +DataStructures.RedBlackTree.grand.right.element +1286783232 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color +DataStructures.RedBlackTree.grand.right.left +66233253 1 +DataStructures.RedBlackTree.grand.right.right +1753447031 1 -lt.color +DataStructures.RedBlackTree.grand.right.color +0 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +610984013 1 -rt.element -2057282105 +DataStructures.RedBlackTree.great.element +745160567 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +940060004 1 -rt.left.element -2057282105 +DataStructures.RedBlackTree.great.left.element +846492085 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +510113906 1 -rt.right.element -2057282105 +DataStructures.RedBlackTree.great.right.element +1566723494 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.great.right.left +788117692 1 +DataStructures.RedBlackTree.great.right.right +1874154700 1 -rt.color +DataStructures.RedBlackTree.great.right.color +0 1 +DataStructures.RedBlackTree.great.color 1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -65 -this -1987411885 1 -this.header -1034442050 +k1 +510113906 1 -this.header.element -1246233263 +k1.element +1566723494 1 -this.header.element.getClass().getName() +k1.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +k1.left +788117692 1 -this.header.left.element -2057282105 +k1.left.element +1393931310 1 -this.header.left.element.getClass().getName() +k1.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +k1.left.left +940060004 1 -this.header.left.right -42247872 +k1.left.right +940060004 1 -this.header.left.color +k1.left.color 1 1 -this.header.right -1312664548 +k1.right +1874154700 1 -this.header.right.element -837375677 +k1.right.element +1286783232 1 -this.header.right.element.getClass().getName() +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color +k1.right.left +66233253 1 +k1.right.right +1753447031 1 -this.header.color +k1.right.color +0 1 +k1.color +0 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +this_invocation_nonce +38 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -64645,299 +63336,389 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -106138388 +1753447031 1 DataStructures.RedBlackTree.current.element -2057282105 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -2057282105 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -2057282105 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -467870275 +1874154700 1 DataStructures.RedBlackTree.parent.element -853552605 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +510113906 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -2057282105 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -239304688 +510113906 1 DataStructures.RedBlackTree.grand.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +788117692 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +846492085 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.right.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 -item -2057282105 +k1 +510113906 1 -item.getClass().getName() +k1.element +1566723494 +1 +k1.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left +788117692 +1 +k1.left.element +1393931310 +1 +k1.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left.left +940060004 +1 +k1.left.right +940060004 +1 +k1.left.color +1 +1 +k1.right +66233253 +1 +k1.right.element +1622006612 +1 +k1.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.right.left +940060004 +1 +k1.right.right +940060004 +1 +k1.right.color +1 +1 +k1.color +0 +1 +return +1874154700 +1 +return.element +1286783232 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +510113906 +1 +return.left.element +1566723494 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +788117692 +1 +return.left.right +66233253 +1 +return.left.color +0 +1 +return.right +1753447031 +1 +return.right.element +760563749 +1 +return.right.element.getClass().getName() "DataStructures.MyInteger" 1 +return.right.left +2008362258 +1 +return.right.right +895947612 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 this_invocation_nonce -65 +37 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -2057282105 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color -1 +0 1 this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -64946,46 +63727,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -106138388 +1753447031 1 DataStructures.RedBlackTree.current.element -2057282105 +760563749 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.element -2057282105 +1632392469 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.element -2057282105 +1810132623 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -64994,504 +63775,299 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -467870275 +1874154700 1 DataStructures.RedBlackTree.parent.element -853552605 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +510113906 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -2057282105 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -239304688 +510113906 1 DataStructures.RedBlackTree.grand.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +788117692 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +846492085 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -2057282105 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -63 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -2057282105 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 +parent +610984013 1 -DataStructures.RedBlackTree.nullNode.element -2057282105 +parent.element +745160567 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +parent.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -2057282105 +parent.left.element +846492085 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +parent.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +parent.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +parent.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +parent.right +1874154700 1 -DataStructures.RedBlackTree.nullNode.right.element -2057282105 +parent.right.element +1286783232 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color +parent.right.left +510113906 1 +parent.right.right +1753447031 1 -DataStructures.RedBlackTree.current -106138388 +parent.right.color +0 1 -DataStructures.RedBlackTree.current.element -2057282105 +parent.color 1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +return +1874154700 1 -DataStructures.RedBlackTree.current.left.element -2057282105 +return.element +1286783232 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +return.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 +return.left +510113906 1 -DataStructures.RedBlackTree.current.right.element -2057282105 +return.left.element +1566723494 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +return.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color +return.left.left +788117692 1 +return.left.right +66233253 1 -DataStructures.RedBlackTree.current.color +return.left.color 0 1 -DataStructures.RedBlackTree.parent -467870275 -1 -DataStructures.RedBlackTree.parent.element -853552605 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -106138388 +return.right +1753447031 1 -DataStructures.RedBlackTree.parent.left.element -2057282105 +return.right.element +760563749 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +return.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +return.right.left +2008362258 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +return.right.right +895947612 1 -DataStructures.RedBlackTree.parent.left.color +return.right.color 0 1 -DataStructures.RedBlackTree.parent.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.element -2057282105 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -239304688 -1 -DataStructures.RedBlackTree.grand.element -1558080258 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -467870275 -1 -DataStructures.RedBlackTree.grand.left.element -853552605 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -106138388 -1 -DataStructures.RedBlackTree.grand.left.right -42247872 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1548550182 -1 -DataStructures.RedBlackTree.grand.right.element -1887685159 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -755507289 -1 -DataStructures.RedBlackTree.grand.right.right -1651366663 -1 -DataStructures.RedBlackTree.grand.right.color +return.color 0 1 -DataStructures.RedBlackTree.grand.color -1 -1 -DataStructures.RedBlackTree.great -1312664548 -1 -DataStructures.RedBlackTree.great.element -837375677 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -518576549 -1 -DataStructures.RedBlackTree.great.left.element -1502515546 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.right -511909137 -1 -DataStructures.RedBlackTree.great.left.color -1 -1 -DataStructures.RedBlackTree.great.right -239304688 -1 -DataStructures.RedBlackTree.great.right.element -1558080258 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -467870275 -1 -DataStructures.RedBlackTree.great.right.right -1548550182 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -2057282105 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -66 +36 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -2057282105 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -65500,46 +64076,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -2057282105 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -65548,190 +64124,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -106138388 +1874154700 1 DataStructures.RedBlackTree.current.element -2057282105 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +510113906 1 DataStructures.RedBlackTree.current.left.element -2057282105 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +1753447031 1 DataStructures.RedBlackTree.current.right.element -2057282105 +760563749 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -467870275 +1874154700 1 DataStructures.RedBlackTree.parent.element -853552605 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +510113906 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.element -2057282105 +760563749 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -239304688 +510113906 1 DataStructures.RedBlackTree.grand.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +788117692 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +846492085 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.color 1 @@ -65740,7 +64316,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1456460106 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" @@ -65748,54 +64324,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -67 +39 theElement -1456460106 +846492085 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1456460106 +846492085 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1456460106 +846492085 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1456460106 +846492085 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -65804,46 +64380,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1456460106 +846492085 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1456460106 +846492085 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1456460106 +846492085 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -65854,57 +64430,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -67 +39 this -1706393036 +1096283470 1 this.element -1456460106 +846492085 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -1456460106 +846492085 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -1456460106 +846492085 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -1456460106 +846492085 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -65913,46 +64489,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -1456460106 +846492085 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -1456460106 +846492085 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -1456460106 +846492085 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -65964,52 +64540,52 @@ this.color 1 1 theElement -1456460106 +846492085 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1456460106 +846492085 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1456460106 +846492085 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1456460106 +846492085 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -66018,46 +64594,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1456460106 +846492085 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1456460106 +846492085 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1456460106 +846492085 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -66068,51 +64644,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -68 +40 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1456460106 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -66121,46 +64697,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -66169,46 +64745,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1706393036 +1096283470 1 DataStructures.RedBlackTree.current.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -66217,46 +64793,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -467870275 +895947612 1 DataStructures.RedBlackTree.parent.element -853552605 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +940060004 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1706393036 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -66265,103 +64841,103 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -239304688 +1753447031 1 DataStructures.RedBlackTree.grand.element -1558080258 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1456460106 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" @@ -66369,51 +64945,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -68 +40 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1456460106 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -66422,46 +64998,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -66470,46 +65046,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1706393036 +1096283470 1 DataStructures.RedBlackTree.current.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -66518,46 +65094,347 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -467870275 +895947612 1 DataStructures.RedBlackTree.parent.element -853552605 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +940060004 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color +1 +1 +DataStructures.RedBlackTree.parent.right +1096283470 +1 +DataStructures.RedBlackTree.parent.right.element +846492085 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color 0 1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +1753447031 +1 +DataStructures.RedBlackTree.grand.element +760563749 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +2008362258 +1 +DataStructures.RedBlackTree.grand.left.element +1632392469 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +940060004 +1 +DataStructures.RedBlackTree.grand.left.right +940060004 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +895947612 +1 +DataStructures.RedBlackTree.grand.right.element +1810132623 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +940060004 +1 +DataStructures.RedBlackTree.grand.right.right +1096283470 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +0 +1 +DataStructures.RedBlackTree.great +1874154700 +1 +DataStructures.RedBlackTree.great.element +1286783232 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +510113906 +1 +DataStructures.RedBlackTree.great.left.element +1566723494 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +788117692 +1 +DataStructures.RedBlackTree.great.left.right +66233253 +1 +DataStructures.RedBlackTree.great.left.color +0 +1 +DataStructures.RedBlackTree.great.right +1753447031 +1 +DataStructures.RedBlackTree.great.right.element +760563749 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +2008362258 +1 +DataStructures.RedBlackTree.great.right.right +895947612 +1 +DataStructures.RedBlackTree.great.right.color +0 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +846492085 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +this_invocation_nonce +35 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +846492085 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1753447031 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +846492085 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +846492085 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +846492085 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +1096283470 +1 +DataStructures.RedBlackTree.current.element +846492085 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +846492085 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +846492085 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color +0 +1 +DataStructures.RedBlackTree.parent +895947612 +1 +DataStructures.RedBlackTree.parent.element +1810132623 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.element +846492085 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +1 +1 DataStructures.RedBlackTree.parent.right -1706393036 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -66566,155 +65443,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -239304688 +1753447031 1 DataStructures.RedBlackTree.grand.element -1558080258 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1456460106 +846492085 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -66 +41 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1456460106 +846492085 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -66723,46 +65600,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -66771,46 +65648,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1706393036 +1096283470 1 DataStructures.RedBlackTree.current.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -66819,46 +65696,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -467870275 +895947612 1 DataStructures.RedBlackTree.parent.element -853552605 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +940060004 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1706393036 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -66867,155 +65744,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -239304688 +1753447031 1 DataStructures.RedBlackTree.grand.element -1558080258 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1456460106 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -69 +42 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1456460106 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -67024,46 +65901,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1456460106 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1456460106 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1456460106 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -67072,190 +65949,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1706393036 +1874154700 1 DataStructures.RedBlackTree.current.element -1456460106 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +510113906 1 DataStructures.RedBlackTree.current.left.element -1456460106 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +1753447031 1 DataStructures.RedBlackTree.current.right.element -1456460106 +760563749 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.right.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -467870275 +610984013 1 DataStructures.RedBlackTree.parent.element -853552605 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -106138388 +940060004 1 DataStructures.RedBlackTree.parent.left.element -2057282105 +152005629 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1706393036 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -1456460106 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -239304688 +610984013 1 DataStructures.RedBlackTree.grand.element -1558080258 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.element -853552605 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +510113906 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +152005629 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.color 1 @@ -67264,276 +66141,363 @@ DataStructures.RedBlackTree.great.color 1 1 item -1628095255 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -70 -theElement -1628095255 +42 +this +1644443712 1 -theElement.getClass().getName() +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt -42247872 +this.header.left +940060004 1 -lt.element -1628095255 +this.header.left.element +152005629 1 -lt.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left.left +940060004 1 -lt.left.element -1628095255 +this.header.left.right +940060004 1 -lt.left.element.getClass().getName() +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.right.left +510113906 1 -lt.left.right -42247872 +this.header.right.right +1753447031 1 -lt.left.color +this.header.right.color 1 1 -lt.right -42247872 +this.header.color 1 -lt.right.element -1628095255 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +152005629 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -lt.right.right -42247872 +DataStructures.RedBlackTree.nullNode.left.element +152005629 1 -lt.right.color +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -lt.color +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 +DataStructures.RedBlackTree.nullNode.left.color 1 -rt -42247872 1 -rt.element -1628095255 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element +152005629 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.left.element -1628095255 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +1874154700 +1 +DataStructures.RedBlackTree.current.element +1286783232 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.current.left +510113906 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.current.left.element +1566723494 1 -rt.left.color +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.current.left.left +788117692 1 -rt.right -42247872 +DataStructures.RedBlackTree.current.left.right +66233253 1 -rt.right.element -1628095255 +DataStructures.RedBlackTree.current.left.color 1 -rt.right.element.getClass().getName() +1 +DataStructures.RedBlackTree.current.right +1753447031 +1 +DataStructures.RedBlackTree.current.right.element +760563749 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.current.right.left +2008362258 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.current.right.right +895947612 1 -rt.right.color +DataStructures.RedBlackTree.current.right.color 1 1 -rt.color +DataStructures.RedBlackTree.current.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -70 -this -160320711 +DataStructures.RedBlackTree.parent +610984013 1 -this.element -1628095255 +DataStructures.RedBlackTree.parent.element +745160567 1 -this.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.left.element -1628095255 +DataStructures.RedBlackTree.parent.left.element +152005629 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.left.left.element -1628095255 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.color +1 +1 +DataStructures.RedBlackTree.parent.right +1874154700 +1 +DataStructures.RedBlackTree.parent.right.element +1286783232 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.parent.right.left +510113906 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.parent.right.right +1753447031 1 -this.left.left.color +DataStructures.RedBlackTree.parent.right.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.parent.color 1 -this.left.right.element -1628095255 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.grand +610984013 +1 +DataStructures.RedBlackTree.grand.element +745160567 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 +DataStructures.RedBlackTree.grand.left +940060004 1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.grand.left.element +152005629 1 -this.left.right.color +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -this.left.color +DataStructures.RedBlackTree.grand.left.right +940060004 1 +DataStructures.RedBlackTree.grand.left.color 1 -this.right -42247872 1 -this.right.element -1628095255 +DataStructures.RedBlackTree.grand.right +1874154700 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element +1286783232 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.grand.right.left +510113906 1 -this.right.left.element -1628095255 +DataStructures.RedBlackTree.grand.right.right +1753447031 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +610984013 +1 +DataStructures.RedBlackTree.great.element +745160567 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.great.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.great.left.element +152005629 1 -this.right.left.color +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.great.left.left +940060004 1 -this.right.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -this.right.right.element -1628095255 +DataStructures.RedBlackTree.great.left.color 1 -this.right.right.element.getClass().getName() +1 +DataStructures.RedBlackTree.great.right +1874154700 +1 +DataStructures.RedBlackTree.great.right.element +1286783232 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +510113906 1 -this.right.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1753447031 1 -this.right.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -this.right.color +DataStructures.RedBlackTree.great.color 1 1 -this.color +item +152005629 1 +item.getClass().getName() +"DataStructures.MyInteger" 1 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +43 theElement -1628095255 +152005629 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1628095255 +152005629 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1628095255 +152005629 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1628095255 +152005629 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -67542,46 +66506,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1628095255 +152005629 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1628095255 +152005629 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1628095255 +152005629 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -67590,354 +66554,267 @@ rt.color 1 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -71 +43 this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1628095255 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" +75457651 1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 +this.element +152005629 1 -this.header.right.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.nullNode.element -1628095255 +this.left.element +152005629 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -1628095255 +this.left.left.element +152005629 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +this.left.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +this.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -1628095255 +this.left.right.element +152005629 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.color +this.left.right.right +940060004 1 +this.left.right.color 1 -DataStructures.RedBlackTree.current -160320711 1 -DataStructures.RedBlackTree.current.element -1628095255 +this.left.color 1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.right +940060004 1 -DataStructures.RedBlackTree.current.left.element -1628095255 +this.right.element +152005629 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 +this.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.element -1628095255 +this.right.left.element +152005629 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color +this.right.left.left +940060004 1 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.current.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.parent -755507289 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.element -1904504032 +this.right.right.element +152005629 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -160320711 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1628095255 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" +this.right.right.color 1 -DataStructures.RedBlackTree.parent.left.left -42247872 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.color 1 -DataStructures.RedBlackTree.parent.left.color 1 +this.color 1 -DataStructures.RedBlackTree.parent.right -42247872 1 -DataStructures.RedBlackTree.parent.right.element -1628095255 +theElement +152005629 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1548550182 +lt +940060004 1 -DataStructures.RedBlackTree.grand.element -1887685159 +lt.element +152005629 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -755507289 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1904504032 +lt.left.element +152005629 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -160320711 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -42247872 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.color 1 1 -DataStructures.RedBlackTree.grand.right -1651366663 +lt.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1128590881 +lt.right.element +152005629 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -567754741 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color -0 +lt.color 1 -DataStructures.RedBlackTree.great -239304688 1 -DataStructures.RedBlackTree.great.element -1558080258 +rt +940060004 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element +152005629 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -467870275 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -853552605 +rt.left.element +152005629 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -106138388 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -1706393036 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -1548550182 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1887685159 +rt.right.element +152005629 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -755507289 -1 -DataStructures.RedBlackTree.great.right.right -1651366663 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.color -0 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -1628095255 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -71 +44 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1628095255 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -67946,46 +66823,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -67994,251 +66871,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -160320711 +75457651 1 DataStructures.RedBlackTree.current.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -42247872 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1628095255 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -69 +45 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1628095255 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -68247,46 +67124,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -68295,46 +67172,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -160320711 +75457651 1 DataStructures.RedBlackTree.current.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -68343,142 +67220,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -42247872 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color 0 @@ -68487,107 +67364,104 @@ DataStructures.RedBlackTree.great.color 1 1 item -1628095255 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER -this_invocation_nonce -72 -this -1987411885 -1 -this.header -1034442050 +parent +1753447031 1 -this.header.element -1246233263 +parent.element +760563749 1 -this.header.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +parent.left +2008362258 1 -this.header.left.element -1628095255 +parent.left.element +1632392469 1 -this.header.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +parent.left.left +940060004 1 -this.header.left.right -42247872 +parent.left.right +940060004 1 -this.header.left.color +parent.left.color 1 1 -this.header.right -1312664548 +parent.right +895947612 1 -this.header.right.element -837375677 +parent.right.element +1810132623 1 -this.header.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -239304688 +parent.right.left +940060004 1 -this.header.right.color +parent.right.right +1096283470 1 +parent.right.color +0 1 -this.header.color +parent.color 1 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +46 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -68596,46 +67470,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -160320711 +75457651 1 DataStructures.RedBlackTree.current.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -68644,142 +67518,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +152005629 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -42247872 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1628095255 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +895947612 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color 0 @@ -68787,380 +67661,442 @@ DataStructures.RedBlackTree.great.right.color DataStructures.RedBlackTree.great.color 1 1 -item -1565696439 +k1 +895947612 1 -item.getClass().getName() +k1.element +1810132623 +1 +k1.element.getClass().getName() "DataStructures.MyInteger" 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -73 -theElement -1565696439 +k1.left +940060004 1 -theElement.getClass().getName() +k1.left.element +152005629 +1 +k1.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt -42247872 +k1.left.left +940060004 1 -lt.element -1565696439 +k1.left.right +940060004 1 -lt.element.getClass().getName() -"DataStructures.MyInteger" +k1.left.color 1 -lt.left -42247872 1 -lt.left.element -1565696439 +k1.right +1096283470 1 -lt.left.element.getClass().getName() +k1.right.element +846492085 +1 +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +k1.right.left +940060004 1 -lt.left.right -42247872 +k1.right.right +75457651 1 -lt.left.color +k1.right.color +0 1 +k1.color +0 1 -lt.right -42247872 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +this_invocation_nonce +46 +DataStructures.RedBlackTree.nullNode +940060004 1 -lt.right.element -1565696439 +DataStructures.RedBlackTree.nullNode.element +152005629 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -lt.right.right -42247872 +DataStructures.RedBlackTree.nullNode.left.element +152005629 1 -lt.right.color +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -lt.color +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 +DataStructures.RedBlackTree.nullNode.left.color 1 -rt -42247872 1 -rt.element -1565696439 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.element.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.nullNode.right.element +152005629 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" 1 -rt.left.element -1565696439 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.right.color 1 -rt.left.right -42247872 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.current +75457651 1 -rt.right.element -1565696439 +DataStructures.RedBlackTree.current.element +152005629 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.current.left.element +152005629 1 -rt.right.color +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.current.left.left +940060004 1 -rt.color +DataStructures.RedBlackTree.current.left.right +940060004 1 +DataStructures.RedBlackTree.current.left.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -73 -this -1542923582 1 -this.element -1565696439 +DataStructures.RedBlackTree.current.right +940060004 1 -this.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element +152005629 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.element -1565696439 +DataStructures.RedBlackTree.current.right.right +940060004 1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.current.right.color 1 -this.left.left -42247872 1 -this.left.left.element -1565696439 +DataStructures.RedBlackTree.current.color +0 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.parent +1096283470 +1 +DataStructures.RedBlackTree.parent.element +846492085 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.parent.left +895947612 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.parent.left.element +1810132623 1 -this.left.left.color +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.left.right.element -1565696439 +DataStructures.RedBlackTree.parent.left.color +0 1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.parent.right +75457651 1 -this.left.right.left -42247872 +DataStructures.RedBlackTree.parent.right.element +152005629 1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" 1 -this.left.right.color +DataStructures.RedBlackTree.parent.right.left +940060004 1 +DataStructures.RedBlackTree.parent.right.right +940060004 1 -this.left.color +DataStructures.RedBlackTree.parent.right.color +0 1 +DataStructures.RedBlackTree.parent.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.grand +895947612 1 -this.right.element -1565696439 +DataStructures.RedBlackTree.grand.element +1810132623 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.grand.left +940060004 1 -this.right.left.element -1565696439 +DataStructures.RedBlackTree.grand.left.element +152005629 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.grand.right +940060004 1 -this.right.right.element -1565696439 +DataStructures.RedBlackTree.grand.right.element +152005629 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -this.right.right.right -42247872 +DataStructures.RedBlackTree.grand.right.right +940060004 1 -this.right.right.color +DataStructures.RedBlackTree.grand.right.color 1 1 -this.right.color +DataStructures.RedBlackTree.grand.color +0 1 +DataStructures.RedBlackTree.great +1753447031 1 -this.color +DataStructures.RedBlackTree.great.element +760563749 1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" 1 -theElement -1565696439 +DataStructures.RedBlackTree.great.left +2008362258 1 -theElement.getClass().getName() +DataStructures.RedBlackTree.great.left.element +1632392469 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -lt.element -1565696439 +DataStructures.RedBlackTree.great.left.right +940060004 1 -lt.element.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.great.left.color 1 -lt.left -42247872 1 -lt.left.element -1565696439 +DataStructures.RedBlackTree.great.right +895947612 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element +1810132623 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.great.right.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.great.right.right +940060004 1 -lt.left.color +DataStructures.RedBlackTree.great.right.color +0 +1 +DataStructures.RedBlackTree.great.color 1 1 -lt.right -42247872 +k1 +895947612 1 -lt.right.element -1565696439 +k1.element +1810132623 1 -lt.right.element.getClass().getName() +k1.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +k1.left +940060004 1 -lt.right.right -42247872 +k1.left.element +152005629 1 -lt.right.color +k1.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left.left +940060004 1 +k1.left.right +940060004 1 -lt.color +k1.left.color 1 1 -rt -42247872 +k1.right +940060004 1 -rt.element -1565696439 +k1.right.element +152005629 1 -rt.element.getClass().getName() +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +k1.right.left +940060004 1 -rt.left.element -1565696439 +k1.right.right +940060004 1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" +k1.right.color 1 -rt.left.left -42247872 1 -rt.left.right -42247872 +k1.color +0 1 -rt.left.color +return +1096283470 1 +return.element +846492085 1 -rt.right -42247872 +return.element.getClass().getName() +"DataStructures.MyInteger" 1 -rt.right.element -1565696439 +return.left +895947612 1 -rt.right.element.getClass().getName() +return.left.element +1810132623 +1 +return.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +return.left.left +940060004 1 -rt.right.right -42247872 +return.left.right +940060004 1 -rt.right.color +return.left.color +0 1 +return.right +75457651 1 -rt.color +return.right.element +152005629 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" 1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 this_invocation_nonce -74 +45 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1565696439 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -69169,46 +68105,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -69217,142 +68153,142 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1542923582 +75457651 1 DataStructures.RedBlackTree.current.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +895947612 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1542923582 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -69361,46 +68297,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color 0 @@ -69409,59 +68345,155 @@ DataStructures.RedBlackTree.great.color 1 1 item -1565696439 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" 1 +parent +1753447031 +1 +parent.element +760563749 +1 +parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left +2008362258 +1 +parent.left.element +1632392469 +1 +parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left.left +940060004 +1 +parent.left.right +940060004 +1 +parent.left.color +1 +1 +parent.right +1096283470 +1 +parent.right.element +846492085 +1 +parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.right.left +895947612 +1 +parent.right.right +75457651 +1 +parent.right.color +0 +1 +parent.color +1 +1 +return +1096283470 +1 +return.element +846492085 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +895947612 +1 +return.left.element +1810132623 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +940060004 +1 +return.left.right +940060004 +1 +return.left.color +0 +1 +return.right +75457651 +1 +return.right.element +152005629 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.right.left +940060004 +1 +return.right.right +940060004 +1 +return.right.color +0 +1 +return.color +0 +1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -74 +44 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1565696439 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -69470,46 +68502,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -69518,94 +68550,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1542923582 +1096283470 1 DataStructures.RedBlackTree.current.element -1565696439 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.element -1565696439 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +895947612 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1542923582 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -69614,46 +68646,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -69662,55 +68694,55 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1565696439 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" @@ -69718,51 +68750,51 @@ item.getClass().getName() DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -72 +41 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1565696439 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -69771,46 +68803,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -69819,94 +68851,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1542923582 +1096283470 1 DataStructures.RedBlackTree.current.element -1565696439 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.element -1565696439 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +895947612 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1542923582 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -69915,46 +68947,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -69963,55 +68995,55 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1565696439 +152005629 1 item.getClass().getName() "DataStructures.MyInteger" @@ -70019,51 +69051,51 @@ item.getClass().getName() DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -75 +47 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1565696439 +152005629 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -70072,46 +69104,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -70120,94 +69152,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1542923582 +1096283470 1 DataStructures.RedBlackTree.current.element -1565696439 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.element -1565696439 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -160320711 +895947612 1 DataStructures.RedBlackTree.parent.left.element -1628095255 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1542923582 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -70216,46 +69248,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +895947612 1 DataStructures.RedBlackTree.grand.element -1887685159 +1810132623 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -70264,427 +69296,408 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1051605149 +362239120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -76 -theElement -1051605149 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +48 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -1051605149 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -1051605149 +this.header.left.element +362239120 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -1051605149 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1753447031 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1051605149 +DataStructures.RedBlackTree.nullNode.element +362239120 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1051605149 +DataStructures.RedBlackTree.nullNode.left.element +362239120 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1051605149 +DataStructures.RedBlackTree.nullNode.right.element +362239120 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -76 -this -537324433 -1 -this.element -1051605149 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +1096283470 1 -this.left.element -1051605149 +DataStructures.RedBlackTree.current.element +846492085 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +895947612 1 -this.left.left.element -1051605149 +DataStructures.RedBlackTree.current.left.element +1810132623 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.right +940060004 1 +DataStructures.RedBlackTree.current.left.color +0 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +75457651 1 -this.left.right.element -1051605149 +DataStructures.RedBlackTree.current.right.element +152005629 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color +0 1 -this.left.color +DataStructures.RedBlackTree.current.color 1 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1753447031 1 -this.right.element -1051605149 +DataStructures.RedBlackTree.parent.element +760563749 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +2008362258 1 -this.right.left.element -1051605149 +DataStructures.RedBlackTree.parent.left.element +1632392469 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +1096283470 1 -this.right.right.element -1051605149 +DataStructures.RedBlackTree.parent.right.element +846492085 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color +DataStructures.RedBlackTree.parent.right.left +895947612 1 +DataStructures.RedBlackTree.parent.right.right +75457651 1 -this.color +DataStructures.RedBlackTree.parent.right.color 1 1 -theElement -1051605149 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +1874154700 1 -lt.element -1051605149 +DataStructures.RedBlackTree.grand.element +1286783232 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +510113906 1 -lt.left.element -1051605149 +DataStructures.RedBlackTree.grand.left.element +1566723494 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +788117692 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +66233253 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1753447031 1 -lt.right.element -1051605149 +DataStructures.RedBlackTree.grand.right.element +760563749 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +DataStructures.RedBlackTree.grand.right.left +2008362258 1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.right +1096283470 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.color 1 1 -lt.color +DataStructures.RedBlackTree.grand.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.great +610984013 1 -rt.element -1051605149 +DataStructures.RedBlackTree.great.element +745160567 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +940060004 1 -rt.left.element -1051605149 +DataStructures.RedBlackTree.great.left.element +362239120 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +1874154700 1 -rt.right.element -1051605149 +DataStructures.RedBlackTree.great.right.element +1286783232 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +510113906 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1753447031 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color +1 1 +item +362239120 +1 +item.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -77 +48 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1051605149 +362239120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -70693,46 +69706,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -70741,94 +69754,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -537324433 +1096283470 1 DataStructures.RedBlackTree.current.element -1051605149 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.element -1051605149 +1810132623 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.element -1051605149 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -1651366663 +1753447031 1 DataStructures.RedBlackTree.parent.element -1128590881 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -537324433 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1051605149 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -567754741 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -440851213 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.parent.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -70837,456 +69850,475 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +1874154700 1 DataStructures.RedBlackTree.grand.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +510113906 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +788117692 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +66233253 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.grand.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +362239120 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +510113906 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1051605149 +362239120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -77 -this -1987411885 +49 +theElement +362239120 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +362239120 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -1051605149 +lt.left.element +362239120 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +362239120 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -239304688 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -1051605149 +rt.element +362239120 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -1051605149 +rt.left.element +362239120 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -1051605149 +rt.right.element +362239120 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -537324433 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +49 +this +1796488937 1 -DataStructures.RedBlackTree.current.element -1051605149 +this.element +362239120 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -1051605149 +this.left.element +362239120 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +362239120 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -1051605149 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +362239120 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -1651366663 1 -DataStructures.RedBlackTree.parent.element -1128590881 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +362239120 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -537324433 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1051605149 +this.right.left.element +362239120 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color -0 +this.right.left.color 1 -DataStructures.RedBlackTree.parent.right -567754741 1 -DataStructures.RedBlackTree.parent.right.element -440851213 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element +362239120 +1 +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color 1 +this.right.color 1 -DataStructures.RedBlackTree.grand -1548550182 1 -DataStructures.RedBlackTree.grand.element -1887685159 +this.color 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +1 +theElement +362239120 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -755507289 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1904504032 +lt.element +362239120 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -160320711 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -1542923582 +lt.left.element +362239120 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -1651366663 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1128590881 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +362239120 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -537324433 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -567754741 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color -0 +lt.color 1 -DataStructures.RedBlackTree.great -239304688 1 -DataStructures.RedBlackTree.great.element -1558080258 +rt +940060004 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element +362239120 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -467870275 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -853552605 +rt.left.element +362239120 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -106138388 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -1706393036 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -1548550182 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1887685159 +rt.right.element +362239120 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -755507289 -1 -DataStructures.RedBlackTree.great.right.right -1651366663 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.color -0 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -1051605149 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -75 +50 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1051605149 +362239120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -71295,46 +70327,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -71343,142 +70375,142 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -537324433 +1796488937 1 DataStructures.RedBlackTree.current.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1651366663 +75457651 1 DataStructures.RedBlackTree.parent.element -1128590881 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -567754741 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -440851213 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +1096283470 1 DataStructures.RedBlackTree.grand.element -1887685159 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -71487,46 +70519,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color 0 @@ -71535,59 +70567,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1051605149 +362239120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -78 +50 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1051605149 +362239120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -71596,46 +70628,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1051605149 +362239120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -71644,46 +70676,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -537324433 +1796488937 1 DataStructures.RedBlackTree.current.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -71692,46 +70724,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1651366663 +75457651 1 DataStructures.RedBlackTree.parent.element -1128590881 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -567754741 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -440851213 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -71740,46 +70772,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +1096283470 1 DataStructures.RedBlackTree.grand.element -1887685159 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -755507289 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1904504032 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -71788,46 +70820,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1753447031 1 DataStructures.RedBlackTree.great.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.left.element -853552605 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -755507289 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color 0 @@ -71836,59 +70868,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -643009796 +362239120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -79 +47 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +362239120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -71897,46 +70929,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +362239120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +362239120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +362239120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -71945,251 +70977,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +1796488937 1 DataStructures.RedBlackTree.current.element -1128590881 +362239120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.element -440851213 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -1548550182 +75457651 1 DataStructures.RedBlackTree.parent.element -1887685159 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1904504032 +362239120 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1651366663 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -239304688 +1096283470 1 DataStructures.RedBlackTree.grand.element -1558080258 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +895947612 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1796488937 1 DataStructures.RedBlackTree.grand.right.color -0 1 -DataStructures.RedBlackTree.grand.color 1 +DataStructures.RedBlackTree.grand.color +0 1 DataStructures.RedBlackTree.great -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +895947612 1 DataStructures.RedBlackTree.great.right.right -1548550182 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -643009796 +362239120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -80 +51 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +362239120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -239304688 +1753447031 1 this.header.right.color 1 @@ -72198,46 +71230,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +362239120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +362239120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +362239120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -72246,46 +71278,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +1796488937 1 DataStructures.RedBlackTree.current.element -1128590881 +362239120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.left.element -1051605149 +362239120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.element -440851213 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -72294,142 +71326,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1548550182 +75457651 1 DataStructures.RedBlackTree.parent.element -1887685159 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1904504032 +362239120 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -160320711 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1542923582 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1651366663 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -239304688 +1096283470 1 DataStructures.RedBlackTree.grand.element -1558080258 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +895947612 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -755507289 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1796488937 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +895947612 1 DataStructures.RedBlackTree.great.right.right -1548550182 +75457651 1 DataStructures.RedBlackTree.great.right.color 0 @@ -72438,396 +71470,427 @@ DataStructures.RedBlackTree.great.color 1 1 item -643009796 +423031029 1 item.getClass().getName() "DataStructures.MyInteger" 1 -parent -1312664548 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +52 +theElement +423031029 1 -parent.element -837375677 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -parent.element.getClass().getName() +lt +940060004 +1 +lt.element +423031029 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left -518576549 +lt.left +940060004 1 -parent.left.element -1502515546 +lt.left.element +423031029 1 -parent.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left.left -1035818704 +lt.left.left +940060004 1 -parent.left.right -511909137 +lt.left.right +940060004 1 -parent.left.color +lt.left.color 1 1 -parent.right -239304688 +lt.right +940060004 1 -parent.right.element -1558080258 +lt.right.element +423031029 1 -parent.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.right.left -467870275 +lt.right.left +940060004 1 -parent.right.right -1548550182 +lt.right.right +940060004 1 -parent.right.color -0 +lt.right.color 1 -parent.color 1 +lt.color 1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -81 -DataStructures.RedBlackTree.nullNode -42247872 1 -DataStructures.RedBlackTree.nullNode.element -643009796 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element +423031029 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -643009796 +rt.left.element +423031029 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -643009796 +rt.right.element +423031029 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -1651366663 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +52 +this +1712669532 1 -DataStructures.RedBlackTree.current.element -1128590881 +this.element +423031029 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -537324433 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -1051605149 +this.left.element +423031029 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +423031029 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -567754741 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -440851213 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +423031029 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -1548550182 1 -DataStructures.RedBlackTree.parent.element -1887685159 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +423031029 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -755507289 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1904504032 +this.right.left.element +423031029 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -160320711 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -1542923582 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.parent.right -1651366663 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element -1128590881 +this.right.right.element +423031029 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -537324433 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -567754741 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color -0 1 -DataStructures.RedBlackTree.grand -239304688 +this.right.color 1 -DataStructures.RedBlackTree.grand.element -1558080258 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +this.color +1 +1 +theElement +423031029 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -467870275 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -853552605 +lt.element +423031029 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -106138388 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -1706393036 +lt.left.element +423031029 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -1548550182 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1887685159 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +423031029 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -755507289 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -1651366663 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color -0 +lt.right.color 1 -DataStructures.RedBlackTree.grand.color -0 1 -DataStructures.RedBlackTree.great -1312664548 +lt.color 1 -DataStructures.RedBlackTree.great.element -837375677 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt +940060004 +1 +rt.element +423031029 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -518576549 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1502515546 +rt.left.element +423031029 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -1035818704 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -511909137 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -239304688 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1558080258 +rt.right.element +423031029 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -467870275 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.right -1548550182 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.right.color -0 +rt.right.color 1 -DataStructures.RedBlackTree.great.color 1 +rt.color 1 -k1 -239304688 1 -k1.element -1558080258 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +this_invocation_nonce +53 +this +1644443712 1 -k1.element.getClass().getName() +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left -467870275 +this.header.left +940060004 1 -k1.left.element -853552605 +this.header.left.element +423031029 1 -k1.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.left.left -106138388 +this.header.left.left +940060004 1 -k1.left.right -1706393036 +this.header.left.right +940060004 1 -k1.left.color +this.header.left.color 1 1 -k1.right -1548550182 +this.header.right +1874154700 1 -k1.right.element -1887685159 +this.header.right.element +1286783232 1 -k1.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -k1.right.left -755507289 +this.header.right.left +510113906 1 -k1.right.right -1651366663 +this.header.right.right +1753447031 1 -k1.right.color -0 +this.header.right.color +1 +1 +this.header.color 1 -k1.color -0 1 - -DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 -this_invocation_nonce -81 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -72836,341 +71899,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +1712669532 1 DataStructures.RedBlackTree.current.element -1128590881 +423031029 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.left.element -1051605149 +423031029 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.element -440851213 +423031029 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1548550182 +788117692 1 DataStructures.RedBlackTree.parent.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -239304688 +1712669532 1 DataStructures.RedBlackTree.parent.left.element -1558080258 +423031029 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +423031029 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -239304688 +510113906 1 DataStructures.RedBlackTree.grand.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +788117692 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -239304688 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1558080258 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -467870275 +2008362258 1 DataStructures.RedBlackTree.great.right.right -755507289 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -k1 -239304688 -1 -k1.element -1558080258 -1 -k1.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left -467870275 -1 -k1.left.element -853552605 -1 -k1.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.left.left -106138388 -1 -k1.left.right -1706393036 -1 -k1.left.color -1 -1 -k1.right -755507289 -1 -k1.right.element -1904504032 -1 -k1.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -k1.right.left -160320711 -1 -k1.right.right -1542923582 -1 -k1.right.color -1 -1 -k1.color -0 -1 -return -1548550182 1 -return.element -1887685159 -1 -return.element.getClass().getName() -"DataStructures.MyInteger" -1 -return.left -239304688 -1 -return.left.element -1558080258 -1 -return.left.element.getClass().getName() -"DataStructures.MyInteger" 1 -return.left.left -467870275 -1 -return.left.right -755507289 -1 -return.left.color -0 +DataStructures.RedBlackTree.great.color 1 -return.right -1651366663 1 -return.right.element -1128590881 +item +423031029 1 -return.right.element.getClass().getName() +item.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -537324433 -1 -return.right.right -567754741 -1 -return.right.color -0 -1 -return.color -0 -1 -DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -80 +53 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +423031029 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -73179,46 +72152,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -73227,46 +72200,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1651366663 +1712669532 1 DataStructures.RedBlackTree.current.element -1128590881 +423031029 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.left.element -1051605149 +423031029 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.element -440851213 +423031029 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -73275,299 +72248,504 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1548550182 +788117692 1 DataStructures.RedBlackTree.parent.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -239304688 +1712669532 1 DataStructures.RedBlackTree.parent.left.element -1558080258 +423031029 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +423031029 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -239304688 +510113906 1 DataStructures.RedBlackTree.grand.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +788117692 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1887685159 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -643009796 +423031029 1 item.getClass().getName() "DataStructures.MyInteger" 1 -parent -1312664548 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +this_invocation_nonce +51 +this +1644443712 1 -parent.element -837375677 +this.header +610984013 1 -parent.element.getClass().getName() +this.header.element +745160567 +1 +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left -518576549 +this.header.left +940060004 1 -parent.left.element -1502515546 +this.header.left.element +423031029 1 -parent.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.left.left -1035818704 +this.header.left.left +940060004 1 -parent.left.right -511909137 +this.header.left.right +940060004 1 -parent.left.color +this.header.left.color 1 1 -parent.right -1548550182 +this.header.right +1874154700 1 -parent.right.element -1887685159 +this.header.right.element +1286783232 1 -parent.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -parent.right.left -239304688 +this.header.right.left +510113906 1 -parent.right.right -1651366663 +this.header.right.right +1753447031 1 -parent.right.color -0 +this.header.right.color 1 -parent.color 1 +this.header.color 1 -return -1548550182 1 -return.element -1887685159 +DataStructures.RedBlackTree.nullNode +940060004 1 -return.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element +423031029 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left -239304688 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -return.left.element -1558080258 +DataStructures.RedBlackTree.nullNode.left.element +423031029 1 -return.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -return.left.left -467870275 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -return.left.right -755507289 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -return.left.color -0 +DataStructures.RedBlackTree.nullNode.left.color 1 -return.right -1651366663 1 -return.right.element -1128590881 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -return.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element +423031029 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -return.right.left -537324433 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -return.right.right -567754741 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -return.right.color +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +1712669532 +1 +DataStructures.RedBlackTree.current.element +423031029 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +423031029 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +423031029 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color 0 1 -return.color +DataStructures.RedBlackTree.parent +788117692 +1 +DataStructures.RedBlackTree.parent.element +1393931310 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +1712669532 +1 +DataStructures.RedBlackTree.parent.left.element +423031029 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color 0 1 +DataStructures.RedBlackTree.parent.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.element +423031029 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +1 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +510113906 +1 +DataStructures.RedBlackTree.grand.element +1566723494 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +788117692 +1 +DataStructures.RedBlackTree.grand.left.element +1393931310 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +1712669532 +1 +DataStructures.RedBlackTree.grand.left.right +940060004 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +66233253 +1 +DataStructures.RedBlackTree.grand.right.element +1622006612 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +940060004 +1 +DataStructures.RedBlackTree.grand.right.right +940060004 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +1874154700 +1 +DataStructures.RedBlackTree.great.element +1286783232 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +510113906 +1 +DataStructures.RedBlackTree.great.left.element +1566723494 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +788117692 +1 +DataStructures.RedBlackTree.great.left.right +66233253 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +1753447031 +1 +DataStructures.RedBlackTree.great.right.element +760563749 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +2008362258 +1 +DataStructures.RedBlackTree.great.right.right +1096283470 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +423031029 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -79 +54 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +423031029 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -73576,46 +72754,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +423031029 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -73624,190 +72802,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +1712669532 1 DataStructures.RedBlackTree.current.element -1887685159 +423031029 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -239304688 +940060004 1 DataStructures.RedBlackTree.current.left.element -1558080258 +423031029 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +423031029 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -1548550182 +788117692 1 DataStructures.RedBlackTree.parent.element -1887685159 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -239304688 +1712669532 1 DataStructures.RedBlackTree.parent.left.element -1558080258 +423031029 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +423031029 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -239304688 +510113906 1 DataStructures.RedBlackTree.grand.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -467870275 +788117692 1 DataStructures.RedBlackTree.grand.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -755507289 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -160320711 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1542923582 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1887685159 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -73816,7 +72994,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -643009796 +1225373914 1 item.getClass().getName() "DataStructures.MyInteger" @@ -73824,54 +73002,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -82 +55 theElement -643009796 +1225373914 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -643009796 +1225373914 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -643009796 +1225373914 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -643009796 +1225373914 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -73880,46 +73058,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -643009796 +1225373914 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -643009796 +1225373914 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -643009796 +1225373914 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -73930,57 +73108,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -82 +55 this -927929668 +60830820 1 this.element -643009796 +1225373914 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -643009796 +1225373914 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -643009796 +1225373914 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -643009796 +1225373914 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -73989,46 +73167,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -643009796 +1225373914 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -643009796 +1225373914 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -643009796 +1225373914 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -74040,52 +73218,52 @@ this.color 1 1 theElement -643009796 +1225373914 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -643009796 +1225373914 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -643009796 +1225373914 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -643009796 +1225373914 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -74094,46 +73272,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -643009796 +1225373914 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -643009796 +1225373914 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -643009796 +1225373914 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -74144,51 +73322,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -83 +56 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +1225373914 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -74197,46 +73375,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -74245,46 +73423,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -927929668 +60830820 1 DataStructures.RedBlackTree.current.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -74293,46 +73471,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -567754741 +788117692 1 DataStructures.RedBlackTree.parent.element -440851213 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -927929668 +1712669532 1 DataStructures.RedBlackTree.parent.left.element -643009796 +423031029 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -42247872 +60830820 1 DataStructures.RedBlackTree.parent.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -74341,103 +73519,103 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +510113906 1 DataStructures.RedBlackTree.grand.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +66233253 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -643009796 +1225373914 1 item.getClass().getName() "DataStructures.MyInteger" @@ -74445,51 +73623,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -83 +56 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +1225373914 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -74498,46 +73676,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -74546,46 +73724,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -927929668 +60830820 1 DataStructures.RedBlackTree.current.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -74594,203 +73772,504 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -567754741 +788117692 1 DataStructures.RedBlackTree.parent.element -440851213 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -927929668 +1712669532 1 DataStructures.RedBlackTree.parent.left.element -643009796 +423031029 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -42247872 +60830820 1 DataStructures.RedBlackTree.parent.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color +0 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +510113906 +1 +DataStructures.RedBlackTree.grand.element +1566723494 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +788117692 +1 +DataStructures.RedBlackTree.grand.left.element +1393931310 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +1712669532 +1 +DataStructures.RedBlackTree.grand.left.right +60830820 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +66233253 +1 +DataStructures.RedBlackTree.grand.right.element +1622006612 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +940060004 +1 +DataStructures.RedBlackTree.grand.right.right +940060004 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +1874154700 +1 +DataStructures.RedBlackTree.great.element +1286783232 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +510113906 +1 +DataStructures.RedBlackTree.great.left.element +1566723494 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +788117692 +1 +DataStructures.RedBlackTree.great.left.right +66233253 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +1753447031 +1 +DataStructures.RedBlackTree.great.right.element +760563749 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +2008362258 +1 +DataStructures.RedBlackTree.great.right.right +1096283470 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +1225373914 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +this_invocation_nonce +54 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +1225373914 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color 1 1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1753447031 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +1225373914 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +1225373914 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +1225373914 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +60830820 +1 +DataStructures.RedBlackTree.current.element +1225373914 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +1225373914 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +1225373914 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color +0 +1 +DataStructures.RedBlackTree.parent +788117692 +1 +DataStructures.RedBlackTree.parent.element +1393931310 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +1712669532 +1 +DataStructures.RedBlackTree.parent.left.element +423031029 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +0 +1 +DataStructures.RedBlackTree.parent.right +60830820 +1 +DataStructures.RedBlackTree.parent.right.element +1225373914 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +0 +1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +510113906 1 DataStructures.RedBlackTree.grand.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +66233253 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -643009796 +1225373914 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -78 +57 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -643009796 +1225373914 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -74799,46 +74278,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -74847,46 +74326,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -927929668 +60830820 1 DataStructures.RedBlackTree.current.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -74895,504 +74374,523 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -567754741 +788117692 1 DataStructures.RedBlackTree.parent.element -440851213 +1393931310 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -927929668 +1712669532 1 DataStructures.RedBlackTree.parent.left.element -643009796 +423031029 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -42247872 +60830820 1 DataStructures.RedBlackTree.parent.right.element -643009796 +1225373914 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +510113906 1 DataStructures.RedBlackTree.grand.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +66233253 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -643009796 +759156157 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -84 -this -1987411885 +58 +theElement +759156157 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +759156157 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -643009796 +lt.left.element +759156157 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +759156157 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -1548550182 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -643009796 +rt.element +759156157 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -643009796 +rt.left.element +759156157 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -643009796 +rt.right.element +759156157 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -927929668 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +58 +this +1635546341 1 -DataStructures.RedBlackTree.current.element -643009796 +this.element +759156157 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -643009796 +this.left.element +759156157 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +759156157 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -643009796 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +759156157 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -567754741 1 -DataStructures.RedBlackTree.parent.element -440851213 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +759156157 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -927929668 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -643009796 +this.right.left.element +759156157 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color -0 +this.right.left.color 1 -DataStructures.RedBlackTree.parent.right -42247872 1 -DataStructures.RedBlackTree.parent.right.element -643009796 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element +759156157 +1 +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color +this.right.right.color 1 1 -DataStructures.RedBlackTree.parent.color +this.right.color 1 1 -DataStructures.RedBlackTree.grand -1651366663 +this.color 1 -DataStructures.RedBlackTree.grand.element -1128590881 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +theElement +759156157 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -537324433 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1051605149 +lt.element +759156157 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -42247872 +lt.left.element +759156157 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -567754741 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -440851213 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +759156157 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -927929668 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -42247872 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color -0 +lt.color 1 -DataStructures.RedBlackTree.great -1548550182 1 -DataStructures.RedBlackTree.great.element -1887685159 +rt +940060004 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element +759156157 +1 +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -239304688 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1558080258 +rt.left.element +759156157 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -467870275 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -755507289 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color -0 +rt.left.color 1 -DataStructures.RedBlackTree.great.right -1651366663 1 -DataStructures.RedBlackTree.great.right.element -1128590881 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" +rt.right.element +759156157 1 -DataStructures.RedBlackTree.great.right.left -537324433 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.right -567754741 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.color -0 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -687685562 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -85 +59 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -687685562 +759156157 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -75401,46 +74899,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -75449,94 +74947,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +1635546341 1 DataStructures.RedBlackTree.current.element -1887685159 +759156157 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -239304688 +940060004 1 DataStructures.RedBlackTree.current.left.element -1558080258 +759156157 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +759156157 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1312664548 +66233253 1 DataStructures.RedBlackTree.parent.element -837375677 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -518576549 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -1502515546 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.parent.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1548550182 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +759156157 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -75545,46 +75043,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +510113906 1 DataStructures.RedBlackTree.grand.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.element -687685562 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +66233253 1 DataStructures.RedBlackTree.grand.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -75593,46 +75091,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +1874154700 1 DataStructures.RedBlackTree.great.element -1246233263 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +510113906 1 DataStructures.RedBlackTree.great.left.element -687685562 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.right.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -75641,7 +75139,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -687685562 +759156157 1 item.getClass().getName() "DataStructures.MyInteger" @@ -75649,51 +75147,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -85 +59 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -687685562 +759156157 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -75702,46 +75200,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -75750,46 +75248,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1548550182 +1635546341 1 DataStructures.RedBlackTree.current.element -1887685159 +759156157 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -239304688 +940060004 1 DataStructures.RedBlackTree.current.left.element -1558080258 +759156157 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.element -1128590881 +759156157 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.current.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -75798,94 +75296,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1312664548 +66233253 1 DataStructures.RedBlackTree.parent.element -837375677 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -518576549 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -1502515546 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.parent.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1548550182 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +759156157 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +510113906 1 DataStructures.RedBlackTree.grand.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.element -687685562 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +66233253 1 DataStructures.RedBlackTree.grand.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -75894,46 +75392,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +1874154700 1 DataStructures.RedBlackTree.great.element -1246233263 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +510113906 1 DataStructures.RedBlackTree.great.left.element -687685562 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.right.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -75942,379 +75440,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -687685562 +759156157 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER -this_invocation_nonce -86 -theElement -687685562 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -687685562 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -687685562 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -687685562 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -687685562 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -687685562 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -687685562 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -86 -this -174252380 -1 -this.element -687685562 -1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 -1 -this.left.element -687685562 -1 -this.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left -42247872 -1 -this.left.left.element -687685562 -1 -this.left.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 -1 -this.left.left.color -1 -1 -this.left.right -42247872 -1 -this.left.right.element -687685562 -1 -this.left.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 -1 -this.left.right.color -1 -1 -this.left.color -1 -1 -this.right -42247872 -1 -this.right.element -687685562 -1 -this.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left -42247872 -1 -this.right.left.element -687685562 -1 -this.right.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.left.left -42247872 -1 -this.right.left.right -42247872 -1 -this.right.left.color -1 -1 -this.right.right -42247872 -1 -this.right.right.element -687685562 -1 -this.right.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color -1 -1 -theElement -687685562 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 -1 -lt.element -687685562 -1 -lt.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left -42247872 -1 -lt.left.element -687685562 -1 -lt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.left.left -42247872 -1 -lt.left.right -42247872 -1 -lt.left.color -1 -1 -lt.right -42247872 -1 -lt.right.element -687685562 -1 -lt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color -1 -1 -lt.color -1 -1 -rt -42247872 -1 -rt.element -687685562 -1 -rt.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left -42247872 -1 -rt.left.element -687685562 -1 -rt.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.left.left -42247872 -1 -rt.left.right -42247872 -1 -rt.left.color -1 -1 -rt.right -42247872 -1 -rt.right.element -687685562 -1 -rt.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 -1 -rt.color -1 -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -87 +57 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -687685562 +759156157 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -76323,46 +75501,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -76371,94 +75549,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -174252380 +1635546341 1 DataStructures.RedBlackTree.current.element -687685562 +759156157 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -687685562 +759156157 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -567754741 +66233253 1 DataStructures.RedBlackTree.parent.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -927929668 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -174252380 +940060004 1 DataStructures.RedBlackTree.parent.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -76467,46 +75645,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +510113906 1 DataStructures.RedBlackTree.grand.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +66233253 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -174252380 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -76515,107 +75693,107 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -687685562 +759156157 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -87 +60 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -687685562 +759156157 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -76624,46 +75802,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -76672,46 +75850,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -174252380 +1635546341 1 DataStructures.RedBlackTree.current.element -687685562 +759156157 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -687685562 +759156157 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -76720,94 +75898,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -567754741 +66233253 1 DataStructures.RedBlackTree.parent.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -927929668 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -174252380 +940060004 1 DataStructures.RedBlackTree.parent.right.element -687685562 +759156157 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +510113906 1 DataStructures.RedBlackTree.grand.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +66233253 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -174252380 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -76816,408 +75994,427 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -687685562 +1698156408 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -84 -this -1987411885 +61 +theElement +1698156408 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +1698156408 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -687685562 +lt.left.element +1698156408 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +1698156408 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -1548550182 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -687685562 +rt.element +1698156408 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -687685562 +rt.left.element +1698156408 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -687685562 +rt.right.element +1698156408 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -174252380 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +61 +this +1740035246 1 -DataStructures.RedBlackTree.current.element -687685562 +this.element +1698156408 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -687685562 +this.left.element +1698156408 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +1698156408 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -687685562 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +1698156408 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -567754741 1 -DataStructures.RedBlackTree.parent.element -440851213 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +1698156408 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -927929668 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -643009796 +this.right.left.element +1698156408 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color -0 +this.right.left.color 1 -DataStructures.RedBlackTree.parent.right -174252380 1 -DataStructures.RedBlackTree.parent.right.element -687685562 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element +1698156408 +1 +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color 1 +this.right.color 1 -DataStructures.RedBlackTree.grand -1651366663 1 -DataStructures.RedBlackTree.grand.element -1128590881 +this.color 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +1 +theElement +1698156408 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -537324433 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1051605149 +lt.element +1698156408 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -42247872 +lt.left.element +1698156408 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -567754741 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -440851213 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +1698156408 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -927929668 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -174252380 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color +lt.color 1 1 -DataStructures.RedBlackTree.great -1548550182 +rt +940060004 1 -DataStructures.RedBlackTree.great.element -1887685159 +rt.element +1698156408 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -239304688 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1558080258 +rt.left.element +1698156408 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -467870275 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -755507289 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -1651366663 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1128590881 +rt.right.element +1698156408 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -537324433 -1 -DataStructures.RedBlackTree.great.right.right -567754741 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.color +rt.right.right +940060004 1 +rt.right.color 1 -DataStructures.RedBlackTree.great.color -0 1 -item -687685562 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -88 +62 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -687685562 +1698156408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -77226,46 +76423,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -687685562 +1698156408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -687685562 +1698156408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -77274,142 +76471,142 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -174252380 +1740035246 1 DataStructures.RedBlackTree.current.element -687685562 +1698156408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -687685562 +1698156408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -567754741 +66233253 1 DataStructures.RedBlackTree.parent.element -440851213 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -927929668 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -174252380 +1740035246 1 DataStructures.RedBlackTree.parent.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +510113906 1 DataStructures.RedBlackTree.grand.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +66233253 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -174252380 +1740035246 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -77418,107 +76615,107 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1651366663 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1128590881 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +2008362258 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -1639539799 +1698156408 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -89 +62 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1639539799 +1698156408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -77527,46 +76724,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1639539799 +1698156408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1639539799 +1698156408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1639539799 +1698156408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -77575,190 +76772,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1035818704 +1740035246 1 DataStructures.RedBlackTree.current.element -470905757 +1698156408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -1801601815 +940060004 1 DataStructures.RedBlackTree.current.left.element -984088366 +1698156408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1846436036 +940060004 1 DataStructures.RedBlackTree.current.right.element -2282005 +1698156408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -518576549 +66233253 1 DataStructures.RedBlackTree.parent.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1035818704 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -470905757 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -511909137 +1740035246 1 DataStructures.RedBlackTree.parent.right.element -1227419517 +1698156408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1312664548 +510113906 1 DataStructures.RedBlackTree.grand.element -837375677 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -511909137 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -239304688 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1740035246 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +1874154700 1 DataStructures.RedBlackTree.great.element -1246233263 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +510113906 1 DataStructures.RedBlackTree.great.left.element -1639539799 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.right.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -77767,59 +76964,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1639539799 +1698156408 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -89 +60 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1639539799 +1698156408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -77828,46 +77025,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1639539799 +1698156408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1639539799 +1698156408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1639539799 +1698156408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -77876,46 +77073,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1035818704 +1740035246 1 DataStructures.RedBlackTree.current.element -470905757 +1698156408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -1801601815 +940060004 1 DataStructures.RedBlackTree.current.left.element -984088366 +1698156408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -1846436036 +940060004 1 DataStructures.RedBlackTree.current.right.element -2282005 +1698156408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -77924,142 +77121,443 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -518576549 +66233253 1 DataStructures.RedBlackTree.parent.element -1502515546 +1622006612 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1035818704 +1635546341 1 DataStructures.RedBlackTree.parent.left.element -470905757 +759156157 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -511909137 +1740035246 1 DataStructures.RedBlackTree.parent.right.element -1227419517 +1698156408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1312664548 +510113906 1 DataStructures.RedBlackTree.grand.element -837375677 +1566723494 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +788117692 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +1712669532 1 DataStructures.RedBlackTree.grand.left.right -511909137 +60830820 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -239304688 +1635546341 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +1740035246 1 DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +1874154700 +1 +DataStructures.RedBlackTree.great.element +1286783232 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +510113906 +1 +DataStructures.RedBlackTree.great.left.element +1566723494 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +788117692 +1 +DataStructures.RedBlackTree.great.left.right +66233253 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +1753447031 +1 +DataStructures.RedBlackTree.great.right.element +760563749 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +2008362258 +1 +DataStructures.RedBlackTree.great.right.right +1096283470 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +1698156408 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +this_invocation_nonce +63 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +1698156408 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1753447031 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +1698156408 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +1698156408 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +1698156408 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +1740035246 +1 +DataStructures.RedBlackTree.current.element +1698156408 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +1698156408 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +1698156408 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color 0 1 +DataStructures.RedBlackTree.parent +66233253 +1 +DataStructures.RedBlackTree.parent.element +1622006612 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +1635546341 +1 +DataStructures.RedBlackTree.parent.left.element +759156157 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +0 +1 +DataStructures.RedBlackTree.parent.right +1740035246 +1 +DataStructures.RedBlackTree.parent.right.element +1698156408 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +0 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +510113906 +1 +DataStructures.RedBlackTree.grand.element +1566723494 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +788117692 +1 +DataStructures.RedBlackTree.grand.left.element +1393931310 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +1712669532 +1 +DataStructures.RedBlackTree.grand.left.right +60830820 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +66233253 +1 +DataStructures.RedBlackTree.grand.right.element +1622006612 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +1635546341 +1 +DataStructures.RedBlackTree.grand.right.right +1740035246 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +1874154700 1 DataStructures.RedBlackTree.great.element -1246233263 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +510113906 1 DataStructures.RedBlackTree.great.left.element -1639539799 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.right.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -78068,7 +77566,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1639539799 +884457408 1 item.getClass().getName() "DataStructures.MyInteger" @@ -78076,54 +77574,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -90 +64 theElement -1639539799 +884457408 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1639539799 +884457408 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1639539799 +884457408 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1639539799 +884457408 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -78132,46 +77630,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1639539799 +884457408 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1639539799 +884457408 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1639539799 +884457408 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -78182,57 +77680,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -90 +64 this -1382727136 +913190639 1 this.element -1639539799 +884457408 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -1639539799 +884457408 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -1639539799 +884457408 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -1639539799 +884457408 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -78241,46 +77739,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -1639539799 +884457408 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -1639539799 +884457408 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -1639539799 +884457408 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -78292,52 +77790,52 @@ this.color 1 1 theElement -1639539799 +884457408 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1639539799 +884457408 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1639539799 +884457408 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1639539799 +884457408 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -78346,46 +77844,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1639539799 +884457408 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1639539799 +884457408 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1639539799 +884457408 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -78396,51 +77894,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -91 +65 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1639539799 +884457408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -78449,46 +77947,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -78497,46 +77995,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1382727136 +913190639 1 DataStructures.RedBlackTree.current.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -78545,46 +78043,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1801601815 +2008362258 1 DataStructures.RedBlackTree.parent.element -984088366 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1382727136 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -78593,94 +78091,94 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1035818704 +1753447031 1 DataStructures.RedBlackTree.grand.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1801601815 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -984088366 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1382727136 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -518576549 +1874154700 1 DataStructures.RedBlackTree.great.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +510113906 1 DataStructures.RedBlackTree.great.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +788117692 1 DataStructures.RedBlackTree.great.left.right -1846436036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1072905931 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -78689,7 +78187,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1639539799 +884457408 1 item.getClass().getName() "DataStructures.MyInteger" @@ -78697,51 +78195,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -91 +65 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1639539799 +884457408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -78750,46 +78248,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -78798,46 +78296,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1382727136 +913190639 1 DataStructures.RedBlackTree.current.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -78846,142 +78344,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1801601815 +2008362258 1 DataStructures.RedBlackTree.parent.element -984088366 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1382727136 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1035818704 +1753447031 1 DataStructures.RedBlackTree.grand.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1801601815 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -984088366 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1382727136 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -518576549 +1874154700 1 DataStructures.RedBlackTree.great.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +510113906 1 DataStructures.RedBlackTree.great.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +788117692 1 DataStructures.RedBlackTree.great.left.right -1846436036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1072905931 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -78990,7 +78488,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1639539799 +884457408 1 item.getClass().getName() "DataStructures.MyInteger" @@ -78998,51 +78496,51 @@ item.getClass().getName() DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -88 +63 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1639539799 +884457408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -79051,46 +78549,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -79099,46 +78597,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1382727136 +913190639 1 DataStructures.RedBlackTree.current.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -79147,142 +78645,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1801601815 +2008362258 1 DataStructures.RedBlackTree.parent.element -984088366 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1382727136 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1035818704 +1753447031 1 DataStructures.RedBlackTree.grand.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1801601815 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -984088366 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1382727136 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -518576549 +1874154700 1 DataStructures.RedBlackTree.great.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +510113906 1 DataStructures.RedBlackTree.great.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +788117692 1 DataStructures.RedBlackTree.great.left.right -1846436036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1072905931 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -79291,7 +78789,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1639539799 +884457408 1 item.getClass().getName() "DataStructures.MyInteger" @@ -79299,51 +78797,51 @@ item.getClass().getName() DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -92 +66 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1639539799 +884457408 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -79352,46 +78850,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -79400,46 +78898,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1382727136 +913190639 1 DataStructures.RedBlackTree.current.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -79448,142 +78946,142 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1801601815 +2008362258 1 DataStructures.RedBlackTree.parent.element -984088366 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1382727136 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1639539799 +884457408 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1035818704 +1753447031 1 DataStructures.RedBlackTree.grand.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1801601815 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -984088366 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1382727136 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -518576549 +1874154700 1 DataStructures.RedBlackTree.great.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +510113906 1 DataStructures.RedBlackTree.great.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +788117692 1 DataStructures.RedBlackTree.great.left.right -1846436036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1072905931 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -79592,7 +79090,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1574430565 +1845066581 1 item.getClass().getName() "DataStructures.MyInteger" @@ -79600,54 +79098,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -93 +67 theElement -1574430565 +1845066581 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1574430565 +1845066581 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1574430565 +1845066581 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1574430565 +1845066581 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -79656,46 +79154,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1574430565 +1845066581 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1574430565 +1845066581 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1574430565 +1845066581 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -79706,57 +79204,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -93 +67 this -161007621 +1018937824 1 this.element -1574430565 +1845066581 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -1574430565 +1845066581 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -1574430565 +1845066581 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -1574430565 +1845066581 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -79765,46 +79263,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -1574430565 +1845066581 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -1574430565 +1845066581 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -1574430565 +1845066581 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -79816,52 +79314,52 @@ this.color 1 1 theElement -1574430565 +1845066581 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1574430565 +1845066581 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1574430565 +1845066581 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1574430565 +1845066581 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -79870,46 +79368,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1574430565 +1845066581 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1574430565 +1845066581 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1574430565 +1845066581 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -79920,352 +79418,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -94 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -1574430565 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -518576549 -1 -this.header.right.right -1548550182 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -1574430565 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -1574430565 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -1574430565 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -161007621 -1 -DataStructures.RedBlackTree.current.element -1574430565 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -1574430565 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -1574430565 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1846436036 -1 -DataStructures.RedBlackTree.parent.element -2282005 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1574430565 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -161007621 -1 -DataStructures.RedBlackTree.parent.right.element -1574430565 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -1 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1801601815 -1 -DataStructures.RedBlackTree.grand.left.element -984088366 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -1382727136 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1846436036 -1 -DataStructures.RedBlackTree.grand.right.element -2282005 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -161007621 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -1801601815 -1 -DataStructures.RedBlackTree.great.left.right -1846436036 -1 -DataStructures.RedBlackTree.great.left.color -0 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -264732500 -1 -DataStructures.RedBlackTree.great.right.right -1072905931 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -1574430565 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -94 +68 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1574430565 +1845066581 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -80274,46 +79471,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -80322,190 +79519,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -161007621 +1018937824 1 DataStructures.RedBlackTree.current.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1846436036 +2008362258 1 DataStructures.RedBlackTree.parent.element -2282005 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.element -1574430565 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -161007621 +1018937824 1 DataStructures.RedBlackTree.parent.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1035818704 +1753447031 1 DataStructures.RedBlackTree.grand.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1801601815 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -984088366 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1382727136 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -161007621 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -518576549 +1874154700 1 DataStructures.RedBlackTree.great.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +510113906 1 DataStructures.RedBlackTree.great.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +788117692 1 DataStructures.RedBlackTree.great.left.right -1846436036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1072905931 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -80514,59 +79711,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1574430565 +1845066581 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -92 +68 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1574430565 +1845066581 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -80575,46 +79772,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -80623,46 +79820,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -161007621 +1018937824 1 DataStructures.RedBlackTree.current.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -80671,46 +79868,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1846436036 +2008362258 1 DataStructures.RedBlackTree.parent.element -2282005 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.element -1574430565 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -161007621 +1018937824 1 DataStructures.RedBlackTree.parent.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -80719,94 +79916,94 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1035818704 +1753447031 1 DataStructures.RedBlackTree.grand.element -470905757 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -1801601815 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -984088366 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1382727136 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -161007621 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -518576549 +1874154700 1 DataStructures.RedBlackTree.great.element -1502515546 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +510113906 1 DataStructures.RedBlackTree.great.left.element -470905757 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +788117692 1 DataStructures.RedBlackTree.great.left.right -1846436036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1227419517 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1072905931 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -80815,59 +80012,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1574430565 +1845066581 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -95 +66 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1574430565 +1845066581 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -80876,46 +80073,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -80924,46 +80121,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -161007621 +1018937824 1 DataStructures.RedBlackTree.current.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1574430565 +1845066581 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -80972,395 +80169,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1846436036 -1 -DataStructures.RedBlackTree.parent.element -2282005 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -1574430565 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -161007621 -1 -DataStructures.RedBlackTree.parent.right.element -1574430565 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -1035818704 -1 -DataStructures.RedBlackTree.grand.element -470905757 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -1801601815 -1 -DataStructures.RedBlackTree.grand.left.element -984088366 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -1382727136 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1846436036 -1 -DataStructures.RedBlackTree.grand.right.element -2282005 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -161007621 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -1801601815 -1 -DataStructures.RedBlackTree.great.left.right -1846436036 -1 -DataStructures.RedBlackTree.great.left.color -0 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -264732500 -1 -DataStructures.RedBlackTree.great.right.right -1072905931 -1 -DataStructures.RedBlackTree.great.right.color -1 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -225690927 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -96 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -225690927 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -518576549 -1 -this.header.right.right -1548550182 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -225690927 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -225690927 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -225690927 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -511909137 -1 -DataStructures.RedBlackTree.current.element -1227419517 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -264732500 -1 -DataStructures.RedBlackTree.current.left.element -1911757902 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -1072905931 -1 -DataStructures.RedBlackTree.current.right.element -1920494563 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -518576549 +2008362258 1 DataStructures.RedBlackTree.parent.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1035818704 +913190639 1 DataStructures.RedBlackTree.parent.left.element -470905757 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -511909137 +1018937824 1 DataStructures.RedBlackTree.parent.right.element -1227419517 +1845066581 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1312664548 +1753447031 1 DataStructures.RedBlackTree.grand.element -837375677 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +913190639 1 DataStructures.RedBlackTree.grand.left.right -511909137 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -239304688 +895947612 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.grand.right.color 0 @@ -81369,46 +80265,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +1874154700 1 DataStructures.RedBlackTree.great.element -1246233263 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +510113906 1 DataStructures.RedBlackTree.great.left.element -225690927 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.right.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -81417,59 +80313,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -225690927 +1845066581 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -96 +69 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -225690927 +1845066581 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -81478,46 +80374,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -225690927 +1845066581 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -225690927 +1845066581 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -225690927 +1845066581 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -81526,46 +80422,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -511909137 +1018937824 1 DataStructures.RedBlackTree.current.element -1227419517 +1845066581 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -264732500 +940060004 1 DataStructures.RedBlackTree.current.left.element -1911757902 +1845066581 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -1072905931 +940060004 1 DataStructures.RedBlackTree.current.right.element -1920494563 +1845066581 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -81574,46 +80470,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -518576549 +2008362258 1 DataStructures.RedBlackTree.parent.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -1035818704 +913190639 1 DataStructures.RedBlackTree.parent.left.element -470905757 +884457408 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -511909137 +1018937824 1 DataStructures.RedBlackTree.parent.right.element -1227419517 +1845066581 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -81622,46 +80518,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1312664548 +1753447031 1 DataStructures.RedBlackTree.grand.element -837375677 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +913190639 1 DataStructures.RedBlackTree.grand.left.right -511909137 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -239304688 +895947612 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.grand.right.color 0 @@ -81670,46 +80566,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1034442050 +1874154700 1 DataStructures.RedBlackTree.great.element -1246233263 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +510113906 1 DataStructures.RedBlackTree.great.left.element -225690927 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.right.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -81718,7 +80614,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -225690927 +905654280 1 item.getClass().getName() "DataStructures.MyInteger" @@ -81726,54 +80622,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -97 +70 theElement -225690927 +905654280 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -225690927 +905654280 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -225690927 +905654280 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -225690927 +905654280 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -81782,46 +80678,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -225690927 +905654280 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -225690927 +905654280 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -225690927 +905654280 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -81832,57 +80728,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -97 +70 this -731289487 +1915058446 1 this.element -225690927 +905654280 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -225690927 +905654280 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -225690927 +905654280 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -225690927 +905654280 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -81891,46 +80787,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -225690927 +905654280 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -225690927 +905654280 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -225690927 +905654280 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -81942,52 +80838,52 @@ this.color 1 1 theElement -225690927 +905654280 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -225690927 +905654280 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -225690927 +905654280 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -225690927 +905654280 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -81996,46 +80892,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -225690927 +905654280 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -225690927 +905654280 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -225690927 +905654280 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -82046,51 +80942,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -98 +71 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -225690927 +905654280 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -82099,46 +80995,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -82147,46 +81043,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -731289487 +1915058446 1 DataStructures.RedBlackTree.current.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -82195,46 +81091,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -264732500 +895947612 1 DataStructures.RedBlackTree.parent.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -731289487 +940060004 1 DataStructures.RedBlackTree.parent.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -82243,46 +81139,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -511909137 +1096283470 1 DataStructures.RedBlackTree.grand.element -1227419517 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -264732500 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -731289487 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1072905931 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1920494563 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -82291,46 +81187,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -518576549 +1753447031 1 DataStructures.RedBlackTree.great.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +2008362258 1 DataStructures.RedBlackTree.great.left.element -470905757 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +913190639 1 DataStructures.RedBlackTree.great.left.right -1846436036 +1018937824 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1227419517 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +895947612 1 DataStructures.RedBlackTree.great.right.right -1072905931 +75457651 1 DataStructures.RedBlackTree.great.right.color 0 @@ -82339,7 +81235,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -225690927 +905654280 1 item.getClass().getName() "DataStructures.MyInteger" @@ -82347,51 +81243,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -98 +71 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -225690927 +905654280 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -82400,46 +81296,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -82448,46 +81344,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -731289487 +1915058446 1 DataStructures.RedBlackTree.current.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -82496,395 +81392,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -264732500 +895947612 1 DataStructures.RedBlackTree.parent.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -731289487 -1 -DataStructures.RedBlackTree.parent.right.element -225690927 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color 0 1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -264732500 -1 -DataStructures.RedBlackTree.grand.left.element -1911757902 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -731289487 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1072905931 -1 -DataStructures.RedBlackTree.grand.right.element -1920494563 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -1801601815 -1 -DataStructures.RedBlackTree.great.left.right -1846436036 -1 -DataStructures.RedBlackTree.great.left.color -0 -1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -264732500 -1 -DataStructures.RedBlackTree.great.right.right -1072905931 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -225690927 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 -this_invocation_nonce -95 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -225690927 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -518576549 -1 -this.header.right.right -1548550182 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -225690927 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -225690927 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -225690927 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -731289487 -1 -DataStructures.RedBlackTree.current.element -225690927 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -42247872 -1 -DataStructures.RedBlackTree.current.left.element -225690927 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -42247872 -1 -DataStructures.RedBlackTree.current.left.right -42247872 -1 -DataStructures.RedBlackTree.current.left.color -1 -1 -DataStructures.RedBlackTree.current.right -42247872 -1 -DataStructures.RedBlackTree.current.right.element -225690927 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -42247872 -1 -DataStructures.RedBlackTree.current.right.right -42247872 -1 -DataStructures.RedBlackTree.current.right.color -1 -1 -DataStructures.RedBlackTree.current.color -0 -1 -DataStructures.RedBlackTree.parent -264732500 -1 -DataStructures.RedBlackTree.parent.element -1911757902 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.element -225690927 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -42247872 -1 -DataStructures.RedBlackTree.parent.left.right -42247872 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 DataStructures.RedBlackTree.parent.right -731289487 +940060004 1 DataStructures.RedBlackTree.parent.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -511909137 +1096283470 1 DataStructures.RedBlackTree.grand.element -1227419517 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -264732500 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -731289487 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1072905931 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1920494563 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -82893,46 +81488,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -518576549 +1753447031 1 DataStructures.RedBlackTree.great.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +2008362258 1 DataStructures.RedBlackTree.great.left.element -470905757 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +913190639 1 DataStructures.RedBlackTree.great.left.right -1846436036 +1018937824 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -511909137 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1227419517 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +895947612 1 DataStructures.RedBlackTree.great.right.right -1072905931 +75457651 1 DataStructures.RedBlackTree.great.right.color 0 @@ -82941,59 +81536,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -225690927 +905654280 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -99 +69 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -225690927 +905654280 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -83002,46 +81597,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -83050,46 +81645,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -731289487 +1915058446 1 DataStructures.RedBlackTree.current.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -225690927 +905654280 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -83098,504 +81693,203 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -264732500 +895947612 1 DataStructures.RedBlackTree.parent.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -225690927 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 -1 -DataStructures.RedBlackTree.parent.right -731289487 -1 -DataStructures.RedBlackTree.parent.right.element -225690927 -1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.right.left -42247872 -1 -DataStructures.RedBlackTree.parent.right.right -42247872 -1 -DataStructures.RedBlackTree.parent.right.color -0 -1 -DataStructures.RedBlackTree.parent.color -1 -1 -DataStructures.RedBlackTree.grand -511909137 -1 -DataStructures.RedBlackTree.grand.element -1227419517 -1 -DataStructures.RedBlackTree.grand.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left -264732500 -1 -DataStructures.RedBlackTree.grand.left.element -1911757902 -1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.left.left -42247872 -1 -DataStructures.RedBlackTree.grand.left.right -731289487 -1 -DataStructures.RedBlackTree.grand.left.color -1 -1 -DataStructures.RedBlackTree.grand.right -1072905931 -1 -DataStructures.RedBlackTree.grand.right.element -1920494563 -1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.grand.right.left -42247872 -1 -DataStructures.RedBlackTree.grand.right.right -42247872 -1 -DataStructures.RedBlackTree.grand.right.color -1 -1 -DataStructures.RedBlackTree.grand.color -0 -1 -DataStructures.RedBlackTree.great -518576549 -1 -DataStructures.RedBlackTree.great.element -1502515546 -1 -DataStructures.RedBlackTree.great.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left -1035818704 -1 -DataStructures.RedBlackTree.great.left.element -470905757 -1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.left.left -1801601815 -1 -DataStructures.RedBlackTree.great.left.right -1846436036 -1 -DataStructures.RedBlackTree.great.left.color 0 1 -DataStructures.RedBlackTree.great.right -511909137 -1 -DataStructures.RedBlackTree.great.right.element -1227419517 -1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.great.right.left -264732500 -1 -DataStructures.RedBlackTree.great.right.right -1072905931 -1 -DataStructures.RedBlackTree.great.right.color -0 -1 -DataStructures.RedBlackTree.great.color -1 -1 -item -733496228 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -100 -this -1987411885 -1 -this.header -1034442050 -1 -this.header.element -1246233263 -1 -this.header.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left -42247872 -1 -this.header.left.element -733496228 -1 -this.header.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.left.left -42247872 -1 -this.header.left.right -42247872 -1 -this.header.left.color -1 -1 -this.header.right -1312664548 -1 -this.header.right.element -837375677 -1 -this.header.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.header.right.left -518576549 -1 -this.header.right.right -1548550182 -1 -this.header.right.color -1 -1 -this.header.color -1 -1 -DataStructures.RedBlackTree.nullNode -42247872 -1 -DataStructures.RedBlackTree.nullNode.element -733496228 -1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.element -733496228 -1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.left.color -1 -1 -DataStructures.RedBlackTree.nullNode.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.element -733496228 -1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 -1 -DataStructures.RedBlackTree.nullNode.right.color -1 -1 -DataStructures.RedBlackTree.nullNode.color -1 -1 -DataStructures.RedBlackTree.current -518576549 -1 -DataStructures.RedBlackTree.current.element -1502515546 -1 -DataStructures.RedBlackTree.current.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left -1035818704 -1 -DataStructures.RedBlackTree.current.left.element -470905757 -1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.left.left -1801601815 -1 -DataStructures.RedBlackTree.current.left.right -1846436036 -1 -DataStructures.RedBlackTree.current.left.color -0 -1 -DataStructures.RedBlackTree.current.right -511909137 -1 -DataStructures.RedBlackTree.current.right.element -1227419517 -1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.current.right.left -264732500 -1 -DataStructures.RedBlackTree.current.right.right -1072905931 -1 -DataStructures.RedBlackTree.current.right.color -0 -1 -DataStructures.RedBlackTree.current.color -1 -1 -DataStructures.RedBlackTree.parent -1312664548 -1 -DataStructures.RedBlackTree.parent.element -837375677 -1 -DataStructures.RedBlackTree.parent.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left -518576549 -1 -DataStructures.RedBlackTree.parent.left.element -1502515546 -1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() -"DataStructures.MyInteger" -1 -DataStructures.RedBlackTree.parent.left.left -1035818704 -1 -DataStructures.RedBlackTree.parent.left.right -511909137 -1 -DataStructures.RedBlackTree.parent.left.color -1 -1 DataStructures.RedBlackTree.parent.right -1548550182 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +905654280 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +1096283470 1 DataStructures.RedBlackTree.grand.element -1246233263 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.left.element -733496228 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +75457651 1 DataStructures.RedBlackTree.grand.right.element -837375677 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +1753447031 1 DataStructures.RedBlackTree.great.element -1246233263 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +2008362258 1 DataStructures.RedBlackTree.great.left.element -733496228 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.great.left.right -42247872 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1096283470 1 DataStructures.RedBlackTree.great.right.element -837375677 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +895947612 1 DataStructures.RedBlackTree.great.right.right -1548550182 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -733496228 +905654280 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -100 +72 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -733496228 +905654280 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -83604,46 +81898,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -733496228 +905654280 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -733496228 +905654280 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -733496228 +905654280 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -83652,46 +81946,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -518576549 +1915058446 1 DataStructures.RedBlackTree.current.element -1502515546 +905654280 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -1035818704 +940060004 1 DataStructures.RedBlackTree.current.left.element -470905757 +905654280 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -1801601815 +940060004 1 DataStructures.RedBlackTree.current.left.right -1846436036 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -511909137 +940060004 1 DataStructures.RedBlackTree.current.right.element -1227419517 +905654280 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -264732500 +940060004 1 DataStructures.RedBlackTree.current.right.right -1072905931 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -83700,151 +81994,151 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1312664548 +895947612 1 DataStructures.RedBlackTree.parent.element -837375677 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -518576549 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -1502515546 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.parent.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.parent.left.color 0 1 DataStructures.RedBlackTree.parent.right -1548550182 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1887685159 +905654280 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +1096283470 1 DataStructures.RedBlackTree.grand.element -1246233263 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.left.element -733496228 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +75457651 1 DataStructures.RedBlackTree.grand.right.element -837375677 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +1753447031 1 DataStructures.RedBlackTree.great.element -1246233263 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +2008362258 1 DataStructures.RedBlackTree.great.left.element -733496228 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.great.left.right -42247872 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1096283470 1 DataStructures.RedBlackTree.great.right.element -837375677 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +895947612 1 DataStructures.RedBlackTree.great.right.right -1548550182 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -733496228 +1419810764 1 item.getClass().getName() "DataStructures.MyInteger" @@ -83852,54 +82146,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -101 +73 theElement -733496228 +1419810764 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -733496228 +1419810764 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -733496228 +1419810764 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -733496228 +1419810764 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -83908,46 +82202,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -733496228 +1419810764 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -733496228 +1419810764 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -733496228 +1419810764 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -83958,57 +82252,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -101 +73 this -1314970216 +922151033 1 this.element -733496228 +1419810764 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -733496228 +1419810764 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -733496228 +1419810764 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -733496228 +1419810764 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -84017,46 +82311,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -733496228 +1419810764 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -733496228 +1419810764 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -733496228 +1419810764 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -84068,52 +82362,52 @@ this.color 1 1 theElement -733496228 +1419810764 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -733496228 +1419810764 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -733496228 +1419810764 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -733496228 +1419810764 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -84122,46 +82416,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -733496228 +1419810764 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -733496228 +1419810764 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -733496228 +1419810764 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -84172,51 +82466,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -102 +74 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -733496228 +1419810764 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -84225,46 +82519,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -84273,46 +82567,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1314970216 +922151033 1 DataStructures.RedBlackTree.current.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -84321,46 +82615,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1072905931 +895947612 1 DataStructures.RedBlackTree.parent.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -733496228 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1314970216 +922151033 1 DataStructures.RedBlackTree.parent.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -84369,103 +82663,103 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -511909137 +1096283470 1 DataStructures.RedBlackTree.grand.element -1227419517 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -264732500 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -731289487 +922151033 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1072905931 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1920494563 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1314970216 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -518576549 +1753447031 1 DataStructures.RedBlackTree.great.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +2008362258 1 DataStructures.RedBlackTree.great.left.element -470905757 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +913190639 1 DataStructures.RedBlackTree.great.left.right -1846436036 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -511909137 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1227419517 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +895947612 1 DataStructures.RedBlackTree.great.right.right -1072905931 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -733496228 +1419810764 1 item.getClass().getName() "DataStructures.MyInteger" @@ -84473,51 +82767,352 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -102 +74 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +1419810764 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1753447031 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +1419810764 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +1419810764 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +1419810764 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +922151033 +1 +DataStructures.RedBlackTree.current.element +1419810764 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +1419810764 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +1419810764 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color +0 +1 +DataStructures.RedBlackTree.parent +895947612 +1 +DataStructures.RedBlackTree.parent.element +1810132623 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +1915058446 +1 +DataStructures.RedBlackTree.parent.left.element +905654280 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +0 +1 +DataStructures.RedBlackTree.parent.right +922151033 +1 +DataStructures.RedBlackTree.parent.right.element +1419810764 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +0 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +1096283470 +1 +DataStructures.RedBlackTree.grand.element +846492085 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +895947612 +1 +DataStructures.RedBlackTree.grand.left.element +1810132623 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +1915058446 +1 +DataStructures.RedBlackTree.grand.left.right +922151033 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +75457651 +1 +DataStructures.RedBlackTree.grand.right.element +152005629 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +940060004 +1 +DataStructures.RedBlackTree.grand.right.right +1796488937 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +0 +1 +DataStructures.RedBlackTree.great +1753447031 +1 +DataStructures.RedBlackTree.great.element +760563749 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +2008362258 +1 +DataStructures.RedBlackTree.great.left.element +1632392469 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +913190639 +1 +DataStructures.RedBlackTree.great.left.right +1018937824 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +1096283470 +1 +DataStructures.RedBlackTree.great.right.element +846492085 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +895947612 +1 +DataStructures.RedBlackTree.great.right.right +75457651 +1 +DataStructures.RedBlackTree.great.right.color +0 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +1419810764 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +this_invocation_nonce +72 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -733496228 +1419810764 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -84526,46 +83121,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -84574,46 +83169,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1314970216 +922151033 1 DataStructures.RedBlackTree.current.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -84622,46 +83217,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1072905931 +895947612 1 DataStructures.RedBlackTree.parent.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -733496228 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1314970216 +922151033 1 DataStructures.RedBlackTree.parent.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -84670,155 +83265,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -511909137 +1096283470 1 DataStructures.RedBlackTree.grand.element -1227419517 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -264732500 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -731289487 +922151033 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1072905931 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1920494563 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1314970216 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -518576549 +1753447031 1 DataStructures.RedBlackTree.great.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +2008362258 1 DataStructures.RedBlackTree.great.left.element -470905757 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +913190639 1 DataStructures.RedBlackTree.great.left.right -1846436036 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -511909137 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1227419517 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +895947612 1 DataStructures.RedBlackTree.great.right.right -1072905931 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -733496228 +1419810764 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -99 +75 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -733496228 +1419810764 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -84827,46 +83422,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -84875,46 +83470,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1314970216 +922151033 1 DataStructures.RedBlackTree.current.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -84923,46 +83518,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1072905931 +895947612 1 DataStructures.RedBlackTree.parent.element -1920494563 +1810132623 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.element -733496228 +905654280 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1314970216 +922151033 1 DataStructures.RedBlackTree.parent.right.element -733496228 +1419810764 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -84971,456 +83566,475 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -511909137 +1096283470 1 DataStructures.RedBlackTree.grand.element -1227419517 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -264732500 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1911757902 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -731289487 +922151033 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1072905931 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1920494563 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1314970216 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -518576549 +1753447031 1 DataStructures.RedBlackTree.great.element -1502515546 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1035818704 +2008362258 1 DataStructures.RedBlackTree.great.left.element -470905757 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1801601815 +913190639 1 DataStructures.RedBlackTree.great.left.right -1846436036 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -511909137 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1227419517 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -264732500 +895947612 1 DataStructures.RedBlackTree.great.right.right -1072905931 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -733496228 +1516369375 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -103 -this -1987411885 +76 +theElement +1516369375 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +1516369375 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -733496228 +lt.left.element +1516369375 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +1516369375 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -1548550182 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -733496228 +rt.element +1516369375 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -733496228 +rt.left.element +1516369375 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -733496228 +rt.right.element +1516369375 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -1314970216 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +76 +this +55909012 1 -DataStructures.RedBlackTree.current.element -733496228 +this.element +1516369375 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -733496228 +this.left.element +1516369375 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +1516369375 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -733496228 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +1516369375 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -1072905931 1 -DataStructures.RedBlackTree.parent.element -1920494563 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +1516369375 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -42247872 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -733496228 +this.right.left.element +1516369375 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.parent.right -1314970216 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element -733496228 +this.right.right.element +1516369375 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color 1 +this.right.color 1 -DataStructures.RedBlackTree.grand -511909137 1 -DataStructures.RedBlackTree.grand.element -1227419517 +this.color 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +1 +theElement +1516369375 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -264732500 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1911757902 +lt.element +1516369375 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -731289487 +lt.left.element +1516369375 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 1 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right -1072905931 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element -1920494563 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +lt.right +940060004 +1 +lt.right.element +1516369375 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -42247872 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -1314970216 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color +lt.color 1 1 -DataStructures.RedBlackTree.great -518576549 +rt +940060004 1 -DataStructures.RedBlackTree.great.element -1502515546 +rt.element +1516369375 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -1035818704 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -470905757 +rt.left.element +1516369375 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -1801601815 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -1846436036 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -511909137 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -1227419517 +rt.right.element +1516369375 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -264732500 -1 -DataStructures.RedBlackTree.great.right.right -1072905931 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.great.right.color +rt.right.right +940060004 1 +rt.right.color 1 -DataStructures.RedBlackTree.great.color -0 1 -item -950209035 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -104 +77 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -950209035 +1516369375 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -85429,46 +84043,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -85477,199 +84091,199 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1312664548 +55909012 1 DataStructures.RedBlackTree.current.element -837375677 +1516369375 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -518576549 +940060004 1 DataStructures.RedBlackTree.current.left.element -1502515546 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.current.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1548550182 +940060004 1 DataStructures.RedBlackTree.current.right.element -1887685159 +1516369375 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.current.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1034442050 +75457651 1 DataStructures.RedBlackTree.parent.element -1246233263 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +55909012 1 DataStructures.RedBlackTree.parent.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1312664548 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -837375677 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1548550182 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +1096283470 1 DataStructures.RedBlackTree.grand.element -1246233263 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.left.element -950209035 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -42247872 +922151033 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +75457651 1 DataStructures.RedBlackTree.grand.right.element -837375677 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +55909012 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +1753447031 1 DataStructures.RedBlackTree.great.element -1246233263 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +2008362258 1 DataStructures.RedBlackTree.great.left.element -950209035 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.great.left.right -42247872 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1096283470 1 DataStructures.RedBlackTree.great.right.element -837375677 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +895947612 1 DataStructures.RedBlackTree.great.right.right -1548550182 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -950209035 +1516369375 1 item.getClass().getName() "DataStructures.MyInteger" @@ -85677,51 +84291,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -104 +77 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -950209035 +1516369375 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -85730,46 +84344,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -85778,251 +84392,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1312664548 +55909012 1 DataStructures.RedBlackTree.current.element -837375677 +1516369375 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -518576549 +940060004 1 DataStructures.RedBlackTree.current.left.element -1502515546 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.current.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -1548550182 +940060004 1 DataStructures.RedBlackTree.current.right.element -1887685159 +1516369375 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.current.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -1034442050 +75457651 1 DataStructures.RedBlackTree.parent.element -1246233263 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +55909012 1 DataStructures.RedBlackTree.parent.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1312664548 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -837375677 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -518576549 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1548550182 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1034442050 +1096283470 1 DataStructures.RedBlackTree.grand.element -1246233263 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.left.element -950209035 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -42247872 +922151033 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1312664548 +75457651 1 DataStructures.RedBlackTree.grand.right.element -837375677 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -518576549 +55909012 1 DataStructures.RedBlackTree.grand.right.right -1548550182 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +1753447031 1 DataStructures.RedBlackTree.great.element -1246233263 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +2008362258 1 DataStructures.RedBlackTree.great.left.element -950209035 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.great.left.right -42247872 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1312664548 +1096283470 1 DataStructures.RedBlackTree.great.right.element -837375677 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +895947612 1 DataStructures.RedBlackTree.great.right.right -1548550182 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -950209035 +1516369375 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -105 +75 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -950209035 +1516369375 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -86031,46 +84645,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1516369375 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -86079,251 +84693,552 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -467870275 +55909012 1 DataStructures.RedBlackTree.current.element -853552605 +1516369375 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -106138388 +940060004 1 DataStructures.RedBlackTree.current.left.element -2057282105 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -1706393036 +940060004 1 DataStructures.RedBlackTree.current.right.element -1456460106 +1516369375 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 1 -DataStructures.RedBlackTree.current.color 1 +DataStructures.RedBlackTree.current.color +0 1 DataStructures.RedBlackTree.parent -239304688 +75457651 1 DataStructures.RedBlackTree.parent.element -1558080258 +152005629 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +55909012 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1516369375 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.parent.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -755507289 +1796488937 1 DataStructures.RedBlackTree.parent.right.element -1904504032 +362239120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -160320711 +940060004 1 DataStructures.RedBlackTree.parent.right.right -1542923582 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +1096283470 1 DataStructures.RedBlackTree.grand.element -1887685159 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -239304688 +895947612 1 DataStructures.RedBlackTree.grand.left.element -1558080258 +1810132623 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -467870275 +1915058446 1 DataStructures.RedBlackTree.grand.left.right -755507289 +922151033 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +55909012 1 DataStructures.RedBlackTree.grand.right.right -567754741 +1796488937 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +1753447031 1 DataStructures.RedBlackTree.great.element -837375677 +760563749 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +2008362258 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1632392469 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +913190639 1 DataStructures.RedBlackTree.great.left.right -511909137 +1018937824 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1887685159 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +895947612 1 DataStructures.RedBlackTree.great.right.right -1651366663 +75457651 1 DataStructures.RedBlackTree.great.right.color +0 +1 +DataStructures.RedBlackTree.great.color +1 +1 +item +1516369375 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +this_invocation_nonce +78 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +1516369375 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1753447031 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 1 +DataStructures.RedBlackTree.nullNode.element +1516369375 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +1516369375 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +1516369375 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +55909012 +1 +DataStructures.RedBlackTree.current.element +1516369375 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +1516369375 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +1516369375 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color +0 +1 +DataStructures.RedBlackTree.parent +75457651 +1 +DataStructures.RedBlackTree.parent.element +152005629 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +55909012 +1 +DataStructures.RedBlackTree.parent.left.element +1516369375 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +0 +1 +DataStructures.RedBlackTree.parent.right +1796488937 +1 +DataStructures.RedBlackTree.parent.right.element +362239120 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +0 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +1096283470 +1 +DataStructures.RedBlackTree.grand.element +846492085 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +895947612 +1 +DataStructures.RedBlackTree.grand.left.element +1810132623 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +1915058446 +1 +DataStructures.RedBlackTree.grand.left.right +922151033 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +75457651 +1 +DataStructures.RedBlackTree.grand.right.element +152005629 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +55909012 +1 +DataStructures.RedBlackTree.grand.right.right +1796488937 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +0 +1 +DataStructures.RedBlackTree.great +1753447031 +1 +DataStructures.RedBlackTree.great.element +760563749 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +2008362258 +1 +DataStructures.RedBlackTree.great.left.element +1632392469 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +913190639 +1 +DataStructures.RedBlackTree.great.left.right +1018937824 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +1096283470 +1 +DataStructures.RedBlackTree.great.right.element +846492085 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +895947612 +1 +DataStructures.RedBlackTree.great.right.right +75457651 +1 +DataStructures.RedBlackTree.great.right.color +0 1 DataStructures.RedBlackTree.great.color 1 1 item -950209035 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -105 +79 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -950209035 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1753447031 1 this.header.right.color 1 @@ -86332,46 +85247,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -86380,190 +85295,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -467870275 +75457651 1 DataStructures.RedBlackTree.current.element -853552605 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -106138388 +55909012 1 DataStructures.RedBlackTree.current.left.element -2057282105 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -1706393036 +1796488937 1 DataStructures.RedBlackTree.current.right.element -1456460106 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -239304688 +1096283470 1 DataStructures.RedBlackTree.parent.element -1558080258 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +895947612 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -106138388 +1915058446 1 DataStructures.RedBlackTree.parent.left.right -1706393036 +922151033 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -755507289 +75457651 1 DataStructures.RedBlackTree.parent.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.parent.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.parent.right.color 1 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -1548550182 +1753447031 1 DataStructures.RedBlackTree.grand.element -1887685159 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -239304688 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -1558080258 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -467870275 +913190639 1 DataStructures.RedBlackTree.grand.left.right -755507289 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +895947612 1 DataStructures.RedBlackTree.grand.right.right -567754741 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +1874154700 1 DataStructures.RedBlackTree.great.element -837375677 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +510113906 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +788117692 1 DataStructures.RedBlackTree.great.left.right -511909137 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1887685159 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -86572,427 +85487,405 @@ DataStructures.RedBlackTree.great.color 1 1 item -950209035 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -106 -theElement -950209035 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +80 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -950209035 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -950209035 +this.header.left.element +1394336709 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -950209035 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1753447031 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -950209035 +DataStructures.RedBlackTree.nullNode.element +1394336709 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -950209035 +DataStructures.RedBlackTree.nullNode.left.element +1394336709 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -950209035 +DataStructures.RedBlackTree.nullNode.right.element +1394336709 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -106 -this -1474852153 +DataStructures.RedBlackTree.nullNode.color 1 -this.element -950209035 1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 +DataStructures.RedBlackTree.current +75457651 1 -this.left.element -950209035 +DataStructures.RedBlackTree.current.element +152005629 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +55909012 1 -this.left.left.element -950209035 +DataStructures.RedBlackTree.current.left.element +1516369375 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +1796488937 1 -this.left.right.element -950209035 +DataStructures.RedBlackTree.current.right.element +362239120 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1096283470 1 -this.right.element -950209035 +DataStructures.RedBlackTree.parent.element +846492085 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +895947612 1 -this.right.left.element -950209035 +DataStructures.RedBlackTree.parent.left.element +1810132623 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +1915058446 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +922151033 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +75457651 1 -this.right.right.element -950209035 +DataStructures.RedBlackTree.parent.right.element +152005629 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 -1 -this.color +DataStructures.RedBlackTree.parent.right.left +55909012 1 +DataStructures.RedBlackTree.parent.right.right +1796488937 1 -theElement -950209035 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement.getClass().getName() -"DataStructures.MyInteger" +DataStructures.RedBlackTree.parent.color +0 1 -lt -42247872 +DataStructures.RedBlackTree.grand +1753447031 1 -lt.element -950209035 +DataStructures.RedBlackTree.grand.element +760563749 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +2008362258 1 -lt.left.element -950209035 +DataStructures.RedBlackTree.grand.left.element +1632392469 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +913190639 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +1018937824 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1096283470 1 -lt.right.element -950209035 +DataStructures.RedBlackTree.grand.right.element +846492085 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 -1 -lt.right.color +DataStructures.RedBlackTree.grand.right.left +895947612 1 +DataStructures.RedBlackTree.grand.right.right +75457651 1 -lt.color +DataStructures.RedBlackTree.grand.right.color +0 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +1874154700 1 -rt.element -950209035 +DataStructures.RedBlackTree.great.element +1286783232 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +510113906 1 -rt.left.element -950209035 +DataStructures.RedBlackTree.great.left.element +1566723494 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +788117692 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +66233253 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +1753447031 1 -rt.right.element -950209035 +DataStructures.RedBlackTree.great.right.element +760563749 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +2008362258 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1096283470 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color +0 1 +DataStructures.RedBlackTree.great.color 1 -rt.color 1 +item +1394336709 1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER -this_invocation_nonce -107 -this -1987411885 +item.getClass().getName() +"DataStructures.MyInteger" 1 -this.header -1034442050 +parent +1874154700 1 -this.header.element -1246233263 +parent.element +1286783232 1 -this.header.element.getClass().getName() +parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +parent.left +510113906 1 -this.header.left.element -950209035 +parent.left.element +1566723494 1 -this.header.left.element.getClass().getName() +parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +parent.left.left +788117692 1 -this.header.left.right -42247872 +parent.left.right +66233253 1 -this.header.left.color +parent.left.color 1 1 -this.header.right -1312664548 +parent.right +1753447031 1 -this.header.right.element -837375677 +parent.right.element +760563749 1 -this.header.right.element.getClass().getName() +parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -1548550182 +parent.right.left +2008362258 1 -this.header.right.color +parent.right.right +1096283470 1 +parent.right.color +0 1 -this.header.color +parent.color 1 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +81 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -87001,299 +85894,290 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1474852153 +75457651 1 DataStructures.RedBlackTree.current.element -950209035 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +55909012 1 DataStructures.RedBlackTree.current.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +1796488937 1 DataStructures.RedBlackTree.current.right.element -950209035 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -106138388 +1096283470 1 DataStructures.RedBlackTree.parent.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +895947612 1 DataStructures.RedBlackTree.parent.left.element -950209035 +1810132623 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.left.right -42247872 +922151033 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1474852153 +75457651 1 DataStructures.RedBlackTree.parent.right.element -950209035 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -467870275 +1753447031 1 DataStructures.RedBlackTree.grand.element -853552605 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +895947612 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1874154700 1 DataStructures.RedBlackTree.great.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +788117692 1 DataStructures.RedBlackTree.great.left.right -1706393036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1904504032 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1096283470 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 -item -950209035 -1 -item.getClass().getName() -"DataStructures.MyInteger" -1 - -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 -this_invocation_nonce -107 -this -1987411885 -1 -this.header -1034442050 +k1 +1753447031 1 -this.header.element -1246233263 +k1.element +760563749 1 -this.header.element.getClass().getName() +k1.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +k1.left +2008362258 1 -this.header.left.element -950209035 +k1.left.element +1632392469 1 -this.header.left.element.getClass().getName() +k1.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +k1.left.left +913190639 1 -this.header.left.right -42247872 +k1.left.right +1018937824 1 -this.header.left.color +k1.left.color 1 1 -this.header.right -1312664548 +k1.right +1096283470 1 -this.header.right.element -837375677 +k1.right.element +846492085 1 -this.header.right.element.getClass().getName() +k1.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 -1 -this.header.right.right -1548550182 -1 -this.header.right.color +k1.right.left +895947612 1 +k1.right.right +75457651 1 -this.header.color +k1.right.color +0 1 +k1.color +0 1 + +DataStructures.RedBlackTree.rotateWithRightChild(DataStructures.RedBlackNode):::EXIT239 +this_invocation_nonce +81 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -87302,46 +86186,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1474852153 +75457651 1 DataStructures.RedBlackTree.current.element -950209035 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +55909012 1 DataStructures.RedBlackTree.current.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +1796488937 1 DataStructures.RedBlackTree.current.right.element -950209035 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -87350,94 +86234,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -106138388 +1096283470 1 DataStructures.RedBlackTree.parent.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.left.element -950209035 +760563749 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1474852153 +75457651 1 DataStructures.RedBlackTree.parent.right.element -950209035 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -467870275 +1753447031 1 DataStructures.RedBlackTree.grand.element -853552605 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +895947612 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.right.right -42247872 +922151033 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -87446,107 +86330,197 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1874154700 1 DataStructures.RedBlackTree.great.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +788117692 1 DataStructures.RedBlackTree.great.left.right -1706393036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +1753447031 1 DataStructures.RedBlackTree.great.right.element -1904504032 +760563749 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +2008362258 1 DataStructures.RedBlackTree.great.right.right -1542923582 +895947612 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 -item -950209035 +k1 +1753447031 1 -item.getClass().getName() +k1.element +760563749 +1 +k1.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left +2008362258 +1 +k1.left.element +1632392469 +1 +k1.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.left.left +913190639 +1 +k1.left.right +1018937824 +1 +k1.left.color +1 +1 +k1.right +895947612 +1 +k1.right.element +1810132623 +1 +k1.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +k1.right.left +1915058446 +1 +k1.right.right +922151033 +1 +k1.right.color +1 +1 +k1.color +0 +1 +return +1096283470 +1 +return.element +846492085 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +1753447031 +1 +return.left.element +760563749 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +2008362258 +1 +return.left.right +895947612 +1 +return.left.color +0 +1 +return.right +75457651 +1 +return.right.element +152005629 +1 +return.right.element.getClass().getName() "DataStructures.MyInteger" 1 +return.right.left +55909012 +1 +return.right.right +1796488937 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.rotate(DataStructures.Comparable, DataStructures.RedBlackNode):::EXIT215 this_invocation_nonce -103 +80 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -950209035 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -87555,46 +86529,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -87603,46 +86577,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1474852153 +75457651 1 DataStructures.RedBlackTree.current.element -950209035 +152005629 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +55909012 1 DataStructures.RedBlackTree.current.left.element -950209035 +1516369375 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +1796488937 1 DataStructures.RedBlackTree.current.right.element -950209035 +362239120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -87651,94 +86625,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -106138388 +1096283470 1 DataStructures.RedBlackTree.parent.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.left.element -950209035 +760563749 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1474852153 +75457651 1 DataStructures.RedBlackTree.parent.right.element -950209035 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.parent.right.color 0 1 DataStructures.RedBlackTree.parent.color -1 +0 1 DataStructures.RedBlackTree.grand -467870275 +1753447031 1 DataStructures.RedBlackTree.grand.element -853552605 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +895947612 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.right.right -42247872 +922151033 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -87747,107 +86721,203 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1874154700 1 DataStructures.RedBlackTree.great.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +788117692 1 DataStructures.RedBlackTree.great.left.right -1706393036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1904504032 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +1753447031 1 DataStructures.RedBlackTree.great.right.right -1542923582 +75457651 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -950209035 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" 1 +parent +1874154700 +1 +parent.element +1286783232 +1 +parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left +510113906 +1 +parent.left.element +1566723494 +1 +parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.left.left +788117692 +1 +parent.left.right +66233253 +1 +parent.left.color +1 +1 +parent.right +1096283470 +1 +parent.right.element +846492085 +1 +parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +parent.right.left +1753447031 +1 +parent.right.right +75457651 +1 +parent.right.color +0 +1 +parent.color +1 +1 +return +1096283470 +1 +return.element +846492085 +1 +return.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left +1753447031 +1 +return.left.element +760563749 +1 +return.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.left.left +2008362258 +1 +return.left.right +895947612 +1 +return.left.color +0 +1 +return.right +75457651 +1 +return.right.element +152005629 +1 +return.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +return.right.left +55909012 +1 +return.right.right +1796488937 +1 +return.right.color +0 +1 +return.color +0 +1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -108 +79 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -950209035 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -87856,46 +86926,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -950209035 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -87904,94 +86974,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1474852153 +1096283470 1 DataStructures.RedBlackTree.current.element -950209035 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +1753447031 1 DataStructures.RedBlackTree.current.left.element -950209035 +760563749 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.element -950209035 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.current.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -106138388 +1096283470 1 DataStructures.RedBlackTree.parent.element -2057282105 +846492085 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.left.element -950209035 +760563749 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1474852153 +75457651 1 DataStructures.RedBlackTree.parent.right.element -950209035 +152005629 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -88000,46 +87070,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +1753447031 1 DataStructures.RedBlackTree.grand.element -853552605 +760563749 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +2008362258 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1632392469 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +1018937824 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +895947612 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +1810132623 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1915058446 1 DataStructures.RedBlackTree.grand.right.right -42247872 +922151033 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -88048,46 +87118,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1874154700 1 DataStructures.RedBlackTree.great.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +510113906 1 DataStructures.RedBlackTree.great.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +788117692 1 DataStructures.RedBlackTree.great.left.right -1706393036 +66233253 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +1096283470 1 DataStructures.RedBlackTree.great.right.element -1904504032 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +1753447031 1 DataStructures.RedBlackTree.great.right.right -1542923582 +75457651 1 DataStructures.RedBlackTree.great.right.color 1 @@ -88096,7 +87166,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1583881797 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" @@ -88104,54 +87174,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -109 +82 theElement -1583881797 +1394336709 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1583881797 +1394336709 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1583881797 +1394336709 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1583881797 +1394336709 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -88160,46 +87230,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1583881797 +1394336709 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1583881797 +1394336709 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1583881797 +1394336709 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -88210,57 +87280,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -109 +82 this -94073967 +1387228415 1 this.element -1583881797 +1394336709 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -1583881797 +1394336709 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -1583881797 +1394336709 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -1583881797 +1394336709 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -88269,46 +87339,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -1583881797 +1394336709 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -1583881797 +1394336709 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -1583881797 +1394336709 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -88320,52 +87390,52 @@ this.color 1 1 theElement -1583881797 +1394336709 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -1583881797 +1394336709 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -1583881797 +1394336709 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -1583881797 +1394336709 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -88374,46 +87444,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -1583881797 +1394336709 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -1583881797 +1394336709 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -1583881797 +1394336709 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -88424,51 +87494,51 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -110 +83 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1583881797 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -88477,46 +87547,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -88525,46 +87595,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -94073967 +1387228415 1 DataStructures.RedBlackTree.current.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -88573,46 +87643,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1706393036 +1796488937 1 DataStructures.RedBlackTree.parent.element -1456460106 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -94073967 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -88621,46 +87691,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +75457651 1 DataStructures.RedBlackTree.grand.element -853552605 +152005629 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +55909012 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1516369375 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +1796488937 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +362239120 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1387228415 1 DataStructures.RedBlackTree.grand.right.right -94073967 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -88669,55 +87739,55 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1096283470 1 DataStructures.RedBlackTree.great.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +1753447031 1 DataStructures.RedBlackTree.great.left.element -853552605 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +2008362258 1 DataStructures.RedBlackTree.great.left.right -1706393036 +895947612 1 DataStructures.RedBlackTree.great.left.color 0 1 DataStructures.RedBlackTree.great.right -755507289 +75457651 1 DataStructures.RedBlackTree.great.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1583881797 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" @@ -88725,51 +87795,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -110 +83 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1583881797 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -88778,46 +87848,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -88826,46 +87896,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -94073967 +1387228415 1 DataStructures.RedBlackTree.current.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -88874,94 +87944,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1706393036 +1796488937 1 DataStructures.RedBlackTree.parent.element -1456460106 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -94073967 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +75457651 1 DataStructures.RedBlackTree.grand.element -853552605 +152005629 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +55909012 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1516369375 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +1796488937 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +362239120 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1387228415 1 DataStructures.RedBlackTree.grand.right.right -94073967 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -88970,55 +88040,55 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1096283470 1 DataStructures.RedBlackTree.great.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +1753447031 1 DataStructures.RedBlackTree.great.left.element -853552605 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +2008362258 1 DataStructures.RedBlackTree.great.left.right -1706393036 +895947612 1 DataStructures.RedBlackTree.great.left.color 0 1 DataStructures.RedBlackTree.great.right -755507289 +75457651 1 DataStructures.RedBlackTree.great.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1583881797 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" @@ -89026,51 +88096,51 @@ item.getClass().getName() DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -108 +78 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1583881797 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -89079,46 +88149,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -89127,46 +88197,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -94073967 +1387228415 1 DataStructures.RedBlackTree.current.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -89175,94 +88245,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1706393036 +1796488937 1 DataStructures.RedBlackTree.parent.element -1456460106 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -94073967 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +75457651 1 DataStructures.RedBlackTree.grand.element -853552605 +152005629 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +55909012 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1516369375 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +1796488937 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +362239120 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1387228415 1 DataStructures.RedBlackTree.grand.right.right -94073967 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -89271,55 +88341,55 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1096283470 1 DataStructures.RedBlackTree.great.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +1753447031 1 DataStructures.RedBlackTree.great.left.element -853552605 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +2008362258 1 DataStructures.RedBlackTree.great.left.right -1706393036 +895947612 1 DataStructures.RedBlackTree.great.left.color 0 1 DataStructures.RedBlackTree.great.right -755507289 +75457651 1 DataStructures.RedBlackTree.great.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1583881797 +1394336709 1 item.getClass().getName() "DataStructures.MyInteger" @@ -89327,51 +88397,51 @@ item.getClass().getName() DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -111 +84 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1583881797 +1394336709 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -89380,46 +88450,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -89428,46 +88498,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -94073967 +1387228415 1 DataStructures.RedBlackTree.current.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -89476,94 +88546,94 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1706393036 +1796488937 1 DataStructures.RedBlackTree.parent.element -1456460106 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -94073967 +940060004 1 DataStructures.RedBlackTree.parent.right.element -1583881797 +1394336709 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -467870275 +75457651 1 DataStructures.RedBlackTree.grand.element -853552605 +152005629 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -106138388 +55909012 1 DataStructures.RedBlackTree.grand.left.element -2057282105 +1516369375 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1474852153 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1706393036 +1796488937 1 DataStructures.RedBlackTree.grand.right.element -1456460106 +362239120 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1387228415 1 DataStructures.RedBlackTree.grand.right.right -94073967 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -89572,55 +88642,55 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -239304688 +1096283470 1 DataStructures.RedBlackTree.great.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +1753447031 1 DataStructures.RedBlackTree.great.left.element -853552605 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +2008362258 1 DataStructures.RedBlackTree.great.left.right -1706393036 +895947612 1 DataStructures.RedBlackTree.great.left.color 0 1 DataStructures.RedBlackTree.great.right -755507289 +75457651 1 DataStructures.RedBlackTree.great.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -553199177 +120960120 1 item.getClass().getName() "DataStructures.MyInteger" @@ -89628,51 +88698,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -112 +85 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -553199177 +120960120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -89681,46 +88751,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -89729,46 +88799,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -755507289 +1096283470 1 DataStructures.RedBlackTree.current.element -1904504032 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -160320711 +1753447031 1 DataStructures.RedBlackTree.current.left.element -1628095255 +760563749 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.color 0 1 DataStructures.RedBlackTree.current.right -1542923582 +75457651 1 DataStructures.RedBlackTree.current.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.current.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.current.right.color 0 @@ -89777,46 +88847,46 @@ DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -239304688 +1874154700 1 DataStructures.RedBlackTree.parent.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +510113906 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -106138388 +788117692 1 DataStructures.RedBlackTree.parent.left.right -1706393036 +66233253 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -160320711 +1753447031 1 DataStructures.RedBlackTree.parent.right.right -1542923582 +75457651 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -89825,46 +88895,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +610984013 1 DataStructures.RedBlackTree.grand.element -1887685159 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -239304688 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1558080258 +120960120 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +510113906 1 DataStructures.RedBlackTree.grand.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -89873,46 +88943,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +120960120 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -89921,7 +88991,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -553199177 +120960120 1 item.getClass().getName() "DataStructures.MyInteger" @@ -89929,51 +88999,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -112 +85 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -553199177 +120960120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -89982,46 +89052,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -90030,46 +89100,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -755507289 +1096283470 1 DataStructures.RedBlackTree.current.element -1904504032 +846492085 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -160320711 +1753447031 1 DataStructures.RedBlackTree.current.left.element -1628095255 +760563749 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.current.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -1542923582 +75457651 1 DataStructures.RedBlackTree.current.right.element -1565696439 +152005629 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.current.right.right -42247872 +1796488937 1 DataStructures.RedBlackTree.current.right.color 1 @@ -90078,46 +89148,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -239304688 +1874154700 1 DataStructures.RedBlackTree.parent.element -1558080258 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -467870275 +510113906 1 DataStructures.RedBlackTree.parent.left.element -853552605 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -106138388 +788117692 1 DataStructures.RedBlackTree.parent.left.right -1706393036 +66233253 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -755507289 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1904504032 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -160320711 +1753447031 1 DataStructures.RedBlackTree.parent.right.right -1542923582 +75457651 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -90126,46 +89196,46 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +610984013 1 DataStructures.RedBlackTree.grand.element -1887685159 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -239304688 +940060004 1 DataStructures.RedBlackTree.grand.left.element -1558080258 +120960120 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +510113906 1 DataStructures.RedBlackTree.grand.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -90174,46 +89244,46 @@ DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1312664548 +610984013 1 DataStructures.RedBlackTree.great.element -837375677 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +940060004 1 DataStructures.RedBlackTree.great.left.element -1502515546 +120960120 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.great.left.right -511909137 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1548550182 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +510113906 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -90222,7 +89292,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -553199177 +120960120 1 item.getClass().getName() "DataStructures.MyInteger" @@ -90230,54 +89300,54 @@ item.getClass().getName() DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -113 +86 theElement -553199177 +120960120 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -553199177 +120960120 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -553199177 +120960120 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -553199177 +120960120 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -90286,46 +89356,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -553199177 +120960120 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -553199177 +120960120 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -553199177 +120960120 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -90336,57 +89406,57 @@ rt.color DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 this_invocation_nonce -113 +86 this -1161859976 +748658608 1 this.element -553199177 +120960120 1 this.element.getClass().getName() "DataStructures.MyInteger" 1 this.left -42247872 +940060004 1 this.left.element -553199177 +120960120 1 this.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left -42247872 +940060004 1 this.left.left.element -553199177 +120960120 1 this.left.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.left.left -42247872 +940060004 1 this.left.left.right -42247872 +940060004 1 this.left.left.color 1 1 this.left.right -42247872 +940060004 1 this.left.right.element -553199177 +120960120 1 this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.left.right.left -42247872 +940060004 1 this.left.right.right -42247872 +940060004 1 this.left.right.color 1 @@ -90395,46 +89465,46 @@ this.left.color 1 1 this.right -42247872 +940060004 1 this.right.element -553199177 +120960120 1 this.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left -42247872 +940060004 1 this.right.left.element -553199177 +120960120 1 this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.left.left -42247872 +940060004 1 this.right.left.right -42247872 +940060004 1 this.right.left.color 1 1 this.right.right -42247872 +940060004 1 this.right.right.element -553199177 +120960120 1 this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.right.right.left -42247872 +940060004 1 this.right.right.right -42247872 +940060004 1 this.right.right.color 1 @@ -90446,52 +89516,52 @@ this.color 1 1 theElement -553199177 +120960120 1 theElement.getClass().getName() "DataStructures.MyInteger" 1 lt -42247872 +940060004 1 lt.element -553199177 +120960120 1 lt.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left -42247872 +940060004 1 lt.left.element -553199177 +120960120 1 lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 lt.left.left -42247872 +940060004 1 lt.left.right -42247872 +940060004 1 lt.left.color 1 1 lt.right -42247872 +940060004 1 lt.right.element -553199177 +120960120 1 lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 lt.right.left -42247872 +940060004 1 lt.right.right -42247872 +940060004 1 lt.right.color 1 @@ -90500,46 +89570,46 @@ lt.color 1 1 rt -42247872 +940060004 1 rt.element -553199177 +120960120 1 rt.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left -42247872 +940060004 1 rt.left.element -553199177 +120960120 1 rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 rt.left.left -42247872 +940060004 1 rt.left.right -42247872 +940060004 1 rt.left.color 1 1 rt.right -42247872 +940060004 1 rt.right.element -553199177 +120960120 1 rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 rt.right.left -42247872 +940060004 1 rt.right.right -42247872 +940060004 1 rt.right.color 1 @@ -90550,51 +89620,352 @@ rt.color DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -114 +87 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +120960120 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1096283470 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +120960120 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +120960120 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +120960120 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +748658608 +1 +DataStructures.RedBlackTree.current.element +120960120 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +940060004 +1 +DataStructures.RedBlackTree.current.left.element +120960120 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +1 +1 +DataStructures.RedBlackTree.current.right +940060004 +1 +DataStructures.RedBlackTree.current.right.element +120960120 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +1 +1 +DataStructures.RedBlackTree.current.color +1 +1 +DataStructures.RedBlackTree.parent +1796488937 +1 +DataStructures.RedBlackTree.parent.element +362239120 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +1387228415 +1 +DataStructures.RedBlackTree.parent.left.element +1394336709 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +940060004 +1 +DataStructures.RedBlackTree.parent.left.right +940060004 +1 +DataStructures.RedBlackTree.parent.left.color +0 +1 +DataStructures.RedBlackTree.parent.right +748658608 +1 +DataStructures.RedBlackTree.parent.right.element +120960120 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +940060004 +1 +DataStructures.RedBlackTree.parent.right.right +940060004 +1 +DataStructures.RedBlackTree.parent.right.color +1 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +75457651 +1 +DataStructures.RedBlackTree.grand.element +152005629 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +55909012 +1 +DataStructures.RedBlackTree.grand.left.element +1516369375 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +940060004 +1 +DataStructures.RedBlackTree.grand.left.right +940060004 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +1796488937 +1 +DataStructures.RedBlackTree.grand.right.element +362239120 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +1387228415 +1 +DataStructures.RedBlackTree.grand.right.right +748658608 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +1096283470 +1 +DataStructures.RedBlackTree.great.element +846492085 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +1753447031 +1 +DataStructures.RedBlackTree.great.left.element +760563749 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +2008362258 +1 +DataStructures.RedBlackTree.great.left.right +895947612 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +75457651 +1 +DataStructures.RedBlackTree.great.right.element +152005629 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +55909012 +1 +DataStructures.RedBlackTree.great.right.right +1796488937 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +0 +1 +item +120960120 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +this_invocation_nonce +87 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -553199177 +120960120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -90603,46 +89974,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -90651,251 +90022,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1161859976 +748658608 1 DataStructures.RedBlackTree.current.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -160320711 +1796488937 1 DataStructures.RedBlackTree.parent.element -1628095255 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -553199177 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1161859976 +748658608 1 DataStructures.RedBlackTree.parent.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +75457651 1 DataStructures.RedBlackTree.grand.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +55909012 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +1516369375 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +362239120 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1387228415 1 DataStructures.RedBlackTree.grand.right.right -42247872 +748658608 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +1096283470 1 DataStructures.RedBlackTree.great.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +1753447031 1 DataStructures.RedBlackTree.great.left.element -853552605 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +2008362258 1 DataStructures.RedBlackTree.great.left.right -1706393036 +895947612 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +75457651 1 DataStructures.RedBlackTree.great.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.great.right.color -0 1 -DataStructures.RedBlackTree.great.color 1 +DataStructures.RedBlackTree.great.color +0 1 item -553199177 +120960120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -114 +84 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -553199177 +120960120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -90904,46 +90275,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -90952,46 +90323,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1161859976 +748658608 1 DataStructures.RedBlackTree.current.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -91000,46 +90371,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -160320711 +1796488937 1 DataStructures.RedBlackTree.parent.element -1628095255 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -553199177 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1161859976 +748658608 1 DataStructures.RedBlackTree.parent.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -91048,155 +90419,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +75457651 1 DataStructures.RedBlackTree.grand.element -1904504032 +152005629 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +55909012 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +1516369375 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +362239120 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1387228415 1 DataStructures.RedBlackTree.grand.right.right -42247872 +748658608 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +1096283470 1 DataStructures.RedBlackTree.great.element -1558080258 +846492085 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +1753447031 1 DataStructures.RedBlackTree.great.left.element -853552605 +760563749 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +2008362258 1 DataStructures.RedBlackTree.great.left.right -1706393036 +895947612 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +75457651 1 DataStructures.RedBlackTree.great.right.element -1904504032 +152005629 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +55909012 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1796488937 1 DataStructures.RedBlackTree.great.right.color -0 1 -DataStructures.RedBlackTree.great.color 1 +DataStructures.RedBlackTree.great.color +0 1 item -553199177 +120960120 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -111 +88 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -553199177 +120960120 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -91205,46 +90576,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -91253,46 +90624,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1161859976 +748658608 1 DataStructures.RedBlackTree.current.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -91301,46 +90672,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -160320711 +1796488937 1 DataStructures.RedBlackTree.parent.element -1628095255 +362239120 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +1387228415 1 DataStructures.RedBlackTree.parent.left.element -553199177 +1394336709 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1161859976 +748658608 1 DataStructures.RedBlackTree.parent.right.element -553199177 +120960120 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -91349,155 +90720,456 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +75457651 +1 +DataStructures.RedBlackTree.grand.element +152005629 +1 +DataStructures.RedBlackTree.grand.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left +55909012 +1 +DataStructures.RedBlackTree.grand.left.element +1516369375 +1 +DataStructures.RedBlackTree.grand.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.left.left +940060004 +1 +DataStructures.RedBlackTree.grand.left.right +940060004 +1 +DataStructures.RedBlackTree.grand.left.color +1 +1 +DataStructures.RedBlackTree.grand.right +1796488937 +1 +DataStructures.RedBlackTree.grand.right.element +362239120 +1 +DataStructures.RedBlackTree.grand.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.grand.right.left +1387228415 +1 +DataStructures.RedBlackTree.grand.right.right +748658608 +1 +DataStructures.RedBlackTree.grand.right.color +1 +1 +DataStructures.RedBlackTree.grand.color +1 +1 +DataStructures.RedBlackTree.great +1096283470 +1 +DataStructures.RedBlackTree.great.element +846492085 +1 +DataStructures.RedBlackTree.great.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left +1753447031 +1 +DataStructures.RedBlackTree.great.left.element +760563749 +1 +DataStructures.RedBlackTree.great.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.left.left +2008362258 +1 +DataStructures.RedBlackTree.great.left.right +895947612 +1 +DataStructures.RedBlackTree.great.left.color +1 +1 +DataStructures.RedBlackTree.great.right +75457651 +1 +DataStructures.RedBlackTree.great.right.element +152005629 +1 +DataStructures.RedBlackTree.great.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.great.right.left +55909012 +1 +DataStructures.RedBlackTree.great.right.right +1796488937 +1 +DataStructures.RedBlackTree.great.right.color +1 +1 +DataStructures.RedBlackTree.great.color +0 +1 +item +546718765 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +this_invocation_nonce +89 +this +1644443712 +1 +this.header +610984013 +1 +this.header.element +745160567 +1 +this.header.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left +940060004 +1 +this.header.left.element +546718765 +1 +this.header.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.left.left +940060004 +1 +this.header.left.right +940060004 +1 +this.header.left.color +1 +1 +this.header.right +1874154700 +1 +this.header.right.element +1286783232 +1 +this.header.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.header.right.left +510113906 +1 +this.header.right.right +1096283470 +1 +this.header.right.color +1 +1 +this.header.color +1 +1 +DataStructures.RedBlackTree.nullNode +940060004 +1 +DataStructures.RedBlackTree.nullNode.element +546718765 +1 +DataStructures.RedBlackTree.nullNode.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.element +546718765 +1 +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.left.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.left.color +1 +1 +DataStructures.RedBlackTree.nullNode.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.element +546718765 +1 +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 +1 +DataStructures.RedBlackTree.nullNode.right.color +1 +1 +DataStructures.RedBlackTree.nullNode.color +1 +1 +DataStructures.RedBlackTree.current +788117692 +1 +DataStructures.RedBlackTree.current.element +1393931310 +1 +DataStructures.RedBlackTree.current.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left +1712669532 +1 +DataStructures.RedBlackTree.current.left.element +423031029 +1 +DataStructures.RedBlackTree.current.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.left.left +940060004 +1 +DataStructures.RedBlackTree.current.left.right +940060004 +1 +DataStructures.RedBlackTree.current.left.color +0 +1 +DataStructures.RedBlackTree.current.right +60830820 +1 +DataStructures.RedBlackTree.current.right.element +1225373914 +1 +DataStructures.RedBlackTree.current.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.current.right.left +940060004 +1 +DataStructures.RedBlackTree.current.right.right +940060004 +1 +DataStructures.RedBlackTree.current.right.color +0 +1 +DataStructures.RedBlackTree.current.color +1 +1 +DataStructures.RedBlackTree.parent +510113906 +1 +DataStructures.RedBlackTree.parent.element +1566723494 +1 +DataStructures.RedBlackTree.parent.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left +788117692 +1 +DataStructures.RedBlackTree.parent.left.element +1393931310 +1 +DataStructures.RedBlackTree.parent.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.left.left +1712669532 +1 +DataStructures.RedBlackTree.parent.left.right +60830820 +1 +DataStructures.RedBlackTree.parent.left.color +1 +1 +DataStructures.RedBlackTree.parent.right +66233253 +1 +DataStructures.RedBlackTree.parent.right.element +1622006612 +1 +DataStructures.RedBlackTree.parent.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +DataStructures.RedBlackTree.parent.right.left +1635546341 +1 +DataStructures.RedBlackTree.parent.right.right +1740035246 +1 +DataStructures.RedBlackTree.parent.right.color +1 +1 +DataStructures.RedBlackTree.parent.color +1 +1 +DataStructures.RedBlackTree.grand +1874154700 1 DataStructures.RedBlackTree.grand.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +510113906 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +66233253 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +546718765 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +510113906 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -553199177 +546718765 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -115 +89 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -553199177 +546718765 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -91506,46 +91178,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -553199177 +546718765 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -553199177 +546718765 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -553199177 +546718765 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -91554,46 +91226,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1161859976 +788117692 1 DataStructures.RedBlackTree.current.element -553199177 +1393931310 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +1712669532 1 DataStructures.RedBlackTree.current.left.element -553199177 +423031029 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +60830820 1 DataStructures.RedBlackTree.current.right.element -553199177 +1225373914 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -91602,504 +91274,523 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -160320711 +510113906 1 DataStructures.RedBlackTree.parent.element -1628095255 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -553199177 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.parent.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1161859976 +66233253 1 DataStructures.RedBlackTree.parent.right.element -553199177 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +1635546341 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1740035246 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +1874154700 1 DataStructures.RedBlackTree.grand.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +510113906 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +66233253 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.grand.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -239304688 +610984013 1 DataStructures.RedBlackTree.great.element -1558080258 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.element -853552605 +546718765 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.great.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -755507289 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +510113906 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -311814461 +546718765 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -116 -this -1987411885 +90 +theElement +546718765 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +546718765 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -311814461 +lt.left.element +546718765 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +546718765 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -1548550182 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -311814461 +rt.element +546718765 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -311814461 +rt.left.element +546718765 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -311814461 +rt.right.element +546718765 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -239304688 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +90 +this +167185492 1 -DataStructures.RedBlackTree.current.element -1558080258 +this.element +546718765 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -467870275 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -853552605 +this.left.element +546718765 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -106138388 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -1706393036 +this.left.left.element +546718765 1 -DataStructures.RedBlackTree.current.left.color -0 +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right -755507289 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right.element -1904504032 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +this.left.left.color +1 +1 +this.left.right +940060004 +1 +this.left.right.element +546718765 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -160320711 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -1542923582 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color -0 +this.left.right.color 1 -DataStructures.RedBlackTree.current.color 1 +this.left.color 1 -DataStructures.RedBlackTree.parent -1548550182 1 -DataStructures.RedBlackTree.parent.element -1887685159 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +546718765 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -239304688 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1558080258 +this.right.left.element +546718765 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -467870275 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -755507289 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.parent.right -1651366663 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element -1128590881 +this.right.right.element +546718765 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -537324433 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -567754741 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color +this.right.right.color 1 1 -DataStructures.RedBlackTree.parent.color +this.right.color 1 1 -DataStructures.RedBlackTree.grand -1312664548 +this.color 1 -DataStructures.RedBlackTree.grand.element -837375677 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +theElement +546718765 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -518576549 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1502515546 +lt.element +546718765 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -1035818704 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -511909137 +lt.left.element +546718765 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -1548550182 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -1887685159 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +546718765 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -239304688 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -1651366663 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color +lt.color 1 1 -DataStructures.RedBlackTree.great -1034442050 +rt +940060004 1 -DataStructures.RedBlackTree.great.element -1246233263 +rt.element +546718765 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -311814461 +rt.left.element +546718765 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.great.right -1312664548 +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.element -837375677 +rt.right.element +546718765 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.left -518576549 -1 -DataStructures.RedBlackTree.great.right.right -1548550182 -1 -DataStructures.RedBlackTree.great.right.color +rt.right.left +940060004 1 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -311814461 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -116 +91 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -311814461 +546718765 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -92108,46 +91799,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -92156,94 +91847,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -239304688 +167185492 1 DataStructures.RedBlackTree.current.element -1558080258 +546718765 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -467870275 +940060004 1 DataStructures.RedBlackTree.current.left.element -853552605 +546718765 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -106138388 +940060004 1 DataStructures.RedBlackTree.current.left.right -1706393036 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -755507289 +940060004 1 DataStructures.RedBlackTree.current.right.element -1904504032 +546718765 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -160320711 +940060004 1 DataStructures.RedBlackTree.current.right.right -1542923582 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1548550182 +1712669532 1 DataStructures.RedBlackTree.parent.element -1887685159 +423031029 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -239304688 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1558080258 +546718765 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.parent.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.parent.left.color -0 +1 1 DataStructures.RedBlackTree.parent.right -1651366663 +167185492 1 DataStructures.RedBlackTree.parent.right.element -1128590881 +546718765 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -92252,94 +91943,94 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1312664548 +788117692 1 DataStructures.RedBlackTree.grand.element -837375677 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -518576549 +1712669532 1 DataStructures.RedBlackTree.grand.left.element -1502515546 +423031029 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -1035818704 +940060004 1 DataStructures.RedBlackTree.grand.left.right -511909137 +167185492 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1548550182 +60830820 1 DataStructures.RedBlackTree.grand.right.element -1887685159 +1225373914 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -239304688 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1651366663 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1034442050 +510113906 1 DataStructures.RedBlackTree.great.element -1246233263 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.element -311814461 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.great.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -1312664548 +66233253 1 DataStructures.RedBlackTree.great.right.element -837375677 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -518576549 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1548550182 +1740035246 1 DataStructures.RedBlackTree.great.right.color 1 @@ -92348,379 +92039,360 @@ DataStructures.RedBlackTree.great.color 1 1 item -311814461 +546718765 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -117 -theElement -311814461 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +91 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -311814461 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -311814461 +this.header.left.element +546718765 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -311814461 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1096283470 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -311814461 +DataStructures.RedBlackTree.nullNode.element +546718765 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -311814461 +DataStructures.RedBlackTree.nullNode.left.element +546718765 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -311814461 +DataStructures.RedBlackTree.nullNode.right.element +546718765 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -117 -this -805547347 1 -this.element -311814461 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +167185492 1 -this.left.element -311814461 +DataStructures.RedBlackTree.current.element +546718765 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -311814461 +DataStructures.RedBlackTree.current.left.element +546718765 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -311814461 +DataStructures.RedBlackTree.current.right.element +546718765 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1712669532 1 -this.right.element -311814461 +DataStructures.RedBlackTree.parent.element +423031029 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -311814461 +DataStructures.RedBlackTree.parent.left.element +546718765 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +167185492 1 -this.right.right.element -311814461 +DataStructures.RedBlackTree.parent.right.element +546718765 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color +DataStructures.RedBlackTree.parent.right.left +940060004 1 +DataStructures.RedBlackTree.parent.right.right +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.color +0 1 +DataStructures.RedBlackTree.parent.color 1 -theElement -311814461 1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 +DataStructures.RedBlackTree.grand +788117692 1 -lt.element -311814461 +DataStructures.RedBlackTree.grand.element +1393931310 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +1712669532 1 -lt.left.element -311814461 +DataStructures.RedBlackTree.grand.left.element +423031029 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +167185492 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +60830820 1 -lt.right.element -311814461 +DataStructures.RedBlackTree.grand.right.element +1225373914 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.right +940060004 1 +DataStructures.RedBlackTree.grand.right.color 1 -lt.color 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -311814461 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -311814461 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 -1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.left +1712669532 1 -rt.left.color +DataStructures.RedBlackTree.great.left.right +60830820 1 +DataStructures.RedBlackTree.great.left.color +0 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +66233253 1 -rt.right.element -311814461 +DataStructures.RedBlackTree.great.right.element +1622006612 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +1635546341 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1740035246 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color 1 1 +item +546718765 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -118 +88 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -311814461 +546718765 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -92729,46 +92401,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -92777,251 +92449,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -805547347 +167185492 1 DataStructures.RedBlackTree.current.element -311814461 +546718765 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -1542923582 +1712669532 1 DataStructures.RedBlackTree.parent.element -1565696439 +423031029 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -805547347 +167185492 1 DataStructures.RedBlackTree.parent.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +788117692 1 DataStructures.RedBlackTree.grand.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +1712669532 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +423031029 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +167185492 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +60830820 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +1225373914 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -805547347 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.great.left.right -1706393036 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1740035246 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -311814461 +546718765 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -118 +92 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -311814461 +546718765 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -93030,46 +92702,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -93078,46 +92750,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -805547347 +167185492 1 DataStructures.RedBlackTree.current.element -311814461 +546718765 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -93126,46 +92798,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1542923582 +1712669532 1 DataStructures.RedBlackTree.parent.element -1565696439 +423031029 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -311814461 +546718765 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -805547347 +167185492 1 DataStructures.RedBlackTree.parent.right.element -311814461 +546718765 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -93174,155 +92846,475 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +788117692 1 DataStructures.RedBlackTree.grand.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +1712669532 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +423031029 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +167185492 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +60830820 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +1225373914 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -805547347 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.great.left.right -1706393036 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1740035246 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -311814461 +592179046 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +93 +theElement +592179046 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +lt +940060004 +1 +lt.element +592179046 +1 +lt.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left +940060004 +1 +lt.left.element +592179046 +1 +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 +1 +lt.left.right +940060004 +1 +lt.left.color +1 +1 +lt.right +940060004 +1 +lt.right.element +592179046 +1 +lt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.right.left +940060004 +1 +lt.right.right +940060004 +1 +lt.right.color +1 +1 +lt.color +1 +1 +rt +940060004 +1 +rt.element +592179046 +1 +rt.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left +940060004 +1 +rt.left.element +592179046 +1 +rt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left.left +940060004 +1 +rt.left.right +940060004 +1 +rt.left.color +1 +1 +rt.right +940060004 +1 +rt.right.element +592179046 +1 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.right.left +940060004 +1 +rt.right.right +940060004 +1 +rt.right.color +1 +1 +rt.color +1 +1 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +93 +this +1937348256 +1 +this.element +592179046 +1 +this.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left +940060004 +1 +this.left.element +592179046 +1 +this.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.left +940060004 +1 +this.left.left.element +592179046 +1 +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.left.left +940060004 +1 +this.left.left.right +940060004 +1 +this.left.left.color +1 +1 +this.left.right +940060004 +1 +this.left.right.element +592179046 +1 +this.left.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.right.left +940060004 +1 +this.left.right.right +940060004 +1 +this.left.right.color +1 +1 +this.left.color +1 +1 +this.right +940060004 +1 +this.right.element +592179046 +1 +this.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.left +940060004 +1 +this.right.left.element +592179046 +1 +this.right.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.left.left +940060004 +1 +this.right.left.right +940060004 +1 +this.right.left.color +1 +1 +this.right.right +940060004 +1 +this.right.right.element +592179046 +1 +this.right.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.right.left +940060004 +1 +this.right.right.right +940060004 +1 +this.right.right.color +1 +1 +this.right.color +1 +1 +this.color +1 +1 +theElement +592179046 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +lt +940060004 +1 +lt.element +592179046 +1 +lt.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left +940060004 +1 +lt.left.element +592179046 +1 +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 +1 +lt.left.right +940060004 +1 +lt.left.color +1 +1 +lt.right +940060004 +1 +lt.right.element +592179046 +1 +lt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.right.left +940060004 +1 +lt.right.right +940060004 +1 +lt.right.color +1 +1 +lt.color +1 +1 +rt +940060004 +1 +rt.element +592179046 +1 +rt.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left +940060004 +1 +rt.left.element +592179046 +1 +rt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left.left +940060004 +1 +rt.left.right +940060004 +1 +rt.left.color +1 +1 +rt.right +940060004 +1 +rt.right.element +592179046 +1 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.right.left +940060004 +1 +rt.right.right +940060004 +1 +rt.right.color +1 +1 +rt.color +1 +1 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -115 +94 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -311814461 +592179046 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -93331,46 +93323,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -311814461 +592179046 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -311814461 +592179046 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -311814461 +592179046 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -93379,251 +93371,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -805547347 +1937348256 1 DataStructures.RedBlackTree.current.element -311814461 +592179046 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -311814461 +592179046 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -311814461 +592179046 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -1542923582 +60830820 1 DataStructures.RedBlackTree.parent.element -1565696439 +1225373914 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -311814461 +592179046 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -805547347 +1937348256 1 DataStructures.RedBlackTree.parent.right.element -311814461 +592179046 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +788117692 1 DataStructures.RedBlackTree.grand.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +1712669532 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +423031029 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +167185492 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +60830820 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +1225373914 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -805547347 +1937348256 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.great.left.right -1706393036 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1740035246 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -311814461 +592179046 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -119 +94 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -311814461 +592179046 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -93632,46 +93624,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -311814461 +592179046 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -311814461 +592179046 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -311814461 +592179046 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -93680,46 +93672,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -805547347 +1937348256 1 DataStructures.RedBlackTree.current.element -311814461 +592179046 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -311814461 +592179046 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -311814461 +592179046 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -93728,46 +93720,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1542923582 +60830820 1 DataStructures.RedBlackTree.parent.element -1565696439 +1225373914 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -311814461 +592179046 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -805547347 +1937348256 1 DataStructures.RedBlackTree.parent.right.element -311814461 +592179046 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -93776,475 +93768,456 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -755507289 +788117692 1 DataStructures.RedBlackTree.grand.element -1904504032 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -160320711 +1712669532 1 DataStructures.RedBlackTree.grand.left.element -1628095255 +423031029 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -1161859976 +167185492 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1542923582 +60830820 1 DataStructures.RedBlackTree.grand.right.element -1565696439 +1225373914 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -805547347 +1937348256 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -239304688 +510113906 1 DataStructures.RedBlackTree.great.element -1558080258 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -467870275 +788117692 1 DataStructures.RedBlackTree.great.left.element -853552605 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -106138388 +1712669532 1 DataStructures.RedBlackTree.great.left.right -1706393036 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -755507289 +66233253 1 DataStructures.RedBlackTree.great.right.element -1904504032 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -160320711 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1542923582 +1740035246 1 DataStructures.RedBlackTree.great.right.color 1 1 DataStructures.RedBlackTree.great.color -0 +1 1 item -1097350341 +592179046 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -120 -theElement -1097350341 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +92 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -1097350341 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -1097350341 +this.header.left.element +592179046 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -1097350341 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1096283470 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1097350341 +DataStructures.RedBlackTree.nullNode.element +592179046 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1097350341 +DataStructures.RedBlackTree.nullNode.left.element +592179046 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1097350341 +DataStructures.RedBlackTree.nullNode.right.element +592179046 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -120 -this -577620751 1 -this.element -1097350341 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +1937348256 1 -this.left.element -1097350341 +DataStructures.RedBlackTree.current.element +592179046 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -1097350341 +DataStructures.RedBlackTree.current.left.element +592179046 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -1097350341 +DataStructures.RedBlackTree.current.right.element +592179046 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +60830820 1 -this.right.element -1097350341 +DataStructures.RedBlackTree.parent.element +1225373914 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -1097350341 +DataStructures.RedBlackTree.parent.left.element +592179046 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +1937348256 1 -this.right.right.element -1097350341 +DataStructures.RedBlackTree.parent.right.element +592179046 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 +DataStructures.RedBlackTree.parent.right.left +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.right +940060004 1 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement -1097350341 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +788117692 1 -lt.element -1097350341 +DataStructures.RedBlackTree.grand.element +1393931310 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +1712669532 1 -lt.left.element -1097350341 +DataStructures.RedBlackTree.grand.left.element +423031029 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +167185492 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +60830820 1 -lt.right.element -1097350341 +DataStructures.RedBlackTree.grand.right.element +1225373914 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.right +1937348256 1 +DataStructures.RedBlackTree.grand.right.color 1 -lt.color 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -1097350341 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -1097350341 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 -1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.left +1712669532 1 -rt.left.color +DataStructures.RedBlackTree.great.left.right +60830820 1 +DataStructures.RedBlackTree.great.left.color +0 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +66233253 1 -rt.right.element -1097350341 +DataStructures.RedBlackTree.great.right.element +1622006612 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +1635546341 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1740035246 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color +1 1 +item +592179046 +1 +item.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -121 +95 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1097350341 +592179046 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -94253,46 +94226,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1097350341 +592179046 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1097350341 +592179046 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1097350341 +592179046 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -94301,190 +94274,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -577620751 +1937348256 1 DataStructures.RedBlackTree.current.element -1097350341 +592179046 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1097350341 +592179046 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1097350341 +592179046 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -537324433 +60830820 1 DataStructures.RedBlackTree.parent.element -1051605149 +1225373914 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1097350341 +592179046 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -577620751 +1937348256 1 DataStructures.RedBlackTree.parent.right.element -1097350341 +592179046 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +788117692 1 DataStructures.RedBlackTree.grand.element -1128590881 +1393931310 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +1712669532 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +423031029 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -577620751 +167185492 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +60830820 1 DataStructures.RedBlackTree.grand.right.element -440851213 +1225373914 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.right.right -174252380 +1937348256 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1548550182 +510113906 1 DataStructures.RedBlackTree.great.element -1887685159 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +788117692 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +1712669532 1 DataStructures.RedBlackTree.great.left.right -755507289 +60830820 1 DataStructures.RedBlackTree.great.left.color 0 1 DataStructures.RedBlackTree.great.right -1651366663 +66233253 1 DataStructures.RedBlackTree.great.right.element -1128590881 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +1635546341 1 DataStructures.RedBlackTree.great.right.right -567754741 +1740035246 1 DataStructures.RedBlackTree.great.right.color 1 @@ -94493,59 +94466,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1097350341 +1641808846 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -121 +96 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1097350341 +1641808846 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -94554,46 +94527,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1097350341 +1641808846 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1097350341 +1641808846 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1097350341 +1641808846 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -94602,190 +94575,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -577620751 +66233253 1 DataStructures.RedBlackTree.current.element -1097350341 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +1635546341 1 DataStructures.RedBlackTree.current.left.element -1097350341 +759156157 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +1740035246 1 DataStructures.RedBlackTree.current.right.element -1097350341 +1698156408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -537324433 +510113906 1 DataStructures.RedBlackTree.parent.element -1051605149 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -1097350341 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.parent.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -577620751 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1097350341 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +1635546341 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1740035246 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +1874154700 1 DataStructures.RedBlackTree.grand.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +510113906 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.right -577620751 +66233253 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -440851213 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +1753447031 1 DataStructures.RedBlackTree.grand.right.right -174252380 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1548550182 +610984013 1 DataStructures.RedBlackTree.great.element -1887685159 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +940060004 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1641808846 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +510113906 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -94794,59 +94767,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1097350341 +1641808846 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -119 +96 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1097350341 +1641808846 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -94855,46 +94828,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1097350341 +1641808846 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1097350341 +1641808846 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1097350341 +1641808846 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -94903,46 +94876,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -577620751 +66233253 1 DataStructures.RedBlackTree.current.element -1097350341 +1622006612 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +1635546341 1 DataStructures.RedBlackTree.current.left.element -1097350341 +759156157 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +1740035246 1 DataStructures.RedBlackTree.current.right.element -1097350341 +1698156408 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -94951,46 +94924,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -537324433 +510113906 1 DataStructures.RedBlackTree.parent.element -1051605149 +1566723494 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.element -1097350341 +1393931310 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.parent.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -577620751 +66233253 1 DataStructures.RedBlackTree.parent.right.element -1097350341 +1622006612 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +1635546341 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1740035246 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -94999,94 +94972,94 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1651366663 +1874154700 1 DataStructures.RedBlackTree.grand.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -537324433 +510113906 1 DataStructures.RedBlackTree.grand.left.element -1051605149 +1566723494 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.grand.left.right -577620751 +66233253 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -567754741 +1096283470 1 DataStructures.RedBlackTree.grand.right.element -440851213 +846492085 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -927929668 +1753447031 1 DataStructures.RedBlackTree.grand.right.right -174252380 +75457651 1 DataStructures.RedBlackTree.grand.right.color -1 +0 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1548550182 +610984013 1 DataStructures.RedBlackTree.great.element -1887685159 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -239304688 +940060004 1 DataStructures.RedBlackTree.great.left.element -1558080258 +1641808846 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.great.left.right -755507289 +940060004 1 DataStructures.RedBlackTree.great.left.color -0 +1 1 DataStructures.RedBlackTree.great.right -1651366663 +1874154700 1 DataStructures.RedBlackTree.great.right.element -1128590881 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -537324433 +510113906 1 DataStructures.RedBlackTree.great.right.right -567754741 +1096283470 1 DataStructures.RedBlackTree.great.right.color 1 @@ -95095,360 +95068,379 @@ DataStructures.RedBlackTree.great.color 1 1 item -1097350341 +1641808846 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER this_invocation_nonce -122 -this -1987411885 +97 +theElement +1641808846 1 -this.header -1034442050 +theElement.getClass().getName() +"DataStructures.MyInteger" 1 -this.header.element -1246233263 +lt +940060004 1 -this.header.element.getClass().getName() +lt.element +1641808846 +1 +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left -42247872 +lt.left +940060004 1 -this.header.left.element -1097350341 +lt.left.element +1641808846 1 -this.header.left.element.getClass().getName() +lt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.left.left -42247872 +lt.left.left +940060004 1 -this.header.left.right -42247872 +lt.left.right +940060004 1 -this.header.left.color +lt.left.color 1 1 -this.header.right -1312664548 +lt.right +940060004 1 -this.header.right.element -837375677 +lt.right.element +1641808846 1 -this.header.right.element.getClass().getName() +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.header.right.left -518576549 +lt.right.left +940060004 1 -this.header.right.right -1548550182 +lt.right.right +940060004 1 -this.header.right.color +lt.right.color 1 1 -this.header.color +lt.color 1 1 -DataStructures.RedBlackTree.nullNode -42247872 +rt +940060004 1 -DataStructures.RedBlackTree.nullNode.element -1097350341 +rt.element +1641808846 1 -DataStructures.RedBlackTree.nullNode.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left -42247872 +rt.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.element -1097350341 +rt.left.element +1641808846 1 -DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.left.left -42247872 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.nullNode.left.right -42247872 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.nullNode.left.color +rt.left.color 1 1 -DataStructures.RedBlackTree.nullNode.right -42247872 +rt.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.element -1097350341 +rt.right.element +1641808846 1 -DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() +rt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.nullNode.right.left -42247872 +rt.right.left +940060004 1 -DataStructures.RedBlackTree.nullNode.right.right -42247872 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.nullNode.right.color +rt.right.color 1 1 -DataStructures.RedBlackTree.nullNode.color +rt.color 1 1 -DataStructures.RedBlackTree.current -577620751 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +97 +this +1358444045 1 -DataStructures.RedBlackTree.current.element -1097350341 +this.element +1641808846 1 -DataStructures.RedBlackTree.current.element.getClass().getName() +this.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left -42247872 +this.left +940060004 1 -DataStructures.RedBlackTree.current.left.element -1097350341 +this.left.element +1641808846 1 -DataStructures.RedBlackTree.current.left.element.getClass().getName() +this.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.left.left -42247872 +this.left.left +940060004 1 -DataStructures.RedBlackTree.current.left.right -42247872 +this.left.left.element +1641808846 1 -DataStructures.RedBlackTree.current.left.color +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +this.left.left.left +940060004 1 -DataStructures.RedBlackTree.current.right -42247872 +this.left.left.right +940060004 1 -DataStructures.RedBlackTree.current.right.element -1097350341 +this.left.left.color 1 -DataStructures.RedBlackTree.current.right.element.getClass().getName() +1 +this.left.right +940060004 +1 +this.left.right.element +1641808846 +1 +this.left.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.current.right.left -42247872 +this.left.right.left +940060004 1 -DataStructures.RedBlackTree.current.right.right -42247872 +this.left.right.right +940060004 1 -DataStructures.RedBlackTree.current.right.color +this.left.right.color 1 1 -DataStructures.RedBlackTree.current.color -0 +this.left.color 1 -DataStructures.RedBlackTree.parent -537324433 1 -DataStructures.RedBlackTree.parent.element -1051605149 +this.right +940060004 1 -DataStructures.RedBlackTree.parent.element.getClass().getName() +this.right.element +1641808846 +1 +this.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left -42247872 +this.right.left +940060004 1 -DataStructures.RedBlackTree.parent.left.element -1097350341 +this.right.left.element +1641808846 1 -DataStructures.RedBlackTree.parent.left.element.getClass().getName() +this.right.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.left.left -42247872 +this.right.left.left +940060004 1 -DataStructures.RedBlackTree.parent.left.right -42247872 +this.right.left.right +940060004 1 -DataStructures.RedBlackTree.parent.left.color +this.right.left.color 1 1 -DataStructures.RedBlackTree.parent.right -577620751 +this.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.element -1097350341 +this.right.right.element +1641808846 1 -DataStructures.RedBlackTree.parent.right.element.getClass().getName() +this.right.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.parent.right.left -42247872 +this.right.right.left +940060004 1 -DataStructures.RedBlackTree.parent.right.right -42247872 +this.right.right.right +940060004 1 -DataStructures.RedBlackTree.parent.right.color -0 +this.right.right.color 1 -DataStructures.RedBlackTree.parent.color 1 +this.right.color 1 -DataStructures.RedBlackTree.grand -1651366663 1 -DataStructures.RedBlackTree.grand.element -1128590881 +this.color 1 -DataStructures.RedBlackTree.grand.element.getClass().getName() +1 +theElement +1641808846 +1 +theElement.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left -537324433 +lt +940060004 1 -DataStructures.RedBlackTree.grand.left.element -1051605149 +lt.element +1641808846 1 -DataStructures.RedBlackTree.grand.left.element.getClass().getName() +lt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.left.left -42247872 +lt.left +940060004 1 -DataStructures.RedBlackTree.grand.left.right -577620751 +lt.left.element +1641808846 1 -DataStructures.RedBlackTree.grand.left.color +lt.left.element.getClass().getName() +"DataStructures.MyInteger" 1 +lt.left.left +940060004 1 -DataStructures.RedBlackTree.grand.right -567754741 +lt.left.right +940060004 1 -DataStructures.RedBlackTree.grand.right.element -440851213 +lt.left.color 1 -DataStructures.RedBlackTree.grand.right.element.getClass().getName() +1 +lt.right +940060004 +1 +lt.right.element +1641808846 +1 +lt.right.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.grand.right.left -927929668 +lt.right.left +940060004 1 -DataStructures.RedBlackTree.grand.right.right -174252380 +lt.right.right +940060004 1 -DataStructures.RedBlackTree.grand.right.color +lt.right.color 1 1 -DataStructures.RedBlackTree.grand.color +lt.color 1 1 -DataStructures.RedBlackTree.great -1548550182 +rt +940060004 1 -DataStructures.RedBlackTree.great.element -1887685159 +rt.element +1641808846 1 -DataStructures.RedBlackTree.great.element.getClass().getName() +rt.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left -239304688 +rt.left +940060004 1 -DataStructures.RedBlackTree.great.left.element -1558080258 +rt.left.element +1641808846 1 -DataStructures.RedBlackTree.great.left.element.getClass().getName() +rt.left.element.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.left.left -467870275 -1 -DataStructures.RedBlackTree.great.left.right -755507289 +rt.left.left +940060004 1 -DataStructures.RedBlackTree.great.left.color -0 +rt.left.right +940060004 1 -DataStructures.RedBlackTree.great.right -1651366663 +rt.left.color 1 -DataStructures.RedBlackTree.great.right.element -1128590881 1 -DataStructures.RedBlackTree.great.right.element.getClass().getName() -"DataStructures.MyInteger" +rt.right +940060004 1 -DataStructures.RedBlackTree.great.right.left -537324433 +rt.right.element +1641808846 1 -DataStructures.RedBlackTree.great.right.right -567754741 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.great.right.color +rt.right.left +940060004 1 +rt.right.right +940060004 1 -DataStructures.RedBlackTree.great.color +rt.right.color 1 1 -item -1445877617 +rt.color 1 -item.getClass().getName() -"DataStructures.MyInteger" 1 DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -123 +98 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1445877617 +1641808846 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -95457,46 +95449,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -95505,94 +95497,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -567754741 +1358444045 1 DataStructures.RedBlackTree.current.element -440851213 +1641808846 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -927929668 +940060004 1 DataStructures.RedBlackTree.current.left.element -643009796 +1641808846 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color -0 +1 1 DataStructures.RedBlackTree.current.right -174252380 +940060004 1 DataStructures.RedBlackTree.current.right.element -687685562 +1641808846 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color -0 +1 1 DataStructures.RedBlackTree.current.color 1 1 DataStructures.RedBlackTree.parent -1651366663 +1635546341 1 DataStructures.RedBlackTree.parent.element -1128590881 +759156157 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1051605149 +1641808846 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -577620751 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -567754741 +1358444045 1 DataStructures.RedBlackTree.parent.right.element -440851213 +1641808846 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -927929668 +940060004 1 DataStructures.RedBlackTree.parent.right.right -174252380 +940060004 1 DataStructures.RedBlackTree.parent.right.color 1 @@ -95601,103 +95593,103 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -239304688 +1635546341 1 DataStructures.RedBlackTree.grand.left.element -1558080258 +759156157 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.right -755507289 +1358444045 1 DataStructures.RedBlackTree.grand.left.color -0 +1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1740035246 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1698156408 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +510113906 1 DataStructures.RedBlackTree.great.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +1712669532 1 DataStructures.RedBlackTree.great.left.right -511909137 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1740035246 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1445877617 +1641808846 1 item.getClass().getName() "DataStructures.MyInteger" @@ -95705,51 +95697,51 @@ item.getClass().getName() DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -123 +98 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1445877617 +1641808846 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -95758,46 +95750,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -95806,46 +95798,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -567754741 +1358444045 1 DataStructures.RedBlackTree.current.element -440851213 +1641808846 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -927929668 +940060004 1 DataStructures.RedBlackTree.current.left.element -643009796 +1641808846 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -174252380 +940060004 1 DataStructures.RedBlackTree.current.right.element -687685562 +1641808846 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -95854,46 +95846,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -1651366663 +1635546341 1 DataStructures.RedBlackTree.parent.element -1128590881 +759156157 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -537324433 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1051605149 +1641808846 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -577620751 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -567754741 +1358444045 1 DataStructures.RedBlackTree.parent.right.element -440851213 +1641808846 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -927929668 +940060004 1 DataStructures.RedBlackTree.parent.right.right -174252380 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -95902,475 +95894,456 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -1548550182 +66233253 1 DataStructures.RedBlackTree.grand.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -239304688 +1635546341 1 DataStructures.RedBlackTree.grand.left.element -1558080258 +759156157 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -467870275 +940060004 1 DataStructures.RedBlackTree.grand.left.right -755507289 +1358444045 1 DataStructures.RedBlackTree.grand.left.color -0 +1 1 DataStructures.RedBlackTree.grand.right -1651366663 +1740035246 1 DataStructures.RedBlackTree.grand.right.element -1128590881 +1698156408 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -537324433 +940060004 1 DataStructures.RedBlackTree.grand.right.right -567754741 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -1 +0 1 DataStructures.RedBlackTree.great -1312664548 +510113906 1 DataStructures.RedBlackTree.great.element -837375677 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -518576549 +788117692 1 DataStructures.RedBlackTree.great.left.element -1502515546 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -1035818704 +1712669532 1 DataStructures.RedBlackTree.great.left.right -511909137 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -1548550182 +66233253 1 DataStructures.RedBlackTree.great.right.element -1887685159 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -239304688 +1635546341 1 DataStructures.RedBlackTree.great.right.right -1651366663 +1740035246 1 DataStructures.RedBlackTree.great.right.color -1 +0 1 DataStructures.RedBlackTree.great.color 1 1 item -1445877617 +1641808846 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -124 -theElement -1445877617 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +95 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -1445877617 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -1445877617 +this.header.left.element +1641808846 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -1445877617 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1096283470 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1445877617 +DataStructures.RedBlackTree.nullNode.element +1641808846 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1445877617 +DataStructures.RedBlackTree.nullNode.left.element +1641808846 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1445877617 +DataStructures.RedBlackTree.nullNode.right.element +1641808846 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -124 -this -2087643114 +DataStructures.RedBlackTree.nullNode.color 1 -this.element -1445877617 1 -this.element.getClass().getName() -"DataStructures.MyInteger" -1 -this.left -42247872 +DataStructures.RedBlackTree.current +1358444045 1 -this.left.element -1445877617 +DataStructures.RedBlackTree.current.element +1641808846 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -1445877617 +DataStructures.RedBlackTree.current.left.element +1641808846 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -1445877617 +DataStructures.RedBlackTree.current.right.element +1641808846 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1635546341 1 -this.right.element -1445877617 +DataStructures.RedBlackTree.parent.element +759156157 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -1445877617 +DataStructures.RedBlackTree.parent.left.element +1641808846 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +1358444045 1 -this.right.right.element -1445877617 +DataStructures.RedBlackTree.parent.right.element +1641808846 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color -1 +DataStructures.RedBlackTree.parent.right.left +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.right +940060004 1 +DataStructures.RedBlackTree.parent.right.color +0 1 -theElement -1445877617 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +66233253 1 -lt.element -1445877617 +DataStructures.RedBlackTree.grand.element +1622006612 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +1635546341 1 -lt.left.element -1445877617 +DataStructures.RedBlackTree.grand.left.element +759156157 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +1358444045 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1740035246 1 -lt.right.element -1445877617 +DataStructures.RedBlackTree.grand.right.element +1698156408 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 -1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.right +940060004 1 +DataStructures.RedBlackTree.grand.right.color 1 -lt.color 1 +DataStructures.RedBlackTree.grand.color +0 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -1445877617 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -1445877617 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 -1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.left +1712669532 1 -rt.left.color +DataStructures.RedBlackTree.great.left.right +60830820 1 +DataStructures.RedBlackTree.great.left.color +0 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +66233253 1 -rt.right.element -1445877617 +DataStructures.RedBlackTree.great.right.element +1622006612 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +1635546341 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1740035246 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color +0 1 +DataStructures.RedBlackTree.great.color 1 -rt.color 1 +item +1641808846 +1 +item.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -125 +99 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1445877617 +1641808846 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -96379,46 +96352,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -96427,142 +96400,142 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -2087643114 +1358444045 1 DataStructures.RedBlackTree.current.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -927929668 +1635546341 1 DataStructures.RedBlackTree.parent.element -643009796 +759156157 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -2087643114 +1358444045 1 DataStructures.RedBlackTree.parent.right.element -1445877617 +1641808846 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +66233253 1 DataStructures.RedBlackTree.grand.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +1358444045 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1740035246 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.color 1 @@ -96571,46 +96544,46 @@ DataStructures.RedBlackTree.grand.color 0 1 DataStructures.RedBlackTree.great -1651366663 +510113906 1 DataStructures.RedBlackTree.great.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +788117692 1 DataStructures.RedBlackTree.great.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.great.left.right -577620751 +60830820 1 DataStructures.RedBlackTree.great.left.color -1 +0 1 DataStructures.RedBlackTree.great.right -567754741 +66233253 1 DataStructures.RedBlackTree.great.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.great.right.right -174252380 +1740035246 1 DataStructures.RedBlackTree.great.right.color 0 @@ -96619,59 +96592,59 @@ DataStructures.RedBlackTree.great.color 1 1 item -1445877617 +750044075 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -125 +100 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1445877617 +750044075 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -96680,46 +96653,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -96728,94 +96701,94 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -2087643114 +510113906 1 DataStructures.RedBlackTree.current.element -1445877617 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.element -1445877617 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.current.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.right.element -1445877617 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +1635546341 1 DataStructures.RedBlackTree.current.right.right -42247872 +1740035246 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -927929668 +1874154700 1 DataStructures.RedBlackTree.parent.element -643009796 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +510113906 1 DataStructures.RedBlackTree.parent.left.element -1445877617 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -2087643114 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1445877617 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -96824,155 +96797,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +610984013 1 DataStructures.RedBlackTree.grand.element -440851213 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.left.element -643009796 +750044075 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +610984013 1 DataStructures.RedBlackTree.great.element -1128590881 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +940060004 1 DataStructures.RedBlackTree.great.left.element -1051605149 +750044075 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -577620751 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +1874154700 1 DataStructures.RedBlackTree.great.right.element -440851213 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +510113906 1 DataStructures.RedBlackTree.great.right.right -174252380 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1445877617 +750044075 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -122 +100 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1445877617 +750044075 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -96981,46 +96954,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -97029,46 +97002,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -2087643114 +510113906 1 DataStructures.RedBlackTree.current.element -1445877617 +1566723494 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.element -1445877617 +1393931310 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.current.left.right -42247872 +60830820 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.right.element -1445877617 +1622006612 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +1635546341 1 DataStructures.RedBlackTree.current.right.right -42247872 +1740035246 1 DataStructures.RedBlackTree.current.right.color 1 @@ -97077,46 +97050,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -927929668 +1874154700 1 DataStructures.RedBlackTree.parent.element -643009796 +1286783232 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +510113906 1 DataStructures.RedBlackTree.parent.left.element -1445877617 +1566723494 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.parent.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -2087643114 +1096283470 1 DataStructures.RedBlackTree.parent.right.element -1445877617 +846492085 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.parent.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -97125,155 +97098,475 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +610984013 1 DataStructures.RedBlackTree.grand.element -440851213 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.left.element -643009796 +750044075 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.right -42247872 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +610984013 1 DataStructures.RedBlackTree.great.element -1128590881 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +940060004 1 DataStructures.RedBlackTree.great.left.element -1051605149 +750044075 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -577620751 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +1874154700 1 DataStructures.RedBlackTree.great.right.element -440851213 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +510113906 1 DataStructures.RedBlackTree.great.right.right -174252380 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1445877617 +750044075 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +this_invocation_nonce +101 +theElement +750044075 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +lt +940060004 +1 +lt.element +750044075 +1 +lt.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left +940060004 +1 +lt.left.element +750044075 +1 +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 +1 +lt.left.right +940060004 +1 +lt.left.color +1 +1 +lt.right +940060004 +1 +lt.right.element +750044075 +1 +lt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.right.left +940060004 +1 +lt.right.right +940060004 +1 +lt.right.color +1 +1 +lt.color +1 +1 +rt +940060004 +1 +rt.element +750044075 +1 +rt.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left +940060004 +1 +rt.left.element +750044075 +1 +rt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left.left +940060004 +1 +rt.left.right +940060004 +1 +rt.left.color +1 +1 +rt.right +940060004 +1 +rt.right.element +750044075 +1 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.right.left +940060004 +1 +rt.right.right +940060004 +1 +rt.right.color +1 +1 +rt.color +1 +1 + +DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 +this_invocation_nonce +101 +this +331844619 +1 +this.element +750044075 +1 +this.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left +940060004 +1 +this.left.element +750044075 +1 +this.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.left +940060004 +1 +this.left.left.element +750044075 +1 +this.left.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.left.left +940060004 +1 +this.left.left.right +940060004 +1 +this.left.left.color +1 +1 +this.left.right +940060004 +1 +this.left.right.element +750044075 +1 +this.left.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.left.right.left +940060004 +1 +this.left.right.right +940060004 +1 +this.left.right.color +1 +1 +this.left.color +1 +1 +this.right +940060004 +1 +this.right.element +750044075 +1 +this.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.left +940060004 +1 +this.right.left.element +750044075 +1 +this.right.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.left.left +940060004 +1 +this.right.left.right +940060004 +1 +this.right.left.color +1 +1 +this.right.right +940060004 +1 +this.right.right.element +750044075 +1 +this.right.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +this.right.right.left +940060004 +1 +this.right.right.right +940060004 +1 +this.right.right.color +1 +1 +this.right.color +1 +1 +this.color +1 +1 +theElement +750044075 +1 +theElement.getClass().getName() +"DataStructures.MyInteger" +1 +lt +940060004 +1 +lt.element +750044075 +1 +lt.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left +940060004 +1 +lt.left.element +750044075 +1 +lt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.left.left +940060004 +1 +lt.left.right +940060004 +1 +lt.left.color +1 +1 +lt.right +940060004 +1 +lt.right.element +750044075 +1 +lt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +lt.right.left +940060004 +1 +lt.right.right +940060004 +1 +lt.right.color +1 +1 +lt.color +1 +1 +rt +940060004 +1 +rt.element +750044075 +1 +rt.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left +940060004 +1 +rt.left.element +750044075 +1 +rt.left.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.left.left +940060004 +1 +rt.left.right +940060004 +1 +rt.left.color +1 +1 +rt.right +940060004 +1 +rt.right.element +750044075 +1 +rt.right.element.getClass().getName() +"DataStructures.MyInteger" +1 +rt.right.left +940060004 +1 +rt.right.right +940060004 +1 +rt.right.color +1 +1 +rt.color +1 +1 + +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -126 +102 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1445877617 +750044075 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -97282,46 +97575,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1445877617 +750044075 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -97330,571 +97623,552 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -2087643114 +331844619 1 DataStructures.RedBlackTree.current.element -1445877617 +750044075 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1445877617 +750044075 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1445877617 +750044075 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -927929668 +1740035246 1 DataStructures.RedBlackTree.parent.element -643009796 +1698156408 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1445877617 +750044075 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -2087643114 +331844619 1 DataStructures.RedBlackTree.parent.right.element -1445877617 +750044075 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +66233253 1 DataStructures.RedBlackTree.grand.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +1358444045 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1740035246 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -42247872 +331844619 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +510113906 1 DataStructures.RedBlackTree.great.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +788117692 1 DataStructures.RedBlackTree.great.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.great.left.right -577620751 +60830820 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +66233253 1 DataStructures.RedBlackTree.great.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.great.right.right -174252380 +1740035246 1 DataStructures.RedBlackTree.great.right.color -0 1 -DataStructures.RedBlackTree.great.color 1 +DataStructures.RedBlackTree.great.color +0 1 item -1429992312 +750044075 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -127 -theElement -1429992312 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +102 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -1429992312 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -1429992312 +this.header.left.element +750044075 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -1429992312 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1096283470 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1429992312 +DataStructures.RedBlackTree.nullNode.element +750044075 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1429992312 +DataStructures.RedBlackTree.nullNode.left.element +750044075 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1429992312 +DataStructures.RedBlackTree.nullNode.right.element +750044075 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color -1 +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 +DataStructures.RedBlackTree.nullNode.right.color 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -127 -this -1391294207 1 -this.element -1429992312 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +331844619 1 -this.left.element -1429992312 +DataStructures.RedBlackTree.current.element +750044075 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +940060004 1 -this.left.left.element -1429992312 +DataStructures.RedBlackTree.current.left.element +750044075 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.right +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.color 1 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +940060004 1 -this.left.right.element -1429992312 +DataStructures.RedBlackTree.current.right.element +750044075 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color 1 -this.left.color 1 +DataStructures.RedBlackTree.current.color +0 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1740035246 1 -this.right.element -1429992312 +DataStructures.RedBlackTree.parent.element +1698156408 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +940060004 1 -this.right.left.element -1429992312 +DataStructures.RedBlackTree.parent.left.element +750044075 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +940060004 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +940060004 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +331844619 1 -this.right.right.element -1429992312 +DataStructures.RedBlackTree.parent.right.element +750044075 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color +DataStructures.RedBlackTree.parent.right.left +940060004 1 +DataStructures.RedBlackTree.parent.right.right +940060004 1 -this.color +DataStructures.RedBlackTree.parent.right.color +0 1 +DataStructures.RedBlackTree.parent.color 1 -theElement -1429992312 1 -theElement.getClass().getName() -"DataStructures.MyInteger" -1 -lt -42247872 +DataStructures.RedBlackTree.grand +66233253 1 -lt.element -1429992312 +DataStructures.RedBlackTree.grand.element +1622006612 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +1635546341 1 -lt.left.element -1429992312 +DataStructures.RedBlackTree.grand.left.element +759156157 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +940060004 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +1358444045 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +1740035246 1 -lt.right.element -1429992312 +DataStructures.RedBlackTree.grand.right.element +1698156408 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +DataStructures.RedBlackTree.grand.right.left +940060004 1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.right +331844619 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.color 1 1 -lt.color +DataStructures.RedBlackTree.grand.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.great +510113906 1 -rt.element -1429992312 +DataStructures.RedBlackTree.great.element +1566723494 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +788117692 1 -rt.left.element -1429992312 +DataStructures.RedBlackTree.great.left.element +1393931310 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +1712669532 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +60830820 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +66233253 1 -rt.right.element -1429992312 +DataStructures.RedBlackTree.great.right.element +1622006612 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +1635546341 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +1740035246 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color +0 +1 +item +750044075 1 +item.getClass().getName() +"DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 this_invocation_nonce -128 +99 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1429992312 +750044075 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -97903,46 +98177,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1429992312 +750044075 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1429992312 +750044075 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1429992312 +750044075 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -97951,251 +98225,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1391294207 +331844619 1 DataStructures.RedBlackTree.current.element -1429992312 +750044075 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1429992312 +750044075 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1429992312 +750044075 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -174252380 +1740035246 1 DataStructures.RedBlackTree.parent.element -687685562 +1698156408 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1429992312 +750044075 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1391294207 +331844619 1 DataStructures.RedBlackTree.parent.right.element -1429992312 +750044075 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color -1 +0 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +66233253 1 DataStructures.RedBlackTree.grand.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +1358444045 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1740035246 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1391294207 +331844619 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +510113906 1 DataStructures.RedBlackTree.great.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +788117692 1 DataStructures.RedBlackTree.great.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.great.left.right -577620751 +60830820 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +66233253 1 DataStructures.RedBlackTree.great.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.great.right.right -174252380 +1740035246 1 DataStructures.RedBlackTree.great.right.color -0 1 -DataStructures.RedBlackTree.great.color 1 +DataStructures.RedBlackTree.great.color +0 1 item -1429992312 +750044075 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 +DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER this_invocation_nonce -128 +103 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1429992312 +750044075 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -98204,46 +98478,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1429992312 +750044075 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1429992312 +750044075 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1429992312 +750044075 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -98252,46 +98526,46 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1391294207 +331844619 1 DataStructures.RedBlackTree.current.element -1429992312 +750044075 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.element -1429992312 +750044075 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.element -1429992312 +750044075 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 @@ -98300,46 +98574,46 @@ DataStructures.RedBlackTree.current.color 0 1 DataStructures.RedBlackTree.parent -174252380 +1740035246 1 DataStructures.RedBlackTree.parent.element -687685562 +1698156408 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1429992312 +750044075 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1391294207 +331844619 1 DataStructures.RedBlackTree.parent.right.element -1429992312 +750044075 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.right.color 0 @@ -98348,155 +98622,155 @@ DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +66233253 1 DataStructures.RedBlackTree.grand.element -440851213 +1622006612 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +1635546341 1 DataStructures.RedBlackTree.grand.left.element -643009796 +759156157 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +1358444045 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1740035246 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1698156408 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.right.right -1391294207 +331844619 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +510113906 1 DataStructures.RedBlackTree.great.element -1128590881 +1566723494 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +788117692 1 DataStructures.RedBlackTree.great.left.element -1051605149 +1393931310 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +1712669532 1 DataStructures.RedBlackTree.great.left.right -577620751 +60830820 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +66233253 1 DataStructures.RedBlackTree.great.right.element -440851213 +1622006612 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +1635546341 1 DataStructures.RedBlackTree.great.right.right -174252380 +1740035246 1 DataStructures.RedBlackTree.great.right.color -0 1 -DataStructures.RedBlackTree.great.color 1 +DataStructures.RedBlackTree.great.color +0 1 item -1429992312 +310656974 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::EXIT65 +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -126 +104 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1429992312 +310656974 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -98505,46 +98779,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1429992312 +310656974 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1429992312 +310656974 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1429992312 +310656974 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -98553,251 +98827,251 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1391294207 +1874154700 1 DataStructures.RedBlackTree.current.element -1429992312 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +510113906 1 DataStructures.RedBlackTree.current.left.element -1429992312 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.color -1 +0 1 DataStructures.RedBlackTree.current.right -42247872 +1096283470 1 DataStructures.RedBlackTree.current.right.element -1429992312 +846492085 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.current.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.color -1 +0 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -174252380 +610984013 1 DataStructures.RedBlackTree.parent.element -687685562 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1429992312 +310656974 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1391294207 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -1429992312 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1096283470 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +610984013 1 DataStructures.RedBlackTree.grand.element -440851213 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.left.element -643009796 +310656974 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.right -1391294207 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +610984013 1 DataStructures.RedBlackTree.great.element -1128590881 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +940060004 1 DataStructures.RedBlackTree.great.left.element -1051605149 +310656974 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -577620751 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +1874154700 1 DataStructures.RedBlackTree.great.right.element -440851213 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +510113906 1 DataStructures.RedBlackTree.great.right.right -174252380 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1429992312 +310656974 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackTree.insert(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -129 +104 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1429992312 +310656974 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -98806,46 +99080,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1429992312 +310656974 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1429992312 +310656974 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1429992312 +310656974 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -98854,571 +99128,552 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1391294207 +1874154700 1 DataStructures.RedBlackTree.current.element -1429992312 +1286783232 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +510113906 1 DataStructures.RedBlackTree.current.left.element -1429992312 +1566723494 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.current.left.right -42247872 +66233253 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +1096283470 1 DataStructures.RedBlackTree.current.right.element -1429992312 +846492085 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.current.right.right -42247872 +75457651 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -0 +1 1 DataStructures.RedBlackTree.parent -174252380 +610984013 1 DataStructures.RedBlackTree.parent.element -687685562 +745160567 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.element -1429992312 +310656974 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.parent.left.color 1 1 DataStructures.RedBlackTree.parent.right -1391294207 +1874154700 1 DataStructures.RedBlackTree.parent.right.element -1429992312 +1286783232 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.parent.right.right -42247872 +1096283470 1 DataStructures.RedBlackTree.parent.right.color -0 +1 1 DataStructures.RedBlackTree.parent.color 1 1 DataStructures.RedBlackTree.grand -567754741 +610984013 1 DataStructures.RedBlackTree.grand.element -440851213 +745160567 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -927929668 +940060004 1 DataStructures.RedBlackTree.grand.left.element -643009796 +310656974 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.grand.left.right -2087643114 +940060004 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -174252380 +1874154700 1 DataStructures.RedBlackTree.grand.right.element -687685562 +1286783232 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +510113906 1 DataStructures.RedBlackTree.grand.right.right -1391294207 +1096283470 1 DataStructures.RedBlackTree.grand.right.color 1 1 DataStructures.RedBlackTree.grand.color -0 +1 1 DataStructures.RedBlackTree.great -1651366663 +610984013 1 DataStructures.RedBlackTree.great.element -1128590881 +745160567 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -537324433 +940060004 1 DataStructures.RedBlackTree.great.left.element -1051605149 +310656974 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.great.left.right -577620751 +940060004 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -567754741 +1874154700 1 DataStructures.RedBlackTree.great.right.element -440851213 +1286783232 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -927929668 +510113906 1 DataStructures.RedBlackTree.great.right.right -174252380 +1096283470 1 DataStructures.RedBlackTree.great.right.color -0 +1 1 DataStructures.RedBlackTree.great.color 1 1 item -1679788513 +310656974 1 item.getClass().getName() "DataStructures.MyInteger" 1 -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER this_invocation_nonce -130 -theElement -1679788513 -1 -theElement.getClass().getName() -"DataStructures.MyInteger" +105 +this +1644443712 1 -lt -42247872 +this.header +610984013 1 -lt.element -1679788513 +this.header.element +745160567 1 -lt.element.getClass().getName() +this.header.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +this.header.left +940060004 1 -lt.left.element -1679788513 +this.header.left.element +310656974 1 -lt.left.element.getClass().getName() +this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +this.header.left.left +940060004 1 -lt.left.right -42247872 +this.header.left.right +940060004 1 -lt.left.color +this.header.left.color 1 1 -lt.right -42247872 +this.header.right +1874154700 1 -lt.right.element -1679788513 +this.header.right.element +1286783232 1 -lt.right.element.getClass().getName() +this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +this.header.right.left +510113906 1 -lt.right.right -42247872 +this.header.right.right +1096283470 1 -lt.right.color +this.header.right.color 1 1 -lt.color +this.header.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.nullNode +940060004 1 -rt.element -1679788513 +DataStructures.RedBlackTree.nullNode.element +310656974 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.nullNode.left +940060004 1 -rt.left.element -1679788513 +DataStructures.RedBlackTree.nullNode.left.element +310656974 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.nullNode.left.left +940060004 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.nullNode.left.right +940060004 1 -rt.left.color +DataStructures.RedBlackTree.nullNode.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.nullNode.right +940060004 1 -rt.right.element -1679788513 +DataStructures.RedBlackTree.nullNode.right.element +310656974 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 -1 -rt.right.right -42247872 -1 -rt.right.color +DataStructures.RedBlackTree.nullNode.right.left +940060004 1 +DataStructures.RedBlackTree.nullNode.right.right +940060004 1 -rt.color +DataStructures.RedBlackTree.nullNode.right.color 1 1 - -DataStructures.RedBlackNode.RedBlackNode(DataStructures.Comparable, DataStructures.RedBlackNode, DataStructures.RedBlackNode):::EXIT21 -this_invocation_nonce -130 -this -1385514529 -1 -this.element -1679788513 +DataStructures.RedBlackTree.nullNode.color 1 -this.element.getClass().getName() -"DataStructures.MyInteger" 1 -this.left -42247872 +DataStructures.RedBlackTree.current +2008362258 1 -this.left.element -1679788513 +DataStructures.RedBlackTree.current.element +1632392469 1 -this.left.element.getClass().getName() +DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left -42247872 +DataStructures.RedBlackTree.current.left +913190639 1 -this.left.left.element -1679788513 +DataStructures.RedBlackTree.current.left.element +884457408 1 -this.left.left.element.getClass().getName() +DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.left.left -42247872 -1 -this.left.left.right -42247872 +DataStructures.RedBlackTree.current.left.left +940060004 1 -this.left.left.color +DataStructures.RedBlackTree.current.left.right +940060004 1 +DataStructures.RedBlackTree.current.left.color +0 1 -this.left.right -42247872 +DataStructures.RedBlackTree.current.right +1018937824 1 -this.left.right.element -1679788513 +DataStructures.RedBlackTree.current.right.element +1845066581 1 -this.left.right.element.getClass().getName() +DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.left.right.left -42247872 -1 -this.left.right.right -42247872 +DataStructures.RedBlackTree.current.right.left +940060004 1 -this.left.right.color +DataStructures.RedBlackTree.current.right.right +940060004 1 +DataStructures.RedBlackTree.current.right.color +0 1 -this.left.color +DataStructures.RedBlackTree.current.color 1 1 -this.right -42247872 +DataStructures.RedBlackTree.parent +1753447031 1 -this.right.element -1679788513 +DataStructures.RedBlackTree.parent.element +760563749 1 -this.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left -42247872 +DataStructures.RedBlackTree.parent.left +2008362258 1 -this.right.left.element -1679788513 +DataStructures.RedBlackTree.parent.left.element +1632392469 1 -this.right.left.element.getClass().getName() +DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.left.left -42247872 +DataStructures.RedBlackTree.parent.left.left +913190639 1 -this.right.left.right -42247872 +DataStructures.RedBlackTree.parent.left.right +1018937824 1 -this.right.left.color +DataStructures.RedBlackTree.parent.left.color 1 1 -this.right.right -42247872 +DataStructures.RedBlackTree.parent.right +895947612 1 -this.right.right.element -1679788513 +DataStructures.RedBlackTree.parent.right.element +1810132623 1 -this.right.right.element.getClass().getName() +DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 -this.right.right.left -42247872 -1 -this.right.right.right -42247872 -1 -this.right.right.color -1 -1 -this.right.color +DataStructures.RedBlackTree.parent.right.left +1915058446 1 +DataStructures.RedBlackTree.parent.right.right +922151033 1 -this.color +DataStructures.RedBlackTree.parent.right.color 1 1 -theElement -1679788513 +DataStructures.RedBlackTree.parent.color 1 -theElement.getClass().getName() -"DataStructures.MyInteger" 1 -lt -42247872 +DataStructures.RedBlackTree.grand +1096283470 1 -lt.element -1679788513 +DataStructures.RedBlackTree.grand.element +846492085 1 -lt.element.getClass().getName() +DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left -42247872 +DataStructures.RedBlackTree.grand.left +1753447031 1 -lt.left.element -1679788513 +DataStructures.RedBlackTree.grand.left.element +760563749 1 -lt.left.element.getClass().getName() +DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.left.left -42247872 +DataStructures.RedBlackTree.grand.left.left +2008362258 1 -lt.left.right -42247872 +DataStructures.RedBlackTree.grand.left.right +895947612 1 -lt.left.color +DataStructures.RedBlackTree.grand.left.color 1 1 -lt.right -42247872 +DataStructures.RedBlackTree.grand.right +75457651 1 -lt.right.element -1679788513 +DataStructures.RedBlackTree.grand.right.element +152005629 1 -lt.right.element.getClass().getName() +DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 -lt.right.left -42247872 +DataStructures.RedBlackTree.grand.right.left +55909012 1 -lt.right.right -42247872 +DataStructures.RedBlackTree.grand.right.right +1796488937 1 -lt.right.color +DataStructures.RedBlackTree.grand.right.color 1 1 -lt.color +DataStructures.RedBlackTree.grand.color 1 1 -rt -42247872 +DataStructures.RedBlackTree.great +1874154700 1 -rt.element -1679788513 +DataStructures.RedBlackTree.great.element +1286783232 1 -rt.element.getClass().getName() +DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left -42247872 +DataStructures.RedBlackTree.great.left +510113906 1 -rt.left.element -1679788513 +DataStructures.RedBlackTree.great.left.element +1566723494 1 -rt.left.element.getClass().getName() +DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.left.left -42247872 +DataStructures.RedBlackTree.great.left.left +788117692 1 -rt.left.right -42247872 +DataStructures.RedBlackTree.great.left.right +66233253 1 -rt.left.color +DataStructures.RedBlackTree.great.left.color 1 1 -rt.right -42247872 +DataStructures.RedBlackTree.great.right +1096283470 1 -rt.right.element -1679788513 +DataStructures.RedBlackTree.great.right.element +846492085 1 -rt.right.element.getClass().getName() +DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 -rt.right.left -42247872 +DataStructures.RedBlackTree.great.right.left +1753447031 1 -rt.right.right -42247872 +DataStructures.RedBlackTree.great.right.right +75457651 1 -rt.right.color +DataStructures.RedBlackTree.great.right.color 1 1 -rt.color +DataStructures.RedBlackTree.great.color 1 1 +item +310656974 +1 +item.getClass().getName() +"DataStructures.MyInteger" +1 -DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::ENTER +DataStructures.RedBlackTree.handleReorient(DataStructures.Comparable):::EXIT198 this_invocation_nonce -131 +105 this -1987411885 +1644443712 1 this.header -1034442050 +610984013 1 this.header.element -1246233263 +745160567 1 this.header.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left -42247872 +940060004 1 this.header.left.element -1679788513 +310656974 1 this.header.left.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.left.left -42247872 +940060004 1 this.header.left.right -42247872 +940060004 1 this.header.left.color 1 1 this.header.right -1312664548 +1874154700 1 this.header.right.element -837375677 +1286783232 1 this.header.right.element.getClass().getName() "DataStructures.MyInteger" 1 this.header.right.left -518576549 +510113906 1 this.header.right.right -1548550182 +1096283470 1 this.header.right.color 1 @@ -99427,46 +99682,46 @@ this.header.color 1 1 DataStructures.RedBlackTree.nullNode -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.element -1679788513 +310656974 1 DataStructures.RedBlackTree.nullNode.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.element -1679788513 +310656974 1 DataStructures.RedBlackTree.nullNode.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.left.color 1 1 DataStructures.RedBlackTree.nullNode.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.element -1679788513 +310656974 1 DataStructures.RedBlackTree.nullNode.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.nullNode.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.nullNode.right.color 1 @@ -99475,190 +99730,190 @@ DataStructures.RedBlackTree.nullNode.color 1 1 DataStructures.RedBlackTree.current -1385514529 +2008362258 1 DataStructures.RedBlackTree.current.element -1679788513 +1632392469 1 DataStructures.RedBlackTree.current.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left -42247872 +913190639 1 DataStructures.RedBlackTree.current.left.element -1679788513 +884457408 1 DataStructures.RedBlackTree.current.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.left.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.left.color 1 1 DataStructures.RedBlackTree.current.right -42247872 +1018937824 1 DataStructures.RedBlackTree.current.right.element -1679788513 +1845066581 1 DataStructures.RedBlackTree.current.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.current.right.left -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.right -42247872 +940060004 1 DataStructures.RedBlackTree.current.right.color 1 1 DataStructures.RedBlackTree.current.color -1 +0 1 DataStructures.RedBlackTree.parent -1382727136 +1753447031 1 DataStructures.RedBlackTree.parent.element -1639539799 +760563749 1 DataStructures.RedBlackTree.parent.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left -42247872 +2008362258 1 DataStructures.RedBlackTree.parent.left.element -1679788513 +1632392469 1 DataStructures.RedBlackTree.parent.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.left.left -42247872 +913190639 1 DataStructures.RedBlackTree.parent.left.right -42247872 +1018937824 1 DataStructures.RedBlackTree.parent.left.color -1 +0 1 DataStructures.RedBlackTree.parent.right -1385514529 +895947612 1 DataStructures.RedBlackTree.parent.right.element -1679788513 +1810132623 1 DataStructures.RedBlackTree.parent.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.parent.right.left -42247872 +1915058446 1 DataStructures.RedBlackTree.parent.right.right -42247872 +922151033 1 DataStructures.RedBlackTree.parent.right.color 1 1 DataStructures.RedBlackTree.parent.color -0 +1 1 DataStructures.RedBlackTree.grand -1801601815 +1096283470 1 DataStructures.RedBlackTree.grand.element -984088366 +846492085 1 DataStructures.RedBlackTree.grand.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left -42247872 +1753447031 1 DataStructures.RedBlackTree.grand.left.element -1679788513 +760563749 1 DataStructures.RedBlackTree.grand.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.left.left -42247872 +2008362258 1 DataStructures.RedBlackTree.grand.left.right -42247872 +895947612 1 DataStructures.RedBlackTree.grand.left.color 1 1 DataStructures.RedBlackTree.grand.right -1382727136 +75457651 1 DataStructures.RedBlackTree.grand.right.element -1639539799 +152005629 1 DataStructures.RedBlackTree.grand.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.grand.right.left -42247872 +55909012 1 DataStructures.RedBlackTree.grand.right.right -1385514529 +1796488937 1 DataStructures.RedBlackTree.grand.right.color -0 +1 1 DataStructures.RedBlackTree.grand.color 1 1 DataStructures.RedBlackTree.great -1035818704 +1874154700 1 DataStructures.RedBlackTree.great.element -470905757 +1286783232 1 DataStructures.RedBlackTree.great.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left -1801601815 +510113906 1 DataStructures.RedBlackTree.great.left.element -984088366 +1566723494 1 DataStructures.RedBlackTree.great.left.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.left.left -42247872 +788117692 1 DataStructures.RedBlackTree.great.left.right -1382727136 +66233253 1 DataStructures.RedBlackTree.great.left.color 1 1 DataStructures.RedBlackTree.great.right -1846436036 +1096283470 1 DataStructures.RedBlackTree.great.right.element -2282005 +846492085 1 DataStructures.RedBlackTree.great.right.element.getClass().getName() "DataStructures.MyInteger" 1 DataStructures.RedBlackTree.great.right.left -42247872 +1753447031 1 DataStructures.RedBlackTree.great.right.right -161007621 +75457651 1 DataStructures.RedBlackTree.great.right.color 1 @@ -99667,7 +99922,7 @@ DataStructures.RedBlackTree.great.color 1 1 item -1679788513 +310656974 1 item.getClass().getName() "DataStructures.MyInteger" diff --git a/tests/sources/DataStructures/StackArTesterException.java b/tests/sources/DataStructures/StackArTesterException.java new file mode 100644 index 0000000000..98e7220efc --- /dev/null +++ b/tests/sources/DataStructures/StackArTesterException.java @@ -0,0 +1,89 @@ +package DataStructures; + +import java.util.*; + +public class StackArTesterException { + private static StackAr s = new StackAr(0); + private static java.util.Random rnd = new java.util.Random(1000); + + public static void doNew(int size) { + s = new StackAr(size); + s.makeEmpty(); + observe(); + topOrPop(); + } + + public static Object createItem(int phase) { + switch (phase) { + case 0: + return new MyInteger(0); + case 1: + return new Object(); + case 2: + return new MyInteger(0); + case 3: + return new Object(); + case 4: + return new Object(); + default: + // should never get here + return new MyInteger(0); + } + } + + public static void push() { + try { + s.push(createItem(rnd.nextInt(4))); + } catch (Overflow e) { + } + observe(); + } + + public static void InsertCanFail(Object x) throws Overflow { + s.push(x); + } + + public static void topOrPop() { + if (s.isEmpty() || rnd.nextBoolean()) s.topAndPop(); + else + try { + s.pop(); + } catch (Underflow e) { + } + observe(); + } + + public static void observe() { + s.isFull(); + s.isEmpty(); + s.top(); + } + + public static void fill(int n) { + doNew(n); + for (int i = 0; i < n; i++) push(); + if (rnd.nextBoolean()) s.makeEmpty(); + while (!s.isEmpty()) topOrPop(); + s.makeEmpty(); + observe(); + + doNew(n); + for (int i = 0; i <= n / 2; i++) { + try { + InsertCanFail(s); + observe(); + } catch (Overflow e) { + } + } + s.makeEmpty(); + } + + public static void main(String[] args) { + for (int i = 0; i < 4; i++) { + doNew(0); + fill(i); + fill(10); + fill(20); + } + } +} diff --git a/tests/sources/ExceptionHandling/DaikonAnalyseExceptions.java b/tests/sources/ExceptionHandling/DaikonAnalyseExceptions.java new file mode 100644 index 0000000000..d999cc0a8d --- /dev/null +++ b/tests/sources/ExceptionHandling/DaikonAnalyseExceptions.java @@ -0,0 +1,129 @@ +package ExceptionHandling; + +public class DaikonAnalyseExceptions { + + public int classVar = 42; + + public boolean isEvan(int parameter) { + return ((parameter % 2) == 0); + } + + public boolean isFiveTimes(int parameter) { + return ((parameter % 5) == 0); + } + + /** + * Throws one Exception. + */ + public int testCase1(int parameter) throws Exception { + if ((parameter % 5) == 0) { + throw new Exception(); + } + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + /** + * Throws one derivated Exception. + */ + public int testCase2(int parameter) throws Exception { + int x = 42 / (parameter % 5); + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + /** + * Catches a derivated Exception. + */ + public int testCase3(int parameter) { + try { + return testCase1(parameter); + } catch (Exception e) { + return 0; + } + } + + /** + * Throws an Exception and one derivated Exception, which + * are both be catched in the same Method. + * + * Creates an Exit-PPT and ThrowNN-PPT in the same call. + * --> error! dont call! + */ + public int testCase4(int parameter) { + try { + if ((parameter % 5) == 0) { + throw new Exception(); + } + int x = 42 / (parameter % 5); + if ((parameter % 2) == 0) { + return parameter; + } else { + return parameter * parameter; + } + } catch (Exception e) { + return 0; + } + } + + /** + * Throws an Exception and one derivated Exception, + */ + public int testCase5(int parameter) throws Exception { + if ((parameter % 5) == 0) { + throw new Exception(); + } + int x = 42 / (parameter % 6); + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + /** + * Throws two Exceptions. + * Creates Two THROWNN-PPTs. + */ + public int testCase6(int parameter) throws Exception { + if ((parameter % 5) == 0) { + throw new Exception(); + } + if ((parameter % 6) == 0) { + throw new Exception(); + } + if ((parameter % 2) == 0) { //even + return parameter; + } else { + return parameter * parameter; + } + } + + ///** + //* check the Valid of the new created Stackframe Table + //*/ + //public int paratest(int i , int[] ia , Integer in, Integer[] inA, float flo, float[] floA, Float floa, Float[] floaA){ + //// char cc = 'C'; + //// int[] iii = {3,4,5}; + //// int blub= 6; + //// Integer john = 45; + //// Integer[] huhu = {13,12}; + //// float bu = 0.5f; + //// Float hehe = 4545.0f; + //// boolean b = true; + //// byte by = 0x4; + //// char c = 'C'; + //// short s = 7; + + //for (int i1 = -2; i1 <= 2; i1++) { + //i; + //} + //return 47; + //} +} diff --git a/tests/sources/ExceptionHandling/ExceptionHTest.java b/tests/sources/ExceptionHandling/ExceptionHTest.java new file mode 100644 index 0000000000..c7d558d56c --- /dev/null +++ b/tests/sources/ExceptionHandling/ExceptionHTest.java @@ -0,0 +1,55 @@ +package ExceptionHandling; + +public class ExceptionHTest { + + public static void wantOutput(boolean o, String output) { + if (o) { + System.out.println(output); + } + } + + /** + * calls all Methods. + * + */ + public static void main(String[] args) { + boolean wantOut = false; + int start = 2; + int ende = 31; + DaikonAnalyseExceptions da = new DaikonAnalyseExceptions(); + for (int i = start; i < ende; i++) { + da.classVar = i; + try { + wantOutput(wantOut, i + " : " + da.testCase1(i)); + } catch (Exception e) { + wantOutput(wantOut, i + " : testCase1 ERROR"); + } + try { + wantOutput(wantOut, i + " : " + da.testCase2(i)); + } catch (Exception e) { + wantOutput(wantOut, i + " : testCase2 ERROR"); + } + try { + wantOutput(wantOut, i + " : " + da.testCase3(i)); + } catch (Exception e) { + wantOutput(wantOut, i + " : testCase3 ERROR"); + } + //try{ + // wantOutput(wantOut, i +" : "+da.testCase4(i)); + //}catch(Exception e){ + // wantOutput(wantOut, i +" : testCase4 ERROR"); + //} + try { + wantOutput(wantOut, i + " : " + da.testCase5(i)); + } catch (Exception e) { + wantOutput(wantOut, i + " : testCase5 ERROR"); + } + try { + wantOutput(wantOut, i + " : " + da.testCase6(i)); + } catch (Exception e) { + wantOutput(wantOut, i + " : testCase6 ERROR"); + } + } + ; + } +}